Cargo.toml 885 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  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.69"
  11. # wasm-bindgen = "0.2.70"
  12. lazy_static = "1.4.0"
  13. wasm-bindgen-futures = "0.4.20"
  14. futures = "0.3.12"
  15. wasm-logger = "0.2.0"
  16. log = "0.4.14"
  17. fxhash = "0.2.1"
  18. # html-validation = { path = "../html-validation", version = "0.1.1" }
  19. [dependencies.web-sys]
  20. version = "0.3"
  21. features = [
  22. "Comment",
  23. "Document",
  24. "Element",
  25. "HtmlElement",
  26. "EventTarget",
  27. "HtmlCollection",
  28. "Node",
  29. "NodeList",
  30. "Text",
  31. "Window",
  32. "Event",
  33. "MouseEvent",
  34. "InputEvent",
  35. "DocumentType",
  36. ]
  37. [profile.release]
  38. debug = true
  39. [lib]
  40. crate-type = ["cdylib", "rlib"]