agx-cli 0.2.0

CLI for the agx-photo photo editing library
[package]
name = "agx-cli"
version = "0.2.0"
edition = "2021"
description = "CLI for the agx-photo photo editing library"
license = "MIT OR Apache-2.0"
repository = "https://github.com/zhjngli/AgX"
homepage = "https://github.com/zhjngli/AgX"
documentation = "https://docs.rs/agx-cli"
readme = "../../README.md"
keywords = ["photo", "image", "editing", "preset", "cli"]
categories = ["multimedia::images", "command-line-utilities"]

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

[dependencies]
agx = { package = "agx-photo", path = "../agx", version = "0.1.0", features = ["raw"] }
clap = { version = "4", features = ["derive"] }
image = "0.25"
rayon = "1"
serde_json = { version = "1", optional = true }

[features]
default = ["gpu"]
gpu = ["agx/gpu"]
profiling = ["agx/profiling", "serde_json"]

[dev-dependencies]
tempfile = "3"