mirror of
https://github.com/v0l/zap-stream-core.git
synced 2025-06-14 17:06:33 +00:00
29 lines
788 B
TOML
29 lines
788 B
TOML
[workspace]
|
|
resolver = "2"
|
|
members = [
|
|
"crates/core",
|
|
"crates/zap-stream",
|
|
"crates/zap-stream-db"
|
|
]
|
|
|
|
[profile.release]
|
|
opt-level = 3
|
|
lto = true
|
|
codegen-units = 1
|
|
panic = "unwind"
|
|
|
|
[workspace.dependencies]
|
|
ffmpeg-rs-raw = { git = "https://git.v0l.io/Kieran/ffmpeg-rs-raw.git", rev = "aa1ce3edcad0fcd286d39b3e0c2fdc610c3988e7" }
|
|
tokio = { version = "1.36.0", features = ["rt", "rt-multi-thread", "macros"] }
|
|
anyhow = { version = "^1.0.91", features = ["backtrace"] }
|
|
async-trait = "0.1.77"
|
|
log = "0.4.21"
|
|
uuid = { version = "1.8.0", features = ["v4", "serde"] }
|
|
serde = { version = "1.0.197", features = ["derive"] }
|
|
url = "2.5.0"
|
|
itertools = "0.14.0"
|
|
chrono = { version = "^0.4.38", features = ["serde"] }
|
|
hex = "0.4.3"
|
|
m3u8-rs = "6.0.0"
|
|
sha2 = "0.10.8"
|
|
data-encoding = "2.9.0" |