mirror of
https://github.com/DioxusLabs/dioxus
synced 2024-11-10 14:44:12 +00:00
35 lines
1 KiB
TOML
35 lines
1 KiB
TOML
[package]
|
|
name = "dioxus-signals"
|
|
authors = ["Jonathan Kelley"]
|
|
version = "0.4.3"
|
|
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.60.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 }
|
|
flume = { version = "0.11.0", default-features = false, features = ["async"] }
|
|
|
|
[dev-dependencies]
|
|
dioxus = { workspace = true }
|
|
tokio = { version = "1", features = ["full"] }
|
|
tracing-subscriber = "0.3.17"
|
|
simple_logger = "4.2.0"
|
|
|
|
[features]
|
|
default = []
|
|
serialize = ["serde"]
|