1#![warn(rustdoc::broken_intra_doc_links)]
2#![warn(rustdoc::private_intra_doc_links)]
3
4#[cfg(feature = "ewmh")]
5pub mod ewmh;
6
7#[cfg(feature = "icccm")]
8pub mod icccm;
9
10#[cfg(test)]
11mod tests {
12 #[test]
13 fn it_works() {
14 let result = 2 + 2;
15 assert_eq!(result, 4);
16 }
17}