mirror of
https://github.com/leptos-rs/leptos
synced 2024-11-14 16:47:19 +00:00
38 lines
1 KiB
TOML
38 lines
1 KiB
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_qs = "0.12"
|
|
thiserror = "1"
|
|
serde_json = "1"
|
|
quote = "1"
|
|
syn = { version = "2", features = ["full", "parsing", "extra-traits"] }
|
|
proc-macro2 = "1"
|
|
ciborium = "0.2"
|
|
xxhash-rust = { version = "0.8", features = ["const_xxh64"] }
|
|
const_format = "0.2"
|
|
inventory = { version = "0.3", optional = true }
|
|
lazy_static = "1"
|
|
|
|
[target.'cfg(target_arch = "wasm32")'.dependencies]
|
|
gloo-net = "0.2"
|
|
js-sys = "0.3"
|
|
|
|
[target.'cfg(not(target_arch = "wasm32"))'.dependencies]
|
|
reqwest = { version = "0.11", default-features = false }
|
|
once_cell = "1"
|
|
|
|
[features]
|
|
default-tls = ["reqwest/default-tls"]
|
|
rustls = ["reqwest/rustls-tls"]
|
|
ssr = ["inventory"]
|
|
nightly = ["server_fn_macro_default/nightly"]
|