23 lines
759 B
TOML
23 lines
759 B
TOML
[package]
|
|
name = "leptos_integration_utils"
|
|
authors = ["Greg Johnston"]
|
|
license = "MIT"
|
|
repository = "https://github.com/leptos-rs/leptos"
|
|
description = "Utilities to help build server integrations for the Leptos web framework."
|
|
version = { workspace = true }
|
|
rust-version.workspace = true
|
|
edition.workspace = true
|
|
|
|
[dependencies]
|
|
futures = "0.3.30"
|
|
hydration_context = { workspace = true }
|
|
leptos = { workspace = true, features = ["nonce"] }
|
|
leptos_meta = { workspace = true, features = ["ssr"] }
|
|
leptos_router = { workspace = true, features = ["ssr"] }
|
|
leptos_config = { workspace = true }
|
|
reactive_graph = { workspace = true, features = ["sandboxed-arenas"] }
|
|
tracing = "0.1.40"
|
|
|
|
[package.metadata.docs.rs]
|
|
rustdoc-args = ["--generate-link-to-definition"]
|