Skip to content

Commit

Permalink
chore(build): Optimize build (#1065)
Browse files Browse the repository at this point in the history
Co-authored-by: Sara Tavares <29093946+stavares843@users.noreply.github.com>
  • Loading branch information
sdwoodbury and stavares843 authored Aug 2, 2023
1 parent 53d2d06 commit bedfeb8
Show file tree
Hide file tree
Showing 13 changed files with 25 additions and 215 deletions.
191 changes: 4 additions & 187 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 1 addition & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,6 @@ fermi = { git = "https://github.com/DioxusLabs/dioxus", rev = "73a2beb3275007a65
tokio-util = { version = "0.7", features = ["full"] }
arboard = "3.2"
humansize = "2.1.3"
window-vibrancy = "0.3.2"
uuid = { version = "1", features = ["serde", "v4"] }
libloading = "0.7.4"
warp = { git = "https://github.com/Satellite-im/Warp", rev = "c8df96ca5ea72fd79c4ef94da6722ea5c8714126" }
Expand Down Expand Up @@ -82,7 +81,7 @@ zip = "0.6.4"

image = "0.24"
linkify = "0.9.0"
reqwest = "0.11.16"
reqwest = { version = "0.11", default-features=false, features = ["json", "rustls-tls", "stream"] }
select = "0.6.0"

common = { path = "common" }
Expand Down
1 change: 0 additions & 1 deletion common/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,6 @@ futures = { workspace = true }
tokio = { workspace = true }
tokio-util = { workspace = true }

mime = { workspace = true }
tempfile = { workspace = true }

warp = { workspace = true }
Expand Down
4 changes: 2 additions & 2 deletions extension_example/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
[package]
name = "extension_example"
version.workspace = true
version = { workspace = true }
edition = "2021"

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[lib]
crate-type = ["cdylib"]

[dependencies]
dioxus.workspace = true
dioxus = { workspace = true }
common = { path = "../common" }
extensions = { path = "../extensions" }
kit = { path = "../kit" }
Expand Down
1 change: 0 additions & 1 deletion extensions/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,6 @@ edition = "2021"

dioxus = { workspace = true }
libloading = { workspace = true }
derive_more = { workspace = true }

[build-dependencies]
rustc_version = "0.4.0"
8 changes: 4 additions & 4 deletions icons/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
[package]
name = "icons"
rust-version.workspace = true
version.workspace = true
rust-version = { workspace = true }
version = { workspace = true }
edition = "2021"

[dependencies]
dioxus.workspace = true
dioxus-html.workspace = true
dioxus = { workspace = true }
dioxus-html = { workspace = true }

[build-dependencies]
heck = "~0.4"
Expand Down
Loading

0 comments on commit bedfeb8

Please sign in to comment.