linera_version/
lib.rs

1// Copyright (c) Zefchain Labs, Inc.
2// SPDX-License-Identifier: Apache-2.0
3
4/*!
5
6This crate is in charge of extracting version information from the Linera build, for
7troubleshooting information and version compatibility checks.
8
9*/
10
11mod serde_pretty;
12pub use serde_pretty::*;
13
14mod version_info;
15pub use version_info::*;