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