-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
39 lines (33 loc) · 850 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
31
32
33
34
35
36
37
38
39
[package]
name = "umbra-tui"
version = "0.1.1"
edition = "2021"
authors = ["Shadorain"]
repository = "https://github.com/Shadorain/Umbra"
description = "** Umbra TUI Framework: a simple yet highly configurable framework to generate flexible and fast TUIs **"
readme = "README.md"
license = "GPL-3.0"
categories = ["command-line-utilities", "command-line-interface", "text-editors"]
keywords = ["TUI", "UI"]
[package.metadata.docs.rs]
all-features = true
[dependencies]
# Utility
bitflags = "1.3.2"
thiserror = "1.0"
cfg-if = "1.0.0"
log = "0.4.17"
# Terminal Interface
[dependencies.crossterm]
optional = true
version = "0.25.0"
[features]
default = ["crossterm-backend"]
crossterm-backend = ["crossterm"]
[lib]
name = "umbra"
path = "src/lib.rs"
[[bin]]
name = "document"
path = "src/bin/document.rs"
required-features = ["crossterm-backend"]