2023-03-02 01:56:30 +00:00
|
|
|
[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"
|
2024-08-12 23:25:47 +00:00
|
|
|
version = { workspace = true }
|
|
|
|
edition.workspace = true
|
2023-03-02 01:56:30 +00:00
|
|
|
|
|
|
|
[lib]
|
|
|
|
proc-macro = true
|
|
|
|
|
|
|
|
[dependencies]
|
2024-08-11 00:01:41 +00:00
|
|
|
syn = { version = "2.0" }
|
2023-12-31 20:31:22 +00:00
|
|
|
server_fn_macro = { workspace = true }
|
2023-03-02 01:56:30 +00:00
|
|
|
|
2023-03-13 11:25:08 +00:00
|
|
|
[features]
|
2023-06-27 01:12:14 +00:00
|
|
|
nightly = ["server_fn_macro/nightly"]
|
2023-12-31 20:09:38 +00:00
|
|
|
ssr = ["server_fn_macro/ssr"]
|
|
|
|
actix = ["server_fn_macro/actix"]
|
|
|
|
axum = ["server_fn_macro/axum"]
|