mirror of
https://github.com/leptos-rs/leptos
synced 2024-11-10 06:44:17 +00:00
34 lines
822 B
TOML
34 lines
822 B
TOML
[package]
|
|
name = "leptos_meta"
|
|
version = "0.7.0-beta3"
|
|
authors = ["Greg Johnston"]
|
|
license = "MIT"
|
|
repository = "https://github.com/leptos-rs/leptos"
|
|
description = "Tools to set HTML metadata in the Leptos web framework."
|
|
rust-version.workspace = true
|
|
edition.workspace = true
|
|
|
|
[dependencies]
|
|
leptos = { workspace = true }
|
|
once_cell = "1.19"
|
|
or_poisoned = { workspace = true }
|
|
indexmap = "2.3"
|
|
send_wrapper = "0.6.0"
|
|
tracing = { version = "0.1.40", optional = true }
|
|
wasm-bindgen = "0.2.93"
|
|
futures = "0.3.30"
|
|
|
|
[dependencies.web-sys]
|
|
version = "0.3.70"
|
|
features = ["HtmlLinkElement", "HtmlMetaElement", "HtmlTitleElement"]
|
|
|
|
[features]
|
|
default = []
|
|
ssr = []
|
|
tracing = ["dep:tracing"]
|
|
|
|
[package.metadata.docs.rs]
|
|
rustdoc-args = ["--generate-link-to-definition"]
|
|
|
|
[package.metadata.cargo-all-features]
|
|
denylist = ["tracing"]
|