forked from VincentFoulon80/console_engine
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
29 lines (25 loc) · 788 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
[package]
authors = ["Vincent Foulon <[email protected]>", "Amber Connelly"]
categories = ["command-line-interface"]
description = "A simple terminal framework to draw things and manage user input (demiforge fork)"
edition = "2021"
include = ["src/**/*", "LICENSE", "README.md"]
keywords = ["terminal", "tui", "input"]
license = "MIT"
name = "console_engine"
readme = "README.md"
repository = "https://github.com/amb3r-dev/console_engine"
version = "2.6.1"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[lib]
doctest = false
[dependencies]
crossterm = "0.27.0"
unicode-width = "0.1.8"
[dev-dependencies]
console_engine = {path = ".", features = ["event", "form"]}
rand = "0.8"
[features]
default = []
event = []
form = ["event"]