aboutsummaryrefslogtreecommitdiff
path: root/Cargo.toml.orig
diff options
context:
space:
mode:
Diffstat (limited to 'Cargo.toml.orig')
-rw-r--r--Cargo.toml.orig8
1 files changed, 7 insertions, 1 deletions
diff --git a/Cargo.toml.orig b/Cargo.toml.orig
index b19b93e..605fdb3 100644
--- a/Cargo.toml.orig
+++ b/Cargo.toml.orig
@@ -1,6 +1,6 @@
[package]
name = "smallvec"
-version = "1.6.1"
+version = "1.8.0"
edition = "2018"
authors = ["The Servo Project Developers"]
license = "MIT/Apache-2.0"
@@ -13,6 +13,7 @@ documentation = "https://docs.rs/smallvec/"
[features]
const_generics = []
+const_new = ["const_generics"]
write = []
union = []
specialization = []
@@ -20,6 +21,11 @@ may_dangle = []
[dependencies]
serde = { version = "1", optional = true, default-features = false }
+arbitrary = { version = "1", optional = true }
[dev_dependencies]
bincode = "1.0.1"
+
+[package.metadata.docs.rs]
+all-features = true
+rustdoc-args = ["--cfg", "docsrs"]