spdx 0.13.4

Helper crate for SPDX expressions
Documentation
1
2
3
4
5
6
7
8
9
const CACHE: &[u8] = include_bytes!("cache.bin.zstd");

impl crate::detection::Store {
    /// Attempts to load the cached store inlined into this crate's source
    #[inline]
    pub fn load_inline() -> Result<Self, crate::detection::cache::CacheError> {
        Self::from_cache(CACHE)
    }
}