1 | [package] |
2 | name = "allocator-api2" |
3 | version = "0.2.16" |
4 | edition = "2018" |
5 | authors = ["Zakarum <zaq.dev@icloud.com>" ] |
6 | license = "MIT OR Apache-2.0" |
7 | documentation = "https://docs.rs/allocator-api2" |
8 | homepage = "https://github.com/zakarumych/allocator-api2" |
9 | repository = "https://github.com/zakarumych/allocator-api2" |
10 | readme = "README.md" |
11 | description = "Mirror of Rust's allocator API" |
12 | |
13 | [features] |
14 | alloc = [] |
15 | std = ["alloc" ] |
16 | default = ["std" ] |
17 | nightly = [] |
18 | |
19 | [dependencies] |
20 | serde = { version = "1.0" , optional = true } |
21 | |
22 | [workspace] |
23 | members = ["tests" ] |
24 | |