-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCargo.toml
51 lines (49 loc) · 1.18 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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
[package]
name = "bowot"
version = "2.0.0"
edition = "2018"
[dependencies]
chrono = "0.4"
anyhow = "1.0"
dotenv = "0.15"
lavalink-rs = { git = "https://gitlab.com/vicky5124/lavalink-rs", features = [
"rustls",
] }
lazy_static = "1.4"
parse_duration = "2.1"
poise = { git = "https://github.com/kangalioo/poise", features = ["collector"] }
rand = { version = "0.8" }
regex = "1.5"
songbird = { version = "0.2", default-features = false, features = [
"serenity-rustls",
"gateway",
] }
tokio = { version = "1.10", features = ["macros", "rt-multi-thread"] }
url = "2.2"
tracing = "0.1"
tracing-log = { version = "0.1", features = ["env_logger"] }
tracing-subscriber = "0.2"
itconfig = "1.1"
strsim = "0.10"
html-escape = "0.2"
sysinfo = "0.20"
sqlx = { version = "0.5", features = [
"runtime-tokio-rustls",
"postgres",
"chrono",
"offline",
] }
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
comfy-table = "4.0.1"
reqwest = { version = "0.11", default-features = false, features = [
"json",
"rustls-tls",
"gzip",
"brotli",
] }
strum = "0.21"
strum_macros = "0.21"
indexmap = "~1.6.2"
[patch.crates-io]
serenity = { git = "https://github.com/serenity-rs/serenity", branch = "next" }