imgurs/Cargo.toml

62 lines
1.4 KiB
TOML
Raw Normal View History

2022-01-22 21:02:51 +00:00
[package]
name = "imgurs"
description = "API and CLI for Imgur"
2022-01-23 19:29:33 +00:00
license = "BSD-3-Clause"
2022-01-27 10:02:56 +00:00
readme = "README.md"
2022-01-23 19:29:33 +00:00
authors = ["MedzikUser <nivua1fn@duck.com>"]
2022-01-25 19:25:34 +00:00
homepage = "https://github.com/MedzikUser/imgurs"
repository = "https://github.com/MedzikUser/imgurs.git"
2022-01-27 10:02:56 +00:00
keywords = ["imgur", "imgur-api", "image", "image-upload"]
categories = ["command-line-utilities"]
rust-version = "1.58"
2022-04-05 15:06:17 +00:00
version = "0.7.2"
2022-01-27 10:02:56 +00:00
edition = "2021"
[profile.release]
lto = true
panic = 'abort'
opt-level = 'z'
codegen-units = 1
2022-01-22 21:02:51 +00:00
[dependencies]
dirs = "4.0.0"
serde = "1.0.137"
serde_derive = "1.0.137"
toml = "0.5.9"
serde_json = "1.0.81"
2022-01-22 21:02:51 +00:00
chrono = "0.4.19"
base64 = "0.13.0"
notify-rust = "4.5.8"
clap_complete = "3.1.4"
anyhow = "1.0.57"
better-panic = "0.3.0"
validator = "0.15.0"
colored = "2.0.0"
clap_mangen = "0.1.6"
discord-webhook = "0.1.0"
[target.'cfg(not(all(unix, not(any(target_os="macos", target_os="android", target_os="emscripten")))))'.dependencies]
arboard = "2.1.0"
2022-01-22 21:02:51 +00:00
[dependencies.clap]
version = "3.1.18"
2022-01-25 16:13:43 +00:00
features = ["derive", "cargo", "std"]
2022-01-22 21:02:51 +00:00
[dependencies.log]
version = "0.4.17"
features = ["release_max_level_info", "max_level_debug"]
2022-01-22 21:02:51 +00:00
[dependencies.simple_logger]
version = "2.1.0"
default-features = false
features = ["colors"]
[dependencies.reqwest]
version = "0.11.10"
default-features = false
features = ["json", "rustls-tls"]
2022-01-22 21:02:51 +00:00
[dependencies.tokio]
version = "1.18.2"
2022-01-28 17:25:15 +00:00
features = ["macros", "rt-multi-thread"]