2021-07-28 14:52:38 +00:00
|
|
|
[package]
|
2022-03-09 18:30:44 +00:00
|
|
|
name = "dioxus-tui"
|
2023-08-01 01:49:54 +00:00
|
|
|
version = { workspace = true }
|
2023-08-01 00:30:18 +00:00
|
|
|
authors = ["Jonathan Kelley, Evan Almloff"]
|
2022-03-10 03:06:45 +00:00
|
|
|
edition = "2021"
|
2022-03-09 19:24:05 +00:00
|
|
|
description = "TUI-based renderer for Dioxus"
|
|
|
|
repository = "https://github.com/DioxusLabs/dioxus/"
|
2023-09-16 17:03:27 +00:00
|
|
|
homepage = "https://dioxuslabs.com/learn/0.4/getting_started/tui"
|
2022-03-09 19:24:05 +00:00
|
|
|
keywords = ["dom", "ui", "gui", "react", "terminal"]
|
2023-07-20 17:00:07 +00:00
|
|
|
license = "MIT OR Apache-2.0"
|
2022-03-09 18:30:44 +00:00
|
|
|
|
2021-07-28 14:52:38 +00:00
|
|
|
[dependencies]
|
2023-06-19 19:29:11 +00:00
|
|
|
dioxus-core = { workspace = true, features = ["serialize"] }
|
|
|
|
dioxus-html = { workspace = true }
|
|
|
|
dioxus-native-core = { workspace = true, features = ["dioxus"] }
|
|
|
|
dioxus-native-core-macro = { workspace = true }
|
|
|
|
dioxus-hot-reload = { workspace = true, optional = true }
|
2023-08-01 01:49:54 +00:00
|
|
|
plasmo = { workspace = true }
|
2022-03-09 19:24:05 +00:00
|
|
|
|
2023-04-25 20:16:02 +00:00
|
|
|
crossterm = "0.26.0"
|
2023-06-19 19:29:11 +00:00
|
|
|
tokio = { workspace = true, features = ["full"] }
|
2022-01-01 14:49:08 +00:00
|
|
|
futures = "0.3.19"
|
2023-05-17 12:12:00 +00:00
|
|
|
taffy = "0.3.12"
|
2022-06-14 00:55:57 +00:00
|
|
|
|
|
|
|
[dev-dependencies]
|
2023-06-19 19:29:11 +00:00
|
|
|
dioxus = { workspace = true }
|
2022-07-09 19:15:20 +00:00
|
|
|
tokio = { version = "1" }
|
|
|
|
criterion = "0.3.5"
|
|
|
|
|
|
|
|
[[bench]]
|
|
|
|
name = "update"
|
|
|
|
harness = false
|
2023-01-11 20:20:38 +00:00
|
|
|
|
|
|
|
[features]
|
2023-03-13 17:04:51 +00:00
|
|
|
default = ["hot-reload"]
|
2023-01-13 23:50:32 +00:00
|
|
|
hot-reload = ["dioxus-hot-reload"]
|