Cargo.toml 2.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788
  1. [package]
  2. name = "dioxus-web"
  3. version = "0.0.2"
  4. authors = ["Jonathan Kelley"]
  5. edition = "2018"
  6. description = "Dioxus VirtualDOM renderer for the web browser using websys"
  7. license = "MIT/Apache-2.0"
  8. repository = "https://github.com/DioxusLabs/dioxus/"
  9. homepage = "https://dioxuslabs.com"
  10. documentation = "https://dioxuslabs.com"
  11. keywords = ["dom", "ui", "gui", "react", "wasm"]
  12. [dependencies]
  13. dioxus-core = { path = "../core", version = "^0.1.4" }
  14. dioxus-html = { path = "../html", version = "^0.1.1" }
  15. js-sys = "0.3"
  16. wasm-bindgen = { version = "0.2.78", features = ["enable-interning"] }
  17. lazy_static = "1.4.0"
  18. wasm-bindgen-futures = "0.4.20"
  19. log = { version = "0.4.14", features = ["release_max_level_off"] }
  20. fxhash = "0.2.1"
  21. wasm-logger = "0.2.0"
  22. console_error_panic_hook = "0.1.6"
  23. wasm-bindgen-test = "0.3.21"
  24. once_cell = "1.8"
  25. async-channel = "1.6.1"
  26. anyhow = "1.0"
  27. gloo-timers = { version = "0.2.1", features = ["futures"] }
  28. futures-util = "0.3.15"
  29. smallstr = "0.2.0"
  30. [dependencies.web-sys]
  31. version = "0.3.51"
  32. features = [
  33. "Comment",
  34. "Attr",
  35. "Document",
  36. "Element",
  37. "CssStyleDeclaration",
  38. "HtmlElement",
  39. "HtmlInputElement",
  40. "HtmlSelectElement",
  41. "HtmlTextAreaElement",
  42. "EventTarget",
  43. "HtmlCollection",
  44. "Node",
  45. "NodeList",
  46. "Text",
  47. "Window",
  48. "Event",
  49. "MouseEvent",
  50. "InputEvent",
  51. "ClipboardEvent",
  52. "NamedNodeMap",
  53. "KeyboardEvent",
  54. "TouchEvent",
  55. "WheelEvent",
  56. "AnimationEvent",
  57. "TransitionEvent",
  58. "PointerEvent",
  59. "FocusEvent",
  60. "CompositionEvent",
  61. "ClipboardEvent",
  62. "DocumentType",
  63. "CharacterData",
  64. "SvgElement",
  65. "SvgAnimatedString",
  66. "HtmlOptionElement",
  67. "IdleDeadline",
  68. ]
  69. # [lib]
  70. # crate-type = ["cdylib", "rlib"]
  71. # [dev-dependencies]
  72. # im-rc = "15.0.0"
  73. # separator = "0.4.1"
  74. # uuid = { version = "0.8.2", features = ["v4", "wasm-bindgen"] }
  75. # serde = { version = "1.0.126", features = ["derive"] }
  76. # reqwest = { version = "0.11", features = ["json"] }
  77. # dioxus-hooks = { path = "../hooks" }
  78. # dioxus-core-macro = { path = "../core-macro" }
  79. # rand = { version = "0.8.4", features = ["small_rng"] }
  80. # [dev-dependencies.getrandom]
  81. # version = "0.2"
  82. # features = ["js"]