-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathCargo.toml
38 lines (37 loc) · 1.46 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
[package]
name = "safetyjim"
version = "5.0.0"
edition = "2021"
[dependencies]
anyhow = { version = "1.0.95", features = ["backtrace"] }
argh = "0.1.13"
async-recursion = "1.1.1"
async-trait = "0.1.84"
axum = { version = "0.8.1", features = ["macros"] }
axum-extra = { version = "0.10.0", features = ["typed-routing"] }
chrono = "0.4.39"
envy = "0.4.2"
humantime = "2.1.0"
jsonwebtoken = "9.3.0"
lazy_static = "1.5.0"
mimalloc = { version = "0.1.43", default-features = false }
moka = { version = "0.12.9", features = ["future"] }
once_cell = "1.20.2"
regex = "1.11.1"
reqwest = { version = "0.12.12", default-features = false, features = ["rustls-tls-native-roots", "gzip", "json"] }
scraper = "0.22.0"
serde = { version = "1.0.217", features = ["derive"] }
serde_json = "1.0.134"
serenity = { git = "https://github.com/serenity-rs/serenity/", branch = "next", default-features = false, features = ["rustls_backend", "builder", "gateway", "http", "model", "collector", "unstable"] }
simsearch = "0.2.5"
smol_str = "0.3.2"
sqlx = { version = "0.8.2", features = ["postgres", "runtime-tokio-rustls", "uuid"] }
thiserror = "2.0.9"
tokio = { version = "1.42.0", features = ["full"] }
tower-http = { version = "0.6.2", features = ["cors", "trace"] }
tracing = "0.1.41"
tracing-appender = "0.2.3"
tracing-futures = "0.2.5"
tracing-subscriber = { version = "0.3.19", features = ["json", "registry", "env-filter"] }
typemap_rev = "0.3.0"
uuid = { version = "1.11.0", features = ["serde", "v4"] }