jetstream 9.1.1

Jetstream is a RPC framework for Rust, based on the 9P protocol and QUIC.
1
2
3
4
5
6
7
8
9
fn main() {
    // Check if the target is WebAssembly
    let target = std::env::var("TARGET").unwrap_or_default();
    
    if target.contains("wasm32") {
        println!("cargo:rustc-cfg=target_arch=\"wasm32\"");
        println!("cargo:rustc-cfg=wasm");
    }
}