linera-sdk 0.15.3

Library to support developing Linera applications in Rust.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
// Copyright (c) Zefchain Labs, Inc.
// SPDX-License-Identifier: Apache-2.0

fn main() {
    cfg_aliases::cfg_aliases! {
        with_testing: { any(test, feature = "test") },
        with_wasm_runtime: { any(feature = "wasmer", feature = "wasmtime") },
        with_integration_testing: {
            all(not(target_arch = "wasm32"), with_testing, with_wasm_runtime)
        },
    };
}