gaudium/
lib.rs

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#![allow(unknown_lints)] // Allow clippy lints.

extern crate arrayvec;
#[cfg(target_os = "windows")]
extern crate kernel32;
#[macro_use]
extern crate lazy_static;
#[cfg(target_os = "linux")]
extern crate nix;
#[cfg(target_os = "windows")]
extern crate user32;
#[cfg(target_os = "windows")]
extern crate winapi;

pub mod prelude {}