update cef

This commit is contained in:
Lucas Nogueira
2025-11-11 10:29:41 -03:00
parent 147ff6be30
commit f1f5b58c88
4 changed files with 21 additions and 28 deletions

44
Cargo.lock generated
View File

@@ -1172,23 +1172,25 @@ dependencies = [
[[package]]
name = "cef"
version = "141.6.0+141.0.11"
source = "git+https://github.com/tauri-apps/cef-rs?branch=fix/interface-cast#6c32f2d0114918463000deb735ab4d931366fbc0"
version = "142.0.0+142.0.8"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e9dea3afc35e20dd9075356f9484cd70691a9ce423c46528f9d47d041189e577"
dependencies = [
"cef-dll-sys",
"libloading 0.8.6",
"libloading 0.9.0",
"objc2 0.6.3",
"windows-sys 0.61.1",
]
[[package]]
name = "cef-dll-sys"
version = "141.6.0+141.0.11"
source = "git+https://github.com/tauri-apps/cef-rs?branch=fix/interface-cast#6c32f2d0114918463000deb735ab4d931366fbc0"
version = "142.0.0+142.0.8"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "8b41eede51cb3240269e46f0f7209f636ddc8e4c82b89cbba8ad4ef3400ea37c"
dependencies = [
"anyhow",
"cmake",
"download-cef 2.2.0 (git+https://github.com/tauri-apps/cef-rs?branch=fix/interface-cast)",
"download-cef",
"serde_json",
]
@@ -2121,24 +2123,6 @@ dependencies = [
"ureq",
]
[[package]]
name = "download-cef"
version = "2.2.0"
source = "git+https://github.com/tauri-apps/cef-rs?branch=fix/interface-cast#6c32f2d0114918463000deb735ab4d931366fbc0"
dependencies = [
"bzip2 0.6.0",
"clap",
"indicatif",
"regex",
"semver",
"serde",
"serde_json",
"sha1_smol",
"tar",
"thiserror 2.0.12",
"ureq",
]
[[package]]
name = "dpi"
version = "0.1.1"
@@ -4451,6 +4435,16 @@ dependencies = [
"windows-targets 0.52.6",
]
[[package]]
name = "libloading"
version = "0.9.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "754ca22de805bb5744484a5b151a9e1a8e837d5dc232c2d7d8c2e3492edc8b60"
dependencies = [
"cfg-if",
"windows-link 0.2.0",
]
[[package]]
name = "libm"
version = "0.2.11"
@@ -8777,7 +8771,7 @@ dependencies = [
"ctrlc",
"dialoguer",
"dirs 6.0.0",
"download-cef 2.2.0 (registry+https://github.com/rust-lang/crates.io-index)",
"download-cef",
"duct",
"dunce",
"elf",

View File

@@ -73,4 +73,3 @@ schemars_derive = { git = 'https://github.com/tauri-apps/schemars.git', branch =
tauri = { path = "./crates/tauri" }
tauri-plugin = { path = "./crates/tauri-plugin" }
tauri-utils = { path = "./crates/tauri-utils" }
cef = { git = "https://github.com/tauri-apps/cef-rs", branch = "fix/interface-cast" }

View File

@@ -6,5 +6,5 @@
"tauri": "2.9.2",
"tauri-build": "2.5.1",
"tauri-plugin": "2.5.1",
"cef": "141.6.0+141.0.11"
"cef": "142.0.0+142.0.8"
}

View File

@@ -18,7 +18,7 @@ html5ever = "0.29"
raw-window-handle = "0.6"
url = "2"
http = "1"
cef = "141.6.0"
cef = "142.0.0"
serde = { version = "1", features = ["derive"] }
serde_json = "1"
kuchiki = { package = "kuchikiki", version = "0.8.8-speedreader" }