2021-07-28 14:52:38 +00:00
|
|
|
[package]
|
2023-08-01 01:49:54 +00:00
|
|
|
name = "plasmo"
|
|
|
|
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/"
|
|
|
|
homepage = "https://dioxuslabs.com"
|
|
|
|
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-html = { workspace = true }
|
2023-06-30 19:30:39 +00:00
|
|
|
dioxus-native-core = { workspace = true, features = ["layout-attributes"] }
|
2023-06-19 19:29:11 +00:00
|
|
|
dioxus-native-core-macro = { workspace = true }
|
2022-03-09 19:24:05 +00:00
|
|
|
|
2022-02-12 20:03:08 +00:00
|
|
|
tui = "0.17.0"
|
2023-04-24 16:48:52 +00:00
|
|
|
crossterm = "0.26.1"
|
2021-07-28 14:52:38 +00:00
|
|
|
anyhow = "1.0.42"
|
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-16 09:46:13 +00:00
|
|
|
taffy = "0.3.12"
|
2022-03-18 15:43:43 +00:00
|
|
|
smallvec = "1.6"
|
2023-06-19 19:29:11 +00:00
|
|
|
rustc-hash = { workspace = true }
|
2023-01-02 17:01:17 +00:00
|
|
|
anymap = "1.0.0-beta.2"
|
2023-06-19 19:29:11 +00:00
|
|
|
futures-channel = { workspace = true }
|
2023-03-12 23:06:40 +00:00
|
|
|
shipyard = { version = "0.6.2", features = ["proc", "std"], default-features = false }
|
2023-03-13 15:04:01 +00:00
|
|
|
once_cell = "1.17.1"
|
2022-06-14 00:55:57 +00:00
|
|
|
|
|
|
|
[dev-dependencies]
|
2022-07-09 19:15:20 +00:00
|
|
|
tokio = { version = "1" }
|
|
|
|
criterion = "0.3.5"
|
|
|
|
|
2023-01-11 20:20:38 +00:00
|
|
|
[features]
|
2023-03-13 17:04:51 +00:00
|
|
|
default = []
|
2023-08-01 01:49:54 +00:00
|
|
|
parallel = ["shipyard/parallel"]
|