-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
48 lines (41 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
38
39
40
41
42
43
44
45
46
47
48
[package]
name = "aurras"
version = "0.1.1"
edition = "2021"
authors = ["spectral369 <spectral369@freelancingpeter.eu>"]
description = "Discord Music Bot written in RUST"
homepage = "freelancingpeter.eu"
repository = "https://github.com/spectral369/aurras-bot/"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
twilight-model = "0.14.0"
twilight-gateway = { version = "0.14.0", default-features = false, features = [
"zlib-simd",
"native",
] }
twilight-cache-inmemory = "0.14.0"
twilight-util = { version = "0.14.0", features = ["link", "builder"] }
twilight-validate = "0.14.0"
twilight-http = { version = "0.14.0", features = ["native"] }
twilight-standby = "0.14.0"
futures = "0.3.25"
tokio = { version = "1.23.0", features = ["full"] }
#tokio = { features = ["macros", "rt-multi-thread", "sync"], version = "1.21.2" }
reqwest = { version = "0.11.13", features = ["json"] }
lazy-static-include = "3.1.3"
regex = "1.7.0"
linked_hash_set = "0.1.4"
async-trait = "0.1.60"
[dependencies.songbird]
default-features = false
git = "https://github.com/serenity-rs/songbird.git"
#branch = "next"
rev = "62cd0b1e3f6dc956cf97329ddaf38a19f8f7b374"
features = ["rustls", "driver", "gateway", "twilight", "builtin-queue"]
[dependencies.symphonia]
version = "0.5.1"
features = ["aac", "mp3", "isomp4", "alac"]
git = "https://github.com/FelixMcFelix/Symphonia"
branch = "songbird-fixes"
[profile.release]
lto = true