micro_traffic_sim 0.2.0

gRPC interface for microscopic traffic simulation via cellular automata
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#[cfg(feature = "server")]
mod server;

#[cfg(not(feature = "server"))]
fn main() {
    println!(
        "micro_traffic_sim crate built as a library. Enable the 'server' feature to run the gRPC server."
    );
}

#[cfg(feature = "server")]
fn main() {
    server::run_blocking();
}