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
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
[[bin]]
name = "example"

[features]
unsafe = []

[package]
authors = ["Daniel Reiter Horn <danielrh@dropbox.com>"]
autobins = false
description = "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 = "https://raw.githubusercontent.com/dropbox/rust-alloc-no-stdlib/master/tests/lib.rs"
homepage = "https://github.com/dropbox/rust-alloc-no-stdlib"
keywords = ["custom", "allocator", "calloc", "safe", "nostd"]
license = "BSD-3-Clause"
name = "alloc-no-stdlib"
readme = "README.md"
repository = "https://github.com/dropbox/rust-alloc-no-stdlib"
version = "2.0.4"