mirror of
https://github.com/DioxusLabs/dioxus
synced 2024-11-10 14:44:12 +00:00
28 lines
800 B
TOML
28 lines
800 B
TOML
[package]
|
|
name = "dioxus-hooks"
|
|
version = { workspace = true }
|
|
authors = ["Jonathan Kelley"]
|
|
edition = "2018"
|
|
description = "Basic useful hooks for Dioxus."
|
|
license = "MIT OR Apache-2.0"
|
|
repository = "https://github.com/DioxusLabs/dioxus/"
|
|
homepage = "https://dioxuslabs.com"
|
|
keywords = ["dom", "ui", "gui", "react"]
|
|
|
|
[features]
|
|
default = []
|
|
nightly-features = []
|
|
|
|
[dependencies]
|
|
dioxus-core = { workspace = true }
|
|
futures-channel = { workspace = true }
|
|
tracing = { workspace = true }
|
|
thiserror = { workspace = true }
|
|
slab = { workspace = true }
|
|
dioxus-debug-cell = "0.1.1"
|
|
|
|
[dev-dependencies]
|
|
futures-util = { workspace = true, default-features = false }
|
|
dioxus-core = { workspace = true }
|
|
dioxus = { workspace = true }
|
|
web-sys = { version = "0.3.64", features = ["Document", "Window", "Element"] }
|