Cargo.toml 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243
  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. [dev-dependencies]
  25. futures-util = "0.3.21"
  26. log = "0.4.14"
  27. rand = { version = "0.8.4", features = ["small_rng"] }
  28. criterion = "0.3.5"
  29. thiserror = "1.0.30"
  30. env_logger = "0.9.0"
  31. dioxus-edit-stream = { path = "../edit-stream" }
  32. [[bench]]
  33. name = "create"
  34. harness = false
  35. [[bench]]
  36. name = "jsframework"
  37. harness = false