leptos/leptos_macro/Cargo.toml

58 lines
1.5 KiB
TOML
Raw Normal View History

2022-07-31 20:46:14 +00:00
[package]
name = "leptos_macro"
2024-09-08 23:40:32 +00:00
version = "0.7.0-beta5"
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"
2024-02-28 12:19:09 +00:00
rust-version.workspace = true
edition.workspace = true
2022-07-31 20:46:14 +00:00
[lib]
proc-macro = true
[dependencies]
2024-08-11 00:01:41 +00:00
attribute-derive = { version = "0.9.2", features = ["syn-full"] }
cfg-if = "1.0"
html-escape = "0.2.13"
itertools = "0.13.0"
prettyplease = "0.2.20"
proc-macro-error2 = { version = "2.0", default-features = false }
2024-08-11 00:01:41 +00:00
proc-macro2 = "1.0"
quote = "1.0"
syn = { version = "2.0", features = ["full"] }
rstml = "0.12.0"
leptos_hot_reload = { workspace = true }
server_fn_macro = { workspace = true }
convert_case = "0.6.0"
2024-08-11 00:01:41 +00:00
uuid = { version = "1.10", features = ["v4"] }
tracing = { version = "0.1.40", optional = true }
[dev-dependencies]
2024-08-11 00:01:41 +00:00
log = "0.4.22"
typed-builder = "0.19.1"
trybuild = "1.0"
leptos = { path = "../leptos" }
2024-08-01 16:04:14 +00:00
server_fn = { path = "../server_fn", features = ["cbor"] }
2024-08-11 00:01:41 +00:00
insta = "1.39"
serde = "1.0"
2022-09-01 14:39:04 +00:00
[features]
csr = []
hydrate = []
2024-08-02 13:24:51 +00:00
ssr = ["server_fn_macro/ssr", "leptos/ssr"]
nightly = ["server_fn_macro/nightly"]
tracing = ["dep:tracing"]
2023-09-08 20:33:00 +00:00
experimental-islands = []
trace-component-props = []
actix = ["server_fn_macro/actix"]
axum = ["server_fn_macro/axum"]
2022-11-03 12:08:03 +00:00
[package.metadata.cargo-all-features]
denylist = ["nightly", "tracing", "trace-component-props"]
skip_feature_sets = [["csr", "hydrate"], ["hydrate", "csr"], ["hydrate", "ssr"]]
[package.metadata.docs.rs]
rustdoc-args = ["--generate-link-to-definition"]