1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
#![feature(slice_patterns)]
#![feature(advanced_slice_patterns)]
#![feature(range_contains)]

#![crate_type= "lib"]
#![cfg_attr(feature = "nightly", feature(plugin))]

#![feature(plugin)]
#![cfg_attr(feature = "clippy", plugin(clippy(conf_file="clippy.toml")))]

#![cfg_attr(feature = "lints", plugin(clippy))]
#![cfg_attr(feature = "lints", deny(warnings))]
#![cfg_attr(not(any(feature = "lints", feature = "nightly")), deny())]
#![deny(
    unused_import_braces,
)]

//! ![uml](ml.svg)

extern crate pty;
extern crate libc;
extern crate time;
extern crate errno;

#[macro_use] mod macros;
mod child;
pub mod parent;
pub mod shell;
pub mod prelude;