mirror of
https://github.com/leptos-rs/leptos
synced 2024-11-10 06:44:17 +00:00
34 lines
872 B
TOML
34 lines
872 B
TOML
[package]
|
|
name = "server_fn"
|
|
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]
|
|
server_fn_macro_default = { workspace = true }
|
|
serde = { version = "1", features = ["derive"] }
|
|
serde_urlencoded = "0.7"
|
|
thiserror = "1"
|
|
serde_json = "1.0.89"
|
|
quote = "1"
|
|
syn = { version = "1", features = ["full", "parsing", "extra-traits"] }
|
|
proc-macro2 = "1"
|
|
ciborium = "0.2.0"
|
|
xxhash-rust = { version = "0.8.6", features = ["const_xxh64"] }
|
|
const_format = "0.2.30"
|
|
|
|
[target.'cfg(target_arch = "wasm32")'.dependencies]
|
|
gloo-net = "0.2"
|
|
js-sys = "0.3"
|
|
|
|
[target.'cfg(not(target_arch = "wasm32"))'.dependencies]
|
|
reqwest = "0.11.14"
|
|
once_cell = "1.17.1"
|
|
|
|
[features]
|
|
ssr = []
|
|
stable = ["server_fn_macro_default/stable"]
|