Cargo.toml 793 B

1234567891011121314151617181920212223242526272829303132333435
  1. [package]
  2. name = "virtual-node"
  3. version = "0.2.7"
  4. description = "A standalone Virtual DOM"
  5. authors = ["Chinedu Francis Nwafili <frankie.nwafili@gmail.com>"]
  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_node/"
  10. edition = "2018"
  11. [dependencies]
  12. js-sys = "0.3"
  13. wasm-bindgen = "0.2.33"
  14. html-validation = {path = "../html-validation", version = "0.1.1"}
  15. lazy_static = "1.0"
  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. "Window",
  29. "Event",
  30. "MouseEvent",
  31. "InputEvent",
  32. ]