2021-07-07 20:54:14 +00:00
|
|
|
[package]
|
2022-01-09 03:59:46 +00:00
|
|
|
name = "dioxus-cli"
|
2022-03-20 10:39:28 +00:00
|
|
|
version = "0.1.4"
|
2021-12-29 16:04:18 +00:00
|
|
|
authors = ["Jonathan Kelley"]
|
2021-07-07 20:54:14 +00:00
|
|
|
edition = "2018"
|
|
|
|
description = "CLI tool for developing, testing, and publishing Dioxus apps"
|
2022-01-09 05:29:52 +00:00
|
|
|
license = "MIT/Apache-2.0"
|
2021-07-07 20:54:14 +00:00
|
|
|
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
|
|
|
|
[dependencies]
|
2022-03-12 05:00:07 +00:00
|
|
|
|
2022-02-07 16:51:21 +00:00
|
|
|
# cli core
|
2022-03-21 00:32:28 +00:00
|
|
|
clap = { version = "3.0.14", features = ["derive"] }
|
2022-02-06 21:28:18 +00:00
|
|
|
thiserror = "1.0.30"
|
2022-02-07 16:51:21 +00:00
|
|
|
wasm-bindgen-cli-support = "0.2.79"
|
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-01-27 03:13:41 +00:00
|
|
|
notify = { version = "5.0.0-pre.13", features = ["serde"] }
|
2021-12-29 17:03:18 +00:00
|
|
|
html_parser = "0.6.2"
|
2021-12-29 16:04:18 +00:00
|
|
|
binary-install = "0.0.2"
|
|
|
|
convert_case = "0.5.0"
|
|
|
|
cargo_metadata = "0.14.1"
|
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"
|
2021-07-07 20:54:14 +00:00
|
|
|
|
2022-04-17 03:24:17 +00:00
|
|
|
axum = { version = "0.5.1", features = ["ws", "headers"] }
|
2022-02-06 21:28:18 +00:00
|
|
|
tower-http = { version = "0.2.2", features = ["fs", "trace"] }
|
|
|
|
headers = "0.3.7"
|
2022-05-07 08:25:23 +00:00
|
|
|
|
2022-03-12 05:00:07 +00:00
|
|
|
# tools download
|
|
|
|
dirs = "4.0.0"
|
2022-03-12 15:48:05 +00:00
|
|
|
reqwest = { version = "0.11", features = ["rustls-tls", "stream", "trust-dns"] }
|
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"
|
2022-01-22 13:23:30 +00:00
|
|
|
|
2021-07-07 20:54:14 +00:00
|
|
|
[[bin]]
|
|
|
|
path = "src/main.rs"
|
|
|
|
name = "dioxus"
|