[package]
edition = "2024"
rust-version = "1.91.1"
name = "havn"
version = "0.3.9"
authors = ["Jack Wills <email@mrjackwills.com>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A fast configurable port scanner with reasonable defaults"
homepage = "https://github.com/mrjackwills/havn"
readme = "README.md"
keywords = [
"docker",
"havn",
"port",
"scan",
"tokio",
]
categories = ["command-line-utilities"]
license = "MIT"
repository = "https://github.com/mrjackwills/havn"
[[bin]]
name = "havn"
path = "src/main.rs"
[dependencies.async-channel]
version = "2.5"
[dependencies.clap]
version = "4.6"
features = [
"color",
"derive",
"unicode",
]
[dependencies.futures]
version = "0.3"
[dependencies.tokio]
version = "1.53"
features = [
"macros",
"net",
"parking_lot",
"rt",
"rt-multi-thread",
"signal",
"sync",
"time",
]
[dev-dependencies.warp]
version = "0.4"
features = ["server"]
[target."cfg(windows)".dependencies.os_info]
version = "3.15"
[lints.clippy]
doc_markdown = "allow"
expect_used = "warn"
module_name_repetitions = "allow"
similar_names = "allow"
todo = "warn"
unused_async = "warn"
unwrap_used = "warn"
[lints.rust]
unsafe_code = "forbid"
[profile.release]
opt-level = "z"
lto = true
codegen-units = 1
debug = 0
panic = "abort"
strip = true