-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
62 lines (52 loc) · 1.34 KB
/
Copy pathCargo.toml
File metadata and controls
62 lines (52 loc) · 1.34 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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
[package]
name = "ToyMine"
version = "0.1.0"
edition = "2024"
[dependencies]
# Async
arc-swap = "1.8"
async-trait = "0.1"
futures = "0.3"
tokio = { version = "1.49", features = ["full", "tracing"] }
tokio-util = { version = "0.7", features = ["compat"] }
tracing = "0.1"
tracing-subscriber = "0.3"
# Serde
erased-serde = "0.4"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
toml = "1.0"
# Utils
anyhow = "1.0"
chrono = { version = "0.4", features = ["serde"] }
clap = { version = "4.5", features = ["derive"] }
colored = "3.1"
cron = { version = "0.15", features = ["serde"] }
indicatif = "0.18"
regex = "1.12"
tailspin = "5.5"
uuid = { version = "1.21", features = ["v4"] }
# File
hex = "0.4"
infer = "0.19"
sha2 = "0.10"
zip = "8.1"
# HTTP Client
nyquest = { version = "0.4", features = ["async", "async-stream"] }
nyquest-preset = { version = "0.4", features = ["async", "async-stream"] }
# Backup
rustic_backend = "0.6"
rustic_core = "0.10"
# Telemetry
console-subscriber = { version = "0.5", optional = true }
dhat = { version = "0.3", optional = true }
tracing-chrome = { version = "0.7", optional = true }
tracing-flame = { version = "0.2", optional = true }
[features]
default = []
telemetry = ["console-subscriber", "tracing-chrome", "tracing-flame", "dhat"]
[profile.release]
strip = true
opt-level = "z"
lto = true
codegen-units = 1