zap-stream-core/Cargo.toml

37 lines
1.1 KiB
TOML
Raw Normal View History

2024-03-11 22:19:08 +00:00
[package]
2024-11-13 11:43:28 +00:00
name = "zap-stream-core"
2024-03-11 22:19:08 +00:00
version = "0.1.0"
edition = "2021"
2024-11-13 11:43:28 +00:00
[features]
default = ["test-source"]
srt = ["dep:srt-tokio"]
test-source = ["dep:resvg", "dep:usvg", "dep:tiny-skia", "dep:fontdue"]
2024-03-11 22:19:08 +00:00
[dependencies]
2024-11-13 11:43:28 +00:00
ffmpeg-rs-raw = { git = "https://git.v0l.io/Kieran/ffmpeg-rs-raw.git", rev = "07a2c728883dff15961edbe1f8c6aa5e65cef293" }
tokio = { version = "1.36.0", features = ["rt", "rt-multi-thread", "macros"] }
anyhow = { version = "^1.0.91", features = ["backtrace"] }
2024-03-11 22:19:08 +00:00
pretty_env_logger = "0.5.0"
2024-11-13 11:43:28 +00:00
2024-03-11 22:19:08 +00:00
tokio-stream = "0.1.14"
futures-util = "0.3.30"
async-trait = "0.1.77"
log = "0.4.21"
2024-03-20 22:46:19 +00:00
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-11-13 11:43:28 +00:00
itertools = "0.13.0"
2024-08-28 23:23:45 +01:00
rand = "0.8.5"
2024-09-02 11:13:21 +01:00
clap = { version = "4.5.16", features = ["derive"] }
2024-11-13 11:43:28 +00:00
warp = "0.3.7"
srt-tokio = { version = "0.4.3", optional = true }
resvg = { version = "0.44.0", optional = true }
usvg = { version = "0.44.0", optional = true }
tiny-skia = { version = "0.11.4", optional = true }
fontdue = { version = "0.9.2", optional = true }
libc = "0.2.162"