2021-01-14 07:56:41 +00:00
|
|
|
[package]
|
|
|
|
name = "dioxus-hooks"
|
2023-08-01 01:49:54 +00:00
|
|
|
version = { workspace = true }
|
2021-12-15 21:04:27 +00:00
|
|
|
authors = ["Jonathan Kelley"]
|
2024-01-19 03:27:55 +00:00
|
|
|
edition = "2021"
|
2023-06-29 15:27:54 +00:00
|
|
|
description = "Basic useful hooks for Dioxus."
|
2023-07-20 17:00:07 +00:00
|
|
|
license = "MIT OR Apache-2.0"
|
2021-12-15 21:04:27 +00:00
|
|
|
repository = "https://github.com/DioxusLabs/dioxus/"
|
|
|
|
homepage = "https://dioxuslabs.com"
|
2023-01-10 16:16:11 +00:00
|
|
|
keywords = ["dom", "ui", "gui", "react"]
|
2023-07-08 16:04:27 +00:00
|
|
|
|
2023-07-13 18:12:28 +00:00
|
|
|
[features]
|
|
|
|
default = []
|
|
|
|
nightly-features = []
|
2021-01-14 07:56:41 +00:00
|
|
|
|
2021-01-22 20:50:16 +00:00
|
|
|
[dependencies]
|
2023-06-19 19:29:11 +00:00
|
|
|
dioxus-core = { workspace = true }
|
2024-01-16 01:04:39 +00:00
|
|
|
dioxus-signals = { workspace = true }
|
2023-06-19 19:29:11 +00:00
|
|
|
futures-channel = { workspace = true }
|
2023-09-06 22:47:33 +00:00
|
|
|
tracing = { workspace = true }
|
2023-07-11 19:41:52 +00:00
|
|
|
thiserror = { workspace = true }
|
2023-08-01 01:49:54 +00:00
|
|
|
slab = { workspace = true }
|
|
|
|
dioxus-debug-cell = "0.1.1"
|
2024-01-16 03:34:04 +00:00
|
|
|
futures-util = { workspace = true}
|
2022-01-26 07:29:42 +00:00
|
|
|
|
|
|
|
[dev-dependencies]
|
2023-06-19 19:29:11 +00:00
|
|
|
futures-util = { workspace = true, default-features = false }
|
|
|
|
dioxus-core = { workspace = true }
|
|
|
|
dioxus = { workspace = true }
|
2023-06-30 19:56:22 +00:00
|
|
|
web-sys = { version = "0.3.64", features = ["Document", "Window", "Element"] }
|
2024-02-14 15:33:22 +00:00
|
|
|
tokio = { version = "1.0", features = ["full"] }
|