From d94395bbe8970785bea1821636b22f5194978ff5 Mon Sep 17 00:00:00 2001 From: Colin Walters Date: Thu, 23 May 2024 14:47:40 -0400 Subject: [PATCH] lib: Re-export containers_image_proxy in full We currently expose a type from that, so we might as well just re-export the whole thing. I want to do some stuff directly with containers in bootc. --- lib/src/lib.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/lib/src/lib.rs b/lib/src/lib.rs index 297aad64..3fbb5e4f 100644 --- a/lib/src/lib.rs +++ b/lib/src/lib.rs @@ -16,6 +16,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 containers_image_proxy; pub use containers_image_proxy::oci_spec; pub use ostree; pub use ostree::gio;