├── .github └── workflows │ ├── ci.yml │ └── loom.yml ├── .gitignore ├── CHANGELOG.md ├── Cargo.toml ├── LICENSE-APACHE ├── LICENSE-MIT ├── README.md └── src ├── arc_waker.rs ├── borrowed_waker.rs ├── lib.rs ├── loom_exports.rs ├── primitives.rs └── waker.rs /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynchronics/diatomic-waker/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.github/workflows/loom.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynchronics/diatomic-waker/HEAD/.github/workflows/loom.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | /target 2 | Cargo.lock 3 | -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynchronics/diatomic-waker/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynchronics/diatomic-waker/HEAD/Cargo.toml -------------------------------------------------------------------------------- /LICENSE-APACHE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynchronics/diatomic-waker/HEAD/LICENSE-APACHE -------------------------------------------------------------------------------- /LICENSE-MIT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynchronics/diatomic-waker/HEAD/LICENSE-MIT -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynchronics/diatomic-waker/HEAD/README.md -------------------------------------------------------------------------------- /src/arc_waker.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynchronics/diatomic-waker/HEAD/src/arc_waker.rs -------------------------------------------------------------------------------- /src/borrowed_waker.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynchronics/diatomic-waker/HEAD/src/borrowed_waker.rs -------------------------------------------------------------------------------- /src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynchronics/diatomic-waker/HEAD/src/lib.rs -------------------------------------------------------------------------------- /src/loom_exports.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynchronics/diatomic-waker/HEAD/src/loom_exports.rs -------------------------------------------------------------------------------- /src/primitives.rs: -------------------------------------------------------------------------------- 1 | //! Primitives for task wakeup. 2 | 3 | pub use crate::{DiatomicWaker, WaitUntil}; 4 | -------------------------------------------------------------------------------- /src/waker.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynchronics/diatomic-waker/HEAD/src/waker.rs --------------------------------------------------------------------------------