2021-01-14 02:56:41 -05:00
[ package ]
name = "dioxus-hooks"
2023-05-18 13:42:15 +02:00
version = "0.3.1"
2021-12-15 16:04:27 -05:00
authors = [ "Jonathan Kelley" ]
2021-01-14 02:56:41 -05:00
edition = "2018"
2023-06-29 17:27:54 +02:00
description = "Basic useful hooks for Dioxus."
2023-07-20 18:00:07 +01:00
license = "MIT OR Apache-2.0"
2021-12-15 16:04:27 -05:00
repository = "https://github.com/DioxusLabs/dioxus/"
homepage = "https://dioxuslabs.com"
2023-01-10 10:16:11 -06:00
keywords = [ "dom" , "ui" , "gui" , "react" ]
2023-07-08 18:04:27 +02:00
2023-07-13 20:12:28 +02:00
[ features ]
default = [ ]
nightly-features = [ ]
2021-01-14 02:56:41 -05:00
2021-01-22 15:50:16 -05:00
[ dependencies ]
2023-06-19 14:29:11 -05:00
dioxus-core = { workspace = true }
futures-channel = { workspace = true }
log = { workspace = true }
2023-07-11 21:41:52 +02:00
thiserror = { workspace = true }
2023-07-13 20:12:28 +02:00
debug-cell = { git = "https://github.com/Niedzwiedzw/debug-cell" , rev = "3352a1f8aff19f56f5e3b2018200a3338fd43d2e" } # waiting for the merge / official DioxusLabs fork
2023-07-20 11:07:55 -07:00
slab . workspace = true
2022-01-26 02:29:42 -05:00
[ dev-dependencies ]
2023-06-19 14:29:11 -05:00
futures-util = { workspace = true , default-features = false }
dioxus-core = { workspace = true }
dioxus = { workspace = true }
2023-06-30 12:56:22 -07:00
web-sys = { version = "0.3.64" , features = [ "Document" , "Window" , "Element" ] }