dioxus/packages/html/Cargo.toml

21 lines
656 B
TOML
Raw Normal View History

2021-06-17 22:00:32 +00:00
[package]
name = "dioxus-html"
2021-12-15 20:58:20 +00:00
version = "0.1.0"
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"
"license" = "MIT/Apache-2.0"
2021-06-17 22:00:32 +00:00
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
2021-11-05 22:02:44 +00:00
dioxus-core = { path = "../core", version = "0.1.3" }
2021-11-07 03:11:17 +00:00
# Serialize the Edits for use in Webview/Liveview instances
serde = { version = "1", features = ["derive"], optional = true }
serde_repr = { version = "0.1.7", optional = true }
[features]
default = []
serialize = ["serde", "serde_repr"]