aboutsummaryrefslogtreecommitdiffstats
path: root/src/term.rs
blob: 3ae11e0c9352cc25642cf7f65c62eefcfa0e1f7d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
#[link(name = "term",
       vers = "0.0.1",
       uuid = "55ed8b92-1054-4286-95b2-8e967f4fd51b",
       url  = "https://github.com/doy/rust-term")];

#[crate_type = "lib"];

pub mod hexes;
pub mod ios;

#[cfg(curses)]
#[path = "info/curses.rs"]
pub mod info;

#[cfg(not(curses))]
#[path = "info/builtin.rs"]
pub mod info;

mod trie;
mod util;