Currently has the ability to open, thumbnail, encrypt, and upload single images, but still needs better UX and output, as well as the ability to generate index files
30 lines
601 B
TOML
30 lines
601 B
TOML
[package]
|
|
name = "aviary-cli"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[dependencies]
|
|
argh = "0.1.8"
|
|
argh_derive = "0.1.8"
|
|
webp = "0.2.2"
|
|
itertools = "0.10.3"
|
|
blurhash = "0.1.1"
|
|
base64 = "0.13.0"
|
|
mime = "0.3.16"
|
|
|
|
[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"]
|