Cargo.toml 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. [package]
  2. name = "dioxus"
  3. version = "0.2.4"
  4. authors = ["Jonathan Kelley"]
  5. edition = "2021"
  6. description = "Core functionality for Dioxus - a concurrent renderer-agnostic Virtual DOM for interactive user experiences"
  7. license = "MIT OR Apache-2.0"
  8. repository = "https://github.com/DioxusLabs/dioxus/"
  9. homepage = "https://dioxuslabs.com"
  10. documentation = "https://dioxuslabs.com"
  11. keywords = ["dom", "ui", "gui", "react", "wasm"]
  12. rust-version = "1.60.0"
  13. [dependencies]
  14. dioxus-core = { path = "../core", version = "^0.2.1" }
  15. dioxus-html = { path = "../html", version = "^0.2.1", optional = true }
  16. dioxus-core-macro = { path = "../core-macro", version = "^0.2.1", optional = true }
  17. dioxus-hooks = { path = "../hooks", version = "^0.2.1", optional = true }
  18. dioxus-rsx = { path = "../rsx", optional = true }
  19. [features]
  20. default = ["macro", "hooks", "html"]
  21. macro = ["dioxus-core-macro", "dioxus-rsx"]
  22. html = ["dioxus-html"]
  23. hooks = ["dioxus-hooks"]
  24. hot-reload = [
  25. "dioxus-core/hot-reload",
  26. ]
  27. [dev-dependencies]
  28. futures-util = "0.3.21"
  29. log = "0.4.14"
  30. rand = { version = "0.8.4", features = ["small_rng"] }
  31. criterion = "0.3.5"
  32. thiserror = "1.0.30"
  33. env_logger = "0.9.0"
  34. [[bench]]
  35. name = "create"
  36. harness = false
  37. [[bench]]
  38. name = "jsframework"
  39. harness = false