From a1d68dac9cf020cb9414861dd55400a14890c319 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 25 Dec 2024 04:37:56 +0000 Subject: [PATCH] build(deps): update rocksdb requirement from 0.22.0 to 0.23.0 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.22.0...v0.23.0) --- updated-dependencies: - dependency-name: rocksdb dependency-type: direct:production ... Signed-off-by: dependabot[bot] --- kvdb-rocksdb/Cargo.toml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/kvdb-rocksdb/Cargo.toml b/kvdb-rocksdb/Cargo.toml index b866b134..2ae7f79b 100644 --- a/kvdb-rocksdb/Cargo.toml +++ b/kvdb-rocksdb/Cargo.toml @@ -24,12 +24,12 @@ regex = "1.3.1" [target.'cfg(any(target_os = "openbsd", target_env = "msvc"))'.dependencies.rocksdb] default-features = false features = ["snappy"] -version = "0.22.0" +version = "0.23.0" [target.'cfg(not(any(target_os = "openbsd", target_env = "msvc")))'.dependencies.rocksdb] default-features = false features = ["snappy", "jemalloc"] -version = "0.22.0" +version = "0.23.0" [dev-dependencies] alloc_counter = "0.0.4"