From 92b175fb38fd249aa76198ce895a31d35caaabb5 Mon Sep 17 00:00:00 2001 From: iliana etaoin Date: Tue, 16 Jun 2026 15:11:04 -0700 Subject: [PATCH 1/2] update reqwest to 0.13 --- Cargo.toml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 829443a..5ebbf58 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "omicron-zone-package" -version = "0.12.2" +version = "0.12.3" authors = ["Sean Klein "] edition = "2021" rust-version = "1.81.0" @@ -20,7 +20,7 @@ flate2 = "1.0.25" futures = "0.3" futures-util = "0.3" hex = "0.4.3" -reqwest = { version = "0.12", default-features = false, features = ["rustls-tls", "stream"] } +reqwest = { version = "0.13", default-features = false, features = ["default-tls", "stream"] } semver = { version = "1.0.17", features = ["std", "serde"] } serde = { version = "1.0", features = [ "derive" ] } serde_derive = "1.0" From 6c6abacc64dcf2ad233e3625577a09d26eb65dbc Mon Sep 17 00:00:00 2001 From: iliana etaoin Date: Tue, 16 Jun 2026 15:16:40 -0700 Subject: [PATCH 2/2] bump MSRV to 1.86 --- .github/workflows/rust.yml | 4 ++-- Cargo.toml | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/rust.yml b/.github/workflows/rust.yml index 04e2f97..80184e9 100644 --- a/.github/workflows/rust.yml +++ b/.github/workflows/rust.yml @@ -33,8 +33,8 @@ jobs: runs-on: ${{ matrix.os }} strategy: matrix: - # 1.81 is the MSRV. - toolchain: [ stable, "1.81" ] + # 1.86 is the MSRV. + toolchain: [ stable, "1.86" ] os: [ ubuntu-latest, macos-latest ] steps: # actions/checkout@v2 diff --git a/Cargo.toml b/Cargo.toml index 5ebbf58..3458151 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -3,7 +3,7 @@ name = "omicron-zone-package" version = "0.12.3" authors = ["Sean Klein "] edition = "2021" -rust-version = "1.81.0" +rust-version = "1.86.0" license = "MPL-2.0" repository = "https://github.com/oxidecomputer/omicron-package" description = "Packaging tools for Oxide's control plane software"