Cargo.toml 767 B

1234567891011121314151617181920212223242526272829303132
  1. [package]
  2. name = "dioxus-cli"
  3. version = "0.1.0"
  4. authors = ["Jonathan Kelley <jkelleyrtp@gmail.com>"]
  5. edition = "2018"
  6. description = "CLI tool for developing, testing, and publishing Dioxus apps"
  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. thiserror = "1.0.22"
  11. log = "0.4"
  12. fern = { version = "0.6.0", features = ["colored"] }
  13. wasm-bindgen-cli-support = "0.2.69"
  14. anyhow = "1.0.34"
  15. argh = "0.1.4"
  16. serde = "1"
  17. serde_json = "1"
  18. async-std = { version = "1.7.0", features = ["attributes"] }
  19. tide = "0.15.0"
  20. cargo_toml = "0.8.1"
  21. fs_extra = "1.2.0"
  22. notify = "5.0.0-pre.3"
  23. futures = "0.3.8"
  24. rjdebounce = "0.2.1"
  25. tempfile = "3.1.0"
  26. [[bin]]
  27. path = "src/main.rs"
  28. name = "dioxus"