Squashed 'vendor/ruvector/' content from commit b64c2172
git-subtree-dir: vendor/ruvector git-subtree-split: b64c21726f2bb37286d9ee36a7869fef60cc6900
This commit is contained in:
34
crates/ruqu-core/Cargo.toml
Normal file
34
crates/ruqu-core/Cargo.toml
Normal file
@@ -0,0 +1,34 @@
|
||||
[package]
|
||||
name = "ruqu-core"
|
||||
version = "2.0.5"
|
||||
edition.workspace = true
|
||||
rust-version.workspace = true
|
||||
license.workspace = true
|
||||
authors.workspace = true
|
||||
repository.workspace = true
|
||||
readme = "README.md"
|
||||
description = "High-performance quantum circuit simulator in pure Rust - state-vector simulation with SIMD acceleration, noise models, and multi-threading"
|
||||
keywords = ["quantum", "simulation", "state-vector", "quantum-computing", "qubits"]
|
||||
categories = ["science", "simulation", "algorithms"]
|
||||
|
||||
[features]
|
||||
default = ["std"]
|
||||
std = []
|
||||
parallel = ["rayon"]
|
||||
simd = []
|
||||
|
||||
[dependencies]
|
||||
rand = { workspace = true }
|
||||
thiserror = { workspace = true }
|
||||
serde = { workspace = true, optional = true }
|
||||
rayon = { workspace = true, optional = true }
|
||||
tracing = { workspace = true, optional = true }
|
||||
|
||||
[dev-dependencies]
|
||||
criterion = { workspace = true }
|
||||
proptest = { workspace = true }
|
||||
approx = "0.5"
|
||||
|
||||
[[bench]]
|
||||
name = "quantum_sim"
|
||||
harness = false
|
||||
Reference in New Issue
Block a user