-
Notifications
You must be signed in to change notification settings - Fork 4
/
Cargo.toml
43 lines (39 loc) · 1.05 KB
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
[package]
name = "sourmash_plugin_branchwater"
version = "0.9.12"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[lib]
name = "sourmash_plugin_branchwater"
crate-type = ["cdylib"]
[dependencies]
pyo3 = { version = "0.23.3", features = ["extension-module", "anyhow"] }
rayon = "1.10.0"
serde = { version = "1.0.217", features = ["derive"] }
sourmash = { version = "0.18.0", features = ["branchwater"] }
serde_json = "1.0.134"
niffler = "2.4.0"
log = "0.4.22"
env_logger = { version = "0.11.6" }
simple-error = "0.3.1"
anyhow = "1.0.95"
zip = { version = "2.0", default-features = false }
tempfile = "3.15"
needletail = "0.5.1"
csv = "1.3.1"
camino = "1.1.9"
glob = "0.3.2"
rustworkx-core = "0.15.1"
streaming-stats = "0.2.3"
rust_decimal = { version = "1.36.0", features = ["maths"] }
rust_decimal_macros = "1.36.0"
getset = "0.1"
[dev-dependencies]
assert_cmd = "2.0.16"
assert_matches = "1.5.0"
predicates = "3.1.3"
tempfile = "3.15.0"
[profile.release]
#target-cpu=native
#lto = "thin"
opt-level = 3