readme-sync 0.3.0

Checks that your readme and documentation are synchronized
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
/// Returns a slice of currently known tags
/// used by `cargo test` in Markdown fenced code blocks.
///
/// See <https://doc.rust-lang.org/rustdoc/documentation-tests.html> for more details.
pub fn codeblock_rust_test_tags() -> &'static [&'static str] {
    &[
        "ignore",
        "no_run",
        "should_panic",
        "compile_fail",
        "edition2015",
        "edition2018",
        "edition2021",
    ]
}