Make glow a Cargo workspace dependency

This commit is contained in:
Simon Hausmann 2025-01-14 14:17:18 +01:00 committed by Simon Hausmann
parent 37be696cd6
commit 4aa81b671a
5 changed files with 5 additions and 4 deletions

View file

@ -161,6 +161,7 @@ smol_str = { version = "0.3.1" }
rayon = { version = "1.10.0", default-features = false }
raw-window-handle-06 = { package = "raw-window-handle", version = "0.6", features = ["alloc"] }
unicode-segmentation = { version = "1.12.0" }
glow = { version = "0.16" }
[profile.release]
lto = true

View file

@ -16,7 +16,7 @@ name = "opengl_texture"
[dependencies]
slint = { path = "../../api/rs/slint" }
glow = { version = "0.16" }
glow = { workspace = true }
web-time = { version = "1.0" }
[build-dependencies]

View file

@ -16,7 +16,7 @@ name = "opengl_underlay"
[dependencies]
slint = { path = "../../api/rs/slint" }
glow = { version = "0.16" }
glow = { workspace = true }
web-time = { version = "1.0" }
[build-dependencies]

View file

@ -36,7 +36,7 @@ unicode-script = { version = "0.5.4" } # Use the same version was femtovg's rust
imgref = { version = "1.6.1" }
rgb = { version = "0.8.27" }
glow = { version = "0.16" }
glow = { workspace = true }
unicode-segmentation = { workspace = true }
[target.'cfg(target_family = "windows")'.dependencies]

View file

@ -42,7 +42,7 @@ scoped-tls-hkt = "0.1"
raw-window-handle = { version = "0.6", features = ["std"] }
skia-safe = { version = "0.78.0", features = ["textlayout", "gl"] }
glow = { version = "0.16" }
glow = { workspace = true }
unicode-segmentation = { workspace = true }
ash = { version = "^0.37.2", optional = true }