diff --git a/Cargo.lock b/Cargo.lock index 3181eec..9a62b1a 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -143,7 +143,7 @@ checksum = "2af50177e190e07a26ab74f8b1efbfe2ef87da2116221318cb1c2e82baf7de06" [[package]] name = "beyond-slipstream" -version = "0.7.2" +version = "0.7.3" dependencies = [ "aho-corasick", "async-nats", diff --git a/Cargo.toml b/Cargo.toml index ad3c4b3..e9cac05 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -8,7 +8,7 @@ rust-version = "1.92" [package] name = "beyond-slipstream" -version = "0.7.2" +version = "0.7.3" edition.workspace = true license.workspace = true rust-version.workspace = true diff --git a/README.md b/README.md index 048a461..08ff794 100644 --- a/README.md +++ b/README.md @@ -40,15 +40,15 @@ For folds that outgrow RAM, `fjall` (pure Rust) and `rocksdb` backends hold stat ```toml [dependencies] -beyond-slipstream = "0.5" +beyond-slipstream = "0.7" ``` On-disk snapshot backends are opt-in cargo features: ```toml -beyond-slipstream = { version = "0.5", features = ["fjall"] } # pure-Rust LSM, no C toolchain -beyond-slipstream = { version = "0.5", features = ["rocksdb"] } # RocksDB (requires C++ toolchain + libclang) -beyond-slipstream = { version = "0.5", features = ["transport"] } # export/import via object_store (S3, GCS, local) +beyond-slipstream = { version = "0.7", features = ["fjall"] } # pure-Rust LSM, no C toolchain +beyond-slipstream = { version = "0.7", features = ["rocksdb"] } # RocksDB (requires C++ toolchain + libclang) +beyond-slipstream = { version = "0.7", features = ["transport"] } # export/import via object_store (S3, GCS, local) ``` ## Concepts