Cargo.toml 1.1 KB

123456789101112131415161718192021222324252627282930313233343536
  1. [package]
  2. name = "dioxus-signals"
  3. authors = ["Jonathan Kelley"]
  4. version = "0.4.3"
  5. edition = "2021"
  6. description = "Signals for Dioxus"
  7. license = "MIT OR Apache-2.0"
  8. repository = "https://github.com/DioxusLabs/dioxus/"
  9. homepage = "https://dioxuslabs.com"
  10. keywords = ["dom", "ui", "gui", "react", "wasm"]
  11. rust-version = "1.60.0"
  12. # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
  13. [dependencies]
  14. dioxus-core = { workspace = true }
  15. generational-box = { workspace = true }
  16. tracing = { workspace = true }
  17. serde = { version = "1", features = ["derive"], optional = true }
  18. parking_lot = "0.12.1"
  19. once_cell = "1.18.0"
  20. rustc-hash = { workspace = true }
  21. futures-channel = { workspace = true }
  22. futures-util = { workspace = true }
  23. flume = { version = "0.11.0", default-features = false, features = ["async"] }
  24. [dev-dependencies]
  25. dioxus = { workspace = true, features = ["desktop"]}
  26. # dioxus-desktop = { workspace = true }
  27. tokio = { version = "1", features = ["full"] }
  28. tracing-subscriber = "0.3.17"
  29. simple_logger = "4.2.0"
  30. [features]
  31. default = []
  32. serialize = ["serde"]