sync_executor 0.1.0

An async executor which you can use to execute a future that you know will never return `Pending` when you poll it.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
[package]
name = "sync_executor"
version = "0.1.0"
edition = "2024"
authors = ["Jason Walton <dev@lucid.thedreaming.org>"]
description = "An async executor which you can use to execute a future that you know will never return `Pending` when you poll it."
keywords = ["async", "executor"]
categories = ["asynchronous"]
repository = "https://github.com/jwalton/rs_sync_executor"
license = "MIT"

[dev-dependencies]
temp-dir = "0.1.16"
tokio = { version = "1.48.0", features = ["fs", "macros", "rt", "time"] }

[lints.clippy]
pedantic = "warn"