From 9c79d556227f5059981e2d4260f229e7e8bb14c3 Mon Sep 17 00:00:00 2001 From: Krusty/Benediction Date: Sat, 7 Oct 2023 17:10:31 +0200 Subject: [PATCH] Make public dependenceis of hxcfe-sys --- Cargo.lock | 2 +- hxcfe-sys/Cargo.toml | 2 +- hxcfe-sys/src/lib.rs | 3 +++ 3 files changed, 5 insertions(+), 2 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 236533f..0a36c05 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -189,7 +189,7 @@ dependencies = [ "bindgen", "copy_dir", "dunce", - "hxcadaptor-sys", + "hxcadaptor", "make-cmd", ] diff --git a/hxcfe-sys/Cargo.toml b/hxcfe-sys/Cargo.toml index 69e0f1a..6710bbf 100644 --- a/hxcfe-sys/Cargo.toml +++ b/hxcfe-sys/Cargo.toml @@ -11,7 +11,7 @@ readme = "../Readme.md" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] -hxcadaptor-sys.workspace = true +hxcadaptor.workspace = true [build-dependencies] make-cmd = "0.1.0" diff --git a/hxcfe-sys/src/lib.rs b/hxcfe-sys/src/lib.rs index c10e5f6..ccfcf6f 100644 --- a/hxcfe-sys/src/lib.rs +++ b/hxcfe-sys/src/lib.rs @@ -4,6 +4,9 @@ include!(concat!(env!("OUT_DIR"), "/bindings.rs")); +pub use hxcadaptor; +pub use hxcadaptor::hxcadaptor_sys; + #[cfg(test)] mod test { use crate::{hxcfe_deinit, hxcfe_init};