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.13.1" 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 = [ 21 "small", 22 "vec", 23 "vector", 24 "stack", 25 "no_std", 26] 27categories = ["data-structures"] 28license = "MIT OR Apache-2.0" 29repository = "https://github.com/servo/rust-smallvec" 30 31[package.metadata.docs.rs] 32all-features = true 33rustdoc-args = [ 34 "--cfg", 35 "docsrs", 36 "--generate-link-to-definition", 37] 38 39[[test]] 40name = "debugger_visualizer" 41path = "tests/debugger_visualizer.rs" 42test = false 43required-features = ["debugger_visualizer"] 44 45[dependencies.arbitrary] 46version = "1" 47optional = true 48 49[dependencies.serde] 50version = "1" 51optional = true 52default-features = false 53 54[dev-dependencies.bincode] 55version = "1.0.1" 56 57[dev-dependencies.debugger_test] 58version = "0.1.0" 59 60[dev-dependencies.debugger_test_parser] 61version = "0.1.0" 62 63[features] 64const_generics = [] 65const_new = ["const_generics"] 66debugger_visualizer = [] 67drain_filter = [] 68drain_keep_rest = ["drain_filter"] 69may_dangle = [] 70specialization = [] 71union = [] 72write = [] 73