From 3faf8641f7d74322a439f8027924a60bd833e5e4 Mon Sep 17 00:00:00 2001 From: Johannes Rudolph Date: Thu, 1 Feb 2024 17:25:13 +0100 Subject: [PATCH] expose `links` feature from egui-winit to eframe --- crates/eframe/Cargo.toml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/crates/eframe/Cargo.toml b/crates/eframe/Cargo.toml index a67cec27773..0c9896ef702 100644 --- a/crates/eframe/Cargo.toml +++ b/crates/eframe/Cargo.toml @@ -32,6 +32,7 @@ default = [ "accesskit", "default_fonts", "glow", + "links", "wayland", "web_screen_reader", "winit/default", @@ -65,6 +66,8 @@ glow = [ "winit/rwh_05", ] +links = ["egui-winit/links"] + ## Enable saving app state to disk. persistence = [ "directories-next", @@ -158,7 +161,6 @@ serde = { version = "1", optional = true, features = ["derive"] } [target.'cfg(not(target_arch = "wasm32"))'.dependencies] egui-winit = { version = "0.25.0", path = "../egui-winit", default-features = false, features = [ "clipboard", - "links", ] } image = { version = "0.24", default-features = false, features = [ "png",