dioxus/packages/rsx/Cargo.toml

21 lines
800 B
TOML
Raw Normal View History

2022-04-24 02:35:52 -04:00
[package]
name = "dioxus-rsx"
2023-02-22 12:22:45 -08:00
version = "0.0.3"
2022-04-24 02:35:52 -04:00
edition = "2018"
2022-05-28 14:32:49 -05:00
license = "MIT/Apache-2.0"
2022-12-09 15:03:56 -08: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 02:35:52 -04: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-02-22 12:55:54 -08:00
dioxus-core = { path = "../core", version = "^0.3.0"}
syn = { version = "1.0", features = ["full", "extra-traits"] }
2022-05-30 18:32:57 -05:00
quote = { version = "1.0" }
serde = { version = "1.0", features = ["derive"] }
internment = "0.7.0"
2023-02-26 18:42:14 -06:00
krates = "0.12.6"