[package]
edition = "2024"
name = "greentic-redbutton"
version = "0.4.1"
build = "build.rs"
include = [
"build.rs",
"Cargo.toml",
"Cargo.lock",
"LICENSE",
"README.md",
"src/**",
"i18n/**",
"ci/**",
"tools/i18n.sh",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Cross-platform Greentic red-button CLI scaffold with embedded i18n and release automation"
homepage = "https://github.com/greenticai/greentic-redbutton"
documentation = "https://docs.rs/greentic-redbutton"
readme = "README.md"
keywords = [
"greentic",
"cli",
"webhook",
"i18n",
"automation",
]
categories = ["command-line-utilities"]
license = "MIT"
repository = "https://github.com/greenticai/greentic-redbutton"
[[bin]]
name = "greentic-redbutton"
path = "src/main.rs"
[dependencies.anyhow]
version = "1.0"
[dependencies.chrono]
version = "0.4"
features = [
"clock",
"serde",
]
[dependencies.clap]
version = "4.5"
features = ["derive"]
[dependencies.hidapi]
version = "2.6"
[dependencies.reqwest]
version = "0.12"
features = [
"blocking",
"json",
"rustls-tls",
]
default-features = false
[dependencies.serde]
version = "1.0"
features = ["derive"]
[dependencies.serde_json]
version = "1.0"
[dependencies.sys-locale]
version = "0.3"
[dependencies.unic-langid]
version = "0.9"
[dependencies.url]
version = "2.5"
[dev-dependencies.pretty_assertions]
version = "1.4"
[build-dependencies.serde_json]
version = "1.0"
[target.'cfg(target_os = "linux")'.dependencies.libc]
version = "0.2"
[target.'cfg(target_os = "macos")'.dependencies.core-foundation-sys]
version = "0.8"
[target.'cfg(target_os = "windows")'.dependencies.windows-sys]
version = "0.60"
features = [
"Win32_Foundation",
"Win32_UI_Input_KeyboardAndMouse",
"Win32_UI_WindowsAndMessaging",
]