blob: 605fdb3bc89bb0e8b5ac030f5a9d6422eb125479 [file] [log] [blame]
Joel Galensonddfee162020-07-28 13:45:19 -07001[package]
2name = "smallvec"
David LeGare8f212972022-03-02 16:21:23 +00003version = "1.8.0"
Joel Galensonddfee162020-07-28 13:45:19 -07004edition = "2018"
Haibo Huangb9330f02020-08-11 18:27:35 -07005authors = ["The Servo Project Developers"]
Joel Galensonddfee162020-07-28 13:45:19 -07006license = "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 = []
David LeGare8f212972022-03-02 16:21:23 +000016const_new = ["const_generics"]
Joel Galensonddfee162020-07-28 13:45:19 -070017write = []
18union = []
19specialization = []
20may_dangle = []
21
Joel Galensonddfee162020-07-28 13:45:19 -070022[dependencies]
Haibo Huang1e6392f2020-07-30 15:18:24 -070023serde = { version = "1", optional = true, default-features = false }
David LeGare8f212972022-03-02 16:21:23 +000024arbitrary = { version = "1", optional = true }
Joel Galensonddfee162020-07-28 13:45:19 -070025
26[dev_dependencies]
27bincode = "1.0.1"
David LeGare8f212972022-03-02 16:21:23 +000028
29[package.metadata.docs.rs]
30all-features = true
31rustdoc-args = ["--cfg", "docsrs"]