linera-witty 0.10.2

Generation of WIT compatible host code from Rust code
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
// Copyright (c) Zefchain Labs, Inc.
// SPDX-License-Identifier: Apache-2.0

fn main() {
    cfg_aliases::cfg_aliases! {
        with_testing: { any(test, feature = "test") },
        with_wasmer: { feature = "wasmer" },
        with_wasmtime: { feature = "wasmtime" },
        with_macros: { feature = "macros" },
        with_wit_export: {
            all(
                feature = "macros",
                any(feature = "test", feature = "wasmer", feature = "wasmtime")
            )
        },
    }
}