Cargo.toml 2.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091
  1. [package]
  2. name = "dioxus-cli"
  3. version = "0.3.1"
  4. authors = ["Jonathan Kelley"]
  5. edition = "2021"
  6. description = "CLI tool for developing, testing, and publishing Dioxus apps"
  7. repository = "https://github.com/DioxusLabs/dioxus/"
  8. license = "MIT/Apache-2.0"
  9. [dependencies]
  10. # cli core
  11. clap = { version = "4.2", features = ["derive"] }
  12. thiserror = "1.0.30"
  13. wasm-bindgen-cli-support = "0.2"
  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.workspace = true
  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. hyper-rustls = "0.23.2"
  36. indicatif = "0.17.0-rc.11"
  37. subprocess = "0.2.9"
  38. axum = { version = "0.5.1", features = ["ws", "headers"] }
  39. axum-server = { version = "0.5.1", features = ["tls-rustls"] }
  40. tower-http = { version = "0.2.2", features = ["full"] }
  41. headers = "0.3.7"
  42. walkdir = "2"
  43. # tools download
  44. dirs = "4.0.0"
  45. reqwest = { version = "0.11", features = [
  46. "rustls-tls",
  47. "stream",
  48. "trust-dns",
  49. "blocking",
  50. ] }
  51. flate2 = "1.0.22"
  52. tar = "0.4.38"
  53. zip = "0.6.2"
  54. tower = "0.4.12"
  55. syn = { version = "1.0", features = ["full", "extra-traits"] }
  56. proc-macro2 = { version = "1.0", features = ["span-locations"] }
  57. lazy_static = "1.4.0"
  58. # plugin packages
  59. mlua = { version = "0.8.1", features = [
  60. "lua54",
  61. "vendored",
  62. "async",
  63. "send",
  64. "macros",
  65. ], optional = true }
  66. ctrlc = "3.2.3"
  67. gitignore = "1.0.7"
  68. open = "4.1.0"
  69. cargo-generate = "0.18.3"
  70. toml_edit = "0.19.11"
  71. # dioxus-rsx = "0.0.1"
  72. dioxus-autofmt = { workspace = true }
  73. rsx-rosetta = { workspace = true }
  74. dioxus-rsx = { workspace = true }
  75. dioxus-html = { workspace = true, features = ["hot-reload-context"] }
  76. dioxus-core = { workspace = true, features = ["serialize"] }
  77. [features]
  78. default = []
  79. plugin = ["mlua"]
  80. [[bin]]
  81. path = "src/main.rs"
  82. name = "dx"