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" 14rust-version = "1.51" 15name = "arrayvec" 16version = "0.7.6" 17authors = ["bluss"] 18build = false 19autobins = false 20autoexamples = false 21autotests = false 22autobenches = false 23description = "A vector with fixed capacity, backed by an array (it can be stored on the stack too). Implements fixed capacity ArrayVec and ArrayString." 24documentation = "https://docs.rs/arrayvec/" 25readme = "README.md" 26keywords = [ 27 "stack", 28 "vector", 29 "array", 30 "data-structure", 31 "no_std", 32] 33categories = [ 34 "data-structures", 35 "no-std", 36] 37license = "MIT OR Apache-2.0" 38repository = "https://github.com/bluss/arrayvec" 39 40[package.metadata.docs.rs] 41features = [ 42 "borsh", 43 "serde", 44 "zeroize", 45] 46 47[package.metadata.release] 48no-dev-version = true 49tag-name = "{{version}}" 50 51[profile.bench] 52debug = 2 53 54[profile.release] 55debug = 2 56 57[lib] 58name = "arrayvec" 59path = "src/lib.rs" 60 61[[test]] 62name = "borsh" 63path = "tests/borsh.rs" 64 65[[test]] 66name = "serde" 67path = "tests/serde.rs" 68 69[[test]] 70name = "tests" 71path = "tests/tests.rs" 72 73[[bench]] 74name = "arraystring" 75path = "benches/arraystring.rs" 76harness = false 77 78[[bench]] 79name = "extend" 80path = "benches/extend.rs" 81harness = false 82 83[dependencies.borsh] 84version = "1.2.0" 85optional = true 86default-features = false 87 88[dependencies.serde] 89version = "1.0" 90optional = true 91default-features = false 92 93[dependencies.zeroize] 94version = "1.4" 95optional = true 96default-features = false 97 98[dev-dependencies.bencher] 99version = "0.1.4" 100 101[dev-dependencies.matches] 102version = "0.1" 103 104[dev-dependencies.serde_test] 105version = "1.0" 106 107[build-dependencies] 108 109[features] 110default = ["std"] 111std = [] 112