cgp-sync 0.4.2

Async-generic primitives to support both sync/async in context-generic programming
Documentation
1
2
3
4
5
6
7
#![no_std]

pub use cgp_async_macro::strip_async as async_trait;

pub trait Async {}

impl<T> Async for T {}