dioxus/packages/tui/Cargo.toml

26 lines
733 B
TOML
Raw Normal View History

2021-07-28 14:52:38 +00:00
[package]
2022-03-09 18:30:44 +00:00
name = "dioxus-tui"
version = "0.2.1"
authors = ["Jonathan Kelley, @dementhos"]
2022-03-10 03:06:45 +00:00
edition = "2021"
description = "TUI-based renderer for Dioxus"
repository = "https://github.com/DioxusLabs/dioxus/"
homepage = "https://dioxuslabs.com"
documentation = "https://dioxuslabs.com"
keywords = ["dom", "ui", "gui", "react", "terminal"]
license = "MIT/Apache-2.0"
2022-03-09 18:30:44 +00:00
2021-07-28 14:52:38 +00:00
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
dioxus-core = { path = "../core", version = "^0.2.0" }
dioxus-html = { path = "../html", version = "^0.2.0" }
2022-02-12 20:03:08 +00:00
tui = "0.17.0"
2022-03-09 18:30:44 +00:00
crossterm = "0.23.0"
2021-07-28 14:52:38 +00:00
anyhow = "1.0.42"
2022-01-01 14:49:08 +00:00
tokio = { version = "1.15.0", features = ["full"] }
futures = "0.3.19"
2022-03-10 03:06:45 +00:00
stretch2 = "0.4.1"
2022-03-09 18:30:44 +00:00