Cargo.toml 2.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102
  1. [package]
  2. name = "dioxus-cli-config"
  3. version = "0.4.1"
  4. authors = ["Jonathan Kelley"]
  5. edition = "2021"
  6. description = "Configuration for the Dioxus CLI"
  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.16.0"
  24. futures = "0.3.21"
  25. notify = { version = "5.0.0-pre.16", features = ["serde"] }
  26. html_parser = { workspace = true }
  27. cargo_metadata = "0.15.0"
  28. tokio = { version = "1.16.1", features = ["fs", "sync", "rt", "macros"] }
  29. atty = "0.2.14"
  30. chrono = "0.4.19"
  31. anyhow = "1.0.53"
  32. hyper = "0.14.17"
  33. hyper-rustls = "0.23.2"
  34. indicatif = "0.17.5"
  35. subprocess = "0.2.9"
  36. axum = { version = "0.5.1", features = ["ws", "headers"] }
  37. axum-server = { version = "0.5.1", features = ["tls-rustls"] }
  38. tower-http = { version = "0.2.2", features = ["full"] }
  39. headers = "0.3.7"
  40. walkdir = "2"
  41. # tools download
  42. dirs = "4.0.0"
  43. reqwest = { version = "0.11", features = [
  44. "rustls-tls",
  45. "stream",
  46. "trust-dns",
  47. "blocking",
  48. ] }
  49. flate2 = "1.0.22"
  50. tar = "0.4.38"
  51. zip = "0.6.2"
  52. tower = "0.4.12"
  53. syn = { version = "2.0", features = ["full", "extra-traits"] }
  54. lazy_static = "1.4.0"
  55. # plugin packages
  56. mlua = { version = "0.8.1", features = [
  57. "lua54",
  58. "vendored",
  59. "async",
  60. "send",
  61. "macros",
  62. ], optional = true }
  63. ctrlc = "3.2.3"
  64. open = "4.1.0"
  65. cargo-generate = "0.18"
  66. toml_edit = "0.19.11"
  67. # bundling
  68. tauri-bundler = { version = "=1.3.0", features = ["native-tls-vendored"] }
  69. tauri-utils = "=1.4.*"
  70. dioxus-autofmt = { workspace = true }
  71. dioxus-check = { workspace = true }
  72. rsx-rosetta = { workspace = true }
  73. dioxus-rsx = { workspace = true }
  74. dioxus-html = { workspace = true, features = ["hot-reload-context"] }
  75. dioxus-core = { workspace = true, features = ["serialize"] }
  76. dioxus-hot-reload = { workspace = true }
  77. interprocess-docfix = { version = "1.2.2" }
  78. [features]
  79. default = []
  80. plugin = ["mlua"]
  81. [[bin]]
  82. path = "src/main.rs"
  83. name = "dx"
  84. [dev-dependencies]
  85. tempfile = "3.3"
  86. [package.metadata.binstall]
  87. pkg-url = "{ repo }/releases/download/v{ version }/dx-{ target }{ archive-suffix }"
  88. [package.metadata.binstall.overrides.x86_64-pc-windows-msvc]
  89. pkg-fmt = "zip"