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

[dependencies]
jellycommon = { path = "../common" }
jellybase = { path = "../base" }
jellyimport = { path = "../import" }
jellyclient = { path = "../client" }

log = { workspace = true }
env_logger = "0.10.1"
anyhow = "1.0.75"
clap = { version = "4.4.11", features = ["derive"] }
reqwest = { workspace = true }
indicatif = "0.17.7"
tokio = { workspace = true }

serde = { version = "1.0.193", features = ["derive"] }
serde_json = "1.0.108"
serde_yaml = "0.9.27"
bincode = { version = "2.0.0-rc.3", features = ["serde"] }
base64 = "0.21.5"
rand = "0.8.5"

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