dioxus/packages/signals/Cargo.toml

30 lines
818 B
TOML
Raw Normal View History

2023-01-02 00:57:33 +00:00
[package]
name = "dioxus-signals"
2023-08-01 00:30:18 +00:00
authors = ["Jonathan Kelley"]
version = "0.4.3"
2023-01-02 00:57:33 +00:00
edition = "2018"
2023-12-07 04:54:50 +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 }
generational-box = { workspace = true }
2023-09-06 22:47:33 +00:00
tracing = { workspace = true }
2023-08-07 18:52:54 +00:00
simple_logger = "4.2.0"
2023-08-11 00:17:25 +00:00
serde = { version = "1", features = ["derive"], optional = true }
2023-08-07 18:52:54 +00:00
[dev-dependencies]
dioxus = { workspace = true }
2023-08-08 01:20:03 +00:00
dioxus-desktop = { workspace = true }
tokio = { version = "1", features = ["full"] }
2023-08-11 00:17:25 +00:00
[features]
default = []
serialize = ["serde"]