Cargo.toml 1.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384
  1. [package]
  2. name = "dioxus-core"
  3. version = "0.1.3"
  4. authors = ["Jonathan Kelley"]
  5. edition = "2018"
  6. description = "Core functionality for Dioxus - a concurrent renderer-agnostic Virtual DOM for interactive user experiences"
  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 = [
  12. "dom",
  13. "ui",
  14. "user interface",
  15. "gui",
  16. "react",
  17. "state",
  18. "management",
  19. "wasm",
  20. "web",
  21. "ssr",
  22. ]
  23. # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
  24. [dependencies]
  25. # Bumpalo is used as a micro heap backing each component
  26. bumpalo = { version = "3.6", features = ["collections", "boxed"] }
  27. # faster hashmaps
  28. fxhash = "0.2"
  29. # Used in diffing
  30. longest-increasing-subsequence = "0.1.0"
  31. # internall used
  32. log = { version = "0.4", features = ["release_max_level_off"] }
  33. futures-util = { version = "0.3", default-features = false }
  34. smallvec = "1.6"
  35. slab = "0.4"
  36. futures-channel = "0.3"
  37. # used for noderefs
  38. once_cell = "1.8"
  39. indexmap = "1.7"
  40. # Serialize the Edits for use in Webview/Liveview instances
  41. serde = { version = "1", features = ["derive"], optional = true }
  42. # todo: I want to get rid of this
  43. backtrace = "0.3"
  44. [dev-dependencies]
  45. anyhow = "1.0.42"
  46. dioxus-html = { path = "../html" }
  47. fern = { version = "0.6.0", features = ["colored"] }
  48. rand = { version = "0.8.4", features = ["small_rng"] }
  49. simple_logger = "1.13.0"
  50. dioxus-core-macro = { path = "../core-macro", version ="^0.1.2"}
  51. # dioxus-hooks = { path = "../hooks" }
  52. criterion = "0.3.5"
  53. [features]
  54. default = []
  55. serialize = ["serde"]
  56. debug_vdom = []
  57. [[bench]]
  58. name = "create"
  59. harness = false
  60. [[bench]]
  61. name = "jsframework"
  62. harness = false
  63. [[example]]
  64. name = "rows"
  65. path = "./examples/rows.rs"