[package] name = "ipset_lookup" version = "0.4.8" authors = ["Taneli Kaivola "] edition = "2018" license = "MIT" homepage = "https://github.com/tanelikaivola/ipset-lookup" repository = "https://github.com/tanelikaivola/ipset-lookup" description = """ ipset is a command-line tool that takes networks or IPs and searches through a lot of different threat feeds quickly. It can also download the feed data necessary to perform the queries. ipset_lookup includes the same functionality as a library. """ readme = "README.md" categories = ["command-line-utilities", "text-processing"] keywords = ["blocklists", "threat-feed", "threat-intel", "cti"] default-run = "ipset" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [features] default = ["bench", "update"] bench = [] update = ["git2"] microservice = ["zmq"] windows-all = ["bench", "update"] vendored-zmq = ["zmq/vendored"] git2 = ["dep:git2"] [dependencies] glob = "0.3.0" ipnetwork = "0.20.0" rayon = "1.3.0" clap = { version = "4.5.20", features = ["derive", "error-context", "help", "std", "suggestions", "usage"], default-features = false } git2 = { version = "0.19.0", optional = true } zmq = { version = "0.9", optional = true, features = ["vendored"] } thiserror = { version = "1.0.38", default-features = false } anyhow = "1.0.68" [badges] travis-ci = { repository = "tanelikaivola/ipset-lookup", branch = "master" } [profile.release] lto = true codegen-units = 1 panic = "abort" [[bin]] name = "ipset-zmq" required-features = ["microservice"]