leptos/server_fn_macro/Cargo.toml

28 lines
634 B
TOML
Raw Permalink Normal View History

[package]
name = "server_fn_macro"
authors = ["Greg Johnston"]
license = "MIT"
repository = "https://github.com/leptos-rs/leptos"
description = "RPC for any web framework."
readme = "../README.md"
version = { workspace = true }
edition.workspace = true
[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"
convert_case = "0.6.0"
[features]
nightly = []
ssr = []
actix = []
axum = []
2024-01-19 20:48:14 +00:00
reqwest = []
[package.metadata.docs.rs]
rustdoc-args = ["--generate-link-to-definition"]