2021-07-28 14:52:38 +00:00
|
|
|
[package]
|
2022-03-09 18:30:44 +00: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-03 03:57:20 +00:00
|
|
|
version = "0.2.2"
|
2022-03-09 19:24:05 +00:00
|
|
|
authors = ["Jonathan Kelley, @dementhos"]
|
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/"
|
|
|
|
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]
|
2023-03-13 17:04:51 +00:00
|
|
|
dioxus = { path = "../dioxus", version = "^0.3.0" }
|
|
|
|
dioxus-core = { path = "../core", version = "^0.3.0", features = ["serialize"] }
|
2023-01-04 19:58:06 +00:00
|
|
|
dioxus-html = { path = "../html", version = "^0.3.0" }
|
2023-03-13 17:04:51 +00:00
|
|
|
dioxus-native-core = { path = "../native-core", version = "^0.2.0", features = ["dioxus"] }
|
2023-03-12 21:20:01 +00:00
|
|
|
dioxus-native-core-macro = { path = "../native-core-macro", version = "^0.3.0" }
|
2023-01-13 23:50:32 +00:00
|
|
|
dioxus-hot-reload = { path = "../hot-reload", optional = true }
|
2023-03-13 17:04:51 +00:00
|
|
|
rink = { path = "../rink" }
|
2022-03-09 19:24:05 +00:00
|
|
|
|
2022-03-09 18:30:44 +00:00
|
|
|
crossterm = "0.23.0"
|
2022-01-01 14:49:08 +00:00
|
|
|
tokio = { version = "1.15.0", features = ["full"] }
|
|
|
|
futures = "0.3.19"
|
2022-12-06 23:38:04 +00:00
|
|
|
taffy = "0.2.1"
|
2022-06-14 00:55:57 +00:00
|
|
|
|
|
|
|
[dev-dependencies]
|
2022-07-09 19:15:20 +00:00
|
|
|
dioxus = { path = "../dioxus" }
|
|
|
|
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"]
|