[[bench]]
name = "qec_performance"
path = "benches/qec_performance.rs"
[dependencies.aes-gcm]
optional = true
version = "0.10.3"
[dependencies.async-trait]
optional = true
version = "0.1"
[dependencies.broadcast]
version = "0.1"
[dependencies.bytemuck]
features = ["derive", "derive"]
optional = true
version = "1.24.0"
[dependencies.chrono]
features = ["serde"]
optional = true
version = "0.4"
[dependencies.fastrand]
version = "2.3.0"
[dependencies.futures]
optional = true
version = "0.3"
[dependencies.hex]
optional = true
version = "0.4.3"
[dependencies.hmac]
optional = true
version = "0.12.1"
[dependencies.num_cpus]
version = "1.17.0"
[dependencies.oxicode]
features = ["std", "derive", "serde"]
version = "0.1.1"
[dependencies.petgraph]
version = "0.8"
[dependencies.quantrs2-circuit]
version = "0.1.1"
[dependencies.quantrs2-core]
version = "0.1.1"
[dependencies.reqwest]
default-features = false
features = ["json", "native-tls-vendored", "json"]
optional = true
version = "0.13.1"
[dependencies.scirs2-autograd]
default-features = false
version = "0.1.2"
[dependencies.scirs2-core]
default-features = false
features = ["serialization", "linalg", "simd", "parallel", "cache", "profiling", "memory_management", "random", "array"]
version = "0.1.2"
[dependencies.scirs2-fft]
default-features = false
version = "0.1.2"
[dependencies.scirs2-graph]
default-features = false
optional = true
version = "0.1.2"
[dependencies.scirs2-linalg]
default-features = false
optional = true
version = "0.1.2"
[dependencies.scirs2-metrics]
default-features = false
version = "0.1.2"
[dependencies.scirs2-optimize]
default-features = false
optional = true
version = "0.1.2"
[dependencies.scirs2-stats]
default-features = false
version = "0.1.2"
[dependencies.serde]
features = ["derive"]
version = "1.0"
[dependencies.serde_json]
version = "1.0"
[dependencies.sha2]
optional = true
version = "0.10.9"
[dependencies.thiserror]
version = "2.0.18"
[dependencies.tokio]
features = ["full", "rt", "rt-multi-thread", "macros", "sync", "time"]
optional = true
version = "1.49.0"
[dependencies.url]
features = ["serde"]
version = "2.5.8"
[dependencies.uuid]
features = ["v4", "serde"]
optional = true
version = "1.19.0"
[dependencies.x25519-dalek]
optional = true
version = "2.0.1"
[dev-dependencies.criterion]
features = ["html_reports", "async_tokio"]
version = "0.8"
[dev-dependencies.tokio-test]
version = "0.4"
[[example]]
name = "advanced_compiler_demo"
path = "examples/advanced_compiler_demo.rs"
[[example]]
name = "comprehensive_process_tomography"
path = "examples/comprehensive_process_tomography.rs"
[[example]]
name = "cv_demo"
path = "examples/cv_demo.rs"
[[example]]
name = "enhanced_benchmarking_demo"
path = "examples/enhanced_benchmarking_demo.rs"
[[example]]
name = "qec_benchmarking_demo"
path = "examples/qec_benchmarking_demo.rs"
[[example]]
name = "quantum_cloud_orchestration_demo"
path = "examples/quantum_cloud_orchestration_demo.rs"
[features]
aws = ["dep:reqwest", "dep:tokio", "dep:chrono", "dep:async-trait", "dep:hmac", "dep:sha2", "dep:hex", "dep:bytemuck"]
azure = ["dep:reqwest", "dep:tokio", "dep:chrono", "dep:async-trait"]
cloud-backends = ["ibm", "azure", "aws", "neutral_atom", "photonic"]
default = ["scheduling", "scirs2", "security"]
ibm = ["dep:reqwest", "dep:tokio", "dep:chrono", "dep:async-trait"]
neutral_atom = ["dep:reqwest", "dep:tokio", "dep:chrono", "dep:async-trait", "dep:uuid", "dep:futures", "ibm"]
photonic = ["dep:reqwest", "dep:tokio", "dep:chrono", "dep:async-trait"]
scheduling = ["dep:tokio", "dep:async-trait", "dep:uuid", "dep:futures"]
scirs2 = ["dep:scirs2-graph", "dep:scirs2-linalg", "dep:scirs2-optimize"]
security = ["dep:aes-gcm", "dep:x25519-dalek", "dep:sha2", "dep:chrono"]
[lib]
name = "quantrs2_device"
path = "src/lib.rs"
[lints.clippy]
cast_lossless = "allow"
cast_possible_truncation = "allow"
cast_possible_wrap = "allow"
cast_precision_loss = "allow"
cast_sign_loss = "allow"
dbg_macro = "warn"
doc_markdown = "allow"
enum_glob_use = "warn"
float_cmp = "allow"
items_after_statements = "allow"
many_single_char_names = "allow"
missing_docs_in_private_items = "allow"
missing_errors_doc = "allow"
missing_panics_doc = "allow"
module_name_repetitions = "allow"
must_use_candidate = "allow"
needless_pass_by_value = "allow"
ptr_eq = "allow"
redundant_closure_for_method_calls = "allow"
similar_names = "allow"
struct_excessive_bools = "allow"
too_many_arguments = "allow"
too_many_lines = "allow"
unwrap_used = "allow"
wildcard_imports = "allow"
[lints.clippy.nursery]
level = "warn"
priority = -1
[lints.clippy.pedantic]
level = "warn"
priority = -1
[lints.rust]
ambiguous_glob_reexports = "allow"
dead_code = "allow"
deprecated = "allow"
elided_lifetimes_in_paths = "allow"
missing_debug_implementations = "allow"
missing_docs = "allow"
private_bounds = "allow"
private_interfaces = "allow"
unpredictable_function_pointer_comparisons = "allow"
unused_assignments = "allow"
unused_imports = "allow"
unused_mut = "allow"
unused_variables = "allow"
[lints.rust.nonstandard_style]
level = "warn"
priority = -1
[lints.rust.rust_2018_idioms]
level = "deny"
priority = -1
[package]
authors = ["COOLJAPAN OU"]
autobenches = false
autobins = false
autoexamples = false
autolib = false
autotests = false
build = "build.rs"
categories = ["science", "simulation", "hardware-support"]
description = "Quantum device connectors for the QuantRS2 framework"
edition = "2021"
keywords = ["quantum", "computing", "device", "hardware", "connectivity"]
license = "MIT OR Apache-2.0"
name = "quantrs2-device"
readme = "README.md"
repository = "https://github.com/cool-japan/quantrs"
rust-version = "1.86.0"
version = "0.1.1"
[package.metadata.docs.rs]
all-features = false
features = ["scheduling", "scirs2", "security", "neutral_atom"]
rustdoc-args = ["--cfg", "docsrs"]
[[test]]
name = "advanced_scheduling_tests"
path = "tests/advanced_scheduling_tests.rs"
[[test]]
name = "dynamical_decoupling_tests"
path = "tests/dynamical_decoupling_tests.rs"
[[test]]
name = "vqa_comprehensive_tests"
path = "tests/vqa_comprehensive_tests.rs"