Skip to content

Commit

Permalink
Put all egui crates as workspace crates (#3976)
Browse files Browse the repository at this point in the history
Second attempty
  • Loading branch information
emilk authored Feb 5, 2024
1 parent bcebfec commit d024914
Show file tree
Hide file tree
Showing 31 changed files with 82 additions and 59 deletions.
12 changes: 12 additions & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,18 @@ 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 }

#TODO(emilk): make more things workspace dependencies
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
Expand Down
10 changes: 5 additions & 5 deletions crates/eframe/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -121,7 +121,7 @@ x11 = ["egui-winit/x11", "egui-wgpu?/x11", "egui_glow?/x11"]
__screenshot = []

[dependencies]
egui = { version = "0.25.0", path = "../egui", default-features = false, features = [
egui = { workspace = true, default-features = false, features = [
"bytemuck",
"log",
] }
Expand All @@ -136,7 +136,7 @@ web-time.workspace = true

# Optional dependencies

egui_glow = { version = "0.25.0", path = "../egui_glow", optional = true, default-features = false }
egui_glow = { workspace = true, 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 = [
Expand All @@ -148,7 +148,7 @@ serde = { version = "1", optional = true, features = ["derive"] }
# -------------------------------------------
# native:
[target.'cfg(not(target_arch = "wasm32"))'.dependencies]
egui-winit = { version = "0.25.0", path = "../egui-winit", default-features = false, features = [
egui-winit = { workspace = true, default-features = false, features = [
"clipboard",
"links",
] }
Expand All @@ -159,7 +159,7 @@ winit = { workspace = true, default-features = false, features = ["rwh_06"] }

# optional native:
directories-next = { version = "2", optional = true }
egui-wgpu = { version = "0.25.0", path = "../egui-wgpu", optional = true, features = [
egui-wgpu = { workspace = true, optional = true, features = [
"winit",
] } # if wgpu is used, use it with winit
pollster = { version = "0.3", optional = true } # needed for wgpu
Expand Down Expand Up @@ -238,5 +238,5 @@ web-sys = { version = "0.3.58", features = [
] }

# optional web:
egui-wgpu = { version = "0.25.0", path = "../egui-wgpu", optional = true } # if wgpu is used, use it without (!) winit
egui-wgpu = { workspace = true, optional = true } # if wgpu is used, use it without (!) winit
wgpu = { workspace = true, optional = true }
8 changes: 4 additions & 4 deletions crates/egui-wgpu/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,8 @@ all-features = true


[features]
default = []

## Enable profiling with the [`puffin`](https://docs.rs/puffin) crate.
puffin = ["dep:puffin"]

Expand All @@ -42,10 +44,8 @@ x11 = ["winit?/x11"]


[dependencies]
egui = { version = "0.25.0", path = "../egui", default-features = false }
epaint = { version = "0.25.0", path = "../epaint", default-features = false, features = [
"bytemuck",
] }
egui = { workspace = true, default-features = false }
epaint = { workspace = true, default-features = false, features = ["bytemuck"] }

bytemuck = "1.7"
document-features.workspace = true
Expand Down
4 changes: 1 addition & 3 deletions crates/egui-winit/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -55,9 +55,7 @@ wayland = ["winit/wayland", "bytemuck"]
x11 = ["winit/x11", "bytemuck"]

[dependencies]
egui = { version = "0.25.0", path = "../egui", default-features = false, features = [
"log",
] }
egui = { workspace = true, default-features = false, features = ["log"] }
log.workspace = true
raw-window-handle.workspace = true
web-time.workspace = true
Expand Down
2 changes: 1 addition & 1 deletion crates/egui/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ unity = ["epaint/unity"]


[dependencies]
epaint = { version = "0.25.0", path = "../epaint", default-features = false }
epaint = { workspace = true, default-features = false }

ahash.workspace = true
nohash-hasher.workspace = true
Expand Down
13 changes: 5 additions & 8 deletions crates/egui_demo_app/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -38,20 +38,17 @@ chrono = { version = "0.4", default-features = false, features = [
"js-sys",
"wasmbind",
] }
eframe = { version = "0.25.0", path = "../eframe", default-features = false, features = [
eframe = { workspace = true, default-features = false, features = [
"web_screen_reader",
] }
egui = { version = "0.25.0", path = "../egui", features = [
egui = { workspace = true, features = [
"callstack",
"default",
"extra_debug_asserts",
"log",
] }
egui_demo_lib = { version = "0.25.0", path = "../egui_demo_lib", features = [
"chrono",
] }
egui_extras = { version = "0.25.0", path = "../egui_extras", features = [
"image",
] }
egui_demo_lib = { workspace = true, features = ["default", "chrono"] }
egui_extras = { workspace = true, features = ["default", "image"] }
log.workspace = true

# Optional dependencies:
Expand Down
9 changes: 5 additions & 4 deletions crates/egui_demo_lib/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -38,11 +38,12 @@ syntect = ["egui_extras/syntect"]


[dependencies]
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" }
egui = { workspace = true, default-features = false }
egui_extras = { workspace = true, features = ["default"] }
egui_plot = { workspace = true, features = ["default"] }

log.workspace = true
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"] }
Expand Down
5 changes: 2 additions & 3 deletions crates/egui_extras/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -60,9 +60,8 @@ syntect = ["dep:syntect"]


[dependencies]
egui = { version = "0.25.0", path = "../egui", default-features = false, features = [
"serde",
] }
egui = { workspace = true, default-features = false, features = ["serde"] }

enum-map = { version = "2", features = ["serde"] }
log.workspace = true
serde = { version = "1", features = ["derive"] }
Expand Down
6 changes: 2 additions & 4 deletions crates/egui_glow/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -50,9 +50,7 @@ x11 = ["winit?/x11"]


[dependencies]
egui = { version = "0.25.0", path = "../egui", default-features = false, features = [
"bytemuck",
] }
egui = { workspace = true, default-features = false, features = ["bytemuck"] }

bytemuck = "1.7"
glow.workspace = true
Expand All @@ -69,7 +67,7 @@ document-features = { workspace = true, optional = true }

# Native:
[target.'cfg(not(target_arch = "wasm32"))'.dependencies]
egui-winit = { version = "0.25.0", path = "../egui-winit", optional = true, default-features = false }
egui-winit = { workspace = true, 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
Expand Down
2 changes: 1 addition & 1 deletion crates/egui_plot/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ serde = ["dep:serde", "egui/serde"]


[dependencies]
egui = { version = "0.25.0", path = "../egui", default-features = false }
egui = { workspace = true, default-features = false }


#! ### Optional dependencies
Expand Down
4 changes: 2 additions & 2 deletions crates/epaint/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -80,8 +80,8 @@ serde = ["dep:serde", "ahash/serde", "emath/serde", "ecolor/serde"]
unity = []

[dependencies]
emath = { version = "0.25.0", path = "../emath" }
ecolor = { version = "0.25.0", path = "../ecolor" }
emath.workspace = true
ecolor.workspace = true

ab_glyph = "0.2.11"
ahash.workspace = true
Expand Down
3 changes: 2 additions & 1 deletion examples/confirm_exit/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,8 @@ publish = false


[dependencies]
eframe = { path = "../../crates/eframe", features = [
eframe = { workspace = true, features = [
"default",
"__screenshot", # __screenshot is so we can dump a screenshot using EFRAME_SCREENSHOT_TO
] }
env_logger = { version = "0.10", default-features = false, features = [
Expand Down
3 changes: 2 additions & 1 deletion examples/custom_3d_glow/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,8 @@ publish = false


[dependencies]
eframe = { path = "../../crates/eframe", features = [
eframe = { workspace = true, features = [
"default",
"__screenshot", # __screenshot is so we can dump a screenshot using EFRAME_SCREENSHOT_TO
] }
env_logger = { version = "0.10", default-features = false, features = [
Expand Down
3 changes: 2 additions & 1 deletion examples/custom_font/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,8 @@ publish = false


[dependencies]
eframe = { path = "../../crates/eframe", features = [
eframe = { workspace = true, features = [
"default",
"__screenshot", # __screenshot is so we can dump a screenshot using EFRAME_SCREENSHOT_TO
] }
env_logger = { version = "0.10", default-features = false, features = [
Expand Down
3 changes: 2 additions & 1 deletion examples/custom_font_style/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,8 @@ publish = false


[dependencies]
eframe = { path = "../../crates/eframe", features = [
eframe = { workspace = true, features = [
"default",
"__screenshot", # __screenshot is so we can dump a screenshot using EFRAME_SCREENSHOT_TO
] }
env_logger = { version = "0.10", default-features = false, features = [
Expand Down
5 changes: 3 additions & 2 deletions examples/custom_plot_manipulation/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,10 +9,11 @@ publish = false


[dependencies]
eframe = { path = "../../crates/eframe", features = [
eframe = { workspace = true, features = [
"default",
"__screenshot", # __screenshot is so we can dump a screenshot using EFRAME_SCREENSHOT_TO
] }
egui_plot = { path = "../../crates/egui_plot" }
egui_plot.workspace = true
env_logger = { version = "0.10", default-features = false, features = [
"auto-color",
"humantime",
Expand Down
3 changes: 2 additions & 1 deletion examples/custom_window_frame/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,8 @@ publish = false


[dependencies]
eframe = { path = "../../crates/eframe", features = [
eframe = { workspace = true, features = [
"default",
"__screenshot", # __screenshot is so we can dump a screenshot using EFRAME_SCREENSHOT_TO
] }
env_logger = { version = "0.10", default-features = false, features = [
Expand Down
3 changes: 2 additions & 1 deletion examples/file_dialog/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,8 @@ publish = false


[dependencies]
eframe = { path = "../../crates/eframe", features = [
eframe = { workspace = true, features = [
"default",
"__screenshot", # __screenshot is so we can dump a screenshot using EFRAME_SCREENSHOT_TO
] }
env_logger = { version = "0.10", default-features = false, features = [
Expand Down
5 changes: 3 additions & 2 deletions examples/hello_world/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,12 +9,13 @@ publish = false


[dependencies]
eframe = { path = "../../crates/eframe", features = [
eframe = { workspace = true, features = [
"default",
"__screenshot", # __screenshot is so we can dump a screenshot using EFRAME_SCREENSHOT_TO
] }

# For image support:
egui_extras = { path = "../../crates/egui_extras", features = ["image"] }
egui_extras = { workspace = true, features = ["default", "image"] }

env_logger = { version = "0.10", default-features = false, features = [
"auto-color",
Expand Down
2 changes: 1 addition & 1 deletion examples/hello_world_par/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ publish = false


[dependencies]
eframe = { path = "../../crates/eframe", default-features = false, features = [
eframe = { workspace = true, default-features = false, features = [
# accesskit struggles with threading
"default_fonts",
"wgpu",
Expand Down
3 changes: 2 additions & 1 deletion examples/hello_world_simple/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,8 @@ publish = false


[dependencies]
eframe = { path = "../../crates/eframe", features = [
eframe = { workspace = true, features = [
"default",
"__screenshot", # __screenshot is so we can dump a screenshot using EFRAME_SCREENSHOT_TO
] }
env_logger = { version = "0.10", default-features = false, features = [
Expand Down
5 changes: 3 additions & 2 deletions examples/images/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,10 +9,11 @@ publish = false


[dependencies]
eframe = { path = "../../crates/eframe", features = [
eframe = { workspace = true, features = [
"default",
"__screenshot", # __screenshot is so we can dump a screenshot using EFRAME_SCREENSHOT_TO
] }
egui_extras = { path = "../../crates/egui_extras", features = ["all_loaders"] }
egui_extras = { workspace = true, features = ["default", "all_loaders"] }
env_logger = { version = "0.10", default-features = false, features = [
"auto-color",
"humantime",
Expand Down
3 changes: 2 additions & 1 deletion examples/keyboard_events/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,8 @@ publish = false


[dependencies]
eframe = { path = "../../crates/eframe", features = [
eframe = { workspace = true, features = [
"default",
"__screenshot", # __screenshot is so we can dump a screenshot using EFRAME_SCREENSHOT_TO
] }
env_logger = { version = "0.10", default-features = false, features = [
Expand Down
3 changes: 2 additions & 1 deletion examples/multiple_viewports/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,8 @@ publish = false
wgpu = ["eframe/wgpu"]

[dependencies]
eframe = { path = "../../crates/eframe", features = [
eframe = { workspace = true, features = [
"default",
"__screenshot", # __screenshot is so we can dump a screenshot using EFRAME_SCREENSHOT_TO
] }
env_logger = { version = "0.10", default-features = false, features = [
Expand Down
3 changes: 2 additions & 1 deletion examples/puffin_profiler/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,8 @@ wgpu = ["eframe/wgpu"]


[dependencies]
eframe = { path = "../../crates/eframe", features = [
eframe = { workspace = true, features = [
"default",
"puffin",
"__screenshot", # __screenshot is so we can dump a screenshot using EFRAME_SCREENSHOT_TO
] }
Expand Down
5 changes: 3 additions & 2 deletions examples/save_plot/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,10 +8,11 @@ rust-version = "1.72"
publish = false

[dependencies]
eframe = { path = "../../crates/eframe", features = [
eframe = { workspace = true, features = [
"default",
"__screenshot", # __screenshot is so we can dump a screenshot using EFRAME_SCREENSHOT_TO
] }
egui_plot = { path = "../../crates/egui_plot" }
egui_plot.workspace = true
image = { version = "0.24", default-features = false, features = ["png"] }
rfd = "0.11.0"
env_logger = { version = "0.10", default-features = false, features = [
Expand Down
3 changes: 2 additions & 1 deletion examples/screenshot/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,8 @@ publish = false


[dependencies]
eframe = { path = "../../crates/eframe", features = [
eframe = { workspace = true, features = [
"default",
"__screenshot", # __screenshot is so we can dump a screenshot using EFRAME_SCREENSHOT_TO
"wgpu",
] }
Expand Down
3 changes: 2 additions & 1 deletion examples/serial_windows/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,8 @@ publish = false


[dependencies]
eframe = { path = "../../crates/eframe", features = [
eframe = { workspace = true, features = [
"default",
"__screenshot", # __screenshot is so we can dump a screenshot using EFRAME_SCREENSHOT_TO
] }
env_logger = { version = "0.10", default-features = false, features = [
Expand Down
2 changes: 1 addition & 1 deletion examples/test_inline_glow_paint/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ publish = false
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
eframe = { path = "../../crates/eframe" }
eframe = { workspace = true, features = ["default"] }
env_logger = { version = "0.10", default-features = false, features = [
"auto-color",
"humantime",
Expand Down
Loading

0 comments on commit d024914

Please sign in to comment.