blob: 8844812543bc7f41595e3362436737f1d7ed43eb (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
|
[package]
name = "jellyimport"
version = "0.1.0"
edition = "2021"
[dependencies]
jellycommon = { path = "../common" }
jellybase = { path = "../base" }
jellyclient = { path = "../client" }
jellymatroska = { path = "../matroska" }
jellyremuxer = { path = "../remuxer" }
log = { workspace = true }
anyhow = "1.0.82"
reqwest = { workspace = true }
urlencoding = "2.1.3"
bincode = { version = "2.0.0-rc.3", features = ["derive"] }
serde = { version = "1.0.197", features = ["derive"] }
serde_json = "1.0.115"
serde_yaml = "0.9.34"
async-recursion = "1.1.0"
futures = "0.3.30"
tokio = { workspace = true }
regex = "1.10.4"
base64 = "0.22.0"
|