mirror of
https://github.com/MindWorkAI/AI-Studio.git
synced 2025-02-05 10:29:07 +00:00
Migrated to keyring v3.2.0 (#101)
This commit is contained in:
parent
e4ef4bc06e
commit
47f5756e5a
2
app/MindWork AI Studio/wwwroot/changelog/v0.8.13.md
Normal file
2
app/MindWork AI Studio/wwwroot/changelog/v0.8.13.md
Normal file
@ -0,0 +1,2 @@
|
||||
# v0.8.13, build 175
|
||||
- Upgraded `keyring` dependency to v3.2.0.
|
752
runtime/Cargo.lock
generated
752
runtime/Cargo.lock
generated
File diff suppressed because it is too large
Load Diff
@ -13,7 +13,7 @@ tauri = { version = "1.7.1", features = [ "updater", "http-all", "shell-sidecar"
|
||||
tauri-plugin-window-state = { git = "https://github.com/tauri-apps/plugins-workspace", branch = "v1" }
|
||||
serde = { version = "1.0", features = ["derive"] }
|
||||
serde_json = "1.0"
|
||||
keyring = "2"
|
||||
keyring = { version = "3.2.0", features = ["apple-native", "windows-native", "sync-secret-service"] }
|
||||
arboard = "3.4.0"
|
||||
tokio = "1.39"
|
||||
flexi_logger = "0.28"
|
||||
|
@ -454,7 +454,7 @@ struct RequestedSecret {
|
||||
fn delete_secret(destination: String, user_name: String) -> DeleteSecretResponse {
|
||||
let service = format!("mindwork-ai-studio::{}", destination);
|
||||
let entry = Entry::new(service.as_str(), user_name.as_str()).unwrap();
|
||||
let result = entry.delete_password();
|
||||
let result = entry.delete_credential();
|
||||
|
||||
match result {
|
||||
Ok(_) => {
|
||||
|
Loading…
Reference in New Issue
Block a user