aboutsummaryrefslogtreecommitdiff
path: root/Cargo.toml.orig
diff options
context:
space:
mode:
Diffstat (limited to 'Cargo.toml.orig')
-rw-r--r--Cargo.toml.orig11
1 files changed, 6 insertions, 5 deletions
diff --git a/Cargo.toml.orig b/Cargo.toml.orig
index cb43704..4400e6e 100644
--- a/Cargo.toml.orig
+++ b/Cargo.toml.orig
@@ -1,7 +1,7 @@
[package]
name = "linked-hash-map"
-version = "0.5.4"
+version = "0.5.6"
license = "MIT/Apache-2.0"
description = "A HashMap wrapper that holds key-value pairs in insertion order"
authors = [
@@ -14,15 +14,16 @@ homepage = "https://github.com/contain-rs/linked-hash-map"
documentation = "https://docs.rs/linked-hash-map"
keywords = ["data-structures"]
readme = "README.md"
-exclude = ["/.travis.yml", "/deploy-docs.sh"]
+exclude = [".github", "src/tests"]
[features]
nightly = []
-serde_impl = ["serde", "serde_test"]
+serde_impl = ["serde"]
heapsize_impl = ["heapsize"]
[dependencies]
-clippy = { version = "0.*", optional = true }
serde = { version = "1.0", optional = true }
-serde_test = { version = "1.0", optional = true }
heapsize = { version = "0.4", optional = true }
+
+[dev-dependencies]
+serde_test = { version = "1.0" }