[package]
edition = "2024"
rust-version = "1.93"
name = "zond-cli"
version = "0.12.0"
build = false
exclude = [
"audit/",
".github/",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "The official command-line interface to the Zond network scanner."
readme = "README.md"
keywords = [
"network",
"scanner",
"portscan",
"discovery",
"security",
]
categories = [
"command-line-utilities",
"network-programming",
]
license = "AGPL-3.0-or-later"
repository = "https://github.com/zond-rs/zond"
[[bin]]
name = "zond"
path = "src/main.rs"
[[test]]
name = "cli"
path = "tests/cli.rs"
[dependencies.clap]
version = "4.5"
features = [
"derive",
"wrap_help",
]
[dependencies.serde]
version = "1.0"
features = ["derive"]
[dependencies.thiserror]
version = "2.0"
[dependencies.tokio]
version = "1.53"
features = [
"rt-multi-thread",
"macros",
"signal",
]
[dependencies.toml]
version = "1.1"
[dependencies.tracing]
version = "0.1"
[dependencies.tracing-subscriber]
version = "0.3"
features = [
"std",
"registry",
]
default-features = false
[dependencies.zond-engine]
version = "0.12.0"
features = ["import-settings"]
[target."cfg(unix)".dependencies.rustix]
version = "1.1"
features = [
"termios",
"stdio",
]
[lints.clippy]
doc_markdown = "allow"
missing_errors_doc = "allow"
[lints.clippy.all]
level = "warn"
priority = -1
[lints.clippy.pedantic]
level = "warn"
priority = -1
[lints.rust]
unreachable_pub = "warn"
unsafe_code = "forbid"