micro_traffic_sim 0.1.12

gRPC interface for microscopic traffic simulation via cellular automata
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
#[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();
}