• 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 = "arrayvec"
15version = "0.7.4"
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/"
19readme = "README.md"
20keywords = [
21    "stack",
22    "vector",
23    "array",
24    "data-structure",
25    "no_std",
26]
27categories = [
28    "data-structures",
29    "no-std",
30]
31license = "MIT OR Apache-2.0"
32repository = "https://github.com/bluss/arrayvec"
33
34[package.metadata.docs.rs]
35features = [
36    "serde",
37    "zeroize",
38]
39
40[package.metadata.release]
41no-dev-version = true
42tag-name = "{{version}}"
43
44[profile.bench]
45debug = 2
46
47[profile.release]
48debug = 2
49
50[[bench]]
51name = "extend"
52harness = false
53
54[[bench]]
55name = "arraystring"
56harness = false
57
58[dependencies.serde]
59version = "1.0"
60optional = true
61default-features = false
62
63[dependencies.zeroize]
64version = "1.4"
65optional = true
66default-features = false
67
68[dev-dependencies.bencher]
69version = "0.1.4"
70
71[dev-dependencies.matches]
72version = "0.1"
73
74[dev-dependencies.serde_test]
75version = "1.0"
76
77[build-dependencies]
78
79[features]
80default = ["std"]
81std = []
82