mirror of
https://github.com/leptos-rs/leptos.git
synced 2025-12-27 09:54:41 -05:00
22 lines
522 B
TOML
22 lines
522 B
TOML
[package]
|
|
name = "server_fn_macro_default"
|
|
version = { workspace = true }
|
|
edition = "2021"
|
|
authors = ["Greg Johnston"]
|
|
license = "MIT"
|
|
repository = "https://github.com/leptos-rs/leptos"
|
|
description = "The default implementation of the server_fn macro without a context"
|
|
|
|
[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"]
|