ergo_sys/
lib.rs

1//! **ergo_sys: make accessing system resources more ergonomic, therefore more fun!**
2//!
3//! This is the system/os library as part of the [`ergo`] crate ecosystem.
4//!
5//! TODO: flush out these docs more
6//!
7//! - add example of using ergo_sync with ctrlc.
8//! - talk about rand a bit and the different kinds of types and their usecases.
9//!
10//! [`ergo`]: https://github.com/rust-crates/ergo
11//!
12//! ### Special thanks
13//!
14//! The crates that are exported are:
15//!
16//! - [**ctrlc**](https://github.com/Detegr/rust-ctrlc): Easy Ctrl-C handler for Rust projects
17//! - [**rand**](https://github.com/rust-lang-nursery/rand): A Rust library for random number
18//!   generators and other randomness functionality.
19//!
20//! Consider supporting their development individually and starring them on github.
21
22pub extern crate rand;
23pub extern crate ctrlc;