aboutsummaryrefslogtreecommitdiff
path: root/tool/Cargo.toml
blob: 888381f9a01833015bbd3064adcedc70c8c83349 (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
[package]
name = "jellytool"
version = "0.1.0"
edition = "2021"

[dependencies]
jellycommon = { path = "../common" }
jellyimport = { path = "../import" }

log = { workspace = true }
env_logger = "0.11.6"
anyhow = "1.0.95"
reqwest = { workspace = true }
indicatif = "0.17.11"
tokio = { workspace = true }
clap = { version = "4.5.27", features = ["derive"] }
clap_complete = "4.5.43"

serde = { version = "1.0.217", features = ["derive"] }
serde_json = "1.0.138"
serde_yaml = "0.9.34"
bincode = { version = "2.0.0-rc.3", features = ["serde"] }
base64 = "0.22.1"
rand = "0.9.0"

dialoguer = { version = "0.11.0", features = ["fuzzy-select"] }