quantrs2_core/lib.rs
1//! Core types and traits for the QuantRS2 quantum computing framework.
2//!
3//! This crate provides the foundational types and traits used throughout
4//! the QuantRS2 ecosystem, including qubit identifiers, quantum gates,
5//! and register representations.
6
7pub mod error;
8pub mod gate;
9pub mod qubit;
10pub mod register;
11
12/// Re-exports of commonly used types and traits
13pub mod prelude {
14 pub use crate::error::*;
15 pub use crate::gate::*;
16 pub use crate::qubit::*;
17 pub use crate::register::*;
18}