From 420b0e8898b68df8889ec0084460f9c53ca3f985 Mon Sep 17 00:00:00 2001 From: Richard Lau Date: Tue, 8 Sep 2026 12:33:14 +0000 Subject: [PATCH] build: sync cargo/rustc version warnings The version checks in `configure.py` were not updated when the minimum rustc requirement was bumped to 1.86 for temporal_rs 0.2.3. Signed-off-by: Richard Lau --- configure.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/configure.py b/configure.py index 84a688917efe..8b3332a461f4 100755 --- a/configure.py +++ b/configure.py @@ -1669,8 +1669,8 @@ def check_compiler(o): # cargo and rustc are needed for Temporal. if not options.v8_disable_temporal_support and not options.shared_temporal_capi: # Minimum cargo and rustc versions should match values in BUILDING.md. - min_cargo_ver_tuple = (1, 82) - min_rustc_ver_tuple = (1, 82) + min_cargo_ver_tuple = (1, 86) + min_rustc_ver_tuple = (1, 86) cargo = os.environ.get('CARGO', 'cargo') cargo_ver = get_cargo_version(cargo) print_verbose(f'Detected cargo (CARGO={cargo}): {cargo_ver}')