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"
|
2022-05-28 19:32:49 +00:00
|
|
|
license = "MIT/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}
|
2022-05-28 17:10:32 +00:00
|
|
|
syn = { version = "1.0", features = ["full", "extra-traits"] }
|
2022-05-30 23:32:57 +00:00
|
|
|
quote = { version = "1.0" }
|
2022-09-30 19:03:06 +00:00
|
|
|
serde = { version = "1.0", features = ["derive"] }
|
2023-01-04 19:31:07 +00:00
|
|
|
internment = "0.7.0"
|
2023-02-27 00:42:14 +00:00
|
|
|
krates = "0.12.6"
|