dioxus/packages/rsx_interperter/Cargo.toml

14 lines
343 B
TOML
Raw Normal View History

2022-05-25 08:58:59 -05:00
[package]
name = "dioxus-rsx-interperter"
version = "0.1.0"
edition = "2021"
2022-05-28 14:32:49 -05:00
license = "MIT/Apache-2.0"
2022-05-25 08:58:59 -05:00
[dependencies]
syn = "1.0"
quote = "1.0"
2022-05-28 12:11:22 -05:00
dioxus-rsx = { path = "../rsx", default-features = false }
2022-05-25 08:58:59 -05:00
dioxus-ssr = { path = "../ssr" }
dioxus-core = { path = "../core" }
dioxus-html = { path = "../html" }
2022-05-25 14:08:59 -05:00
dioxus-hooks = { path = "../hooks"}