Skip to content

Commit

Permalink
chore: pub -> pub (crate)
Browse files Browse the repository at this point in the history
  • Loading branch information
KKould committed Jul 17, 2024
1 parent 69b5cd2 commit 5246344
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ tokio = ["dep:tokio"]
arrow = "52"
async-lock = "3"
crossbeam-skiplist = "0.1"
flume = { version = "0.11.0", features = ["async"] }
flume = { version = "0.11", features = ["async"] }
futures-core = "0.3"
futures-io = "0.3"
futures-util = "0.3"
Expand Down
2 changes: 1 addition & 1 deletion src/fs/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ use ulid::Ulid;

pub(crate) type FileId = Ulid;

pub enum FileType {
pub(crate) enum FileType {
WAL,
PARQUET,
LOG,
Expand Down
2 changes: 1 addition & 1 deletion src/scope.rs
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ use crate::{
};

#[derive(Debug, Eq, PartialEq)]
pub struct Scope<K> {
pub(crate) struct Scope<K> {
pub(crate) min: K,
pub(crate) max: K,
pub(crate) gen: FileId,
Expand Down

0 comments on commit 5246344

Please sign in to comment.