mirror of
https://github.com/DioxusLabs/dioxus
synced 2024-11-29 23:50:20 +00:00
a6c025c8ef
* unify the warning system * fix VirtualDom::new warning with a component * move warnings to dioxuslabs * also allow writes in the component body when converting from T -> ReadOnlySignal<T> * fix clippy from merge conflict --------- Co-authored-by: Jonathan Kelley <jkelleyrtp@gmail.com>
40 lines
1.2 KiB
TOML
40 lines
1.2 KiB
TOML
[package]
|
|
name = "dioxus-signals"
|
|
authors = ["Jonathan Kelley", "Evan Almloff"]
|
|
version = { workspace = true }
|
|
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.64.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 }
|
|
warnings = { git = "https://github.com/DioxusLabs/warnings" }
|
|
|
|
[dev-dependencies]
|
|
dioxus = { workspace = true }
|
|
tokio = { version = "1", features = ["full"] }
|
|
tracing-subscriber = "0.3.17"
|
|
simple_logger = "4.2.0"
|
|
reqwest = { workspace = true }
|
|
rand = "0.8"
|
|
|
|
[features]
|
|
default = []
|
|
serialize = ["dep:serde"]
|
|
|
|
[package.metadata.docs.rs]
|
|
cargo-args = ["-Zunstable-options", "-Zrustdoc-scrape-examples"]
|