netscan 0.30.0

Cross-platform network scan library
Documentation
# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO
#
# When uploading crates to the registry Cargo will automatically
# "normalize" Cargo.toml files for maximal compatibility
# with all versions of Cargo and also rewrite `path` dependencies
# to registry (e.g., crates.io) dependencies.
#
# If you are reading this file be aware that the original Cargo.toml
# will likely look very different (and much more reasonable).
# See Cargo.toml.orig for the original contents.

[package]
edition = "2024"
name = "netscan"
version = "0.30.0"
authors = ["shellrow <shellrow@foctal.com>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Cross-platform network scan library"
readme = "README.md"
keywords = [
    "network",
    "security",
    "scan",
]
categories = ["network-programming"]
license = "MIT"
repository = "https://github.com/shellrow/netscan"

[lib]
name = "netscan"
path = "src/lib.rs"

[[example]]
name = "async_hostscan"
path = "examples/async_hostscan.rs"

[[example]]
name = "async_ipv6_hostscan"
path = "examples/async_ipv6_hostscan.rs"

[[example]]
name = "async_ipv6_portscan"
path = "examples/async_ipv6_portscan.rs"

[[example]]
name = "async_portscan"
path = "examples/async_portscan.rs"

[[example]]
name = "hostscan"
path = "examples/hostscan.rs"

[[example]]
name = "ipv6_hostscan"
path = "examples/ipv6_hostscan.rs"

[[example]]
name = "ipv6_portscan"
path = "examples/ipv6_portscan.rs"

[[example]]
name = "portscan"
path = "examples/portscan.rs"

[[example]]
name = "service_detection"
path = "examples/service_detection.rs"

[dependencies.anyhow]
version = "1"

[dependencies.bytes]
version = "1"

[dependencies.futures]
version = "0.3"
features = [
    "executor",
    "thread-pool",
]

[dependencies.hickory-resolver]
version = "0.25"

[dependencies.netdev]
version = "0.40.0"

[dependencies.nex]
version = "0.25.0"

[dependencies.phf]
version = "0.11"
features = ["macros"]

[dependencies.rand]
version = "0.8"

[dependencies.rustls]
version = "0.23"
features = [
    "ring",
    "std",
]
default-features = false

[dependencies.rustls-native-certs]
version = "0.7"

[dependencies.rustls-pemfile]
version = "2.1"

[dependencies.rustls-pki-types]
version = "1.8"

[dependencies.tokio]
version = "1"
features = [
    "rt-multi-thread",
    "macros",
    "time",
    "net",
    "io-util",
]

[dependencies.tokio-rustls]
version = "0.26"
features = ["ring"]
default-features = false

[dev-dependencies.ipnet]
version = "2.11"