Cargo.toml 2.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798
  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 OR Apache-2.0"
  9. [dependencies]
  10. # cli core
  11. clap = { version = "4.2", features = ["derive"] }
  12. thiserror = { workspace = true }
  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 = "2.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 = { git = "https://github.com/Demonthos/cargo-generate", branch = "update-tempfile" }
  70. toml_edit = "0.19.11"
  71. # dioxus-rsx = "0.0.1"
  72. # bundling
  73. tauri-bundler = { version = "2.0.0-alpha.6", features = ["native-tls-vendored"] }
  74. tauri-utils = "2.0.0-alpha.6"
  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"