123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104 |
- [package]
- name = "dioxus-cli"
- version = "0.4.3"
- authors = ["Jonathan Kelley"]
- edition = "2021"
- description = "CLI tool for developing, testing, and publishing Dioxus apps"
- repository = "https://github.com/DioxusLabs/dioxus/"
- license = "MIT OR Apache-2.0"
- keywords = ["react", "gui", "cli", "dioxus", "wasm"]
- [dependencies]
- # cli core
- clap = { version = "4.2", features = ["derive"] }
- thiserror = { workspace = true }
- wasm-bindgen-cli-support = "0.2"
- colored = "2.0.0"
- dioxus-cli-config = { workspace = true, features = ["cli"] }
- # features
- log = "0.4.14"
- fern = { version = "0.6.0", features = ["colored"] }
- serde = { version = "1.0.136", features = ["derive"] }
- serde_json = "1.0.79"
- toml = "0.8.8"
- fs_extra = "1.2.0"
- cargo_toml = "0.18.0"
- futures-util = { workspace = true }
- notify = { version = "5.0.0-pre.16", features = ["serde"] }
- html_parser = { workspace = true }
- cargo_metadata = "0.18.1"
- tokio = { version = "1.16.1", features = ["fs", "sync", "rt", "macros"] }
- atty = "0.2.14"
- chrono = "0.4.19"
- anyhow = "1"
- hyper = "0.14.17"
- hyper-rustls = "0.23.2"
- indicatif = "0.17.5"
- subprocess = "0.2.9"
- axum = { version = "0.5.1", features = ["ws", "headers"] }
- axum-server = { version = "0.5.1", features = ["tls-rustls"] }
- tower-http = { version = "0.2.2", features = ["full"] }
- headers = "0.3.7"
- walkdir = "2"
- # tools download
- dirs = "5.0.1"
- reqwest = { version = "0.11", features = [
- "rustls-tls",
- "stream",
- "trust-dns",
- "blocking",
- ] }
- flate2 = "1.0.22"
- tar = "0.4.38"
- zip = "0.6.2"
- tower = "0.4.12"
- lazy_static = "1.4.0"
- # plugin packages
- mlua = { version = "0.8.1", features = [
- "lua54",
- "vendored",
- "async",
- "send",
- "macros",
- ], optional = true }
- ctrlc = "3.2.3"
- open = "5.0.1"
- cargo-generate = "0.19.0"
- toml_edit = "0.21.0"
- # bundling
- tauri-bundler = { version = "=1.4.*", features = ["native-tls-vendored"] }
- manganis-cli-support = { workspace = true, features = ["webp", "html"] }
- dioxus-autofmt = { workspace = true }
- dioxus-check = { workspace = true }
- rsx-rosetta = { workspace = true }
- dioxus-rsx = { workspace = true }
- dioxus-html = { workspace = true, features = ["hot-reload-context"] }
- dioxus-core = { workspace = true, features = ["serialize"] }
- dioxus-hot-reload = { workspace = true }
- interprocess-docfix = { version = "1.2.2" }
- gitignore = "1.0.8"
- [features]
- default = []
- plugin = ["mlua"]
- [[bin]]
- path = "src/main.rs"
- name = "dx"
- [dev-dependencies]
- tempfile = "3.3"
- [package.metadata.binstall]
- pkg-url = "{ repo }/releases/download/v{ version }/dx-{ target }{ archive-suffix }"
- [package.metadata.binstall.overrides.x86_64-pc-windows-msvc]
- pkg-fmt = "zip"
|