Skip to content

Commit

Permalink
Merge branch 'latest' of github.com:sourmash-bio/sourmash into remove…
Browse files Browse the repository at this point in the history
…_unwrap
  • Loading branch information
ctb committed Aug 27, 2024
2 parents 2c59010 + 12b1a4b commit c8477df
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 4 deletions.
4 changes: 2 additions & 2 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion src/core/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ rkyv = { version = "0.7.44", optional = true }
roaring = "0.10.6"
roots = "0.0.8"
serde = { version = "1.0.208", features = ["derive"] }
serde_json = "1.0.125"
serde_json = "1.0.127"
statrs = "0.17.1"
streaming-stats = "0.2.3"
thiserror = "1.0"
Expand Down
5 changes: 4 additions & 1 deletion src/core/src/index/revindex/disk_revindex.rs
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,10 @@ impl RevIndex {

info!("Compact SSTs");
index.compact();
info!("Done! Processed {} reference sigs", processed_sigs.into_inner());
info!(
"Done! Processed {} reference sigs",
processed_sigs.into_inner()
);

Ok(module::RevIndex::Plain(index))
}
Expand Down

0 comments on commit c8477df

Please sign in to comment.