leptos/leptos_macro/Cargo.toml

48 lines
1.1 KiB
TOML
Raw Normal View History

2022-07-31 20:46:14 +00:00
[package]
name = "leptos_macro"
version = { workspace = true }
2022-07-31 20:46:14 +00:00
edition = "2021"
2022-10-07 10:50:21 +00:00
authors = ["Greg Johnston"]
license = "MIT"
repository = "https://github.com/leptos-rs/leptos"
2022-10-07 10:50:21 +00:00
description = "view macro for the Leptos web framework."
readme = "../README.md"
2022-07-31 20:46:14 +00:00
[lib]
proc-macro = true
[dependencies]
attribute-derive = { version = "0.5", features = ["syn-full"] }
cfg-if = "1"
html-escape = "0.2"
2022-12-10 21:21:58 +00:00
itertools = "0.10"
2022-12-22 19:10:41 +00:00
prettyplease = "0.1"
2022-10-08 12:10:17 +00:00
proc-macro-error = "1"
2022-07-31 20:46:14 +00:00
proc-macro2 = "1"
quote = "1"
2022-12-13 00:33:12 +00:00
syn = { version = "1", features = ["full"] }
2022-11-12 12:30:37 +00:00
syn-rsx = "0.9"
leptos_hot_reload = { workspace = true }
server_fn_macro = { workspace = true }
convert_case = "0.6.0"
uuid = { version = "1", features = ["v4"] }
tracing = "0.1.37"
[dev-dependencies]
2022-10-17 14:57:55 +00:00
log = "0.4"
typed-builder = "0.14"
trybuild = "1"
leptos = { path = "../leptos" }
2022-09-01 14:39:04 +00:00
[features]
default = ["ssr"]
csr = []
hydrate = []
ssr = []
stable = ["server_fn_macro/stable"]
tracing = []
2022-11-03 12:08:03 +00:00
[package.metadata.cargo-all-features]
denylist = ["stable", "tracing"]
skip_feature_sets = [["csr", "hydrate"], ["hydrate", "csr"], ["hydrate", "ssr"]]