[go: up one dir, main page]

runtime 0.3.0-alpha.2

Empowering everyone to build asynchronous software.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#![feature(test, async_await, await_macro, futures_api)]
#![warn(rust_2018_idioms)]

extern crate test;

#[macro_use]
mod common;

mod tokio {
    benchmark_suite!(runtime_tokio::Tokio);
}

mod tokio_current_thread {
    benchmark_suite!(runtime_tokio::TokioCurrentThread);
}