From 223bdb54eac77dc29388f2ef50671efac4641f0a Mon Sep 17 00:00:00 2001 From: Brian Martin Date: Mon, 5 Aug 2024 14:09:46 -0700 Subject: [PATCH] update pelikan-net dependency in workspace root (#133) Update the pelikan-net version in the workspace root. Fix cargo audit in CI. --- .github/workflows/cargo.yml | 5 +++-- Cargo.toml | 2 +- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/.github/workflows/cargo.yml b/.github/workflows/cargo.yml index ffbe6acd..d7c800e5 100644 --- a/.github/workflows/cargo.yml +++ b/.github/workflows/cargo.yml @@ -83,10 +83,11 @@ jobs: with: shared-key: check-ubuntu-latest save-if: false - - uses: baptiste0928/cargo-install@v1 + - uses: baptiste0928/cargo-install@v3 with: crate: cargo-audit - args: --locked + version: '0.21.0-pre.0' + locked: true - run: | cargo audit diff --git a/Cargo.toml b/Cargo.toml index 58eee29d..80ce882f 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -62,7 +62,7 @@ nom = "7.1.3" openssl = "0.10.66" openssl-sys = "0.9.103" parking_lot = "0.12.1" -pelikan-net = { path = "./src/net", version = "0.4.0" } +pelikan-net = { path = "./src/net", version = "0.4.1" } phf = "0.11.2" proc-macro2 = "1.0.69" quote = "1.0.33"