forked from veeso/tui-realm
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
41 lines (37 loc) · 1.18 KB
/
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
31
32
33
34
35
36
37
38
39
40
41
[package]
name = "tuirealm"
version = "1.5.0"
authors = ["Christian Visintin"]
edition = "2021"
categories = ["command-line-utilities"]
description = "A tui-rs framework to build tui interfaces, inspired by React and Elm."
documentation = "https://docs.rs/tuirealm"
homepage = "https://github.com/veeso/tui-realm"
include = ["src/**/*", "LICENSE", "README.md", "CHANGELOG.md"]
keywords = ["tui", "terminal"]
license = "MIT"
readme = "README.md"
repository = "https://github.com/veeso/tui-realm"
[dependencies]
bitflags = "^1.0.0"
crossterm = { version = "0.20", optional = true }
lazy_static = "^1.0.0"
regex = "^1.0.0"
serde = { version = "^1.0.0", features = [ "derive" ], optional = true }
termion = { version = "1.5", optional = true }
thiserror = "^1.0.0"
tui = { version = "0.17.0", default-features = false }
tuirealm_derive = { version = "^1.0.0", optional = true }
[dev-dependencies]
pretty_assertions = "0.7.2"
toml = "0.5.8"
tempfile = "3.2.0"
[features]
default = [ "derive", "with-crossterm" ]
derive = [ "tuirealm_derive" ]
serialize = [ "serde" ]
with-crossterm = [ "crossterm", "tui/crossterm" ]
with-termion = [ "termion", "tui/termion" ]
[[example]]
name = "demo"
path = "examples/demo.rs"