mirror of
https://github.com/DioxusLabs/dioxus
synced 2024-11-10 06:34:20 +00:00
Merge pull request #1874 from marc2332/feat/reduce-cli-deps
feat: Reduce cli deps
This commit is contained in:
commit
df74e4c2fc
5 changed files with 5 additions and 9 deletions
4
Cargo.lock
generated
4
Cargo.lock
generated
|
@ -2476,7 +2476,7 @@ dependencies = [
|
|||
"fern",
|
||||
"flate2",
|
||||
"fs_extra",
|
||||
"futures",
|
||||
"futures-util",
|
||||
"gitignore",
|
||||
"headers 0.3.9",
|
||||
"html_parser",
|
||||
|
@ -2495,10 +2495,8 @@ dependencies = [
|
|||
"serde",
|
||||
"serde_json",
|
||||
"subprocess",
|
||||
"syn 2.0.48",
|
||||
"tar",
|
||||
"tauri-bundler",
|
||||
"tauri-utils",
|
||||
"tempfile",
|
||||
"thiserror",
|
||||
"tokio",
|
||||
|
|
|
@ -24,7 +24,7 @@ serde_json = "1.0.79"
|
|||
toml = "0.5.8"
|
||||
fs_extra = "1.2.0"
|
||||
cargo_toml = "0.16.0"
|
||||
futures = "0.3.21"
|
||||
futures-util.workspace = true
|
||||
notify = { version = "5.0.0-pre.16", features = ["serde"] }
|
||||
html_parser = { workspace = true }
|
||||
cargo_metadata = "0.15.0"
|
||||
|
@ -56,7 +56,6 @@ flate2 = "1.0.22"
|
|||
tar = "0.4.38"
|
||||
zip = "0.6.2"
|
||||
tower = "0.4.12"
|
||||
syn = { version = "2.0", features = ["full", "extra-traits"] }
|
||||
lazy_static = "1.4.0"
|
||||
|
||||
# plugin packages
|
||||
|
@ -74,7 +73,6 @@ toml_edit = "0.19.11"
|
|||
|
||||
# bundling
|
||||
tauri-bundler = { version = "=1.4.*", features = ["native-tls-vendored"] }
|
||||
tauri-utils = "=1.5.*"
|
||||
|
||||
manganis-cli-support = { workspace = true, features = ["webp", "html"] }
|
||||
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
use dioxus_autofmt::{IndentOptions, IndentType};
|
||||
use futures::{stream::FuturesUnordered, StreamExt};
|
||||
use futures_util::{stream::FuturesUnordered, StreamExt};
|
||||
use std::{fs, path::Path, process::exit};
|
||||
|
||||
use super::*;
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
use futures::{stream::FuturesUnordered, StreamExt};
|
||||
use futures_util::{stream::FuturesUnordered, StreamExt};
|
||||
use std::{path::Path, process::exit};
|
||||
|
||||
use super::*;
|
||||
|
|
|
@ -7,7 +7,7 @@ use std::{
|
|||
|
||||
use anyhow::Context;
|
||||
use flate2::read::GzDecoder;
|
||||
use futures::StreamExt;
|
||||
use futures_util::StreamExt;
|
||||
use tar::Archive;
|
||||
use tokio::io::AsyncWriteExt;
|
||||
|
||||
|
|
Loading…
Reference in a new issue