You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I understand that this modification is currently marked under the untested feature. Nevertheless, moving to the use of an immutable slice would definitely enhance the API.
The text was updated successfully, but these errors were encountered:
In the current version, the
Yubikey::save_object
method requires a mutable reference to the data being saved:yubikey.rs/src/yubikey.rs
Lines 629 to 634 in b07612e
However, it appears that the mutability requirement is unnecessary, given that the
Transaction::save_object
method accepts an immutable slice:yubikey.rs/src/transaction.rs
Lines 486 to 488 in b07612e
I understand that this modification is currently marked under the
untested
feature. Nevertheless, moving to the use of an immutable slice would definitely enhance the API.The text was updated successfully, but these errors were encountered: