linera-persistent 0.15.4

A library for persisting data types to disk with a variety of backends.
Documentation
1
2
3
4
5
6
7
8
9
// Copyright (c) Zefchain Labs, Inc.
// SPDX-License-Identifier: Apache-2.0

fn main() {
    cfg_aliases::cfg_aliases! {
        web: { all(target_arch = "wasm32", feature = "web") },
        with_indexed_db: { all(web, feature = "indexed-db") },
    };
}