Skip to content
Closed
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 builtins/plugins/delegator-oauth/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ tracing = { workspace = true }
# read-only interop check (did the IdP honor the RFC 8693 `actor_token`
# and emit an `act` claim). We never verify the signature here — the
# token is already trusted, having just come from our own IdP roundtrip.
base64 = "0.22"
base64 = "0.23"

# Secret-clearing wrapper for client credentials in memory.
zeroize = { version = "1.9", features = ["zeroize_derive"] }
Expand Down
2 changes: 1 addition & 1 deletion builtins/plugins/elicitation-ciba/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ praxis-policy-core = { workspace = true }

# `base64` to decode the JWT payload segment for the approver claim
# (claims extraction only — see the validate notes in approver.rs).
base64 = "0.22"
base64 = "0.23"

async-trait = { workspace = true }
serde = { workspace = true }
Expand Down
2 changes: 1 addition & 1 deletion builtins/plugins/identity-jwt/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ jsonwebtoken = { version = "11", features = ["aws_lc_rs"] }
# `base64` for the peek-at-iss helper (split + URL_SAFE_NO_PAD decode
# of the middle JWT segment). Pinned to 0.22 to match what
# jsonwebtoken pulls — Cargo dedups to a single version.
base64 = "0.22"
base64 = "0.23"

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

[Medium] This comment still says "Pinned to 0.22 to match what jsonwebtoken pulls" but the version is now 0.23. The comment should be updated to reflect the new version, or rephrased to drop the specific version reference since base64 and jsonwebtoken may diverge independently.


# `chrono` for the `resolved_at` timestamp on IdentityPayload. Comes
# in transitively via praxis-policy-core already; redeclaring keeps the
Expand Down