From 11b7e054b09852b786ad801f8ea3f81f80108d77 Mon Sep 17 00:00:00 2001 From: Kyle J Strand Date: Wed, 16 Oct 2024 12:24:02 -0600 Subject: [PATCH] fix: re-export quil-rs so that downstream crates can avoid version conflicts (#508) --- crates/lib/src/lib.rs | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/crates/lib/src/lib.rs b/crates/lib/src/lib.rs index 0d1c4a92..de9f2b88 100644 --- a/crates/lib/src/lib.rs +++ b/crates/lib/src/lib.rs @@ -49,6 +49,10 @@ //! crate allows you to run Quil programs against real QPUs or a QVM //! using [`Executable`]. +// Re-export quil_rs so that all downstream crates can ensure that they are +// using the same version. +pub use quil_rs; + pub use executable::{Error, Executable, ExecutionResult, JobHandle, Service}; pub use execution_data::{ ExecutionData, RegisterMap, RegisterMatrix, RegisterMatrixConversionError, ResultData,