@@ -88,11 +88,7 @@ puffin = [
88
88
]
89
89
90
90
# # Enables wayland support and fixes clipboard issue.
91
- wayland = [
92
- " egui-winit/wayland" ,
93
- " egui-wgpu?/wayland" ,
94
- " egui_glow?/wayland" ,
95
- ]
91
+ wayland = [" egui-winit/wayland" , " egui-wgpu?/wayland" , " egui_glow?/wayland" ]
96
92
97
93
# # Enable screen reader support (requires `ctx.options_mut(|o| o.screen_reader = true);`) on web.
98
94
# #
@@ -118,18 +114,14 @@ web_screen_reader = [
118
114
wgpu = [" dep:wgpu" , " dep:egui-wgpu" , " dep:pollster" ]
119
115
120
116
# # Enables compiling for x11.
121
- x11 = [
122
- " egui-winit/x11" ,
123
- " egui-wgpu?/x11" ,
124
- " egui_glow?/x11" ,
125
- ]
117
+ x11 = [" egui-winit/x11" , " egui-wgpu?/x11" , " egui_glow?/x11" ]
126
118
127
119
# # If set, eframe will look for the env-var `EFRAME_SCREENSHOT_TO` and write a screenshot to that location, and then quit.
128
120
# # This is used to generate images for examples.
129
121
__screenshot = []
130
122
131
123
[dependencies ]
132
- egui = { version = " 0.25.0 " , path = " ../egui" , default-features = false , features = [
124
+ egui = { path = " ../egui" , default-features = false , features = [
133
125
" bytemuck" ,
134
126
" log" ,
135
127
] }
@@ -144,7 +136,7 @@ web-time.workspace = true
144
136
# # Enable this when generating docs.
145
137
document-features = { version = " 0.2" , optional = true }
146
138
147
- egui_glow = { version = " 0.25.0 " , path = " ../egui_glow" , optional = true , default-features = false }
139
+ egui_glow = { path = " ../egui_glow" , optional = true , default-features = false }
148
140
glow = { workspace = true , optional = true }
149
141
# glutin stuck on old version of raw-window-handle:
150
142
rwh_05 = { package = " raw-window-handle" , version = " 0.5.2" , optional = true , features = [
@@ -156,7 +148,7 @@ serde = { version = "1", optional = true, features = ["derive"] }
156
148
# -------------------------------------------
157
149
# native:
158
150
[target .'cfg(not(target_arch = "wasm32"))' .dependencies ]
159
- egui-winit = { version = " 0.25.0 " , path = " ../egui-winit" , default-features = false , features = [
151
+ egui-winit = { path = " ../egui-winit" , default-features = false , features = [
160
152
" clipboard" ,
161
153
" links" ,
162
154
] }
@@ -167,7 +159,7 @@ winit = { workspace = true, default-features = false, features = ["rwh_06"] }
167
159
168
160
# optional native:
169
161
directories-next = { version = " 2" , optional = true }
170
- egui-wgpu = { version = " 0.25.0 " , path = " ../egui-wgpu" , optional = true , features = [
162
+ egui-wgpu = { path = " ../egui-wgpu" , optional = true , features = [
171
163
" winit" ,
172
164
] } # if wgpu is used, use it with winit
173
165
pollster = { version = " 0.3" , optional = true } # needed for wgpu
@@ -246,5 +238,5 @@ web-sys = { version = "0.3.58", features = [
246
238
] }
247
239
248
240
# optional web:
249
- egui-wgpu = { version = " 0.25.0 " , path = " ../egui-wgpu" , optional = true } # if wgpu is used, use it without (!) winit
241
+ egui-wgpu = { path = " ../egui-wgpu" , optional = true } # if wgpu is used, use it without (!) winit
250
242
wgpu = { workspace = true , optional = true }
0 commit comments