Some checks failed
Gitea Actions Demo / Explore-Gitea-Actions (push) Successful in 7m47s
Build IP lists / Build scanners list (binaryedge) (push) Failing after 12m25s
Build IP lists / Build scanners list (stretchoid) (push) Failing after 12m42s
Build IP lists / build-aws-cloudfront (push) Failing after 7m47s
43 lines
1.2 KiB
TOML
43 lines
1.2 KiB
TOML
[package]
|
|
name = "snow-scanner"
|
|
version = "0.1.0"
|
|
authors = ["William Desportes <williamdes@wdes.fr>"]
|
|
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" }
|
|
|
|
[[bin]]
|
|
name = "snow-scanner"
|
|
path = "src/main.rs"
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[dependencies]
|
|
rouille = "3.6.2"
|
|
hmac = "0.12.1"
|
|
sha2 = "0.10.8"
|
|
hex = "0.4.3"
|
|
rusqlite = { version = "0.31.0", features = ["bundled", "chrono"] }
|
|
dns-ptr-resolver = "1.2.0"
|
|
hickory-client = { version = "0.24.1", default-features = false }
|
|
chrono = "0.4.38"
|
|
uuid7 = "1.0.0"
|
|
cidr = "0.2.2"
|