Desktop: Pin CEF version (#3113)

Fixed CEF cargo dependency so `cargo update` does not update it
This commit is contained in:
Firestar99 2025-08-31 12:22:34 +02:00 committed by GitHub
parent 29684dde45
commit be3de511f2
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
3 changed files with 8 additions and 5 deletions

9
Cargo.lock generated
View File

@ -656,9 +656,9 @@ dependencies = [
[[package]] [[package]]
name = "cef" name = "cef"
version = "139.6.0+139.0.37" version = "139.0.1+139.0.17"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "92479592f7519e5843f711b07aa2194021259a5e8301ddc1ce1ac2bee5cf1575" checksum = "39b749cfc4124f9505b3fbe32279c0e93f30831f1ecf3c2cf85863179319cd7b"
dependencies = [ dependencies = [
"cef-dll-sys", "cef-dll-sys",
"libloading", "libloading",
@ -667,9 +667,9 @@ dependencies = [
[[package]] [[package]]
name = "cef-dll-sys" name = "cef-dll-sys"
version = "139.6.0+139.0.37" version = "139.0.1+139.0.17"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "de4c379eb16bafc1fe3f40f9635827d2c5dcef44bb703245ce08c2086dfaa0f3" checksum = "fc42adb0adc477860b705e967d9f899be05ba3775fe4d6dc4d844a1391ffa3dd"
dependencies = [ dependencies = [
"anyhow", "anyhow",
"cmake", "cmake",
@ -2107,6 +2107,7 @@ dependencies = [
"ash", "ash",
"bytemuck", "bytemuck",
"cef", "cef",
"cef-dll-sys",
"core-foundation", "core-foundation",
"derivative", "derivative",
"dirs", "dirs",

View File

@ -181,7 +181,8 @@ iai-callgrind = { version = "0.16" }
ndarray = "0.16" ndarray = "0.16"
strum = { version = "0.27", features = ["derive"] } strum = { version = "0.27", features = ["derive"] }
dirs = "6.0" dirs = "6.0"
cef = "139.0" cef = "=139.0.1"
cef-dll-sys = "=139.0.1"
include_dir = "0.7" include_dir = "0.7"
tracing-subscriber = { version = "0.3", features = ["env-filter"] } tracing-subscriber = { version = "0.3", features = ["env-filter"] }
tracing = "0.1" tracing = "0.1"

View File

@ -30,6 +30,7 @@ winit = { workspace = true, features = ["serde"] }
thiserror = { workspace = true } thiserror = { workspace = true }
futures = { workspace = true } futures = { workspace = true }
cef = { workspace = true } cef = { workspace = true }
cef-dll-sys = { workspace = true }
tracing-subscriber = { workspace = true } tracing-subscriber = { workspace = true }
tracing = { workspace = true } tracing = { workspace = true }
dirs = { workspace = true } dirs = { workspace = true }