-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
27 lines (23 loc) · 635 Bytes
/
Cargo.toml
File metadata and controls
27 lines (23 loc) · 635 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
[package]
name = "discord_bot"
version = "0.1.0"
authors = ["Zefanja Jobse <zefanjaj@gmail.com>"]
edition = "2018"
[dependencies]
tokio = { version = "1.24", features = ["rt", "rt-multi-thread"] }
anyhow = "1.0"
serde_json = { version = "1.0" }
serde = { version = "1.0", features = ["derive"] }
chrono = "0.4"
warp = "0.3"
flexi_logger = "0.25"
log = "0.4"
confy = "0.5"
[dependencies.serenity]
version = "0.11"
default-features = false
features = ["client", "gateway", "rustls_backend", "model", "cache"]
[dependencies.reqwest]
version = "0.11"
default-features = false
features = ["rustls-tls", "json"]