2022-07-31 20:46:14 +00:00
|
|
|
[package]
|
|
|
|
name = "leptos_macro"
|
2023-01-11 17:09:10 +00:00
|
|
|
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"
|
2023-01-13 08:03:11 +00:00
|
|
|
repository = "https://github.com/leptos-rs/leptos"
|
2022-10-07 10:50:21 +00:00
|
|
|
description = "view macro for the Leptos web framework."
|
2023-01-17 17:05:09 +00:00
|
|
|
readme = "../README.md"
|
2024-02-28 12:19:09 +00:00
|
|
|
rust-version.workspace = true
|
2022-07-31 20:46:14 +00:00
|
|
|
|
|
|
|
[lib]
|
|
|
|
proc-macro = true
|
|
|
|
|
|
|
|
[dependencies]
|
2024-03-18 15:39:34 +00:00
|
|
|
attribute-derive = { version = "0.9", features = ["syn-full"]}
|
2022-11-14 12:21:05 +00:00
|
|
|
cfg-if = "1"
|
2023-02-01 04:39:31 +00:00
|
|
|
html-escape = "0.2"
|
2023-12-21 00:10:00 +00:00
|
|
|
itertools = "0.12"
|
2023-05-21 10:45:53 +00:00
|
|
|
prettyplease = "0.2.4"
|
2023-09-08 18:46:38 +00:00
|
|
|
proc-macro-error = { version = "1", default-features = false }
|
2022-07-31 20:46:14 +00:00
|
|
|
proc-macro2 = "1"
|
|
|
|
quote = "1"
|
2023-05-21 10:45:53 +00:00
|
|
|
syn = { version = "2", features = ["full"] }
|
2023-07-23 11:46:33 +00:00
|
|
|
rstml = "0.11.0"
|
2023-03-04 14:04:22 +00:00
|
|
|
leptos_hot_reload = { workspace = true }
|
2023-03-02 01:56:30 +00:00
|
|
|
server_fn_macro = { workspace = true }
|
2023-01-22 12:37:40 +00:00
|
|
|
convert_case = "0.6.0"
|
2023-02-16 12:02:01 +00:00
|
|
|
uuid = { version = "1", features = ["v4"] }
|
2023-04-22 10:47:11 +00:00
|
|
|
tracing = "0.1.37"
|
2022-10-19 02:08:15 +00:00
|
|
|
|
|
|
|
[dev-dependencies]
|
2022-10-17 14:57:55 +00:00
|
|
|
log = "0.4"
|
2023-10-30 01:49:48 +00:00
|
|
|
typed-builder = "0.18"
|
2023-03-03 00:15:45 +00:00
|
|
|
trybuild = "1"
|
2023-01-27 11:57:32 +00:00
|
|
|
leptos = { path = "../leptos" }
|
2023-08-04 11:54:03 +00:00
|
|
|
insta = "1.29"
|
2023-10-19 20:07:43 +00:00
|
|
|
serde = "1"
|
2022-09-01 14:39:04 +00:00
|
|
|
|
|
|
|
[features]
|
2023-03-13 14:16:20 +00:00
|
|
|
csr = []
|
|
|
|
hydrate = []
|
2023-07-25 10:07:52 +00:00
|
|
|
ssr = ["server_fn_macro/ssr"]
|
2023-06-27 01:12:14 +00:00
|
|
|
nightly = ["server_fn_macro/nightly"]
|
2022-12-28 16:51:55 +00:00
|
|
|
tracing = []
|
2023-09-08 20:33:00 +00:00
|
|
|
experimental-islands = []
|
2023-11-27 21:35:31 +00:00
|
|
|
trace-component-props = []
|
2024-01-04 01:15:38 +00:00
|
|
|
actix = ["server_fn_macro/actix"]
|
|
|
|
axum = ["server_fn_macro/axum"]
|
2022-11-03 12:08:03 +00:00
|
|
|
|
|
|
|
[package.metadata.cargo-all-features]
|
2023-11-27 21:35:31 +00:00
|
|
|
denylist = ["nightly", "tracing", "trace-component-props"]
|
2023-01-05 16:08:07 +00:00
|
|
|
skip_feature_sets = [["csr", "hydrate"], ["hydrate", "csr"], ["hydrate", "ssr"]]
|
2024-07-03 10:46:02 +00:00
|
|
|
|
|
|
|
[package.metadata.docs.rs]
|
|
|
|
rustdoc-args = ["--generate-link-to-definition"]
|