me
/
guix
Archived
1
0
Fork 0

gnu: Add rust-rfc6979-0.4.

* gnu/packages/crates-io.scm (rust-rfc6979-0.4): New variable.
Efraim Flashner 2023-05-11 17:30:25 +03:00
parent 5da01d4882
commit a22bddaf32
No known key found for this signature in database
GPG Key ID: 41AAE7DCCA3D8351
1 changed files with 27 additions and 0 deletions

View File

@ -50789,6 +50789,33 @@ Rust.")
functionality as retain but gives mutable borrow to the predicate.")
(license license:expat)))
(define-public rust-rfc6979-0.4
(package
(name "rust-rfc6979")
(version "0.4.0")
(source (origin
(method url-fetch)
(uri (crate-uri "rfc6979" version))
(file-name (string-append name "-" version ".tar.gz"))
(sha256
(base32
"1chw95jgcfrysyzsq6a10b1j5qb7bagkx8h0wda4lv25in02mpgq"))))
(build-system cargo-build-system)
(arguments
`(#:cargo-inputs
(("rust-hmac" ,rust-hmac-0.12)
("rust-subtle" ,rust-subtle-2))
#:cargo-development-inputs
(("rust-hex-literal" ,rust-hex-literal-0.3)
("rust-sha2" ,rust-sha2-0.10))))
(home-page "https://github.com/RustCrypto/signatures/tree/master/rfc6979")
(synopsis "Pure Rust implementation of RFC6979")
(description
"This package provides a pure Rust implementation of RFC6979: Deterministic
Usage of the @dfn{Digital Signature Algorithm} (DSA) and @dfn{Elliptic Curve
Digital Signature Algorithm} (ECDSA).")
(license (list license:asl2.0 license:expat))))
(define-public rust-ring-0.16
(package
(name "rust-ring")