build: Update pnpm to v9 (#1309)

* build: Update pnpm to v9

* update actions

* remove last actions-rs usage

* clippy

* clippy again

* revert default feature
This commit is contained in:
Fabian-Lars
2024-05-13 17:03:04 +02:00
committed by GitHub
parent ecda84f8d5
commit 0d4d029011
23 changed files with 3413 additions and 2656 deletions
@@ -48,7 +48,7 @@ pub enum Hint {
/// * <https://developer.gnome.org/notification-spec/#categories>
Category(String),
/// Name of the DesktopEntry representing the calling application. In case of "firefox.desktop"
/// Name of the `DesktopEntry` representing the calling application. In case of "firefox.desktop"
/// use "firefox". May be used to retrieve the correct icon.
DesktopEntry(String),
@@ -91,7 +91,7 @@ pub enum Hint {
/// A custom numerical (integer) hint
CustomInt(String, i32),
/// Only used by this NotificationServer implementation
/// Only used by this `NotificationServer` implementation
Invalid // TODO find a better solution to this
}
@@ -154,7 +154,7 @@ fn test_hints_to_map() {
// custom value should only be there once if the names are identical
let n1 = super::Notification::new()
let n1 = Notification::new()
.hint(Hint::Custom("foo".into(), "bar1".into()))
.hint(Hint::Custom("foo".into(), "bar2".into()))
.hint(Hint::Custom("f00".into(), "bar3".into()))