-
Notifications
You must be signed in to change notification settings - Fork 1
/
Cargo.toml
40 lines (35 loc) · 971 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.4.1"
edition = "2021"
[lib]
name = "sourmash_plugin_directsketch"
crate-type = ["cdylib"]
[dependencies]
pyo3 = { version = "0.22.5", features = ["extension-module", "anyhow"] }
rayon = "1.10.0"
serde = { version = "1.0.204", features = ["derive"] }
sourmash = { version = "0.16.0"}
serde_json = "1.0.132"
niffler = "2.4.0"
needletail = "0.5.1"
#zip = { version = "0.6", default-features = false, features = ["deflate"] }
async_zip={version="0.0.17", features=["full"]}
simple-error = "0.3.1"
anyhow = "1.0.90"
camino = "1.1.7"
csv = "1.3.0"
reqwest = { version = "0.12.8", features = ["json", "stream"] }
tokio = { version = "1.41.0", features = ["full"] }
tokio-util = "0.7.11"
regex = "1.11.0"
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"
[profile.release]
#target-cpu=native
lto = "thin"
opt-level = 3