From f8f56c926df1c3b645b24b978404ef2303f60d0e Mon Sep 17 00:00:00 2001 From: Ulf Lilleengen Date: Wed, 15 Jun 2022 09:06:18 +0200 Subject: [PATCH] Include README.md in crate documentation --- README.md | 4 ++-- embassy/src/lib.rs | 1 + 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index f9b7486bc..bb6e41c66 100644 --- a/README.md +++ b/README.md @@ -145,8 +145,8 @@ EMBedded ASYnc! :) This work is licensed under either of - Apache License, Version 2.0 ([LICENSE-APACHE](LICENSE-APACHE) or - http://www.apache.org/licenses/LICENSE-2.0) -- MIT license ([LICENSE-MIT](LICENSE-MIT) or http://opensource.org/licenses/MIT) + ) +- MIT license ([LICENSE-MIT](LICENSE-MIT) or ) at your option. diff --git a/embassy/src/lib.rs b/embassy/src/lib.rs index 1b6ff2d4b..c3b2726aa 100644 --- a/embassy/src/lib.rs +++ b/embassy/src/lib.rs @@ -1,6 +1,7 @@ #![cfg_attr(not(any(feature = "std", feature = "wasm")), no_std)] #![cfg_attr(feature = "nightly", feature(generic_associated_types, type_alias_impl_trait))] #![allow(clippy::new_without_default)] +#![doc = include_str!("../../README.md")] // This mod MUST go first, so that the others see its macros. pub(crate) mod fmt;