blob: 7ff65deb7f3653cee8aa0441b8da95dda7b68174 [file] [log] [blame]
Joel Galensonddfee162020-07-28 13:45:19 -07001# 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
David LeGare8f212972022-03-02 16:21:23 +00006# to registry (e.g., crates.io) dependencies.
Joel Galensonddfee162020-07-28 13:45:19 -07007#
David LeGare8f212972022-03-02 16:21:23 +00008# 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.
Joel Galensonddfee162020-07-28 13:45:19 -070011
12[package]
13edition = "2018"
14name = "smallvec"
David LeGare8f212972022-03-02 16:21:23 +000015version = "1.8.0"
Haibo Huangb9330f02020-08-11 18:27:35 -070016authors = ["The Servo Project Developers"]
Joel Galensonddfee162020-07-28 13:45:19 -070017description = "'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"
David LeGare8f212972022-03-02 16:21:23 +000024[package.metadata.docs.rs]
25all-features = true
26rustdoc-args = ["--cfg", "docsrs"]
27[dependencies.arbitrary]
28version = "1"
29optional = true
30
Joel Galensonddfee162020-07-28 13:45:19 -070031[dependencies.serde]
32version = "1"
33optional = true
Haibo Huang1e6392f2020-07-30 15:18:24 -070034default-features = false
Joel Galensonddfee162020-07-28 13:45:19 -070035[dev-dependencies.bincode]
36version = "1.0.1"
37
38[features]
39const_generics = []
David LeGare8f212972022-03-02 16:21:23 +000040const_new = ["const_generics"]
Joel Galensonddfee162020-07-28 13:45:19 -070041may_dangle = []
42specialization = []
43union = []
44write = []