[package]
edition = "2024"
name = "darkmatter"
version = "0.0.2"
authors = ["Rayan Morel <celestial4498@gmail.com>"]
build = false
exclude = [
"target/",
"Cargo.lock",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Dark matter simulation engine — gravitational fields, particle dynamics, halo stability, and cosmological constants"
homepage = "https://celestial4498-prog.github.io/Celestial/"
documentation = "https://docs.rs/darkmatter"
readme = "README.md"
keywords = [
"dark-matter",
"simulation",
"cosmology",
"physics",
"astrophysics",
]
categories = [
"science",
"simulation",
]
license = "MIT"
repository = "https://github.com/celestial4498-prog/DarkMatter"
[lib]
name = "darkmatter"
path = "src/lib.rs"
[[example]]
name = "barnes_hut_example"
path = "examples/barnes_hut_example.rs"
[[example]]
name = "boltzmann_example"
path = "examples/boltzmann_example.rs"
[[example]]
name = "fuzzy_dm_example"
path = "examples/fuzzy_dm_example.rs"
[[example]]
name = "gravitational_waves_example"
path = "examples/gravitational_waves_example.rs"
[[example]]
name = "phase_space_example"
path = "examples/phase_space_example.rs"
[[example]]
name = "sommerfeld_example"
path = "examples/sommerfeld_example.rs"
[[example]]
name = "spectra_example"
path = "examples/spectra_example.rs"
[[test]]
name = "barnes_hut_tests"
path = "tests/barnes_hut_tests.rs"
[[test]]
name = "boltzmann_tests"
path = "tests/boltzmann_tests.rs"
[[test]]
name = "fuzzy_dm_tests"
path = "tests/fuzzy_dm_tests.rs"
[[test]]
name = "gravitational_waves_tests"
path = "tests/gravitational_waves_tests.rs"
[[test]]
name = "phase_space_tests"
path = "tests/phase_space_tests.rs"
[[test]]
name = "sommerfeld_tests"
path = "tests/sommerfeld_tests.rs"
[[test]]
name = "spectra_tests"
path = "tests/spectra_tests.rs"
[dependencies.sciforge]
version = "0.0.2"