[package]
edition = "2024"
rust-version = "1.89"
name = "brahmanda"
version = "1.0.0"
build = false
exclude = [
".claude/",
".github/",
"docs/",
"scripts/",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Brahmanda — galactic structure, cosmic web topology, and large-scale cosmological dynamics"
homepage = "https://github.com/MacCracken/brahmanda"
documentation = "https://docs.rs/brahmanda"
readme = "README.md"
keywords = [
"galaxy",
"cosmology",
"dark-matter",
"astrophysics",
"science",
]
categories = [
"science",
"simulation",
]
license = "GPL-3.0-only"
repository = "https://github.com/MacCracken/brahmanda"
[features]
default = ["std"]
full = [
"std",
"logging",
]
logging = ["dep:tracing-subscriber"]
std = [
"serde/std",
"thiserror/std",
]
[lib]
name = "brahmanda"
path = "src/lib.rs"
[[example]]
name = "basic"
path = "examples/basic.rs"
[[test]]
name = "adversarial"
path = "tests/adversarial.rs"
[[test]]
name = "integration"
path = "tests/integration.rs"
[[test]]
name = "invariants"
path = "tests/invariants.rs"
[[test]]
name = "serde_roundtrip"
path = "tests/serde_roundtrip.rs"
[[bench]]
name = "benchmarks"
path = "benches/benchmarks.rs"
harness = false
[dependencies.hisab]
version = "1.4"
[dependencies.serde]
version = "1"
features = [
"derive",
"alloc",
]
default-features = false
[dependencies.thiserror]
version = "2"
default-features = false
[dependencies.tracing]
version = "0.1"
[dependencies.tracing-subscriber]
version = "0.3"
features = [
"env-filter",
"fmt",
]
optional = true
[dev-dependencies.criterion]
version = "0.8"
features = ["html_reports"]
[dev-dependencies.serde_json]
version = "1"