-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
37 lines (33 loc) · 1.45 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
[package]
name = "mljboard-bot"
version = "0.2.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[features]
default = ["shuttle"]
shuttle = ["dep:shuttle-runtime", "dep:shuttle-secrets", "dep:shuttle-serenity", "dep:shuttle-shared-db"]
[dependencies]
log = "0.4.20"
clap = "4.4.8"
serenity = { version = "0.12.0", default-features = false, features = ["client", "gateway", "rustls_backend", "model"] }
tokio = { version = "1.34.0", features = ["rt", "time", "macros"] }
rand = "0.8.5"
prefixed-api-key = { version = "0.1.0", features = ["sha2"] }
reqwest = "0.11.22"
serde = "1.0.193"
serde_derive = "1.0.193"
serde_json = "1.0.108"
env_logger = "0.10.1"
futures = "0.3.29"
mljcl = { git = "https://github.com/duckfromdiscord/mljcl", version = "1.0.0" }
lastfm = "0.7.0"
url = "2.5.0"
shuttle-runtime = { optional = true, version = "0.34.0" }
shuttle-secrets = { optional = true, version = "0.34.0" }
shuttle-serenity = { optional = true, version = "0.34.1", default-features = false, features = ["serenity-0-12-rustls_backend"] }
shuttle-shared-db = { optional = true, version = "0.34.0", features = ["postgres-rustls"] }
sqlx = { version = "0.7.3", features = ["postgres", "runtime-tokio"] }
futures-util = "0.3.30"
poise = { git = "https://github.com/serenity-rs/poise", features = ["collector"] }
lfm-stats = { git = "https://github.com/duckfromdiscord/lfm-stats-rs", version = "0.1.0" }
image = "0.24.8"