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 30 31 32 33 34
|
Description: avoid benches
Author: Jonas Smedegaard <dr@jones.dk>
Forwarded: not-needed
Last-Update: 2024-05-26
---
This patch header follows DEP-3: http://dep.debian.net/deps/dep3/
--- a/lib/oxigraph/Cargo.toml
+++ b/lib/oxigraph/Cargo.toml
@@ -12,6 +12,7 @@
description = "SPARQL database and RDF toolkit"
edition.workspace = true
rust-version.workspace = true
+autobenches = false
[features]
default = ["rocksdb"]
@@ -48,7 +49,6 @@
js-sys = { workspace = true, optional = true }
[target.'cfg(not(target_family = "wasm"))'.dev-dependencies]
-codspeed-criterion-compat.workspace = true
csv.workspace = true
oxhttp = { workspace = true, features = ["rustls-ring-native"] }
bzip2.workspace = true
@@ -58,8 +58,3 @@
[package.metadata.docs.rs]
rustdoc-args = ["--cfg", "docsrs"]
-
-[[bench]]
-name = "store"
-harness = false
-required-features = ["rocksdb"]
\ No newline at end of file
|