From 42dd7f36d62a99ef25b3ed30a46eb051d54ae88e Mon Sep 17 00:00:00 2001 From: Victor Roest Date: Wed, 18 Nov 2020 10:17:51 +0100 Subject: [PATCH 1/3] Move to min_const_generics --- src/lib.rs | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/lib.rs b/src/lib.rs index 9693f05..543283c 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -1,6 +1,5 @@ #![no_std] -#![cfg_attr(feature = "const_generics", feature(const_generics))] -#![cfg_attr(feature = "const_generics", allow(incomplete_features))] +#![cfg_attr(feature = "const_generics", feature(min_const_generics))] #![deny(missing_docs)] #![deny(warnings)] #![deny(unused_import_braces)] From 633b2a17708fb9127ba4d5e4977629a8048e4d42 Mon Sep 17 00:00:00 2001 From: Victor Roest Date: Wed, 18 Nov 2020 10:23:50 +0100 Subject: [PATCH 2/3] Move to 1.0.0 for array-init --- Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index a462362..6afdea2 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -15,7 +15,7 @@ lto = true [dependencies] generic-array = {version = "0.14.4", optional=true} -array-init = {git = "https://github.com/manishearth/array-init", version = "0.1.1", optional=true} +array-init = { version = "1.0.0", optional=true} [dev-dependencies] criterion = "0.1.2" From e837bb9f1df629f38e4c2f4bf384d0dbaa1af942 Mon Sep 17 00:00:00 2001 From: Victor Roest Date: Wed, 18 Nov 2020 10:27:34 +0100 Subject: [PATCH 3/3] Upgrade tarpaulin github action to 0.1.3 --- .github/workflows/rust.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/rust.yml b/.github/workflows/rust.yml index cb6ae59..f8057a7 100644 --- a/.github/workflows/rust.yml +++ b/.github/workflows/rust.yml @@ -63,7 +63,7 @@ jobs: override: true - name: rust-tarpaulin - uses: actions-rs/tarpaulin@v0.1.0 + uses: actions-rs/tarpaulin@v0.1.3 with: args: --all-features --out Xml