From 3b4d95da27e0cf5359b6619944c270c556bc443e Mon Sep 17 00:00:00 2001 From: Richard Zak Date: Wed, 6 Sep 2023 19:58:21 -0400 Subject: [PATCH] chore: bump to Rust 1.58 Signed-off-by: Richard Zak --- .github/workflows/test.yml | 2 +- ciborium-io/Cargo.toml | 2 +- ciborium-ll/Cargo.toml | 2 +- ciborium/Cargo.toml | 2 +- rust-toolchain.toml | 3 ++- 5 files changed, 6 insertions(+), 5 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 547dcf0..d3d21bc 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -18,7 +18,7 @@ jobs: fail-fast: false matrix: toolchain: - - 1.56.0 + - 1.58.0 - stable - beta - nightly diff --git a/ciborium-io/Cargo.toml b/ciborium-io/Cargo.toml index 56c3c78..7b93ef6 100644 --- a/ciborium-io/Cargo.toml +++ b/ciborium-io/Cargo.toml @@ -4,7 +4,7 @@ version = "0.2.1" authors = ["Nathaniel McCallum "] license = "Apache-2.0" edition = "2021" -rust-version = "1.56" +rust-version = "1.58" homepage = "https://github.com/enarx/ciborium" repository = "https://github.com/enarx/ciborium" description = "Simplified Read/Write traits for no_std usage" diff --git a/ciborium-ll/Cargo.toml b/ciborium-ll/Cargo.toml index a535a94..8b6049b 100644 --- a/ciborium-ll/Cargo.toml +++ b/ciborium-ll/Cargo.toml @@ -4,7 +4,7 @@ version = "0.2.1" authors = ["Nathaniel McCallum "] license = "Apache-2.0" edition = "2021" -rust-version = "1.56" +rust-version = "1.58" homepage = "https://github.com/enarx/ciborium" repository = "https://github.com/enarx/ciborium" description = "Low-level CBOR codec primitives" diff --git a/ciborium/Cargo.toml b/ciborium/Cargo.toml index b50aca5..cbedc87 100644 --- a/ciborium/Cargo.toml +++ b/ciborium/Cargo.toml @@ -4,7 +4,7 @@ version = "0.2.1" authors = ["Nathaniel McCallum "] license = "Apache-2.0" edition = "2021" -rust-version = "1.56" +rust-version = "1.58" homepage = "https://github.com/enarx/ciborium" repository = "https://github.com/enarx/ciborium" description = "serde implementation of CBOR using ciborium-basic" diff --git a/rust-toolchain.toml b/rust-toolchain.toml index 7874ce5..469a9e4 100644 --- a/rust-toolchain.toml +++ b/rust-toolchain.toml @@ -1,3 +1,4 @@ [toolchain] -channel = "1.56" +channel = "1.58" profile = "minimal" +components = ["rustfmt", "clippy"]