-
Notifications
You must be signed in to change notification settings - Fork 31
/
Cargo.toml
31 lines (28 loc) · 1.29 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
[package]
name = "rustbot"
version = "0.1.0"
authors = ["kangalioo", "technetos <[email protected]>", "Ivan Dardi <[email protected]>"]
edition = "2018"
license = "MIT"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
reqwest = { version = "0.11", default-features = false, features = ["json", "rustls-tls"] }
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
log = "0.4.14"
env_logger = "0.7.1"
chrono = "0.4.0" # To interact with serenity
# poise = { path = "../poise", features = ["collector"] }
poise = "0.3.0"
tokio = { version = "1.4.0", features = ["rt-multi-thread", "process"] }
sqlx = { version = "0.6.3", features = ["runtime-tokio-rustls", "sqlite", "offline"] }
dotenv = "0.15.0"
image = { version = "0.24", default-features = false, features = ["png"] } # get a better computer meme rendering
imageproc = { version = "0.23", default-features = false } # get a better computer meme rendering
rusttype = { version = "0.9", default-features = false } # interact with imageproc
once_cell = "1.13"
humantime = "2.1.0"
rand = "0.8.5"
[patch.crates-io]
poise = { git = "https://github.com/kangalioo/poise", branch = "serenity-next" }
# serenity = { git = "https://github.com/elkowar/serenity", branch = "smaller_send_message" }