Cargo.toml 788 B

1234567891011121314151617181920212223242526272829303132333435363738
  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. fxhash = "0.2.1"
  17. # html-validation = { path = "../html-validation", version = "0.1.1" }
  18. [dependencies.web-sys]
  19. version = "0.3"
  20. features = [
  21. "Comment",
  22. "Document",
  23. "Element",
  24. "HtmlElement",
  25. "EventTarget",
  26. "HtmlCollection",
  27. "Node",
  28. "NodeList",
  29. "Text",
  30. "Window",
  31. "Event",
  32. "MouseEvent",
  33. "InputEvent",
  34. "DocumentType",
  35. ]