-
Notifications
You must be signed in to change notification settings - Fork 0
chore(deps): update rust crate base64 to 0.23 #38
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. Weβll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: main
Are you sure you want to change the base?
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -12,7 +12,7 @@ categories = ["api-bindings"] | |
| [dependencies] | ||
| ureq = "2" | ||
| serde_json = "1" | ||
| base64 = "0.22" # 0.5.1 β wallet_hook(privy) needs Basic auth encoding | ||
| base64 = "0.23" # 0.5.1 β wallet_hook(privy) needs Basic auth encoding | ||
|
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. π New default-on SIMD engine feature ships unsafe code into the SDK Per the release notes quoted in the PR, base64 0.23 adds SIMD-accelerated engines behind a default-on Was this helpful? React with π or π to provide feedback. |
||
| urlencoding = "2" # 0.5.1 β wallet_hook(privy) URL-encodes the wallet_id path segment | ||
| p256 = { version = "0.13", features = ["pkcs8", "ecdsa"] } # 0.6.2 β CDP-JWT (ES256) signing | ||
| rand_core = "0.6" # 0.6.2 β nonce randomness for CDP-JWT | ||
Uh oh!
There was an error while loading. Please reload this page.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
π Info: APIs used by the SDK are unaffected by the 0.22β0.23 bump; MSRV not pinned in-repo
Only two base64 usages exist in the Rust SDK β
base64::engine::general_purpose::URL_SAFE_NO_PAD.encode(sdk/rust/src/lib.rs:30) andgeneral_purpose::STANDARD.encode(sdk/rust/src/lib.rs:234) β both engine-API calls introduced in 0.21 and retained in 0.23; the 0.23 breaking notes concernDecodeError::InvalidLastSymboland new consts/features, none of which are used (no decoding anywhere in the SDK). The new MSRV of 1.71.0 is also not a conflict: neithersdk/rust/Cargo.tomlnor any workflow pins arust-version/toolchain. Existing precedent in git history also shows dependency bumps not being recorded inCHANGELOG.md, so the missing Unreleased entry matches convention for non-user-facing chores.Was this helpful? React with π or π to provide feedback.