dioxus.toml 829 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. [application]
  2. # Web `build` & `serve` dist path
  3. out_dir = "dist"
  4. # resource (static) file folder
  5. asset_dir = "public"
  6. [web.wasm_opt]
  7. # The level wasm-opt should target. z is the smallest. 4 is the fastest.
  8. level = "4"
  9. [web.app]
  10. # HTML title tag content
  11. title = "Dioxus | An elegant GUI library for Rust"
  12. [web.watcher]
  13. index_on_404 = true
  14. watch_path = ["src", "examples"]
  15. [bundle]
  16. # Bundle identifier
  17. identifier = "io.github.{{project-name}}"
  18. # Bundle publisher
  19. publisher = "{{project-name}}"
  20. # Bundle icon
  21. icon = ["icons/icon.png"]
  22. # Bundle resources
  23. resources = ["public/*"]
  24. # Bundle copyright
  25. copyright = ""
  26. # Bundle category
  27. category = "Utility"
  28. # Bundle short description
  29. short_description = "An amazing dioxus application."
  30. # Bundle long description
  31. long_description = """
  32. An amazing dioxus application.
  33. """