-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathCargo.toml
34 lines (31 loc) · 909 Bytes
/
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
[package]
name = "nvd_cve"
version = "0.2.0"
edition = "2021"
authors = [
"Travis Paul <[email protected]>",
"Orhun Parmaksız <[email protected]>"
]
license = "BSD-2-Clause"
keywords = ["CVE", "NIST", "vulnerability"]
categories = ["command-line-utilities", "caching"]
readme = "README.md"
repository = "https://github.com/travispaul/nvd_cve"
description = "Search for CVEs against a local cached copy of NIST National Vulnerability Database (NVD)."
[dependencies]
home = "0.5"
reqwest = { version = "0.12", features = ["blocking", "json"] }
serde_json = "1.0"
serde = { version = "1.0", features = ["derive"] }
flate2 = "1.0"
url = "2.5"
progress = "0.2"
clap = "2.34"
chrono = "0.4"
humansize = "1.1"
log = "0.4"
env_logger = "0.11"
[target.'cfg(unix)'.dependencies]
rusqlite = { version = "0.31" }
[target.'cfg(windows)'.dependencies]
rusqlite = { version = "0.31", features = ["bundled"] }