upgrade to latest rust-rocksdb

We gotta overrideAttrs to set the src and version to a newer version
than nixpkgs has now.
This commit is contained in:
Charles Hall 2024-10-24 15:57:02 -07:00
parent d565b22da9
commit 2dbb101140
No known key found for this signature in database
GPG key ID: 7B8E0645816E07CF
5 changed files with 34 additions and 7 deletions

View file

@ -119,7 +119,7 @@ rand = "0.8.5"
regex = "1.11.1"
reqwest = { version = "0.12.9", default-features = false, features = ["http2", "rustls-tls-native-roots", "socks"] }
ring = "0.17.8"
rocksdb = { package = "rust-rocksdb", version = "0.30.0", features = ["lz4", "multi-threaded-cf", "zstd"], optional = true }
rocksdb = { package = "rust-rocksdb", version = "0.33.0", features = ["lz4", "multi-threaded-cf", "zstd"], optional = true }
ruma = { git = "https://github.com/ruma/ruma", branch = "main", features = ["compat", "rand", "appservice-api-c", "client-api", "federation-api", "push-gateway-api-c", "server-util", "state-res", "unstable-msc2448", "unstable-msc3575", "unstable-exhaustive-types", "ring-compat", "unstable-unspecified" ] }
rusqlite = { version = "0.32.1", optional = true, features = ["bundled"] }
rustls = { version = "0.23.16", default-features = false, features = ["ring", "log", "logging", "std", "tls12"] }