tccldcli 0.3.0

A tool for tc cld
[package]
name = "tccldcli"
version = "0.3.0"
edition = "2021"
description = "A tool for tc cld"
license = "GPL-1.0-only"

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
chrono = "0.4.19"
clap = { version = "3.1.17", features = ["cargo"] }
dirs = "4.0.0"
# digest = "0.10.3"
hex = "0.4.3"
# hex-literal = "0.3.4"
reqwest = { version = "0.11.10", features = ["blocking", "json", "rustls", "rustls-tls"], default-features = false }
rust-crypto = "0.2.36"
rustc-hash = "1.1.0"
# rustc-serialize = "0.3.24"
serde_json = "1.0.81"
toml = "0.5.9"

[profile.release]
lto = "fat"
codegen-units = 1
strip = true
opt-level = "s"
panic = "abort"

[profile.minsize]
inherits = "release"
opt-level = "z"

[[bin]]
name = "tcloud"
path = "src/main.rs"