mirror of
https://github.com/ratatui/ratatui.git
synced 2025-09-28 05:21:23 +00:00

Add a top level examples folder for more app-ish examples Move the demo example into the top level folder. --------- Co-authored-by: Orhun Parmaksız <orhunparmaksiz@gmail.com>
26 lines
535 B
TOML
26 lines
535 B
TOML
[package]
|
|
name = "demo"
|
|
publish = false
|
|
authors.workspace = true
|
|
documentation.workspace = true
|
|
repository.workspace = true
|
|
homepage.workspace = true
|
|
keywords.workspace = true
|
|
categories.workspace = true
|
|
readme.workspace = true
|
|
license.workspace = true
|
|
exclude.workspace = true
|
|
edition.workspace = true
|
|
rust-version.workspace = true
|
|
|
|
[features]
|
|
default = ["crossterm"]
|
|
crossterm = ["ratatui/crossterm"]
|
|
termion = ["ratatui/termion"]
|
|
termwiz = ["ratatui/termwiz"]
|
|
|
|
[dependencies]
|
|
argh = "0.1.12"
|
|
rand = "0.8.5"
|
|
ratatui.workspace = true
|