-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
52 lines (44 loc) · 1.1 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
52
[package]
name = "sheepbot"
version = "0.1.0"
authors = ["Luca <[email protected]>"]
edition = "2018"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
rand = "0.8.4"
tracing = "0.1"
tracing-subscriber = "0.2"
qrcode = "0.12"
image = "0.23.10"
anyhow = "1.0.33"
config = "0.10.1"
serde = "1.0.117"
serde_derive = "1.0.117"
futures = "0.3"
url = "2.2.0"
rust-clock = "0.1.0"
dashmap = "4.0.2"
regex = "1.5.4"
aspotify = "0.7.0"
tts-urls = "1.0.0"
reqwest = "0.11.4"
notify = "4.0.17"
[dependencies.serenity]
version = "0.10.9"
features = ["cache", "framework", "standard_framework", "voice", "http", "rustls_backend"]
[dependencies.tokio]
version = "1.12.0"
features = ["macros", "time"]
[dependencies.lexical-core]
optional = true
version = ">= 0.6, < 0.8"
[dependencies.lavalink-rs]
version = "0.9.0-rc.1"
features = ["rustls", "serenity"]
[dependencies.songbird]
version = "0.2.0"
features = ["gateway", "serenity-rustls"]
[dependencies.sqlx]
default-features = false
version = "0.5.6"
features = [ "runtime-tokio-rustls", "macros", "postgres", "uuid" ]