mirror of
https://github.com/leptos-rs/leptos
synced 2024-11-10 06:44:17 +00:00
27 lines
761 B
TOML
27 lines
761 B
TOML
[package]
|
|
name = "hydration_context"
|
|
edition = "2021"
|
|
version = "0.2.0-beta"
|
|
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
|
|
|
|
[dependencies]
|
|
throw_error = { workspace = true }
|
|
or_poisoned = { workspace = true }
|
|
futures = "0.3"
|
|
serde = { version = "1", features = ["derive"] }
|
|
wasm-bindgen = { version = "0.2", optional = true }
|
|
js-sys = { version = "0.3", optional = true }
|
|
once_cell = "1.19.0"
|
|
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"]
|