efraim pushed a commit to branch rust-team
in repository guix.
commit e07796002e792289166069e0e27890ac386cc42a
Author: Efraim Flashner <[email protected]>
AuthorDate: Sun Sep 22 15:38:40 2024 +0300
gnu: Add rust-object-0.36.
* gnu/packages/crates-io.scm (rust-object-0.36): New variable.
(rust-object-0.32): Inherit from rust-object-0.36.
Change-Id: I74e501d38561e2d3d297b779886bfe958ce48c80
---
gnu/packages/crates-io.scm | 44 ++++++++++++++++++++++++++++++++++++++------
1 file changed, 38 insertions(+), 6 deletions(-)
diff --git a/gnu/packages/crates-io.scm b/gnu/packages/crates-io.scm
index d662650931..826c0edbc6 100644
--- a/gnu/packages/crates-io.scm
+++ b/gnu/packages/crates-io.scm
@@ -49215,23 +49215,26 @@ form and deobfuscated locally.")
"This package provides a package for loading Wavefront @code{.obj}
files.")
(license license:asl2.0)))
-(define-public rust-object-0.32
+(define-public rust-object-0.36
(package
(name "rust-object")
- (version "0.32.2")
+ (version "0.36.4")
(source
(origin
(method url-fetch)
(uri (crate-uri "object" version))
(file-name (string-append name "-" version ".tar.gz"))
(sha256
- (base32 "0hc4cjwyngiy6k51hlzrlsxgv5z25vv7c2cp0ky1lckfic0259m6"))))
+ (base32 "02h7k38dwi8rndc3y81n6yjxijbss99p2jm9c0b6ak5c45c1lkq8"))))
(build-system cargo-build-system)
(arguments
`(#:cargo-test-flags
'("--release" "--"
;; Not all files are included
- "--skip=read::coff::coff_extended_relocations")
+ "--skip=read::coff::coff_extended_relocations"
+ "--skip=read::elf::get_buildid_bad_elf"
+ "--skip=read::elf::get_buildid_less_bad_elf"
+ "--skip=read::macho::test_go_macho")
#:cargo-inputs
(("rust-compiler-builtins" ,rust-compiler-builtins-0.1)
("rust-crc32fast" ,rust-crc32fast-1)
@@ -49241,8 +49244,8 @@ form and deobfuscated locally.")
("rust-memchr" ,rust-memchr-2)
("rust-rustc-std-workspace-alloc" ,rust-rustc-std-workspace-alloc-1)
("rust-rustc-std-workspace-core" ,rust-rustc-std-workspace-core-1)
- ("rust-ruzstd" ,rust-ruzstd-0.5)
- ("rust-wasmparser" ,rust-wasmparser-0.118))))
+ ("rust-ruzstd" ,rust-ruzstd-0.7)
+ ("rust-wasmparser" ,rust-wasmparser-0.216))))
(home-page "https://github.com/gimli-rs/object")
(synopsis "Unified interface for reading and writing object file formats")
(description
@@ -49250,6 +49253,35 @@ form and deobfuscated locally.")
file formats.")
(license (list license:asl2.0 license:expat))))
+(define-public rust-object-0.32
+ (package
+ (inherit rust-object-0.36)
+ (name "rust-object")
+ (version "0.32.2")
+ (source
+ (origin
+ (method url-fetch)
+ (uri (crate-uri "object" version))
+ (file-name (string-append name "-" version ".tar.gz"))
+ (sha256
+ (base32 "0hc4cjwyngiy6k51hlzrlsxgv5z25vv7c2cp0ky1lckfic0259m6"))))
+ (arguments
+ `(#:cargo-test-flags
+ '("--release" "--"
+ ;; Not all files are included
+ "--skip=read::coff::coff_extended_relocations")
+ #:cargo-inputs
+ (("rust-compiler-builtins" ,rust-compiler-builtins-0.1)
+ ("rust-crc32fast" ,rust-crc32fast-1)
+ ("rust-flate2" ,rust-flate2-1)
+ ("rust-hashbrown" ,rust-hashbrown-0.14)
+ ("rust-indexmap" ,rust-indexmap-2)
+ ("rust-memchr" ,rust-memchr-2)
+ ("rust-rustc-std-workspace-alloc" ,rust-rustc-std-workspace-alloc-1)
+ ("rust-rustc-std-workspace-core" ,rust-rustc-std-workspace-core-1)
+ ("rust-ruzstd" ,rust-ruzstd-0.5)
+ ("rust-wasmparser" ,rust-wasmparser-0.118))))))
+
(define-public rust-object-0.30
(package
(inherit rust-object-0.32)