From 7213ae839d533c8c25dadf90c0a70034248dfbee Mon Sep 17 00:00:00 2001 From: Michael Kefeder Date: Mon, 11 Nov 2024 18:45:25 +0100 Subject: [PATCH] use core instead of std --- lax/src/flags.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lax/src/flags.rs b/lax/src/flags.rs index 60364d5e..f9dea20d 100644 --- a/lax/src/flags.rs +++ b/lax/src/flags.rs @@ -1,5 +1,5 @@ //! Charactor flags, e.g. `'T'`, used in LAPACK API -use std::ffi::c_char; +use core::ffi::c_char; /// Upper/Lower specification for seveal usages #[derive(Debug, Clone, Copy, PartialEq, Eq, PartialOrd, Ord, Hash)]