From b8f331d48cdc0516f8aa90d9bb80ccc971de0bed Mon Sep 17 00:00:00 2001 From: Github Action Date: Sun, 15 Jun 2025 01:12:07 +0000 Subject: [PATCH 1/2] ci: automated update to rustc 1.87.0 --- rust-version | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rust-version b/rust-version index f288d111..f6342716 100644 --- a/rust-version +++ b/rust-version @@ -1 +1 @@ -1.85.0 +1.87.0 From 1c1b1cd41ba60d044cf04c892a60d1afef3542af Mon Sep 17 00:00:00 2001 From: Steve Myers Date: Mon, 26 May 2025 21:12:45 -0500 Subject: [PATCH 2/2] ci(clippy): allow larger enum variant size and errors for rustc 1.87 Set to current largest size enum and error sizes. --- clippy.toml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/clippy.toml b/clippy.toml index 69478cea..ead89212 100644 --- a/clippy.toml +++ b/clippy.toml @@ -1 +1,4 @@ -msrv="1.63.0" +# TODO fix, see: https://rust-lang.github.io/rust-clippy/master/index.html#large_enum_variant +enum-variant-size-threshold = 1032 +# TODO fix, see: https://rust-lang.github.io/rust-clippy/master/index.html#result_large_err +large-error-threshold = 993 \ No newline at end of file