2023-03-02 01:56:30 +00:00
|
|
|
[package]
|
|
|
|
name = "server_fn_macro"
|
2024-01-25 02:35:14 +00:00
|
|
|
version = { workspace = true }
|
2023-03-02 01:56:30 +00:00
|
|
|
edition = "2021"
|
|
|
|
authors = ["Greg Johnston"]
|
|
|
|
license = "MIT"
|
2024-03-31 18:10:47 +00:00
|
|
|
repository = "https://github.com/leptos-rs/leptos"
|
2023-03-02 01:56:30 +00:00
|
|
|
description = "RPC for any web framework."
|
|
|
|
readme = "../README.md"
|
|
|
|
|
|
|
|
[dependencies]
|
2024-08-11 00:01:41 +00:00
|
|
|
quote = "1.0"
|
|
|
|
syn = { version = "2.0", features = ["full", "parsing", "extra-traits"] }
|
|
|
|
proc-macro2 = "1.0"
|
|
|
|
xxhash-rust = { version = "0.8.12", features = ["const_xxh64"] }
|
|
|
|
const_format = "0.2.32"
|
2023-12-31 20:09:38 +00:00
|
|
|
convert_case = "0.6.0"
|
2023-03-13 11:25:08 +00:00
|
|
|
|
|
|
|
[features]
|
2023-06-27 01:12:14 +00:00
|
|
|
nightly = []
|
2023-07-25 10:07:52 +00:00
|
|
|
ssr = []
|
2023-12-31 20:09:38 +00:00
|
|
|
actix = []
|
|
|
|
axum = []
|
2024-01-19 20:48:14 +00:00
|
|
|
reqwest = []
|
2024-07-03 10:46:02 +00:00
|
|
|
|
|
|
|
[package.metadata.docs.rs]
|
|
|
|
rustdoc-args = ["--generate-link-to-definition"]
|