Skip to content

Commit

Permalink
chore(deps) Update Tauri Utils (1.x) (#8232)
Browse files Browse the repository at this point in the history
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: FabianLars <[email protected]>
  • Loading branch information
renovate[bot] and FabianLars authored Aug 5, 2024
1 parent bc69b03 commit 1aba109
Show file tree
Hide file tree
Showing 7 changed files with 44 additions and 41 deletions.
5 changes: 3 additions & 2 deletions .github/workflows/covector-version-or-publish-v1.yml
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ jobs:
cargo update -p serde_spanned --precise 0.6.1
cargo update -p winnow --precise 0.4.1
cargo update -p plist --precise 1.5.1
cargo update -p serde_with:3.8.3 --precise 3.0.0
cargo update -p serde_with:3.9.0 --precise 3.0.0
cargo update -p time --precise 0.3.15
cargo update -p ignore --precise 0.4.18
cargo update -p raw-window-handle --precise 0.5.0
Expand Down Expand Up @@ -109,9 +109,10 @@ jobs:
cargo update -p tokio-stream --precise 0.1.14
cargo update -p tokio-util --precise 0.7.10
cargo update -p os_pipe --precise 1.1.5
cargo update -p syn:2.0.71 --precise 2.0.67
cargo update -p syn:2.0.72 --precise 2.0.67
cargo update -p derive_more --precise 0.99.17
cargo update -p native-tls --precise 0.2.11
cargo update -p ppv-lite86 --precise 0.2.17
- name: test build
run: cargo check --target ${{ matrix.platform.target }} --features tracing,compression,wry,linux-protocol-headers,isolation,custom-protocol,api-all,cli,updater,system-tray,windows7-compat,http-multipart,test
Expand Down
56 changes: 29 additions & 27 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion core/tauri-build/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ cargo_toml = "0.15"
serde = "1"
serde_json = "1"
heck = "0.5"
json-patch = "1.2"
json-patch = "2"
tauri-winres = "0.1"
semver = "1"
walkdir = "2"
Expand Down
4 changes: 2 additions & 2 deletions core/tauri-codegen/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -22,13 +22,13 @@ serde_json = "1"
tauri-utils = { version = "1.6.0", path = "../tauri-utils", features = [ "build" ] }
thiserror = "1"
walkdir = "2"
brotli = { version = "3", optional = true, default-features = false, features = [ "std" ] }
brotli = { version = "6", optional = true }
regex = { version = "1", optional = true }
uuid = { version = "1", features = [ "v4" ] }
semver = "1"
ico = "0.3"
png = "0.17"
json-patch = "1.2"
json-patch = "2"

[target."cfg(target_os = \"macos\")".dependencies]
plist = "1"
Expand Down
14 changes: 7 additions & 7 deletions core/tauri-utils/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -16,28 +16,28 @@ serde = { version = "1", features = [ "derive" ] }
serde_json = "1"
thiserror = "1"
phf = { version = "0.11", features = [ "macros" ] }
brotli = { version = "3", optional = true, default-features = false, features = [ "std" ] }
brotli = { version = "6", optional = true }
url = { version = "2", features = [ "serde" ] }
html5ever = "0.26"
html5ever = "0.26" # kuchikiki requires 0.26 still
kuchiki = { package = "kuchikiki", version = "0.8" }
proc-macro2 = { version = "1", optional = true }
quote = { version = "1", optional = true }
schemars = { version = "0.8.18", features = [ "url" ], optional = true }
schemars = { version = "0.8.18", features = [ "url" ], optional = true } # Forcing 0.8.18 as minimum due to breaking changes
serde_with = "3"
aes-gcm = { version = "0.10", optional = true }
getrandom = { version = "0.2", optional = true, features = [ "std" ] }
serialize-to-javascript = { version = "=0.1.1", optional = true }
ctor = "0.2"
json5 = { version = "0.4", optional = true }
toml = { version = "0.7", optional = true }
json-patch = "1.2"
toml = { version = "0.7", optional = true } # the other used toml crates still use 0.7
json-patch = "2"
glob = { version = "0.3", optional = true }
walkdir = { version = "2", optional = true }
memchr = "2"
semver = "1"
infer = "0.13"
infer = "0.13" # 0.14 raised msrv
dunce = "1"
log = "0.4.20"
log = "0.4"

[target."cfg(target_os = \"linux\")".dependencies]
heck = "0.5"
Expand Down
2 changes: 1 addition & 1 deletion core/tauri/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ regex = { version = "1", optional = true }
glob = "0.3"
data-url = { version = "0.3", optional = true }
serialize-to-javascript = "=0.1.1"
infer = { version = "0.16", optional = true }
infer = { version = "0.13", optional = true } # 0.14 raised msrv
png = { version = "0.17", optional = true }
ico = { version = "0.3", optional = true }
encoding_rs = "0.8"
Expand Down
2 changes: 1 addition & 1 deletion tooling/cli/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ notify = "6.1"
notify-debouncer-mini = "0.4"
shared_child = "1.0"
toml_edit = "0.21"
json-patch = "1.2"
json-patch = "2"
tauri-utils = { version = "1.6.0", path = "../../core/tauri-utils", features = [ "isolation", "schema", "config-json5", "config-toml" ] }
toml = "0.8"
jsonschema = "0.17"
Expand Down

0 comments on commit 1aba109

Please sign in to comment.