2024-02-05 01:56:29 +00:00
|
|
|
[package]
|
|
|
|
name = "hydration_context"
|
2024-08-31 14:35:46 +00:00
|
|
|
version = "0.2.0-beta4"
|
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
|
2024-08-12 23:25:47 +00:00
|
|
|
edition.workspace = true
|
2024-02-05 01:56:29 +00:00
|
|
|
|
|
|
|
[dependencies]
|
2024-04-27 15:08:10 +00:00
|
|
|
throw_error = { workspace = true }
|
2024-02-05 01:56:29 +00:00
|
|
|
or_poisoned = { workspace = true }
|
2024-08-11 00:01:41 +00:00
|
|
|
futures = "0.3.30"
|
|
|
|
serde = { version = "1.0", features = ["derive"] }
|
2024-08-13 22:21:57 +00:00
|
|
|
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"
|
2024-06-14 22:01:35 +00:00
|
|
|
pin-project-lite = "0.2.14"
|
2024-02-05 01:56:29 +00:00
|
|
|
|
|
|
|
[features]
|
|
|
|
browser = ["dep:wasm-bindgen", "dep:js-sys"]
|
|
|
|
|
|
|
|
[package.metadata.docs.rs]
|
|
|
|
all-features = true
|
|
|
|
rustdoc-args = ["--cfg", "docsrs"]
|