dioxus/packages/native-core/Cargo.toml

25 lines
635 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
2022-05-03 02:17:01 +00:00
stretch2 = "0.4.2"
2022-03-18 15:43:43 +00:00
smallvec = "1.6"
2022-03-27 01:10:15 +00:00
fxhash = "0.2"
2022-04-09 02:17:37 +00:00
anymap = "0.12.1"
2022-03-27 01:10:15 +00:00
[dev-dependencies]
2022-05-03 02:17:01 +00:00
rand = "0.8.5"