mabda 1.0.0

Mabda — GPU foundation layer for AGNOS (device, buffers, compute, textures)
Documentation
[package]
name = "mabda"
version = "1.0.0"
edition = "2024"
rust-version = "1.89"
license = "GPL-3.0-only"
description = "Mabda — GPU foundation layer for AGNOS (device, buffers, compute, textures)"
homepage = "https://github.com/MacCracken/mabda"
repository = "https://github.com/MacCracken/mabda"
readme = "README.md"
documentation = "https://docs.rs/mabda"
keywords = ["gpu", "wgpu", "compute", "graphics", "foundation"]
categories = ["rendering", "graphics", "science"]
exclude = [".claude/", ".github/", "docs/", "scripts/"]

[features]
default = ["full"]
graphics = []
compute = []
full = ["graphics", "compute"]

[dependencies]
# GPU
wgpu = "29"

# Core
bytemuck = { version = "1", features = ["derive"] }
pollster = "0.4"
serde = { version = "1", features = ["derive"] }
thiserror = "2"
tracing = "0.1"

# Image loading (optional — only needed for texture loading from files)
image = { version = "0.25", default-features = false, features = ["png", "jpeg"], optional = true }

[dev-dependencies]
criterion = { version = "0.8", features = ["html_reports"] }
serde_json = "1"

[[bench]]
name = "benchmarks"
harness = false