dioxus/packages/rsx_interpreter/Cargo.toml

25 lines
740 B
TOML
Raw Normal View History

2022-05-25 08:58:59 -05:00
[package]
2022-05-31 12:18:22 -05:00
name = "dioxus-rsx-interpreter"
2022-05-25 08:58:59 -05:00
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]
2022-05-29 08:04:08 -05:00
syn = { version = "1.0", features = ["extra-traits"] }
2022-06-15 12:58:08 -05:00
proc-macro2 = { version = "1.0.39", features = ["span-locations"] }
2022-05-25 08:58:59 -05:00
quote = "1.0"
serde = { version = "1.0", features = ["derive"] }
2022-06-05 07:38:05 -05:00
serde_json = "1.0"
lazy_static = "1.4.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-06-17 09:50:25 -05:00
dioxus-hooks = { path = "../hooks"}
[dev-dependencies]
dioxus-core-macro = { path = "../core-macro" }
bumpalo = { version = "3.6", features = ["collections", "boxed"] }
dioxus = { path = "../dioxus", features = ["hot-reload"]}