Cargo.toml 1.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667
  1. [package]
  2. name = "dioxus-cli"
  3. version = "0.1.5"
  4. authors = ["Jonathan Kelley"]
  5. edition = "2021"
  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. # cli core
  11. clap = { version = "3.0.14", features = ["derive"] }
  12. thiserror = "1.0.30"
  13. wasm-bindgen-cli-support = "0.2.79"
  14. colored = "2.0.0"
  15. # features
  16. log = "0.4.14"
  17. fern = { version = "0.6.0", features = ["colored"] }
  18. serde = { version = "1.0.136", features = ["derive"] }
  19. serde_json = "1.0.79"
  20. toml = "0.5.8"
  21. fs_extra = "1.2.0"
  22. cargo_toml = "0.11.4"
  23. futures = "0.3.21"
  24. notify = { version = "5.0.0-pre.16", features = ["serde"] }
  25. html_parser = "0.6.2"
  26. binary-install = "0.0.2"
  27. convert_case = "0.5.0"
  28. cargo_metadata = "0.15.0"
  29. tokio = { version = "1.16.1", features = ["full"] }
  30. atty = "0.2.14"
  31. regex = "1.5.4"
  32. chrono = "0.4.19"
  33. anyhow = "1.0.53"
  34. hyper = "0.14.17"
  35. indicatif = "0.17.0-rc.11"
  36. axum = { version = "0.5.1", features = ["ws", "headers"] }
  37. tower-http = { version = "0.2.2", features = ["fs", "trace"] }
  38. headers = "0.3.7"
  39. walkdir = "2"
  40. # tools download
  41. dirs = "4.0.0"
  42. reqwest = { version = "0.11", features = ["rustls-tls", "stream", "trust-dns"] }
  43. flate2 = "1.0.22"
  44. tar = "0.4.38"
  45. zip = "0.6.2"
  46. tower = "0.4.12"
  47. syn = { version = "1.0" }
  48. dioxus = { git = "https://github.com/dioxuslabs/dioxus/", features = ["hot-reload"] }
  49. dioxus-rsx-interpreter = { git = "https://github.com/dioxuslabs/dioxus/" }
  50. proc-macro2 = { version = "1.0", features = ["span-locations"] }
  51. # plugin packages
  52. mlua = { version = "0.8.1", features = ["lua54", "vendored", "async"] }
  53. [[bin]]
  54. path = "src/main.rs"
  55. name = "dioxus"