-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathCargo.toml
More file actions
32 lines (28 loc) · 758 Bytes
/
Cargo.toml
File metadata and controls
32 lines (28 loc) · 758 Bytes
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 = "discord_bot"
version = "0.1.1"
authors = ["Zefanja Jobse <zefanjaj@gmail.com>"]
edition = "2018"
[dependencies]
tokio = { version = "1.47", features = ["rt", "rt-multi-thread"] }
anyhow = "1.0"
serde_json = { version = "1.0" }
serde = { version = "1.0", features = ["derive"] }
ab_glyph = "0.2"
imageproc = "0.25"
chrono = "0.4"
warp = {version = "0.4", features = ["server"] }
flexi_logger = "0.31"
log = "0.4"
[dependencies.image]
version = "0.25"
default-features = false
features = ["jpeg", "png"]
[dependencies.serenity]
version = "0.12"
default-features = false
features = ["client", "gateway", "rustls_backend", "model", "cache"]
[dependencies.reqwest]
version = "0.12"
default-features = false
features = ["rustls-tls", "json"]