Skip to content

Commit 0601516

Browse files
committed
3.0.0-rc.1
1 parent fb406ca commit 0601516

File tree

3 files changed

+4
-3
lines changed

3 files changed

+4
-3
lines changed

.config/nextest.toml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
[profile.default]
2+
slow-timeout = { period = "5s", terminate-after = 6 }

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
name = "lsm-tree"
33
description = "A K.I.S.S. implementation of log-structured merge trees (LSM-trees/LSMTs)"
44
license = "MIT OR Apache-2.0"
5-
version = "3.0.0-rc.0"
5+
version = "3.0.0-rc.1"
66
edition = "2021"
77
rust-version = "1.91.0"
88
readme = "README.md"

src/any_tree.rs

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,7 @@
33
// (found in the LICENSE-* files in the repository)
44

55
use crate::{
6-
blob_tree::ingest::BlobIngestion, tree::ingest::Ingestion, BlobTree, SeqNo, Tree, UserKey,
7-
UserValue,
6+
BlobTree, Tree,
87
};
98
use enum_dispatch::enum_dispatch;
109

0 commit comments

Comments
 (0)