some_executor 0.7.0

A trait for libraries that abstract over any executor
Documentation
[package]
name = "some_executor"
version = "0.7.0"
authors = ["Drew Crawford <drew@sealedabstract.com>"]
edition = "2024"
rust-version = "1.95.0"
description = "A trait for libraries that abstract over any executor"
homepage = "https://sealedabstract.com/code/some_executor"
repository = "https://github.com/drewcrawford/some_executor"
license = "MIT OR Apache-2.0"
keywords = ["async","rumtime","agnostic","trait"]
categories = ["asynchronous","concurrency","wasm","rust-patterns"]
exclude = [".*","art"]

[dependencies]
priority = "0.1.1"
atomic-waker = "1.1.2"
continue = "0.1"
wasm_lite_std = "0.1.1"


[target.'cfg(target_arch="wasm32")'.dependencies]
wasm_lite = "0.1.1"

[dev-dependencies]
# Range, not "0.5": this is one half of a dev-dependency cycle. test_executors
# depends on some_executor, so it cannot publish 0.5.0 until this crate's 0.7.0
# is on crates.io -- while `cargo publish` insists every dev-dependency resolve
# from the registry, and ignores [patch] when doing so. A range accepts the
# published 0.4.1 at publish time and the patched local 0.5.0 during development.
test_executors = ">=0.4.1, <0.6"

[target.'cfg(target_arch="wasm32")'.dev-dependencies]