ai_bots/lib.rs
1//! `ai-bots`
2//!
3
4#![deny(missing_docs, rust_2018_idioms, unused_must_use)]
5#![cfg_attr(docsrs, feature(doc_cfg))]
6
7#[cfg(test)]
8mod tests {
9 #[test]
10 fn crate_metadata_is_wired() {
11 assert_eq!(env!("CARGO_PKG_NAME"), "ai-bots");
12 assert_eq!(env!("CARGO_PKG_VERSION"), "0.1.0");
13 }
14}