ipblc/Cargo.toml

33 lines
1.1 KiB
TOML
Raw Normal View History

[package]
name = "ipblc"
2024-11-23 06:49:31 +01:00
version = "1.7.1"
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"] }
2024-11-23 06:49:31 +01:00
clap = { version = "4.5", features = ["string"] }
2023-04-10 11:35:49 +02:00
git-version = "0.3"
2024-11-23 06:49:31 +01:00
ipnet = "2.10"
lazy_static = "1.5"
nix = { version = "0.29", features = ["hostname", "inotify"] }
regex = "1.11"
reqwest = { version = "0.12", default-features = false, features = ["json", "rustls-tls"] }
2024-11-28 20:08:10 +01:00
rustables = "0.8.5"
rustables-macros = "0.1.2"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
2024-10-02 17:45:26 +02:00
sd-notify = { version = "0.4" }
2024-11-23 06:49:31 +01:00
tokio = { version = "1.41", features = ["full", "sync"] }
tungstenite = { version = "0.24", 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"