mirror of
https://github.com/tauri-apps/tauri.git
synced 2026-04-01 10:01:07 +02:00
json5 and changefile
This commit is contained in:
5
.changes/json5-toml.md
Normal file
5
.changes/json5-toml.md
Normal 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
7
Cargo.lock
generated
@@ -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]]
|
||||
|
||||
@@ -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"
|
||||
|
||||
@@ -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"
|
||||
|
||||
Reference in New Issue
Block a user