Skip to content

Commit 2678e76

Browse files
authored
Janitor: Dependency updates
1 parent 6826e8b commit 2678e76

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

internal/backends/linuxkms/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ i-slint-renderer-femtovg = { workspace = true, features = ["default"], optional
3434

3535
[target.'cfg(target_os = "linux")'.dependencies]
3636
input = { workspace = true, default-features = true }
37-
xkbcommon = { version = "0.8.0" }
37+
xkbcommon = { version = "0.9.0" }
3838
calloop = { version = "0.14.1" }
3939
libseat = { version = "0.2.1", optional = true, default-features = false }
4040
nix = { version = "0.30.1", features = ["fs", "ioctl"] }

internal/compiler/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -65,9 +65,9 @@ image = { workspace = true, optional = true, features = ["default"] }
6565
resvg = { workspace = true, optional = true }
6666
# font embedding
6767
fontdue = { workspace = true, optional = true, features = ["parallel"] }
68-
fdsm = { version = "0.7.0", optional = true }
69-
fdsm-ttf-parser = { version = "0.1.2", optional = true }
70-
nalgebra = { version = "0.33.0", optional = true }
68+
fdsm = { version = "0.8.0", optional = true }
69+
fdsm-ttf-parser = { version = "0.2", optional = true }
70+
nalgebra = { version = "0.34.0", optional = true }
7171
rayon = { workspace = true, optional = true }
7272
# translations
7373
polib = { version = "0.2", optional = true }

internal/compiler/passes/embed_glyphs.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -455,7 +455,7 @@ fn generate_sdf_for_glyph(
455455
let face =
456456
fdsm_ttf_parser::ttf_parser::Face::parse(font.font.blob.data(), font.font.index).unwrap();
457457
let glyph_id = face.glyph_index(code_point).unwrap_or_default();
458-
let mut shape = fdsm_ttf_parser::load_shape_from_face(&face, glyph_id);
458+
let mut shape = fdsm_ttf_parser::load_shape_from_face(&face, glyph_id)?;
459459

460460
let metrics = sharedfontique::DesignFontMetrics::new(&font.font);
461461
let target_pixel_size = target_pixel_size as f64;

0 commit comments

Comments
 (0)