From c16347054e093a04cc77ce0606087ff024d2588b Mon Sep 17 00:00:00 2001 From: Ignacio Casal Quinteiro Date: Fri, 22 Dec 2023 15:08:44 +0100 Subject: [PATCH] Make ffi public again With the release of 2.8.1 the ffi became private breaking users of the crate --- pcsc/src/lib.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pcsc/src/lib.rs b/pcsc/src/lib.rs index 487d53e..50e93cb 100644 --- a/pcsc/src/lib.rs +++ b/pcsc/src/lib.rs @@ -109,7 +109,7 @@ use std::ptr::{null, null_mut}; use std::sync::Arc; use bitflags::bitflags; -use pcsc_sys as ffi; +pub use pcsc_sys as ffi; use ffi::{DWORD, LONG};