From f7963d86ad6b928cb941b270058c4232f91ac094 Mon Sep 17 00:00:00 2001 From: Felix Krull Date: Tue, 21 May 2019 20:06:10 +0200 Subject: [PATCH] Fix --- rust-bindings/rust/conf/ostree.toml | 1 + rust-bindings/rust/src/lib.rs | 1 + 2 files changed, 2 insertions(+) diff --git a/rust-bindings/rust/conf/ostree.toml b/rust-bindings/rust/conf/ostree.toml index 21ec029f..d2159541 100644 --- a/rust-bindings/rust/conf/ostree.toml +++ b/rust-bindings/rust/conf/ostree.toml @@ -80,6 +80,7 @@ status = "generate" [[object]] name = "OSTree.Repo" status = "generate" +manual_traits = ["RepoExtManual"] [[object.function]] # crashes while generating, not sure what's wrong with this; might be a gir issue name = "write_metadata_async" diff --git a/rust-bindings/rust/src/lib.rs b/rust-bindings/rust/src/lib.rs index b69a7018..77fda740 100644 --- a/rust-bindings/rust/src/lib.rs +++ b/rust-bindings/rust/src/lib.rs @@ -22,6 +22,7 @@ pub use crate::auto::*; mod object_name; mod repo; pub use crate::object_name::*; +pub use crate::repo::*; // tests #[cfg(test)]