From 9a19b4903b1c05548857b07d95a42265be39178c Mon Sep 17 00:00:00 2001 From: Nikolai Golub Date: Mon, 1 Jul 2024 11:44:31 +0200 Subject: [PATCH] Upgrading proptest-derive and setting less default features. --- Cargo.toml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 0bf838e..568e777 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -16,14 +16,14 @@ readme = "README.md" [dependencies] anyhow = "1" byteorder = { version = "1", default-features = true, optional = true } -once_cell = "1" -prometheus = { version = "0.13" } +once_cell = { version = "1", default-features = false } +prometheus = { version = "0.13", default-features = false } proptest = { version = "1", optional = true } -proptest-derive = { version = "0.4", optional = true } +proptest-derive = { version = "0.5", optional = true } rocksdb = { version = "0.22", features = ["lz4"], default-features = false } thiserror = "1" tracing = "0.1" -tokio = { version = "1", features = ["rt-multi-thread", "macros"] } +tokio = { version = "1", default-features = false, features = ["rt-multi-thread", "macros"] } [dev-dependencies] rockbound = { path = ".", features = ["test-utils"] }