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.10.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 = [ 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] 37 38[[test]] 39name = "debugger_visualizer" 40path = "tests/debugger_visualizer.rs" 41test = false 42required-features = ["debugger_visualizer"] 43 44[dependencies.arbitrary] 45version = "1" 46optional = true 47 48[dependencies.serde] 49version = "1" 50optional = true 51default-features = false 52 53[dev-dependencies.bincode] 54version = "1.0.1" 55 56[dev-dependencies.debugger_test] 57version = "0.1.0" 58 59[dev-dependencies.debugger_test_parser] 60version = "0.1.0" 61 62[features] 63const_generics = [] 64const_new = ["const_generics"] 65debugger_visualizer = [] 66may_dangle = [] 67specialization = [] 68union = [] 69write = [] 70