[package]
edition = "2024"
rust-version = "1.85"
name = "libiot"
version = "0.4.0"
authors = ["Jeff Morrison <lbljeffmo@gmail.com>"]
build = false
publish = true
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Unified CLI dispatcher for the libiot ecosystem"
readme = "README.md"
keywords = [
"libiot",
"iot",
"cli",
"dispatcher",
]
categories = [
"command-line-utilities",
"hardware-support",
"network-programming",
]
license = "MIT"
repository = "https://github.com/jeffmo/libiot"
[[bin]]
name = "libiot"
path = "src/main.rs"
[[test]]
name = "completions_e2e"
path = "tests/completions_e2e.rs"
[[test]]
name = "delegation_e2e"
path = "tests/delegation_e2e.rs"
[[test]]
name = "list_e2e"
path = "tests/list_e2e.rs"
[[test]]
name = "set_alias_e2e"
path = "tests/set_alias_e2e.rs"
[[test]]
name = "set_env_var_e2e"
path = "tests/set_env_var_e2e.rs"
[dependencies.clap]
version = "4"
features = [
"derive",
"env",
"wrap_help",
]
[dependencies.clap_complete]
version = "4"
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.serde_json]
version = "1"
[dependencies.thiserror]
version = "2"
[dev-dependencies.assert_cmd]
version = "2"
[dev-dependencies.predicates]
version = "3"
[dev-dependencies.tempfile]
version = "3"
[lints.clippy]
missing_errors_doc = "allow"
module_name_repetitions = "allow"
trivially_copy_pass_by_ref = "allow"
[lints.clippy.all]
level = "warn"
priority = -1
[lints.clippy.pedantic]
level = "warn"
priority = -1
[lints.rust]
missing_docs = "warn"
unsafe_code = "forbid"