1[package]
2name = "allocator-api2"
3version = "0.2.21"
4edition = "2018"
5authors = ["Zakarum <zaq.dev@icloud.com>"]
6license = "MIT OR Apache-2.0"
7documentation = "https://docs.rs/allocator-api2"
8homepage = "https://github.com/zakarumych/allocator-api2"
9repository = "https://github.com/zakarumych/allocator-api2"
10readme = "README.md"
11description = "Mirror of Rust's allocator API"
12rust-version = "1.63"
13
14[features]
15alloc = []
16std = ["alloc"]
17default = ["std"]
18nightly = []
19fresh-rust = []
20
21[dependencies]
22serde = { version = "1.0", optional = true }
23
24[workspace]
25members = ["tests"]
26
27[lints.rust]
28unexpected_cfgs = { level = "warn", check-cfg = [
29 'cfg(no_global_oom_handling)',
30] }
31