Cargo.toml 751 B

123456789101112131415161718192021222324252627282930313233343536
  1. [package]
  2. name = "dioxus-web"
  3. version = "0.0.0"
  4. authors = ["Jonathan Kelley <jkelleyrtp@gmail.com>"]
  5. edition = "2018"
  6. # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
  7. [dependencies]
  8. dioxus-core = { path = "../core" }
  9. js-sys = "0.3"
  10. wasm-bindgen = "0.2.70"
  11. lazy_static = "1.4.0"
  12. wasm-bindgen-futures = "0.4.20"
  13. futures = "0.3.12"
  14. wasm-logger = "0.2.0"
  15. log = "0.4.14"
  16. # html-validation = { path = "../html-validation", version = "0.1.1" }
  17. [dependencies.web-sys]
  18. version = "0.3"
  19. features = [
  20. "Comment",
  21. "Document",
  22. "Element",
  23. "HtmlElement",
  24. "EventTarget",
  25. "HtmlCollection",
  26. "Node",
  27. "NodeList",
  28. "Text",
  29. "Window",
  30. "Event",
  31. "MouseEvent",
  32. "InputEvent",
  33. ]