hyperlane-cli 0.1.10

A command-line tool for Hyperlane framework.
1
2
3
4
5
6
7
8
9
10
11
12
/// Parsed version components following semantic versioning
#[derive(Clone, Debug, Eq, PartialEq)]
pub(crate) struct Version {
    /// Major version number
    pub major: u64,
    /// Minor version number
    pub minor: u64,
    /// Patch version number
    pub patch: u64,
    /// Optional pre-release identifier (e.g., "alpha", "beta", "rc.1")
    pub prerelease: Option<String>,
}