mirror of
https://github.com/leptos-rs/leptos
synced 2024-11-10 14:54:16 +00:00
29 lines
768 B
TOML
29 lines
768 B
TOML
[package]
|
|
name = "leptos_meta"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
authors = ["Greg Johnston"]
|
|
license = "MIT"
|
|
repository = "https://github.com/gbj/leptos"
|
|
description = "Tools to set HTML metadata in the Leptos web framework."
|
|
|
|
[dependencies]
|
|
cfg-if = "1"
|
|
leptos = { workspace = true }
|
|
tracing = "0.1"
|
|
typed-builder = "0.11"
|
|
|
|
[dependencies.web-sys]
|
|
version = "0.3"
|
|
features = ["HtmlLinkElement", "HtmlMetaElement", "HtmlTitleElement"]
|
|
|
|
[features]
|
|
default = []
|
|
csr = ["leptos/csr", "leptos/tracing"]
|
|
hydrate = ["leptos/hydrate", "leptos/tracing"]
|
|
ssr = ["leptos/ssr", "leptos/tracing"]
|
|
stable = ["leptos/stable", "leptos/tracing"]
|
|
|
|
[package.metadata.cargo-all-features]
|
|
denylist = ["stable"]
|
|
skip_feature_sets = [["csr", "ssr"], ["csr", "hydrate"], ["ssr", "hydrate"]]
|