mirror of
https://github.com/DioxusLabs/dioxus
synced 2024-11-10 06:34:20 +00:00
463e67cd12
* fix imports, migrate over rsx-hotreload
29 lines
1,004 B
TOML
29 lines
1,004 B
TOML
[package]
|
|
name = "dioxus-rsx"
|
|
version = { workspace = true }
|
|
authors = ["Jonathan Kelley", "Evan Almloff"]
|
|
edition = "2021"
|
|
license = "MIT OR Apache-2.0"
|
|
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"]
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[dependencies]
|
|
proc-macro2 = { workspace = true, features = ["span-locations"] }
|
|
proc-macro2-diagnostics = { workspace = true }
|
|
quote = { workspace = true }
|
|
syn = { workspace = true, features = ["full", "extra-traits", "visit", "visit-mut"] }
|
|
|
|
[features]
|
|
default = []
|
|
|
|
[dev-dependencies]
|
|
prettyplease = { workspace = true }
|
|
prettier-please = { workspace = true }
|
|
|
|
[package.metadata.docs.rs]
|
|
cargo-args = ["-Zunstable-options", "-Zrustdoc-scrape-examples"]
|