diff options
author | Jan <sentrycraft123@gmail.com> | 2024-04-14 22:59:04 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-04-14 22:59:04 +0200 |
commit | a2384fa2e9bbef22cab3b1e09a9f7e4e6d7e89b4 (patch) | |
tree | 9d334ad2c758134287b5f744f3a6c6ebe73d881c /src-tauri | |
parent | 7ab55d005aa7661d1eed6cb0a77ee6b269bfdf91 (diff) | |
download | FlightCore-a2384fa2e9bbef22cab3b1e09a9f7e4e6d7e89b4.tar.gz FlightCore-a2384fa2e9bbef22cab3b1e09a9f7e4e6d7e89b4.zip |
chore: Update tauri-plugin-store (#894)
Update tauri-plugin-store plugin to a newer version to address an error during building.
Diffstat (limited to 'src-tauri')
-rw-r--r-- | src-tauri/Cargo.lock | 4 | ||||
-rw-r--r-- | src-tauri/Cargo.toml | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/src-tauri/Cargo.lock b/src-tauri/Cargo.lock index af020561..f4ffa228 100644 --- a/src-tauri/Cargo.lock +++ b/src-tauri/Cargo.lock @@ -4721,8 +4721,8 @@ dependencies = [ [[package]] name = "tauri-plugin-store" -version = "0.1.0" -source = "git+https://github.com/tauri-apps/plugins-workspace?rev=5a6abd3203dc94c38f96d0c4bf7ecbef399f8c25#5a6abd3203dc94c38f96d0c4bf7ecbef399f8c25" +version = "0.0.0" +source = "git+https://github.com/tauri-apps/plugins-workspace?branch=v1#4aeee08cde4cf8253b7b52c2204655ac8bb6769d" dependencies = [ "log", "serde", diff --git a/src-tauri/Cargo.toml b/src-tauri/Cargo.toml index fb044462..7d08c777 100644 --- a/src-tauri/Cargo.toml +++ b/src-tauri/Cargo.toml @@ -43,7 +43,7 @@ sysinfo = "0.30.7" # HTTP requests reqwest = { version = "0.11", features = ["blocking"] } # Persistent store for settings -tauri-plugin-store = { git = "https://github.com/tauri-apps/plugins-workspace", rev = "5a6abd3203dc94c38f96d0c4bf7ecbef399f8c25" } +tauri-plugin-store = { git = "https://github.com/tauri-apps/plugins-workspace", branch = "v1" } # JSON5 parsing support (allows comments in JSON) json5 = "0.4.1" # Async recursion for recursive mod install |