[package]
edition = "2024"
name = "uff-relax"
version = "1.0.5"
authors = ["Forblaze Project <forblazeproject@gmail.com>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A high-performance, parallelized molecular structure optimizer using the Universal Force Field (UFF)."
readme = "README.md"
keywords = [
"chemistry",
"molecule",
"uff",
"geometry",
"simulation",
]
categories = [
"science",
"simulation",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/ForblazeProject/uff-relax.git"
[lib]
name = "uff_relax"
path = "src/lib.rs"
[[example]]
name = "benzene"
path = "examples/benzene.rs"
[[test]]
name = "consistency_check"
path = "tests/consistency_check.rs"
[[test]]
name = "large_system"
path = "tests/large_system.rs"
[[test]]
name = "liquid_benzene"
path = "tests/liquid_benzene.rs"
[[test]]
name = "molecules"
path = "tests/molecules.rs"
[[test]]
name = "polyethylene_overlap"
path = "tests/polyethylene_overlap.rs"
[[test]]
name = "random_clash"
path = "tests/random_clash.rs"
[[bench]]
name = "large_system_bench"
path = "benches/large_system.rs"
harness = false
[[bench]]
name = "threads_comparison"
path = "benches/threads_comparison.rs"
harness = false
[[bench]]
name = "threshold"
path = "benches/threshold.rs"
harness = false
[dependencies.glam]
version = "0.31.0"
features = ["serde"]
[dependencies.rayon]
version = "1.11.0"
[dependencies.serde]
version = "1.0.228"
features = ["derive"]
[dev-dependencies.rand]
version = "0.8"