mirror of
https://git.savannah.gnu.org/git/guix.git
synced 2025-02-01 15:26:47 +01:00
gnu: Add rust-crypto-mac-0.7.
* gnu/packages/crates-io.scm (rust-crypto-mac-0.7): New variable. Signed-off-by: Efraim Flashner <efraim@flashner.co.il>
This commit is contained in:
parent
9068ccbadd
commit
9c754174f1
1 changed files with 25 additions and 0 deletions
|
@ -2662,6 +2662,31 @@ (define-public rust-crossbeam-utils-0.6
|
|||
#:cargo-development-inputs
|
||||
(("rust-rand" ,rust-rand-0.4))))))
|
||||
|
||||
(define-public rust-crypto-mac-0.7
|
||||
(package
|
||||
(name "rust-crypto-mac")
|
||||
(version "0.7.0")
|
||||
(source
|
||||
(origin
|
||||
(method url-fetch)
|
||||
(uri (crate-uri "crypto-mac" version))
|
||||
(file-name
|
||||
(string-append name "-" version ".tar.gz"))
|
||||
(sha256
|
||||
(base32
|
||||
"1rbrq6qy9dl0pj4ym2zy33miaaa8vpzdss60p9bdb58xy46l0d24"))))
|
||||
(build-system cargo-build-system)
|
||||
(arguments
|
||||
`(#:cargo-inputs
|
||||
(("rust-blobby" ,rust-blobby-0.1)
|
||||
("rust-generic-array" ,rust-generic-array-0.12)
|
||||
("rust-subtle" ,rust-subtle-1.0))))
|
||||
(home-page "https://github.com/RustCrypto/traits")
|
||||
(synopsis "Trait for Message Authentication Code (MAC) algorithms")
|
||||
(description "This package provides trait for @dfn{Message Authentication
|
||||
Code} (MAC) algorithms.")
|
||||
(license (list license:expat license:asl2.0))))
|
||||
|
||||
(define-public rust-csv-1.1
|
||||
(package
|
||||
(name "rust-csv")
|
||||
|
|
Loading…
Reference in a new issue