forked from astral4/arkdata
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
36 lines (33 loc) · 1.12 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
[package]
name = "arkdata"
version = "2.0.0"
authors = ["astral4 <[email protected]>"]
edition = "2021"
readme = "README.md"
homepage = "https://github.com/astral4/arkdata"
repository = "https://github.com/astral4/arkdata"
license = "AGPL-3.0-or-later"
publish = false
[dependencies]
again = { version = "0.1.2", default-features = false, features = ["rand"] }
ahash = { version = "0.8.7", features = ["serde"] }
anyhow = "1.0.79"
bytes = "1.5.0"
glob = "0.3.1"
image = { version = "0.24.7", default-features = false, features = ["png"] }
once_cell = "1.19.0"
pyo3 = { version = "0.20.2", default-features = false, features = ["auto-initialize"] }
rayon = "1.8.0"
reqwest = { version = "0.11.23", default-features = false, features = ["blocking", "json", "rustls-tls"] }
serde = { version = "1.0.195", features = ["derive", "rc"] }
serde_json = "1.0.111"
tap = "1.0.1"
tokio = { version = "1.35.1", features = ["macros", "rt-multi-thread"] }
toml = "0.8.8"
zip = "0.6.6"
[dev-dependencies]
uuid = { version = "1.6.1", default-features = false, features = ["v4"] }
[profile.release]
strip = true
lto = true
codegen-units = 1