From d29b8a487f1de324bf45a0c5d60e93a015bfa038 Mon Sep 17 00:00:00 2001 From: Adam Reichold Date: Tue, 9 May 2023 21:49:47 +0200 Subject: [PATCH] Pin web-sys, js-sys and wasm-bindgen to avoid syn 2.0 as it is incompatible with our MSRV. --- noxfile.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/noxfile.py b/noxfile.py index db75ac578e2..f068492dd6f 100644 --- a/noxfile.py +++ b/noxfile.py @@ -452,6 +452,9 @@ def set_minimal_package_versions(session: nox.Session): "cxx": "1.0.92", "cxxbridge-macro": "1.0.92", "cxx-build": "1.0.92", + "web-sys": "0.3.61", + "js-sys": "0.3.61", + "wasm-bindgen": "0.2.84", "syn": "1.0.109", }