1#![no_std] 2 3pub use cgp_async_macro::strip_async as async_trait; 4 5pub trait Async {} 6 7impl<T> Async for T {}