]> git.proxmox.com Git - rustc.git/blob - vendor/smallvec/Cargo.toml
New upstream version 1.66.0+dfsg1
[rustc.git] / vendor / smallvec / Cargo.toml
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]
13 edition = "2018"
14 name = "smallvec"
15 version = "1.10.0"
16 authors = ["The Servo Project Developers"]
17 description = "'Small vector' optimization: store up to a small number of items on the stack"
18 documentation = "https://docs.rs/smallvec/"
19 readme = "README.md"
20 keywords = [
21 "small",
22 "vec",
23 "vector",
24 "stack",
25 "no_std",
26 ]
27 categories = ["data-structures"]
28 license = "MIT OR Apache-2.0"
29 repository = "https://github.com/servo/rust-smallvec"
30
31 [package.metadata.docs.rs]
32 all-features = true
33 rustdoc-args = [
34 "--cfg",
35 "docsrs",
36 ]
37
38 [[test]]
39 name = "debugger_visualizer"
40 path = "tests/debugger_visualizer.rs"
41 test = false
42 required-features = ["debugger_visualizer"]
43
44 [dependencies.arbitrary]
45 version = "1"
46 optional = true
47
48 [dependencies.serde]
49 version = "1"
50 optional = true
51 default-features = false
52
53 [dev-dependencies.bincode]
54 version = "1.0.1"
55
56 [dev-dependencies.debugger_test]
57 version = "0.1.0"
58
59 [dev-dependencies.debugger_test_parser]
60 version = "0.1.0"
61
62 [features]
63 const_generics = []
64 const_new = ["const_generics"]
65 debugger_visualizer = []
66 may_dangle = []
67 specialization = []
68 union = []
69 write = []