-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCargo.toml
40 lines (35 loc) · 919 Bytes
/
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
[package]
name = "sourmash_plugin_directsketch"
version = "0.5.0"
edition = "2021"
[lib]
name = "sourmash_plugin_directsketch"
crate-type = ["cdylib"]
[dependencies]
pyo3 = { version = "0.23.4", features = ["extension-module","anyhow"]}
rayon = "1.10.0"
serde = { version = "1.0.217", features = ["derive"] }
sourmash = { version = "0.18.0"}
serde_json = "1.0.137"
niffler = "2.4.0"
needletail = "0.5.1"
async_zip={version="0.0.17", features=["full"]}
simple-error = "0.3.1"
anyhow = "1.0.95"
camino = "1.1.7"
csv = "1.3.1"
reqwest = { version = "0.12.12", features = ["json", "stream", "blocking"] }
tokio = { version = "1.43.0", features = ["full"] }
tokio-util = "0.7.13"
regex = "1.11.1"
chrono = "0.4.32"
lazy_static = "1.5.0"
md5 = "0.7.0"
openssl = { version = "0.10", features = ["vendored"] }
futures = "0.3.31"
getset = "0.1"
zip = "2.2.2"
[profile.release]
#target-cpu=native
lto = "thin"
opt-level = 3