2024-02-05 01:56:29 +00:00
|
|
|
[package]
|
|
|
|
name = "hydration_context"
|
|
|
|
edition = "2021"
|
|
|
|
version.workspace = true
|
|
|
|
|
|
|
|
[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 }
|
|
|
|
futures = "0.3"
|
|
|
|
serde = { version = "1", features = ["derive"] }
|
|
|
|
wasm-bindgen = { version = "0.2", optional = true }
|
|
|
|
js-sys = { version = "0.3", optional = true }
|
2024-04-18 01:29:14 +00:00
|
|
|
once_cell = "1.19.0"
|
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"]
|