dioxus/packages/hooks/Cargo.toml

29 lines
917 B
TOML
Raw Normal View History

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"
description = "Basic useful hooks for Dioxus."
license = "MIT OR Apache-2.0"
2021-12-15 16:04:27 -05:00
repository = "https://github.com/DioxusLabs/dioxus/"
homepage = "https://dioxuslabs.com"
keywords = ["dom", "ui", "gui", "react"]
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 }
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"] }