aboutsummaryrefslogtreecommitdiff
path: root/src-tauri/Cargo.lock
diff options
context:
space:
mode:
authorGeckoEidechse <40122905+GeckoEidechse@users.noreply.github.com>2022-11-13 15:29:29 +0100
committerGitHub <noreply@github.com>2022-11-13 15:29:29 +0100
commitfa25001d7f2a1962de8990f077f7f1601679a292 (patch)
tree95116620a6bff140826154a2bd39a965f1955d03 /src-tauri/Cargo.lock
parent8393a08f4cb937805d41bb9a0f7901fb5221746e (diff)
downloadFlightCore-fa25001d7f2a1962de8990f077f7f1601679a292.tar.gz
FlightCore-fa25001d7f2a1962de8990f077f7f1601679a292.zip
feat: Add JSON5 support, allows comments in JSON (#50)
Some mods have comments in their JSON. Northstar handles it fine, so we should too.
Diffstat (limited to 'src-tauri/Cargo.lock')
-rw-r--r--src-tauri/Cargo.lock12
1 files changed, 12 insertions, 0 deletions
diff --git a/src-tauri/Cargo.lock b/src-tauri/Cargo.lock
index ec50c51c..b6f27065 100644
--- a/src-tauri/Cargo.lock
+++ b/src-tauri/Cargo.lock
@@ -79,6 +79,7 @@ name = "app"
version = "0.3.1"
dependencies = [
"anyhow",
+ "json5",
"libthermite",
"powershell_script",
"regex",
@@ -1581,6 +1582,17 @@ dependencies = [
]
[[package]]
+name = "json5"
+version = "0.4.1"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "96b0db21af676c1ce64250b5f40f3ce2cf27e4e47cb91ed91eb6fe9350b430c1"
+dependencies = [
+ "pest",
+ "pest_derive",
+ "serde",
+]
+
+[[package]]
name = "keyvalues-parser"
version = "0.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"