[package]
edition = "2024"
name = "barnes_hut"
version = "1.0.8"
authors = ["David O'Connor <the_alchemist@fastmail.com>"]
build = false
exclude = [".gitignore"]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Fast n-body simluation using the Barnes Hut algorithm"
documentation = "https://docs.rs/barnes_hut"
readme = "README.md"
keywords = [
"n-body",
"cosmology",
"chemistry",
"barnes",
]
categories = [
"algorithms",
"mathematics",
"science",
"algorithms",
]
license = "MIT"
repository = "https://github.com/David-OConnor/barnes_hut"
[features]
encode = [
"bincode",
"lin_alg/encode",
]
[lib]
name = "barnes_hut"
path = "src/lib.rs"
[dependencies.bincode]
version = "2.0.0"
optional = true
[dependencies.lin_alg]
version = "1.1.8"
[dependencies.rayon]
version = "1.10.0"