mirror of
https://github.com/v0l/zap-stream-core.git
synced 2025-06-15 01:16:32 +00:00
37 lines
718 B
TOML
37 lines
718 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"
|
|
|
|
# srt
|
|
srt-tokio = { version = "0.4.4", optional = true }
|
|
|
|
# rtmp
|
|
rml_rtmp = { version = "0.8.0", optional = true }
|
|
libc = "0.2.169" |