Cargo.toml 969 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. [package]
  2. name = "dioxus-web"
  3. version = "0.0.0"
  4. authors = ["Jonathan Kelley <jkelleyrtp@gmail.com>"]
  5. edition = "2018"
  6. # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
  7. [dependencies]
  8. dioxus-core = { path = "../core" }
  9. js-sys = "0.3"
  10. wasm-bindgen = "0.2.69"
  11. # wasm-bindgen = "0.2.70"
  12. lazy_static = "1.4.0"
  13. wasm-bindgen-futures = "0.4.20"
  14. futures = "0.3.12"
  15. wasm-logger = "0.2.0"
  16. log = "0.4.14"
  17. fxhash = "0.2.1"
  18. pretty_env_logger = "0.4.0"
  19. console_error_panic_hook = "0.1.6"
  20. # html-validation = { path = "../html-validation", version = "0.1.1" }
  21. [dependencies.web-sys]
  22. version = "0.3"
  23. features = [
  24. "Comment",
  25. "Document",
  26. "Element",
  27. "HtmlElement",
  28. "EventTarget",
  29. "HtmlCollection",
  30. "Node",
  31. "NodeList",
  32. "Text",
  33. "Window",
  34. "Event",
  35. "MouseEvent",
  36. "InputEvent",
  37. "DocumentType",
  38. "CharacterData",
  39. ]
  40. [profile.release]
  41. debug = true
  42. [lib]
  43. crate-type = ["cdylib", "rlib"]