vtcode-core 0.136.1

Core library for VT Code - a Rust-based terminal coding agent
1
2
3
4
5
6
7
8
9
10
11
#![allow(missing_docs)]
use vtcode_core::ui::styled::*;

fn main() {
    // Test the migrated styling
    info("Testing migrated styling from main_modular.rs");
    println!("{}Debug message{}", Styles::debug().render(), Styles::debug().render_reset());
    println!("{}Info message with custom styling{}", Styles::info().render(), Styles::info().render_reset());

    println!("Migration test completed successfully!");
}