40 lines
1.2 KiB
TOML
40 lines
1.2 KiB
TOML
[package]
|
|
name = "ipblc"
|
|
version = "1.0.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"] }
|
|
clap = "3.2"
|
|
ipnet = "2.5"
|
|
lazy_static = "1.4"
|
|
mnl = "0.2"
|
|
nftnl = "0.6"
|
|
nix = "0.25"
|
|
regex = "1.6"
|
|
reqwest = { version = "0.11", default-features = false, features = ["json","rustls-tls"] }
|
|
serde = { version = "1.0", features = ["derive"] }
|
|
serde_json = "1.0"
|
|
tokio = { version = "1.20", features = ["full"] }
|
|
zmq = "0.9"
|
|
|
|
# [target.aarch64-unknown-linux-gnu.dependencies]
|
|
# flate2 = { version = "1.0", features = ["cloudflare_zlib"] }
|
|
|
|
# [target.aarch64-linux-android.dependencies]
|
|
# flate2 = { version = "1.0", features = ["zlib"] }
|
|
|
|
# [target.armv7-unknown-linux-gnueabihf.dependencies]
|
|
# flate2 = { version = "1.0", features = ["zlib"] }
|
|
|
|
# [target.x86_64-unknown-linux-gnu.dependencies]
|
|
# flate2 = { version = "1.0", features = ["cloudflare_zlib"] }
|
|
|
|
[profile.release]
|
|
debug = false
|
|
opt-level = 3 |