efraim pushed a commit to branch rust-team
in repository guix.
commit f8e7d07b3770ebe06fa04249516c4d96eb4de5e8
Author: Efraim Flashner <[email protected]>
AuthorDate: Wed Dec 4 14:55:06 2024 +0200
gnu: rust-ab-glyph-0.2: Update to 0.2.29.
* gnu/packages/crates-io.scm (rust-ab-glyph-0.2): Update to 0.2.29.
[cargo-inputs]: Replace rust-owned-ttf-parser-0.19 with 0.25.
Change-Id: I9ca61f3c9d4c90ebc405178563ce2d888ba5d0bc
---
gnu/packages/crates-io.scm | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/gnu/packages/crates-io.scm b/gnu/packages/crates-io.scm
index 6fc204df35..20a663bff4 100644
--- a/gnu/packages/crates-io.scm
+++ b/gnu/packages/crates-io.scm
@@ -142,21 +142,21 @@
(define-public rust-ab-glyph-0.2
(package
(name "rust-ab-glyph")
- (version "0.2.21")
+ (version "0.2.29")
(source (origin
(method url-fetch)
(uri (crate-uri "ab_glyph" version))
(file-name (string-append name "-" version ".tar.gz"))
(sha256
(base32
- "0f8ak16r69rz55smb7vdxh603nsknr30gkayi5fqb0pmik3z242i"))))
+ "1c7p94qf8x6n62nrbia7nzwdxm2sbyygnhd5qfmfl7p7h30p4dpc"))))
(build-system cargo-build-system)
(arguments
`(#:tests? #f ; Tests want font files.
#:cargo-inputs
(("rust-ab-glyph-rasterizer" ,rust-ab-glyph-rasterizer-0.1)
("rust-libm" ,rust-libm-0.2)
- ("rust-owned-ttf-parser" ,rust-owned-ttf-parser-0.19))))
+ ("rust-owned-ttf-parser" ,rust-owned-ttf-parser-0.25))))
(home-page "https://github.com/alexheretic/ab-glyph")
(synopsis "API for rasterizing OpenType font glyphs")
(description