[package]
edition = "2024"
rust-version = "1.85"
name = "lockfiles"
version = "0.0.1"
authors = ["Geoffrey Guéret <geoffrey@gueret.dev>"]
build = false
include = [
"src/**/*",
"tests/**/*",
"README.md",
"CHANGELOG.md",
"LICENSE-MIT",
"LICENSE-APACHE",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Multi-ecosystem lockfile parser that normalizes resolved dependencies, keyed by PURL."
homepage = "https://github.com/ggueret/lockfiles"
documentation = "https://docs.rs/lockfiles"
readme = "README.md"
keywords = [
"lockfile",
"lockfile-parser",
"dependencies",
"purl",
"sbom",
]
categories = [
"parsing",
"development-tools",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/ggueret/lockfiles"
[package.metadata.docs.rs]
all-features = true
rustdoc-args = [
"--cfg",
"docsrs",
]
[lib]
name = "lockfiles"
path = "src/lib.rs"
[[bin]]
name = "lockfiles"
path = "src/main.rs"
[[test]]
name = "smoke"
path = "tests/smoke.rs"
[dev-dependencies.insta]
version = "1.48"
[lints.clippy.all]
level = "warn"
priority = -1