1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29
|
Description: Disable benchmarks
Forwarded: not-needed
Author: Antonin Delpeuch <antonin@delpeuch.eu>
---
This patch header follows DEP-3: http://dep.debian.net/deps/dep3/
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -39,11 +39,6 @@ all-features = true
name = "nonempty_collections"
path = "src/lib.rs"
-[[bench]]
-name = "vec"
-path = "benches/vec.rs"
-harness = false
-
[dependencies.either]
version = "1.0"
optional = true
@@ -62,9 +57,6 @@ version = "1.0"
features = ["serde_derive"]
optional = true
-[dev-dependencies.divan]
-version = "0.1"
-
[dev-dependencies.maplit]
version = "1.0"
|