Skip to content

Commit

Permalink
wip
Browse files Browse the repository at this point in the history
  • Loading branch information
marvin-j97 committed Dec 24, 2024
1 parent 8beaa1e commit 2b7aa04
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 5 deletions.
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
name = "fjall"
description = "LSM-based key-value storage engine"
license = "MIT OR Apache-2.0"
version = "2.5.0-pre.1"
version = "2.5.0"
edition = "2021"
rust-version = "1.74.0"
readme = "README.md"
Expand Down
5 changes: 1 addition & 4 deletions src/batch/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -7,10 +7,7 @@ pub mod item;
use crate::{Keyspace, PartitionHandle, PersistMode};
use item::Item;
use lsm_tree::{AbstractTree, UserKey, UserValue, ValueType};
use std::{
collections::{HashMap, HashSet},
sync::Arc,
};
use std::{collections::HashSet, sync::Arc};

/// Partition key (a.k.a. column family, locality group)
pub type PartitionKey = Arc<str>;
Expand Down

0 comments on commit 2b7aa04

Please sign in to comment.