Cargo.toml 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. [package]
  2. name = "dioxus"
  3. version = "0.3.1"
  4. authors = ["Jonathan Kelley", "Dioxus Labs", "ealmloff"]
  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.65.0"
  13. [dependencies]
  14. dioxus-core = { path = "../core", version = "^0.3.0" }
  15. dioxus-html = { path = "../html", version = "^0.3.0", optional = true }
  16. dioxus-core-macro = { path = "../core-macro", version = "^0.3.0", optional = true }
  17. dioxus-hooks = { path = "../hooks", version = "^0.3.0", optional = true }
  18. dioxus-rsx = { path = "../rsx", version = "0.0.2", optional = true }
  19. dioxus-hot-reload = { path = "../hot-reload", version = "0.1.0", optional = true }
  20. [features]
  21. default = ["macro", "hooks", "html", "hot-reload"]
  22. macro = ["dioxus-core-macro", "dioxus-rsx"]
  23. html = ["dioxus-html"]
  24. hooks = ["dioxus-hooks"]
  25. hot-reload = ["dioxus-hot-reload"]
  26. [dev-dependencies]
  27. futures-util = "0.3.21"
  28. log = "0.4.14"
  29. rand = { version = "0.8.4", features = ["small_rng"] }
  30. criterion = "0.3.5"
  31. thiserror = "1.0.30"
  32. env_logger = "0.9.0"
  33. tokio = { version = "1.21.2", features = ["full"] }
  34. # dioxus-edit-stream = { path = "../edit-stream" }
  35. [[bench]]
  36. name = "jsframework"
  37. harness = false