[package]
edition = "2024"
rust-version = "1.88"
name = "resopt-cli"
version = "0.3.0"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Plan, verify, and apply resource optimizations for Apple projects."
documentation = "https://docs.rs/resopt-cli"
readme = "README.md"
keywords = [
"xcode",
"xcassets",
"png",
"optimization",
"cli",
]
categories = [
"command-line-utilities",
"multimedia::images",
]
license = "MIT"
repository = "https://github.com/wenext-limited/resopt"
[lib]
name = "resopt"
path = "src/lib.rs"
[[bin]]
name = "resopt"
path = "src/main.rs"
[[test]]
name = "analysis"
path = "tests/analysis.rs"
[[test]]
name = "report"
path = "tests/report.rs"
[[test]]
name = "server"
path = "tests/server.rs"
[[test]]
name = "workflow"
path = "tests/workflow.rs"
[dependencies.anyhow]
version = "1"
[dependencies.clap]
version = "4.6"
features = ["derive"]
[dependencies.getrandom]
version = "0.4"
[dependencies.maud]
version = "0.27"
[dependencies.oxipng]
version = "=10.2.1"
features = ["parallel"]
default-features = false
[dependencies.png]
version = "0.18"
[dependencies.rayon]
version = "1"
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.serde_json]
version = "1"
[dependencies.sha2]
version = "0.10"
[dependencies.tempfile]
version = "3"
[dependencies.tiny_http]
version = "0.12"
[dependencies.toml]
version = "0.8"
[dependencies.walkdir]
version = "2"
[dependencies.xcassets]
version = "0.2"
[dev-dependencies.crc32fast]
version = "1"
[target.'cfg(target_os = "macos")'.dependencies.objc2]
version = "0.6"
[target.'cfg(target_os = "macos")'.dependencies.objc2-core-foundation]
version = "0.3.2"
[target.'cfg(target_os = "macos")'.dependencies.objc2-core-graphics]
version = "0.3.2"
[target.'cfg(target_os = "macos")'.dependencies.objc2-image-io]
version = "0.3.2"