provenant-cli 0.0.33

Rust-based ScanCode-compatible scanner for licenses, package metadata, SBOMs, and provenance data.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
// SPDX-FileCopyrightText: Provenant contributors
// SPDX-License-Identifier: Apache-2.0

//! Grammar facade for copyright parse tree construction.
//!
//! Types and rule data are split into dedicated submodules to keep this module
//! small and focused while preserving existing import paths.

mod rules;
mod types;

pub(crate) use rules::GRAMMAR_RULES;
pub(crate) use types::{GrammarRule, TagMatcher};

#[cfg(test)]
mod tests;