agnostic-lite 0.7.0

`agnostic-lite` is an agnostic abstraction layer for any async runtime.
Documentation
1
2
3
4
5
6
use crate::time::Delay;

use super::EmbassySleep;

/// Alias for [`Delay`] using the embassy runtime.
pub type EmbassyDelay<F> = Delay<F, EmbassySleep>;