From f9a91bfabd6b5b604d85217639904abb2318d73e Mon Sep 17 00:00:00 2001 From: Colin Walters Date: Fri, 6 Aug 2021 16:35:13 -0400 Subject: [PATCH] lib: Export ffi too Matching how gtk-rs does it. Right now rpm-ostree does depend on interacting with `ostree-sys` via the cxxrs bits. --- rust-bindings/rust/src/lib.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/rust-bindings/rust/src/lib.rs b/rust-bindings/rust/src/lib.rs index 9e7fa631..28cf89ea 100644 --- a/rust-bindings/rust/src/lib.rs +++ b/rust-bindings/rust/src/lib.rs @@ -12,6 +12,7 @@ // Re-export our dependencies. See https://gtk-rs.org/blog/2021/06/22/new-release.html // "Dependencies are re-exported". Users will need e.g. `gio::File`, so this avoids // them needing to update matching versions. +pub use ffi; pub use gio; pub use glib;