mirror of
https://github.com/DioxusLabs/dioxus
synced 2024-11-26 06:00:21 +00:00
7ec3453ca3
* wip: fix manganis import path * upgrade tauri bundler, convert todo!() to unimplemented!() * feat: mobile hotreloading + ios asset configuration * remove oid demo and its associated env vars * nuke all the things that cause cache thrashing * swap to Asset type * add some more logs * display impl for attrvalue * dont panic on collect failure * cut down web deps to 150 * clean up deps in a lot of places, simplify build scripts * clean up asset resolution and cli-dev profile * wire up absolute paths for manganis asset in a particular mode * move document related things around to shorten compile times * move most things to `document::Item` and then decompose the cli-config * switch link to stylesheet for clarity in examples * move manganis workspace example to examples folder * decompose manganis-cli-support * dont need mobile demo anymore * remove gloo dialogs * html doesnt need document * rename hotreload to devtools * really clean up the html crate * fix weird rsx spacing * clean up desktop to use callback * clean up document a bit * re-wire up devsocket * fix utf css * yeeeet that js out of here * synthetic web system works * web crate almost done being cleaned up * desktop mostly cleaned up too * clean up cli a bit * more cli cleanup * cli builds again * clean up cli, inline structs, cut down number of unique types where possible * hotreload works again for desktop and this time, mobile too * cfg out tungstenite * devserver err * more refactor to cli builder * switch to unbounded_send * new structure is much cleaner * add http serve subcommand * bundled hotreload * kick stylsheets * clean up a bit more, split up eventloop * amazingly serve seems done * change from pub to pub(crate) in cli * remove tools * bit more polish to cli * fix issue with join * gracefully handle fullstack without a server * fullstack mobile demo * fix launch function, move projects into example-projects folder * hoist examples * add "run" command * clean up launch * remove old manual websocket receiver * doctor command * allow desktop to scroll * cut apart router crate * dont put launch in prelude * use dioxus::launch where possible * rename rsx, cut out hotreload tests * remove liveview project * bump native * fix compile for renderers * move sync event response out of interpreter * move render in serve * rollback settings change * cli compiles, huzzah! * change uris for asset * fix asset * new tui screen * new cargo-like tui works * very very verty close * it works! very small bug with incorrect grapheme calc * Clean up devserver a bit * status sytem * tidy up debug filters * clean up logging situation * Fix a number of bugs with log printing * new printing system is more reliable * wire up more stuff * things working but fullstack is having issues * fullstack works again! * hotreloading bundled assets works again * bundled hotreload and beginnings of macos bundling * Hotreload desktop * combined server builds * add build handle * fix fullstack assets * make open async, add some hooks for ios * migrate filemap to runner * wip global crate system * fixup bundles + organize asset * fix asset location bug * all the bundled reloading! * open ios simulator! * full hotreload support for mobile + serverfn * basic cleanups * clean up dx * Move filemap * fix cutting of newlines * assets workibg, some android * hoist wry/tao * use sync locks and headers to fix issues with android * desktop -> mac/win/linux with alias * better logging * feat: workspace (entire computer!) hotreload * should rebuild toggle, ios simulator bootup * proper mobile support in launch * more robust handling of assets * fix cargo * bring back some of tauri bundle * make warnings go away, clippy happy on cli * some final clippy cleanups * fmt * move manganis to its own folder * upgrade bundle to stable * drastically slim down manganis, prepping for merge * typos, failing test, docsrs config * remove static gen test * nix static gen test * we use --platform web instead of --platform fullstack now * only bind dev urls in desktop/mobile * install gtk * nix static gen * split build dir by app name
148 lines
4.3 KiB
TOML
148 lines
4.3 KiB
TOML
[package]
|
|
name = "dioxus-cli"
|
|
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"]
|
|
rust-version = "1.79.0"
|
|
|
|
[dependencies]
|
|
dioxus-autofmt = { workspace = true }
|
|
dioxus-check = { workspace = true }
|
|
dioxus-rsx-rosetta = { workspace = true }
|
|
dioxus-rsx = { workspace = true }
|
|
dioxus-rsx-hotreload = { workspace = true }
|
|
dioxus-html = { workspace = true, features = ["hot-reload-context"] }
|
|
dioxus-core = { workspace = true, features = ["serialize"] }
|
|
dioxus-core-types = { workspace = true }
|
|
dioxus-devtools-types = { workspace = true }
|
|
dioxus-cli-config = { workspace = true }
|
|
dioxus-fullstack = { workspace = true }
|
|
|
|
clap = { workspace = true, features = ["derive", "cargo"] }
|
|
thiserror = { workspace = true }
|
|
wasm-bindgen-cli-support = "0.2"
|
|
wasm-bindgen-shared = "0.2"
|
|
uuid = { version = "1.3.0", features = ["v4"] }
|
|
serde = { workspace = true, features = ["derive"] }
|
|
serde_json = { workspace = true }
|
|
toml = { workspace = true }
|
|
fs_extra = "1.2.0"
|
|
cargo_toml = { workspace = true }
|
|
futures-util = { workspace = true, features = ["async-await-macro"] }
|
|
notify = { workspace = true, features = ["serde"] }
|
|
html_parser = { workspace = true }
|
|
cargo_metadata = "0.18.1"
|
|
tokio = { workspace = true, features = ["full"] }
|
|
tokio-stream = "0.1.15"
|
|
chrono = "0.4.19"
|
|
anyhow = "1"
|
|
hyper = { workspace = true }
|
|
hyper-util = "0.1.3"
|
|
hyper-rustls = { workspace = true }
|
|
rustls = { workspace = true }
|
|
rayon = "1.8.0"
|
|
console = "0.15.8"
|
|
ctrlc = "3.2.3"
|
|
futures-channel = { workspace = true }
|
|
krates = { version = "0.17.0" }
|
|
cargo-config2 = { workspace = true, optional = true }
|
|
regex = "1.10.6"
|
|
|
|
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"] }
|
|
proc-macro2 = { workspace = true, features = ["span-locations"] }
|
|
syn = { workspace = true, features = ["full", "extra-traits", "visit", "visit-mut"] }
|
|
|
|
headers = "0.4.0"
|
|
walkdir = "2"
|
|
|
|
# tools download
|
|
dirs = { workspace = true }
|
|
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 }
|
|
once_cell = "1.19.0"
|
|
|
|
# plugin packages
|
|
open = "5.0.1"
|
|
cargo-generate = "=0.21.3"
|
|
toml_edit = "0.22.20"
|
|
|
|
# formatting
|
|
# syn = { workspace = true }
|
|
prettyplease = { workspace = true }
|
|
|
|
# Assets
|
|
brotli = "6.0.0"
|
|
ignore = "0.4.22"
|
|
env_logger = { workspace = true }
|
|
|
|
tracing-subscriber = { version = "0.3.18", features = ["std", "env-filter"] }
|
|
console-subscriber = { version = "0.3.0", optional = true }
|
|
tracing = { workspace = true }
|
|
wasm-opt = { version = "0.116.1", optional = true }
|
|
crossterm = { version = "0.28.0", features = ["event-stream"] }
|
|
ansi-to-tui = "6.0"
|
|
ansi-to-html = "0.2.1"
|
|
ratatui = { version = "0.28.0", features = ["crossterm", "unstable"] }
|
|
|
|
# link intercept
|
|
tempfile = "3.3"
|
|
manganis-core = { workspace = true }
|
|
|
|
# Extracting data from an executable
|
|
object = {version="0.36.0", features=["wasm"]}
|
|
tokio-util = { version = "0.7.11", features = ["full"] }
|
|
itertools = "0.13.0"
|
|
throbber-widgets-tui = "0.7.0"
|
|
unicode-segmentation = "1.12.0"
|
|
handlebars = "6.1.0"
|
|
strum = { version = "0.26.3", features = ["derive"] }
|
|
|
|
tauri-utils = { workspace = true }
|
|
tauri-bundler = { workspace = true }
|
|
|
|
[build-dependencies]
|
|
built = { version = "=0.7.4", features = ["git2"] }
|
|
|
|
[features]
|
|
default = []
|
|
plugin = []
|
|
tokio-console = ["dep:console-subscriber"]
|
|
bundle = []
|
|
|
|
# when releasing dioxus, we want to enable wasm-opt
|
|
# and then also maybe developing it too.
|
|
# making this optional cuts workspace deps down from 1000 to 500, so it's very nice for workspace adev
|
|
optimizations = ["wasm-opt", "asset-opt"]
|
|
asset-opt = []
|
|
wasm-opt = ["dep:wasm-opt"]
|
|
|
|
[[bin]]
|
|
path = "src/main.rs"
|
|
name = "dx"
|
|
|
|
[package.metadata.binstall]
|
|
pkg-url = "{ repo }/releases/download/v{ version }/dx-{ target }-v{ version }{ archive-suffix }"
|
|
pkg-fmt = "tgz"
|
|
|
|
[package.metadata.binstall.overrides.x86_64-pc-windows-msvc]
|
|
pkg-fmt = "zip"
|
|
|
|
[package.metadata.docs.rs]
|
|
all-features = false
|
|
rustc-args = [ "--cfg", "docsrs" ]
|
|
rustdoc-args = [ "--cfg", "docsrs" ]
|