dioxus/packages/native-core/Cargo.toml

36 lines
989 B
TOML
Raw Normal View History

2022-03-18 10:43:43 -05:00
[package]
name = "dioxus-native-core"
version = "0.2.0"
edition = "2021"
license = "MIT/Apache-2.0"
repository = "https://github.com/DioxusLabs/dioxus/"
homepage = "https://dioxuslabs.com"
2022-05-03 00:02:09 -04:00
description = "Build natively rendered apps with Dioxus"
documentation = "https://dioxuslabs.com"
keywords = ["dom", "ui", "gui", "react"]
2022-05-03 00:02:09 -04:00
2022-03-18 10:43:43 -05:00
[dependencies]
2023-01-04 14:58:06 -05:00
dioxus-core = { path = "../core", version = "^0.3.0" }
dioxus-html = { path = "../html", version = "^0.3.0" }
dioxus-core-macro = { path = "../core-macro", version = "^0.3.0" }
2022-03-18 10:43:43 -05:00
taffy = "0.2.1"
2022-03-18 10:43:43 -05:00
smallvec = "1.6"
rustc-hash = "1.1.0"
2023-01-02 11:01:17 -06:00
anymap = "1.0.0-beta.2"
slab = "0.4"
parking_lot = "0.12.1"
crossbeam-deque = "0.8.2"
dashmap = "5.4.0"
2023-01-16 14:33:11 -06:00
hashbrown = { version = "0.13.2", features = ["raw"] }
2022-03-26 20:10:15 -05:00
# for parsing attributes
2023-01-04 11:18:32 -06:00
lightningcss = "1.0.0-alpha.39"
2022-03-26 20:10:15 -05:00
[dev-dependencies]
2022-05-02 22:17:01 -04:00
rand = "0.8.5"
2023-01-04 14:58:06 -05:00
dioxus = { path = "../dioxus", version = "^0.3.0" }
2022-12-30 14:45:45 -05:00
dioxus-native-core-macro = { path = "../native-core-macro" }
tokio = { version = "*", features = ["full"] }