dioxus/Cargo.toml

20 lines
548 B
TOML
Raw Normal View History

2021-07-28 10:52:38 -04:00
[package]
name = "rink"
version = "0.1.0"
edition = "2018"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
tui = { version = "0.16.0", features = ["crossterm"], default-features = false }
2021-12-31 23:53:37 -05:00
crossterm = "0.22.1"
2021-07-28 10:52:38 -04:00
anyhow = "1.0.42"
thiserror = "1.0.24"
2022-01-13 21:54:21 +01:00
dioxus = "0.1.7"
2021-12-31 23:53:37 -05:00
hecs = "0.7.3"
ctrlc = "3.2.1"
bumpalo = { version = "3.8.0", features = ["boxed"] }
2022-01-01 09:49:08 -05:00
tokio = { version = "1.15.0", features = ["full"] }
futures = "0.3.19"
2022-01-12 09:40:36 -05:00
stretch2 = { git = "https://github.com/DioxusLabs/stretch" }