From 0dfd5f875ffbb0b65064ec7096f3051c2986829a Mon Sep 17 00:00:00 2001 From: Lucas Fernandes Nogueira Date: Wed, 3 May 2023 05:31:59 -0700 Subject: [PATCH] fix(core): pin `winnow` dependency to 0.4.1 to keep 1.60 MSRV (#6845) --- core/tauri-build/CHANGELOG.md | 1 + core/tauri-build/Cargo.toml | 1 + core/tauri/CHANGELOG.md | 1 + core/tauri/Cargo.toml | 1 + 4 files changed, 4 insertions(+) diff --git a/core/tauri-build/CHANGELOG.md b/core/tauri-build/CHANGELOG.md index 132e0ac87..87203454d 100644 --- a/core/tauri-build/CHANGELOG.md +++ b/core/tauri-build/CHANGELOG.md @@ -11,6 +11,7 @@ - Added support for Cargo's workspace inheritance for package information. The cli now also detects inherited `tauri` and `tauri-build` dependencies and disables manifest rewrites accordingly. - [cd8c074a](https://www.github.com/tauri-apps/tauri/commit/cd8c074ae6592303d3f6844a4fb6d262eae913b2) feat(cli): add support for Cargo's workspace inheritance for the package version, closes [#5070](https://www.github.com/tauri-apps/tauri/pull/5070) ([#5775](https://www.github.com/tauri-apps/tauri/pull/5775)) on 2022-12-14 - [d20a7288](https://www.github.com/tauri-apps/tauri/commit/d20a728892eee1858ab525ab6216cd721f473ab5) feat: Further improve workspace inheritance, closes [#6122](https://www.github.com/tauri-apps/tauri/pull/6122), [#5070](https://www.github.com/tauri-apps/tauri/pull/5070) ([#6144](https://www.github.com/tauri-apps/tauri/pull/6144)) on 2023-01-26 +- Pin `winnow` crate to 0.4.1 to keep the 1.60 MSRV. ## \[1.2.1] diff --git a/core/tauri-build/Cargo.toml b/core/tauri-build/Cargo.toml index 514d7ade1..044557e53 100644 --- a/core/tauri-build/Cargo.toml +++ b/core/tauri-build/Cargo.toml @@ -22,6 +22,7 @@ quote = { version = "1", optional = true } tauri-codegen = { version = "1.3.0", path = "../tauri-codegen", optional = true } tauri-utils = { version = "1.3.0", path = "../tauri-utils", features = [ "build", "resources" ] } cargo_toml = "0.15" +winnow = "=0.4.1" serde = "1" serde_json = "1" heck = "0.4" diff --git a/core/tauri/CHANGELOG.md b/core/tauri/CHANGELOG.md index d9ffdfa16..3b0fd5489 100644 --- a/core/tauri/CHANGELOG.md +++ b/core/tauri/CHANGELOG.md @@ -54,6 +54,7 @@ - [49dff27e](https://www.github.com/tauri-apps/tauri/commit/49dff27ef1b36c48dbfd49f44b9b3ac07b372bdf) feat(core): create WindowBuilder from WindowConfig ([#6073](https://www.github.com/tauri-apps/tauri/pull/6073)) on 2023-01-17 - On Windows, Fix missing `WindowEvent::Focused` in `App::run` callback. - [ff4ea1ea](https://www.github.com/tauri-apps/tauri/commit/ff4ea1eabbf2874b113c6b4698002929bbac737a) fix: dispatch focus event to app.run on Windows, closes [#6460](https://www.github.com/tauri-apps/tauri/pull/6460) ([#6504](https://www.github.com/tauri-apps/tauri/pull/6504)) on 2023-03-31 +- Pin `winnow` crate to 0.4.1 to keep the 1.60 MSRV. ## \[1.2.4] diff --git a/core/tauri/Cargo.toml b/core/tauri/Cargo.toml index 2c5359534..63ff2f91a 100644 --- a/core/tauri/Cargo.toml +++ b/core/tauri/Cargo.toml @@ -123,6 +123,7 @@ tauri = { path = ".", default-features = false, features = [ "wry" ] } tokio-test = "0.4.2" tokio = { version = "1", features = [ "full" ] } cargo_toml = "0.11" +winnow = "=0.4.1" [features] default = [ "wry", "compression", "objc-exception" ]