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