librebar 0.1.0

Opinionated application foundation for Rust CLIs and services
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#![allow(missing_docs)]
#![cfg(feature = "mcp")]

#[test]
fn transport_stdio_type_is_accessible() {
    // Verify the function exists and compiles
    let _: fn() -> _ = librebar::mcp::transport_stdio;
}

#[test]
fn service_ext_trait_is_accessible() {
    #[allow(unused_imports)]
    use librebar::mcp::ServiceExt as _;
}