Cargo.toml 1.2 KB

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