├── .gitignore ├── Cargo.toml ├── LICENSE-APACHE ├── LICENSE-MIT ├── Makefile ├── README.md ├── examples ├── futures_chain.rs ├── helloworld.rs ├── multi_async_std.rs ├── signal.rs └── timer │ ├── Cargo.toml │ ├── Makefile │ ├── example.wasm │ ├── index.html │ └── src │ └── lib.rs └── src └── lib.rs /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richardanaya/executor/HEAD/.gitignore -------------------------------------------------------------------------------- /Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richardanaya/executor/HEAD/Cargo.toml -------------------------------------------------------------------------------- /LICENSE-APACHE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richardanaya/executor/HEAD/LICENSE-APACHE -------------------------------------------------------------------------------- /LICENSE-MIT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richardanaya/executor/HEAD/LICENSE-MIT -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richardanaya/executor/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richardanaya/executor/HEAD/README.md -------------------------------------------------------------------------------- /examples/futures_chain.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richardanaya/executor/HEAD/examples/futures_chain.rs -------------------------------------------------------------------------------- /examples/helloworld.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richardanaya/executor/HEAD/examples/helloworld.rs -------------------------------------------------------------------------------- /examples/multi_async_std.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richardanaya/executor/HEAD/examples/multi_async_std.rs -------------------------------------------------------------------------------- /examples/signal.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richardanaya/executor/HEAD/examples/signal.rs -------------------------------------------------------------------------------- /examples/timer/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richardanaya/executor/HEAD/examples/timer/Cargo.toml -------------------------------------------------------------------------------- /examples/timer/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richardanaya/executor/HEAD/examples/timer/Makefile -------------------------------------------------------------------------------- /examples/timer/example.wasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richardanaya/executor/HEAD/examples/timer/example.wasm -------------------------------------------------------------------------------- /examples/timer/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richardanaya/executor/HEAD/examples/timer/index.html -------------------------------------------------------------------------------- /examples/timer/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richardanaya/executor/HEAD/examples/timer/src/lib.rs -------------------------------------------------------------------------------- /src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richardanaya/executor/HEAD/src/lib.rs --------------------------------------------------------------------------------