//! Build-time version constants advertised by the Rust client. //! //! The protocol versions track the values the gateway and worker negotiate on //! `OpenSession` and let test harnesses cross-check the wire contract. /// Semantic version of this Rust client crate. Mirrors `Cargo.toml`. pub const CLIENT_VERSION: &str = "0.1.0-dev"; /// Public gateway gRPC protocol version this client targets. pub const GATEWAY_PROTOCOL_VERSION: u32 = 2; /// Internal worker IPC protocol version this client expects sessions to use. pub const WORKER_PROTOCOL_VERSION: u32 = 1;