From bfa62fa1c6f94dd2530283bb0f7c8723e05b77c1 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 14 Feb 2024 04:17:02 +0000 Subject: [PATCH] build(deps): update rocksdb requirement from 0.21 to 0.22 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.21.0...v0.22.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 257f45c9..7ebe632c 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.21" +version = "0.22" [target.'cfg(not(any(target_os = "openbsd", target_env = "msvc")))'.dependencies.rocksdb] default-features = false features = ["snappy", "jemalloc"] -version = "0.21" +version = "0.22" [dev-dependencies] alloc_counter = "0.0.4"