1# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO 2# 3# When uploading crates to the registry Cargo will automatically 4# "normalize" Cargo.toml files for maximal compatibility 5# with all versions of Cargo and also rewrite `path` dependencies 6# to registry (e.g., crates.io) dependencies. 7# 8# If you are reading this file be aware that the original Cargo.toml 9# will likely look very different (and much more reasonable). 10# See Cargo.toml.orig for the original contents. 11 12[package] 13edition = "2018" 14name = "smallvec" 15version = "1.8.0" 16authors = ["The Servo Project Developers"] 17description = "'Small vector' optimization: store up to a small number of items on the stack" 18documentation = "https://docs.rs/smallvec/" 19readme = "README.md" 20keywords = ["small", "vec", "vector", "stack", "no_std"] 21categories = ["data-structures"] 22license = "MIT/Apache-2.0" 23repository = "https://github.com/servo/rust-smallvec" 24[package.metadata.docs.rs] 25all-features = true 26rustdoc-args = ["--cfg", "docsrs"] 27[dependencies.arbitrary] 28version = "1" 29optional = true 30 31[dependencies.serde] 32version = "1" 33optional = true 34default-features = false 35[dev-dependencies.bincode] 36version = "1.0.1" 37 38[features] 39const_generics = [] 40const_new = ["const_generics"] 41may_dangle = [] 42specialization = [] 43union = [] 44write = [] 45