nostd_async 0.7.2

An asyncronous runtime for a single-threaded no_std environment
Documentation
[dependencies.avr-device]
optional = true
version = "0.5.2"

[dependencies.cortex-m]
optional = true
version = "0.7.0"

[dependencies.critical-section]
version = "1.1.2"

[dev-dependencies.critical-section]
features = ["std"]
version = "1.1.2"

[dev-dependencies.futures-micro]
version = "0.5.0"

[[example]]
name = "task"
path = "examples/task.rs"

[[example]]
name = "two_tasks"
path = "examples/two_tasks.rs"

[[example]]
name = "two_tasks_reversed"
path = "examples/two_tasks_reversed.rs"

[[example]]
name = "yield"
path = "examples/yield.rs"

[features]
avr = ["dep:avr-device"]
cortex_m = ["dep:cortex-m"]

[lib]
name = "nostd_async"
path = "src/lib.rs"

[package]
authors = ["Samuel Hicks <SamMHicks@hotmail.co.uk>"]
autobenches = false
autobins = false
autoexamples = false
autotests = false
build = false
categories = ["asynchronous", "embedded", "no-std"]
description = "An asyncronous runtime for a single-threaded no_std environment"
documentation = "https://docs.rs/nostd_async"
edition = "2018"
homepage = "https://github.com/sammhicks/nostd_async"
keywords = ["asynchronous", "async", "embedded", "no-std", "nostd"]
license = "MIT"
name = "nostd_async"
readme = "README.md"
repository = "https://github.com/sammhicks/nostd_async"
version = "0.7.2"

[[test]]
name = "test_abort"
path = "tests/test_abort.rs"