Skip to content
Open
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
91 changes: 73 additions & 18 deletions Cargo.lock

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

2 changes: 1 addition & 1 deletion src/attestation/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ serde_json = "1.0"
chrono = { version = "0.4", default-features = false, features = ["std", "clock"] }
hex = "0.4"
getrandom = "0.3"
sha2 = "0.10" # Proper SHA-256 for artifact hashing
sha2 = "0.11" # Proper SHA-256 for artifact hashing
base64 = "0.22" # DSSE envelope encoding

# Optional signing support - enables build_and_sign_ed25519() method
Expand Down
2 changes: 1 addition & 1 deletion src/lib/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ log = "0.4.28"
# Structured audit logging
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["json", "env-filter"] }
sha2 = "0.10"
sha2 = "0.11"
regex = "1.12.2"
thiserror = "2.0.17"
# Security: zeroize sensitive data on drop
Expand Down
Loading