dioxus/packages/rink/Cargo.toml

37 lines
998 B
TOML
Raw Normal View History

2021-07-28 14:52:38 +00:00
[package]
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"
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 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 }
dioxus-native-core = { workspace = true, features = ["layout-attributes"] }
2023-06-19 19:29:11 +00:00
dioxus-native-core-macro = { workspace = true }
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 }
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]
tokio = { version = "1" }
criterion = "0.3.5"
2023-01-11 20:20:38 +00:00
[features]
default = []
parallel = ["shipyard/parallel"]