dioxus/packages/hooks/Cargo.toml

23 lines
744 B
TOML
Raw Normal View History

2021-01-14 07:56:41 +00:00
[package]
name = "dioxus-hooks"
version = "0.2.1"
2021-12-15 21:04:27 +00:00
authors = ["Jonathan Kelley"]
2021-01-14 07:56:41 +00:00
edition = "2018"
2022-01-03 07:21:56 +00:00
description = "Dioxus VirtualDOM renderer for a remote webview instance"
license = "MIT/Apache-2.0"
2021-12-15 21:04:27 +00:00
repository = "https://github.com/DioxusLabs/dioxus/"
homepage = "https://dioxuslabs.com"
documentation = "https://dioxuslabs.com"
2021-12-15 21:06:13 +00:00
keywords = ["dom", "ui", "gui", "react", "wasm"]
2021-01-14 07:56:41 +00:00
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
2021-01-22 20:50:16 +00:00
[dependencies]
dioxus-core = { path = "../../packages/core", version = "^0.2.1" }
2022-02-21 05:37:46 +00:00
futures-channel = "0.3.21"
log = "0.4"
2022-01-26 07:29:42 +00:00
[dev-dependencies]
futures-util = { version = "0.3", default-features = false }
dioxus-core = { path = "../../packages/core", version = "^0.2.1" }