dioxus/packages/html/Cargo.toml

21 lines
673 B
TOML
Raw Normal View History

2021-06-17 22:00:32 +00:00
[package]
name = "dioxus-html"
version = "0.1.6"
2021-09-25 00:54:50 +00:00
authors = ["Jonathan Kelley"]
2021-06-17 22:00:32 +00:00
edition = "2018"
2021-09-25 00:54:50 +00:00
description = "HTML Element pack for Dioxus - a concurrent renderer-agnostic Virtual DOM for interactive user experiences"
2021-12-15 21:04:27 +00:00
license = "MIT/Apache-2.0"
repository = "https://github.com/DioxusLabs/dioxus/"
homepage = "https://dioxuslabs.com"
2021-12-29 18:30:48 +00:00
documentation = "https://docs.rs/dioxus"
2021-12-15 21:06:13 +00:00
keywords = ["dom", "ui", "gui", "react", "wasm"]
2021-06-17 22:00:32 +00:00
[dependencies]
2022-01-29 15:42:38 +00:00
dioxus-core = { path = "../core", version = "^0.1.9" }
2021-11-07 03:11:17 +00:00
serde = { version = "1", features = ["derive"], optional = true }
2021-12-29 18:30:07 +00:00
serde_repr = { version = "0.1", optional = true }
2021-11-07 03:11:17 +00:00
[features]
default = []
serialize = ["serde", "serde_repr"]