Skip to content

Commit

Permalink
Update repository content with the latest upstream changes (#1)
Browse files Browse the repository at this point in the history
* v2.0.0-rc.0

Signed-off-by: Filippo Costa <[email protected]>

* Fix Clippy lints

Signed-off-by: Filippo Costa <[email protected]>

* Fix other Clippy lints

Signed-off-by: Filippo Costa <[email protected]>

* Fix other Clippy lints

Signed-off-by: Filippo Costa <[email protected]>

---------

Signed-off-by: Filippo Costa <[email protected]>
  • Loading branch information
neysofu authored Mar 6, 2024
1 parent 70e3be6 commit edabd23
Show file tree
Hide file tree
Showing 14 changed files with 2,522 additions and 660 deletions.
8 changes: 3 additions & 5 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ readme = "README.md"
anyhow = "1"
byteorder = { version = "1", default-features = true, optional = true }
once_cell = "1"
prometheus = { version = "0.13", optional = true }
prometheus = { version = "0.13" }
proptest = { version = "1", optional = true }
proptest-derive = { version = "0.4", optional = true }
rocksdb = { version = "0.21" }
Expand All @@ -30,7 +30,5 @@ tempfile = "3"

[features]
default = []

arbitrary = ["dep:proptest", "dep:proptest-derive"]
prometheus = ["dep:prometheus"]
test-utils = ["dep:byteorder"]
arbitrary = ["dep:proptest", "dep:proptest-derive", "rockbound/arbitrary"]
test-utils = ["dep:byteorder", "arbitrary"]
3 changes: 3 additions & 0 deletions rust-toolchain.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
[toolchain]
channel = "stable"
components = ["rustfmt", "clippy"]
Loading

0 comments on commit edabd23

Please sign in to comment.