json5 and changefile

This commit is contained in:
FabianLars
2026-03-18 16:13:13 +01:00
parent 8abfb83765
commit eda416ba79
4 changed files with 11 additions and 6 deletions

5
.changes/json5-toml.md Normal file
View File

@@ -0,0 +1,5 @@
---
tauri-utils: patch:deps
---
Changed `json5` crate version from `0.4` to `">=0.4, <=1"` and `toml` crate version from `0.9` to `">=0.9, <=1"`

7
Cargo.lock generated
View File

@@ -3992,13 +3992,12 @@ dependencies = [
[[package]]
name = "json5"
version = "0.4.1"
version = "1.3.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "96b0db21af676c1ce64250b5f40f3ce2cf27e4e47cb91ed91eb6fe9350b430c1"
checksum = "733a844dbd6fef128e98cb4487b887cb55454d92cd9994b1bafe004fabbe670c"
dependencies = [
"pest",
"pest_derive",
"serde",
"ucd-trie",
]
[[package]]

View File

@@ -51,7 +51,7 @@ tauri-bundler = { version = "2.8.1", default-features = false, path = "../tauri-
colored = "2"
serde = { version = "1", features = ["derive"] }
serde_json = { version = "1", features = ["preserve_order"] }
json5 = "0.4"
json5 = "1"
notify = "8"
notify-debouncer-full = "0.6"
shared_child = "1"

View File

@@ -33,7 +33,8 @@ aes-gcm = { version = "0.10", optional = true }
getrandom = { version = "0.3", optional = true, features = ["std"] }
serialize-to-javascript = { version = "0.1.2", optional = true }
ctor = "0.2"
json5 = { version = "0.4", optional = true }
# Part of public api in error type
json5 = { version = ">=0.4, <=1", optional = true }
# Part of public api in error type
toml = { version = ">=0.9, <=1", features = ["parse"] }
json-patch = "3.0"