krnl 0.1.1

Safe, portable, high performance compute (GPGPU) kernels.
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 = "2021"
rust-version = "1.70.0"
name = "krnl"
version = "0.1.1"
authors = ["Charles R Earp <charles.r.earp@gmail.com>"]
publish = true
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Safe, portable, high performance compute (GPGPU) kernels."
homepage = "https://github.com/charles-r-earp/krnl"
documentation = "https://docs.rs/krnl"
readme = "README.md"
keywords = [
    "kernel",
    "compute",
    "vulkan",
    "gpu",
]
categories = [
    "hardware-support",
    "science",
    "mathematics",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/charles-r-earp/krnl"

[package.metadata.docs.rs]
all-features = true
rustdoc-args = [
    "--cfg",
    "doc_cfg",
]

[package.metadata.krnlc]
default-features = false
features = ["device"]

[package.metadata.krnlc.dependencies.dry]

[package.metadata.krnlc.dependencies.paste]

[[test]]
name = "integration_tests"
path = "tests/integration_tests.rs"
harness = false

[dependencies.anyhow]
version = "1.0.60"

[dependencies.bytemuck]
version = "1.13.1"

[dependencies.dashmap]
version = "5.3.4"
optional = true

[dependencies.derive_more]
version = "0.99.11"
features = [
    "deref",
    "deref_mut",
]
default-features = false

[dependencies.dry]
version = "0.1.1"

[dependencies.flate2]
version = "1.0.25"

[dependencies.fxhash]
version = "0.2.1"
optional = true

[dependencies.half]
version = "2.1.0"
features = [
    "num-traits",
    "std",
]
default-features = false

[dependencies.itertools]
version = "0.12.1"

[dependencies.krnl-core]
version = "=0.1.1"

[dependencies.krnl-macros]
version = "=0.1.1"

[dependencies.num-traits]
version = "0.2.14"
features = ["std"]
default-features = false

[dependencies.parking_lot]
version = "0.12.1"

[dependencies.paste]
version = "1.0.7"

[dependencies.rspirv]
version = "0.11.0"
optional = true

[dependencies.serde]
version = "1.0.143"
features = [
    "derive",
    "derive",
    "rc",
]
optional = true
default-features = false

[dependencies.serde_bytes]
version = "0.11.9"
optional = true

[dependencies.thiserror]
version = "1.0.31"

[dev-dependencies.bincode2]
version = "2.0.1"

[dev-dependencies.serde_json]
version = "1.0.96"

[dev-dependencies.serde_test]
version = "1.0.160"

[features]
default = ["device"]
device = [
    "dep:vulkano",
    "dep:ash",
    "dep:dashmap",
    "dep:rspirv",
    "dep:fxhash",
    "dep:crossbeam-channel",
]
serde = [
    "dep:serde",
    "dep:serde_bytes",
    "krnl-core/serde",
]

[target."cfg(not(target_family = \"wasm\"))".dependencies.ash]
version = "0.37.1"
optional = true

[target."cfg(not(target_family = \"wasm\"))".dependencies.crossbeam-channel]
version = "0.5.8"
optional = true

[target."cfg(not(target_family = \"wasm\"))".dependencies.vulkano]
version = "0.33.0"
optional = true
default-features = false

[target."cfg(not(target_family = \"wasm\"))".dev-dependencies.clap]
version = "4.2.4"
features = ["derive"]

[target."cfg(not(target_family = \"wasm\"))".dev-dependencies.libtest-mimic]
version = "0.6.0"

[target."cfg(target_family = \"wasm\")".dev-dependencies.wasm-bindgen-test]
version = "0.3.33"