2023-05-12 20:22:16 +01:00
|
|
|
[package]
|
|
|
|
name = "leptos-use"
|
2023-06-02 13:38:01 +01:00
|
|
|
version = "0.1.4"
|
2023-05-12 20:22:16 +01:00
|
|
|
edition = "2021"
|
|
|
|
authors = ["Marc-Stefan Cassola"]
|
|
|
|
categories = ["gui", "web-programming"]
|
|
|
|
description = "Collection of essential Leptos utilities inspired by SolidJS USE / VueUse"
|
|
|
|
exclude = ["examples/", "tests/"]
|
|
|
|
keywords = ["leptos", "utilities"]
|
|
|
|
license = "MIT OR Apache-2.0"
|
2023-05-13 23:05:08 +01:00
|
|
|
readme = "README.md"
|
2023-05-12 20:22:16 +01:00
|
|
|
repository = "https://github.com/Synphonyte/leptos-use"
|
|
|
|
|
|
|
|
|
|
|
|
[dependencies]
|
2023-05-28 17:58:35 +01:00
|
|
|
leptos = "0.3.0"
|
|
|
|
wasm-bindgen = "0.2.86"
|
|
|
|
js-sys = "0.3.63"
|
2023-06-02 13:38:01 +01:00
|
|
|
default-struct-builder = "0.2.0"
|
2023-06-03 05:25:45 +01:00
|
|
|
num = { version = "0.4.0", optional = true }
|
2023-05-28 17:42:16 +01:00
|
|
|
|
2023-05-29 01:52:03 +01:00
|
|
|
[dependencies.web-sys]
|
|
|
|
version = "0.3.63"
|
|
|
|
features = [
|
|
|
|
"CssStyleDeclaration",
|
2023-06-02 13:38:01 +01:00
|
|
|
"DomRectReadOnly",
|
|
|
|
"MouseEvent",
|
|
|
|
"Navigator",
|
2023-05-29 01:52:03 +01:00
|
|
|
"ResizeObserver",
|
|
|
|
"ResizeObserverBoxOptions",
|
|
|
|
"ResizeObserverEntry",
|
2023-06-02 13:38:01 +01:00
|
|
|
"ResizeObserverOptions",
|
|
|
|
"ResizeObserverSize",
|
|
|
|
"ScrollBehavior",
|
|
|
|
"ScrollToOptions",
|
|
|
|
"Touch",
|
|
|
|
"TouchEvent",
|
|
|
|
"TouchList",
|
2023-05-29 01:52:03 +01:00
|
|
|
]
|
|
|
|
|
2023-05-28 17:42:16 +01:00
|
|
|
[features]
|
2023-06-03 05:25:45 +01:00
|
|
|
docs = []
|
|
|
|
math = ["num"]
|