Cargo.toml 1.3 KB

123456789101112131415161718192021222324252627282930313233343536373839
  1. [package]
  2. name = "dioxus-core"
  3. version = "0.1.2"
  4. authors = ["Jonathan Kelley <jkelleyrtp@gmail.com>"]
  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. # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
  9. [dependencies]
  10. # dodrio-derive = { path = "../html-macro-2", version = "0.1.0" }
  11. # dioxus-html-macro = { path = "../html-macro", version = "0.1.0" }
  12. # dioxus-html-2 = { path = "../html-macro-2", version = "0.1.0" }
  13. dioxus-core-macro = { path = "../core-macro", version = "0.1.1" }
  14. # Backs some static data
  15. once_cell = "1.5.2"
  16. # Backs the scope creation and reutilization
  17. generational-arena = { version = "0.2.8", features = ["serde"] }
  18. # Bumpalo backs the VNode creation
  19. bumpalo = { version = "3.6.0", features = ["collections"] }
  20. owning_ref = "0.4.1"
  21. # all the arenas 👿
  22. typed-arena = "2.0.1"
  23. toolshed = "0.8.1"
  24. id-arena = "2.2.1"
  25. thiserror = "1.0.23"
  26. fxhash = "0.2.1"
  27. longest-increasing-subsequence = "0.1.0"
  28. serde = { version = "1.0.123", features = ["derive"] }
  29. log = "0.4.14"
  30. pretty_env_logger = "0.4.0"
  31. fstrings = "0.2.3"
  32. # ouroboros = "0.8.0"
  33. # hashbrown = { version = "0.9.1", features = ["bumpalo"] }