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