leptos/hydration_context/Cargo.toml

28 lines
779 B
TOML
Raw Normal View History

[package]
name = "hydration_context"
2024-09-08 23:40:32 +00:00
version = "0.2.0-beta5"
2024-04-27 15:11:18 +00:00
authors = ["Greg Johnston"]
license = "MIT"
readme = "../README.md"
repository = "https://github.com/leptos-rs/leptos"
description = "Utilities for sharing data between web servers and client-side web applications."
rust-version.workspace = true
edition.workspace = true
[dependencies]
2024-04-27 15:08:10 +00:00
throw_error = { workspace = true }
or_poisoned = { workspace = true }
2024-08-11 00:01:41 +00:00
futures = "0.3.30"
serde = { version = "1.0", features = ["derive"] }
wasm-bindgen = { version = "0.2.93", optional = true }
2024-08-11 00:01:41 +00:00
js-sys = { version = "0.3.69", optional = true }
once_cell = "1.19"
pin-project-lite = "0.2.14"
[features]
browser = ["dep:wasm-bindgen", "dep:js-sys"]
[package.metadata.docs.rs]
all-features = true
rustdoc-args = ["--cfg", "docsrs"]