-
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathCargo.toml
More file actions
35 lines (29 loc) · 829 Bytes
/
Cargo.toml
File metadata and controls
35 lines (29 loc) · 829 Bytes
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
[package]
name = "purl_validator"
version = "1.16.7"
edition = "2024"
authors = ["Keshav Priyadarshi <git@keshav.space>", "AboutCode <info@aboutcode.org>"]
license = "Apache-2.0"
description = "Offline PackageURL validator using a prebuilt FST of known packages."
readme = "README.md"
documentation = "https://docs.rs/purl_validator"
repository = "https://github.com/aboutcode-org/purl-validator.rs"
keywords = ["packageurl", "package", "purl", "sbom-tool"]
categories = ["development-tools", "security" ]
include = [
"src/**",
"Cargo.toml",
"build.rs",
"README.md",
"CHANGELOG.md",
"LICENSE"
]
[dependencies]
fst = "0.4.7"
packageurl = "0.6.0"
once_cell = "1.21"
[build-dependencies]
reqwest = { version = "0.11", features = ["blocking"] }
[[bin]]
name = "fst_builder"
path = "fst_builder/main.rs"