2023-01-02 00:57:33 +00:00
|
|
|
[package]
|
|
|
|
name = "dioxus-signals"
|
2024-02-21 22:30:13 +00:00
|
|
|
authors = ["Jonathan Kelley", "Evan Almloff"]
|
|
|
|
version = { workspace = true }
|
2024-01-19 03:27:55 +00:00
|
|
|
edition = "2021"
|
2023-12-14 18:29:32 +00:00
|
|
|
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"]
|
2024-07-27 00:24:40 +00:00
|
|
|
rust-version = "1.79.0"
|
2023-01-02 00:57:33 +00:00
|
|
|
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
|
|
|
|
[dependencies]
|
2023-06-19 19:29:11 +00:00
|
|
|
dioxus-core = { workspace = true }
|
2023-08-07 21:34:16 +00:00
|
|
|
generational-box = { workspace = true }
|
2023-09-06 22:47:33 +00:00
|
|
|
tracing = { workspace = true }
|
2023-08-11 00:17:25 +00:00
|
|
|
serde = { version = "1", features = ["derive"], optional = true }
|
2023-10-26 17:47:53 +00:00
|
|
|
parking_lot = "0.12.1"
|
|
|
|
once_cell = "1.18.0"
|
2024-01-18 12:07:28 +00:00
|
|
|
rustc-hash = { workspace = true }
|
|
|
|
futures-channel = { workspace = true }
|
|
|
|
futures-util = { workspace = true }
|
2024-08-01 03:37:39 +00:00
|
|
|
warnings = { workspace = true }
|
2023-08-07 18:52:54 +00:00
|
|
|
|
|
|
|
[dev-dependencies]
|
2024-02-07 17:31:13 +00:00
|
|
|
dioxus = { workspace = true }
|
2023-08-08 20:06:33 +00:00
|
|
|
tokio = { version = "1", features = ["full"] }
|
2023-11-07 15:26:12 +00:00
|
|
|
tracing-subscriber = "0.3.17"
|
2024-01-18 12:07:28 +00:00
|
|
|
simple_logger = "4.2.0"
|
2024-06-07 01:15:17 +00:00
|
|
|
reqwest = { workspace = true }
|
|
|
|
rand = "0.8"
|
2023-08-11 00:17:25 +00:00
|
|
|
|
|
|
|
[features]
|
|
|
|
default = []
|
2024-06-18 23:39:15 +00:00
|
|
|
serialize = ["dep:serde"]
|
2024-05-28 20:05:55 +00:00
|
|
|
|
|
|
|
[package.metadata.docs.rs]
|
|
|
|
cargo-args = ["-Zunstable-options", "-Zrustdoc-scrape-examples"]
|