[package]
edition = "2024"
name = "caelix-cli"
version = "0.0.33"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Command line generator for Caelix applications."
homepage = "https://ohanronnie.github.io/caelix/"
documentation = "https://ohanronnie.github.io/caelix/cli/guide.html"
readme = "README.md"
license = "MIT"
repository = "https://github.com/Ohanronnie/caelix"
[lib]
name = "caelix_cli"
path = "src/lib.rs"
[[bin]]
name = "caelix"
path = "src/main.rs"
[[test]]
name = "generation"
path = "tests/generation.rs"
[dependencies.clap]
version = "4.6.4"
features = ["derive"]
[dependencies.ctrlc]
version = "3.5.2"
[dependencies.heck]
version = "0.5.0"
[dependencies.notify]
version = "8.2.0"
[dependencies.notify-debouncer-mini]
version = "0.7.0"
[dependencies.reqwest]
version = "0.13.4"
features = [
"blocking",
"json",
"rustls-no-provider",
]
default-features = false
[dependencies.rustls]
version = "0.23.41"
features = [
"ring",
"std",
]
default-features = false
[dependencies.serde_json]
version = "1.0.151"
[dependencies.toml_edit]
version = "0.25.13"
[dev-dependencies.tempfile]
version = "3.27.0"