2024-11-27 20:23:18 -06:00
|
|
|
[package]
|
|
|
|
name = "srt2rvt"
|
|
|
|
version = "0.1.0"
|
|
|
|
edition = "2021"
|
|
|
|
|
2024-11-27 23:24:40 -06:00
|
|
|
[patch.crates-io]
|
|
|
|
ac-ffmpeg = { git = "https://github.com/minishd/rust-ac-ffmpeg.git", branch = "master" }
|
|
|
|
|
2024-11-27 20:23:18 -06:00
|
|
|
[dependencies]
|
|
|
|
ac-ffmpeg = "0.18.1"
|
|
|
|
anyhow = "1.0"
|
|
|
|
argh = "0.1.12"
|
|
|
|
axum = { version = "0.7", features = ["http2", "macros"] }
|
|
|
|
base64 = "0.22.1"
|
|
|
|
bytes = "1.5"
|
|
|
|
crossbeam-queue = "0.3"
|
|
|
|
dashmap = "6.1"
|
|
|
|
futures = "0.3"
|
|
|
|
rayon = "1.10.0"
|
|
|
|
serde = { version = "1.0", features = ["derive"] }
|
|
|
|
srt-tokio = { version = "0.4", features = ["ac-ffmpeg"] }
|
|
|
|
tokio = { version = "1", features = ["full"] }
|
|
|
|
tokio-stream = "0.1"
|
|
|
|
tower = "0.5.1"
|
|
|
|
zstd = { version = "0.13.2", features = ["zstdmt"] }
|