omegaupload/cli/Cargo.toml

20 lines
582 B
TOML
Raw Permalink Normal View History

2021-10-16 16:50:11 +00:00
[package]
2021-10-31 22:54:27 +00:00
name = "omegaupload"
2022-01-18 05:30:32 +00:00
version = "0.1.1"
2021-10-22 01:35:54 +00:00
edition = "2021"
2021-10-31 23:07:07 +00:00
description = "OmegaUpload CLI tool"
repository = "https://git.eddie.sh/edward/omegaupload"
license = "GPL-3.0-or-later"
2021-10-16 16:50:11 +00:00
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
omegaupload-common = { path = "../common" }
2022-07-11 03:27:51 +00:00
anyhow = "1.0.58"
atty = "0.2.14"
2022-08-24 07:58:20 +00:00
bytes = "1"
2022-07-27 02:38:45 +00:00
clap = { version = "3.2.15", features = ["derive"] }
2022-08-24 07:58:20 +00:00
indicatif = "0.17"
2022-07-11 03:27:51 +00:00
reqwest = { version = "0.11.11", default-features = false, features = ["rustls-tls", "blocking"] }
2022-07-27 02:38:45 +00:00
rpassword = "7.0.0"