aboutsummaryrefslogtreecommitdiff
path: root/tools/Cargo.toml
blob: 006a7a1a1d5eb3cc3e9ebe5f71a2d815e9c4f262 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
[package]
name = "jellytools"
version = "0.1.0"
edition = "2021"

[dependencies]
jellycommon = { path = "../common" }
jellymatroska = { path = "../matroska" }
jellyremuxer = { path = "../remuxer" }

log = "0.4.18"
env_logger = "0.10.0"
anyhow = "1.0.71"
clap = { version = "4.3.0", features = ["derive"] }
reqwest = { version = "0.11.18", features = ["blocking", "json"] }

serde = { version = "1.0.164", features = ["derive"] }
serde_json = "1.0.96"
bincode = { version = "2.0.0-rc.3", features = ["serde"] }

[[bin]]
path = "src/bin/import.rs"
name = "jellything-import"