[package]
edition = "2024"
rust-version = "1.89"
name = "ncheap"
version = "0.8.0"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Namecheap registrar API CLI built for terminal and AI-agent operability"
readme = "README.md"
license = "MIT OR Apache-2.0"
repository = "https://github.com/jkindrix/ncheap"
[lib]
name = "ncheap"
path = "src/lib.rs"
[[bin]]
name = "ncheap"
path = "src/main.rs"
[[test]]
name = "cli"
path = "tests/cli.rs"
[[test]]
name = "commands"
path = "tests/commands.rs"
[[test]]
name = "pagination"
path = "tests/pagination.rs"
[dependencies.clap]
version = "4.6"
features = ["derive"]
[dependencies.dirs]
version = "6.0"
[dependencies.idna]
version = "1.1.0"
[dependencies.psl]
version = "2.1.212"
[dependencies.quick-xml]
version = "0.40"
features = ["serialize"]
[dependencies.serde]
version = "1.0"
features = ["derive"]
[dependencies.serde_json]
version = "1.0"
[dependencies.thiserror]
version = "2.0"
[dependencies.toml]
version = "1.1"
[dependencies.ureq]
version = "3.3"
[dev-dependencies.assert_cmd]
version = "2.2.2"
[lints.clippy]
all = "warn"
mod_module_files = "warn"
[lints.rust]
unsafe_code = "forbid"
[profile.dist]
lto = "thin"
inherits = "release"
[profile.release]
lto = true
codegen-units = 1
strip = true