2021-07-28 10:52:38 -04:00
|
|
|
[package]
|
2022-03-09 13:30:44 -05:00
|
|
|
name = "dioxus-tui"
|
Release dioxus-core v0.2.1, dioxus-core-macro v0.2.1, dioxus-html v0.2.1, dioxus-interpreter-js v0.2.1, dioxus-desktop v0.2.3, dioxus-hooks v0.2.1, dioxus-liveview v0.1.0, dioxus-native-core v0.2.0, dioxus-native-core-macro v0.2.0, dioxus-router v0.2.3, dioxus-ssr v0.2.1, dioxus-tui v0.2.2, dioxus-web v0.2.1, fermi v0.2.1, dioxus v0.2.4
2022-05-02 23:57:20 -04:00
|
|
|
version = "0.2.2"
|
2022-03-09 14:24:05 -05:00
|
|
|
authors = ["Jonathan Kelley, @dementhos"]
|
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-07-08 18:04:27 +02:00
|
|
|
homepage = "https://dioxuslabs.com/docs/0.3/guide/en/getting_started/tui.html"
|
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 = { workspace = true }
|
|
|
|
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 }
|
|
|
|
rink = { 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"]
|