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