[package]
edition = "2024"
rust-version = "1.89"
name = "goonj"
version = "1.1.1"
build = false
exclude = [
".claude/",
".github/",
"docs/",
"scripts/",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Goonj — acoustics engine for sound propagation, room simulation, and impulse response generation"
homepage = "https://github.com/MacCracken/goonj"
documentation = "https://docs.rs/goonj"
readme = "README.md"
keywords = [
"acoustics",
"audio",
"room-simulation",
"impulse-response",
"ray-tracing",
]
categories = [
"science",
"simulation",
]
license = "GPL-3.0-only"
repository = "https://github.com/MacCracken/goonj"
[features]
binaural = []
default = []
dhvani-compat = []
kiran-compat = []
logging = ["dep:tracing-subscriber"]
soorat-compat = []
underwater = []
wav = []
[lib]
name = "goonj"
path = "src/lib.rs"
[[example]]
name = "basic"
path = "examples/basic.rs"
[[test]]
name = "integration"
path = "tests/integration.rs"
[[bench]]
name = "benchmarks"
path = "benches/benchmarks.rs"
harness = false
[dependencies.hisab]
version = "0.24"
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.thiserror]
version = "2"
[dependencies.tracing]
version = "0.1"
[dependencies.tracing-subscriber]
version = "0.3"
features = [
"env-filter",
"fmt",
]
optional = true
[dev-dependencies.criterion]
version = "0.5"
features = ["html_reports"]
[dev-dependencies.serde_json]
version = "1"