mirror of
https://github.com/leptos-rs/leptos
synced 2024-11-10 23:04:24 +00:00
30 lines
648 B
TOML
30 lines
648 B
TOML
[package]
|
|
name = "leptos_macro"
|
|
version = "0.0.7"
|
|
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]
|
|
proc-macro-error = "1"
|
|
proc-macro2 = "1"
|
|
quote = "1"
|
|
syn = { version = "1", features = ["full", "parsing", "extra-traits"] }
|
|
syn-rsx = "0.8.1"
|
|
uuid = { version = "1", features = ["v4"] }
|
|
|
|
[dev-dependencies]
|
|
leptos_core = { path = "../leptos_core" }
|
|
leptos_dom = { path = "../leptos_dom" }
|
|
leptos_reactive = { path = "../leptos_reactive" }
|
|
log = "0.4"
|
|
|
|
[features]
|
|
csr = []
|
|
hydrate = []
|
|
ssr = []
|