update rocksdb

This commit is contained in:
Charles Hall 2024-04-21 12:39:27 -07:00
parent 8c6ffb6bfc
commit 61cb186b5b
No known key found for this signature in database
GPG key ID: 7B8E0645816E07CF
3 changed files with 7 additions and 7 deletions

8
Cargo.lock generated
View file

@ -2204,9 +2204,9 @@ dependencies = [
[[package]] [[package]]
name = "rust-librocksdb-sys" name = "rust-librocksdb-sys"
version = "0.18.1+8.11.3" version = "0.20.0+9.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "7ef22f434855ceb8daf99073fcf909d957ad8705f5b530154e47978ae68e867c" checksum = "48b14f4848d8574c074bb26445b43e63735d802ef2fc5cc40c1b015134baee0c"
dependencies = [ dependencies = [
"bindgen", "bindgen",
"bzip2-sys", "bzip2-sys",
@ -2220,9 +2220,9 @@ dependencies = [
[[package]] [[package]]
name = "rust-rocksdb" name = "rust-rocksdb"
version = "0.22.7" version = "0.24.0"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "62223f035e676bb69da2ab9487e6f710da82be89473c658c51ed3b1a60c4b4a6" checksum = "d36eae38b1d3d0018e273191f791343bd3eb030d7da63aaa20350e41c0182881"
dependencies = [ dependencies = [
"libc", "libc",
"rust-librocksdb-sys", "rust-librocksdb-sys",

View file

@ -116,7 +116,7 @@ sd-notify = { version = "0.4.1", optional = true }
[dependencies.rocksdb] [dependencies.rocksdb]
package = "rust-rocksdb" package = "rust-rocksdb"
version = "0.22.7" version = "0.24.0"
optional = true optional = true
features = [ features = [
"multi-threaded-cf", "multi-threaded-cf",

View file

@ -55,7 +55,7 @@
rocksdb' = pkgs: rocksdb' = pkgs:
let let
version = "8.11.3"; version = "9.1.0";
in in
pkgs.rocksdb.overrideAttrs (old: { pkgs.rocksdb.overrideAttrs (old: {
inherit version; inherit version;
@ -63,7 +63,7 @@
owner = "facebook"; owner = "facebook";
repo = "rocksdb"; repo = "rocksdb";
rev = "v${version}"; rev = "v${version}";
hash = "sha256-OpEiMwGxZuxb9o3RQuSrwZMQGLhe9xLT1aa3HpI4KPs="; hash = "sha256-vRPyrXkXVVhP56n5FVYef8zbIsnnanQSpElmQLZ7mh8=";
}; };
}); });