randomPoison / thespian

An experiment in designing an ergonomic actor framework for Rust
1 stars 0 forks source link

Remove dependency on runtime #4

Closed randomPoison closed 4 years ago

randomPoison commented 4 years ago

The runtime crate has officially been deprecated, so we should remove our dependency on it and replace it with something more suitable. Since we're currently only using it to provide a more user-friendly interface for spawning actors, we can probably provide feature-gated bindings to the two other common runtimes, async-std and tokio.

randomPoison commented 4 years ago

Closed by #10.