2021-07-07 20:54:14 +00:00
|
|
|
[package]
|
2022-01-09 03:59:46 +00:00
|
|
|
name = "dioxus-cli"
|
2023-08-01 01:49:54 +00:00
|
|
|
version = { workspace = true }
|
2021-12-29 16:04:18 +00:00
|
|
|
authors = ["Jonathan Kelley"]
|
2022-06-12 07:31:35 +00:00
|
|
|
edition = "2021"
|
2021-07-07 20:54:14 +00:00
|
|
|
description = "CLI tool for developing, testing, and publishing Dioxus apps"
|
2023-07-08 16:04:27 +00:00
|
|
|
repository = "https://github.com/DioxusLabs/dioxus/"
|
2023-07-20 17:00:07 +00:00
|
|
|
license = "MIT OR Apache-2.0"
|
2023-08-01 00:59:36 +00:00
|
|
|
keywords = ["react", "gui", "cli", "dioxus", "wasm"]
|
2021-07-07 20:54:14 +00:00
|
|
|
|
|
|
|
[dependencies]
|
2022-02-07 16:51:21 +00:00
|
|
|
# cli core
|
2023-06-26 20:12:42 +00:00
|
|
|
clap = { version = "4.2", features = ["derive"] }
|
2023-07-11 20:54:24 +00:00
|
|
|
thiserror = { workspace = true }
|
2023-05-14 17:52:46 +00:00
|
|
|
wasm-bindgen-cli-support = "0.2"
|
2022-07-06 08:16:16 +00:00
|
|
|
colored = "2.0.0"
|
2022-03-12 05:00:07 +00:00
|
|
|
|
2022-02-07 16:51:21 +00:00
|
|
|
# features
|
2022-02-06 21:28:18 +00:00
|
|
|
log = "0.4.14"
|
2021-09-23 17:33:22 +00:00
|
|
|
fern = { version = "0.6.0", features = ["colored"] }
|
2022-02-06 21:28:18 +00:00
|
|
|
serde = { version = "1.0.136", features = ["derive"] }
|
|
|
|
serde_json = "1.0.79"
|
2022-01-23 04:11:17 +00:00
|
|
|
toml = "0.5.8"
|
2021-12-29 16:04:18 +00:00
|
|
|
fs_extra = "1.2.0"
|
2022-02-06 21:28:18 +00:00
|
|
|
cargo_toml = "0.11.4"
|
|
|
|
futures = "0.3.21"
|
2022-08-15 11:47:19 +00:00
|
|
|
notify = { version = "5.0.0-pre.16", features = ["serde"] }
|
2023-08-01 00:59:36 +00:00
|
|
|
html_parser = { workspace = true }
|
2021-12-29 16:04:18 +00:00
|
|
|
binary-install = "0.0.2"
|
|
|
|
convert_case = "0.5.0"
|
2022-07-09 06:16:19 +00:00
|
|
|
cargo_metadata = "0.15.0"
|
2022-02-06 21:28:18 +00:00
|
|
|
tokio = { version = "1.16.1", features = ["full"] }
|
2022-01-09 05:23:58 +00:00
|
|
|
atty = "0.2.14"
|
2022-01-23 21:55:40 +00:00
|
|
|
regex = "1.5.4"
|
2022-01-27 04:09:54 +00:00
|
|
|
chrono = "0.4.19"
|
2022-02-09 08:11:02 +00:00
|
|
|
anyhow = "1.0.53"
|
|
|
|
hyper = "0.14.17"
|
2023-02-27 10:20:44 +00:00
|
|
|
hyper-rustls = "0.23.2"
|
2022-07-09 06:16:19 +00:00
|
|
|
indicatif = "0.17.0-rc.11"
|
2023-02-11 13:40:48 +00:00
|
|
|
subprocess = "0.2.9"
|
2021-07-07 20:54:14 +00:00
|
|
|
|
2022-04-17 03:24:17 +00:00
|
|
|
axum = { version = "0.5.1", features = ["ws", "headers"] }
|
2023-07-11 04:25:16 +00:00
|
|
|
axum-server = { version = "0.5.1", features = ["tls-rustls"] }
|
2023-05-06 06:13:28 +00:00
|
|
|
tower-http = { version = "0.2.2", features = ["full"] }
|
2022-02-06 21:28:18 +00:00
|
|
|
headers = "0.3.7"
|
2022-05-07 08:25:23 +00:00
|
|
|
|
2022-05-10 02:31:02 +00:00
|
|
|
walkdir = "2"
|
|
|
|
|
2022-03-12 05:00:07 +00:00
|
|
|
# tools download
|
|
|
|
dirs = "4.0.0"
|
2022-12-07 20:55:28 +00:00
|
|
|
reqwest = { version = "0.11", features = [
|
|
|
|
"rustls-tls",
|
|
|
|
"stream",
|
|
|
|
"trust-dns",
|
|
|
|
"blocking",
|
|
|
|
] }
|
2022-03-13 05:19:54 +00:00
|
|
|
flate2 = "1.0.22"
|
|
|
|
tar = "0.4.38"
|
2022-05-07 08:25:23 +00:00
|
|
|
zip = "0.6.2"
|
2022-03-27 00:33:18 +00:00
|
|
|
tower = "0.4.12"
|
2023-07-19 17:19:23 +00:00
|
|
|
syn = { version = "2.0", features = ["full", "extra-traits"] }
|
2022-06-14 14:47:16 +00:00
|
|
|
proc-macro2 = { version = "1.0", features = ["span-locations"] }
|
2022-09-22 05:57:26 +00:00
|
|
|
lazy_static = "1.4.0"
|
2022-06-09 16:58:09 +00:00
|
|
|
|
2022-07-24 11:00:43 +00:00
|
|
|
# plugin packages
|
2022-12-07 20:55:28 +00:00
|
|
|
mlua = { version = "0.8.1", features = [
|
|
|
|
"lua54",
|
|
|
|
"vendored",
|
|
|
|
"async",
|
|
|
|
"send",
|
|
|
|
"macros",
|
2023-07-08 01:17:42 +00:00
|
|
|
], optional = true }
|
2022-09-22 05:57:26 +00:00
|
|
|
ctrlc = "3.2.3"
|
2023-02-17 00:35:35 +00:00
|
|
|
gitignore = "1.0.7"
|
2023-04-30 20:13:46 +00:00
|
|
|
open = "4.1.0"
|
2023-07-26 19:53:00 +00:00
|
|
|
cargo-generate = "0.18"
|
2023-06-26 20:12:42 +00:00
|
|
|
toml_edit = "0.19.11"
|
2023-07-08 01:17:42 +00:00
|
|
|
# dioxus-rsx = "0.0.1"
|
|
|
|
|
2023-07-26 19:40:50 +00:00
|
|
|
# bundling
|
2023-07-26 19:53:00 +00:00
|
|
|
tauri-bundler = { version = "1.2", features = ["native-tls-vendored"] }
|
|
|
|
tauri-utils = "1.3"
|
2023-07-26 19:40:50 +00:00
|
|
|
|
2023-07-08 01:17:42 +00:00
|
|
|
dioxus-autofmt = { workspace = true }
|
2023-07-18 21:12:47 +00:00
|
|
|
dioxus-check = { workspace = true }
|
2023-07-08 01:17:42 +00:00
|
|
|
rsx-rosetta = { workspace = true }
|
|
|
|
dioxus-rsx = { workspace = true }
|
|
|
|
dioxus-html = { workspace = true, features = ["hot-reload-context"] }
|
|
|
|
dioxus-core = { workspace = true, features = ["serialize"] }
|
2023-07-18 17:24:29 +00:00
|
|
|
dioxus-hot-reload = { workspace = true }
|
|
|
|
interprocess-docfix = { version = "1.2.2" }
|
2022-04-24 07:24:41 +00:00
|
|
|
|
2023-07-08 01:17:42 +00:00
|
|
|
[features]
|
|
|
|
default = []
|
|
|
|
plugin = ["mlua"]
|
|
|
|
|
|
|
|
[[bin]]
|
|
|
|
path = "src/main.rs"
|
|
|
|
name = "dx"
|
2023-08-05 04:28:09 +00:00
|
|
|
|
|
|
|
[dev-dependencies]
|
|
|
|
tempfile = "3.3"
|