1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
/// # User documentation
///
/// New users are advise to start by reading the [Getting Started Guide](`self::user::getting_started`)
/// and [Glossary](`self::user::glossary`) modules.
///
/// Please be aware that all user documentation is
/// a continous work in progress, and can be incorrect
/// or stale.
///
/// Writting a high quality documentation is
/// a lot of work. Please help us! If you spot any
/// mistakes or ways to improve it:
///
/// 1. Open
/// [user documentation source code directory](https://github.com/dpc/crev/tree/master/cargo-crev/src/doc),
/// 2. open the the affected file,
/// 3. use *Edit this file* function,
/// 4. modify the text,
/// 4. click *Propose file change* button.
///
/// See the list of modules for the list of documented topis.
pub mod user {
    #[doc(include = "doc/glossary.md")]
    pub mod getting_started {}
    #[doc(include = "doc/glossary.md")]
    pub mod glossary {}
    #[doc(include = "doc/organizations.md")]
    pub mod organizations {}
    #[doc(include = "doc/advisories.md")]
    pub mod advisories {}
    #[doc(include = "doc/trust.md")]
    pub mod trust {}
    #[doc(include = "doc/cargo_specific.md")]
    pub mod cargo_specific {}
}