Cargo.toml 600 B

123456789101112131415161718192021222324252627282930
  1. [package]
  2. name = "dioxus-examples"
  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. fern = { vesion = "0.6.0", features = ["colored"] }
  9. log = "0.4.13"
  10. dioxus-core = { path = "../packages/core" }
  11. rand = "0.8.2"
  12. [dev-dependencies]
  13. async-std = { version = "1.9.0", features = ["attributes"] }
  14. tide = { version = "0.15.0" }
  15. [lib]
  16. path = "common.rs"
  17. [[example]]
  18. path = "hello.rs"
  19. name = "hello"
  20. [[example]]
  21. path = "tide_ssr.rs"
  22. name = "tide_ssr"