mirror of
https://github.com/DioxusLabs/dioxus
synced 2024-11-10 22:54:12 +00:00
39 lines
No EOL
1.1 KiB
TOML
39 lines
No EOL
1.1 KiB
TOML
[package]
|
|
name = "rink"
|
|
version = "0.2.2"
|
|
authors = ["Jonathan Kelley, @dementhos"]
|
|
edition = "2021"
|
|
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"
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[dependencies]
|
|
dioxus-html = { path = "../html", version = "^0.3.0" }
|
|
dioxus-native-core = { path = "../native-core", version = "^0.2.0", features = ["taffy"] }
|
|
dioxus-native-core-macro = { path = "../native-core-macro", version = "^0.3.0" }
|
|
|
|
tui = "0.17.0"
|
|
crossterm = "0.23.0"
|
|
anyhow = "1.0.42"
|
|
tokio = { version = "1.15.0", features = ["full"] }
|
|
futures = "0.3.19"
|
|
taffy = "0.3.12"
|
|
smallvec = "1.6"
|
|
rustc-hash = "1.1.0"
|
|
anymap = "1.0.0-beta.2"
|
|
futures-channel = "0.3.25"
|
|
shipyard = { version = "0.6.2", features = ["proc", "std"], default-features = false }
|
|
once_cell = "1.17.1"
|
|
|
|
[dev-dependencies]
|
|
tokio = { version = "1" }
|
|
criterion = "0.3.5"
|
|
|
|
[features]
|
|
default = []
|
|
parallel = ["shipyard/parallel"] |