Files
zap-stream-core/crates/core/Cargo.toml
Kieran 09577cc2c8
All checks were successful
continuous-integration/drone Build is passing
fix: rtmp ingest
fix: idle placeholder stream
2025-06-12 14:56:59 +01:00

41 lines
751 B
TOML

[package]
name = "zap-stream-core"
version = "0.1.0"
edition = "2021"
[features]
default = ["srt", "rtmp"]
srt = ["dep:srt-tokio"]
rtmp = ["dep:rml_rtmp"]
[dependencies]
ffmpeg-rs-raw.workspace = true
tokio.workspace = true
anyhow.workspace = true
async-trait.workspace = true
log.workspace = true
uuid.workspace = true
serde.workspace = true
hex.workspace = true
itertools.workspace = true
m3u8-rs.workspace = true
sha2.workspace = true
data-encoding.workspace = true
futures-util = "0.3.30"
resvg = "0.45.1"
usvg = "0.45.1"
tiny-skia = "0.11.4"
fontdue = "0.9.2"
ringbuf = "0.4.7"
libc = "0.2.169"
# srt
srt-tokio = { version = "0.4.4", optional = true }
# rtmp
rml_rtmp = { version = "0.8.0", optional = true }
bytes = "1.9.0"
xflv = "0.4.4"