oxgpu 0.1.0

A lightweight GPU compute library built on wgpu
Documentation
[dependencies.bitflags]
version = "2.10.0"

[dependencies.bytemuck]
version = "1.24.0"

[dependencies.wgpu]
version = "27.0.1"

[dev-dependencies.tokio]
features = ["full"]
version = "1"

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

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

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

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

[package]
authors = ["Senesh Hansana"]
autobenches = false
autobins = false
autoexamples = false
autolib = false
autotests = false
build = false
categories = ["graphics", "science"]
description = "A lightweight GPU compute library built on wgpu"
documentation = "https://docs.rs/oxgpu"
edition = "2024"
keywords = ["gpu", "compute", "wgpu", "shader", "webgpu"]
license = "MIT"
name = "oxgpu"
readme = "README.md"
repository = "https://github.com/vulkanic-labs/oxgpu"
version = "0.1.0"

[[test]]
name = "full_api_test"
path = "tests/full_api_test.rs"

[[test]]
name = "integration_test"
path = "tests/integration_test.rs"

[[test]]
name = "uniform_test"
path = "tests/uniform_test.rs"

[[test]]
name = "write_test"
path = "tests/write_test.rs"