-
Notifications
You must be signed in to change notification settings - Fork 54
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: Run our own async executor on Unix (#337)
- Loading branch information
Showing
12 changed files
with
614 additions
and
438 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,10 @@ | ||
# AccessKit Unix adapter | ||
|
||
This is the Unix adapter for [AccessKit](https://accesskit.dev/). It exposes an AccessKit accessibility tree through the AT-SPI protocol. | ||
|
||
## Compatibility with async runtimes | ||
|
||
While this crate's API is purely blocking, it internally spawns asynchronous tasks on an executor. | ||
|
||
- If you use tokio, make sure to enable the `tokio` feature of this crate. | ||
- If you use another async runtime or if you don't use one at all, the default feature will suit your needs. |
Oops, something went wrong.