#![cfg_attr(feature = "tco", allow(incomplete_features))]
#![cfg_attr(feature = "tco", feature(explicit_tail_calls))]
#![cfg_attr(feature = "tco", allow(internal_features))]
#![cfg_attr(feature = "tco", feature(core_intrinsics))]
#[cfg(all(feature = "tco", feature = "aot"))]
compile_error!("Features \"tco\" and \"aot\" cannot be enabled at the same time");
#[cfg(all(feature = "aot", not(target_arch = "x86_64")))]
compile_error!("Feature \"aot\" is only supported on x86_64 targets");
extern crate self as openvm_circuit;
pub use openvm_circuit_derive as derive;
pub use openvm_circuit_primitives as primitives;
pub use openvm_circuit_primitives_derive as circuit_derive;
#[cfg(all(feature = "test-utils", feature = "cuda"))]
pub use openvm_cuda_backend;
#[cfg(feature = "test-utils")]
pub use openvm_stark_sdk;
pub mod arch;
#[cfg(feature = "metrics")]
pub mod metrics;
pub mod system;
pub mod utils;
#[cfg(feature = "cuda")]
pub(crate) mod cuda_abi;