[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.11.3" anyhow = "1.0.82" clap = { version = "4.5.4", features = ["derive"] } reqwest = { workspace = true } indicatif = "0.17.8" tokio = { workspace = true } serde = { version = "1.0.197", features = ["derive"] } serde_json = "1.0.115" serde_yaml = "0.9.34" bincode = { version = "2.0.0-rc.3", features = ["serde"] } base64 = "0.22.0" rand = "0.8.5" dialoguer = { version = "0.11.0", features = ["fuzzy-select"] }