Cargo.toml 661 B

123456789101112131415161718192021222324252627282930
  1. [package]
  2. name = "dioxus-cli"
  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. thiserror = "1.0.22"
  9. log = "0.4"
  10. fern = { version = "0.6.0", features = ["colored"] }
  11. wasm-bindgen-cli-support = "0.2.69"
  12. anyhow = "1.0.34"
  13. argh = "0.1.4"
  14. serde = "1"
  15. serde_json = "1"
  16. async-std = { version = "1.7.0", features = ["attributes"] }
  17. tide = "0.15.0"
  18. cargo_toml = "0.8.1"
  19. fs_extra = "1.2.0"
  20. notify = "5.0.0-pre.3"
  21. futures = "0.3.8"
  22. rjdebounce = "0.2.1"
  23. tempfile = "3.1.0"
  24. [[bin]]
  25. path = "src/main.rs"
  26. name = "dioxus"