Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion .github/workflows/cargo-audit.yml
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,8 @@ jobs:
set +e
cargo audit \
--ignore RUSTSEC-2024-0436 \
--ignore RUSTSEC-2025-0134
--ignore RUSTSEC-2025-0134 \
--ignore RUSTSEC-2023-0071
status=$?
set -e
case "$status" in
Expand Down
135 changes: 109 additions & 26 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 5 additions & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,11 @@ serde = { version = "1", features = ["derive"] }
serde_json = { version = "1", features = ["preserve_order"] }

# Database
sqlx = { version = "0.8", features = ["runtime-tokio-rustls", "postgres", "macros", "migrate", "chrono", "bigdecimal", "uuid"] }
# default-features = false drops `any` (multi-backend abstraction) which we
# don't use; combined with explicit `postgres` it stops the resolver from
# pulling sqlx-mysql/sqlx-sqlite into Cargo.lock. Eliminates the rsa
# RUSTSEC-2023-0071 (Marvin) advisory chain (audit 2026-05-13).
sqlx = { version = "0.8", default-features = false, features = ["runtime-tokio-rustls", "postgres", "macros", "migrate", "chrono", "bigdecimal", "uuid", "json"] }

# Chain types (alloy)
alloy-primitives = "1"
Expand Down
Loading
Loading