Skip to content

Commit

Permalink
Upgrading proptest-derive and setting less default features. (#12)
Browse files Browse the repository at this point in the history
  • Loading branch information
citizen-stig authored Jul 1, 2024
1 parent e9aa4ae commit 0d12c50
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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"] }
Expand Down

0 comments on commit 0d12c50

Please sign in to comment.