gmf 2.0.0

A runtime-agnostic, high-performance gRPC server framework using thread-per-core architecture.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
#[cfg(not(any(
    feature = "monoio-runtime",
    feature = "glommio-runtime",
    feature = "tokio-runtime"
)))]
compile_error!(
    "Enable at least one runtime feature: monoio-runtime, glommio-runtime, or tokio-runtime"
);

#[cfg(all(feature = "glommio-runtime", not(target_os = "linux")))]
compile_error!("glommio-runtime requires Linux");

pub mod server;