2023-01-01 19:57:33 -05:00
|
|
|
[package]
|
|
|
|
name = "dioxus-signals"
|
2023-07-31 17:30:18 -07:00
|
|
|
authors = ["Jonathan Kelley"]
|
2023-12-14 12:29:32 -06:00
|
|
|
version = "0.4.3"
|
2024-01-18 19:27:55 -08:00
|
|
|
edition = "2021"
|
2023-12-14 12:29:32 -06: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"]
|
|
|
|
rust-version = "1.60.0"
|
2023-01-01 19:57:33 -05:00
|
|
|
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
|
|
|
|
[dependencies]
|
2023-06-19 14:29:11 -05:00
|
|
|
dioxus-core = { workspace = true }
|
2023-08-07 14:34:16 -07:00
|
|
|
generational-box = { workspace = true }
|
2023-09-06 17:47:33 -05:00
|
|
|
tracing = { workspace = true }
|
2023-08-10 17:17:25 -07:00
|
|
|
serde = { version = "1", features = ["derive"], optional = true }
|
2023-10-26 12:47:53 -05:00
|
|
|
parking_lot = "0.12.1"
|
|
|
|
once_cell = "1.18.0"
|
2024-01-18 04:07:28 -08:00
|
|
|
rustc-hash = { workspace = true }
|
|
|
|
futures-channel = { workspace = true }
|
|
|
|
futures-util = { workspace = true }
|
2023-08-07 11:52:54 -07:00
|
|
|
|
|
|
|
[dev-dependencies]
|
|
|
|
dioxus = { workspace = true }
|
2024-01-19 14:19:49 -08:00
|
|
|
# dioxus-desktop = { workspace = true }
|
2023-08-08 13:06:33 -07:00
|
|
|
tokio = { version = "1", features = ["full"] }
|
2023-11-07 09:26:12 -06:00
|
|
|
tracing-subscriber = "0.3.17"
|
2024-01-18 04:07:28 -08:00
|
|
|
simple_logger = "4.2.0"
|
2023-08-10 17:17:25 -07:00
|
|
|
|
|
|
|
[features]
|
|
|
|
default = []
|
2023-11-06 18:47:51 -06:00
|
|
|
serialize = ["serde"]
|