Wave 64-65 cleanup: Proto regeneration and build system updates from Tonic 0.12→0.14 upgrade Files updated: - Cargo.lock: Dependency resolution for Tonic 0.14.2 - All build.rs: Updated for tonic-prost-build - Proto files: Regenerated with tonic-prost 0.14 - Examples/tests: Updated for new gRPC API 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
11 lines
383 B
Rust
11 lines
383 B
Rust
//! Basic dashboard disabled - needs refactoring after client architecture changes
|
|
//!
|
|
//! This example referenced old client types that were removed when TLI was refactored.
|
|
//!
|
|
//! To re-enable: Update to use current client API and event types
|
|
#![allow(unused_crate_dependencies)]
|
|
|
|
fn main() {
|
|
println!("Basic dashboard disabled - needs refactoring for current client API");
|
|
}
|