From b9fb31e9a7067978db2418e630cade977d1c45dc Mon Sep 17 00:00:00 2001 From: bjorn3 <17426603+bjorn3@users.noreply.github.com> Date: Mon, 10 Apr 2023 18:49:43 +0200 Subject: [PATCH] Re-export cranelift-control from cranelift-codegen (#6173) This makes it easier to keep the versions of both in sync and avoids having to specify another dependency for a single type. --- cranelift/codegen/src/lib.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/cranelift/codegen/src/lib.rs b/cranelift/codegen/src/lib.rs index d9f917cc5b..899270a9e1 100644 --- a/cranelift/codegen/src/lib.rs +++ b/cranelift/codegen/src/lib.rs @@ -64,6 +64,7 @@ pub use crate::verifier::verify_function; pub use crate::write::write_function; pub use cranelift_bforest as bforest; +pub use cranelift_control as control; pub use cranelift_entity as entity; #[cfg(feature = "unwind")] pub use gimli;