From cb6a77365964a6f31ead5c237b8193e01fe0c304 Mon Sep 17 00:00:00 2001 From: Simon Gardling Date: Mon, 17 Apr 2023 11:28:55 -0400 Subject: [PATCH] fix build --- Cargo.toml | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 9f59b2d..dd99a7d 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -39,7 +39,9 @@ eframe = { git = "https://github.com/titaniumtown/egui.git", default-features = egui = { git = "https://github.com/titaniumtown/egui.git", default-features = false, features = [ "serde", ] } -epaint = { git = "https://github.com/titaniumtown/egui.git", default-features = false } +epaint = { git = "https://github.com/titaniumtown/egui.git", default-features = false , features = [ + "bytemuck", +] } emath = { git = "https://github.com/titaniumtown/egui.git", default-features = false } shadow-rs = { version = "0.12", default-features = false } @@ -57,7 +59,9 @@ benchmarks = { path = "./benchmarks" } [build-dependencies] shadow-rs = "0.12" -epaint = { git = "https://github.com/titaniumtown/egui.git", default-features = false } +epaint = { git = "https://github.com/titaniumtown/egui.git", default-features = false, features = [ + "bytemuck", +] } egui = { git = "https://github.com/titaniumtown/egui.git", default-features = false, features = [ "serde", ] }