mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-13 14:40:21 -05:00
gnu: Add rust-subtle-1.0.
* gnu/packages/crates-io.scm (rust-subtle-1.0): New variable. Signed-off-by: Efraim Flashner <efraim@flashner.co.il>
This commit is contained in:
parent
a3e4d7f4a8
commit
fcbb77490c
1 changed files with 22 additions and 0 deletions
|
@ -12293,6 +12293,28 @@ (define-public rust-structopt-derive-0.2
|
|||
"Parse command line argument by defining a struct, derive crate.")
|
||||
(license (list license:asl2.0 license:expat))))
|
||||
|
||||
(define-public rust-subtle-1.0
|
||||
(package
|
||||
(name "rust-subtle")
|
||||
(version "1.0.0")
|
||||
(source
|
||||
(origin
|
||||
(method url-fetch)
|
||||
(uri (crate-uri "subtle" version))
|
||||
(file-name
|
||||
(string-append name "-" version ".tar.gz"))
|
||||
(sha256
|
||||
(base32
|
||||
"1vm80mxbwfj334izwm8x8l65v1xl9hr0kwrg36r1rq565fkaarrd"))))
|
||||
(build-system cargo-build-system)
|
||||
(home-page "https://dalek.rs/")
|
||||
(synopsis
|
||||
"Pure-Rust traits and utilities for cryptographic implementations")
|
||||
(description
|
||||
"This package provides Pure-Rust traits and utilities for constant-time
|
||||
cryptographic implementations.")
|
||||
(license license:bsd-3)))
|
||||
|
||||
(define-public rust-syn-1.0
|
||||
(package
|
||||
(name "rust-syn")
|
||||
|
|
Loading…
Reference in a new issue