# 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 = "2021" name = "domainscan" version = "0.3.0" authors = ["shellrow "] description = "Cross-platform domain scan library" readme = "README.md" keywords = [ "domain", "dns", "security", "scan", ] categories = ["network-programming"] license = "MIT" repository = "https://github.com/shellrow/domainscan" [[example]] name = "scan_subdomain" path = "examples/scan_subdomain.rs" [[example]] name = "scan_subdomain_passive" path = "examples/scan_subdomain_passive.rs" required-features = ["passive"] [dependencies.futures] version = "0.3" features = [ "executor", "thread-pool", ] [dependencies.hickory-resolver] version = "0.24" [dependencies.reqwest] version = "0.11" features = [ "blocking", "json", "socks", ] optional = true [dependencies.serde] version = "1" features = ["derive"] optional = true [dependencies.serde_json] version = "1" optional = true [dependencies.tokio] version = "1.21" features = ["time"] [features] passive = [ "dep:reqwest", "serde", ] serde = [ "dep:serde", "dep:serde_json", ]