ddad573b75
- Resolve 14 conflicts from popping local stash on top of origin'seed1e88+8d3352fdoc-comment additions (11 mechanical, plus version.rs, DashboardAuthenticatorTests.cs, DashboardGalaxyProjector.cs) - Fix 4 test files that used AGENTS.md as the repo-root sentinel (now use CLAUDE.md, since AGENTS.md was removed in4731ab5) - Redirect 10 doc citations from AGENTS.md to the matching gateway.md sections (Value Model, Status Model, Security, STA Worker Thread Model, gRPC Layer rule, cancellation rule) Verified: solution build clean, x86 worker build clean, 266/266 gateway tests passing, 121/121 worker tests passing. Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
14 lines
567 B
Rust
14 lines
567 B
Rust
//! 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;
|