1[package] 2 3name = "slab" 4# When releasing to crates.io: 5# - Update version number 6# - README.md 7# - Update CHANGELOG.md 8# - Create git tag 9version = "0.4.5" 10authors = ["Carl Lerche <me@carllerche.com>"] 11edition = "2018" 12license = "MIT" 13description = "Pre-allocated storage for a uniform data type" 14documentation = "https://docs.rs/slab" 15homepage = "https://github.com/tokio-rs/slab" 16repository = "https://github.com/tokio-rs/slab" 17readme = "README.md" 18keywords = ["slab", "allocator", "no_std"] 19categories = ["memory-management", "data-structures", "no-std"] 20exclude = ["/.*"] 21 22[features] 23std = [] 24default = ["std"] 25 26[dependencies] 27serde = { version = "1.0.95", optional = true, default-features = false, features = ["alloc"] } 28 29[dev-dependencies] 30serde = { version = "1", features = ["derive"] } 31serde_test = "1" 32