From a3336902a069e7338d13957891397d12d64d77aa Mon Sep 17 00:00:00 2001 From: strawberry Date: Thu, 21 Dec 2023 22:28:41 -0500 Subject: [PATCH] bump rust-rockdb to latest git for 8.9.1 Co-authored-by: Charles Hall Signed-off-by: strawberry --- Cargo.lock | 6 +++--- Cargo.toml | 2 +- flake.nix | 4 ++-- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 6c88e219..8f25c719 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1356,8 +1356,8 @@ dependencies = [ [[package]] name = "librocksdb-sys" -version = "0.14.0+8.8.1" -source = "git+https://github.com/rust-rocksdb/rust-rocksdb?rev=30ffe0ad78a037694eb3e834ac0afc436eea4ebf#30ffe0ad78a037694eb3e834ac0afc436eea4ebf" +version = "0.15.0+8.9.1" +source = "git+https://github.com/rust-rocksdb/rust-rocksdb?rev=66f04df013b6e6bd42b5a8c353406e09a7c7da2a#66f04df013b6e6bd42b5a8c353406e09a7c7da2a" dependencies = [ "bindgen", "bzip2-sys", @@ -2146,7 +2146,7 @@ dependencies = [ [[package]] name = "rocksdb" version = "0.21.0" -source = "git+https://github.com/rust-rocksdb/rust-rocksdb?rev=30ffe0ad78a037694eb3e834ac0afc436eea4ebf#30ffe0ad78a037694eb3e834ac0afc436eea4ebf" +source = "git+https://github.com/rust-rocksdb/rust-rocksdb?rev=66f04df013b6e6bd42b5a8c353406e09a7c7da2a#66f04df013b6e6bd42b5a8c353406e09a7c7da2a" dependencies = [ "libc", "librocksdb-sys", diff --git a/Cargo.toml b/Cargo.toml index da1299ac..d71aae20 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -89,7 +89,7 @@ heed = { git = "https://github.com/timokoesters/heed.git", rev = "f6f825da7fb2c7 # Used for ruma wrapper serde_html_form = "0.2.2" -rocksdb = { git = "https://github.com/rust-rocksdb/rust-rocksdb", rev = "30ffe0ad78a037694eb3e834ac0afc436eea4ebf", default-features = false, features = ["multi-threaded-cf", "snappy", "lz4", "zstd"], optional = true } +rocksdb = { git = "https://github.com/rust-rocksdb/rust-rocksdb", rev = "66f04df013b6e6bd42b5a8c353406e09a7c7da2a", default-features = false, features = ["multi-threaded-cf", "snappy", "lz4", "zstd"], optional = true } thread_local = "1.1.7" # used for TURN server authentication diff --git a/flake.nix b/flake.nix index debcd12f..d04c56d4 100644 --- a/flake.nix +++ b/flake.nix @@ -30,7 +30,7 @@ (final: prev: { rocksdb = prev.rocksdb.overrideAttrs (old: let - version = "8.8.1"; + version = "8.9.1"; in { inherit version; @@ -38,7 +38,7 @@ owner = "facebook"; repo = "rocksdb"; rev = "v${version}"; - hash = "sha256-eE29iojVhR660mXTdX7yT+oqFk5oteBjZcLkmgHQWaY="; + hash = "sha256-Pl7t4FVOvnORWFS+gjy2EEUQlPxjLukWW5I5gzCQwkI="; }; }); })