2023-03-02 01:56:30 +00:00
|
|
|
[package]
|
|
|
|
name = "server_fn_macro"
|
|
|
|
version = { workspace = true }
|
|
|
|
edition = "2021"
|
|
|
|
authors = ["Greg Johnston"]
|
|
|
|
license = "MIT"
|
|
|
|
repository = "https://github.com/leptos-rs/leptos"
|
|
|
|
description = "RPC for any web framework."
|
|
|
|
readme = "../README.md"
|
|
|
|
|
|
|
|
[dependencies]
|
|
|
|
serde = { version = "1", features = ["derive"] }
|
|
|
|
quote = "1"
|
2023-05-21 10:45:53 +00:00
|
|
|
syn = { version = "2", features = ["full", "parsing", "extra-traits"] }
|
2023-03-02 01:56:30 +00:00
|
|
|
proc-macro2 = "1"
|
|
|
|
proc-macro-error = "1"
|
|
|
|
xxhash-rust = { version = "0.8.6", features = ["const_xxh64"] }
|
|
|
|
const_format = "0.2.30"
|
2023-03-13 11:25:08 +00:00
|
|
|
|
|
|
|
[features]
|
2023-06-27 01:12:14 +00:00
|
|
|
nightly = []
|