dioxus/packages/signals/Cargo.toml

41 lines
1.1 KiB
TOML
Raw Normal View History

2023-01-02 00:57:33 +00:00
[package]
name = "dioxus-signals"
authors = ["Jonathan Kelley", "Evan Almloff"]
version = { workspace = true }
2024-01-19 03:27:55 +00:00
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"
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 }
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 }
warnings = { workspace = true }
2023-08-07 18:52:54 +00:00
[dev-dependencies]
2024-02-07 17:31:13 +00:00
dioxus = { workspace = true }
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"
reqwest = { workspace = true }
rand = "0.8"
2023-08-11 00:17:25 +00:00
[features]
default = []
serialize = ["dep:serde"]
[package.metadata.docs.rs]
cargo-args = ["-Zunstable-options", "-Zrustdoc-scrape-examples"]