[package]
edition = "2024"
name = "physics_in_parallel"
version = "1.1.0"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "High-performance infrastructure for numerical simulations in physics"
homepage = "https://github.com/dingyisun0101/Physics-in-Parallel"
documentation = "https://github.com/dingyisun0101/Physics-in-Parallel"
readme = "README.md"
keywords = [
"physics",
"simulation",
"math",
"tensor",
"scientific",
]
categories = ["science"]
license = "MIT OR Apache-2.0"
repository = "https://github.com/dingyisun0101/Physics-in-Parallel"
[lib]
name = "physics_in_parallel"
path = "src/lib.rs"
[[bin]]
name = "physics_in_parallel"
path = "src/main.rs"
[dependencies.ahash]
version = "0.8"
[dependencies.hashbrown]
version = "0.16.1"
[dependencies.ndarray]
version = "0.16"
[dependencies.num-complex]
version = "0.4"
features = ["serde"]
[dependencies.num-traits]
version = "0.2"
[dependencies.rand]
version = "0.9"
features = [
"std",
"small_rng",
]
[dependencies.rand_chacha]
version = "0.9"
[dependencies.rand_distr]
version = "0.5"
[dependencies.rayon]
version = "1.11"
[dependencies.serde]
version = "1.0"
features = ["derive"]
[dependencies.serde_json]
version = "1.0"
[profile.release]
opt-level = 3
lto = true
codegen-units = 1