[package]
edition = "2021"
rust-version = "1.85"
name = "wgpu-burn-interop"
version = "0.9.0"
authors = [
"Radu Alexandru Rosu <alex@meshcapade.com>",
"Aman Shenoy <aman@meshcapade.com>",
]
build = false
publish = true
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Small library interop via cubecl between wgpu and burn"
documentation = "https://docs.rs/wgpu-burn-interop"
readme = "README.md"
license = "MIT"
repository = "https://github.com/Meshcapade/gloss"
[lib]
name = "wgpu_burn_interop"
path = "src/lib.rs"
[dependencies.burn]
version = "0.18"
features = [
"wgpu",
"candle",
"autotune",
]
default-features = false
[dependencies.burn-cubecl]
version = "0.18"
default-features = false
[dependencies.cubecl]
version = "0.6.0"
default-features = false
[dependencies.gloss-burn-multibackend]
version = "0.9"
features = ["burn-wgpu"]
[dependencies.once_cell]
version = "1.19"
[dependencies.wgpu]
version = "25.0"
features = [
"wgsl",
"spirv",
"webgl",
"metal",
"webgpu",
]
default-features = false
[lints.clippy]
explicit_iter_loop = "allow"
missing_panics_doc = "allow"
module_name_repetitions = "allow"
must_use_candidate = "allow"
unused_self = "allow"
[lints.clippy.all]
level = "deny"
priority = -1
[lints.clippy.pedantic]
level = "warn"
priority = -1