dioxus/packages/rsx/Cargo.toml

21 lines
780 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"
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"
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}
syn = { version = "1.0", features = ["full", "extra-traits"] }
2022-05-30 23:32:57 +00:00
quote = { version = "1.0" }
serde = { version = "1.0", features = ["derive"] }
internment = "0.7.0"
2023-02-27 00:42:14 +00:00
krates = "0.12.6"