-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Switch from app_dirs2 to etcetera, upgrade secrecy (#575)
* Switch from app_dirs2 to etcetera. * Start update to secrecy 0.10. * Updates for upgrade to secrecy. * fix: Update all calls to SecretString::new by instead calling .into() to perform the conversion * fix: Update SecretString::new calls to use .into() in crates/sdk/src/vault/gatekeeper.rs * Complete secrecy upgrade. Requires new version of pinentry and age to be published.
- Loading branch information
Showing
31 changed files
with
266 additions
and
307 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -93,7 +93,7 @@ async fn simulate_session( | |
// Create a weak account secret | ||
let weak_secret = Secret::Account { | ||
account: "[email protected]".to_string(), | ||
password: secrecy::SecretString::new("test".to_string()), | ||
password: "test".to_string().into(), | ||
url: Default::default(), | ||
user_data: Default::default(), | ||
}; | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.