From 9d2c092463afe377aeaed9fc323e2381f7e27c2f Mon Sep 17 00:00:00 2001 From: Jason Travis Smith Date: Mon, 24 Jun 2019 20:03:13 -0400 Subject: [PATCH] Mistyped the configuration option. --- src/lib.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/lib.rs b/src/lib.rs index d44d364..cd4d6df 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -30,6 +30,6 @@ pub use self::c_types::{CChar, CUChar}; pub use self::c_types::{CShort, CUShort, CInt, CUInt, CLong, CULong}; pub use self::c_types::{CLongLong, CULongLong, CFloat, CDouble}; pub use self::c_types::{CVoid, CReturnVoid}; -#[cfg(feature = "client")] +#[cfg(feature="use_std")] pub use self::c_types::{CStr, CString, NullByteError}; pub use self::raw::{AsRaw, AsRawMut, AsRawPtr, AsRawMutPtr, FromRaw, IntoRaw};