]> git.proxmox.com Git - rustc.git/blame - src/vendor/arrayvec/Cargo.toml
New upstream version 1.25.0+dfsg1
[rustc.git] / src / vendor / arrayvec / Cargo.toml
CommitLineData
2c00a5a8
XL
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 believe there's an error in this file please file an
9# issue against the rust-lang/cargo repository. If you're
10# editing this file be aware that the upstream Cargo.toml
11# will likely look very different (and much more reasonable)
12
13[package]
14name = "arrayvec"
15version = "0.4.7"
16authors = ["bluss"]
17description = "A vector with fixed capacity, backed by an array (it can be stored on the stack too). Implements fixed capacity ArrayVec and ArrayString."
18documentation = "https://docs.rs/arrayvec/"
19keywords = ["stack", "vector", "array", "data-structure", "no_std"]
20categories = ["data-structures", "no-std"]
21license = "MIT/Apache-2.0"
22repository = "https://github.com/bluss/arrayvec"
23[package.metadata.docs.rs]
24features = ["serde-1"]
25
26[package.metadata.release]
27no-dev-version = true
28
29[[bench]]
30name = "extend"
31harness = false
32
33[[bench]]
34name = "arraystring"
35harness = false
36[dependencies.nodrop]
37version = "0.1.12"
38default-features = false
39
40[dependencies.serde]
41version = "1.0"
42optional = true
43default-features = false
44[dev-dependencies.bencher]
45version = "0.1.4"
46
47[dev-dependencies.matches]
48version = "0.1"
49
50[dev-dependencies.serde_test]
51version = "1.0"
52
53[features]
54default = ["std"]
55serde-1 = ["serde"]
56std = []
57use_union = []