laravel-webrtc/rust/Cargo.toml

27 lines
628 B
TOML

[package]
name = "blax-webrtc-sfu"
version = "0.1.0"
edition = "2021"
license = "MIT"
description = "Rust SFU data plane for blax-software/laravel-webrtc: terminates ICE/DTLS/SRTP (str0m), forwards Opus RTP between room peers, records, and is driven by PHP over a JSON control socket."
publish = false
[[bin]]
name = "blax-webrtc-sfu"
path = "src/main.rs"
[dependencies]
# Sans-IO WebRTC (ICE/DTLS/SRTP/RTP) — the media core.
str0m = "0.6"
serde = { version = "1", features = ["derive"] }
serde_json = "1"
anyhow = "1"
log = "0.4"
env_logger = "0.11"
ogg = "0.9"
[profile.release]
lto = true
codegen-units = 1
strip = true