Skip to content

Commit

Permalink
refactor: remove finch conversion, support zstd and lzma in wasm
Browse files Browse the repository at this point in the history
  • Loading branch information
luizirber committed Feb 3, 2025
1 parent 409da8f commit d173ebf
Show file tree
Hide file tree
Showing 4 changed files with 25 additions and 223 deletions.
115 changes: 23 additions & 92 deletions Cargo.lock

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

6 changes: 2 additions & 4 deletions src/core/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "sourmash"
version = "0.18.0"
version = "0.19.0"
authors = ["Luiz Irber <[email protected]>", "N. Tessa Pierce-Ward <[email protected]>", "C. Titus Brown <[email protected]>"]
description = "tools for comparing biological sequences with k-mer sketches"
repository = "https://github.com/sourmash-bio/sourmash"
Expand All @@ -19,7 +19,6 @@ crate-type = ["lib", "staticlib", "cdylib"]
bench = false

[features]
from-finch = ["dep:finch"]
parallel = ["dep:rayon"]
maturin = []
branchwater = ["dep:rocksdb", "parallel"]
Expand All @@ -34,7 +33,6 @@ cfg-if = "1.0"
counter = "0.6.0"
csv = "1.3.1"
enum_dispatch = "0.3.13"
finch = { version = "0.6.0", optional = true }
fixedbitset = "0.4.0"
getset = "0.1.4"
histogram = "0.11.2"
Expand All @@ -44,7 +42,7 @@ md5 = "0.7.0"
memmap2 = "0.9.5"
murmurhash3 = "0.0.5"
needletail = { version = "0.6.1", default-features = false }
niffler = { version = "2.4.0", default-features = false, features = [ "gz" ] }
niffler = { version = "2.6.0", default-features = false, features = [ "gz", "zstd", "lzma" ] }
nohash-hasher = "0.2.0"
num-iter = "0.1.45"
once_cell = "1.18.0"
Expand Down
124 changes: 0 additions & 124 deletions src/core/src/from.rs

This file was deleted.

3 changes: 0 additions & 3 deletions src/core/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -37,9 +37,6 @@ pub mod signature;
pub mod sketch;
pub mod storage;

#[cfg(feature = "from-finch")]
pub mod from;

use cfg_if::cfg_if;
use murmurhash3::murmurhash3_x64_128;

Expand Down

0 comments on commit d173ebf

Please sign in to comment.