Cargo.toml 1.0 KB

1234567891011121314151617181920212223242526272829303132333435
  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 }
  26. tokio = { version = "1", features = ["full"] }
  27. tracing-subscriber = "0.3.17"
  28. simple_logger = "4.2.0"
  29. [features]
  30. default = []
  31. serialize = ["serde"]