Cargo.toml 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. [package]
  2. name = "virtual-dom-rs"
  3. version = "0.6.14"
  4. authors = ["Chinedu Francis Nwafili <frankie.nwafili@gmail.com>"]
  5. description = "A standalone Virtual DOM creation, diffing and patching implementation"
  6. keywords = ["virtual", "dom", "wasm", "assembly", "webassembly"]
  7. license = "MIT/Apache-2.0"
  8. repository = "https://github.com/chinedufn/percy"
  9. documentation = "https://chinedufn.github.io/percy/api/virtual_dom_rs/"
  10. edition = "2018"
  11. [dependencies]
  12. js-sys = "0.3"
  13. wasm-bindgen = "0.2.33"
  14. virtual-node = { path = "../virtual-node", version = "0.2.7" }
  15. html-macro = { path = "../html-macro", version = "0.1.8"}
  16. [dependencies.web-sys]
  17. version = "0.3"
  18. features = [
  19. "Comment",
  20. "Document",
  21. "Element",
  22. "HtmlElement",
  23. "EventTarget",
  24. "HtmlCollection",
  25. "Node",
  26. "NodeList",
  27. "Text",
  28. "CharacterData",
  29. "Window",
  30. ]
  31. [dev-dependencies]
  32. wasm-bindgen-test = "0.2.33"
  33. console_error_panic_hook = "0.1.5"
  34. [dev-dependencies.web-sys]
  35. version = "0.3"
  36. features = [
  37. "DomTokenList",
  38. "HtmlInputElement",
  39. "Event",
  40. "MouseEvent",
  41. "InputEvent",
  42. "console",
  43. ]