1// This is free and unencumbered software released into the public domain. 2 3//! This crate provides async flow traits. 4 5#![no_std] 6#![forbid(unsafe_code)] 7 8#[doc = include_str!("../README.md")] 9#[cfg(doctest)] 10pub struct ReadmeDoctests;