aviary-cli/Cargo.toml

49 lines
1.0 KiB
TOML

[package]
name = "aviary-cli"
version = "0.1.0"
edition = "2021"
authors = ["Emi Simpson <emi@alchemi.dev>"]
description = "Create and download E2E encrypted image galleries"
repository = "https://fem.mint.lgbt/Emi/aviary-cli"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
webp = "0.2.2"
itertools = "0.10.3"
blurhash = "0.1.1"
base64 = "0.13.0"
mime = "0.3.16"
protobuf = "3.1.0"
sanitise-file-name = "1.0.0"
[build-dependencies]
protobuf-codegen = "3.1.0"
protoc-bin-vendored = "3.0.0"
[dependencies.iota-crypto]
version = "0.13.0"
features = ["aes", "random"]
[dependencies.ureq]
version = "2.5.0"
default-features = false
features = ["tls"]
[dependencies.image]
version = "0.24.3"
default-features = false
features = ["gif", "jpeg", "ico", "png", "tiff", "webp", "bmp", "hdr"]
[dependencies.clap]
version = "3.2.12"
features = ["std", "color", "suggestions", "derive", "cargo", "unicode"]
[profile.release]
lto = true
codegen-units = 1
[[bin]]
name = "aviary"
path = "src/main.rs"