-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
50 lines (44 loc) · 1.56 KB
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
[package]
name = "ipset_lookup"
version = "0.4.8"
authors = ["Taneli Kaivola <[email protected]>"]
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"]