roqoqo_qiskit_devices/lib.rs
1// Copyright © 2023-2025 HQS Quantum Simulations GmbH. All Rights Reserved.
2//
3// Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except
4// in compliance with the License. You may obtain a copy of the License at
5//
6// http://www.apache.org/licenses/LICENSE-2.0
7//
8// Unless required by applicable law or agreed to in writing, software distributed under the
9// License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either
10// express or implied. See the License for the specific language governing permissions and
11// limitations under the License.
12
13//! # roqoqo_qiskit_devices
14//!
15//! Qiskit devices' interface for roqoqo.
16//!
17//! Collection of IBM's qiskit devices interfaces implementing roqoqo's Device trait.
18
19#[allow(deprecated)]
20pub mod devices;
21pub use devices::{
22 IBMBelemDevice, IBMDevice, IBMJakartaDevice, IBMLagosDevice, IBMLimaDevice, IBMManilaDevice,
23 IBMNairobiDevice, IBMPerthDevice, IBMQuitoDevice,
24};