mirror of
https://github.com/leptos-rs/leptos
synced 2024-11-10 06:44:17 +00:00
43 lines
1.1 KiB
TOML
43 lines
1.1 KiB
TOML
[package]
|
|
name = "leptos_macro"
|
|
version = "0.1.0-beta"
|
|
edition = "2021"
|
|
authors = ["Greg Johnston"]
|
|
license = "MIT"
|
|
repository = "https://github.com/gbj/leptos"
|
|
description = "view macro for the Leptos web framework."
|
|
|
|
[lib]
|
|
proc-macro = true
|
|
|
|
[dependencies]
|
|
cfg-if = "1"
|
|
itertools = "0.10"
|
|
pad-adapter = "0.1"
|
|
prettyplease = "0.1"
|
|
proc-macro-error = "1"
|
|
proc-macro2 = "1"
|
|
quote = "1"
|
|
syn = { version = "1", features = ["full"] }
|
|
syn-rsx = "0.9"
|
|
uuid = { version = "1", features = ["v4"] }
|
|
leptos_dom = { path = "../leptos_dom", version = "0.1.0-beta" }
|
|
leptos_reactive = { path = "../leptos_reactive", version = "0.1.0-beta" }
|
|
leptos_server = { path = "../leptos_server", version = "0.1.0-beta" }
|
|
lazy_static = "1.4"
|
|
|
|
[dev-dependencies]
|
|
log = "0.4"
|
|
typed-builder = "0.10"
|
|
leptos = { path = "../leptos" }
|
|
|
|
[features]
|
|
default = ["ssr"]
|
|
csr = ["leptos_dom/web", "leptos_reactive/csr"]
|
|
hydrate = ["leptos_dom/web", "leptos_reactive/hydrate"]
|
|
ssr = ["leptos_dom/ssr", "leptos_reactive/ssr"]
|
|
stable = ["leptos_dom/stable", "leptos_reactive/stable"]
|
|
tracing = []
|
|
|
|
[package.metadata.cargo-all-features]
|
|
denylist = ["stable", "tracing"]
|