Cargo.toml 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041
  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.60.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. [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. tokio = { version = "1.21.2", features = ["full"] }
  32. # dioxus-edit-stream = { path = "../edit-stream" }
  33. [[bench]]
  34. name = "jsframework"
  35. harness = false