From be071b2111e330b7eb5c4f7852a9b648ba6dd187 Mon Sep 17 00:00:00 2001 From: Roman Zeyde Date: Tue, 19 Oct 2021 17:35:57 +0300 Subject: [PATCH 1/2] Update tiny_http Fix #575 --- Cargo.lock | 4 ++-- Cargo.toml | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 9796b65ee..ffb9ea20e 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1146,9 +1146,9 @@ dependencies = [ [[package]] name = "tiny_http" -version = "0.8.2" +version = "0.9.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "9ce51b50006056f590c9b7c3808c3bd70f0d1101666629713866c227d6e58d39" +checksum = "96155b5f7149ba7a99ea5d516c538250b26eab60b4485c0f5344432573e7a450" dependencies = [ "ascii", "chrono", diff --git a/Cargo.toml b/Cargo.toml index 9f7cb4c5c..044b00a3d 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -37,7 +37,7 @@ serde = "1.0" serde_derive = "1.0" serde_json = "1.0" signal-hook = "0.3" -tiny_http = { version = "0.8", optional = true } +tiny_http = { version = "0.9", optional = true } [dependencies.electrs-rocksdb] # support building with Rust 1.41.1 and workaround the following issues: From bdbe3a96a5f27ae3d22df80154fbd5edc98ae6db Mon Sep 17 00:00:00 2001 From: Roman Zeyde Date: Tue, 19 Oct 2021 21:11:20 +0300 Subject: [PATCH 2/2] Drop `cargo audit` action for now Not sure if it's possible to ignore `RUSTSEC-2020-0159` on GitHub CI. --- .github/workflows/rust.yml | 13 ------------- 1 file changed, 13 deletions(-) diff --git a/.github/workflows/rust.yml b/.github/workflows/rust.yml index 38bf09e39..0e7ac6004 100644 --- a/.github/workflows/rust.yml +++ b/.github/workflows/rust.yml @@ -7,19 +7,6 @@ on: - cron: '0 0 * * *' # once a day jobs: - audit: - name: Audit - runs-on: ubuntu-latest - steps: - - uses: actions/checkout@v2 - - uses: actions-rs/install@v0.1 - with: - crate: cargo-audit - use-tool-cache: true - - uses: actions-rs/audit-check@v1 - with: - token: ${{ secrets.GITHUB_TOKEN }} - build: name: Build runs-on: ubuntu-latest