Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
# Changelog

## v0.1.0 (2025-11-12)

- Initial release
14 changes: 7 additions & 7 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,15 @@ name = "purl_validator"
version = "0.1.0"
edition = "2024"
authors = ["Keshav Priyadarshi <git@keshav.space>", "AboutCode <info@aboutcode.org>"]
description = "PackageURL validator using prebuilt FST"
license = "Apache-2.0"
repository = "https://github.com/aboutcode-org/purl-validator-rust"

exclude = ["fst_builder/*"]
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 = ["package url", "package", "purl"]
categories = ["development-tools", "security" ]

include = [
"src/**",
Expand All @@ -17,10 +21,6 @@ include = [
"LICENSE"
]

[lib]
name = "purl_validator"
crate-type = ["rlib"]

[dependencies]
fst = "0.4.7"
memmap2 = "0.9.9"
Expand Down