mirror of
https://github.com/leptos-rs/leptos
synced 2024-11-12 23:57:09 +00:00
52 lines
1.2 KiB
TOML
52 lines
1.2 KiB
TOML
[package]
|
|
name = "leptos_server"
|
|
version = "0.0.18"
|
|
edition = "2021"
|
|
authors = ["Greg Johnston"]
|
|
license = "MIT"
|
|
repository = "https://github.com/gbj/leptos"
|
|
description = "RPC for the Leptos web framework."
|
|
|
|
[dependencies]
|
|
leptos_dom = { path = "../leptos_dom", default-features = false, version = "0.0.18" }
|
|
leptos_reactive = { path = "../leptos_reactive", default-features = false, version = "0.0.18" }
|
|
form_urlencoded = "1"
|
|
gloo-net = "0.2"
|
|
lazy_static = "1"
|
|
linear-map = "1"
|
|
log = "0.4"
|
|
serde = { version = "1", features = ["derive"] }
|
|
serde_urlencoded = "0.7"
|
|
thiserror = "1"
|
|
|
|
[dev-dependencies]
|
|
leptos_macro = { path = "../leptos_macro", default-features = false, version = "0.0" }
|
|
leptos = { path = "../leptos", default-features = false, version = "0.0" }
|
|
|
|
[features]
|
|
csr = [
|
|
"leptos_dom/web",
|
|
"leptos_reactive/csr",
|
|
"leptos_macro/csr",
|
|
"leptos/csr",
|
|
]
|
|
hydrate = [
|
|
"leptos_dom/web",
|
|
"leptos_reactive/hydrate",
|
|
"leptos_macro/hydrate",
|
|
"leptos/hydrate",
|
|
]
|
|
ssr = [
|
|
"leptos_reactive/ssr",
|
|
"leptos_macro/ssr",
|
|
"leptos/csr",
|
|
]
|
|
stable = [
|
|
"leptos_dom/stable",
|
|
"leptos_reactive/stable",
|
|
"leptos_macro/stable",
|
|
"leptos/stable",
|
|
]
|
|
|
|
[package.metadata.cargo-all-features]
|
|
denylist = ["stable"]
|