26 lines
871 B
TOML
26 lines
871 B
TOML
[package]
|
|
name = "snow-scanner-worker"
|
|
version = "0.1.0"
|
|
authors = ["William Desportes <williamdes@wdes.fr>"]
|
|
edition = "2021"
|
|
rust-version = "1.78.0" # MSRV
|
|
description = "The CLI to run a snow-scanner worker"
|
|
|
|
[[bin]]
|
|
name = "snow-scanner-worker"
|
|
path = "worker.rs"
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[dependencies]
|
|
ws2 = "0.2.5"
|
|
log2 = "0.1.11"
|
|
diesel = { version = "2.2.0", default-features = false, features = [] }
|
|
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"
|