diff --git a/Cargo.toml b/Cargo.toml index 232dbbb..3ed522f 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "binding" -version = "0.2.0" +version = "0.2.1" description = "Defines macros and functions used when binding to C libraries." repository = "https://workshop.cybermages.tech/CyberMages/binding" keywords = ["binding", "c types", "c enums", "c flags", "c strings"] diff --git a/src/lib.rs b/src/lib.rs index e053e92..820b66b 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -28,6 +28,6 @@ mod c_types; mod raw; #[cfg(feature = "use_std")] -pub use self::c_types::{from_c_string, to_c_string, CString, NullByteError}; +pub use self::c_types::CString; pub use self::c_types::{CChar, CDouble, CFloat, CInt, CLong, CLongLong, CReturnVoid, CShort, CStr, CUChar, CUInt, CULong, CULongLong, CUShort, CVoid}; pub use self::raw::{AsRaw, AsRawMut, AsRawMutPtr, AsRawPtr, FromRaw, IntoRaw};