[package] authors = ["Kyle Simpson "] description = "Custom fork of Songbird for KenaBot." documentation = "https://docs.rs/skua-voice" edition = "2021" homepage = "https://github.com/KenaBot/skua-voice" include = ["src/**/*.rs", "Cargo.toml", "build.rs"] keywords = ["discord", "api", "rtp", "audio"] license = "ISC" name = "skua-voice" readme = "README.md" repository = "https://github.com/KenaBot/skua-voice" rust-version = "1.74" version = "0.4.0" [dependencies] async-trait = { optional = true, version = "0.1" } audiopus = { optional = true, version = "0.3.0-rc.0" } byteorder = { optional = true, version = "1" } bytes = { optional = true, version = "1" } crypto_secretbox = { optional = true, features = ["std"], version = "0.1" } dashmap = { optional = true, version = "5" } derivative = "2" discortp = { default-features = false, features = [ "discord", "pnet", "rtp", ], optional = true, version = "0.6" } flume = { optional = true, version = "0.11" } futures = "0.3" nohash-hasher = { optional = true, version = "0.2.0" } once_cell = { optional = true, version = "1" } parking_lot = { optional = true, version = "0.12" } pin-project = "1" rand = { optional = true, version = "0.8" } reqwest = { default-features = false, features = [ "stream", ], optional = true, version = "0.11" } ringbuf = { optional = true, version = "0.3" } rubato = { optional = true, version = "0.14.1" } rusty_pool = { optional = true, version = "0.7" } serde = { version = "1", features = ["derive"] } serde-aux = { optional = true, version = "4" } serde_json = "1" skua = { default-features = false, optional = true, version = "0.12.1", features = [ "voice", "gateway", ] } skua-voice-model = { optional = true, version = "0.2" } simd-json = { features = ["serde_impl"], optional = true, version = "0.13" } socket2 = { optional = true, version = "0.5" } streamcatcher = { optional = true, version = "1" } symphonia = { default_features = false, optional = true, version = "0.5.2" } symphonia-core = { optional = true, version = "0.5.2" } tokio = { default-features = false, optional = true, version = "1.0" } tokio-tungstenite = { optional = true, version = "0.20" } tokio-util = { features = ["io"], optional = true, version = "0.7" } tracing = { version = "0.1", features = ["log"] } tracing-futures = "0.2" twilight-gateway = { default-features = false, optional = true, version = "0.15.0" } twilight-model = { default-features = false, optional = true, version = "0.15.0" } typemap_rev = { optional = true, version = "0.3" } url = { optional = true, version = "2" } uuid = { features = ["v4"], optional = true, version = "1" } [dev-dependencies] byteorder = "1" criterion = "0.5" ntest = "0.9" symphonia = { version = "0.5.2", features = ["aac", "isomp4", "mp3"] } tokio = { version = "1", features = ["rt", "rt-multi-thread", "test-util"] } [features] # Core features default = ["driver", "gateway", "rustls", "skua"] gateway = [ "dep:async-trait", "dep:dashmap", "dep:flume", "dep:once_cell", "dep:parking_lot", "dep:tokio", "tokio?/sync", "tokio?/time", ] driver = [ "dep:async-trait", "dep:audiopus", "dep:byteorder", "dep:crypto_secretbox", "dep:discortp", "dep:reqwest", "dep:flume", "dep:nohash-hasher", "dep:once_cell", "dep:parking_lot", "dep:rand", "dep:ringbuf", "dep:rubato", "dep:rusty_pool", "dep:serde-aux", "dep:skua-voice-model", "dep:socket2", "dep:streamcatcher", "dep:symphonia", "dep:symphonia-core", "dep:tokio", "dep:tokio-tungstenite", "dep:tokio-util", "dep:typemap_rev", "dep:url", "dep:uuid", "tokio?/fs", "tokio?/io-util", "tokio?/macros", "tokio?/net", "tokio?/process", "tokio?/rt", "tokio?/sync", "tokio?/time", ] rustls = [ "reqwest?/rustls-tls", "skua?/rustls_backend", "tokio-tungstenite?/rustls-tls-webpki-roots", "twilight-gateway?/rustls-native-roots", ] native = [ "reqwest?/native-tls", "skua?/native_tls_backend", "tokio-tungstenite?/native-tls", "twilight-gateway?/native", ] twilight = ["dep:twilight-gateway", "dep:twilight-model"] # Behaviour altering features. builtin-queue = [] receive = ["dep:bytes", "discortp?/demux", "discortp?/rtcp"] # Used for docgen/testing/benchmarking. full-doc = ["default", "twilight", "builtin-queue", "receive"] internals = ["dep:byteorder"] [lib] bench = false [[bench]] name = "base-mixing" path = "benches/base-mixing.rs" required-features = ["internals"] harness = false [[bench]] name = "mixing-task" path = "benches/mixing-task.rs" required-features = ["internals"] harness = false [package.metadata.docs.rs] features = ["full-doc"] rustdoc-args = ["--cfg", "docsrs"]