Skip to content

Commit

Permalink
refactor: rename to morseldb
Browse files Browse the repository at this point in the history
  • Loading branch information
ethe committed Jul 22, 2024
1 parent 6fa7141 commit 52455ff
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
[package]
edition = "2021"
name = "seren"
name = "morseldb"
resolver = "2"
version = "0.1.0"
version = "0.0.0"

[features]
tokio = ["dep:tokio"]
Expand Down
2 changes: 1 addition & 1 deletion src/ondisk/sstable.rs
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ where
// TODO: expose writer options
let options = ArrowWriterOptions::new().with_properties(
WriterProperties::builder()
.set_created_by(concat!("seren version ", env!("CARGO_PKG_VERSION")).to_owned())
.set_created_by(concat!("morseldb version ", env!("CARGO_PKG_VERSION")).to_owned())
.set_compression(Compression::ZSTD(ZstdLevel::try_new(3).unwrap()))
.build(),
);
Expand Down

0 comments on commit 52455ff

Please sign in to comment.