Skip to main content

provenant/license_detection/embedded/
mod.rs

1//! Embedded license index loading.
2//!
3//! This module provides support for loading a build-time generated license
4//! index that is embedded in the binary. This eliminates the runtime dependency
5//! on the ScanCode rules directory.
6//!
7//! The embedded artifact is generated during the build process and contains
8//! serialized `LoadedRule` and `LoadedLicense` values.
9
10pub mod schema;