-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathCargo.toml
70 lines (55 loc) · 1.57 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
[package]
name = "voice_bridge"
version = "0.1.0"
authors = ["Aron Heinecke <aron.heinecke@t-online.de>"]
edition = "2018"
readme = "README.md"
license = "AGPL-3.0"
categories = ["api-bindings"]
repository = "https://github.com/0xpr03/voice-bridge"
description = "discord teamspeak voice bridge"
keywords = ["teamspeak", "ts3","discord", "voice", "bridge", "audio"]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[profile.release]
lto = true
[dependencies]
toml = "0.7"
serde = { version = "1.0", features = ["derive"] }
# pushing [f32] to [u8] and vice verca
byte-slice-cast = "1"
# tokio tracing from songbird
tracing = "0.1"
tracing-subscriber = "0.3"
tracing-futures = "0.2"
### TS stuff
audiopus = "0.2"
futures = "0.3"
# we use the ts slog stuff for the code copied
slog = "2"
slog-async = "2"
slog-perf = "0.2"
slog-term = "2"
slog-envlogger = "2"
# copied error handler
anyhow = "1"
tokio-stream = "0.1"
[dependencies.tsproto-packets]
version = "0.1"
#git = "https://github.com/ReSpeak/tsclientlib"
#rev = "3aa03661a2b9c62a6faf05e0f16a94e606c4fdb6"
[dependencies.tsclientlib]
version = "0.2"
#git = "https://github.com/ReSpeak/tsclientlib"
#default-features = false
#rev = "3aa03661a2b9c62a6faf05e0f16a94e606c4fdb6"
## discord specific
[dependencies.songbird]
version = "0.3"
features = ["driver","gateway"]
[dependencies.serenity]
version = "0.11"
features = ["client", "standard_framework", "voice","native_tls_backend", "builder"]
## tokio
[dependencies.tokio]
version = "1.0"
features = ["macros", "rt-multi-thread","signal", "sync"]