Archived
1
0
Fork 0

gnu: rust-password-hash-0.2: Allow newer versions of dependencies.

* gnu/packages/crates-io.scm (rust-password-hash-0.2)[source]: Add
snippet to allow using newer versions of dependant crates.

Change-Id: I174b9a10f6242e4ab3c401439530709138ebae99
This commit is contained in:
Efraim Flashner 2024-01-22 13:43:22 +02:00
parent c047cd7304
commit c45a50e1e0
No known key found for this signature in database
GPG key ID: 41AAE7DCCA3D8351

View file

@ -45582,7 +45582,15 @@ Format (MCF).")
(file-name (string-append name "-" version ".tar.gz"))
(sha256
(base32
"1rr4kd52ld978a2xhcvlc54p1d92yhxl9kvbajba7ia6rs5b5q3p"))))
"1rr4kd52ld978a2xhcvlc54p1d92yhxl9kvbajba7ia6rs5b5q3p"))
(modules '((guix build utils)))
(snippet
'(begin
(substitute* "Cargo.toml"
(((string-append ">=([[:digit:]]+(\\.[[:digit:]]+)*),"
" <([[:digit:]]+(\\.[[:digit:]]+)*)")
_ version _)
(string-append ">=" version)))))))
(arguments
(list #:cargo-inputs `(("rust-base64ct" ,rust-base64ct-1)
("rust-subtle" ,rust-subtle-2)