vtcode 0.142.7

A Rust-based terminal coding agent with modular architecture supporting multiple LLM providers
1
2
3
4
5
6
7
8
9
10
11
12
#![allow(
    missing_docs,
    reason = "Intentional compatibility, platform, test, or API-shape suppression."
)]
pub mod acp_fixtures;
pub mod common;
pub mod mock_data;

// Re-export commonly used test utilities
pub use acp_fixtures::*;
pub use common::*;
pub use mock_data::*;