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