me
/
guix
Archived
1
0
Fork 0

gnu: Add rust-muldiv-1.

* gnu/packages/crates-io.scm (rust-muldiv-1): New variable.

Signed-off-by: Efraim Flashner <efraim@flashner.co.il>
Steve George 2023-10-23 23:21:11 +01:00 committed by Efraim Flashner
parent 88660d628b
commit 2f0e11127f
No known key found for this signature in database
GPG Key ID: 41AAE7DCCA3D8351
1 changed files with 21 additions and 0 deletions

View File

@ -41869,6 +41869,27 @@ select the mock struct at compile time. Used with the Mockall crate.")
(description "mp4 is a Rust library to read and write ISO-MP4 files.")
(license license:expat)))
(define-public rust-muldiv-1
(package
(name "rust-muldiv")
(version "1.0.1")
(source (origin
(method url-fetch)
(uri (crate-uri "muldiv" version))
(file-name (string-append name "-" version ".tar.gz"))
(sha256
(base32
"1c6ljsp41n8ijsx7zicwfm135drgyhcms12668ivvsbm1r98frwm"))))
(build-system cargo-build-system)
(arguments
(list #:cargo-inputs `(("rust-quickcheck" ,rust-quickcheck-1))))
(home-page "https://github.com/sdroege/rust-muldiv")
(synopsis "Trait for numeric types to combine multiplication and division")
(description
"This package provides a trait for numeric types to perform combined
multiplication and division with overflow protection.")
(license license:expat)))
(define-public rust-multimap-0.8
(package
(name "rust-multimap")