diff options
author | Jan <sentrycraft123@gmail.com> | 2023-07-02 19:55:27 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-07-02 19:55:27 +0200 |
commit | b4728ee0065d6913e0d7e5e1cfce55431d7496db (patch) | |
tree | 641905336304f3a623a4a8879c9564be8113c6f6 /src-tauri/Cargo.toml | |
parent | b8b715fbebfd8c3d4278a3359fbed1a52da4780f (diff) | |
download | FlightCore-b4728ee0065d6913e0d7e5e1cfce55431d7496db.tar.gz FlightCore-b4728ee0065d6913e0d7e5e1cfce55431d7496db.zip |
chore: replace game_scanner usage with winreg (#394)
Slashes a bunch of unnecessary dependencies
Diffstat (limited to 'src-tauri/Cargo.toml')
-rw-r--r-- | src-tauri/Cargo.toml | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src-tauri/Cargo.toml b/src-tauri/Cargo.toml index 4a10be77..c318fea6 100644 --- a/src-tauri/Cargo.toml +++ b/src-tauri/Cargo.toml @@ -48,9 +48,6 @@ tauri-plugin-store = { git = "https://github.com/tauri-apps/plugins-workspace", json5 = "0.4.1" # Async recursion for recursive mod install async-recursion = "1.0.0" -# Game scanner -# Use specific commit that updates deprecated library -game-scanner = { git = "https://github.com/EqualGames/game-scanner.git", rev = "94dcbd086a5987361a2847988a060da9b5dd3908" } # For parsing timestamps chrono = "0.4.23" # TypeScript bindings @@ -64,9 +61,12 @@ log = "0.4.17" zip-extract = "0.1.2" # open urls open = "3.2.0" +semver = "1.0" + +[target.'cfg(windows)'.dependencies] # Windows API stuff winapi = "0.3.9" -semver = "1.0" +winreg = "0.11.0" [features] # by default Tauri runs in production mode |