linera-rpc 0.3.0

RPC schemas and networking library for the Linera protocol.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
// Copyright (c) Facebook, Inc. and its affiliates.
// Copyright (c) Zefchain Labs, Inc.
// SPDX-License-Identifier: Apache-2.0

#[test]
fn test_format() {
    let status = std::process::Command::new("cargo")
        .current_dir("..")
        .args(["run", "--example", "generate-format", "--"])
        .arg("test")
        .status()
        .expect("failed to execute process");
    assert!(status.success());
}