1[package] 2name = "smallvec" 3version = "1.8.0" 4edition = "2018" 5authors = ["The Servo Project Developers"] 6license = "MIT/Apache-2.0" 7repository = "https://github.com/servo/rust-smallvec" 8description = "'Small vector' optimization: store up to a small number of items on the stack" 9keywords = ["small", "vec", "vector", "stack", "no_std"] 10categories = ["data-structures"] 11readme = "README.md" 12documentation = "https://docs.rs/smallvec/" 13 14[features] 15const_generics = [] 16const_new = ["const_generics"] 17write = [] 18union = [] 19specialization = [] 20may_dangle = [] 21 22[dependencies] 23serde = { version = "1", optional = true, default-features = false } 24arbitrary = { version = "1", optional = true } 25 26[dev_dependencies] 27bincode = "1.0.1" 28 29[package.metadata.docs.rs] 30all-features = true 31rustdoc-args = ["--cfg", "docsrs"] 32