vsh 0.5.0

Low-latency transactional filesystem simulation and execution for agents
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
//! Primary Rust SDK for VSH.
//!
//! The implementation remains isolated in `vsh-runtime`; this crate is the stable
//! application-facing registry handle.

pub use vsh_runtime_core::*;

#[cfg(test)]
mod tests {
    use super::*;

    #[test]
    fn primary_handle_reexports_the_native_runtime() {
        assert_eq!(VERSION, env!("CARGO_PKG_VERSION"));
        assert_eq!(engine_kind(), "rust");
    }
}