dioxus/packages/native-core/Cargo.toml

33 lines
847 B
TOML
Raw Normal View History

2022-03-18 15:43:43 +00: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 04:02:09 +00:00
description = "Build natively rendered apps with Dioxus"
documentation = "https://dioxuslabs.com"
keywords = ["dom", "ui", "gui", "react", "wasm"]
2022-03-18 15:43:43 +00:00
[dependencies]
dioxus-core = { path = "../core", version = "^0.2.1" }
dioxus-html = { path = "../html", version = "^0.2.1" }
dioxus-core-macro = { path = "../core-macro", version = "^0.2.1" }
2022-03-18 15:43:43 +00:00
taffy = "0.2.1"
2022-03-18 15:43:43 +00:00
smallvec = "1.6"
rustc-hash = "1.1.0"
2022-04-09 02:17:37 +00:00
anymap = "0.12.1"
slab = "0.4"
parking_lot = "0.12.1"
crossbeam-deque = "0.8.2"
dashmap = "5.4.0"
2022-03-27 01:10:15 +00:00
[dev-dependencies]
2022-05-03 02:17:01 +00:00
rand = "0.8.5"
2022-12-11 23:31:15 +00:00
dioxus = { path = "../dioxus", version = "^0.2.1" }
[features]
default = ["parallel"]
parallel = ["dioxus-core/sync_attributes"]