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
6 changes: 3 additions & 3 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 @@ -18,7 +18,7 @@ serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
chrono = { version = "0.4", default-features = false, features = ["std", "clock"] }
hex = "0.4"
getrandom = "0.3"
getrandom = "0.4"
sha2 = "0.10" # Proper SHA-256 for artifact hashing
base64 = "0.22" # DSSE envelope encoding

Expand Down
2 changes: 1 addition & 1 deletion src/lib/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ wsc-attestation = { version = "0.9.3", path = "../attestation" }
anyhow = "1.0.100"
ct-codecs = "1.1.6"
ed25519-compact = { version = "2.1.1", features = ["pem"] }
getrandom = { version = "0.3.4", features = ["wasm_js"] }
getrandom = { version = "0.4.2", features = ["wasm_js"] }
hmac-sha256 = "1.1.12"
log = "0.4.28"
# Structured audit logging
Expand Down
2 changes: 1 addition & 1 deletion src/verify-core/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ categories = ["cryptography", "wasm", "no-std"]
[dependencies]
ct-codecs = "1.1.6"
ed25519-compact = { version = "2.1.1", features = ["pem"] }
getrandom = { version = "0.3.4", features = ["wasm_js"] }
getrandom = { version = "0.4.2", features = ["wasm_js"] }
hmac-sha256 = "1.1.12"
log = "0.4.28"
thiserror = "2.0.17"
Expand Down
Loading