Cargo.toml 1018 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  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. "HtmlInputElement",
  29. "EventTarget",
  30. "HtmlCollection",
  31. "Node",
  32. "NodeList",
  33. "Text",
  34. "Window",
  35. "Event",
  36. "MouseEvent",
  37. "InputEvent",
  38. "DocumentType",
  39. "CharacterData",
  40. "HtmlOptionElement",
  41. ]
  42. [profile.release]
  43. debug = true
  44. [lib]
  45. crate-type = ["cdylib", "rlib"]