execution-engine 0.1.4

Toca Execution Engine implemented using Futures and async/await
Documentation
1
2
3
4
5
6
7
use execution_engine::start;

#[tokio::main]
async fn main() -> Result<(), std::io::Error> {
    start().await?;
    Ok(())
}