-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathCargo.toml
More file actions
38 lines (35 loc) · 1.09 KB
/
Cargo.toml
File metadata and controls
38 lines (35 loc) · 1.09 KB
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
[package]
name = "zerda"
version = "0.1.1-beta.1"
edition = "2021"
license = "AGPL-3.0-only"
repository = "https://github.com/Mgrsc/zerda"
[dependencies]
tokio = { version = "1", features = ["rt-multi-thread", "macros", "net", "time", "sync", "process", "io-util", "io-std", "fs", "signal"] }
reqwest = { version = "0.12", features = ["json", "multipart", "rustls-tls", "stream"], default-features = false }
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
clap = { version = "4.5", features = ["derive", "env"] }
anyhow = "1.0"
async-trait = "0.1"
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["env-filter", "json"] }
regex = "1"
base64 = "0.22"
dirs = "6"
toml = "1.0.1"
futures = "0.3.32"
tokio-util = { version = "0.7.18", features = ["rt"] }
hex = "0.4"
chrono = "0.4.43"
bytes = "1.11.1"
uuid = { version = "1.21.0", features = ["v4"] }
qrcode = { version = "0.14.1", default-features = false }
rusqlite = { version = "0.39.0", features = ["bundled"] }
[profile.release]
opt-level = "z"
lto = true
strip = true
panic = "abort"
[dev-dependencies]
proptest = "1.10.0"