From 5d98c185a4a686ba7a350c8c7a009b092ffd1007 Mon Sep 17 00:00:00 2001 From: Guillaume Anthouard Date: Sun, 21 Jul 2024 12:46:07 +0200 Subject: [PATCH] Do not include default egui features (#58) --- Cargo.toml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 5518567..2b898c3 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -16,8 +16,8 @@ version = "0.17.0" repository = "https://github.com/lampsitter/egui_commonmark" [workspace.dependencies] -egui_extras = "0.28" -egui = "0.28" +egui_extras = { version = "0.28", default-features = false } +egui = { version = "0.28", default-features = false } egui_commonmark_backend = { version = "0.17.0", path = "egui_commonmark_backend", default-features = false } egui_commonmark_macros = { version = "0.17.0", path = "egui_commonmark_macros", default-features = false }