2022-03-18 10:43:43 -05:00
|
|
|
[package]
|
|
|
|
name = "dioxus-native-core"
|
2023-07-31 18:49:54 -07:00
|
|
|
version = { workspace = true }
|
2022-03-18 10:43:43 -05:00
|
|
|
edition = "2021"
|
2023-07-20 18:00:07 +01:00
|
|
|
license = "MIT OR Apache-2.0"
|
2022-03-18 10:43:43 -05:00
|
|
|
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"
|
2023-01-10 10:16:11 -06:00
|
|
|
keywords = ["dom", "ui", "gui", "react"]
|
2023-07-31 17:30:18 -07:00
|
|
|
authors = ["Jonathan Kelley", "Evan Almloff"]
|
2022-05-03 00:02:09 -04:00
|
|
|
|
2022-03-18 10:43:43 -05:00
|
|
|
[dependencies]
|
2023-06-19 14:29:11 -05:00
|
|
|
dioxus-core = { workspace = true, optional = true }
|
2022-03-18 10:43:43 -05:00
|
|
|
|
2023-08-21 21:28:32 +07:00
|
|
|
keyboard-types = "0.7"
|
2022-03-18 10:43:43 -05:00
|
|
|
smallvec = "1.6"
|
2023-06-19 14:29:11 -05:00
|
|
|
rustc-hash = { workspace = true }
|
2023-01-02 11:01:17 -06:00
|
|
|
anymap = "1.0.0-beta.2"
|
2023-06-19 14:29:11 -05:00
|
|
|
slab = { workspace = true }
|
2023-01-19 14:40:56 -06:00
|
|
|
parking_lot = { version = "0.12.1", features = ["send_guard"] }
|
2022-12-06 17:38:04 -06:00
|
|
|
dashmap = "5.4.0"
|
2022-03-26 20:10:15 -05:00
|
|
|
|
2022-12-29 13:31:33 -06:00
|
|
|
# for parsing attributes
|
2023-05-20 22:10:54 +02:00
|
|
|
taffy = { version = "0.3.12", optional = true }
|
2023-05-20 22:06:35 +02:00
|
|
|
lightningcss = { version = "1.0.0-alpha.39", optional = true }
|
2022-12-29 13:31:33 -06:00
|
|
|
|
2023-02-02 07:08:29 -06:00
|
|
|
rayon = "1.6.1"
|
2023-03-12 18:06:40 -05:00
|
|
|
shipyard = { version = "0.6.2", features = ["proc", "std"], default-features = false }
|
2023-02-28 13:26:49 -06:00
|
|
|
|
2022-03-26 20:10:15 -05:00
|
|
|
[dev-dependencies]
|
2022-05-02 22:17:01 -04:00
|
|
|
rand = "0.8.5"
|
2023-06-19 14:29:11 -05:00
|
|
|
dioxus = { workspace = true }
|
|
|
|
tokio = { workspace = true, features = ["full"] }
|
|
|
|
dioxus-native-core = { workspace = true, features = ["dioxus"] }
|
|
|
|
dioxus-native-core-macro = { workspace = true }
|
2023-02-04 17:56:30 -06:00
|
|
|
|
|
|
|
[features]
|
2023-02-04 20:45:29 -06:00
|
|
|
default = []
|
2023-05-20 22:57:17 +02:00
|
|
|
layout-attributes = ["dep:taffy", "dep:lightningcss"]
|
2023-02-28 13:26:49 -06:00
|
|
|
dioxus = ["dioxus-core"]
|
2023-03-12 18:06:40 -05:00
|
|
|
parallel = ["shipyard/parallel"]
|