Cargo.toml 2.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107
  1. [package]
  2. name = "dioxus-cli"
  3. version = "0.4.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 OR Apache-2.0"
  9. keywords = ["react", "gui", "cli", "dioxus", "wasm"]
  10. [dependencies]
  11. # cli core
  12. clap = { version = "4.2", features = ["derive"] }
  13. thiserror = { workspace = true }
  14. wasm-bindgen-cli-support = "0.2"
  15. colored = "2.0.0"
  16. # features
  17. log = "0.4.14"
  18. fern = { version = "0.6.0", features = ["colored"] }
  19. serde = { version = "1.0.136", features = ["derive"] }
  20. serde_json = "1.0.79"
  21. toml = "0.5.8"
  22. fs_extra = "1.2.0"
  23. cargo_toml = "0.11.4"
  24. futures = "0.3.21"
  25. notify = { version = "5.0.0-pre.16", features = ["serde"] }
  26. html_parser = { workspace = true }
  27. binary-install = "0.0.2"
  28. convert_case = "0.5.0"
  29. cargo_metadata = "0.15.0"
  30. tokio = { version = "1.16.1", features = ["full"] }
  31. atty = "0.2.14"
  32. regex = "1.5.4"
  33. chrono = "0.4.19"
  34. anyhow = "1.0.53"
  35. hyper = "0.14.17"
  36. hyper-rustls = "0.23.2"
  37. indicatif = "0.17.5"
  38. subprocess = "0.2.9"
  39. axum = { version = "0.5.1", features = ["ws", "headers"] }
  40. axum-server = { version = "0.5.1", features = ["tls-rustls"] }
  41. tower-http = { version = "0.2.2", features = ["full"] }
  42. headers = "0.3.7"
  43. walkdir = "2"
  44. # tools download
  45. dirs = "4.0.0"
  46. reqwest = { version = "0.11", features = [
  47. "rustls-tls",
  48. "stream",
  49. "trust-dns",
  50. "blocking",
  51. ] }
  52. flate2 = "1.0.22"
  53. tar = "0.4.38"
  54. zip = "0.6.2"
  55. tower = "0.4.12"
  56. syn = { version = "2.0", features = ["full", "extra-traits"] }
  57. proc-macro2 = { version = "1.0", features = ["span-locations"] }
  58. lazy_static = "1.4.0"
  59. # plugin packages
  60. mlua = { version = "0.8.1", features = [
  61. "lua54",
  62. "vendored",
  63. "async",
  64. "send",
  65. "macros",
  66. ], optional = true }
  67. ctrlc = "3.2.3"
  68. gitignore = "1.0.7"
  69. open = "4.1.0"
  70. cargo-generate = "0.18"
  71. toml_edit = "0.19.11"
  72. # bundling
  73. tauri-bundler = { version = "=1.3.0", features = ["native-tls-vendored"] }
  74. tauri-utils = "=1.4.*"
  75. dioxus-autofmt = { workspace = true }
  76. dioxus-check = { workspace = true }
  77. rsx-rosetta = { workspace = true }
  78. dioxus-rsx = { workspace = true }
  79. dioxus-html = { workspace = true, features = ["hot-reload-context"] }
  80. dioxus-core = { workspace = true, features = ["serialize"] }
  81. dioxus-hot-reload = { workspace = true }
  82. interprocess-docfix = { version = "1.2.2" }
  83. [features]
  84. default = []
  85. plugin = ["mlua"]
  86. [[bin]]
  87. path = "src/main.rs"
  88. name = "dx"
  89. [dev-dependencies]
  90. tempfile = "3.3"
  91. [package.metadata.binstall]
  92. pkg-url = "{ repo }/releases/download/v{ version }/dx-{ target }{ archive-suffix }"
  93. [package.metadata.binstall.overrides.x86_64-pc-windows-msvc]
  94. pkg-fmt = "zip"