Skip to content

Commit 5fdc616

Browse files
zeenixlucasfernog
andauthored
feat: Use the zbus-backed of notify-rust (#6332)
Co-authored-by: Lucas Nogueira <lucas@tauri.studio>
1 parent 1487b18 commit 5fdc616

File tree

29 files changed

+45
-33
lines changed

29 files changed

+45
-33
lines changed

.changes/msrv-1.60.md

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
---
2+
"cli.rs": minor
3+
"tauri-bundler": minor
4+
"tauri": minor
5+
"tauri-build": minor
6+
"tauri-codegen": minor
7+
"tauri-macros": minor
8+
"tauri-utils": minor
9+
"tauri-runtime": minor
10+
"tauri-runtime-wry": minor
11+
---
12+
13+
Bump minimum supported Rust version to 1.60.

.github/workflows/test-core.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -39,12 +39,12 @@ jobs:
3939
- {
4040
target: x86_64-unknown-linux-gnu,
4141
os: ubuntu-latest,
42-
toolchain: '1.59.0'
42+
toolchain: '1.60.0'
4343
}
4444
- {
4545
target: x86_64-apple-darwin,
4646
os: macos-latest,
47-
toolchain: '1.59.0'
47+
toolchain: '1.60.0'
4848
}
4949
features:
5050
- {

core/tauri-build/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ homepage = "https://tauri.app"
88
repository = "https://github.com/tauri-apps/tauri/tree/dev/core/tauri-build"
99
description = "build time code to pair with https://crates.io/crates/tauri"
1010
edition = "2021"
11-
rust-version = "1.59"
11+
rust-version = "1.60"
1212
exclude = [ "CHANGELOG.md", "/target" ]
1313
readme = "README.md"
1414

core/tauri-codegen/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ homepage = "https://tauri.app"
88
repository = "https://github.com/tauri-apps/tauri/tree/dev/core/tauri-codegen"
99
description = "code generation meant to be consumed inside of `tauri` through `tauri-build` or `tauri-macros`"
1010
edition = "2021"
11-
rust-version = "1.59"
11+
rust-version = "1.60"
1212
exclude = [ "CHANGELOG.md", "/target" ]
1313
readme = "README.md"
1414

core/tauri-macros/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ homepage = "https://tauri.app"
88
repository = "https://github.com/tauri-apps/tauri"
99
description = "Macros for the tauri crate."
1010
edition = "2021"
11-
rust-version = "1.59"
11+
rust-version = "1.60"
1212
exclude = [ "CHANGELOG.md", "/target" ]
1313
readme = "README.md"
1414

core/tauri-runtime-wry/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ homepage = "https://tauri.app"
88
repository = "https://github.com/tauri-apps/tauri"
99
description = "Wry bindings to the Tauri runtime"
1010
edition = "2021"
11-
rust-version = "1.59"
11+
rust-version = "1.60"
1212
exclude = [ "CHANGELOG.md", "/target" ]
1313
readme = "README.md"
1414

core/tauri-runtime/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ homepage = "https://tauri.app"
88
repository = "https://github.com/tauri-apps/tauri"
99
description = "Runtime for Tauri applications"
1010
edition = "2021"
11-
rust-version = "1.59"
11+
rust-version = "1.60"
1212
exclude = [ "CHANGELOG.md", "/target" ]
1313
readme = "README.md"
1414

core/tauri-utils/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ homepage = "https://tauri.app"
77
repository = "https://github.com/tauri-apps/tauri"
88
description = "Utilities for Tauri"
99
edition = "2021"
10-
rust-version = "1.59"
10+
rust-version = "1.60"
1111
exclude = [ "CHANGELOG.md", "/target" ]
1212
readme = "README.md"
1313

core/tauri/Cargo.toml

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ authors = [ "Tauri Programme within The Commons Conservancy" ]
33
categories = [ "gui", "web-programming" ]
44
description = "Make tiny, secure apps for all desktop platforms with Tauri"
55
edition = "2021"
6-
rust-version = "1.59"
6+
rust-version = "1.60"
77
exclude = [ "/test", "/.scripts", "CHANGELOG.md", "/target" ]
88
homepage = "https://tauri.app"
99
license = "Apache-2.0 OR MIT"
@@ -76,7 +76,7 @@ os_pipe = { version = "1.0", optional = true }
7676
raw-window-handle = "=0.5.0"
7777
minisign-verify = { version = "0.2", optional = true }
7878
time = { version = "=0.3.15", features = [ "parsing", "formatting" ], optional = true }
79-
os_info = { version = "=3.5.0", optional = true }
79+
os_info = { version = "3", optional = true }
8080
regex = { version = "1.6.0", optional = true }
8181
glob = "0.3"
8282
data-url = { version = "0.2", optional = true }
@@ -88,7 +88,7 @@ encoding_rs = "0.8.31"
8888

8989
[target."cfg(any(target_os = \"macos\", windows, target_os = \"linux\", target_os = \"dragonfly\", target_os = \"freebsd\", target_os = \"openbsd\", target_os = \"netbsd\"))".dependencies]
9090
rfd = { version = "0.10", optional = true, features=["gtk3", "common-controls-v6"] }
91-
notify-rust = { version = "4.5", default-features = false, features = [ "d" ], optional = true }
91+
notify-rust = { version = "4.5", optional = true }
9292

9393
[target."cfg(any(target_os = \"linux\", target_os = \"dragonfly\", target_os = \"freebsd\", target_os = \"openbsd\", target_os = \"netbsd\"))".dependencies]
9494
gtk = { version = "0.15", features = [ "v3_20" ] }
@@ -115,7 +115,6 @@ once_cell = "1"
115115
[dev-dependencies]
116116
mockito = "0.31"
117117
proptest = "1.0.0"
118-
unarray = "=0.1.3"
119118
quickcheck = "1.0.3"
120119
quickcheck_macros = "1.0.0"
121120
serde = { version = "1.0", features = [ "derive" ] }

examples/api/src-tauri/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ name = "api"
33
version = "0.1.0"
44
description = "An example Tauri Application showcasing the api"
55
edition = "2021"
6-
rust-version = "1.59"
6+
rust-version = "1.60"
77
license = "Apache-2.0 OR MIT"
88

99
[lib]

0 commit comments

Comments
 (0)