diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index ae24f86..d792c84 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -25,4 +25,4 @@ jobs: - name: test run: cargo test - name: audit - run: cargo install cargo-audit && cargo audit --ignore RUSTSEC-2025-0134 + run: cargo install cargo-audit && cargo audit diff --git a/Cargo.lock b/Cargo.lock index 86e7e2a..be1edf2 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -944,7 +944,6 @@ dependencies = [ "rcgen", "reqwest", "rustls", - "rustls-pemfile", "serde", "serde_json", "time", @@ -1275,15 +1274,6 @@ dependencies = [ "zeroize", ] -[[package]] -name = "rustls-pemfile" -version = "2.2.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "dce314e5fee3f39953d46bb63bb8a46d40c2f8fb7cc5a3b6cab2bde9721d6e50" -dependencies = [ - "rustls-pki-types", -] - [[package]] name = "rustls-pki-types" version = "1.14.0" diff --git a/Cargo.toml b/Cargo.toml index e88dfdb..990a6b6 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -26,4 +26,3 @@ rcgen = { version = "0.13", features = ["pem", "x509-parser"] } time = "0.3" rustls = "0.23" tokio-rustls = "0.26" -rustls-pemfile = "2"