dioxus/packages/rsx/Cargo.toml

26 lines
935 B
TOML
Raw Normal View History

2022-04-24 06:35:52 +00:00
[package]
name = "dioxus-rsx"
2023-02-22 20:22:45 +00:00
version = "0.0.3"
2022-04-24 06:35:52 +00:00
edition = "2018"
license = "MIT OR Apache-2.0"
2022-12-09 23:03:56 +00:00
description = "Core functionality for Dioxus - a concurrent renderer-agnostic Virtual DOM for interactive user experiences"
repository = "https://github.com/DioxusLabs/dioxus/"
homepage = "https://dioxuslabs.com"
documentation = "https://dioxuslabs.com"
keywords = ["dom", "ui", "gui", "react"]
2022-04-24 06:35:52 +00:00
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
proc-macro2 = { version = "1.0", features = ["span-locations"] }
2023-06-19 19:29:11 +00:00
dioxus-core = { workspace = true}
2023-07-19 17:19:23 +00:00
syn = { version = "2.0", features = ["full", "extra-traits"] }
2022-05-30 23:32:57 +00:00
quote = { version = "1.0" }
2023-07-19 17:19:23 +00:00
serde = { version = "1.0", features = ["derive"], optional = true }
internment = { version = "0.7.0", optional = true }
krates = { version = "0.12.6", optional = true }
[features]
hot_reload = ["krates", "internment"]
serde = ["dep:serde"]