-
Notifications
You must be signed in to change notification settings - Fork 2
/
Cargo.toml
30 lines (25 loc) · 847 Bytes
/
Cargo.toml
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
30
[package]
authors = ["Brandon Henry <[email protected]>"]
description = """
ANSI terminal code to TUI Text Style converter
"""
documentation = "https://docs.rs/ansi4tui/"
edition = "2018"
keywords = ["ansi", "tui"]
license = "MIT"
name = "ansi4tui"
readme = "README.md"
repository = "https://github.com/bmhenry/ansi4tui"
version = "0.2.1"
[dependencies]
termwiz = "0.15.0"
[target.'cfg(any(unix, macos))'.dependencies]
tui = {version = "0.16", default-features = true, features = ['crossterm']}
[target.'cfg(any(windows))'.dependencies]
tui = {version = "0.16", default-features = false, features = ['crossterm']}
[target.'cfg(any(unix, macos))'.dev-dependencies]
crossterm = "0.22"
termion = "1.5"
[target.'cfg(any(windows))'.dev-dependencies]
crossterm = "0.22"
tui = {version = "0.16", default-features = false, features = ['crossterm']}