Cargo.toml 1.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  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. pretty_env_logger = "0.4.0"
  19. console_error_panic_hook = "0.1.6"
  20. generational-arena = "0.2.8"
  21. # html-validation = { path = "../html-validation", version = "0.1.1" }
  22. [dependencies.web-sys]
  23. version = "0.3"
  24. features = [
  25. "Comment",
  26. "Document",
  27. "Element",
  28. "HtmlElement",
  29. "HtmlInputElement",
  30. "EventTarget",
  31. "HtmlCollection",
  32. "Node",
  33. "NodeList",
  34. "Text",
  35. "Window",
  36. "Event",
  37. "MouseEvent",
  38. "InputEvent",
  39. "DocumentType",
  40. "CharacterData",
  41. "HtmlOptionElement",
  42. ]
  43. [profile.release]
  44. debug = true
  45. [lib]
  46. crate-type = ["cdylib", "rlib"]