blob: 98dd86c5e4d4bdf6f7173704d88ee3a6486bd06d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
[package]
name = "jellyremuxer"
version = "0.1.0"
edition = "2021"
[dependencies]
jellymatroska = { path = "../matroska" }
jellycache = { path = "../cache" }
tokio = { version = "1.43.0", features = ["io-util"] }
anyhow = "1.0.95"
log = { workspace = true }
serde = { version = "1.0.217", features = ["derive"] }
bincode = { version = "2.0.0-rc.3", features = ["serde"] }
ebml-struct = { git = "https://codeberg.org/metamuffin/ebml-struct", features = [
"bincode",
] }
|