2022-04-24 06:35:52 +00:00
|
|
|
[package]
|
|
|
|
name = "dioxus-rsx"
|
2023-08-01 01:49:54 +00:00
|
|
|
version = { workspace = true }
|
2023-08-01 00:30:18 +00:00
|
|
|
authors = ["Jonathan Kelley", "Evan Almloff"]
|
2024-01-19 03:27:55 +00:00
|
|
|
edition = "2021"
|
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]
|
2024-03-12 20:39:42 +00:00
|
|
|
quote = { workspace = true }
|
|
|
|
proc-macro2 = { workspace = true, features = ["span-locations"] }
|
2023-11-21 20:46:47 +00:00
|
|
|
dioxus-core = { workspace = true, optional = true }
|
2024-03-12 20:39:42 +00:00
|
|
|
syn = { workspace = true, features = ["full", "extra-traits"] }
|
|
|
|
serde = { workspace = true, features = ["derive"], optional = true }
|
2023-07-19 17:19:23 +00:00
|
|
|
internment = { version = "0.7.0", optional = true }
|
2024-03-12 20:39:42 +00:00
|
|
|
krates = { version = "0.16.6", optional = true }
|
2024-01-19 00:27:43 +00:00
|
|
|
tracing = { workspace = true }
|
2023-07-19 17:19:23 +00:00
|
|
|
|
|
|
|
[features]
|
2024-03-24 20:31:26 +00:00
|
|
|
default = ["html", "hot_reload"]
|
2023-11-21 20:46:47 +00:00
|
|
|
hot_reload = ["krates", "internment", "dioxus-core"]
|
2023-07-19 17:19:23 +00:00
|
|
|
serde = ["dep:serde"]
|
2023-09-14 19:08:39 +00:00
|
|
|
html = []
|
2024-03-24 20:31:26 +00:00
|
|
|
|
|
|
|
|
|
|
|
[dev-dependencies]
|
|
|
|
insta = "1.36.1"
|