1
0
mirror of https://github.com/emilk/egui.git synced 2026-08-29 04:40:03 -04:00

Use more workspace dependencies (#7596)

This commit is contained in:
Emil Ernerfeldt
2025-10-07 15:07:16 +02:00
committed by GitHub
parent 7fc80d8623
commit 843ceea90c
36 changed files with 92 additions and 154 deletions

View File

@@ -73,7 +73,7 @@ syntect = ["dep:syntect"]
egui = { workspace = true, default-features = false }
ahash.workspace = true
enum-map = "2"
enum-map.workspace = true
log.workspace = true
profiling.workspace = true
@@ -83,7 +83,7 @@ profiling.workspace = true
serde = { workspace = true, optional = true }
# Date operations needed for datepicker widget
chrono = { version = "0.4", optional = true, default-features = false, features = [
chrono = { workspace = true, optional = true, features = [
"clock",
"js-sys",
"std",
@@ -96,15 +96,13 @@ document-features = { workspace = true, optional = true }
image = { workspace = true, optional = true }
# file feature
mime_guess2 = { version = "2", optional = true, default-features = false }
mime_guess2 = { workspace = true, optional = true }
syntect = { version = "5", optional = true, default-features = false, features = [
"default-fancy",
] }
# syntax highlighting
syntect = { workspace = true, optional = true, features = ["default-fancy"] }
# svg feature
resvg = { version = "0.45", optional = true, default-features = false }
resvg = { workspace = true, optional = true }
# http feature
ehttp = { version = "0.5", optional = true, default-features = false }
ehttp = { workspace = true, optional = true }