[package]
name = "pancurses"
description = """
pancurses is a curses libary for Rust that supports both Unix and Windows
platforms by abstracting away the backend that it uses
(ncurses-rs and pdcurses-sys respectively).
"""
homepage = "https://github.com/ihalila/pancurses"
documentation = "http://ihalila.github.io/pancurses/pancurses/"
repository = "https://github.com/ihalila/pancurses"
readme = "README.md"
license = "MIT"
keywords = ["pancurses", "curses", "ncurses", "pdcurses"]
version = "0.1.0"
authors = ["Ilkka Halila <ilkka@hali.la>"]
[lib]
name = "pancurses"
[target.x86_64-pc-windows-gnu.dependencies]
pdcurses-sys = "0.2"
[target.i686-pc-windows-gnu.dependencies]
pdcurses-sys = "0.2"
[target.x86_64-pc-windows-msvc.dependencies]
pdcurses-sys = "0.2"
[target.i686-pc-windows-msvc.dependencies]
pdcurses-sys = "0.2"
[target.i686-unknown-linux-gnu.dependencies]
ncurses = "5.80.0"
[target.x86_64-unknown-linux-gnu.dependencies]
ncurses = "5.80.0"
[dev-dependencies]
rand = "0.3"