Files
mdrs-client-rust/Cargo.toml
T
Yoshihiro OKUMURA cb5cff7b64 build: bump to 2.0.2 and update dependencies
- Raise tokio, base64, serde_json and anyhow to the releases they are
  tested against, and refresh the lockfile.
- base64 0.23 needed no change to the code that uses it.
2026-09-04 18:23:33 +09:00

37 lines
942 B
TOML

[package]
name = "mdrs-client-rust"
version = "2.0.2"
edition = "2024"
license = "MIT"
authors = ["Neuroinformatics Unit, RIKEN CBS"]
description = "A command-line client for uploading and downloading files to and from an MDRS-based repository."
[[bin]]
name = "mdrs"
path = "src/main.rs"
[dependencies]
clap = { version = "4.5", features = ["derive"] }
reqwest = { version = "0.12", default-features = false, features = ["json", "multipart", "rustls-tls", "stream"] }
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0.151"
tokio = { version = "1.53.1", features = ["full"] }
tokio-util = { version = "0.7", features = ["io"] }
futures = "0.3"
dirs = "6.0.0"
anyhow = "1.0.104"
configparser = "3.2.0"
sha2 = "0.11.0"
rpassword = "7.5.4"
base64 = "0.23.1"
fs2 = "0.4"
ctrlc = "3"
os_info = "3.15.0"
dotenvy = "0.15"
unicode-normalization = "0.1"
self-replace = "1"
tar = "0.4.46"
flate2 = "1"
zip = "8.6.0"
tempfile = "3"