-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
45 lines (43 loc) · 1.06 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 = "preview_bot"
version = "0.1.0"
license = "MPL-2.0"
edition = "2021"
[dependencies]
ab_glyph = "0.2.25"
axum = { git = "https://github.com/tokio-rs/axum", tag = "axum-v0.8.0-rc.1" }
base64 = "0.22.1"
blake3 = "1.5.1"
constant_time_eq = "0.3.0"
dotenvy = "0.15.7"
httpdate = "1.0.3"
image = "0.25.1"
imageproc = "0.25.0"
once_cell = "1.19.0"
percent-encoding = "2.3.1"
redis = { version = "0.27.2", features = ["tokio-comp", "connection-manager"] }
regex = "1.10.4"
reqwest = { version = "0.12.4", default-features = false, features = [
"json",
"rustls-tls",
"gzip",
"brotli",
"deflate",
] }
serde = "1.0.201"
serde_json = "1.0.117"
serenity = { git = "https://github.com/serenity-rs/serenity", branch = "next", default-features = false, features = [
"builder",
"cache",
"gateway",
"model",
"utils",
"rustls_backend",
] }
tokio = { version = "1.37.0", features = ["full"] }
tower-http = { version = "0.6.1", features = ["cors"] }
[profile.release]
opt-level = 3
lto = "fat"
codegen-units = 1
debug = "line-tables-only"