[package]
edition = "2024"
name = "zucchini-scanner"
version = "0.1.2"
authors = ["Marco Ivaldi <raptor@0xdeadbeef.info>"]
build = false
exclude = [
".cargo/*",
".github/*",
".img/*",
".gitignore",
".taplo.toml",
"tests/*",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Blazing-fast TCP port scanner for Linux"
homepage = "https://0xdeadbeef.info/"
readme = "README.md"
keywords = [
"port-scanner",
"ipv4",
"tcp",
"linux",
"redteaming",
]
categories = [
"security",
"network-programming",
"command-line-utilities",
]
license = "MIT"
repository = "https://github.com/0xdea/singsing-rs"
[[bin]]
name = "zucchini"
path = "src/main.rs"
[dependencies.anyhow]
version = "1.0"
[dependencies.chrono]
version = "0.4"
[dependencies.clap]
version = "4.5"
features = ["derive"]
[dependencies.singsing-rs]
version = "0.1"
[lints.clippy]
arbitrary_source_item_ordering = "allow"
arithmetic_side_effects = "allow"
blanket_clippy_restriction_lints = "allow"
decimal_literal_representation = "allow"
default_numeric_fallback = "allow"
impl_trait_in_params = "allow"
implicit_return = "allow"
indexing_slicing = "allow"
inline_modules = "allow"
integer_division = "allow"
integer_division_remainder_used = "allow"
min_ident_chars = "allow"
missing_inline_in_public_items = "allow"
multiple_crate_versions = "allow"
pattern_type_mismatch = "allow"
print_stderr = "allow"
print_stdout = "allow"
question_mark_used = "allow"
separated_literal_suffix = "allow"
shadow_reuse = "allow"
single_call_fn = "allow"
single_char_lifetime_names = "allow"
std_instead_of_alloc = "allow"
std_instead_of_core = "allow"
[lints.clippy.all]
level = "warn"
priority = -1
[lints.clippy.cargo]
level = "warn"
priority = -1
[lints.clippy.nursery]
level = "warn"
priority = -1
[lints.clippy.pedantic]
level = "warn"
priority = -1
[lints.clippy.restriction]
level = "warn"
priority = -1
[lints.rust.bare_trait_objects]
level = "warn"
priority = 0
[lints.rust.elided_lifetimes_in_paths]
level = "warn"
priority = 0
[lints.rust.explicit_outlives_requirements]
level = "warn"
priority = 0
[lints.rust.missing_docs]
level = "warn"
priority = 0