fix(deps): update rust crate secrecy to 0.10 #35
No reviewers
Labels
No labels
Kind/Breaking
Kind/Bug
Kind/Documentation
Kind/Enhancement
Kind/Feature
Kind/Security
Kind/Testing
Priority
Critical
Priority
High
Priority
Low
Priority
Medium
Reviewed
Confirmed
Reviewed
Duplicate
Reviewed
Invalid
Reviewed
Won't Fix
Status
Abandoned
Status
Blocked
Status
Need More Info
No milestone
No project
No assignees
1 participant
Notifications
Due date
No due date set.
Dependencies
No dependencies set.
Reference: kemitix/kxio#35
Loading…
Reference in a new issue
No description provided.
Delete branch "renovate/secrecy-0.x"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
This PR contains the following updates:
0.8
->0.10
Release Notes
iqlusioninc/crates (secrecy)
v0.10.0
This release represents a significant redesign of the
secrecy
crate. We will update this sectionwith upgrade instructions based on feedback from people upgrading, as it's been a long time since
the previous release, and this release includes a number of breaking changes.
The most notable change is the generic
Secret<T>
type has been removed: instead useSecretBox<T>
which stores secrets on the heap instead of the stack. Many of the other changes fall out of this
change and things which were previously type aliases of
Secret<T>
are now type aliases ofSecretBox<T>
.This unfortunately means this crate no longer has support for "heapless"
no_std
targets. We don'thave a good solution for these targets, which was a motivation for this change in the first place.
Added
SecretBox::{init_with, try_init_with}
(#1212)SecretBox::init_with_mut
(#1213)?Sized
bounds forSecretBox
(#1213)SecretSlice<T>
(#1214)Changed
SecretBox<T>
is now a newtype rather than a type alias of `Secret<Box> (#1140)SecretString
is now a type alias forSecretBox<str>
(#1213)serde
default features (#1194)Removed
alloc
feature: now a hard dependency (#1140)bytes
crate integration: no replacement (#1140)DebugSecret
trait: no replacement (#1140)Secret<T>
: useSecretBox<T>
instead (#1140)Configuration
📅 Schedule: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).
🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.
♻ Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.
🔕 Ignore: Close this PR and you won't be reminded about this update again.
This PR has been generated by Renovate Bot.