wootype 0.2.1

Blazing-fast Go type system service —— Vibe Coding toolchain
Documentation
1
2
3
4
5
6
7
8
9
10
11
//! IPC Bridge for Go compiler integration
//!
//! Connects wootype with the Go compiler via IPC/shared memory.

pub mod ipc;
pub mod protocol;
pub mod shim;

pub use ipc::{BridgeConfig, IpcBridge};
pub use protocol::{Message, Request, Response, SourcePosition, TypeCheckContext};
pub use shim::{BuildResult, GoCompilerShim};