2023-01-01 19:57:33 -05:00
|
|
|
[package]
|
|
|
|
name = "dioxus-signals"
|
2023-07-31 17:30:18 -07:00
|
|
|
authors = ["Jonathan Kelley"]
|
2023-01-01 19:57:33 -05:00
|
|
|
version = "0.0.0"
|
|
|
|
edition = "2018"
|
|
|
|
|
|
|
|
# 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-07 11:52:54 -07:00
|
|
|
simple_logger = "4.2.0"
|
2023-08-10 17:17:25 -07:00
|
|
|
serde = { version = "1", features = ["derive"], optional = true }
|
2023-08-07 11:52:54 -07:00
|
|
|
|
|
|
|
[dev-dependencies]
|
|
|
|
dioxus = { workspace = true }
|
2023-08-07 18:20:03 -07:00
|
|
|
dioxus-desktop = { workspace = true }
|
2023-08-08 13:06:33 -07:00
|
|
|
tokio = { version = "1", features = ["full"] }
|
2023-08-10 17:17:25 -07:00
|
|
|
|
|
|
|
[features]
|
|
|
|
default = []
|
|
|
|
serialize = ["serde"]
|