vtcode-battery-pack 0.135.14

Curated battery pack of VT Code crates for building Rust coding agents
Documentation
//! Tool specs and ACP protocol example.
//!
//! Demonstrates the `tools` + `protocols` preset:
//! JSON tool schemas plus ACP client support for Zed.
//!
//! Run with:
//!     cargo run --example tool-protocol -p vtcode-battery-pack \
//!         --features tools,protocols

#[cfg(feature = "tools")]
fn demonstrate_tools() {
    println!("tools: tool specs and code indexer available");
}

#[cfg(feature = "protocols")]
fn demonstrate_protocols() {
    println!("protocols: ACP client support available");
}

fn main() {
    #[cfg(feature = "tools")]
    demonstrate_tools();

    #[cfg(feature = "protocols")]
    demonstrate_protocols();

    println!("VT Code battery pack: tool/protocol preset ready.");
}