junobuild-storage 0.7.0

Web and storage features of Juno.
Documentation
1
2
3
4
5
6
7
8
9
10
11
pub mod certified {
    use ic_certification::{Hash, NestedTree, RbTree};
    use junobuild_shared::types::core::Blob;
    use std::clone::Clone;

    #[derive(Default, Clone)]
    pub struct CertifiedAssetHashes {
        pub tree_v1: RbTree<String, Hash>,
        pub tree_v2: NestedTree<Blob, Blob>,
    }
}