crosstermion 0.3.0

The unification of crossterm and termion behind a common facade for use with feature flags
Documentation
[package]
name = "crosstermion"
version = "0.3.0"
authors = ["Sebastian Thiel <sebastian.thiel@icloud.com>"]
description = "The unification of crossterm and termion behind a common facade for use with feature flags"
edition = "2018"
license = "MIT"
repository = "https://github.com/Byron/prodash"
readme = "README.md"
include = ["src/**/*", "LICENSE.md", "README.md", "CHANGELOG.md"]

[features]
default = []

color = ["ansi_term"]

input-async = ["futures-channel", "async-channel", "futures-lite", "futures-util", "futures-core", "futures-executor", ]
input-async-crossterm = ["crossterm/event-stream", "input-async"]

tui-termion = ["tui", "tui-termion-backend", "termion"]
tui-react-termion = ["tui-react", "tui", "tui-termion-backend", "termion"]

tui-crossterm = ["tui", "tui-crossterm-backend", "crossterm"]
tui-react-crossterm = ["tui-react", "tui", "tui-crossterm-backend", "crossterm"]

tui-termion-backend = ["tui/termion"] # redirect is needed to allow us to #[cfg(feature = "…")] against it. You can't see features of crates
tui-crossterm-backend = ["tui/crossterm"]


[dependencies]
crossterm = { version = "0.17.5", optional = true, default-features = false }
termion = { version = "1.5.5", optional = true, default-features = false }
futures-channel = { version = "0.3.5", optional = true, default-features = false, features = ["std", "sink"] }
futures-core = { version = "0.3.5", optional = true, default-features = false }
futures-util = { version = "0.3.5", optional = true, default-features = false }
futures-executor = { version = "0.3.5", default-features = false, optional = true, features = ["std"] }
futures-lite = { version = "0.1.5", optional = true }
tui = { version = "0.10.0", optional = true, default-features = false }
tui-react = { version = "0.10.0", optional = true, default-features = false }
ansi_term = { version = "0.12.1", optional = true, default-features = false }
async-channel = { version = "1.1.1", optional = true }

[package.metadata.docs.rs]
all-features = true