From 8f2c8664e77ffb2d0c063ff7ae76975862350f53 Mon Sep 17 00:00:00 2001 From: Emil Ernerfeldt Date: Thu, 1 Feb 2024 21:29:48 +0100 Subject: [PATCH] Emilk/revert workspace deps (#3942) * Closes https://github.com/emilk/egui/issues/3941 Workspace dependencies can be annoying. If you don't set them to `default-features=false`, then you cannot opt out of their default features anywhere else, and get warnings if you try. So you set `default-features=false`, and then you need to manually opt in to the default features everywhere else. Or, as in my case, don't. I don't have the energy to do this tonight, so I'll just revert. --- Cargo.toml | 12 ----------- crates/eframe/Cargo.toml | 22 +++++++++++++------- crates/egui-wgpu/Cargo.toml | 6 ++++-- crates/egui-winit/Cargo.toml | 4 +++- crates/egui/Cargo.toml | 2 +- crates/egui_demo_app/Cargo.toml | 12 +++++++---- crates/egui_demo_lib/Cargo.toml | 8 +++---- crates/egui_extras/Cargo.toml | 4 +++- crates/egui_glow/Cargo.toml | 6 ++++-- crates/egui_plot/Cargo.toml | 2 +- crates/epaint/Cargo.toml | 4 ++-- examples/confirm_exit/Cargo.toml | 2 +- examples/custom_3d_glow/Cargo.toml | 2 +- examples/custom_font/Cargo.toml | 2 +- examples/custom_font_style/Cargo.toml | 2 +- examples/custom_plot_manipulation/Cargo.toml | 4 ++-- examples/custom_window_frame/Cargo.toml | 2 +- examples/file_dialog/Cargo.toml | 2 +- examples/hello_world/Cargo.toml | 4 ++-- examples/hello_world_par/Cargo.toml | 2 +- examples/hello_world_simple/Cargo.toml | 2 +- examples/images/Cargo.toml | 4 ++-- examples/keyboard_events/Cargo.toml | 2 +- examples/multiple_viewports/Cargo.toml | 2 +- examples/puffin_profiler/Cargo.toml | 2 +- examples/save_plot/Cargo.toml | 4 ++-- examples/screenshot/Cargo.toml | 2 +- examples/serial_windows/Cargo.toml | 2 +- examples/test_inline_glow_paint/Cargo.toml | 2 +- examples/test_viewports/Cargo.toml | 2 +- examples/user_attention/Cargo.toml | 2 +- 31 files changed, 69 insertions(+), 61 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index a91bf042e..0ed6d93a9 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -48,18 +48,6 @@ opt-level = 2 [workspace.dependencies] -emath = { version = "0.25.0", path = "crates/emath", default-features = false } -ecolor = { version = "0.25.0", path = "crates/ecolor", default-features = false } -epaint = { version = "0.25.0", path = "crates/epaint", default-features = false } -egui = { version = "0.25.0", path = "crates/egui", default-features = false } -egui_plot = { version = "0.25.0", path = "crates/egui_plot", default-features = false } -egui-winit = { version = "0.25.0", path = "crates/egui-winit", default-features = false } -egui_extras = { version = "0.25.0", path = "crates/egui_extras", default-features = false } -egui-wgpu = { version = "0.25.0", path = "crates/egui-wgpu", default-features = false } -egui_demo_lib = { version = "0.25.0", path = "crates/egui_demo_lib", default-features = false } -egui_glow = { version = "0.25.0", path = "crates/egui_glow", default-features = false } -eframe = { version = "0.25.0", path = "crates/eframe", default-features = false } - criterion = { version = "0.5.1", default-features = false } glow = "0.13" puffin = "0.19" diff --git a/crates/eframe/Cargo.toml b/crates/eframe/Cargo.toml index 147c4ac1e..a67cec277 100644 --- a/crates/eframe/Cargo.toml +++ b/crates/eframe/Cargo.toml @@ -88,7 +88,11 @@ puffin = [ ] ## Enables wayland support and fixes clipboard issue. -wayland = ["egui-winit/wayland", "egui-wgpu?/wayland", "egui_glow?/wayland"] +wayland = [ + "egui-winit/wayland", + "egui-wgpu?/wayland", + "egui_glow?/wayland", +] ## Enable screen reader support (requires `ctx.options_mut(|o| o.screen_reader = true);`) on web. ## @@ -114,14 +118,18 @@ web_screen_reader = [ wgpu = ["dep:wgpu", "dep:egui-wgpu", "dep:pollster"] ## Enables compiling for x11. -x11 = ["egui-winit/x11", "egui-wgpu?/x11", "egui_glow?/x11"] +x11 = [ + "egui-winit/x11", + "egui-wgpu?/x11", + "egui_glow?/x11", +] ## If set, eframe will look for the env-var `EFRAME_SCREENSHOT_TO` and write a screenshot to that location, and then quit. ## This is used to generate images for examples. __screenshot = [] [dependencies] -egui = { workspace = true, default-features = false, features = [ +egui = { version = "0.25.0", path = "../egui", default-features = false, features = [ "bytemuck", "log", ] } @@ -136,7 +144,7 @@ web-time.workspace = true ## Enable this when generating docs. document-features = { version = "0.2", optional = true } -egui_glow = { workspace = true, optional = true, default-features = false } +egui_glow = { version = "0.25.0", path = "../egui_glow", optional = true, default-features = false } glow = { workspace = true, optional = true } # glutin stuck on old version of raw-window-handle: rwh_05 = { package = "raw-window-handle", version = "0.5.2", optional = true, features = [ @@ -148,7 +156,7 @@ serde = { version = "1", optional = true, features = ["derive"] } # ------------------------------------------- # native: [target.'cfg(not(target_arch = "wasm32"))'.dependencies] -egui-winit = { workspace = true, default-features = false, features = [ +egui-winit = { version = "0.25.0", path = "../egui-winit", default-features = false, features = [ "clipboard", "links", ] } @@ -159,7 +167,7 @@ winit = { workspace = true, default-features = false, features = ["rwh_06"] } # optional native: directories-next = { version = "2", optional = true } -egui-wgpu = { workspace = true, optional = true, features = [ +egui-wgpu = { version = "0.25.0", path = "../egui-wgpu", optional = true, features = [ "winit", ] } # if wgpu is used, use it with winit pollster = { version = "0.3", optional = true } # needed for wgpu @@ -238,5 +246,5 @@ web-sys = { version = "0.3.58", features = [ ] } # optional web: -egui-wgpu = { workspace = true, optional = true } # if wgpu is used, use it without (!) winit +egui-wgpu = { version = "0.25.0", path = "../egui-wgpu", optional = true } # if wgpu is used, use it without (!) winit wgpu = { workspace = true, optional = true } diff --git a/crates/egui-wgpu/Cargo.toml b/crates/egui-wgpu/Cargo.toml index 4292aed7c..d05f530fa 100644 --- a/crates/egui-wgpu/Cargo.toml +++ b/crates/egui-wgpu/Cargo.toml @@ -42,8 +42,10 @@ x11 = ["winit?/x11"] [dependencies] -egui = { workspace = true, default-features = false } -epaint = { workspace = true, default-features = false, features = ["bytemuck"] } +egui = { version = "0.25.0", path = "../egui", default-features = false } +epaint = { version = "0.25.0", path = "../epaint", default-features = false, features = [ + "bytemuck", +] } bytemuck = "1.7" log = { version = "0.4", features = ["std"] } diff --git a/crates/egui-winit/Cargo.toml b/crates/egui-winit/Cargo.toml index 77e9f1905..bd629e663 100644 --- a/crates/egui-winit/Cargo.toml +++ b/crates/egui-winit/Cargo.toml @@ -55,7 +55,9 @@ wayland = ["winit/wayland", "bytemuck"] x11 = ["winit/x11", "bytemuck"] [dependencies] -egui = { workspace = true, default-features = false, features = ["log"] } +egui = { version = "0.25.0", path = "../egui", default-features = false, features = [ + "log", +] } log = { version = "0.4", features = ["std"] } raw-window-handle.workspace = true web-time.workspace = true diff --git a/crates/egui/Cargo.toml b/crates/egui/Cargo.toml index 2e005f370..c6d5e9e5a 100644 --- a/crates/egui/Cargo.toml +++ b/crates/egui/Cargo.toml @@ -81,7 +81,7 @@ unity = ["epaint/unity"] [dependencies] -epaint = { workspace = true, default-features = false } +epaint = { version = "0.25.0", path = "../epaint", default-features = false } ahash = { version = "0.8.6", default-features = false, features = [ "no-rng", # we don't need DOS-protection, so we let users opt-in to it instead diff --git a/crates/egui_demo_app/Cargo.toml b/crates/egui_demo_app/Cargo.toml index e01cdc967..1b4ae6fe0 100644 --- a/crates/egui_demo_app/Cargo.toml +++ b/crates/egui_demo_app/Cargo.toml @@ -38,16 +38,20 @@ chrono = { version = "0.4", default-features = false, features = [ "js-sys", "wasmbind", ] } -eframe = { workspace = true, default-features = false, features = [ +eframe = { version = "0.25.0", path = "../eframe", default-features = false, features = [ "web_screen_reader", ] } -egui = { workspace = true, features = [ +egui = { version = "0.25.0", path = "../egui", features = [ "callstack", "extra_debug_asserts", "log", ] } -egui_demo_lib = { workspace = true, features = ["chrono"] } -egui_extras = { workspace = true, features = ["image"] } +egui_demo_lib = { version = "0.25.0", path = "../egui_demo_lib", features = [ + "chrono", +] } +egui_extras = { version = "0.25.0", path = "../egui_extras", features = [ + "image", +] } log = { version = "0.4", features = ["std"] } # Optional dependencies: diff --git a/crates/egui_demo_lib/Cargo.toml b/crates/egui_demo_lib/Cargo.toml index b9326e088..839288d2a 100644 --- a/crates/egui_demo_lib/Cargo.toml +++ b/crates/egui_demo_lib/Cargo.toml @@ -38,11 +38,11 @@ syntect = ["egui_extras/syntect"] [dependencies] -egui = { workspace = true, default-features = false } -egui_extras.workspace = true -egui_plot.workspace = true +egui = { version = "0.25.0", path = "../egui", default-features = false } +egui_extras = { version = "0.25.0", path = "../egui_extras" } +egui_plot = { version = "0.25.0", path = "../egui_plot" } log = { version = "0.4", features = ["std"] } -unicode_names2 = { version = "0.6.0", default-features = false } # this old version has fewer dependencies +unicode_names2 = { version = "0.6.0", default-features = false } # this old version has fewer dependencies #! ### Optional dependencies chrono = { version = "0.4", optional = true, features = ["js-sys", "wasmbind"] } diff --git a/crates/egui_extras/Cargo.toml b/crates/egui_extras/Cargo.toml index 1c2306bcd..55a1c1688 100644 --- a/crates/egui_extras/Cargo.toml +++ b/crates/egui_extras/Cargo.toml @@ -60,7 +60,9 @@ syntect = ["dep:syntect"] [dependencies] -egui = { workspace = true, default-features = false, features = ["serde"] } +egui = { version = "0.25.0", path = "../egui", default-features = false, features = [ + "serde", +] } enum-map = { version = "2", features = ["serde"] } log = { version = "0.4", features = ["std"] } serde = { version = "1", features = ["derive"] } diff --git a/crates/egui_glow/Cargo.toml b/crates/egui_glow/Cargo.toml index 3db93bc0a..e4ed23cd9 100644 --- a/crates/egui_glow/Cargo.toml +++ b/crates/egui_glow/Cargo.toml @@ -50,7 +50,9 @@ x11 = ["winit?/x11"] [dependencies] -egui = { workspace = true, default-features = false, features = ["bytemuck"] } +egui = { version = "0.25.0", path = "../egui", default-features = false, features = [ + "bytemuck", +] } bytemuck = "1.7" glow.workspace = true @@ -67,7 +69,7 @@ document-features = { version = "0.2", optional = true } # Native: [target.'cfg(not(target_arch = "wasm32"))'.dependencies] -egui-winit = { workspace = true, optional = true, default-features = false } +egui-winit = { version = "0.25.0", path = "../egui-winit", optional = true, default-features = false } puffin = { workspace = true, optional = true } winit = { workspace = true, optional = true, default-features = false, features = [ "rwh_05", # glutin stuck on old version of raw-window-handle diff --git a/crates/egui_plot/Cargo.toml b/crates/egui_plot/Cargo.toml index 12f78c17b..761b7b8e7 100644 --- a/crates/egui_plot/Cargo.toml +++ b/crates/egui_plot/Cargo.toml @@ -32,7 +32,7 @@ serde = ["dep:serde", "egui/serde"] [dependencies] -egui = { workspace = true, default-features = false } +egui = { version = "0.25.0", path = "../egui", default-features = false } #! ### Optional dependencies diff --git a/crates/epaint/Cargo.toml b/crates/epaint/Cargo.toml index 1dc860e9d..12824f9fb 100644 --- a/crates/epaint/Cargo.toml +++ b/crates/epaint/Cargo.toml @@ -80,8 +80,8 @@ serde = ["dep:serde", "ahash/serde", "emath/serde", "ecolor/serde"] unity = [] [dependencies] -emath.workspace = true -ecolor.workspace = true +emath = { version = "0.25.0", path = "../emath" } +ecolor = { version = "0.25.0", path = "../ecolor" } ab_glyph = "0.2.11" ahash = { version = "0.8.1", default-features = false, features = [ diff --git a/examples/confirm_exit/Cargo.toml b/examples/confirm_exit/Cargo.toml index bda7720fc..2b0fae85d 100644 --- a/examples/confirm_exit/Cargo.toml +++ b/examples/confirm_exit/Cargo.toml @@ -9,7 +9,7 @@ publish = false [dependencies] -eframe = { workspace = true, features = [ +eframe = { path = "../../crates/eframe", features = [ "__screenshot", # __screenshot is so we can dump a screenshot using EFRAME_SCREENSHOT_TO ] } env_logger = { version = "0.10", default-features = false, features = [ diff --git a/examples/custom_3d_glow/Cargo.toml b/examples/custom_3d_glow/Cargo.toml index 8427fbab8..0d268759c 100644 --- a/examples/custom_3d_glow/Cargo.toml +++ b/examples/custom_3d_glow/Cargo.toml @@ -9,7 +9,7 @@ publish = false [dependencies] -eframe = { workspace = true, features = [ +eframe = { path = "../../crates/eframe", features = [ "__screenshot", # __screenshot is so we can dump a screenshot using EFRAME_SCREENSHOT_TO ] } env_logger = { version = "0.10", default-features = false, features = [ diff --git a/examples/custom_font/Cargo.toml b/examples/custom_font/Cargo.toml index f3412fe87..0eec65cd4 100644 --- a/examples/custom_font/Cargo.toml +++ b/examples/custom_font/Cargo.toml @@ -9,7 +9,7 @@ publish = false [dependencies] -eframe = { workspace = true, features = [ +eframe = { path = "../../crates/eframe", features = [ "__screenshot", # __screenshot is so we can dump a screenshot using EFRAME_SCREENSHOT_TO ] } env_logger = { version = "0.10", default-features = false, features = [ diff --git a/examples/custom_font_style/Cargo.toml b/examples/custom_font_style/Cargo.toml index 16441a45a..a429303bb 100644 --- a/examples/custom_font_style/Cargo.toml +++ b/examples/custom_font_style/Cargo.toml @@ -9,7 +9,7 @@ publish = false [dependencies] -eframe = { workspace = true, features = [ +eframe = { path = "../../crates/eframe", features = [ "__screenshot", # __screenshot is so we can dump a screenshot using EFRAME_SCREENSHOT_TO ] } env_logger = { version = "0.10", default-features = false, features = [ diff --git a/examples/custom_plot_manipulation/Cargo.toml b/examples/custom_plot_manipulation/Cargo.toml index 17dd3f8a5..15943555f 100644 --- a/examples/custom_plot_manipulation/Cargo.toml +++ b/examples/custom_plot_manipulation/Cargo.toml @@ -9,10 +9,10 @@ publish = false [dependencies] -eframe = { workspace = true, features = [ +eframe = { path = "../../crates/eframe", features = [ "__screenshot", # __screenshot is so we can dump a screenshot using EFRAME_SCREENSHOT_TO ] } -egui_plot.workspace = true +egui_plot = { path = "../../crates/egui_plot" } env_logger = { version = "0.10", default-features = false, features = [ "auto-color", "humantime", diff --git a/examples/custom_window_frame/Cargo.toml b/examples/custom_window_frame/Cargo.toml index b84c14431..6dc91e4e5 100644 --- a/examples/custom_window_frame/Cargo.toml +++ b/examples/custom_window_frame/Cargo.toml @@ -9,7 +9,7 @@ publish = false [dependencies] -eframe = { workspace = true, features = [ +eframe = { path = "../../crates/eframe", features = [ "__screenshot", # __screenshot is so we can dump a screenshot using EFRAME_SCREENSHOT_TO ] } env_logger = { version = "0.10", default-features = false, features = [ diff --git a/examples/file_dialog/Cargo.toml b/examples/file_dialog/Cargo.toml index 468929472..0ad331dff 100644 --- a/examples/file_dialog/Cargo.toml +++ b/examples/file_dialog/Cargo.toml @@ -9,7 +9,7 @@ publish = false [dependencies] -eframe = { workspace = true, features = [ +eframe = { path = "../../crates/eframe", features = [ "__screenshot", # __screenshot is so we can dump a screenshot using EFRAME_SCREENSHOT_TO ] } env_logger = { version = "0.10", default-features = false, features = [ diff --git a/examples/hello_world/Cargo.toml b/examples/hello_world/Cargo.toml index 84c5a3b12..fb2ca48c9 100644 --- a/examples/hello_world/Cargo.toml +++ b/examples/hello_world/Cargo.toml @@ -9,12 +9,12 @@ publish = false [dependencies] -eframe = { workspace = true, features = [ +eframe = { path = "../../crates/eframe", features = [ "__screenshot", # __screenshot is so we can dump a screenshot using EFRAME_SCREENSHOT_TO ] } # For image support: -egui_extras = { workspace = true, features = ["image"] } +egui_extras = { path = "../../crates/egui_extras", features = ["image"] } env_logger = { version = "0.10", default-features = false, features = [ "auto-color", diff --git a/examples/hello_world_par/Cargo.toml b/examples/hello_world_par/Cargo.toml index 442f671e3..46d6aa741 100644 --- a/examples/hello_world_par/Cargo.toml +++ b/examples/hello_world_par/Cargo.toml @@ -9,7 +9,7 @@ publish = false [dependencies] -eframe = { workspace = true, default-features = false, features = [ +eframe = { path = "../../crates/eframe", default-features = false, features = [ # accesskit struggles with threading "default_fonts", "wgpu", diff --git a/examples/hello_world_simple/Cargo.toml b/examples/hello_world_simple/Cargo.toml index ec73a4d26..36efecdda 100644 --- a/examples/hello_world_simple/Cargo.toml +++ b/examples/hello_world_simple/Cargo.toml @@ -9,7 +9,7 @@ publish = false [dependencies] -eframe = { workspace = true, features = [ +eframe = { path = "../../crates/eframe", features = [ "__screenshot", # __screenshot is so we can dump a screenshot using EFRAME_SCREENSHOT_TO ] } env_logger = { version = "0.10", default-features = false, features = [ diff --git a/examples/images/Cargo.toml b/examples/images/Cargo.toml index 9d2e2305e..bddc9afbf 100644 --- a/examples/images/Cargo.toml +++ b/examples/images/Cargo.toml @@ -9,10 +9,10 @@ publish = false [dependencies] -eframe = { workspace = true, features = [ +eframe = { path = "../../crates/eframe", features = [ "__screenshot", # __screenshot is so we can dump a screenshot using EFRAME_SCREENSHOT_TO ] } -egui_extras = { workspace = true, features = ["all_loaders"] } +egui_extras = { path = "../../crates/egui_extras", features = ["all_loaders"] } env_logger = { version = "0.10", default-features = false, features = [ "auto-color", "humantime", diff --git a/examples/keyboard_events/Cargo.toml b/examples/keyboard_events/Cargo.toml index d205f9ee1..4f12579e0 100644 --- a/examples/keyboard_events/Cargo.toml +++ b/examples/keyboard_events/Cargo.toml @@ -9,7 +9,7 @@ publish = false [dependencies] -eframe = { workspace = true, features = [ +eframe = { path = "../../crates/eframe", features = [ "__screenshot", # __screenshot is so we can dump a screenshot using EFRAME_SCREENSHOT_TO ] } env_logger = { version = "0.10", default-features = false, features = [ diff --git a/examples/multiple_viewports/Cargo.toml b/examples/multiple_viewports/Cargo.toml index cc69d0d0a..1e77e32ea 100644 --- a/examples/multiple_viewports/Cargo.toml +++ b/examples/multiple_viewports/Cargo.toml @@ -11,7 +11,7 @@ publish = false wgpu = ["eframe/wgpu"] [dependencies] -eframe = { workspace = true, features = [ +eframe = { path = "../../crates/eframe", features = [ "__screenshot", # __screenshot is so we can dump a screenshot using EFRAME_SCREENSHOT_TO ] } env_logger = { version = "0.10", default-features = false, features = [ diff --git a/examples/puffin_profiler/Cargo.toml b/examples/puffin_profiler/Cargo.toml index 3f8a8c427..4b7b2e9b4 100644 --- a/examples/puffin_profiler/Cargo.toml +++ b/examples/puffin_profiler/Cargo.toml @@ -13,7 +13,7 @@ wgpu = ["eframe/wgpu"] [dependencies] -eframe = { workspace = true, features = [ +eframe = { path = "../../crates/eframe", features = [ "puffin", "__screenshot", # __screenshot is so we can dump a screenshot using EFRAME_SCREENSHOT_TO ] } diff --git a/examples/save_plot/Cargo.toml b/examples/save_plot/Cargo.toml index 65fc30865..49a46f580 100644 --- a/examples/save_plot/Cargo.toml +++ b/examples/save_plot/Cargo.toml @@ -8,10 +8,10 @@ rust-version = "1.72" publish = false [dependencies] -eframe = { workspace = true, features = [ +eframe = { path = "../../crates/eframe", features = [ "__screenshot", # __screenshot is so we can dump a screenshot using EFRAME_SCREENSHOT_TO ] } -egui_plot.workspace = true +egui_plot = { path = "../../crates/egui_plot" } image = { version = "0.24", default-features = false, features = ["png"] } rfd = "0.11.0" env_logger = { version = "0.10", default-features = false, features = [ diff --git a/examples/screenshot/Cargo.toml b/examples/screenshot/Cargo.toml index 6a9c3990b..f7a65a8bf 100644 --- a/examples/screenshot/Cargo.toml +++ b/examples/screenshot/Cargo.toml @@ -12,7 +12,7 @@ publish = false [dependencies] -eframe = { workspace = true, features = [ +eframe = { path = "../../crates/eframe", features = [ "__screenshot", # __screenshot is so we can dump a screenshot using EFRAME_SCREENSHOT_TO "wgpu", ] } diff --git a/examples/serial_windows/Cargo.toml b/examples/serial_windows/Cargo.toml index eb235ddd1..e3ba3159a 100644 --- a/examples/serial_windows/Cargo.toml +++ b/examples/serial_windows/Cargo.toml @@ -9,7 +9,7 @@ publish = false [dependencies] -eframe = { workspace = true, features = [ +eframe = { path = "../../crates/eframe", features = [ "__screenshot", # __screenshot is so we can dump a screenshot using EFRAME_SCREENSHOT_TO ] } env_logger = { version = "0.10", default-features = false, features = [ diff --git a/examples/test_inline_glow_paint/Cargo.toml b/examples/test_inline_glow_paint/Cargo.toml index b72645fbb..472935ed5 100644 --- a/examples/test_inline_glow_paint/Cargo.toml +++ b/examples/test_inline_glow_paint/Cargo.toml @@ -10,7 +10,7 @@ publish = false # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] -eframe.workspace = true +eframe = { path = "../../crates/eframe" } env_logger = { version = "0.10", default-features = false, features = [ "auto-color", "humantime", diff --git a/examples/test_viewports/Cargo.toml b/examples/test_viewports/Cargo.toml index 2e339b600..9ebebae20 100644 --- a/examples/test_viewports/Cargo.toml +++ b/examples/test_viewports/Cargo.toml @@ -11,7 +11,7 @@ publish = false wgpu = ["eframe/wgpu"] [dependencies] -eframe = { workspace = true, features = [ +eframe = { path = "../../crates/eframe", features = [ "__screenshot", # __screenshot is so we can dump a screenshot using EFRAME_SCREENSHOT_TO ] } env_logger = { version = "0.10", default-features = false, features = [ diff --git a/examples/user_attention/Cargo.toml b/examples/user_attention/Cargo.toml index b45420161..91103635d 100644 --- a/examples/user_attention/Cargo.toml +++ b/examples/user_attention/Cargo.toml @@ -8,7 +8,7 @@ rust-version = "1.72" publish = false [dependencies] -eframe = { workspace = true, features = [ +eframe = { path = "../../crates/eframe", features = [ "__screenshot", # __screenshot is so we can dump a screenshot using EFRAME_SCREENSHOT_TO ] } env_logger = { version = "0.10", default-features = false, features = [