blob: 645326d8a133379cc262c65d9336fc2d559962a3 (
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
29
30
31
32
|
[package]
name = "jellyimport"
version = "0.1.0"
edition = "2021"
[dependencies]
jellybase = { path = "../base" }
jellyclient = { path = "../client" }
ebml-struct = { git = "https://codeberg.org/metamuffin/ebml-struct", features = [
"bincode",
] }
rayon = "1.10.0"
crossbeam-channel = "0.5.14"
log = { workspace = true }
anyhow = "1.0.95"
reqwest = { workspace = true }
urlencoding = "2.1.3"
bincode = { version = "2.0.0-rc.3", features = ["derive"] }
serde = { version = "1.0.217", features = ["derive"] }
serde_json = "1.0.138"
serde_yaml = "0.9.34"
async-recursion = "1.1.1"
futures = "0.3.31"
tokio = { workspace = true }
regex = "1.11.1"
base64 = "0.22.1"
|