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
11#![deny(missing_docs)]
12
13mod serde_pretty;
14pub use serde_pretty::*;
15
16mod version_info;
17pub use version_info::*;