leptos/leptos_macro/Cargo.toml

39 lines
989 B
TOML
Raw Normal View History

2022-08-01 04:46:14 +08:00
[package]
name = "leptos_macro"
2022-11-22 20:32:12 +08:00
version = "0.0.18"
2022-08-01 04:46:14 +08:00
edition = "2021"
2022-10-07 18:50:21 +08:00
authors = ["Greg Johnston"]
license = "MIT"
repository = "https://github.com/gbj/leptos"
description = "view macro for the Leptos web framework."
2022-08-01 04:46:14 +08:00
[lib]
proc-macro = true
[dependencies]
cfg-if = "1"
2022-10-08 20:10:17 +08:00
proc-macro-error = "1"
2022-08-01 04:46:14 +08:00
proc-macro2 = "1"
quote = "1"
syn = { version = "1", features = ["full", "parsing", "extra-traits"] }
2022-11-12 20:30:37 +08:00
syn-rsx = "0.9"
2022-08-24 22:59:06 +08:00
uuid = { version = "1", features = ["v4"] }
2022-11-23 21:33:50 +08:00
leptos_dom = { path = "../leptos_dom", version = "0.0.18" }
leptos_reactive = { path = "../leptos_reactive", version = "0.0.18" }
lazy_static = "1.4"
[dev-dependencies]
2022-10-17 22:57:55 +08:00
log = "0.4"
typed-builder = "0.10"
leptos = { path = "../leptos", version = "0.0" }
2022-09-01 22:39:04 +08:00
[features]
default = ["ssr"]
csr = ["leptos_dom/web", "leptos_reactive/csr"]
hydrate = ["leptos_dom/web", "leptos_reactive/hydrate"]
2022-12-09 08:32:46 +08:00
ssr = ["leptos_reactive/ssr"]
2022-11-03 20:08:03 +08:00
stable = ["leptos_dom/stable", "leptos_reactive/stable"]
[package.metadata.cargo-all-features]
denylist = ["stable"]