Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
//! `ai-bots`
//!

#![deny(missing_docs, rust_2018_idioms, unused_must_use)]
#![cfg_attr(docsrs, feature(doc_cfg))]

#[cfg(test)]
mod tests {
    #[test]
    fn crate_metadata_is_wired() {
        assert_eq!(env!("CARGO_PKG_NAME"), "ai-bots");
        assert_eq!(env!("CARGO_PKG_VERSION"), "0.1.0");
    }
}