-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
32 lines (30 loc) · 920 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
[package]
name = "silvus"
version = "0.0.2"
edition = "2021"
authors = ["anesthetice"]
[dependencies]
axum = { version = "0.8" }
axum-macros = { version = "0.5" }
clap = { version = "4.5", features = ["cargo"] }
directories = { version = "6.0" }
eyre = { version = "0.6" }
ijson = { version = "0.1" }
indoc = { version = "2.0" }
itertools = { version = "0.14" }
once_cell = { version = "1.20" }
regex = { version = "1.10" }
reqwest = { version = "0.12" }
serde = { version = "1.0", features = ["derive"] }
serde_json = { version = "1.0" }
time = { version = "0.3", features = ["local-offset"] }
tokio = { version = "1.43", features = ["full"] }
tower-http = { version = "0.6", features = ["fs", "trace"] }
tracing = { version = "0.1" }
tracing-appender = { version = "0.2" }
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
[profile.release]
opt-level = 3
lto = "fat"
codegen-units = 1
debug = true