ipblc/Cargo.toml

32 lines
976 B
TOML
Raw Normal View History

[package]
name = "ipblc"
2023-07-01 15:59:50 +02:00
version = "1.2.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"] }
2023-04-10 11:35:49 +02:00
clap = { version = "4.2", features = ["string"] }
git-version = "0.3"
2022-12-29 13:55:37 +01:00
ipnet = "2.7"
lazy_static = "1.4"
mnl = "0.2"
nftnl = "0.6"
2022-12-29 13:55:37 +01:00
nix = "0.26"
2023-05-10 21:31:53 +02:00
regex = "1.8"
reqwest = { version = "0.11", default-features = false, features = ["json","rustls-tls"] }
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
2023-05-10 21:31:53 +02:00
tokio = { version = "1.28", features = ["full", "sync"] }
tungstenite = { version = "0.19", features = ["handshake","rustls-tls-native-roots"] }
## to optimize binary size (slow compile time)
#[profile.release]
#strip = true
#lto = true
#opt-level = "z"