-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathCargo.toml
44 lines (40 loc) · 1.16 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
44
[package]
name = "sourmash_plugin_branchwater"
version = "0.9.11"
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.216", features = ["derive"] }
#sourmash = { version = "0.17.2", features = ["branchwater"] }
sourmash = { git = "https://github.com/sourmash-bio/sourmash.git", branch = "latest", features = ["branchwater"] }
serde_json = "1.0.133"
niffler = "2.4.0"
log = "0.4.22"
env_logger = { version = "0.11.5" }
simple-error = "0.3.1"
anyhow = "1.0.94"
zip = { version = "2.0", default-features = false }
tempfile = "3.14"
needletail = "0.5.1"
csv = "1.3.1"
camino = "1.1.9"
glob = "0.3.1"
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.2"
tempfile = "3.14.0"
[profile.release]
#target-cpu=native
#lto = "thin"
opt-level = 3