mirror of
https://github.com/DioxusLabs/dioxus
synced 2024-11-14 00:17:17 +00:00
7eccc7a104
dioxus-cli@0.5.2 dioxus-fullstack@0.5.2 Generated by cargo-workspaces
126 lines
3.4 KiB
TOML
126 lines
3.4 KiB
TOML
[package]
|
|
name = "dioxus-cli"
|
|
version = "0.5.2"
|
|
# version = { workspace = true }
|
|
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", "cargo"] }
|
|
thiserror = { workspace = true }
|
|
wasm-bindgen-cli-support = "0.2"
|
|
wasm-bindgen-shared = "0.2"
|
|
colored = "2.0.0"
|
|
dioxus-cli-config = { workspace = true, features = ["cli"], default-features = false }
|
|
|
|
# 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 = { workspace = true }
|
|
fs_extra = "1.2.0"
|
|
cargo_toml = "0.18.0"
|
|
futures-util = { workspace = true, features = ["async-await-macro"] }
|
|
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 = { workspace = true }
|
|
hyper-util = "0.1.3"
|
|
hyper-rustls = { workspace = true }
|
|
indicatif = "0.17.5"
|
|
subprocess = "0.2.9"
|
|
rayon = "1.8.0"
|
|
|
|
axum = { workspace = true, features = ["ws"] }
|
|
axum-server = { workspace = true, features = ["tls-rustls"] }
|
|
axum-extra = { workspace = true, features = ["typed-header"] }
|
|
tower-http = { workspace = true, features = ["full"] }
|
|
|
|
headers = "0.3.7"
|
|
walkdir = "2"
|
|
|
|
# tools download
|
|
dirs = "5.0.1"
|
|
reqwest = { workspace = true, features = [
|
|
"rustls-tls",
|
|
"stream",
|
|
"trust-dns",
|
|
"blocking",
|
|
] }
|
|
flate2 = "1.0.22"
|
|
tar = "0.4.38"
|
|
zip = "0.6.2"
|
|
tower = { workspace = true }
|
|
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"] }
|
|
|
|
# formatting
|
|
syn = { workspace = true }
|
|
prettyplease = { workspace = true }
|
|
|
|
manganis-cli-support = { workspace = true, features = ["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 = { workspace = true }
|
|
# interprocess-docfix = { version = "1.2.2" }
|
|
ignore = "0.4.22"
|
|
env_logger = "0.11.3"
|
|
|
|
tracing-subscriber = { version = "0.3.18", features = ["std", "env-filter"] }
|
|
tracing = { workspace = true }
|
|
|
|
# on maco, we need to specify the vendored feature on ssl when cross compiling
|
|
[target.'cfg(target_os = "macos")'.dependencies]
|
|
openssl = { version = "0.10", features = ["vendored"] }
|
|
|
|
[features]
|
|
default = []
|
|
plugin = ["mlua"]
|
|
|
|
[[bin]]
|
|
path = "src/main.rs"
|
|
name = "dx"
|
|
|
|
[dev-dependencies]
|
|
tempfile = "3.3"
|
|
|
|
[package.metadata.binstall]
|
|
# temporarily, we're going to use the 0.5.0 download page for all binaries
|
|
pkg-url = "{ repo }/releases/download/v0.5.0/dx-{ target }-v{ version }{ archive-suffix }"
|
|
|
|
# pkg-url = "{ repo }/releases/download/v{ version }/dx-{ target }{ archive-suffix }"
|
|
pkg-fmt = "tgz"
|
|
|
|
[package.metadata.binstall.overrides.x86_64-pc-windows-msvc]
|
|
pkg-fmt = "zip"
|