Cargo.toml 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940
  1. [package]
  2. name = "dioxus-native-dom"
  3. version = { workspace = true }
  4. authors = ["Jonathan Kelley", "Nico Burns"]
  5. edition = "2021"
  6. description = "Core headless native renderer for Dioxus based on blitz"
  7. license = "MIT OR Apache-2.0"
  8. repository = "https://github.com/DioxusLabs/dioxus/"
  9. homepage = "https://dioxuslabs.com/learn/0.6/getting_started"
  10. keywords = ["dom", "ui", "gui", "react"]
  11. [features]
  12. default = ["accessibility", "tracing", "svg", "system-fonts"]
  13. svg = ["blitz-dom/svg"]
  14. accessibility = ["blitz-dom/accessibility"]
  15. tracing = ["dep:tracing", "blitz-dom/tracing"]
  16. system-fonts = ["blitz-dom/system_fonts"]
  17. autofocus = []
  18. [dependencies]
  19. # Blitz dependencies
  20. blitz-dom = { path = "../../../blitz/packages/blitz-dom", default-features = false }
  21. blitz-traits = { path = "../../../blitz/packages/blitz-traits" }
  22. # DioxusLabs dependencies
  23. dioxus-core = { workspace = true }
  24. dioxus-html = { workspace = true }
  25. # Windowing & Input
  26. keyboard-types = { workspace = true }
  27. # Other dependencies
  28. tracing = { workspace = true, optional = true }
  29. rustc-hash = { workspace = true }
  30. futures-util = { workspace = true }
  31. [package.metadata.docs.rs]
  32. all-features = true
  33. rustdoc-args = ["--cfg", "docsrs"]