[package]
name = "everett"
version = "0.1.2"
edition = "2024"
rust-version = "1.85"
license = "MIT OR Apache-2.0"
description = "A clean, zero-dependency statevector quantum simulator."
repository = "https://github.com/hz2/everett"
keywords = ["quantum", "simulator", "statevector", "qubit", "physics"]
categories = ["science", "simulation"]
readme = "README.md"
[features]
default = []
parallel = ["dep:rayon"]
[dependencies]
rayon = { version = "1", optional = true }
[dev-dependencies]
proptest = "1"
approx = "0.5"
criterion = { version = "0.5", features = ["html_reports"] }
[[bench]]
name = "gate_apply"
harness = false
[lints.rust]
unsafe_op_in_unsafe_fn = "warn"
missing_docs = "warn"
unexpected_cfgs = { level = "warn", check-cfg = ['cfg(kani)'] }
[lints.clippy]
pedantic = { level = "warn", priority = -1 }
cast_precision_loss = "allow"
cast_possible_truncation = "allow"
cast_sign_loss = "allow"
[profile.release]
lto = "thin"
codegen-units = 1