-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
45 lines (40 loc) · 1.22 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
37
38
39
40
41
42
43
44
45
[package]
name = "afrotd"
version = "0.4.3"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
axum = { version = "0.7.9", features = ["tracing"] }
axum-extra = { version = "0.9.6", features = ["typed-header"] }
tower-http = { version = "0.6.2", features = ["fs", "trace"] }
chrono = "0.4.39"
chrono-tz = "0.10.0"
clap = { version = "4.5.23", features = ["derive"] }
eyre = "0.6.12"
indexmap = { version = "2.7.0", features = ["serde"] }
maud = { version = "0.26.0", features = ["axum"] }
once_cell = "1.20.2"
rand = "0.8.5"
rand_pcg = "0.3.1"
rand_seeder = "0.3.0"
regex = "1.11.1"
roman-numerals = "0.4.0"
rss = "2.0.11"
tokio = { version = "1.42.0", features = ["full"] }
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["env-filter", "json"] }
serenity = "0.12"
veil = "0.2"
serde = { version = "1.0", features = ["derive"] }
serde_json = { version = "1.0" }
genanki-rs = "0.4.0"
[dev-dependencies]
insta = { version = "1.41.1", features = ["yaml"] }
reqwest = { version = "0.12.9", features = ["blocking"] }
temp_testdir = "0.2.3"
tidier = "0.5.3"
[profile.dev.package]
insta.opt-level = 3
similar.opt-level = 3
[profile.release]
lto = "thin"