Skip to content

Commit dda9f79

Browse files
committed
Remove version field for path-dependencies
1 parent 520b28c commit dda9f79

File tree

10 files changed

+25
-43
lines changed

10 files changed

+25
-43
lines changed

crates/eframe/Cargo.toml

+7-15
Original file line numberDiff line numberDiff line change
@@ -88,11 +88,7 @@ puffin = [
8888
]
8989

9090
## 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"]
9692

9793
## Enable screen reader support (requires `ctx.options_mut(|o| o.screen_reader = true);`) on web.
9894
##
@@ -118,18 +114,14 @@ web_screen_reader = [
118114
wgpu = ["dep:wgpu", "dep:egui-wgpu", "dep:pollster"]
119115

120116
## 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"]
126118

127119
## If set, eframe will look for the env-var `EFRAME_SCREENSHOT_TO` and write a screenshot to that location, and then quit.
128120
## This is used to generate images for examples.
129121
__screenshot = []
130122

131123
[dependencies]
132-
egui = { version = "0.25.0", path = "../egui", default-features = false, features = [
124+
egui = { path = "../egui", default-features = false, features = [
133125
"bytemuck",
134126
"log",
135127
] }
@@ -144,7 +136,7 @@ web-time.workspace = true
144136
## Enable this when generating docs.
145137
document-features = { version = "0.2", optional = true }
146138

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 }
148140
glow = { workspace = true, optional = true }
149141
# glutin stuck on old version of raw-window-handle:
150142
rwh_05 = { package = "raw-window-handle", version = "0.5.2", optional = true, features = [
@@ -156,7 +148,7 @@ serde = { version = "1", optional = true, features = ["derive"] }
156148
# -------------------------------------------
157149
# native:
158150
[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 = [
160152
"clipboard",
161153
"links",
162154
] }
@@ -167,7 +159,7 @@ winit = { workspace = true, default-features = false, features = ["rwh_06"] }
167159

168160
# optional native:
169161
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 = [
171163
"winit",
172164
] } # if wgpu is used, use it with winit
173165
pollster = { version = "0.3", optional = true } # needed for wgpu
@@ -246,5 +238,5 @@ web-sys = { version = "0.3.58", features = [
246238
] }
247239

248240
# 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
250242
wgpu = { workspace = true, optional = true }

crates/egui-wgpu/Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -42,8 +42,8 @@ x11 = ["winit?/x11"]
4242

4343

4444
[dependencies]
45-
egui = { version = "0.25.0", path = "../egui", default-features = false }
46-
epaint = { version = "0.25.0", path = "../epaint", default-features = false, features = [
45+
egui = { path = "../egui", default-features = false }
46+
epaint = { path = "../epaint", default-features = false, features = [
4747
"bytemuck",
4848
] }
4949

crates/egui-winit/Cargo.toml

+1-3
Original file line numberDiff line numberDiff line change
@@ -55,9 +55,7 @@ wayland = ["winit/wayland", "bytemuck"]
5555
x11 = ["winit/x11", "bytemuck"]
5656

5757
[dependencies]
58-
egui = { version = "0.25.0", path = "../egui", default-features = false, features = [
59-
"log",
60-
] }
58+
egui = { path = "../egui", default-features = false, features = ["log"] }
6159
log = { version = "0.4", features = ["std"] }
6260
raw-window-handle.workspace = true
6361
web-time.workspace = true

crates/egui/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,7 @@ unity = ["epaint/unity"]
8181

8282

8383
[dependencies]
84-
epaint = { version = "0.25.0", path = "../epaint", default-features = false }
84+
epaint = { path = "../epaint", default-features = false }
8585

8686
ahash = { version = "0.8.6", default-features = false, features = [
8787
"no-rng", # we don't need DOS-protection, so we let users opt-in to it instead

crates/egui_demo_app/Cargo.toml

+4-8
Original file line numberDiff line numberDiff line change
@@ -38,20 +38,16 @@ chrono = { version = "0.4", default-features = false, features = [
3838
"js-sys",
3939
"wasmbind",
4040
] }
41-
eframe = { version = "0.25.0", path = "../eframe", default-features = false, features = [
41+
eframe = { path = "../eframe", default-features = false, features = [
4242
"web_screen_reader",
4343
] }
44-
egui = { version = "0.25.0", path = "../egui", features = [
44+
egui = { path = "../egui", features = [
4545
"callstack",
4646
"extra_debug_asserts",
4747
"log",
4848
] }
49-
egui_demo_lib = { version = "0.25.0", path = "../egui_demo_lib", features = [
50-
"chrono",
51-
] }
52-
egui_extras = { version = "0.25.0", path = "../egui_extras", features = [
53-
"image",
54-
] }
49+
egui_demo_lib = { path = "../egui_demo_lib", features = ["chrono"] }
50+
egui_extras = { path = "../egui_extras", features = ["image"] }
5551
log = { version = "0.4", features = ["std"] }
5652

5753
# Optional dependencies:

crates/egui_demo_lib/Cargo.toml

+4-4
Original file line numberDiff line numberDiff line change
@@ -38,11 +38,11 @@ syntect = ["egui_extras/syntect"]
3838

3939

4040
[dependencies]
41-
egui = { version = "0.25.0", path = "../egui", default-features = false }
42-
egui_extras = { version = "0.25.0", path = "../egui_extras" }
43-
egui_plot = { version = "0.25.0", path = "../egui_plot" }
41+
egui = { path = "../egui", default-features = false }
42+
egui_extras = { path = "../egui_extras" }
43+
egui_plot = { path = "../egui_plot" }
4444
log = { version = "0.4", features = ["std"] }
45-
unicode_names2 = { version = "0.6.0", default-features = false } # this old version has fewer dependencies
45+
unicode_names2 = { version = "0.6.0", default-features = false } # this old version has fewer dependencies
4646

4747
#! ### Optional dependencies
4848
chrono = { version = "0.4", optional = true, features = ["js-sys", "wasmbind"] }

crates/egui_extras/Cargo.toml

+1-3
Original file line numberDiff line numberDiff line change
@@ -60,9 +60,7 @@ syntect = ["dep:syntect"]
6060

6161

6262
[dependencies]
63-
egui = { version = "0.25.0", path = "../egui", default-features = false, features = [
64-
"serde",
65-
] }
63+
egui = { path = "../egui", default-features = false, features = ["serde"] }
6664
enum-map = { version = "2", features = ["serde"] }
6765
log = { version = "0.4", features = ["std"] }
6866
serde = { version = "1", features = ["derive"] }

crates/egui_glow/Cargo.toml

+2-4
Original file line numberDiff line numberDiff line change
@@ -50,9 +50,7 @@ x11 = ["winit?/x11"]
5050

5151

5252
[dependencies]
53-
egui = { version = "0.25.0", path = "../egui", default-features = false, features = [
54-
"bytemuck",
55-
] }
53+
egui = { path = "../egui", default-features = false, features = ["bytemuck"] }
5654

5755
bytemuck = "1.7"
5856
glow.workspace = true
@@ -69,7 +67,7 @@ document-features = { version = "0.2", optional = true }
6967

7068
# Native:
7169
[target.'cfg(not(target_arch = "wasm32"))'.dependencies]
72-
egui-winit = { version = "0.25.0", path = "../egui-winit", optional = true, default-features = false }
70+
egui-winit = { path = "../egui-winit", optional = true, default-features = false }
7371
puffin = { workspace = true, optional = true }
7472
winit = { workspace = true, optional = true, default-features = false, features = [
7573
"rwh_05", # glutin stuck on old version of raw-window-handle

crates/egui_plot/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ serde = ["dep:serde", "egui/serde"]
3232

3333

3434
[dependencies]
35-
egui = { version = "0.25.0", path = "../egui", default-features = false }
35+
egui = { path = "../egui", default-features = false }
3636

3737

3838
#! ### Optional dependencies

crates/epaint/Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -80,8 +80,8 @@ serde = ["dep:serde", "ahash/serde", "emath/serde", "ecolor/serde"]
8080
unity = []
8181

8282
[dependencies]
83-
emath = { version = "0.25.0", path = "../emath" }
84-
ecolor = { version = "0.25.0", path = "../ecolor" }
83+
emath = { path = "../emath" }
84+
ecolor = { path = "../ecolor" }
8585

8686
ab_glyph = "0.2.11"
8787
ahash = { version = "0.8.1", default-features = false, features = [

0 commit comments

Comments
 (0)