Removed from_c_string and to_c_string exports.
This commit is contained in:
@ -1,6 +1,6 @@
|
|||||||
[package]
|
[package]
|
||||||
name = "binding"
|
name = "binding"
|
||||||
version = "0.2.0"
|
version = "0.2.1"
|
||||||
description = "Defines macros and functions used when binding to C libraries."
|
description = "Defines macros and functions used when binding to C libraries."
|
||||||
repository = "https://workshop.cybermages.tech/CyberMages/binding"
|
repository = "https://workshop.cybermages.tech/CyberMages/binding"
|
||||||
keywords = ["binding", "c types", "c enums", "c flags", "c strings"]
|
keywords = ["binding", "c types", "c enums", "c flags", "c strings"]
|
||||||
|
@ -28,6 +28,6 @@ mod c_types;
|
|||||||
mod raw;
|
mod raw;
|
||||||
|
|
||||||
#[cfg(feature = "use_std")]
|
#[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::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};
|
pub use self::raw::{AsRaw, AsRawMut, AsRawMutPtr, AsRawPtr, FromRaw, IntoRaw};
|
||||||
|
Reference in New Issue
Block a user