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