ruqu-core 2.0.5

High-performance quantum circuit simulator in pure Rust - state-vector simulation with SIMD acceleration, noise models, and multi-threading
Documentation
# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO
#
# When uploading crates to the registry Cargo will automatically
# "normalize" Cargo.toml files for maximal compatibility
# with all versions of Cargo and also rewrite `path` dependencies
# to registry (e.g., crates.io) dependencies.
#
# If you are reading this file be aware that the original Cargo.toml
# will likely look very different (and much more reasonable).
# See Cargo.toml.orig for the original contents.

[package]
edition = "2021"
rust-version = "1.77"
name = "ruqu-core"
version = "2.0.5"
authors = ["Ruvector Team"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "High-performance quantum circuit simulator in pure Rust - state-vector simulation with SIMD acceleration, noise models, and multi-threading"
readme = "README.md"
keywords = [
    "quantum",
    "simulation",
    "state-vector",
    "quantum-computing",
    "qubits",
]
categories = [
    "science",
    "simulation",
    "algorithms",
]
license = "MIT"
repository = "https://github.com/ruvnet/ruvector"

[features]
default = ["std"]
parallel = ["rayon"]
simd = []
std = []

[lib]
name = "ruqu_core"
path = "src/lib.rs"

[[test]]
name = "test_gates"
path = "tests/test_gates.rs"

[[test]]
name = "test_simulator"
path = "tests/test_simulator.rs"

[[test]]
name = "test_state"
path = "tests/test_state.rs"

[[test]]
name = "test_types"
path = "tests/test_types.rs"

[[bench]]
name = "quantum_sim"
path = "benches/quantum_sim.rs"
harness = false

[dependencies.rand]
version = "0.8"

[dependencies.rayon]
version = "1.10"
optional = true

[dependencies.serde]
version = "1.0"
features = ["derive"]
optional = true

[dependencies.thiserror]
version = "2.0"

[dependencies.tracing]
version = "0.1"
optional = true

[dev-dependencies.approx]
version = "0.5"

[dev-dependencies.criterion]
version = "0.5"
features = ["html_reports"]

[dev-dependencies.proptest]
version = "1.5"