Cargo.toml 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657
  1. [package]
  2. name = "dioxus-web"
  3. version = "0.0.0"
  4. authors = ["Jonathan Kelley <jkelleyrtp@gmail.com>"]
  5. edition = "2018"
  6. description = "Dioxus VirtualDOM renderer for the web browser using websys"
  7. license = "MIT/Apache-2.0"
  8. # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
  9. [dependencies]
  10. dioxus-core = { path = "../core", version = "0.1.2" }
  11. js-sys = "0.3"
  12. wasm-bindgen = "0.2.71"
  13. # wasm-bindgen = "0.2.70"
  14. lazy_static = "1.4.0"
  15. wasm-bindgen-futures = "0.4.20"
  16. # futures = "0.3.12"
  17. wasm-logger = "0.2.0"
  18. log = "0.4.14"
  19. fxhash = "0.2.1"
  20. pretty_env_logger = "0.4.0"
  21. console_error_panic_hook = "0.1.6"
  22. generational-arena = "0.2.8"
  23. wasm-bindgen-test = "0.3.21"
  24. once_cell = "1.7.2"
  25. # html-validation = { path = "../html-validation", version = "0.1.1" }
  26. async-channel = "1.6.1"
  27. # futures-lite = "1.11.3"
  28. [dependencies.web-sys]
  29. version = "0.3"
  30. features = [
  31. "Comment",
  32. "Document",
  33. "Element",
  34. "HtmlElement",
  35. "HtmlInputElement",
  36. "EventTarget",
  37. "HtmlCollection",
  38. "Node",
  39. "NodeList",
  40. "Text",
  41. "Window",
  42. "Event",
  43. "MouseEvent",
  44. "InputEvent",
  45. "DocumentType",
  46. "CharacterData",
  47. "HtmlOptionElement",
  48. ]
  49. [profile.release]
  50. debug = true
  51. [lib]
  52. crate-type = ["cdylib", "rlib"]