mirror of
https://github.com/DioxusLabs/dioxus
synced 2024-11-10 06:34:20 +00:00
0cbcef735f
* CI: add docsrs to ci * add env vars * no need for tokio things * whoops, wrong rust nightly * add swc * bump crate versions to 0.6.0-alpha.0 * hoist up warnings and shuffle cargo.toml * update cargos and disable warnings from ci * attempt fix of aws * attempt disabling aws_lc_sys globally * pull in lc-sys * add fips feature to fix docs * turn on features for aws-lc-sys on cargo-doc-all * pass along more args * fix cfg docs * fix: flakey gen box test * fix: doc_cfg in static gen * dont include readme * fix error on static gen * remove random line * temporarily disable warnings * simplify axum desktop so it doesnt count as a lib * fix binstall link * bump locks * lock fixes * revert axum desktop * dont publish some crates
36 lines
1 KiB
TOML
36 lines
1 KiB
TOML
[package]
|
|
name = "dioxus-hooks"
|
|
version = { workspace = true }
|
|
authors = ["Jonathan Kelley"]
|
|
edition = "2021"
|
|
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 }
|
|
dioxus-signals = { workspace = true }
|
|
futures-channel = { workspace = true }
|
|
tracing = { workspace = true }
|
|
slab = { workspace = true }
|
|
futures-util = { workspace = true}
|
|
generational-box.workspace = true
|
|
rustversion = "1.0.17"
|
|
warnings = { workspace = true }
|
|
|
|
[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"] }
|
|
tokio = { version = "1.0", features = ["full"] }
|
|
reqwest = { workspace = true }
|
|
|
|
[package.metadata.docs.rs]
|
|
cargo-args = ["-Zunstable-options", "-Zrustdoc-scrape-examples"]
|