voice-bridge/Cargo.toml

67 lines
1.4 KiB
TOML
Raw Permalink Normal View History

[package]
name = "voice_bridge"
version = "0.1.0"
authors = ["Aron Heinecke <aron.heinecke@t-online.de>"]
edition = "2018"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
2021-08-13 21:40:10 +08:00
[profile.release]
2023-04-09 17:00:05 +08:00
lto = false
2021-08-13 21:40:10 +08:00
[dependencies]
2023-04-09 17:00:05 +08:00
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"
2023-04-09 17:00:05 +08:00
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]
2023-04-09 17:00:05 +08:00
version = "0.3"
features = ["driver","gateway"]
[dependencies.serenity]
2023-04-09 17:00:05 +08:00
version = "0.11"
features = ["client", "standard_framework", "voice","native_tls_backend"]
## tokio
[dependencies.tokio]
2023-04-09 17:00:05 +08:00
version = "1.27"
features = ["macros", "rt-multi-thread","signal", "sync"]
[patch.crates-io]
songbird = { git = "https://github.com/serenity-rs/songbird", branch="current" }