From 48947fe10854e8728231218a392071d617199d99 Mon Sep 17 00:00:00 2001 From: John Nunley Date: Sat, 22 Jun 2024 08:33:37 -0700 Subject: [PATCH] m: Restrict to bumpalo v3.12.1 This is the last version of bumpalo that compiles with wasm-bindgen's stated MSRV of v1.57. Signed-off-by: John Nunley --- crates/backend/Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crates/backend/Cargo.toml b/crates/backend/Cargo.toml index 3e8a4e5f563..27591c54e80 100644 --- a/crates/backend/Cargo.toml +++ b/crates/backend/Cargo.toml @@ -17,7 +17,7 @@ spans = [] extra-traits = ["syn/extra-traits"] [dependencies] -bumpalo = "3.0.0" +bumpalo = "~3.12.1" log = "0.4" once_cell = "1.12" proc-macro2 = "1.0"