9d29aad463
Update the Rust package manifest to 2.0.0 so CLI version reporting and release-related flows pick up the new version from Cargo metadata. Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
37 lines
876 B
TOML
37 lines
876 B
TOML
[package]
|
|
name = "mdrs-client-rust"
|
|
version = "2.0.0"
|
|
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"
|
|
tokio = { version = "1.37", features = ["full"] }
|
|
futures = "0.3"
|
|
dirs = "5.0"
|
|
anyhow = "1.0.102"
|
|
configparser = "3.1.0"
|
|
validators = "0.25.3"
|
|
sha2 = "0.10"
|
|
rpassword = "7.0"
|
|
base64 = "0.22"
|
|
fs2 = "0.4"
|
|
ctrlc = "3"
|
|
os_info = "3"
|
|
dotenvy = "0.15"
|
|
unicode-normalization = "0.1"
|
|
self-replace = "1"
|
|
tar = "0.4"
|
|
flate2 = "1"
|
|
zip = "2"
|
|
tempfile = "3"
|