[package] name = "snow-scanner" version = "0.1.0" authors = ["William Desportes "] edition = "2021" rust-version = "1.78.0" # MSRV description = "A program to scan internet and find scanners" homepage = "https://github.com/wdes/snow-scanner/tree/v1.2.0-dev#readme" repository = "https://github.com/wdes/snow-scanner" readme = "README.md" keywords = ["dns", "validator"] categories = ["command-line-utilities"] license = "MPL-2.0" include = [ "/src/**/*.rs", "/Cargo.toml", "/LICENSE", ] [badges] github = { repository = "security", branch = "master" } is-it-maintained-issue-resolution = { repository = "security" } is-it-maintained-open-issues = { repository = "security" } maintenance = { status = "passively-maintained" } # docker pull clux/muslrust:stable # docker run -v $PWD:/volume --rm -t clux/muslrust:stable cargo build --release [[bin]] name = "snow-scanner" path = "src/main.rs" [[bin]] name = "snow-scanner-worker" path = "src/worker/worker.rs" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] log2 = "0.1.11" ws2 = "0.2.5" actix-web = "4" actix-files = "0.6.6" # mariadb-dev on Alpine # "mysqlclient-src" "mysql_backend" diesel = { version = "2.2.0", default-features = false, features = ["mysql", "chrono", "uuid", "r2d2"] } dns-ptr-resolver = {git = "https://github.com/wdes/dns-ptr-resolver.git"} hickory-resolver = { version = "0.24.1", default-features = false, features = ["tokio-runtime", "dns-over-h3", "dns-over-https", "dns-over-quic"]} chrono = "0.4.38" uuid = { version = "1.10.0", default-features = false, features = ["v7", "serde", "std"] } cidr = "0.2.2" serde = "1.0.210" serde_json = "1.0.128"