Crate agnostic_lite

source ·
Expand description

Agnostic-Lite

agnostic-lite is WASM friendly and light version of agnostic, for users who want to write async runtime-agnostic crate.

github LoC Build codecov

docs.rs crates.io crates.io license

English | 简体中文

§Introduction

agnostic-lite is WASM friendly and light version of agnostic, for users who want to write async runtime-agnostic crate.

agnostic-lite splits the big Runtime trait in agnostic in multiple small traits:

  • AsyncSpawner: trait for spawning tasks
  • AsyncLocalSpawner: trait for spawning local tasks
  • AsyncSleep: trait for sleep functionality
  • AsyncInterval: trait for interval functionality
  • AsyncTimeout: trait for timeout functionality

Builtin supports runtimes:

  • tokio
  • async-std
  • smol
  • wasm-bindgen-futures

§Installation

[dependencies]
agnostic-lite = "0.2"
§License

agnostic-lite is under the terms of both the MIT license and the Apache License (Version 2.0).

See LICENSE-APACHE, LICENSE-MIT for details.

Copyright (c) 2024 Al Liu.

Modules§

Enums§

Traits§