From 96f260d02db1ad2632a134b47e69ee242cd5b9c0 Mon Sep 17 00:00:00 2001 From: David Skrundz Date: Mon, 13 Oct 2025 21:30:39 -0600 Subject: [PATCH] std -> core --- seamantic/src/model/id.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/seamantic/src/model/id.rs b/seamantic/src/model/id.rs index 0dc9ea0..514b6eb 100644 --- a/seamantic/src/model/id.rs +++ b/seamantic/src/model/id.rs @@ -78,7 +78,7 @@ impl Id { } impl fmt::Debug for Id { - fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result { + fn fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result { f.debug_struct("Id") .field("T", &core::any::type_name::()) .field("id", &self.id)