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"
|
2023-07-20 17:00:07 +00:00
|
|
|
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"
|
2023-01-10 16:16:11 +00:00
|
|
|
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]
|
2022-09-30 19:03:06 +00:00
|
|
|
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"]
|