zap-stream-core/Cargo.toml

31 lines
853 B
TOML
Raw Permalink Normal View History

2024-03-11 22:19:08 +00:00
[package]
name = "stream-core"
version = "0.1.0"
edition = "2021"
[dependencies]
srt-tokio = "0.4.3"
2024-03-25 10:32:03 +00:00
tokio = { version = "1.36.0", features = ["rt-multi-thread", "sync"] }
2024-03-20 22:46:19 +00:00
anyhow = { version = "1.0.80", features = ["backtrace"] }
2024-03-11 22:19:08 +00:00
pretty_env_logger = "0.5.0"
bytes = "1.5.0"
tokio-stream = "0.1.14"
futures-util = "0.3.30"
async-trait = "0.1.77"
log = "0.4.21"
2024-03-25 10:32:03 +00:00
ffmpeg-sys-next = { version = "6.1.0", features = ["avformat", "avcodec", "swscale", "avfilter"] }
2024-03-11 22:19:08 +00:00
libc = "0.2.153"
2024-03-20 22:46:19 +00:00
pretty-hex = "0.4.1"
uuid = { version = "1.8.0", features = ["v4", "serde"] }
serde = { version = "1.0.197", features = ["derive"] }
config = { version = "0.14.0", features = ["toml"] }
url = "2.5.0"
2024-03-25 19:19:31 +00:00
itertools = "0.12.1"
2024-03-27 16:33:43 +00:00
warp = "0.3.6"
2024-08-28 22:23:45 +00:00
rand = "0.8.5"
resvg = "0.43.0"
usvg = "0.43.0"
tiny-skia = "0.11.4"
2024-08-30 12:10:49 +00:00
fontdue = "0.9.2"
2024-09-02 10:13:21 +00:00
clap = { version = "4.5.16", features = ["derive"] }