Files
mdrs-client-rust/Cargo.toml
T
orrisroot afd08f2499
Release / build-linux-x86_64 (push) Successful in 2m14s
Release / build-linux-aarch64 (push) Successful in 2m6s
fix(cache): format sha256 digest manually to resolve trait bound error
Update digest formatting to manually convert the SHA-256 result bytes
to a hexadecimal string. This resolves a compilation error caused by
upgrading the `sha2` crate to v0.11, where `LowerHex` is no longer
implemented for the return type of `finalize()`.
2026-06-12 10:19:10 +09:00

37 lines
900 B
TOML

[package]
name = "mdrs-client-rust"
version = "2.0.1"
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"] }
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0.150"
tokio = { version = "1.52.3", features = ["full"] }
futures = "0.3"
dirs = "6.0.0"
anyhow = "1.0.102"
configparser = "3.2.0"
validators = "0.25.3"
sha2 = "0.11.0"
rpassword = "7.5.4"
base64 = "0.22"
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"