distant_net/manager.rs
1mod client;
2mod data;
3mod server;
4
5pub use client::*;
6pub use data::*;
7pub use server::*;
8
9use crate::common::Version;
10
11/// Represents the version associated with the manager's protocol.
12pub const PROTOCOL_VERSION: Version = Version::new(
13 const_str::parse!(env!("CARGO_PKG_VERSION_MAJOR"), u64),
14 const_str::parse!(env!("CARGO_PKG_VERSION_MINOR"), u64),
15 const_str::parse!(env!("CARGO_PKG_VERSION_PATCH"), u64),
16);