Skip to content

Commit a2eed14

Browse files
authored
Merge pull request #6 from Barre/dependabot/cargo/config-0.15.11
Bump config from 0.14.1 to 0.15.11
2 parents 0280fee + 17c5a60 commit a2eed14

File tree

3 files changed

+70
-71
lines changed

3 files changed

+70
-71
lines changed

Cargo.lock

Lines changed: 67 additions & 68 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ opt-level = 3
1212

1313
[dependencies]
1414
slatedb = { git = "https://github.com/Barre/slatedb.git", rev = "c80bcddbbbd066b05d3bee9ca797fa4dfc6081f4", features = [
15-
"lz4",
15+
"zstd",
1616
"azure",
1717
] }
1818
num_cpus = "1.17.0"
@@ -39,7 +39,7 @@ chrono = "0.4"
3939
p256 = { version = "0.13", features = ["ecdsa", "pkcs8"] }
4040
signature = "2.2"
4141
toml = "0.8"
42-
config = "0.14"
42+
config = "0.15"
4343
rand = "0.8"
4444
mimalloc = "0.1"
4545
subtle = "2.5"

src/main.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -403,7 +403,7 @@ async fn initialize_storage(
403403
};
404404

405405
let mut db_options = Settings::default();
406-
db_options.compression_codec = Some(CompressionCodec::Lz4);
406+
db_options.compression_codec = Some(CompressionCodec::Zstd);
407407
db_options.garbage_collector_options = Some(GarbageCollectorOptions {
408408
wal_options: Some(garbage_collector_directory_options),
409409
manifest_options: Some(garbage_collector_directory_options),

0 commit comments

Comments
 (0)