wgpu-primitives 0.3.0

Composable GPU primitives for Rust applications using wgpu.
Documentation
# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO
#
# When uploading crates to the registry Cargo will automatically
# "normalize" Cargo.toml files for maximal compatibility
# with all versions of Cargo and also rewrite `path` dependencies
# to registry (e.g., crates.io) dependencies.
#
# If you are reading this file be aware that the original Cargo.toml
# will likely look very different (and much more reasonable).
# See Cargo.toml.orig for the original contents.

[package]
edition = "2024"
name = "wgpu-primitives"
version = "0.3.0"
authors = ["samjsui"]
build = false
include = [
    "src/**/*.rs",
    "src/**/*.wgsl",
    "tests/**/*.rs",
    "benches/**/*.rs",
    "benchmarks/**/*.md",
    "examples/**/*.rs",
    "Cargo.toml",
    "README.md",
    "LICENSE",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Composable GPU primitives for Rust applications using wgpu."
readme = "README.md"
keywords = [
    "gpgpu",
    "wgpu",
    "sort",
    "radix",
    "compute",
]
categories = [
    "algorithms",
    "graphics",
    "science",
]
license = "MIT"
repository = "https://github.com/samjsui/wgpu-primitives"

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

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

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

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

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

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

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

[[bench]]
name = "key_value_sort"
path = "benches/key_value_sort.rs"
harness = false

[[bench]]
name = "scan"
path = "benches/scan.rs"
harness = false

[[bench]]
name = "sort"
path = "benches/sort.rs"
harness = false

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

[dependencies.futures]
version = "0.3.31"

[dependencies.log]
version = "0.4.29"

[dependencies.wgpu]
version = "28.0.0"

[dev-dependencies.criterion]
version = "0.8.1"
features = [
    "async_tokio",
    "html_reports",
]

[dev-dependencies.env_logger]
version = "0.11.8"

[dev-dependencies.pollster]
version = "0.4"

[dev-dependencies.rand]
version = "0.9.2"

[dev-dependencies.rayon]
version = "1.10"

[dev-dependencies.tokio]
version = "1.49.0"
features = [
    "macros",
    "rt-multi-thread",
]