[package]
name = "physics_in_parallel"
version = "3.0.2"
edition = "2024"
description = "High-performance infrastructure for numerical simulations in physics"
license = "MIT"
readme = "README.md"
repository = "https://github.com/dingyisun0101/Physics-in-Parallel"
homepage = "https://github.com/dingyisun0101/Physics-in-Parallel"
documentation = "https://docs.rs/physics_in_parallel"
keywords = ["physics", "simulation", "math", "tensor", "scientific"]
categories = ["science"]
rust-version = "1.85"
exclude = ["target/", ".git/", ".idea/", ".vscode/"]
[dependencies]
num-traits = "0.2"
num-complex = { version = "0.4", features = ["serde"] }
rand = "0.10.1"
rand_distr = "0.6"
rand_chacha = "0.10"
rand_pcg = "0.10.2"
rayon = "1.12"
ahash = "0.8"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
ndarray = "0.17"
[profile.release]
opt-level = 3
lto = true
codegen-units = 1