• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
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.14.0"
16authors = ["The Servo Project Developers"]
17build = false
18autolib = false
19autobins = false
20autoexamples = false
21autotests = false
22autobenches = false
23description = "'Small vector' optimization: store up to a small number of items on the stack"
24documentation = "https://docs.rs/smallvec/"
25readme = "README.md"
26keywords = [
27    "small",
28    "vec",
29    "vector",
30    "stack",
31    "no_std",
32]
33categories = ["data-structures"]
34license = "MIT OR Apache-2.0"
35repository = "https://github.com/servo/rust-smallvec"
36
37[package.metadata.docs.rs]
38all-features = true
39rustdoc-args = [
40    "--cfg",
41    "docsrs",
42    "--generate-link-to-definition",
43]
44
45[lib]
46name = "smallvec"
47path = "src/lib.rs"
48
49[[test]]
50name = "debugger_visualizer"
51path = "tests/debugger_visualizer.rs"
52test = false
53required-features = ["debugger_visualizer"]
54
55[[test]]
56name = "macro"
57path = "tests/macro.rs"
58
59[[bench]]
60name = "bench"
61path = "benches/bench.rs"
62
63[dependencies.arbitrary]
64version = "1"
65optional = true
66
67[dependencies.malloc_size_of]
68version = "0.1"
69optional = true
70default-features = false
71
72[dependencies.serde]
73version = "1"
74optional = true
75default-features = false
76
77[dev-dependencies.bincode]
78version = "1.0.1"
79
80[dev-dependencies.debugger_test]
81version = "0.1.0"
82
83[dev-dependencies.debugger_test_parser]
84version = "0.1.0"
85
86[features]
87const_generics = []
88const_new = ["const_generics"]
89debugger_visualizer = []
90drain_filter = []
91drain_keep_rest = ["drain_filter"]
92may_dangle = []
93specialization = []
94union = []
95write = []
96