]> git.proxmox.com Git - rustc.git/blobdiff - vendor/arrayvec/Cargo.toml
New upstream version 1.46.0~beta.2+dfsg1
[rustc.git] / vendor / arrayvec / Cargo.toml
index 9e5c0d36f71853b1c8e88f193ce49b61b8d7d9b9..2a42a3f89b5a841ac420c37bc88c454445e2799e 100644 (file)
@@ -3,7 +3,7 @@
 # When uploading crates to the registry Cargo will automatically
 # "normalize" Cargo.toml files for maximal compatibility
 # with all versions of Cargo and also rewrite `path` dependencies
-# to registry (e.g. crates.io) dependencies
+# to registry (e.g., crates.io) dependencies
 #
 # If you believe there's an error in this file please file an
 # issue against the rust-lang/cargo repository. If you're
@@ -11,8 +11,9 @@
 # will likely look very different (and much more reasonable)
 
 [package]
+edition = "2018"
 name = "arrayvec"
-version = "0.4.7"
+version = "0.5.1"
 authors = ["bluss"]
 description = "A vector with fixed capacity, backed by an array (it can be stored on the stack too). Implements fixed capacity ArrayVec and ArrayString."
 documentation = "https://docs.rs/arrayvec/"
@@ -21,10 +22,16 @@ categories = ["data-structures", "no-std"]
 license = "MIT/Apache-2.0"
 repository = "https://github.com/bluss/arrayvec"
 [package.metadata.docs.rs]
-features = ["serde-1"]
+features = ["serde"]
 
 [package.metadata.release]
 no-dev-version = true
+tag-name = "{{version}}"
+[profile.bench]
+debug = true
+
+[profile.release]
+debug = true
 
 [[bench]]
 name = "extend"
@@ -33,10 +40,6 @@ harness = false
 [[bench]]
 name = "arraystring"
 harness = false
-[dependencies.nodrop]
-version = "0.1.12"
-default-features = false
-
 [dependencies.serde]
 version = "1.0"
 optional = true
@@ -50,8 +53,10 @@ version = "0.1"
 [dev-dependencies.serde_test]
 version = "1.0"
 
+[build-dependencies]
+
 [features]
+array-sizes-129-255 = []
+array-sizes-33-128 = []
 default = ["std"]
-serde-1 = ["serde"]
 std = []
-use_union = []