ipblc/Cargo.toml

32 lines
1.0 KiB
TOML
Raw Normal View History

[package]
name = "ipblc"
2023-11-02 11:54:01 +01:00
version = "1.5.0"
edition = "2021"
authors = ["PaulBSD <paul@paulbsd.com>"]
description = "ipblc is a tool that search and send attacking ip addresses to ipbl"
repository = "https://git.paulbsd.com/paulbsd/ipblc"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
chrono = { version = "0.4", features = ["serde"] }
clap = { version = "4.4", features = ["string"] }
2023-04-10 11:35:49 +02:00
git-version = "0.3"
ipnet = "2.9"
lazy_static = "1.4"
mnl = "0.2"
nftnl = "0.6"
nix = { version = "0.27", features = ["hostname", "inotify"] }
regex = "1.10"
reqwest = { version = "0.11", default-features = false, features = ["json", "rustls-tls"] }
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
tokio = { version = "1.33", features = ["full", "sync"] }
tungstenite = { version = "0.20", features = ["handshake", "rustls-tls-native-roots"] }
2023-05-10 21:31:53 +02:00
## to optimize binary size (slow compile time)
#[profile.release]
#strip = true
#lto = true
#opt-level = "z"