mirror of
https://github.com/leptos-rs/leptos.git
synced 2025-12-27 09:54:41 -05:00
* fix(CI): pre-install tailwind and sass * chore: retrigger CI * fix(CI): properly set `erased_mode` in examples * fix(CI): workflow logic install deps locally * chore(CI): organized tailwind and sass versions * fix: properly ignore nightly features on stable rustc * fix(CI): typo * fix: missing cfg attr * fix: properly gate nightly module in `reactive_graph`` * fix: complete `rustc_nightly` cfg gate * fix(CI): making even more space for CI workers * fix: missing one more rustc_nightly gated feature * fix: maximize the speed of cargo-all-features by limiting combinations to 2
25 lines
594 B
TOML
25 lines
594 B
TOML
[package]
|
|
name = "server_fn_macro_default"
|
|
authors = ["Greg Johnston"]
|
|
license = "MIT"
|
|
repository = "https://github.com/leptos-rs/leptos"
|
|
description = "The default implementation of the server_fn macro without a context"
|
|
version = { workspace = true }
|
|
edition.workspace = true
|
|
|
|
[lib]
|
|
proc-macro = true
|
|
|
|
[dependencies]
|
|
syn = { version = "2.0" }
|
|
server_fn_macro = { workspace = true }
|
|
|
|
[features]
|
|
nightly = ["server_fn_macro/nightly"]
|
|
ssr = ["server_fn_macro/ssr"]
|
|
actix = ["server_fn_macro/actix"]
|
|
axum = ["server_fn_macro/axum"]
|
|
|
|
[package.metadata.cargo-all-features]
|
|
max_combination_size = 2
|