asyncs 0.2.1

async runtime agnostic facilities
Documentation

Async runtime agnostic facilities

crates.io github-ci docs.rs Apache-2.0

asyncs is a shim like package to ship async runtime agnostic facilities.

Usage

[dependencies]
asyncs = "0.1.0"

[dev-dependencies]
asyncs = { version = "0.1.0", features = ["test"] }

Feature test should only be enabled for dev-dependencies.

Provides

  • asyncs::task::spawn to spawn tasks in runtime agnostic way from spawns.
  • select! to multiplex asynchronous futures simultaneously from async-select.
  • #[asyncs::test] to bootstrap a runtime for testing. This is only available with feature test.

Does not provide

Executors.