[package]
edition = "2021"
rust-version = "1.74"
name = "pixforge"
version = "0.3.1"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Fast CLI to generate images via OpenAI, Azure, Gemini, LocalAI, and other image-gen providers."
homepage = "https://github.com/GitAashishG/pixforge"
readme = "README.md"
keywords = [
"cli",
"image-generation",
"ai",
"openai",
"azure",
]
categories = [
"command-line-utilities",
"multimedia::images",
]
license = "MIT"
repository = "https://github.com/GitAashishG/pixforge"
[lib]
name = "pixforge"
path = "src/lib.rs"
[[bin]]
name = "pixforge"
path = "src/main.rs"
[[test]]
name = "api_key_env_safety"
path = "tests/api_key_env_safety.rs"
[[test]]
name = "azure_mai_mock"
path = "tests/azure_mai_mock.rs"
[[test]]
name = "azure_openai_mock"
path = "tests/azure_openai_mock.rs"
[[test]]
name = "config_ux"
path = "tests/config_ux.rs"
[[test]]
name = "gemini_mock"
path = "tests/gemini_mock.rs"
[[test]]
name = "localai_integration"
path = "tests/localai_integration.rs"
[[test]]
name = "openai_compat_mock"
path = "tests/openai_compat_mock.rs"
[[test]]
name = "setup_wizard"
path = "tests/setup_wizard.rs"
[dependencies.anyhow]
version = "1"
[dependencies.base64]
version = "0.22"
[dependencies.chrono]
version = "0.4"
features = [
"clock",
"std",
]
default-features = false
[dependencies.clap]
version = "4.5"
features = ["derive"]
[dependencies.clap_complete]
version = "4.5"
[dependencies.clap_mangen]
version = "0.2"
[dependencies.dialoguer]
version = "0.11"
default-features = false
[dependencies.dirs]
version = "5"
[dependencies.hex]
version = "0.4"
[dependencies.is-terminal]
version = "0.4"
[dependencies.open]
version = "5"
[dependencies.rpassword]
version = "7.3"
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.serde_json]
version = "1"
[dependencies.sha2]
version = "0.10"
[dependencies.toml]
version = "0.8"
[dependencies.toml_edit]
version = "0.22"
[dependencies.ureq]
version = "2.10"
features = [
"tls",
"json",
]
default-features = false
[dev-dependencies.httpmock]
version = "0.7"
[target."cfg(unix)".dependencies.libc]
version = "0.2"
[profile.dist]
lto = "thin"
inherits = "release"
[profile.release]
opt-level = 3
lto = "thin"
codegen-units = 1
strip = "symbols"