| 1 | [package]
|
| 2 | name = "allocator-api2"
|
| 3 | version = "0.2.21"
|
| 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 | rust-version = "1.63"
|
| 13 |
|
| 14 | [features]
|
| 15 | alloc = []
|
| 16 | std = ["alloc" ]
|
| 17 | default = ["std" ]
|
| 18 | nightly = []
|
| 19 | fresh-rust = []
|
| 20 |
|
| 21 | [dependencies]
|
| 22 | serde = { version = "1.0" , optional = true }
|
| 23 |
|
| 24 | [workspace]
|
| 25 | members = ["tests" ]
|
| 26 |
|
| 27 | [lints.rust]
|
| 28 | unexpected_cfgs = { level = "warn" , check-cfg = [
|
| 29 | 'cfg(no_global_oom_handling)' ,
|
| 30 | ] }
|
| 31 | |