mirror of
https://github.com/leptos-rs/leptos
synced 2024-11-10 14:54:16 +00:00
73 lines
1.6 KiB
TOML
73 lines
1.6 KiB
TOML
[package]
|
|
name = "leptos_dom"
|
|
version = "0.0.18"
|
|
edition = "2021"
|
|
authors = ["Greg Johnston"]
|
|
license = "MIT"
|
|
repository = "https://github.com/gbj/leptos"
|
|
description = "DOM operations for the Leptos web framework."
|
|
|
|
[dependencies]
|
|
cfg-if = "1"
|
|
educe = "0.4"
|
|
futures = "0.3"
|
|
gloo = "0.8"
|
|
html-escape = "0.2"
|
|
indexmap = "1.9"
|
|
itertools = "0.10"
|
|
js-sys = "0.3"
|
|
leptos_reactive = { path = "../leptos_reactive", default-features = false, version = "0.0.18" }
|
|
pad-adapter = "0.1"
|
|
paste = "1"
|
|
rustc-hash = "1.1.0"
|
|
serde_json = "1"
|
|
smallvec = "1"
|
|
tracing = "0.1"
|
|
typed-builder = "0.11"
|
|
wasm-bindgen = { version = "0.2", features = ["enable-interning"] }
|
|
wasm-bindgen-futures = "0.4.31"
|
|
|
|
[dev-dependencies]
|
|
leptos = { path = "../leptos", default-features = false, version = "0.0.18" }
|
|
|
|
[dependencies.web-sys]
|
|
version = "0.3"
|
|
features = [
|
|
"Comment",
|
|
"DomTokenList",
|
|
"Range",
|
|
"Text",
|
|
|
|
# Events we cast to in leptos_macro -- added here so we don't force users to import them
|
|
"AnimationEvent",
|
|
"BeforeUnloadEvent",
|
|
"ClipboardEvent",
|
|
"CompositionEvent",
|
|
"DeviceMotionEvent",
|
|
"DeviceOrientationEvent",
|
|
"DragEvent",
|
|
"FocusEvent",
|
|
"GamepadEvent",
|
|
"HashChangeEvent",
|
|
"InputEvent",
|
|
"KeyboardEvent",
|
|
"MouseEvent",
|
|
"PageTransitionEvent",
|
|
"PointerEvent",
|
|
"PopStateEvent",
|
|
"ProgressEvent",
|
|
"PromiseRejectionEvent",
|
|
"SecurityPolicyViolationEvent",
|
|
"StorageEvent",
|
|
"SubmitEvent",
|
|
"TouchEvent",
|
|
"TransitionEvent",
|
|
"UiEvent",
|
|
"WheelEvent",
|
|
]
|
|
|
|
[features]
|
|
default = []
|
|
web = ["leptos_reactive/csr", "leptos/csr"]
|
|
ssr = ["leptos_reactive/ssr", "leptos/ssr"]
|
|
stable = ["leptos_reactive/stable"]
|