[package]
edition = "2024"
rust-version = "1.95.0"
name = "some_executor"
version = "0.7.2"
authors = ["Drew Crawford <drew@sealedabstract.com>"]
build = false
exclude = [
".*",
"art",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A trait for libraries that abstract over any executor"
homepage = "https://sealedabstract.com/code/some_executor"
readme = "README.md"
keywords = [
"async",
"rumtime",
"agnostic",
"trait",
]
categories = [
"asynchronous",
"concurrency",
"wasm",
"rust-patterns",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/drewcrawford/some_executor"
[features]
default = []
exfiltrate = ["dep:exfiltrate"]
logwise-diagnostic = []
logwise-forensic = []
logwise-performance = []
[lib]
name = "some_executor"
path = "src/lib.rs"
[[example]]
name = "main_macro_default"
path = "examples/main_macro_default.rs"
[[example]]
name = "main_macro_named_backend"
path = "examples/main_macro_named_backend.rs"
[[test]]
name = "executor_yield_test"
path = "tests/executor_yield_test.rs"
[[test]]
name = "logwise_context"
path = "tests/logwise_context.rs"
[[test]]
name = "logwise_no_runtime"
path = "tests/logwise_no_runtime.rs"
[[test]]
name = "main_macro"
path = "tests/main_macro.rs"
harness = false
[[test]]
name = "static_brute"
path = "tests/static_brute.rs"
[[test]]
name = "static_future_test"
path = "tests/static_future_test.rs"
[dependencies.atomic-waker]
version = "1.1.2"
[dependencies.continue]
version = "0.1"
[dependencies.exfiltrate]
version = "0.4.0"
optional = true
[dependencies.logwise]
version = "0.7.0"
[dependencies.priority]
version = "0.1.1"
[dependencies.some_executor_macros]
version = "=0.7.2"
[dependencies.wasm_lite_std]
version = "0.1.1"
[dev-dependencies.exfiltrate_internal]
version = "0.4.0"
[dev-dependencies.rmp-serde]
version = "1.3.1"
[dev-dependencies.wasm_lite]
version = "0.1.2"
[target.'cfg(target_arch="wasm32")'.dependencies.wasm_lite]
version = "0.1.1"