From f59bfbf957a13c42fd2ac33176d443ce3acc9f1c Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 10 Feb 2023 18:02:57 +0000 Subject: [PATCH] Build(deps): Update rocksdb requirement from 0.18.0 to 0.20.1 Updates the requirements on [rocksdb](https://github.com/rust-rocksdb/rust-rocksdb) to permit the latest version. - [Release notes](https://github.com/rust-rocksdb/rust-rocksdb/releases) - [Changelog](https://github.com/rust-rocksdb/rust-rocksdb/blob/master/CHANGELOG.md) - [Commits](https://github.com/rust-rocksdb/rust-rocksdb/compare/v0.18.0...v0.20.1) --- updated-dependencies: - dependency-name: rocksdb dependency-type: direct:production ... Signed-off-by: dependabot[bot] --- rocksstore/Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rocksstore/Cargo.toml b/rocksstore/Cargo.toml index 97062ba83..95787d9d2 100644 --- a/rocksstore/Cargo.toml +++ b/rocksstore/Cargo.toml @@ -6,7 +6,7 @@ edition = "2021" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] -rocksdb = "0.18.0" +rocksdb = "0.20.1" byteorder = "1.4.3" serde = { version = "1.0.114", features = ["derive"] } serde_json = "1.0.57"