ringkernel-wavesim3d 0.1.3

3D acoustic wave simulation with realistic physics, binaural audio, and GPU acceleration
Documentation
[[bin]]
name = "interactive-benchmark"
path = "src/bin/interactive_benchmark.rs"

[[bin]]
name = "wavesim3d"
path = "src/bin/wavesim3d.rs"

[[bin]]
name = "wavesim3d-benchmark"
path = "src/bin/benchmark.rs"
required-features = ["cuda"]

[dependencies.bytemuck]
features = ["derive"]
version = "1.24"

[dependencies.cpal]
optional = true
version = "0.15"

[dependencies.cudarc]
features = ["cuda-version-from-build-system"]
optional = true
version = "0.18.2"

[dependencies.egui]
version = "0.31"

[dependencies.egui-wgpu]
version = "0.31"

[dependencies.egui-winit]
version = "0.31"

[dependencies.glam]
version = "0.29"

[dependencies.half]
version = "2.4"

[dependencies.hound]
version = "3.5"

[dependencies.inventory]
version = "0.3"

[dependencies.pollster]
version = "0.3"

[dependencies.rand]
version = "0.8"

[dependencies.rayon]
version = "1.11"

[dependencies.ringkernel]
version = "0.1.3"

[dependencies.ringkernel-core]
version = "0.1.3"

[dependencies.ringkernel-cuda]
optional = true
version = "0.1.3"

[dependencies.ringkernel-cuda-codegen]
optional = true
version = "0.1.3"

[dependencies.ringkernel-derive]
version = "0.1.3"

[dependencies.rustfft]
optional = true
version = "6.2"

[dependencies.syn]
features = ["full", "extra-traits"]
optional = true
version = "2.0"

[dependencies.tokio]
features = ["full"]
version = "1.48"

[dependencies.tracing]
version = "0.1"

[dependencies.tracing-subscriber]
features = ["env-filter"]
version = "0.3"

[dependencies.wgpu]
version = "27.0"

[dependencies.winit]
version = "0.30"

[dev-dependencies.criterion]
features = ["html_reports"]
version = "0.5"

[[example]]
name = "test_persistent"
path = "examples/test_persistent.rs"

[features]
audio-output = ["dep:cpal", "dep:rustfft"]
cooperative = ["cuda", "ringkernel-cuda/cooperative"]
cpu = ["ringkernel/cpu"]
cuda = ["ringkernel/cuda", "dep:ringkernel-cuda", "dep:cudarc"]
cuda-codegen = ["cuda", "dep:ringkernel-cuda-codegen", "dep:syn", "ringkernel-derive/cuda-codegen"]
default = ["cpu"]

[lib]
name = "ringkernel_wavesim3d"
path = "src/lib.rs"

[package]
authors = ["Michael Ivertowski <mivertowski@outlook.com>"]
autobenches = false
autobins = false
autoexamples = false
autolib = false
autotests = false
build = false
categories = ["simulation", "graphics", "visualization", "multimedia::audio"]
description = "3D acoustic wave simulation with realistic physics, binaural audio, and GPU acceleration"
edition = "2021"
homepage = "https://github.com/mivertowski/RustCompute"
keywords = ["gpu", "simulation", "wave", "physics", "binaural"]
license = "Apache-2.0"
name = "ringkernel-wavesim3d"
readme = "README.md"
repository = "https://github.com/mivertowski/RustCompute"
rust-version = "1.75"
version = "0.1.3"