Removed from_c_string and to_c_string exports.

This commit is contained in:
2025-10-14 23:37:26 -04:00
parent 571dd56617
commit 64fed7db53
2 changed files with 2 additions and 2 deletions

View File

@ -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"]

View File

@ -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};