alloc-no-stdlib 2.0.4

A dynamic allocator that may be used with or without the stdlib. This allows a package with nostd to allocate memory dynamically and be used either with a custom allocator, items on the stack, or by a package that wishes to simply use Box<>. It also provides options to use calloc or a mutable global variable for pre-zeroed memory
Documentation
language: rust
rust:
  - nightly
  - stable
  - 1.12.0
  - 1.8.0

os:
  - linux
  - osx

script:
  - cargo test
  - cargo test --features=unsafe --release
  - cd alloc-stdlib && cargo test && cd ..
  - cd alloc-stdlib && cargo test --release --features=unsafe && cd ..
  - cd alloc-stdlib && cargo test --release && cd .. 

matrix:
  exclude:
    - rust: 1.8.0
      os: osx