me
/
guix
Archived
1
0
Fork 0

gnu: rust-const-oid-0.9: Update to 0.9.2.

* gnu/packages/crates-io.scm (rust-const-oid-0.9): Update to 0.9.2.
[arguments]: Don't skip build.
[cargo-inputs]: Add rust-arbitrary-1.
[cargo-development-inputs]: Add rust-hex-literal-0.3.
Efraim Flashner 2023-05-11 16:41:29 +03:00
parent a491fa95c7
commit d44bfd05de
No known key found for this signature in database
GPG Key ID: 41AAE7DCCA3D8351
1 changed files with 4 additions and 3 deletions

View File

@ -13437,17 +13437,18 @@ const functions with conditional compilations.")
(define-public rust-const-oid-0.9
(package
(name "rust-const-oid")
(version "0.9.1")
(version "0.9.2")
(source (origin
(method url-fetch)
(uri (crate-uri "const-oid" version))
(file-name (string-append name "-" version ".tar.gz"))
(sha256
(base32
"0fyxvwnl3x6bxhy08a3g4ryf8mky6wnhwd6ll4g6mjxgfnk1ihyf"))))
"04xr993r37hd3kcwzll34kpihxrxj7yhr7fawgir8gs80wyby3sj"))))
(build-system cargo-build-system)
(arguments
`(#:skip-build? #t))
`(#:cargo-inputs (("rust-arbitrary" ,rust-arbitrary-1))
#:cargo-development-inputs (("rust-hex-literal" ,rust-hex-literal-0.3))))
(home-page "https://github.com/RustCrypto/formats/tree/master/const-oid")
(synopsis "Implementation of the ISO/IEC Object Identifier (OID)")
(description