diff --git a/examples/confirm_exit/Cargo.toml b/examples/confirm_exit/Cargo.toml index f9340a999..d2c986567 100644 --- a/examples/confirm_exit/Cargo.toml +++ b/examples/confirm_exit/Cargo.toml @@ -10,5 +10,5 @@ publish = false [dependencies] eframe = { path = "../../crates/eframe", features = [ - "__screenshot", # __screenshot is so we can dump a ascreenshot using EFRAME_SCREENSHOT_TO + "__screenshot", # __screenshot is so we can dump a screenshot using EFRAME_SCREENSHOT_TO ] } diff --git a/examples/custom_3d_glow/Cargo.toml b/examples/custom_3d_glow/Cargo.toml index 8e7a630d0..b44cb491b 100644 --- a/examples/custom_3d_glow/Cargo.toml +++ b/examples/custom_3d_glow/Cargo.toml @@ -10,7 +10,7 @@ publish = false [dependencies] eframe = { path = "../../crates/eframe", features = [ - "__screenshot", # __screenshot is so we can dump a ascreenshot using EFRAME_SCREENSHOT_TO + "__screenshot", # __screenshot is so we can dump a screenshot using EFRAME_SCREENSHOT_TO ] } egui_glow = { path = "../../crates/egui_glow" } glow = "0.11" diff --git a/examples/custom_3d_three-d/Cargo.toml b/examples/custom_3d_three-d/Cargo.toml index 20527808c..28ece334c 100644 --- a/examples/custom_3d_three-d/Cargo.toml +++ b/examples/custom_3d_three-d/Cargo.toml @@ -12,7 +12,7 @@ crate-type = ["cdylib", "rlib"] [dependencies] eframe = { path = "../../crates/eframe", features = [ - "__screenshot", # __screenshot is so we can dump a ascreenshot using EFRAME_SCREENSHOT_TO + "__screenshot", # __screenshot is so we can dump a screenshot using EFRAME_SCREENSHOT_TO ] } egui_glow = { path = "../../crates/egui_glow" } glow = "0.11" diff --git a/examples/custom_font/Cargo.toml b/examples/custom_font/Cargo.toml index 58adfbec6..15eee8ae6 100644 --- a/examples/custom_font/Cargo.toml +++ b/examples/custom_font/Cargo.toml @@ -10,5 +10,5 @@ publish = false [dependencies] eframe = { path = "../../crates/eframe", features = [ - "__screenshot", # __screenshot is so we can dump a ascreenshot using EFRAME_SCREENSHOT_TO + "__screenshot", # __screenshot is so we can dump a screenshot using EFRAME_SCREENSHOT_TO ] } diff --git a/examples/custom_font_style/Cargo.toml b/examples/custom_font_style/Cargo.toml index 9871910b0..c7a6fcd41 100644 --- a/examples/custom_font_style/Cargo.toml +++ b/examples/custom_font_style/Cargo.toml @@ -10,5 +10,5 @@ publish = false [dependencies] eframe = { path = "../../crates/eframe", features = [ - "__screenshot", # __screenshot is so we can dump a ascreenshot using EFRAME_SCREENSHOT_TO + "__screenshot", # __screenshot is so we can dump a screenshot using EFRAME_SCREENSHOT_TO ] } diff --git a/examples/custom_window_frame/Cargo.toml b/examples/custom_window_frame/Cargo.toml index ef4d5878f..5c52ce8ab 100644 --- a/examples/custom_window_frame/Cargo.toml +++ b/examples/custom_window_frame/Cargo.toml @@ -10,5 +10,5 @@ publish = false [dependencies] eframe = { path = "../../crates/eframe", features = [ - "__screenshot", # __screenshot is so we can dump a ascreenshot using EFRAME_SCREENSHOT_TO + "__screenshot", # __screenshot is so we can dump a screenshot using EFRAME_SCREENSHOT_TO ] } diff --git a/examples/download_image/Cargo.toml b/examples/download_image/Cargo.toml index 4cccfaf32..f51ab7d6e 100644 --- a/examples/download_image/Cargo.toml +++ b/examples/download_image/Cargo.toml @@ -10,7 +10,7 @@ publish = false [dependencies] eframe = { path = "../../crates/eframe", features = [ - "__screenshot", # __screenshot is so we can dump a ascreenshot using EFRAME_SCREENSHOT_TO + "__screenshot", # __screenshot is so we can dump a screenshot using EFRAME_SCREENSHOT_TO ] } egui_extras = { path = "../../crates/egui_extras", features = ["image"] } ehttp = "0.2" diff --git a/examples/file_dialog/Cargo.toml b/examples/file_dialog/Cargo.toml index f06f3f6b6..c50d8f28a 100644 --- a/examples/file_dialog/Cargo.toml +++ b/examples/file_dialog/Cargo.toml @@ -10,6 +10,6 @@ publish = false [dependencies] eframe = { path = "../../crates/eframe", features = [ - "__screenshot", # __screenshot is so we can dump a ascreenshot using EFRAME_SCREENSHOT_TO + "__screenshot", # __screenshot is so we can dump a screenshot using EFRAME_SCREENSHOT_TO ] } rfd = "0.10" diff --git a/examples/hello_world/Cargo.toml b/examples/hello_world/Cargo.toml index b83f65571..0c58572ee 100644 --- a/examples/hello_world/Cargo.toml +++ b/examples/hello_world/Cargo.toml @@ -10,6 +10,6 @@ publish = false [dependencies] eframe = { path = "../../crates/eframe", features = [ - "__screenshot", # __screenshot is so we can dump a ascreenshot using EFRAME_SCREENSHOT_TO + "__screenshot", # __screenshot is so we can dump a screenshot using EFRAME_SCREENSHOT_TO ] } tracing-subscriber = "0.3" diff --git a/examples/keyboard_events/Cargo.toml b/examples/keyboard_events/Cargo.toml index 693ff8b6a..df7681f69 100644 --- a/examples/keyboard_events/Cargo.toml +++ b/examples/keyboard_events/Cargo.toml @@ -10,6 +10,6 @@ publish = false [dependencies] eframe = { path = "../../crates/eframe", features = [ - "__screenshot", # __screenshot is so we can dump a ascreenshot using EFRAME_SCREENSHOT_TO + "__screenshot", # __screenshot is so we can dump a screenshot using EFRAME_SCREENSHOT_TO ] } tracing-subscriber = "0.3" diff --git a/examples/puffin_profiler/Cargo.toml b/examples/puffin_profiler/Cargo.toml index 955de856a..63db53936 100644 --- a/examples/puffin_profiler/Cargo.toml +++ b/examples/puffin_profiler/Cargo.toml @@ -10,7 +10,7 @@ publish = false [dependencies] eframe = { path = "../../crates/eframe", features = [ - "__screenshot", # __screenshot is so we can dump a ascreenshot using EFRAME_SCREENSHOT_TO + "__screenshot", # __screenshot is so we can dump a screenshot using EFRAME_SCREENSHOT_TO ] } puffin = "0.14" puffin_http = "0.11" diff --git a/examples/retained_image/Cargo.toml b/examples/retained_image/Cargo.toml index b508ed243..364df4b8f 100644 --- a/examples/retained_image/Cargo.toml +++ b/examples/retained_image/Cargo.toml @@ -10,7 +10,7 @@ publish = false [dependencies] eframe = { path = "../../crates/eframe", features = [ - "__screenshot", # __screenshot is so we can dump a ascreenshot using EFRAME_SCREENSHOT_TO + "__screenshot", # __screenshot is so we can dump a screenshot using EFRAME_SCREENSHOT_TO ] } egui_extras = { path = "../../crates/egui_extras", features = ["image"] } image = { version = "0.24", default-features = false, features = ["png"] } diff --git a/examples/screenshot/Cargo.toml b/examples/screenshot/Cargo.toml index 10e3d87f2..52c87cd9b 100644 --- a/examples/screenshot/Cargo.toml +++ b/examples/screenshot/Cargo.toml @@ -10,6 +10,6 @@ publish = false [dependencies] eframe = { path = "../../crates/eframe", features = [ - "__screenshot", # __screenshot is so we can dump a ascreenshot using EFRAME_SCREENSHOT_TO + "__screenshot", # __screenshot is so we can dump a screenshot using EFRAME_SCREENSHOT_TO ] } itertools = "0.10.3" diff --git a/examples/serial_windows/Cargo.toml b/examples/serial_windows/Cargo.toml index 7e585867e..95c57f1f9 100644 --- a/examples/serial_windows/Cargo.toml +++ b/examples/serial_windows/Cargo.toml @@ -10,5 +10,5 @@ publish = false [dependencies] eframe = { path = "../../crates/eframe", features = [ - "__screenshot", # __screenshot is so we can dump a ascreenshot using EFRAME_SCREENSHOT_TO + "__screenshot", # __screenshot is so we can dump a screenshot using EFRAME_SCREENSHOT_TO ] } diff --git a/examples/svg/Cargo.toml b/examples/svg/Cargo.toml index 489692e5f..66b2fc81d 100644 --- a/examples/svg/Cargo.toml +++ b/examples/svg/Cargo.toml @@ -10,6 +10,6 @@ publish = false [dependencies] eframe = { path = "../../crates/eframe", features = [ - "__screenshot", # __screenshot is so we can dump a ascreenshot using EFRAME_SCREENSHOT_TO + "__screenshot", # __screenshot is so we can dump a screenshot using EFRAME_SCREENSHOT_TO ] } egui_extras = { path = "../../crates/egui_extras", features = ["svg"] }