Skip to content

Commit

Permalink
chore(deps) Update Tauri Core - abandoned (#5253)
Browse files Browse the repository at this point in the history
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: Lucas Nogueira <[email protected]>
Co-authored-by: Lucas Nogueira <[email protected]>
  • Loading branch information
3 people committed Aug 14, 2023
1 parent 7fb419c commit d928d23
Show file tree
Hide file tree
Showing 3 changed files with 61 additions and 59 deletions.
18 changes: 9 additions & 9 deletions core/tauri/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ serde = { version = "1.0", features = [ "derive" ] }
tokio = { version = "1", features = [ "rt", "rt-multi-thread", "sync", "fs", "io-util" ] }
futures-util = "0.3"
uuid = { version = "1", features = [ "v4" ] }
url = { version = "2.3" }
url = { version = "2.4" }
anyhow = "1.0"
thiserror = "1.0"
once_cell = "1"
Expand All @@ -55,17 +55,17 @@ serde_repr = "0.1"
state = "0.6"
http = "0.2"
dirs-next = "2.0"
percent-encoding = "2.2"
percent-encoding = "2.3"
reqwest = { version = "0.11", default-features = false, features = [ "json", "stream" ] }
bytes = { version = "1", features = [ "serde" ] }
raw-window-handle = "0.5"
glob = "0.3"
mime = "0.3"
data-url = { version = "0.2", optional = true }
data-url = { version = "0.3", optional = true }
serialize-to-javascript = "=0.1.1"
infer = { version = "0.9", optional = true }
infer = { version = "0.15", optional = true }
png = { version = "0.17", optional = true }
ico = { version = "0.2.0", optional = true }
ico = { version = "0.3.0", optional = true }


[target."cfg(any(target_os = \"linux\", target_os = \"dragonfly\", target_os = \"freebsd\", target_os = \"openbsd\", target_os = \"netbsd\", target_os = \"windows\", target_os = \"macos\"))".dependencies]
Expand All @@ -79,7 +79,7 @@ webkit2gtk = { version = "1.1", features = [ "v2_38" ] }

[target."cfg(target_os = \"macos\")".dependencies]
embed_plist = "1.2"
cocoa = "0.24"
cocoa = "0.25"
objc = "0.2"

[target."cfg(windows)".dependencies]
Expand All @@ -99,16 +99,16 @@ jni = "0.21"
[target."cfg(target_os = \"ios\")".dependencies]
libc = "0.2"
objc = "0.2"
cocoa = "0.24"
swift-rs = "1.0.4"
cocoa = "0.25"
swift-rs = "1.0.5"

[build-dependencies]
heck = "0.4"
once_cell = "1"
tauri-build = { path = "../tauri-build/", version = "2.0.0-alpha.1" }

[dev-dependencies]
proptest = "1.0.0"
proptest = "1.2.0"
quickcheck = "1.0.3"
quickcheck_macros = "1.0.0"
serde = { version = "1.0", features = [ "derive" ] }
Expand Down
97 changes: 48 additions & 49 deletions examples/api/src-tauri/Cargo.lock

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

5 changes: 4 additions & 1 deletion tooling/cli/src/interface/rust/manifest.rs
Original file line number Diff line number Diff line change
Expand Up @@ -289,7 +289,10 @@ pub fn rewrite_manifest(config: &Config) -> crate::Result<Manifest> {
dependencies.push(DependencyAllowlist {
name: "tauri".into(),
kind: DependencyKind::Normal,
all_cli_managed_features: crate::helpers::config::TauriConfig::all_features(),
all_cli_managed_features: crate::helpers::config::TauriConfig::all_features()
.into_iter()
.filter(|f| f != &"tray-icon")
.collect(),
features: tauri_features,
});

Expand Down

0 comments on commit d928d23

Please sign in to comment.