From 381e148c36520a0feea4964a1a30a5c12745fc94 Mon Sep 17 00:00:00 2001 From: Sludge <96552222+SludgePhD@users.noreply.github.com> Date: Sun, 16 Apr 2023 22:25:40 +0200 Subject: [PATCH] Enable bytemuck feature --- wonnx/Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wonnx/Cargo.toml b/wonnx/Cargo.toml index 5677ce00..6866964d 100644 --- a/wonnx/Cargo.toml +++ b/wonnx/Cargo.toml @@ -20,7 +20,7 @@ exclude = [ [dependencies] wgpu = "0.14.0" -bytemuck = "1.9.1" +bytemuck = { version = "1.9.1", features = ["extern_crate_alloc"] } protobuf = { version = "2.27.1", features = ["with-bytes"] } log = "0.4.17" tera = { version = "1.15.0", default-features = false }