dioxus/packages/rsx_interpreter/Cargo.toml

24 lines
791 B
TOML
Raw Normal View History

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