cargo-readme 3.4.0

A cargo subcommand to generate README.md content from doc comments
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
mod badges;
mod manifest;
pub mod project;

pub use self::badges::{BadgeInfo, SUPPORTED_BADGES};
pub use self::manifest::get_manifest;
pub use self::manifest::Manifest;

/// The badges cargo-readme can render, in output order.
pub fn supported_badges() -> &'static [BadgeInfo] {
    SUPPORTED_BADGES
}