From f3b4525c45a05a351460458d8fdc4b4d1fe63a54 Mon Sep 17 00:00:00 2001 From: Bruce Mitchener Date: Sat, 15 Jun 2024 12:54:04 +0700 Subject: [PATCH] ci: Force older version of unicode-width for MSRV unicode-width 0.1.13 added code which didn't compile with Rust 1.56 --- Makefile | 1 + 1 file changed, 1 insertion(+) diff --git a/Makefile b/Makefile index b779cf41..aa4caaa4 100644 --- a/Makefile +++ b/Makefile @@ -36,5 +36,6 @@ lint: msrv-lock: @cargo update -p proptest --precise=1.0.0 @cargo update -p byteorder --precise=1.4.0 + @cargo update -p unicode-width --precise=0.1.12 .PHONY: all doc build check test format format-check lint check-minver msrv-lock