Cargo.toml 682 B

1234567891011121314151617181920212223242526
  1. [package]
  2. name = "dioxus-ssr"
  3. version = "0.1.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", version = "0.1.0", features = ["serialize"] }
  9. [dev-dependencies]
  10. dioxus-hooks = { path = "../hooks" }
  11. dioxus-html = { path = "../html" }
  12. tide-websockets = "*"
  13. thiserror = "1.0.23"
  14. log = "0.4.13"
  15. fern = { version = "0.6.0", features = ["colored"] }
  16. anyhow = "1.0"
  17. argh = "0.1.4"
  18. serde = "1.0.120"
  19. serde_json = "1.0.61"
  20. async-std = { version = "1.9.0", features = ["attributes"] }
  21. tide = "0.16.0"
  22. fs_extra = "1.2.0"