-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
54 lines (49 loc) · 1.78 KB
/
Copy pathCargo.toml
File metadata and controls
54 lines (49 loc) · 1.78 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
[package]
name = "bot-rs"
version = "0.5.1"
edition = "2024"
[dependencies]
tracing = "0.1.41"
tracing-subscriber = { version = "0.3.19", features = ["chrono"] }
tracing-appender = "0.2.3"
sentry = { version = "0.48.0", default-features = false, features = ["rustls", "reqwest", "backtrace", "contexts", "debug-images", "panic"] }
sentry-tower = { version = "0.48.0", features = ["http", "axum-matched-path"] }
sentry-anyhow = "0.48.0"
axum = "0.8.1"
colored = "3.0.0"
dotenvy = "0.15.7"
serde = { version = "1.0.218", features = ["derive"] }
serde_json = { version = "1.0.140", features = ["preserve_order"] }
tokio = { version = "1.43.0", features = ["full"] }
utoipa = { version = "5.3.1", features = ["axum_extras", "preserve_order", "chrono", "indexmap"] }
utoipa-axum = "0.2.0"
sqlx = { version = "0.9", features = ["runtime-tokio", "tls-rustls-ring-webpki", "sqlite"] }
chrono = { version = "0.4.40", features = ["serde"] }
tower-http = { version = "0.7.0", features = ["catch-panic", "cors", "normalize-path"] }
tower = "0.5.2"
tikv-jemallocator = "0.6.0"
anyhow = "1.0.98"
serenity = { git = "https://github.com/serenity-rs/serenity.git", branch = "next" }
poise = { git = "https://github.com/meditationmind/poise.git", branch = "modal-derive-components" }
async-trait = "0.1.89"
octocrab = "0.53.1"
futures = "0.3.31"
sha2 = "0.11.0"
hmac = "0.13.0"
hex = "0.4.3"
indexmap = { version = "2.12.1", features = ["serde"] }
moka = { version = "0.12.13", features = ["future"] }
rustls = { version = "0.23.37", features = ["aws-lc-rs"] }
reqwest = { version = "0.13.2", features = ["json"] }
[profile.dev.package."*"]
opt-level = 3
[profile.dev]
debug = false
[profile.release.package."*"]
opt-level = "s"
codegen-units = 1
strip = "symbols"
[profile.release]
opt-level = "s"
codegen-units = 2
strip = "symbols"