mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-01 09:02:59 -05:00
gnu: Add rust-rfc2047-decoder-0.2.
* gnu/packages/crates-io.scm (rust-rfc2047-decoder-0.2): New variable.
This commit is contained in:
parent
4062580503
commit
9de7830046
1 changed files with 26 additions and 0 deletions
|
@ -52941,6 +52941,32 @@ (define-public rust-retain-mut-0.1
|
||||||
functionality as retain but gives mutable borrow to the predicate.")
|
functionality as retain but gives mutable borrow to the predicate.")
|
||||||
(license license:expat)))
|
(license license:expat)))
|
||||||
|
|
||||||
|
(define-public rust-rfc2047-decoder-0.2
|
||||||
|
(package
|
||||||
|
(name "rust-rfc2047-decoder")
|
||||||
|
(version "0.2.2")
|
||||||
|
(source (origin
|
||||||
|
(method url-fetch)
|
||||||
|
(uri (crate-uri "rfc2047-decoder" version))
|
||||||
|
(file-name (string-append name "-" version ".tar.gz"))
|
||||||
|
(sha256
|
||||||
|
(base32
|
||||||
|
"0bpc2k7dp3nxc3pnsvz6zd3vc58j8q29nzibn4q3wz49a974pz31"))))
|
||||||
|
(build-system cargo-build-system)
|
||||||
|
(arguments
|
||||||
|
`(#:cargo-inputs
|
||||||
|
(("rust-base64" ,rust-base64-0.21)
|
||||||
|
("rust-charset" ,rust-charset-0.1)
|
||||||
|
("rust-chumsky" ,rust-chumsky-0.9)
|
||||||
|
("rust-memchr" ,rust-memchr-2)
|
||||||
|
("rust-quoted-printable" ,rust-quoted-printable-0.4)
|
||||||
|
("rust-thiserror" ,rust-thiserror-1))))
|
||||||
|
(home-page "https://github.com/soywod/rfc2047-decoder")
|
||||||
|
(synopsis "Rust library for decoding RFC 2047 MIME Message Headers")
|
||||||
|
(description "This package provides a rust library for decoding RFC 2047
|
||||||
|
MIME Message Headers.")
|
||||||
|
(license license:expat)))
|
||||||
|
|
||||||
(define-public rust-rfc6979-0.4
|
(define-public rust-rfc6979-0.4
|
||||||
(package
|
(package
|
||||||
(name "rust-rfc6979")
|
(name "rust-rfc6979")
|
||||||
|
|
Loading…
Reference in a new issue