[package]
edition = "2021"
name = "webrtc-core"
version = "0.5.37"
authors = ["xbl1e"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Sub-microsecond WebRTC media core with zero-copy architecture"
readme = "README.md"
keywords = [
"webrtc",
"rtc",
"media",
"network",
]
categories = ["network-programming"]
license = "MIT"
repository = "https://github.com/xbl1e/webrtc-core"
[features]
default = []
[lib]
name = "webrtc_core"
path = "src/lib.rs"
[[bin]]
name = "webrtc-core"
path = "src/main.rs"
[[example]]
name = "bench_micro"
path = "examples/bench_micro.rs"
[[example]]
name = "discord_clone"
path = "examples/discord_clone.rs"
[[example]]
name = "max_throughput_bench"
path = "examples/max_throughput_bench.rs"
[[example]]
name = "svc_chaos_test"
path = "examples/svc_chaos_test.rs"
[[example]]
name = "voip_production"
path = "examples/voip_production.rs"
[dependencies.aes-gcm]
version = "0.10"
[dependencies.anyhow]
version = "1.0"
[dependencies.bytes]
version = "1.4"
[dependencies.crossbeam-channel]
version = "0.5"
[dependencies.crossbeam-utils]
version = "0.8"
[dependencies.once_cell]
version = "1.20"
[dependencies.parking_lot]
version = "0.12"
[dependencies.ring]
version = "0.16"
[dependencies.thiserror]
version = "1.0"
[dependencies.tokio]
version = "1.36"
features = [
"rt-multi-thread",
"macros",
"time",
"net",
]
[target."cfg(unix)".dependencies.nix]
version = "0.27"
[target."cfg(windows)".dependencies.winapi]
version = "0.3"
features = ["processthreadsapi"]
[target."cfg(windows)".dependencies.windows-sys]
version = "0.48"