mirror of
https://github.com/DioxusLabs/dioxus
synced 2024-11-12 23:47:16 +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
40 lines
1.1 KiB
TOML
40 lines
1.1 KiB
TOML
[package]
|
|
name = "dioxus-signals"
|
|
authors = ["Jonathan Kelley", "Evan Almloff"]
|
|
version = { workspace = true }
|
|
edition = "2021"
|
|
description = "Signals for Dioxus"
|
|
license = "MIT OR Apache-2.0"
|
|
repository = "https://github.com/DioxusLabs/dioxus/"
|
|
homepage = "https://dioxuslabs.com"
|
|
keywords = ["dom", "ui", "gui", "react", "wasm"]
|
|
rust-version = "1.79.0"
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[dependencies]
|
|
dioxus-core = { workspace = true }
|
|
generational-box = { workspace = true }
|
|
tracing = { workspace = true }
|
|
serde = { version = "1", features = ["derive"], optional = true }
|
|
parking_lot = "0.12.1"
|
|
once_cell = "1.18.0"
|
|
rustc-hash = { workspace = true }
|
|
futures-channel = { workspace = true }
|
|
futures-util = { workspace = true }
|
|
warnings = { workspace = true }
|
|
|
|
[dev-dependencies]
|
|
dioxus = { workspace = true }
|
|
tokio = { version = "1", features = ["full"] }
|
|
tracing-subscriber = "0.3.17"
|
|
simple_logger = "4.2.0"
|
|
reqwest = { workspace = true }
|
|
rand = "0.8"
|
|
|
|
[features]
|
|
default = []
|
|
serialize = ["dep:serde"]
|
|
|
|
[package.metadata.docs.rs]
|
|
cargo-args = ["-Zunstable-options", "-Zrustdoc-scrape-examples"]
|