2023-01-02 00:57:33 +00:00
|
|
|
[package]
|
|
|
|
name = "dioxus-signals"
|
2023-08-01 00:30:18 +00:00
|
|
|
authors = ["Jonathan Kelley"]
|
2023-12-14 18:29:32 +00:00
|
|
|
version = "0.4.3"
|
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"]
|
|
|
|
rust-version = "1.60.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 }
|
2023-08-07 18:52:54 +00:00
|
|
|
|
|
|
|
[dev-dependencies]
|
|
|
|
dioxus = { workspace = true }
|
2024-01-19 22:19:49 +00:00
|
|
|
# dioxus-desktop = { 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"
|
2023-08-11 00:17:25 +00:00
|
|
|
|
|
|
|
[features]
|
|
|
|
default = []
|
2023-11-07 00:47:51 +00:00
|
|
|
serialize = ["serde"]
|