diff options
author | GeckoEidechse <40122905+GeckoEidechse@users.noreply.github.com> | 2023-08-08 15:42:56 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-08-08 15:42:56 +0200 |
commit | a43f74af46f0995362ceb764421da4ae2e060131 (patch) | |
tree | b5905a3bc4374d5bdf670b118932aa9074cb077b /src-tauri | |
parent | b0d8f0f8c6e9586054f1a49a0201eb6ae15a3e0c (diff) | |
download | FlightCore-a43f74af46f0995362ceb764421da4ae2e060131.tar.gz FlightCore-a43f74af46f0995362ceb764421da4ae2e060131.zip |
chore: Set regex to correct version in Cargo.toml (#497)
No clue how it happened but `Cargo.toml` and `Cargo.lock` do not agree
on the version of `regex`
Diffstat (limited to 'src-tauri')
-rw-r--r-- | src-tauri/Cargo.toml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src-tauri/Cargo.toml b/src-tauri/Cargo.toml index bf18638a..d5830a84 100644 --- a/src-tauri/Cargo.toml +++ b/src-tauri/Cargo.toml @@ -37,7 +37,7 @@ libthermite = { version = "0.7.0-beta", features = ["proton"] } # zip stuff zip = "0.6.2" # Regex -regex = "1.6.0" +regex = "1.9" # Read out running application process names sysinfo = "0.29.7" # HTTP requests |