libherokubuildpack 0.30.4

Opinionated common code for buildpacks implemented with libcnb.rs
Documentation
1
2
3
4
5
6
7
8
9
10
11
use crate::inventory::checksum::Digest;

impl Digest for () {
    fn name_compatible(_: &str) -> bool {
        true
    }

    fn length_compatible(_: usize) -> bool {
        true
    }
}