From 408704b1c7164dfb94a3a9f3fcb91647ba038b78 Mon Sep 17 00:00:00 2001 From: Douglas Wilson <141026920+doug-q@users.noreply.github.com> Date: Mon, 2 Dec 2024 09:37:48 +0000 Subject: [PATCH] feat(hugr-llvm): export inkwell and llvm-sys from the crate root (#1732) --- hugr-llvm/src/lib.rs | 3 +++ 1 file changed, 3 insertions(+) diff --git a/hugr-llvm/src/lib.rs b/hugr-llvm/src/lib.rs index 98c161658..e7be6f571 100644 --- a/hugr-llvm/src/lib.rs +++ b/hugr-llvm/src/lib.rs @@ -79,3 +79,6 @@ pub fn llvm_version() -> &'static str { pub mod test; pub use custom::{CodegenExtension, CodegenExtsBuilder}; + +pub use inkwell::llvm_sys; +pub use inkwell;