Cargo.toml 934 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  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 = { version = "0.6.0", features = ["colored"] }
  9. log = "0.4.1"
  10. dioxus = { path = "../packages/dioxus" }
  11. dioxus-ssr = { path = "../packages/ssr" }
  12. rand = "0.8.2"
  13. [dev-dependencies]
  14. # For the tide ssr examples
  15. async-std = { version = "1.9.0", features = ["attributes"] }
  16. tide = { version = "0.15.0" }
  17. # For the doc generator
  18. pulldown-cmark = { version = "0.8.0", default-features = false }
  19. anyhow = "*"
  20. [lib]
  21. path = "common.rs"
  22. [[example]]
  23. path = "hello.rs"
  24. name = "hello"
  25. [[example]]
  26. path = "tide_ssr.rs"
  27. name = "tide_ssr"
  28. [[example]]
  29. path = "doc_generator.rs"
  30. name = "doc_generator"
  31. [[example]]
  32. path = "router.rs"
  33. name = "router"
  34. [[example]]
  35. path = "fc_macro.rs"
  36. name = "fc_macro"