1
0
mirror of https://github.com/emilk/egui.git synced 2026-08-31 05:40:03 -04:00

Run wasm-bindgen in CI and update parking_lot (#1293)

* Run wasm-bindgen in CI
* Update parking_lot 0.11 -> 0.12
This commit is contained in:
Emil Ernerfeldt
2022-02-22 16:30:42 +01:00
committed by GitHub
parent 2e1a4cf08a
commit c5a9421dbd
7 changed files with 103 additions and 10 deletions

46
Cargo.lock generated
View File

@@ -1060,7 +1060,7 @@ version = "0.16.0"
dependencies = [
"egui",
"image",
"parking_lot",
"parking_lot 0.12.0",
"resvg",
"tiny-skia",
"usvg",
@@ -1209,7 +1209,7 @@ dependencies = [
"criterion",
"emath",
"nohash-hasher",
"parking_lot",
"parking_lot 0.12.0",
"serde",
]
@@ -1517,7 +1517,7 @@ dependencies = [
"log",
"objc",
"osmesa-sys",
"parking_lot",
"parking_lot 0.11.2",
"wayland-client",
"wayland-egl",
"winapi",
@@ -2287,7 +2287,17 @@ checksum = "7d17b78036a60663b797adeaee46f5c9dfebb86948d1255007a1d6be0271ff99"
dependencies = [
"instant",
"lock_api",
"parking_lot_core",
"parking_lot_core 0.8.5",
]
[[package]]
name = "parking_lot"
version = "0.12.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "87f5ec2493a61ac0506c0f4199f99070cbe83857b0337006a30f3e6719b8ef58"
dependencies = [
"lock_api",
"parking_lot_core 0.9.1",
]
[[package]]
@@ -2304,6 +2314,19 @@ dependencies = [
"winapi",
]
[[package]]
name = "parking_lot_core"
version = "0.9.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "28141e0cc4143da2443301914478dc976a61ffdb3f043058310c70df2fed8954"
dependencies = [
"cfg-if 1.0.0",
"libc",
"redox_syscall",
"smallvec",
"windows-sys",
]
[[package]]
name = "peeking_take_while"
version = "0.1.2"
@@ -3713,6 +3736,19 @@ dependencies = [
"windows_x86_64_msvc",
]
[[package]]
name = "windows-sys"
version = "0.32.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "3df6e476185f92a12c072be4a189a0210dcdcf512a1891d6dff9edb874deadc6"
dependencies = [
"windows_aarch64_msvc",
"windows_i686_gnu",
"windows_i686_msvc",
"windows_x86_64_gnu",
"windows_x86_64_msvc",
]
[[package]]
name = "windows_aarch64_msvc"
version = "0.32.0"
@@ -3764,7 +3800,7 @@ dependencies = [
"ndk-glue 0.5.1",
"ndk-sys 0.2.2",
"objc",
"parking_lot",
"parking_lot 0.11.2",
"percent-encoding",
"raw-window-handle",
"smithay-client-toolkit",