forked from riccardofano/twiggy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
27 lines (24 loc) · 844 Bytes
/
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
[package]
name = "twiggy_bot"
version = "1.0.0"
edition = "2021"
rust-version = "1.78"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
poise = "0.6"
tokio = { version = "1.37.0", features = ["macros", "rt-multi-thread"] }
sqlx = { version = "0.6.3", features = ["runtime-tokio-rustls", "sqlite", "offline", "chrono"] }
anyhow = "1.0.70"
rand = "0.8.5"
chrono = { version = "0.4.24", features = ["clock"] }
rand_seeder = "0.2.3"
image = "0.24.6"
lru = "0.12.0"
serde = { version = "1.0.192", features = ["derive"] }
reqwest = { version = "0.11.22", features = ["json"] }
serde_json = "1.0.108"
rpg-dice-roller = "0.2"
[dependencies.serenity]
version = "^0.12"
default-features = false
features = ["builder", "client", "gateway", "model", "utils", "collector", "rustls_backend"]