jetstream_rpc 11.0.2

Jetstream is a RPC framework for Rust, based on the 9P protocol and QUIC.
Documentation
1
2
3
4
5
6
7
8
9
use cfg_aliases::cfg_aliases;

fn main() {
    cfg_aliases! {
        native: { not(target_arch = "wasm32") },
        tokio_unix: { all(any(target_os = "linux", target_os = "macos"), feature = "tokio") },
        cloudflare: { all(target_arch = "wasm32", target_os = "unknown", feature = "worker") },
    }
}