We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 057c195 commit e506920Copy full SHA for e506920
Cargo.toml
@@ -2,7 +2,7 @@
2
name = "value-log"
3
description = "Value log implementation for key-value separated LSM storage"
4
license = "MIT OR Apache-2.0"
5
-version = "1.3.0"
+version = "1.4.0"
6
edition = "2021"
7
rust-version = "1.74.0"
8
readme = "README.md"
src/gc/mod.rs
@@ -2,10 +2,10 @@
// This source code is licensed under both the Apache 2.0 and MIT License
// (found in the LICENSE-* files in the repository)
-use crate::{id::SegmentId, Compressor, ValueLog};
-
pub mod report;
+use crate::{id::SegmentId, Compressor, ValueLog};
+
9
/// GC strategy
10
#[allow(clippy::module_name_repetitions)]
11
pub trait GcStrategy<C: Compressor + Clone> {
0 commit comments