aboutsummaryrefslogtreecommitdiff
path: root/tools/Cargo.toml
blob: 9eb488b4abb4b5928a18f21d3836493ccf020cdd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
[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"] }
serde = { version = "1.0.164", features = ["derive"] }
serde_json = "1.0.96"
reqwest = { version = "0.11.18", features = ["blocking", "json"] }

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