aboutsummaryrefslogtreecommitdiff
path: root/import/Cargo.toml
blob: 506ed2433813af7a58682ba42b6b0280fc3e6b0f (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
[package]
name = "jellyimport"
version = "0.1.0"
edition = "2021"

[dependencies]
jellybase = { path = "../base" }
jellyclient = { path = "../client" }
jellyremuxer = { path = "../remuxer" }
jellycache = { path = "../cache" }
jellyimport-fallback-generator = { path = "fallback_generator" }

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"