dioxus/packages/plasmo/Cargo.toml

37 lines
1 KiB
TOML
Raw Normal View History

2021-07-28 10:52:38 -04:00
[package]
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"
description = "TUI-based renderer for Dioxus"
repository = "https://github.com/DioxusLabs/dioxus/"
homepage = "https://dioxuslabs.com"
keywords = ["dom", "ui", "gui", "react", "terminal"]
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"] }
dioxus-native-core = { workspace = true, features = ["layout-attributes"] }
2023-06-19 14:29:11 -05:00
dioxus-native-core-macro = { workspace = true }
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 }
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]
tokio = { version = "1" }
criterion = "0.3.5"
2023-01-11 14:20:38 -06:00
[features]
default = []
parallel = ["shipyard/parallel"]