dioxus/packages/native-core/Cargo.toml

44 lines
1.2 KiB
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"]
2022-05-03 04:02:09 +00:00
2022-03-18 15:43:43 +00:00
[dependencies]
2023-02-04 23:56:30 +00:00
dioxus-core = { path = "../core", version = "^0.3.0", optional = true }
2022-03-18 15:43:43 +00:00
2023-02-04 23:56:30 +00:00
keyboard-types = "0.6.2"
2023-05-16 09:46:13 +00:00
taffy = "0.3.12"
2022-03-18 15:43:43 +00:00
smallvec = "1.6"
rustc-hash = "1.1.0"
2023-01-02 17:01:17 +00:00
anymap = "1.0.0-beta.2"
slab = "0.4"
2023-01-19 20:40:56 +00:00
parking_lot = { version = "0.12.1", features = ["send_guard"] }
crossbeam-deque = "0.8.2"
dashmap = "5.4.0"
2023-01-16 20:33:11 +00:00
hashbrown = { version = "0.13.2", features = ["raw"] }
2022-03-27 01:10:15 +00:00
# for parsing attributes
2023-01-04 17:18:32 +00:00
lightningcss = "1.0.0-alpha.39"
2023-02-02 13:08:29 +00:00
rayon = "1.6.1"
shipyard = { version = "0.6.2", features = ["proc", "std"], default-features = false }
2023-02-28 19:26:49 +00:00
2022-03-27 01:10:15 +00:00
[dev-dependencies]
2022-05-03 02:17:01 +00:00
rand = "0.8.5"
2023-01-04 19:58:06 +00:00
dioxus = { path = "../dioxus", version = "^0.3.0" }
2022-12-30 19:45:45 +00:00
tokio = { version = "*", features = ["full"] }
2023-02-04 23:56:30 +00:00
dioxus-native-core = { path = ".", features = ["dioxus"] }
2023-03-12 20:35:48 +00:00
dioxus-native-core-macro = { path = "../native-core-macro" }
2023-02-04 23:56:30 +00:00
[features]
2023-02-05 02:45:29 +00:00
default = []
2023-02-28 19:26:49 +00:00
dioxus = ["dioxus-core"]
parallel = ["shipyard/parallel"]