From cc3f22d418996235033ca1ee9e6c71604812a647 Mon Sep 17 00:00:00 2001 From: Link Mauve Date: Sat, 7 Feb 2026 16:20:16 +0100 Subject: [PATCH] xmpp-parsers: Import FromStr from core This was needlessly imported from std. skip-changelog: This is no public change whatsoever. --- parsers/src/push.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/parsers/src/push.rs b/parsers/src/push.rs index fd59bf81..df20739e 100644 --- a/parsers/src/push.rs +++ b/parsers/src/push.rs @@ -64,7 +64,7 @@ impl PubSubPayload for Notification {} #[cfg(test)] mod tests { use super::*; - use std::str::FromStr; + use core::str::FromStr; #[test] fn test_enable() {