Skip to content

Commit 7e8cdc7

Browse files
Merge pull request #29 from theseus-rs/add-driver-examples
docs: add postgres driver and sqlx examples
2 parents ee496e1 + 22dfcfa commit 7e8cdc7

File tree

10 files changed

+1141
-38
lines changed

10 files changed

+1141
-38
lines changed

.github/workflows/checks.yml

Lines changed: 21 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,8 +24,28 @@ jobs:
2424
uses: Swatinem/rust-cache@v2
2525
- name: Install cargo audit
2626
run: cargo install cargo-audit
27+
28+
# Ignoring RUSTSEC-2023-0071 as it only occurs in a dependency used in an example
29+
# and is not exploitable in the context of this project.
30+
#
31+
# Crate: rsa
32+
# Version: 0.9.6
33+
# Title: Marvin Attack: potential key recovery through timing sidechannels
34+
# Date: 2023-11-22
35+
# ID: RUSTSEC-2023-0071
36+
# URL: https://rustsec.org/advisories/RUSTSEC-2023-0071
37+
# Severity: 5.9 (medium)
38+
# Solution: No fixed upgrade is available!
39+
# Dependency tree:
40+
# rsa 0.9.6
41+
# └── sqlx-mysql 0.7.3
42+
# ├── sqlx-macros-core 0.7.3
43+
# │ └── sqlx-macros 0.7.3
44+
# │ └── sqlx 0.7.3
45+
# │ └── sqlx_embedded 0.4.1
46+
# └── sqlx 0.7.3
2747
- name: Audit dependencies
28-
run: cargo audit
48+
run: cargo audit --ignore RUSTSEC-2023-0071
2949

3050
check:
3151
runs-on: ubuntu-22.04

0 commit comments

Comments
 (0)