-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathCargo.toml
36 lines (30 loc) · 963 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
28
29
30
31
32
33
34
35
36
[package]
name = "scripty_commands"
version = "1.3.0"
edition = "2018"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
eval = "0.4"
tracing = "0.1"
systemstat = "*"
chrono = "0.4"
serde_json = "1.0"
rand = "0.8"
dashmap = "4.0"
ahash = "0.7"
scripty_db = { path = "../scripty_db" }
scripty_config = { path = "../scripty_config" }
scripty_audio = { path = "../scripty_audio" }
scripty_macros = { path = "../scripty_macros" }
scripty_utils = { path = "../scripty_utils" }
scripty_metrics = { path = "../scripty_metrics" }
[dependencies.sqlx]
version = "0.5"
features = ["runtime-tokio-rustls", "postgres", "offline"]
[dependencies.serenity]
git = "https://github.com/serenity-rs/serenity"
branch = "current"
features = ["client", "standard_framework", "voice", "rustls_backend", "framework", "cache", "collector", "unstable_discord_api"]
[dependencies.tokio]
version = "1.8"
features = ["full"]