Skip to content

Commit 9b7abe4

Browse files
authored
Auto merge of #254 - dsherret:chore_bump_parking_lot, r=KiChjang
fix: bump parking_lot to 0.12 in order to not create wasm export parking_lot 0.11 was using parking_lot_core 0.8 which was creating a wasm export when targeting wasm: Amanieu/parking_lot#269 This bumps to parking_lot 0.12, which uses parking_lot_core 0.9 which doesn't have the issue where it creates the wasm export.
2 parents 1bc78c3 + 6c0f825 commit 9b7abe4

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919

2020
strategy:
2121
matrix:
22-
rust: [1.40.0, nightly, beta, stable]
22+
rust: [1.49.0, nightly, beta, stable]
2323

2424
steps:
2525
- uses: actions/checkout@v2

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ lazy_static = "1.1.0"
2727
serde = { version = "1", optional = true }
2828
phf_shared = "0.10"
2929
new_debug_unreachable = "1.0.2"
30-
parking_lot = "0.11"
30+
parking_lot = "0.12"
3131

3232
[[test]]
3333
name = "small-stack"

0 commit comments

Comments
 (0)