GNU bug report logs - #49451
Adding package aparte (rust XMPP TUI client)

Previous Next

Package: guix-patches;

Reported by: southerntofu <at> thunix.net

Date: Wed, 7 Jul 2021 06:29:02 UTC

Severity: normal

Tags: patch

To reply to this bug, email your comments to 49451 AT debbugs.gnu.org.

Toggle the display of automated, internal messages from the tracker.

View this report as an mbox folder, status mbox, maintainer mbox


Report forwarded to guix-patches <at> gnu.org:
bug#49451; Package guix-patches. (Wed, 07 Jul 2021 06:29:02 GMT) Full text and rfc822 format available.

Acknowledgement sent to southerntofu <at> thunix.net:
New bug report received and forwarded. Copy sent to guix-patches <at> gnu.org. (Wed, 07 Jul 2021 06:29:02 GMT) Full text and rfc822 format available.

Message #5 received at submit <at> debbugs.gnu.org (full text, mbox):

From: southerntofu <at> thunix.net
To: guix-patches <at> gnu.org
Subject: Adding package aparte (rust XMPP TUI client)
Date: Tue, 6 Jul 2021 16:16:24 -0400
Hello,

In this threads I will submit patches to include package aparte, from 0.2.0 release on Github. There's a few missing crates that will be added to gnu/packages/crates-io.scm, and the aparte package is added to gnu/packages/messaging.scm as suggested in the #guix IRC channel.

This is my first package for guix so don't hesitate to tell me if i'm doing something wrong. Also, i noticed some packages in crates-io.scm are not ordered alphabetically. I tried not to mess the order even more but did not reorder packages which were already misordered.

southerntofu




Information forwarded to guix-patches <at> gnu.org:
bug#49451; Package guix-patches. (Mon, 12 Jul 2021 04:29:02 GMT) Full text and rfc822 format available.

Message #8 received at 49451 <at> debbugs.gnu.org (full text, mbox):

From: southerntofu <southerntofu <at> thunix.net>
To: 49451 <at> debbugs.gnu.org
Subject: [PATCH 01/20] gnu: rust-blake2: Update to 0.9
Date: Sun, 11 Jul 2021 17:26:29 -0400
---
 gnu/packages/crates-io.scm | 27 +++++++++++++++++++++++++++
 1 file changed, 27 insertions(+)

diff --git a/gnu/packages/crates-io.scm b/gnu/packages/crates-io.scm
index d53f8fb525..5ed2ff470e 100644
--- a/gnu/packages/crates-io.scm
+++ b/gnu/packages/crates-io.scm
@@ -5207,6 +5207,33 @@ streams in big-endian and little-endian formats.")
      "This package provides a crate for manipulating memory, bit by bit.")
     (license license:expat)))
 
+(define-public rust-blake2-0.9
+  (package
+    (name "rust-blake2")
+    (version "0.9.1")
+    (source
+      (origin
+        (method url-fetch)
+        (uri (crate-uri "blake2" version))
+        (file-name
+          (string-append name "-" version ".tar.gz"))
+        (sha256
+          (base32
+            "1x3qz692hfrxgw6cd94iiid6iqal2dwj6zv5137swpgg4l17598h"))))
+    (build-system cargo-build-system)
+    (arguments
+      `(#:skip-build?
+        #t
+        #:cargo-inputs
+        (("rust-crypto-mac" ,rust-crypto-mac-0.8)
+         ("rust-digest" ,rust-digest-0.9)
+         ("rust-opaque-debug" ,rust-opaque-debug-0.3))))
+    (home-page
+      "https://github.com/RustCrypto/hashes")
+    (synopsis "BLAKE2 hash functions")
+    (description "BLAKE2 hash functions")
+    (license (list license:expat license:asl2.0))))
+
 (define-public rust-blake2-0.8
   (package
     (name "rust-blake2")
-- 
2.30.2





Information forwarded to guix-patches <at> gnu.org:
bug#49451; Package guix-patches. (Mon, 12 Jul 2021 04:29:02 GMT) Full text and rfc822 format available.

Message #11 received at 49451 <at> debbugs.gnu.org (full text, mbox):

From: southerntofu <southerntofu <at> thunix.net>
To: 49451 <at> debbugs.gnu.org
Subject: [PATCH 02/20] gnu: Add rust-case
Date: Sun, 11 Jul 2021 17:28:39 -0400
---
 gnu/packages/crates-io.scm | 22 ++++++++++++++++++++++
 1 file changed, 22 insertions(+)

diff --git a/gnu/packages/crates-io.scm b/gnu/packages/crates-io.scm
index 5ed2ff470e..c5605fa82c 100644
--- a/gnu/packages/crates-io.scm
+++ b/gnu/packages/crates-io.scm
@@ -7255,6 +7255,28 @@ supported by Cargo.")
 used in argon2rs' bench suite.")
     (license license:wtfpl2)))
 
+(define-public rust-case-0.1
+  (package
+    (name "rust-case")
+    (version "0.1.0")
+    (source
+      (origin
+        (method url-fetch)
+        (uri (crate-uri "case" version))
+        (file-name
+          (string-append name "-" version ".tar.gz"))
+        (sha256
+          (base32
+            "1hgc6fdg01qfh0qx5c50n717vh0xqvrlvxix8ksng5p291mid2z8"))))
+    (build-system cargo-build-system)
+    (arguments `(#:skip-build? #t))
+    (home-page
+      "https://github.com/SkylerLipthay/case")
+    (synopsis "Set of letter case string helpers")
+    (description
+      "This package provides a set of letter case string helpers")
+    (license license:expat)))
+
 (define-public rust-cassowary-0.3
   (package
     (name "rust-cassowary")
-- 
2.30.2





Information forwarded to guix-patches <at> gnu.org:
bug#49451; Package guix-patches. (Mon, 12 Jul 2021 04:29:02 GMT) Full text and rfc822 format available.

Message #14 received at 49451 <at> debbugs.gnu.org (full text, mbox):

From: southerntofu <southerntofu <at> thunix.net>
To: 49451 <at> debbugs.gnu.org
Subject: [PATCH 03/20] gnu: Add rust-derive-error
Date: Sun, 11 Jul 2021 17:28:47 -0400
---
 gnu/packages/crates-io.scm | 29 +++++++++++++++++++++++++++++
 1 file changed, 29 insertions(+)

diff --git a/gnu/packages/crates-io.scm b/gnu/packages/crates-io.scm
index c5605fa82c..2ac7bc0c2e 100644
--- a/gnu/packages/crates-io.scm
+++ b/gnu/packages/crates-io.scm
@@ -12676,6 +12676,35 @@ for arbitrary structs.")
 pattern for arbitrary structs.")
     (license (list license:expat license:asl2.0))))
 
+(define-public rust-derive-error-0.0.4
+  (package
+    (name "rust-derive-error")
+    (version "0.0.4")
+    (source
+      (origin
+        (method url-fetch)
+        (uri (crate-uri "derive-error" version))
+        (file-name
+          (string-append name "-" version ".tar.gz"))
+        (sha256
+          (base32
+            "1j624ma4jw911yg3qqlvfybgk7614k2blhg6wgnb38wyn90882gc"))))
+    (build-system cargo-build-system)
+    (arguments
+      `(#:skip-build?
+        #t
+        #:cargo-inputs
+        (("rust-case" ,rust-case-0.1)
+         ("rust-quote" ,rust-quote-0.3)
+         ("rust-syn" ,rust-syn-0.11))))
+    (home-page
+      "https://github.com/rushmorem/derive-error")
+    (synopsis
+      "Derive macro for Error using macros 1.1")
+    (description
+      "Derive macro for Error using macros 1.1")
+    (license (list license:expat license:asl2.0))))
+
 (define-public rust-derive-error-chain-0.10
   (package
     (name "rust-derive-error-chain")
-- 
2.30.2





Information forwarded to guix-patches <at> gnu.org:
bug#49451; Package guix-patches. (Mon, 12 Jul 2021 04:29:03 GMT) Full text and rfc822 format available.

Message #17 received at 49451 <at> debbugs.gnu.org (full text, mbox):

From: southerntofu <southerntofu <at> thunix.net>
To: 49451 <at> debbugs.gnu.org
Subject: [PATCH 04/20] gnu: Add rust-downcast
Date: Sun, 11 Jul 2021 17:28:57 -0400
---
 gnu/packages/crates-io.scm | 23 +++++++++++++++++++++++
 1 file changed, 23 insertions(+)

diff --git a/gnu/packages/crates-io.scm b/gnu/packages/crates-io.scm
index 2ac7bc0c2e..d3641af193 100644
--- a/gnu/packages/crates-io.scm
+++ b/gnu/packages/crates-io.scm
@@ -13721,6 +13721,29 @@ from macros.")
         ("rust-rustc-serialize" ,rust-rustc-serialize-0.3)
         ("rust-strsim" ,rust-strsim-0.5))))))
 
+(define-public rust-downcast-0.10
+  (package
+    (name "rust-downcast")
+    (version "0.10.0")
+    (source
+      (origin
+        (method url-fetch)
+        (uri (crate-uri "downcast" version))
+        (file-name
+          (string-append name "-" version ".tar.gz"))
+        (sha256
+          (base32
+            "07bh0l95gwrzak6rj29v8kkm577d8vivxsxhqgscf64b4bq59d2b"))))
+    (build-system cargo-build-system)
+    (arguments `(#:skip-build? #t))
+    (home-page
+      "https://github.com/fkoep/downcast-rs")
+    (synopsis
+      "Trait for downcasting trait objects back to their original types")
+    (description
+      "Trait for downcasting trait objects back to their original types")
+    (license license:expat)))
+
 (define-public rust-downcast-rs-1
   (package
     (name "rust-downcast-rs")
-- 
2.30.2





Information forwarded to guix-patches <at> gnu.org:
bug#49451; Package guix-patches. (Mon, 12 Jul 2021 04:29:03 GMT) Full text and rfc822 format available.

Message #20 received at 49451 <at> debbugs.gnu.org (full text, mbox):

From: southerntofu <southerntofu <at> thunix.net>
To: 49451 <at> debbugs.gnu.org
Subject: [PATCH 05/20] gnu: Add rust-flexi-logger
Date: Sun, 11 Jul 2021 17:29:05 -0400
---
 gnu/packages/crates-io.scm | 41 ++++++++++++++++++++++++++++++++++++++
 1 file changed, 41 insertions(+)

diff --git a/gnu/packages/crates-io.scm b/gnu/packages/crates-io.scm
index d3641af193..e322661709 100644
--- a/gnu/packages/crates-io.scm
+++ b/gnu/packages/crates-io.scm
@@ -15985,6 +15985,47 @@ Reader/Writer streams.  Contains bindings for zlib, deflate, and gzip-based
 streams.")
     (license (list license:expat license:asl2.0))))
 
+(define-public rust-flexi-logger-0.15
+  (package
+    (name "rust-flexi-logger")
+    (version "0.15.12")
+    (source
+      (origin
+        (method url-fetch)
+        (uri (crate-uri "flexi_logger" version))
+        (file-name
+          (string-append name "-" version ".tar.gz"))
+        (sha256
+          (base32
+            "1gs2flpzjd4kr9jw614vaqxxz7fd56gqkr78j47q0ja1vfp3raxa"))))
+    (build-system cargo-build-system)
+    (arguments
+      `(#:skip-build?
+        #t
+        #:cargo-inputs
+        (("rust-atty" ,rust-atty-0.2)
+         ("rust-chrono" ,rust-chrono-0.4)
+         ("rust-flate2" ,rust-flate2-1)
+         ("rust-glob" ,rust-glob-0.3)
+         ("rust-hostname" ,rust-hostname-0.3)
+         ("rust-lazy-static" ,rust-lazy-static-1)
+         ("rust-libc" ,rust-libc-0.2)
+         ("rust-log" ,rust-log-0.4)
+         ("rust-notify" ,rust-notify-4)
+         ("rust-regex" ,rust-regex-1)
+         ("rust-serde" ,rust-serde-1)
+         ("rust-serde-derive" ,rust-serde-derive-1)
+         ("rust-thiserror" ,rust-thiserror-1)
+         ("rust-toml" ,rust-toml-0.5)
+         ("rust-yansi" ,rust-yansi-0.5))))
+    (home-page
+      "https://github.com/emabee/flexi_logger")
+    (synopsis
+      "Easy-to-configure and flexible logger")
+    (description
+      "Easy-to-configure and flexible logger that writes logs to stderr and/or to files")
+    (license (list license:expat license:asl2.0))))
+
 (define-public rust-float-cmp-0.8
   (package
     (name "rust-float-cmp")
-- 
2.30.2





Information forwarded to guix-patches <at> gnu.org:
bug#49451; Package guix-patches. (Mon, 12 Jul 2021 04:29:04 GMT) Full text and rfc822 format available.

Message #23 received at 49451 <at> debbugs.gnu.org (full text, mbox):

From: southerntofu <southerntofu <at> thunix.net>
To: 49451 <at> debbugs.gnu.org
Subject: [PATCH 06/20] gnu: rust-fragile: Update to 1.0
Date: Sun, 11 Jul 2021 17:29:14 -0400
---
 gnu/packages/crates-io.scm | 23 +++++++++++++++++++++++
 1 file changed, 23 insertions(+)

diff --git a/gnu/packages/crates-io.scm b/gnu/packages/crates-io.scm
index e322661709..258649f6a0 100644
--- a/gnu/packages/crates-io.scm
+++ b/gnu/packages/crates-io.scm
@@ -16452,6 +16452,29 @@ implementation that is more efficient for smaller hash keys.")
 syntax, as used by HTML forms.")
     (license (list license:expat license:asl2.0))))
 
+(define-public rust-fragile-1
+  (package
+    (name "rust-fragile")
+    (version "1.0.0")
+    (source
+      (origin
+        (method url-fetch)
+        (uri (crate-uri "fragile" version))
+        (file-name
+          (string-append name "-" version ".tar.gz"))
+        (sha256
+          (base32
+            "1wlihmkjyhvl5rckal32p010piy1l15s6l81h7z31jcd971kk839"))))
+    (build-system cargo-build-system)
+    (arguments `(#:skip-build? #t))
+    (home-page
+      "https://github.com/mitsuhiko/rust-fragile")
+    (synopsis
+      "Provides wrapper types for sending non-send values to other threads")
+    (description
+      "Provides wrapper types for sending non-send values to other threads")
+    (license license:asl2.0)))
+
 (define-public rust-fragile-0.3
   (package
     (name "rust-fragile")
-- 
2.30.2





Information forwarded to guix-patches <at> gnu.org:
bug#49451; Package guix-patches. (Mon, 12 Jul 2021 04:29:04 GMT) Full text and rfc822 format available.

Message #26 received at 49451 <at> debbugs.gnu.org (full text, mbox):

From: southerntofu <southerntofu <at> thunix.net>
To: 49451 <at> debbugs.gnu.org
Subject: [PATCH 07/20] gnu: rust-hmac: Update to 0.10
Date: Sun, 11 Jul 2021 17:29:20 -0400
---
 gnu/packages/crates-io.scm | 27 +++++++++++++++++++++++++++
 1 file changed, 27 insertions(+)

diff --git a/gnu/packages/crates-io.scm b/gnu/packages/crates-io.scm
index 258649f6a0..2ac2230490 100644
--- a/gnu/packages/crates-io.scm
+++ b/gnu/packages/crates-io.scm
@@ -20141,6 +20141,33 @@ Derivation Function (HKDF).")
        (("rust-digest" ,rust-digest-0.8)
         ("rust-hmac" ,rust-hmac-0.7))))))
 
+(define-public rust-hmac-0.10
+  (package
+    (name "rust-hmac")
+    (version "0.10.1")
+    (source
+      (origin
+        (method url-fetch)
+        (uri (crate-uri "hmac" version))
+        (file-name
+          (string-append name "-" version ".tar.gz"))
+        (sha256
+          (base32
+            "058yxq54x7xn0gk2vy9bl51r32c9z7qlcl2b80bjh3lk3rmiqi61"))))
+    (build-system cargo-build-system)
+    (arguments
+      `(#:skip-build?
+        #t
+        #:cargo-inputs
+        (("rust-crypto-mac" ,rust-crypto-mac-0.10)
+         ("rust-digest" ,rust-digest-0.9))))
+    (home-page "https://github.com/RustCrypto/MACs")
+    (synopsis
+      "Generic implementation of Hash-based Message Authentication Code (HMAC)")
+    (description
+      "Generic implementation of Hash-based Message Authentication Code (HMAC)")
+    (license (list license:expat license:asl2.0))))
+
 (define-public rust-hmac-0.8
   (package
     (name "rust-hmac")
-- 
2.30.2





Information forwarded to guix-patches <at> gnu.org:
bug#49451; Package guix-patches. (Mon, 12 Jul 2021 04:29:04 GMT) Full text and rfc822 format available.

Message #29 received at 49451 <at> debbugs.gnu.org (full text, mbox):

From: southerntofu <southerntofu <at> thunix.net>
To: 49451 <at> debbugs.gnu.org
Subject: [PATCH 08/20] gnu: Add rust-hsluv
Date: Sun, 11 Jul 2021 17:29:25 -0400
---
 gnu/packages/crates-io.scm | 23 +++++++++++++++++++++++
 1 file changed, 23 insertions(+)

diff --git a/gnu/packages/crates-io.scm b/gnu/packages/crates-io.scm
index 2ac2230490..5daaffaa52 100644
--- a/gnu/packages/crates-io.scm
+++ b/gnu/packages/crates-io.scm
@@ -20327,6 +20327,29 @@ Hash-based Message Authentication Code algorithm} for SHA1.")
        (("rust-libc" ,rust-libc-0.2)
         ("rust-winutil" ,rust-winutil-0.1))))))
 
+(define-public rust-hsluv-0.1
+  (package
+    (name "rust-hsluv")
+    (version "0.1.0")
+    (source
+      (origin
+        (method url-fetch)
+        (uri (crate-uri "hsluv" version))
+        (file-name
+          (string-append name "-" version ".tar.gz"))
+        (sha256
+          (base32
+            "0g5p4x9np7292fxinqj34vlys5v20hg5yqqr8vvqbw8xcl5l3rax"))))
+    (build-system cargo-build-system)
+    (arguments `(#:skip-build? #t))
+    (home-page
+      "https://github.com/bb010g/rust-hsluv")
+    (synopsis
+      "Human-friendly HSL, Rust implementation (revision 4)")
+    (description
+      "Human-friendly HSL, Rust implementation (revision 4)")
+    (license license:expat)))
+
 (define-public rust-html5ever-0.25
   (package
     (name "rust-html5ever")
-- 
2.30.2





Information forwarded to guix-patches <at> gnu.org:
bug#49451; Package guix-patches. (Mon, 12 Jul 2021 04:29:05 GMT) Full text and rfc822 format available.

Message #32 received at 49451 <at> debbugs.gnu.org (full text, mbox):

From: southerntofu <southerntofu <at> thunix.net>
To: 49451 <at> debbugs.gnu.org
Subject: [PATCH 09/20] gnu: Add rust-minidom
Date: Sun, 11 Jul 2021 17:29:32 -0400
---
 gnu/packages/crates-io.scm | 26 ++++++++++++++++++++++++++
 1 file changed, 26 insertions(+)

diff --git a/gnu/packages/crates-io.scm b/gnu/packages/crates-io.scm
index 5daaffaa52..16e2b33e4b 100644
--- a/gnu/packages/crates-io.scm
+++ b/gnu/packages/crates-io.scm
@@ -26305,6 +26305,32 @@ file's MIME type by its extension.")
         ("rust-phf-codegen" ,rust-phf-codegen-0.7)
         ("rust-unicase" ,rust-unicase-1))))))
 
+(define-public rust-minidom-0.13
+  (package
+    (name "rust-minidom")
+    (version "0.13.0")
+    (source
+      (origin
+        (method url-fetch)
+        (uri (crate-uri "minidom" version))
+        (file-name
+          (string-append name "-" version ".tar.gz"))
+        (sha256
+          (base32
+            "13k0ngkwgj0zgn0zkkklnj274q351mpyzjaglr0dviwz2k19499k"))))
+    (build-system cargo-build-system)
+    (arguments
+      `(#:skip-build?
+        #t
+        #:cargo-inputs
+        (("rust-quick-xml" ,rust-quick-xml-0.20))))
+    (home-page "https://gitlab.com/xmpp-rs/xmpp-rs")
+    (synopsis
+      "Small, simple DOM implementation on top of quick-xml")
+    (description
+      "This package provides a small, simple DOM implementation on top of quick-xml")
+    (license license:mpl2.0)))
+
 (define-public rust-miniz-oxide-0.4
   (package
     (name "rust-miniz-oxide")
-- 
2.30.2





Information forwarded to guix-patches <at> gnu.org:
bug#49451; Package guix-patches. (Mon, 12 Jul 2021 04:29:05 GMT) Full text and rfc822 format available.

Message #35 received at 49451 <at> debbugs.gnu.org (full text, mbox):

From: southerntofu <southerntofu <at> thunix.net>
To: 49451 <at> debbugs.gnu.org
Subject: [PATCH 10/20] gnu: Add rust-linked-hash-set
Date: Sun, 11 Jul 2021 17:29:55 -0400
---
 gnu/packages/crates-io.scm | 27 +++++++++++++++++++++++++++
 1 file changed, 27 insertions(+)

diff --git a/gnu/packages/crates-io.scm b/gnu/packages/crates-io.scm
index 16e2b33e4b..b60d07c15b 100644
--- a/gnu/packages/crates-io.scm
+++ b/gnu/packages/crates-io.scm
@@ -24329,6 +24329,33 @@ pairs in insertion order.")
         ("rust-serde" ,rust-serde-0.8)
         ("rust-serde-test" ,rust-serde-test-0.8))))))
 
+(define-public rust-linked-hash-set-0.1
+  (package
+    (name "rust-linked-hash-set")
+    (version "0.1.4")
+    (source
+      (origin
+        (method url-fetch)
+        (uri (crate-uri "linked_hash_set" version))
+        (file-name
+          (string-append name "-" version ".tar.gz"))
+        (sha256
+          (base32
+            "124m7wiz9ah7ah58ckai413mzfglh3y1nz64qy1s676qlinnq627"))))
+    (build-system cargo-build-system)
+    (arguments
+      `(#:skip-build?
+        #t
+        #:cargo-inputs
+        (("rust-linked-hash-map"
+          ,rust-linked-hash-map-0.5)
+         ("rust-serde" ,rust-serde-1))))
+    (home-page
+      "https://github.com/alexheretic/linked-hash-set")
+    (synopsis "HashSet with insertion ordering")
+    (description "HashSet with insertion ordering")
+    (license license:asl2.0)))
+
 (define-public rust-linkify-0.4
   (package
     (name "rust-linkify")
-- 
2.30.2





Information forwarded to guix-patches <at> gnu.org:
bug#49451; Package guix-patches. (Mon, 12 Jul 2021 04:29:06 GMT) Full text and rfc822 format available.

Message #38 received at 49451 <at> debbugs.gnu.org (full text, mbox):

From: southerntofu <southerntofu <at> thunix.net>
To: 49451 <at> debbugs.gnu.org
Subject: [PATCH 11/20] gnu: rust-pbkdf2: Update to 0.6
Date: Sun, 11 Jul 2021 17:30:02 -0400
---
 gnu/packages/crates-io.scm | 32 ++++++++++++++++++++++++++++++++
 1 file changed, 32 insertions(+)

diff --git a/gnu/packages/crates-io.scm b/gnu/packages/crates-io.scm
index b60d07c15b..b65ea9568f 100644
--- a/gnu/packages/crates-io.scm
+++ b/gnu/packages/crates-io.scm
@@ -31163,6 +31163,38 @@ path.Clean.")
 directory path to the provided path.")
     (license (list license:asl2.0 license:expat))))
 
+(define-public rust-pbkdf2-0.6
+  (package
+    (name "rust-pbkdf2")
+    (version "0.6.0")
+    (source
+      (origin
+        (method url-fetch)
+        (uri (crate-uri "pbkdf2" version))
+        (file-name
+          (string-append name "-" version ".tar.gz"))
+        (sha256
+          (base32
+            "0jjaapyawm5iqn97mmfj40dvipsy78cm80qcva28009l2zbw1f5k"))))
+    (build-system cargo-build-system)
+    (arguments
+      `(#:skip-build?
+        #t
+        #:cargo-inputs
+        (("rust-base64" ,rust-base64-0.13)
+         ("rust-crypto-mac" ,rust-crypto-mac-0.10)
+         ("rust-hmac" ,rust-hmac-0.10)
+         ("rust-rand" ,rust-rand-0.7)
+         ("rust-rand-core" ,rust-rand-core-0.5)
+         ("rust-rayon" ,rust-rayon-1)
+         ("rust-sha2" ,rust-sha2-0.9)
+         ("rust-subtle" ,rust-subtle-2))))
+    (home-page
+      "https://github.com/RustCrypto/password-hashes/tree/master/pbkdf2")
+    (synopsis "Generic implementation of PBKDF2")
+    (description "Generic implementation of PBKDF2")
+    (license (list license:expat license:asl2.0))))
+
 (define-public rust-pbkdf2-0.4
   (package
     (name "rust-pbkdf2")
-- 
2.30.2





Information forwarded to guix-patches <at> gnu.org:
bug#49451; Package guix-patches. (Mon, 12 Jul 2021 04:29:06 GMT) Full text and rfc822 format available.

Message #41 received at 49451 <at> debbugs.gnu.org (full text, mbox):

From: southerntofu <southerntofu <at> thunix.net>
To: 49451 <at> debbugs.gnu.org
Subject: [PATCH 12/20] gnu: Add rust-sha3
Date: Sun, 11 Jul 2021 17:30:09 -0400
---
 gnu/packages/crates-io.scm | 28 ++++++++++++++++++++++++++++
 1 file changed, 28 insertions(+)

diff --git a/gnu/packages/crates-io.scm b/gnu/packages/crates-io.scm
index b65ea9568f..5389f69934 100644
--- a/gnu/packages/crates-io.scm
+++ b/gnu/packages/crates-io.scm
@@ -42052,6 +42052,34 @@ functions core functionality.")
        (("rust-gcc" ,rust-gcc-0.3)
         ("rust-generic-array" ,rust-generic-array-0.8))))))
 
+(define-public rust-sha3-0.9
+  (package
+    (name "rust-sha3")
+    (version "0.9.1")
+    (source
+      (origin
+        (method url-fetch)
+        (uri (crate-uri "sha3" version))
+        (file-name
+          (string-append name "-" version ".tar.gz"))
+        (sha256
+          (base32
+            "02d85wpvz75a0n7r2da15ikqjwzamhii11qy9gqf6pafgm0rj4gq"))))
+    (build-system cargo-build-system)
+    (arguments
+      `(#:skip-build?
+        #t
+        #:cargo-inputs
+        (("rust-block-buffer" ,rust-block-buffer-0.9)
+         ("rust-digest" ,rust-digest-0.9)
+         ("rust-keccak" ,rust-keccak-0.1)
+         ("rust-opaque-debug" ,rust-opaque-debug-0.3))))
+    (home-page
+      "https://github.com/RustCrypto/hashes")
+    (synopsis "SHA-3 (Keccak) hash function")
+    (description "SHA-3 (Keccak) hash function")
+    (license (list license:expat license:asl2.0))))
+
 (define-public rust-shader-version-0.6
   (package
     (name "rust-shader-version")
-- 
2.30.2





Information forwarded to guix-patches <at> gnu.org:
bug#49451; Package guix-patches. (Mon, 12 Jul 2021 04:29:06 GMT) Full text and rfc822 format available.

Message #44 received at 49451 <at> debbugs.gnu.org (full text, mbox):

From: southerntofu <southerntofu <at> thunix.net>
To: 49451 <at> debbugs.gnu.org
Subject: [PATCH 13/20] gnu: Add rust-mockall-derive
Date: Sun, 11 Jul 2021 17:30:15 -0400
---
 gnu/packages/crates-io.scm | 30 ++++++++++++++++++++++++++++++
 1 file changed, 30 insertions(+)

diff --git a/gnu/packages/crates-io.scm b/gnu/packages/crates-io.scm
index 5389f69934..2a9e477aaf 100644
--- a/gnu/packages/crates-io.scm
+++ b/gnu/packages/crates-io.scm
@@ -26740,6 +26740,36 @@ IOCP and Async I/O abstractions.")
        #:cargo-development-inputs
        (("rust-rand" ,rust-rand-0.3))))))
 
+
+(define-public rust-mockall-derive-0.9
+  (package
+    (name "rust-mockall-derive")
+    (version "0.9.1")
+    (source
+      (origin
+        (method url-fetch)
+        (uri (crate-uri "mockall_derive" version))
+        (file-name
+          (string-append name "-" version ".tar.gz"))
+        (sha256
+          (base32
+            "1snywdscj3chgs0xqr5700dsw2hy0qwd0s3kdk4nz85w6m327m2x"))))
+    (build-system cargo-build-system)
+    (arguments
+      `(#:skip-build?
+        #t
+        #:cargo-inputs
+        (("rust-cfg-if" ,rust-cfg-if-1)
+         ("rust-proc-macro2" ,rust-proc-macro2-1)
+         ("rust-quote" ,rust-quote-1)
+         ("rust-syn" ,rust-syn-1))))
+    (home-page "https://github.com/asomers/mockall")
+    (synopsis "Procedural macros for Mockall
+")
+    (description "Procedural macros for Mockall
+")
+    (license (list license:expat license:asl2.0))))
+
 (define-public rust-mockito-0.23
   (package
     (name "rust-mockito")
-- 
2.30.2





Information forwarded to guix-patches <at> gnu.org:
bug#49451; Package guix-patches. (Mon, 12 Jul 2021 04:29:07 GMT) Full text and rfc822 format available.

Message #47 received at 49451 <at> debbugs.gnu.org (full text, mbox):

From: southerntofu <southerntofu <at> thunix.net>
To: 49451 <at> debbugs.gnu.org
Subject: [PATCH 14/20] gnu: Add rust-mockall
Date: Sun, 11 Jul 2021 17:30:21 -0400
---
 gnu/packages/crates-io.scm | 33 +++++++++++++++++++++++++++++++++
 1 file changed, 33 insertions(+)

diff --git a/gnu/packages/crates-io.scm b/gnu/packages/crates-io.scm
index 2a9e477aaf..0e57d3c145 100644
--- a/gnu/packages/crates-io.scm
+++ b/gnu/packages/crates-io.scm
@@ -26740,6 +26740,39 @@ IOCP and Async I/O abstractions.")
        #:cargo-development-inputs
        (("rust-rand" ,rust-rand-0.3))))))
 
+(define-public rust-mockall-0.9
+  (package
+    (name "rust-mockall")
+    (version "0.9.1")
+    (source
+      (origin
+        (method url-fetch)
+        (uri (crate-uri "mockall" version))
+        (file-name
+          (string-append name "-" version ".tar.gz"))
+        (sha256
+          (base32
+            "1m9kpv4523503v48ahyzk9g2rabvbjl70mlbkc8mkfzr4fni9mhq"))))
+    (build-system cargo-build-system)
+    (arguments
+      `(#:skip-build?
+        #t
+        #:cargo-inputs
+        (("rust-cfg-if" ,rust-cfg-if-1)
+         ("rust-downcast" ,rust-downcast-0.10)
+         ("rust-fragile" ,rust-fragile-1)
+         ("rust-lazy-static" ,rust-lazy-static-1)
+         ("rust-mockall-derive" ,rust-mockall-derive-0.9)
+         ("rust-predicates" ,rust-predicates-1)
+         ("rust-predicates-tree" ,rust-predicates-tree-1))))
+    (home-page "https://github.com/asomers/mockall")
+    (synopsis
+      "Powerful mock object library for Rust
+")
+    (description
+      "This package provides a powerful mock object library for Rust
+")
+    (license (list license:expat license:asl2.0))))
 
 (define-public rust-mockall-derive-0.9
   (package
-- 
2.30.2





Information forwarded to guix-patches <at> gnu.org:
bug#49451; Package guix-patches. (Mon, 12 Jul 2021 04:29:07 GMT) Full text and rfc822 format available.

Message #50 received at 49451 <at> debbugs.gnu.org (full text, mbox):

From: southerntofu <southerntofu <at> thunix.net>
To: 49451 <at> debbugs.gnu.org
Subject: [PATCH 15/20] gnu: Add rust-sasl
Date: Sun, 11 Jul 2021 17:30:27 -0400
---
 gnu/packages/crates-io.scm | 31 +++++++++++++++++++++++++++++++
 1 file changed, 31 insertions(+)

diff --git a/gnu/packages/crates-io.scm b/gnu/packages/crates-io.scm
index 0e57d3c145..44ae54f84c 100644
--- a/gnu/packages/crates-io.scm
+++ b/gnu/packages/crates-io.scm
@@ -39583,6 +39583,37 @@ motivation for writing this library.
 @end itemize")
     (license (list license:asl2.0 license:expat))))
 
+(define-public rust-sasl-0.5
+  (package
+    (name "rust-sasl")
+    (version "0.5.0")
+    (source
+      (origin
+        (method url-fetch)
+        (uri (crate-uri "sasl" version))
+        (file-name
+          (string-append name "-" version ".tar.gz"))
+        (sha256
+          (base32
+            "1j9d6q580r18i90ksr0frjks3mzll73966p2rp0vn9w90b77sbap"))))
+    (build-system cargo-build-system)
+    (arguments
+      `(#:skip-build?
+        #t
+        #:cargo-inputs
+        (("rust-base64" ,rust-base64-0.13)
+         ("rust-getrandom" ,rust-getrandom-0.2)
+         ("rust-hmac" ,rust-hmac-0.10)
+         ("rust-pbkdf2" ,rust-pbkdf2-0.6)
+         ("rust-sha-1" ,rust-sha-1-0.9)
+         ("rust-sha2" ,rust-sha2-0.9))))
+    (home-page "https://gitlab.com/lumi/sasl-rs")
+    (synopsis
+      "Crate for SASL authentication. Currently only does the client side")
+    (description
+      "This package provides a crate for SASL authentication.  Currently only does the client side")
+    (license license:lgpl3+)))
+
 (define-public rust-scan-fmt-0.2
   (package
     (name "rust-scan-fmt")
-- 
2.30.2





Information forwarded to guix-patches <at> gnu.org:
bug#49451; Package guix-patches. (Mon, 12 Jul 2021 04:29:07 GMT) Full text and rfc822 format available.

Message #53 received at 49451 <at> debbugs.gnu.org (full text, mbox):

From: southerntofu <southerntofu <at> thunix.net>
To: 49451 <at> debbugs.gnu.org
Subject: [PATCH 16/20] gnu: Add rust-jid
Date: Sun, 11 Jul 2021 17:30:34 -0400
---
 gnu/packages/crates-io.scm | 29 ++++++++++++++++++++++++++++-
 1 file changed, 28 insertions(+), 1 deletion(-)

diff --git a/gnu/packages/crates-io.scm b/gnu/packages/crates-io.scm
index 44ae54f84c..f2e32d6172 100644
--- a/gnu/packages/crates-io.scm
+++ b/gnu/packages/crates-io.scm
@@ -22727,6 +22727,33 @@ primitives to an @code{io::Write}.")
 byte slices for sets of ASCII characters or bytes.")
     (license license:expat)))
 
+(define-public rust-jid-0.9
+  (package
+    (name "rust-jid")
+    (version "0.9.2")
+    (source
+      (origin
+        (method url-fetch)
+        (uri (crate-uri "jid" version))
+        (file-name
+          (string-append name "-" version ".tar.gz"))
+        (sha256
+          (base32
+            "1s3dl38wwhnx0pbzm4cnwqmmr09nfg4nv6w4yl3cmbkc2n7xipma"))))
+    (build-system cargo-build-system)
+    (arguments
+      `(#:skip-build?
+        #t
+        #:cargo-inputs
+        (("rust-minidom" ,rust-minidom-0.13)
+         ("rust-serde" ,rust-serde-1))))
+    (home-page "https://gitlab.com/xmpp-rs/xmpp-rs")
+    (synopsis
+      "Crate which provides a Jid struct for Jabber IDs")
+    (description
+      "This package provides a crate which provides a Jid struct for Jabber IDs.")
+    (license license:mpl2.0)))
+
 (define-public rust-jni-0.18
   (package
     (name "rust-jni")
@@ -39611,7 +39638,7 @@ motivation for writing this library.
     (synopsis
       "Crate for SASL authentication. Currently only does the client side")
     (description
-      "This package provides a crate for SASL authentication.  Currently only does the client side")
+      "Crate for SASL authentication.  Currently only does the client side")
     (license license:lgpl3+)))
 
 (define-public rust-scan-fmt-0.2
-- 
2.30.2





Information forwarded to guix-patches <at> gnu.org:
bug#49451; Package guix-patches. (Mon, 12 Jul 2021 04:29:08 GMT) Full text and rfc822 format available.

Message #56 received at 49451 <at> debbugs.gnu.org (full text, mbox):

From: southerntofu <southerntofu <at> thunix.net>
To: 49451 <at> debbugs.gnu.org
Subject: [PATCH 17/20] gnu: Add rust-xmpp-parsers
Date: Sun, 11 Jul 2021 17:30:39 -0400
---
 gnu/packages/crates-io.scm | 34 ++++++++++++++++++++++++++++++++++
 1 file changed, 34 insertions(+)

diff --git a/gnu/packages/crates-io.scm b/gnu/packages/crates-io.scm
index f2e32d6172..9bd91b0b7d 100644
--- a/gnu/packages/crates-io.scm
+++ b/gnu/packages/crates-io.scm
@@ -55033,6 +55033,40 @@ to XDG Base Directory specification.")
 parser.")
     (license (list license:expat license:asl2.0))))
 
+(define-public rust-xmpp-parsers-0.18
+  (package
+    (name "rust-xmpp-parsers")
+    (version "0.18.1")
+    (source
+      (origin
+        (method url-fetch)
+        (uri (crate-uri "xmpp-parsers" version))
+        (file-name
+          (string-append name "-" version ".tar.gz"))
+        (sha256
+          (base32
+            "064bjmngy0abcp9wcms7h5b13rljr0isliy83csaa0j7xyjmpkq1"))))
+    (build-system cargo-build-system)
+    (arguments
+      `(#:skip-build?
+        #t
+        #:cargo-inputs
+        (("rust-base64" ,rust-base64-0.13)
+         ("rust-blake2" ,rust-blake2-0.9)
+         ("rust-chrono" ,rust-chrono-0.4)
+         ("rust-digest" ,rust-digest-0.9)
+         ("rust-jid" ,rust-jid-0.9)
+         ("rust-minidom" ,rust-minidom-0.13)
+         ("rust-sha-1" ,rust-sha-1-0.9)
+         ("rust-sha2" ,rust-sha2-0.9)
+         ("rust-sha3" ,rust-sha3-0.9))))
+    (home-page "https://gitlab.com/xmpp-rs/xmpp-rs")
+    (synopsis
+      "Collection of parsers and serialisers for XMPP extensions")
+    (description
+      "Collection of parsers and serialisers for XMPP extensions")
+    (license license:mpl2.0)))
+
 (define-public rust-xshell-macros-0.1
   (package
     (name "rust-xshell-macros")
-- 
2.30.2





Information forwarded to guix-patches <at> gnu.org:
bug#49451; Package guix-patches. (Mon, 12 Jul 2021 04:29:08 GMT) Full text and rfc822 format available.

Message #59 received at 49451 <at> debbugs.gnu.org (full text, mbox):

From: southerntofu <southerntofu <at> thunix.net>
To: 49451 <at> debbugs.gnu.org
Subject: [PATCH 18/20] gnu: Add rust-tokio-xmpp
Date: Sun, 11 Jul 2021 17:30:46 -0400
---
 gnu/packages/crates-io.scm | 43 ++++++++++++++++++++++++++++++++++++++
 1 file changed, 43 insertions(+)

diff --git a/gnu/packages/crates-io.scm b/gnu/packages/crates-io.scm
index 9bd91b0b7d..f85b096547 100644
--- a/gnu/packages/crates-io.scm
+++ b/gnu/packages/crates-io.scm
@@ -49637,6 +49637,49 @@ stream-based WebSocket implementation.")
         ("rust-tokio" ,rust-tokio-0.2)
         ("rust-tokio-test" ,rust-tokio-test-0.2))))))
 
+(define-public rust-tokio-xmpp-3
+  (package
+    (name "rust-tokio-xmpp")
+    (version "3.0.0")
+    (source
+      (origin
+        (method url-fetch)
+        (uri (crate-uri "tokio-xmpp" version))
+        (file-name
+          (string-append name "-" version ".tar.gz"))
+        (sha256
+          (base32
+            "0f8s4gsv9zs6rlkc40jjglcm0prq10ypxszrwvpxhjbygbxrzb2n"))))
+    (build-system cargo-build-system)
+    (arguments
+      `(#:skip-build?
+        #t
+        #:cargo-inputs
+        (("rust-bytes" ,rust-bytes-1)
+         ("rust-futures" ,rust-futures-0.3)
+         ("rust-idna" ,rust-idna-0.2)
+         ("rust-log" ,rust-log-0.4)
+         ("rust-native-tls" ,rust-native-tls-0.2)
+         ("rust-rustc-version" ,rust-rustc-version-0.3)
+         ("rust-sasl" ,rust-sasl-0.5)
+         ("rust-tokio" ,rust-tokio-1)
+         ("rust-tokio-native-tls"
+          ,rust-tokio-native-tls-0.3)
+         ("rust-tokio-stream" ,rust-tokio-stream-0.1)
+         ("rust-tokio-util" ,rust-tokio-util-0.6)
+         ("rust-trust-dns-proto"
+          ,rust-trust-dns-proto-0.20)
+         ("rust-trust-dns-resolver"
+          ,rust-trust-dns-resolver-0.20)
+         ("rust-xml5ever" ,rust-xml5ever-0.16)
+         ("rust-xmpp-parsers" ,rust-xmpp-parsers-0.18))))
+    (home-page "https://gitlab.com/xmpp-rs/xmpp-rs")
+    (synopsis
+      "Asynchronous XMPP for Rust with tokio")
+    (description
+      "Asynchronous XMPP for Rust with tokio")
+    (license license:mpl2.0)))
+
 (define-public rust-toml-0.5
   (package
     (name "rust-toml")
-- 
2.30.2





Information forwarded to guix-patches <at> gnu.org:
bug#49451; Package guix-patches. (Mon, 12 Jul 2021 04:29:09 GMT) Full text and rfc822 format available.

Message #62 received at 49451 <at> debbugs.gnu.org (full text, mbox):

From: southerntofu <southerntofu <at> thunix.net>
To: 49451 <at> debbugs.gnu.org
Subject: [PATCH 20/20] Run indent-code.el on the packages i added
Date: Sun, 11 Jul 2021 17:30:52 -0400
---
 gnu/packages/crates-io.scm | 574 ++++++++++++++++++-------------------
 gnu/packages/messaging.scm |  82 +++---
 2 files changed, 328 insertions(+), 328 deletions(-)

diff --git a/gnu/packages/crates-io.scm b/gnu/packages/crates-io.scm
index f85b096547..f215bdee73 100644
--- a/gnu/packages/crates-io.scm
+++ b/gnu/packages/crates-io.scm
@@ -5212,24 +5212,24 @@ streams in big-endian and little-endian formats.")
     (name "rust-blake2")
     (version "0.9.1")
     (source
-      (origin
-        (method url-fetch)
-        (uri (crate-uri "blake2" version))
-        (file-name
-          (string-append name "-" version ".tar.gz"))
-        (sha256
-          (base32
-            "1x3qz692hfrxgw6cd94iiid6iqal2dwj6zv5137swpgg4l17598h"))))
+     (origin
+       (method url-fetch)
+       (uri (crate-uri "blake2" version))
+       (file-name
+        (string-append name "-" version ".tar.gz"))
+       (sha256
+        (base32
+         "1x3qz692hfrxgw6cd94iiid6iqal2dwj6zv5137swpgg4l17598h"))))
     (build-system cargo-build-system)
     (arguments
-      `(#:skip-build?
-        #t
-        #:cargo-inputs
-        (("rust-crypto-mac" ,rust-crypto-mac-0.8)
-         ("rust-digest" ,rust-digest-0.9)
-         ("rust-opaque-debug" ,rust-opaque-debug-0.3))))
+     `(#:skip-build?
+       #t
+       #:cargo-inputs
+       (("rust-crypto-mac" ,rust-crypto-mac-0.8)
+        ("rust-digest" ,rust-digest-0.9)
+        ("rust-opaque-debug" ,rust-opaque-debug-0.3))))
     (home-page
-      "https://github.com/RustCrypto/hashes")
+     "https://github.com/RustCrypto/hashes")
     (synopsis "BLAKE2 hash functions")
     (description "BLAKE2 hash functions")
     (license (list license:expat license:asl2.0))))
@@ -7260,21 +7260,21 @@ used in argon2rs' bench suite.")
     (name "rust-case")
     (version "0.1.0")
     (source
-      (origin
-        (method url-fetch)
-        (uri (crate-uri "case" version))
-        (file-name
-          (string-append name "-" version ".tar.gz"))
-        (sha256
-          (base32
-            "1hgc6fdg01qfh0qx5c50n717vh0xqvrlvxix8ksng5p291mid2z8"))))
+     (origin
+       (method url-fetch)
+       (uri (crate-uri "case" version))
+       (file-name
+        (string-append name "-" version ".tar.gz"))
+       (sha256
+        (base32
+         "1hgc6fdg01qfh0qx5c50n717vh0xqvrlvxix8ksng5p291mid2z8"))))
     (build-system cargo-build-system)
     (arguments `(#:skip-build? #t))
     (home-page
-      "https://github.com/SkylerLipthay/case")
+     "https://github.com/SkylerLipthay/case")
     (synopsis "Set of letter case string helpers")
     (description
-      "This package provides a set of letter case string helpers")
+     "This package provides a set of letter case string helpers")
     (license license:expat)))
 
 (define-public rust-cassowary-0.3
@@ -12681,28 +12681,28 @@ pattern for arbitrary structs.")
     (name "rust-derive-error")
     (version "0.0.4")
     (source
-      (origin
-        (method url-fetch)
-        (uri (crate-uri "derive-error" version))
-        (file-name
-          (string-append name "-" version ".tar.gz"))
-        (sha256
-          (base32
-            "1j624ma4jw911yg3qqlvfybgk7614k2blhg6wgnb38wyn90882gc"))))
+     (origin
+       (method url-fetch)
+       (uri (crate-uri "derive-error" version))
+       (file-name
+        (string-append name "-" version ".tar.gz"))
+       (sha256
+        (base32
+         "1j624ma4jw911yg3qqlvfybgk7614k2blhg6wgnb38wyn90882gc"))))
     (build-system cargo-build-system)
     (arguments
-      `(#:skip-build?
-        #t
-        #:cargo-inputs
-        (("rust-case" ,rust-case-0.1)
-         ("rust-quote" ,rust-quote-0.3)
-         ("rust-syn" ,rust-syn-0.11))))
+     `(#:skip-build?
+       #t
+       #:cargo-inputs
+       (("rust-case" ,rust-case-0.1)
+        ("rust-quote" ,rust-quote-0.3)
+        ("rust-syn" ,rust-syn-0.11))))
     (home-page
-      "https://github.com/rushmorem/derive-error")
+     "https://github.com/rushmorem/derive-error")
     (synopsis
-      "Derive macro for Error using macros 1.1")
+     "Derive macro for Error using macros 1.1")
     (description
-      "Derive macro for Error using macros 1.1")
+     "Derive macro for Error using macros 1.1")
     (license (list license:expat license:asl2.0))))
 
 (define-public rust-derive-error-chain-0.10
@@ -13726,22 +13726,22 @@ from macros.")
     (name "rust-downcast")
     (version "0.10.0")
     (source
-      (origin
-        (method url-fetch)
-        (uri (crate-uri "downcast" version))
-        (file-name
-          (string-append name "-" version ".tar.gz"))
-        (sha256
-          (base32
-            "07bh0l95gwrzak6rj29v8kkm577d8vivxsxhqgscf64b4bq59d2b"))))
+     (origin
+       (method url-fetch)
+       (uri (crate-uri "downcast" version))
+       (file-name
+        (string-append name "-" version ".tar.gz"))
+       (sha256
+        (base32
+         "07bh0l95gwrzak6rj29v8kkm577d8vivxsxhqgscf64b4bq59d2b"))))
     (build-system cargo-build-system)
     (arguments `(#:skip-build? #t))
     (home-page
-      "https://github.com/fkoep/downcast-rs")
+     "https://github.com/fkoep/downcast-rs")
     (synopsis
-      "Trait for downcasting trait objects back to their original types")
+     "Trait for downcasting trait objects back to their original types")
     (description
-      "Trait for downcasting trait objects back to their original types")
+     "Trait for downcasting trait objects back to their original types")
     (license license:expat)))
 
 (define-public rust-downcast-rs-1
@@ -15990,40 +15990,40 @@ streams.")
     (name "rust-flexi-logger")
     (version "0.15.12")
     (source
-      (origin
-        (method url-fetch)
-        (uri (crate-uri "flexi_logger" version))
-        (file-name
-          (string-append name "-" version ".tar.gz"))
-        (sha256
-          (base32
-            "1gs2flpzjd4kr9jw614vaqxxz7fd56gqkr78j47q0ja1vfp3raxa"))))
+     (origin
+       (method url-fetch)
+       (uri (crate-uri "flexi_logger" version))
+       (file-name
+        (string-append name "-" version ".tar.gz"))
+       (sha256
+        (base32
+         "1gs2flpzjd4kr9jw614vaqxxz7fd56gqkr78j47q0ja1vfp3raxa"))))
     (build-system cargo-build-system)
     (arguments
-      `(#:skip-build?
-        #t
-        #:cargo-inputs
-        (("rust-atty" ,rust-atty-0.2)
-         ("rust-chrono" ,rust-chrono-0.4)
-         ("rust-flate2" ,rust-flate2-1)
-         ("rust-glob" ,rust-glob-0.3)
-         ("rust-hostname" ,rust-hostname-0.3)
-         ("rust-lazy-static" ,rust-lazy-static-1)
-         ("rust-libc" ,rust-libc-0.2)
-         ("rust-log" ,rust-log-0.4)
-         ("rust-notify" ,rust-notify-4)
-         ("rust-regex" ,rust-regex-1)
-         ("rust-serde" ,rust-serde-1)
-         ("rust-serde-derive" ,rust-serde-derive-1)
-         ("rust-thiserror" ,rust-thiserror-1)
-         ("rust-toml" ,rust-toml-0.5)
-         ("rust-yansi" ,rust-yansi-0.5))))
+     `(#:skip-build?
+       #t
+       #:cargo-inputs
+       (("rust-atty" ,rust-atty-0.2)
+        ("rust-chrono" ,rust-chrono-0.4)
+        ("rust-flate2" ,rust-flate2-1)
+        ("rust-glob" ,rust-glob-0.3)
+        ("rust-hostname" ,rust-hostname-0.3)
+        ("rust-lazy-static" ,rust-lazy-static-1)
+        ("rust-libc" ,rust-libc-0.2)
+        ("rust-log" ,rust-log-0.4)
+        ("rust-notify" ,rust-notify-4)
+        ("rust-regex" ,rust-regex-1)
+        ("rust-serde" ,rust-serde-1)
+        ("rust-serde-derive" ,rust-serde-derive-1)
+        ("rust-thiserror" ,rust-thiserror-1)
+        ("rust-toml" ,rust-toml-0.5)
+        ("rust-yansi" ,rust-yansi-0.5))))
     (home-page
-      "https://github.com/emabee/flexi_logger")
+     "https://github.com/emabee/flexi_logger")
     (synopsis
-      "Easy-to-configure and flexible logger")
+     "Easy-to-configure and flexible logger")
     (description
-      "Easy-to-configure and flexible logger that writes logs to stderr and/or to files")
+     "Easy-to-configure and flexible logger that writes logs to stderr and/or to files")
     (license (list license:expat license:asl2.0))))
 
 (define-public rust-float-cmp-0.8
@@ -16457,22 +16457,22 @@ syntax, as used by HTML forms.")
     (name "rust-fragile")
     (version "1.0.0")
     (source
-      (origin
-        (method url-fetch)
-        (uri (crate-uri "fragile" version))
-        (file-name
-          (string-append name "-" version ".tar.gz"))
-        (sha256
-          (base32
-            "1wlihmkjyhvl5rckal32p010piy1l15s6l81h7z31jcd971kk839"))))
+     (origin
+       (method url-fetch)
+       (uri (crate-uri "fragile" version))
+       (file-name
+        (string-append name "-" version ".tar.gz"))
+       (sha256
+        (base32
+         "1wlihmkjyhvl5rckal32p010piy1l15s6l81h7z31jcd971kk839"))))
     (build-system cargo-build-system)
     (arguments `(#:skip-build? #t))
     (home-page
-      "https://github.com/mitsuhiko/rust-fragile")
+     "https://github.com/mitsuhiko/rust-fragile")
     (synopsis
-      "Provides wrapper types for sending non-send values to other threads")
+     "Provides wrapper types for sending non-send values to other threads")
     (description
-      "Provides wrapper types for sending non-send values to other threads")
+     "Provides wrapper types for sending non-send values to other threads")
     (license license:asl2.0)))
 
 (define-public rust-fragile-0.3
@@ -20146,26 +20146,26 @@ Derivation Function (HKDF).")
     (name "rust-hmac")
     (version "0.10.1")
     (source
-      (origin
-        (method url-fetch)
-        (uri (crate-uri "hmac" version))
-        (file-name
-          (string-append name "-" version ".tar.gz"))
-        (sha256
-          (base32
-            "058yxq54x7xn0gk2vy9bl51r32c9z7qlcl2b80bjh3lk3rmiqi61"))))
+     (origin
+       (method url-fetch)
+       (uri (crate-uri "hmac" version))
+       (file-name
+        (string-append name "-" version ".tar.gz"))
+       (sha256
+        (base32
+         "058yxq54x7xn0gk2vy9bl51r32c9z7qlcl2b80bjh3lk3rmiqi61"))))
     (build-system cargo-build-system)
     (arguments
-      `(#:skip-build?
-        #t
-        #:cargo-inputs
-        (("rust-crypto-mac" ,rust-crypto-mac-0.10)
-         ("rust-digest" ,rust-digest-0.9))))
+     `(#:skip-build?
+       #t
+       #:cargo-inputs
+       (("rust-crypto-mac" ,rust-crypto-mac-0.10)
+        ("rust-digest" ,rust-digest-0.9))))
     (home-page "https://github.com/RustCrypto/MACs")
     (synopsis
-      "Generic implementation of Hash-based Message Authentication Code (HMAC)")
+     "Generic implementation of Hash-based Message Authentication Code (HMAC)")
     (description
-      "Generic implementation of Hash-based Message Authentication Code (HMAC)")
+     "Generic implementation of Hash-based Message Authentication Code (HMAC)")
     (license (list license:expat license:asl2.0))))
 
 (define-public rust-hmac-0.8
@@ -20332,22 +20332,22 @@ Hash-based Message Authentication Code algorithm} for SHA1.")
     (name "rust-hsluv")
     (version "0.1.0")
     (source
-      (origin
-        (method url-fetch)
-        (uri (crate-uri "hsluv" version))
-        (file-name
-          (string-append name "-" version ".tar.gz"))
-        (sha256
-          (base32
-            "0g5p4x9np7292fxinqj34vlys5v20hg5yqqr8vvqbw8xcl5l3rax"))))
+     (origin
+       (method url-fetch)
+       (uri (crate-uri "hsluv" version))
+       (file-name
+        (string-append name "-" version ".tar.gz"))
+       (sha256
+        (base32
+         "0g5p4x9np7292fxinqj34vlys5v20hg5yqqr8vvqbw8xcl5l3rax"))))
     (build-system cargo-build-system)
     (arguments `(#:skip-build? #t))
     (home-page
-      "https://github.com/bb010g/rust-hsluv")
+     "https://github.com/bb010g/rust-hsluv")
     (synopsis
-      "Human-friendly HSL, Rust implementation (revision 4)")
+     "Human-friendly HSL, Rust implementation (revision 4)")
     (description
-      "Human-friendly HSL, Rust implementation (revision 4)")
+     "Human-friendly HSL, Rust implementation (revision 4)")
     (license license:expat)))
 
 (define-public rust-html5ever-0.25
@@ -22732,26 +22732,26 @@ byte slices for sets of ASCII characters or bytes.")
     (name "rust-jid")
     (version "0.9.2")
     (source
-      (origin
-        (method url-fetch)
-        (uri (crate-uri "jid" version))
-        (file-name
-          (string-append name "-" version ".tar.gz"))
-        (sha256
-          (base32
-            "1s3dl38wwhnx0pbzm4cnwqmmr09nfg4nv6w4yl3cmbkc2n7xipma"))))
+     (origin
+       (method url-fetch)
+       (uri (crate-uri "jid" version))
+       (file-name
+        (string-append name "-" version ".tar.gz"))
+       (sha256
+        (base32
+         "1s3dl38wwhnx0pbzm4cnwqmmr09nfg4nv6w4yl3cmbkc2n7xipma"))))
     (build-system cargo-build-system)
     (arguments
-      `(#:skip-build?
-        #t
-        #:cargo-inputs
-        (("rust-minidom" ,rust-minidom-0.13)
-         ("rust-serde" ,rust-serde-1))))
+     `(#:skip-build?
+       #t
+       #:cargo-inputs
+       (("rust-minidom" ,rust-minidom-0.13)
+        ("rust-serde" ,rust-serde-1))))
     (home-page "https://gitlab.com/xmpp-rs/xmpp-rs")
     (synopsis
-      "Crate which provides a Jid struct for Jabber IDs")
+     "Crate which provides a Jid struct for Jabber IDs")
     (description
-      "This package provides a crate which provides a Jid struct for Jabber IDs.")
+     "This package provides a crate which provides a Jid struct for Jabber IDs.")
     (license license:mpl2.0)))
 
 (define-public rust-jni-0.18
@@ -24361,24 +24361,24 @@ pairs in insertion order.")
     (name "rust-linked-hash-set")
     (version "0.1.4")
     (source
-      (origin
-        (method url-fetch)
-        (uri (crate-uri "linked_hash_set" version))
-        (file-name
-          (string-append name "-" version ".tar.gz"))
-        (sha256
-          (base32
-            "124m7wiz9ah7ah58ckai413mzfglh3y1nz64qy1s676qlinnq627"))))
+     (origin
+       (method url-fetch)
+       (uri (crate-uri "linked_hash_set" version))
+       (file-name
+        (string-append name "-" version ".tar.gz"))
+       (sha256
+        (base32
+         "124m7wiz9ah7ah58ckai413mzfglh3y1nz64qy1s676qlinnq627"))))
     (build-system cargo-build-system)
     (arguments
-      `(#:skip-build?
-        #t
-        #:cargo-inputs
-        (("rust-linked-hash-map"
-          ,rust-linked-hash-map-0.5)
-         ("rust-serde" ,rust-serde-1))))
+     `(#:skip-build?
+       #t
+       #:cargo-inputs
+       (("rust-linked-hash-map"
+         ,rust-linked-hash-map-0.5)
+        ("rust-serde" ,rust-serde-1))))
     (home-page
-      "https://github.com/alexheretic/linked-hash-set")
+     "https://github.com/alexheretic/linked-hash-set")
     (synopsis "HashSet with insertion ordering")
     (description "HashSet with insertion ordering")
     (license license:asl2.0)))
@@ -26364,25 +26364,25 @@ file's MIME type by its extension.")
     (name "rust-minidom")
     (version "0.13.0")
     (source
-      (origin
-        (method url-fetch)
-        (uri (crate-uri "minidom" version))
-        (file-name
-          (string-append name "-" version ".tar.gz"))
-        (sha256
-          (base32
-            "13k0ngkwgj0zgn0zkkklnj274q351mpyzjaglr0dviwz2k19499k"))))
+     (origin
+       (method url-fetch)
+       (uri (crate-uri "minidom" version))
+       (file-name
+        (string-append name "-" version ".tar.gz"))
+       (sha256
+        (base32
+         "13k0ngkwgj0zgn0zkkklnj274q351mpyzjaglr0dviwz2k19499k"))))
     (build-system cargo-build-system)
     (arguments
-      `(#:skip-build?
-        #t
-        #:cargo-inputs
-        (("rust-quick-xml" ,rust-quick-xml-0.20))))
+     `(#:skip-build?
+       #t
+       #:cargo-inputs
+       (("rust-quick-xml" ,rust-quick-xml-0.20))))
     (home-page "https://gitlab.com/xmpp-rs/xmpp-rs")
     (synopsis
-      "Small, simple DOM implementation on top of quick-xml")
+     "Small, simple DOM implementation on top of quick-xml")
     (description
-      "This package provides a small, simple DOM implementation on top of quick-xml")
+     "This package provides a small, simple DOM implementation on top of quick-xml")
     (license license:mpl2.0)))
 
 (define-public rust-miniz-oxide-0.4
@@ -26772,32 +26772,32 @@ IOCP and Async I/O abstractions.")
     (name "rust-mockall")
     (version "0.9.1")
     (source
-      (origin
-        (method url-fetch)
-        (uri (crate-uri "mockall" version))
-        (file-name
-          (string-append name "-" version ".tar.gz"))
-        (sha256
-          (base32
-            "1m9kpv4523503v48ahyzk9g2rabvbjl70mlbkc8mkfzr4fni9mhq"))))
+     (origin
+       (method url-fetch)
+       (uri (crate-uri "mockall" version))
+       (file-name
+        (string-append name "-" version ".tar.gz"))
+       (sha256
+        (base32
+         "1m9kpv4523503v48ahyzk9g2rabvbjl70mlbkc8mkfzr4fni9mhq"))))
     (build-system cargo-build-system)
     (arguments
-      `(#:skip-build?
-        #t
-        #:cargo-inputs
-        (("rust-cfg-if" ,rust-cfg-if-1)
-         ("rust-downcast" ,rust-downcast-0.10)
-         ("rust-fragile" ,rust-fragile-1)
-         ("rust-lazy-static" ,rust-lazy-static-1)
-         ("rust-mockall-derive" ,rust-mockall-derive-0.9)
-         ("rust-predicates" ,rust-predicates-1)
-         ("rust-predicates-tree" ,rust-predicates-tree-1))))
+     `(#:skip-build?
+       #t
+       #:cargo-inputs
+       (("rust-cfg-if" ,rust-cfg-if-1)
+        ("rust-downcast" ,rust-downcast-0.10)
+        ("rust-fragile" ,rust-fragile-1)
+        ("rust-lazy-static" ,rust-lazy-static-1)
+        ("rust-mockall-derive" ,rust-mockall-derive-0.9)
+        ("rust-predicates" ,rust-predicates-1)
+        ("rust-predicates-tree" ,rust-predicates-tree-1))))
     (home-page "https://github.com/asomers/mockall")
     (synopsis
-      "Powerful mock object library for Rust
+     "Powerful mock object library for Rust
 ")
     (description
-      "This package provides a powerful mock object library for Rust
+     "This package provides a powerful mock object library for Rust
 ")
     (license (list license:expat license:asl2.0))))
 
@@ -26806,23 +26806,23 @@ IOCP and Async I/O abstractions.")
     (name "rust-mockall-derive")
     (version "0.9.1")
     (source
-      (origin
-        (method url-fetch)
-        (uri (crate-uri "mockall_derive" version))
-        (file-name
-          (string-append name "-" version ".tar.gz"))
-        (sha256
-          (base32
-            "1snywdscj3chgs0xqr5700dsw2hy0qwd0s3kdk4nz85w6m327m2x"))))
+     (origin
+       (method url-fetch)
+       (uri (crate-uri "mockall_derive" version))
+       (file-name
+        (string-append name "-" version ".tar.gz"))
+       (sha256
+        (base32
+         "1snywdscj3chgs0xqr5700dsw2hy0qwd0s3kdk4nz85w6m327m2x"))))
     (build-system cargo-build-system)
     (arguments
-      `(#:skip-build?
-        #t
-        #:cargo-inputs
-        (("rust-cfg-if" ,rust-cfg-if-1)
-         ("rust-proc-macro2" ,rust-proc-macro2-1)
-         ("rust-quote" ,rust-quote-1)
-         ("rust-syn" ,rust-syn-1))))
+     `(#:skip-build?
+       #t
+       #:cargo-inputs
+       (("rust-cfg-if" ,rust-cfg-if-1)
+        ("rust-proc-macro2" ,rust-proc-macro2-1)
+        ("rust-quote" ,rust-quote-1)
+        ("rust-syn" ,rust-syn-1))))
     (home-page "https://github.com/asomers/mockall")
     (synopsis "Procedural macros for Mockall
 ")
@@ -31258,29 +31258,29 @@ directory path to the provided path.")
     (name "rust-pbkdf2")
     (version "0.6.0")
     (source
-      (origin
-        (method url-fetch)
-        (uri (crate-uri "pbkdf2" version))
-        (file-name
-          (string-append name "-" version ".tar.gz"))
-        (sha256
-          (base32
-            "0jjaapyawm5iqn97mmfj40dvipsy78cm80qcva28009l2zbw1f5k"))))
+     (origin
+       (method url-fetch)
+       (uri (crate-uri "pbkdf2" version))
+       (file-name
+        (string-append name "-" version ".tar.gz"))
+       (sha256
+        (base32
+         "0jjaapyawm5iqn97mmfj40dvipsy78cm80qcva28009l2zbw1f5k"))))
     (build-system cargo-build-system)
     (arguments
-      `(#:skip-build?
-        #t
-        #:cargo-inputs
-        (("rust-base64" ,rust-base64-0.13)
-         ("rust-crypto-mac" ,rust-crypto-mac-0.10)
-         ("rust-hmac" ,rust-hmac-0.10)
-         ("rust-rand" ,rust-rand-0.7)
-         ("rust-rand-core" ,rust-rand-core-0.5)
-         ("rust-rayon" ,rust-rayon-1)
-         ("rust-sha2" ,rust-sha2-0.9)
-         ("rust-subtle" ,rust-subtle-2))))
+     `(#:skip-build?
+       #t
+       #:cargo-inputs
+       (("rust-base64" ,rust-base64-0.13)
+        ("rust-crypto-mac" ,rust-crypto-mac-0.10)
+        ("rust-hmac" ,rust-hmac-0.10)
+        ("rust-rand" ,rust-rand-0.7)
+        ("rust-rand-core" ,rust-rand-core-0.5)
+        ("rust-rayon" ,rust-rayon-1)
+        ("rust-sha2" ,rust-sha2-0.9)
+        ("rust-subtle" ,rust-subtle-2))))
     (home-page
-      "https://github.com/RustCrypto/password-hashes/tree/master/pbkdf2")
+     "https://github.com/RustCrypto/password-hashes/tree/master/pbkdf2")
     (synopsis "Generic implementation of PBKDF2")
     (description "Generic implementation of PBKDF2")
     (license (list license:expat license:asl2.0))))
@@ -42178,25 +42178,25 @@ functions core functionality.")
     (name "rust-sha3")
     (version "0.9.1")
     (source
-      (origin
-        (method url-fetch)
-        (uri (crate-uri "sha3" version))
-        (file-name
-          (string-append name "-" version ".tar.gz"))
-        (sha256
-          (base32
-            "02d85wpvz75a0n7r2da15ikqjwzamhii11qy9gqf6pafgm0rj4gq"))))
+     (origin
+       (method url-fetch)
+       (uri (crate-uri "sha3" version))
+       (file-name
+        (string-append name "-" version ".tar.gz"))
+       (sha256
+        (base32
+         "02d85wpvz75a0n7r2da15ikqjwzamhii11qy9gqf6pafgm0rj4gq"))))
     (build-system cargo-build-system)
     (arguments
-      `(#:skip-build?
-        #t
-        #:cargo-inputs
-        (("rust-block-buffer" ,rust-block-buffer-0.9)
-         ("rust-digest" ,rust-digest-0.9)
-         ("rust-keccak" ,rust-keccak-0.1)
-         ("rust-opaque-debug" ,rust-opaque-debug-0.3))))
+     `(#:skip-build?
+       #t
+       #:cargo-inputs
+       (("rust-block-buffer" ,rust-block-buffer-0.9)
+        ("rust-digest" ,rust-digest-0.9)
+        ("rust-keccak" ,rust-keccak-0.1)
+        ("rust-opaque-debug" ,rust-opaque-debug-0.3))))
     (home-page
-      "https://github.com/RustCrypto/hashes")
+     "https://github.com/RustCrypto/hashes")
     (synopsis "SHA-3 (Keccak) hash function")
     (description "SHA-3 (Keccak) hash function")
     (license (list license:expat license:asl2.0))))
@@ -49642,42 +49642,42 @@ stream-based WebSocket implementation.")
     (name "rust-tokio-xmpp")
     (version "3.0.0")
     (source
-      (origin
-        (method url-fetch)
-        (uri (crate-uri "tokio-xmpp" version))
-        (file-name
-          (string-append name "-" version ".tar.gz"))
-        (sha256
-          (base32
-            "0f8s4gsv9zs6rlkc40jjglcm0prq10ypxszrwvpxhjbygbxrzb2n"))))
+     (origin
+       (method url-fetch)
+       (uri (crate-uri "tokio-xmpp" version))
+       (file-name
+        (string-append name "-" version ".tar.gz"))
+       (sha256
+        (base32
+         "0f8s4gsv9zs6rlkc40jjglcm0prq10ypxszrwvpxhjbygbxrzb2n"))))
     (build-system cargo-build-system)
     (arguments
-      `(#:skip-build?
-        #t
-        #:cargo-inputs
-        (("rust-bytes" ,rust-bytes-1)
-         ("rust-futures" ,rust-futures-0.3)
-         ("rust-idna" ,rust-idna-0.2)
-         ("rust-log" ,rust-log-0.4)
-         ("rust-native-tls" ,rust-native-tls-0.2)
-         ("rust-rustc-version" ,rust-rustc-version-0.3)
-         ("rust-sasl" ,rust-sasl-0.5)
-         ("rust-tokio" ,rust-tokio-1)
-         ("rust-tokio-native-tls"
-          ,rust-tokio-native-tls-0.3)
-         ("rust-tokio-stream" ,rust-tokio-stream-0.1)
-         ("rust-tokio-util" ,rust-tokio-util-0.6)
-         ("rust-trust-dns-proto"
-          ,rust-trust-dns-proto-0.20)
-         ("rust-trust-dns-resolver"
-          ,rust-trust-dns-resolver-0.20)
-         ("rust-xml5ever" ,rust-xml5ever-0.16)
-         ("rust-xmpp-parsers" ,rust-xmpp-parsers-0.18))))
+     `(#:skip-build?
+       #t
+       #:cargo-inputs
+       (("rust-bytes" ,rust-bytes-1)
+        ("rust-futures" ,rust-futures-0.3)
+        ("rust-idna" ,rust-idna-0.2)
+        ("rust-log" ,rust-log-0.4)
+        ("rust-native-tls" ,rust-native-tls-0.2)
+        ("rust-rustc-version" ,rust-rustc-version-0.3)
+        ("rust-sasl" ,rust-sasl-0.5)
+        ("rust-tokio" ,rust-tokio-1)
+        ("rust-tokio-native-tls"
+         ,rust-tokio-native-tls-0.3)
+        ("rust-tokio-stream" ,rust-tokio-stream-0.1)
+        ("rust-tokio-util" ,rust-tokio-util-0.6)
+        ("rust-trust-dns-proto"
+         ,rust-trust-dns-proto-0.20)
+        ("rust-trust-dns-resolver"
+         ,rust-trust-dns-resolver-0.20)
+        ("rust-xml5ever" ,rust-xml5ever-0.16)
+        ("rust-xmpp-parsers" ,rust-xmpp-parsers-0.18))))
     (home-page "https://gitlab.com/xmpp-rs/xmpp-rs")
     (synopsis
-      "Asynchronous XMPP for Rust with tokio")
+     "Asynchronous XMPP for Rust with tokio")
     (description
-      "Asynchronous XMPP for Rust with tokio")
+     "Asynchronous XMPP for Rust with tokio")
     (license license:mpl2.0)))
 
 (define-public rust-toml-0.5
@@ -55081,33 +55081,33 @@ parser.")
     (name "rust-xmpp-parsers")
     (version "0.18.1")
     (source
-      (origin
-        (method url-fetch)
-        (uri (crate-uri "xmpp-parsers" version))
-        (file-name
-          (string-append name "-" version ".tar.gz"))
-        (sha256
-          (base32
-            "064bjmngy0abcp9wcms7h5b13rljr0isliy83csaa0j7xyjmpkq1"))))
+     (origin
+       (method url-fetch)
+       (uri (crate-uri "xmpp-parsers" version))
+       (file-name
+        (string-append name "-" version ".tar.gz"))
+       (sha256
+        (base32
+         "064bjmngy0abcp9wcms7h5b13rljr0isliy83csaa0j7xyjmpkq1"))))
     (build-system cargo-build-system)
     (arguments
-      `(#:skip-build?
-        #t
-        #:cargo-inputs
-        (("rust-base64" ,rust-base64-0.13)
-         ("rust-blake2" ,rust-blake2-0.9)
-         ("rust-chrono" ,rust-chrono-0.4)
-         ("rust-digest" ,rust-digest-0.9)
-         ("rust-jid" ,rust-jid-0.9)
-         ("rust-minidom" ,rust-minidom-0.13)
-         ("rust-sha-1" ,rust-sha-1-0.9)
-         ("rust-sha2" ,rust-sha2-0.9)
-         ("rust-sha3" ,rust-sha3-0.9))))
+     `(#:skip-build?
+       #t
+       #:cargo-inputs
+       (("rust-base64" ,rust-base64-0.13)
+        ("rust-blake2" ,rust-blake2-0.9)
+        ("rust-chrono" ,rust-chrono-0.4)
+        ("rust-digest" ,rust-digest-0.9)
+        ("rust-jid" ,rust-jid-0.9)
+        ("rust-minidom" ,rust-minidom-0.13)
+        ("rust-sha-1" ,rust-sha-1-0.9)
+        ("rust-sha2" ,rust-sha2-0.9)
+        ("rust-sha3" ,rust-sha3-0.9))))
     (home-page "https://gitlab.com/xmpp-rs/xmpp-rs")
     (synopsis
-      "Collection of parsers and serialisers for XMPP extensions")
+     "Collection of parsers and serialisers for XMPP extensions")
     (description
-      "Collection of parsers and serialisers for XMPP extensions")
+     "Collection of parsers and serialisers for XMPP extensions")
     (license license:mpl2.0)))
 
 (define-public rust-xshell-macros-0.1
diff --git a/gnu/packages/messaging.scm b/gnu/packages/messaging.scm
index 6bfee2e15e..9d08347583 100644
--- a/gnu/packages/messaging.scm
+++ b/gnu/packages/messaging.scm
@@ -3023,56 +3023,56 @@ API.  Mattermost is not required.")
     (name "aparte")
     (version "0.2.0")
     (source
-      (origin
-        (method url-fetch)
-        (uri (crate-uri "aparte" version))
-        (file-name
-          (string-append name "-" version ".tar.gz"))
-        (sha256
-          (base32
-            "0qzg1052whjhcsz8n3s77kb4zvp7k0na3hikzkf5qa3z4g0hyvrp"))))
+     (origin
+       (method url-fetch)
+       (uri (crate-uri "aparte" version))
+       (file-name
+        (string-append name "-" version ".tar.gz"))
+       (sha256
+        (base32
+         "0qzg1052whjhcsz8n3s77kb4zvp7k0na3hikzkf5qa3z4g0hyvrp"))))
     (build-system cargo-build-system)
     (arguments
-      `(#:cargo-inputs
-        (("rust-backtrace" ,rust-backtrace-0.3)
-         ("rust-bytes" ,rust-bytes-0.5)
-         ("rust-chrono" ,rust-chrono-0.4)
-         ("rust-derive-error" ,rust-derive-error-0.0.4)
-         ("rust-dirs" ,rust-dirs-2)
-         ("rust-flexi-logger" ,rust-flexi-logger-0.15)
-         ("rust-futures" ,rust-futures-0.3)
-         ("rust-fuzzy-matcher" ,rust-fuzzy-matcher-0.3)
-         ("rust-hsluv" ,rust-hsluv-0.1)
-         ("rust-linked-hash-map"
-          ,rust-linked-hash-map-0.5)
-         ("rust-linked-hash-set"
-          ,rust-linked-hash-set-0.1)
-         ("rust-log" ,rust-log-0.4)
-         ("rust-rand" ,rust-rand-0.8)
-         ("rust-rpassword" ,rust-rpassword-3)
-         ("rust-rust-crypto" ,rust-rust-crypto-0.2)
-         ("rust-serde" ,rust-serde-1)
-         ("rust-termion" ,rust-termion-1)
-         ("rust-textwrap" ,rust-textwrap-0.12)
-         ("rust-tokio" ,rust-tokio-1)
-         ("rust-tokio-xmpp" ,rust-tokio-xmpp-3)
-         ("rust-toml" ,rust-toml-0.5)
-         ("rust-unicode-segmentation"
-          ,rust-unicode-segmentation-1)
-         ("rust-uuid" ,rust-uuid-0.7)
-         ("rust-xmpp-parsers" ,rust-xmpp-parsers-0.18))
-        #:cargo-development-inputs
-        (("rust-mockall" ,rust-mockall-0.9))))
+     `(#:cargo-inputs
+       (("rust-backtrace" ,rust-backtrace-0.3)
+        ("rust-bytes" ,rust-bytes-0.5)
+        ("rust-chrono" ,rust-chrono-0.4)
+        ("rust-derive-error" ,rust-derive-error-0.0.4)
+        ("rust-dirs" ,rust-dirs-2)
+        ("rust-flexi-logger" ,rust-flexi-logger-0.15)
+        ("rust-futures" ,rust-futures-0.3)
+        ("rust-fuzzy-matcher" ,rust-fuzzy-matcher-0.3)
+        ("rust-hsluv" ,rust-hsluv-0.1)
+        ("rust-linked-hash-map"
+         ,rust-linked-hash-map-0.5)
+        ("rust-linked-hash-set"
+         ,rust-linked-hash-set-0.1)
+        ("rust-log" ,rust-log-0.4)
+        ("rust-rand" ,rust-rand-0.8)
+        ("rust-rpassword" ,rust-rpassword-3)
+        ("rust-rust-crypto" ,rust-rust-crypto-0.2)
+        ("rust-serde" ,rust-serde-1)
+        ("rust-termion" ,rust-termion-1)
+        ("rust-textwrap" ,rust-textwrap-0.12)
+        ("rust-tokio" ,rust-tokio-1)
+        ("rust-tokio-xmpp" ,rust-tokio-xmpp-3)
+        ("rust-toml" ,rust-toml-0.5)
+        ("rust-unicode-segmentation"
+         ,rust-unicode-segmentation-1)
+        ("rust-uuid" ,rust-uuid-0.7)
+        ("rust-xmpp-parsers" ,rust-xmpp-parsers-0.18))
+       #:cargo-development-inputs
+       (("rust-mockall" ,rust-mockall-0.9))))
     (native-inputs
      `(("pkg-config" ,pkg-config)))
     (inputs
      `(("openssl" ,openssl)))
     (home-page
-      "https://github.com/paulfariello/aparte")
+     "https://github.com/paulfariello/aparte")
     (synopsis
-      "Simple XMPP console client written in Rust and inspired by Profanity")
+     "Simple XMPP console client written in Rust and inspired by Profanity")
     (description
-      "Simple XMPP console client written in Rust and inspired by Profanity")
+     "Simple XMPP console client written in Rust and inspired by Profanity")
     (license license:mpl2.0)))
 
 ;;; messaging.scm ends here
-- 
2.30.2





Information forwarded to guix-patches <at> gnu.org:
bug#49451; Package guix-patches. (Mon, 12 Jul 2021 04:29:09 GMT) Full text and rfc822 format available.

Message #65 received at 49451 <at> debbugs.gnu.org (full text, mbox):

From: southerntofu <southerntofu <at> thunix.net>
To: 49451 <at> debbugs.gnu.org
Subject: [PATCH 19/20] gnu: Add aparte
Date: Sun, 11 Jul 2021 17:31:50 -0400
---
 gnu/packages/messaging.scm | 59 ++++++++++++++++++++++++++++++++++++++
 1 file changed, 59 insertions(+)

diff --git a/gnu/packages/messaging.scm b/gnu/packages/messaging.scm
index 22e1c370aa..6bfee2e15e 100644
--- a/gnu/packages/messaging.scm
+++ b/gnu/packages/messaging.scm
@@ -60,6 +60,7 @@
   #:use-module (gnu packages check)
   #:use-module (gnu packages compression)
   #:use-module (gnu packages cpp)
+  #:use-module (gnu packages crates-io)
   #:use-module (gnu packages crypto)
   #:use-module (gnu packages curl)
   #:use-module (gnu packages cyrus-sasl)
@@ -123,6 +124,7 @@
   #:use-module (gnu packages xiph)
   #:use-module (gnu packages xml)
   #:use-module (gnu packages xorg)
+  #:use-module (guix build-system cargo)
   #:use-module (guix build-system cmake)
   #:use-module (guix build-system go)
   #:use-module (guix build-system glib-or-gtk)
@@ -3016,4 +3018,61 @@ API.  Mattermost is not required.")
     (home-page "https://github.com/42wim/matterbridge")
     (license license:asl2.0)))
 
+(define-public aparte
+  (package
+    (name "aparte")
+    (version "0.2.0")
+    (source
+      (origin
+        (method url-fetch)
+        (uri (crate-uri "aparte" version))
+        (file-name
+          (string-append name "-" version ".tar.gz"))
+        (sha256
+          (base32
+            "0qzg1052whjhcsz8n3s77kb4zvp7k0na3hikzkf5qa3z4g0hyvrp"))))
+    (build-system cargo-build-system)
+    (arguments
+      `(#:cargo-inputs
+        (("rust-backtrace" ,rust-backtrace-0.3)
+         ("rust-bytes" ,rust-bytes-0.5)
+         ("rust-chrono" ,rust-chrono-0.4)
+         ("rust-derive-error" ,rust-derive-error-0.0.4)
+         ("rust-dirs" ,rust-dirs-2)
+         ("rust-flexi-logger" ,rust-flexi-logger-0.15)
+         ("rust-futures" ,rust-futures-0.3)
+         ("rust-fuzzy-matcher" ,rust-fuzzy-matcher-0.3)
+         ("rust-hsluv" ,rust-hsluv-0.1)
+         ("rust-linked-hash-map"
+          ,rust-linked-hash-map-0.5)
+         ("rust-linked-hash-set"
+          ,rust-linked-hash-set-0.1)
+         ("rust-log" ,rust-log-0.4)
+         ("rust-rand" ,rust-rand-0.8)
+         ("rust-rpassword" ,rust-rpassword-3)
+         ("rust-rust-crypto" ,rust-rust-crypto-0.2)
+         ("rust-serde" ,rust-serde-1)
+         ("rust-termion" ,rust-termion-1)
+         ("rust-textwrap" ,rust-textwrap-0.12)
+         ("rust-tokio" ,rust-tokio-1)
+         ("rust-tokio-xmpp" ,rust-tokio-xmpp-3)
+         ("rust-toml" ,rust-toml-0.5)
+         ("rust-unicode-segmentation"
+          ,rust-unicode-segmentation-1)
+         ("rust-uuid" ,rust-uuid-0.7)
+         ("rust-xmpp-parsers" ,rust-xmpp-parsers-0.18))
+        #:cargo-development-inputs
+        (("rust-mockall" ,rust-mockall-0.9))))
+    (native-inputs
+     `(("pkg-config" ,pkg-config)))
+    (inputs
+     `(("openssl" ,openssl)))
+    (home-page
+      "https://github.com/paulfariello/aparte")
+    (synopsis
+      "Simple XMPP console client written in Rust and inspired by Profanity")
+    (description
+      "Simple XMPP console client written in Rust and inspired by Profanity")
+    (license license:mpl2.0)))
+
 ;;; messaging.scm ends here
-- 
2.30.2





Information forwarded to guix-patches <at> gnu.org:
bug#49451; Package guix-patches. (Sun, 01 Aug 2021 10:09:02 GMT) Full text and rfc822 format available.

Message #68 received at 49451 <at> debbugs.gnu.org (full text, mbox):

From: Xinglu Chen <public <at> yoctocell.xyz>
To: southerntofu <southerntofu <at> thunix.net>, 49451 <at> debbugs.gnu.org
Subject: Re: [bug#49451] [PATCH 01/20] gnu: rust-blake2: Update to 0.9
Date: Sun, 01 Aug 2021 12:08:32 +0200
[Message part 1 (text/plain, inline)]
On Sun, Jul 11 2021, southerntofu via Guix-patches via wrote:

> ---

Please write commit messages in the GNU ChangeLog format; you can look
at the commit log for examples, or see the manual.

  <https://www.gnu.org/prep/standards/html_node/Change-Logs.html>

If you use emacs, you can use the Yasnippet snippets found in the
etc/snippets/text-mode directory when writing commit messages.

>  gnu/packages/crates-io.scm | 27 +++++++++++++++++++++++++++
>  1 file changed, 27 insertions(+)
>
> diff --git a/gnu/packages/crates-io.scm b/gnu/packages/crates-io.scm
> index d53f8fb525..5ed2ff470e 100644
> --- a/gnu/packages/crates-io.scm
> +++ b/gnu/packages/crates-io.scm
> @@ -5207,6 +5207,33 @@ streams in big-endian and little-endian formats.")
>       "This package provides a crate for manipulating memory, bit by bit.")
>      (license license:expat)))
>  
> +(define-public rust-blake2-0.9
> +  (package
> +    (name "rust-blake2")
> +    (version "0.9.1")
> +    (source
> +      (origin
> +        (method url-fetch)
> +        (uri (crate-uri "blake2" version))
> +        (file-name
> +          (string-append name "-" version ".tar.gz"))
> +        (sha256
> +          (base32
> +            "1x3qz692hfrxgw6cd94iiid6iqal2dwj6zv5137swpgg4l17598h"))))
> +    (build-system cargo-build-system)
> +    (arguments
> +      `(#:skip-build?
> +        #t
> +        #:cargo-inputs
> +        (("rust-crypto-mac" ,rust-crypto-mac-0.8)
> +         ("rust-digest" ,rust-digest-0.9)
> +         ("rust-opaque-debug" ,rust-opaque-debug-0.3))))
> +    (home-page
> +      "https://github.com/RustCrypto/hashes")
> +    (synopsis "BLAKE2 hash functions")
> +    (description "BLAKE2 hash functions")

The description should consist of one ore more full sentences, see
“16.4.4 Synopses and Descriptions” in the manual.

Make sure to run ‘guix lint’ to avoid common mistakes like these.

Also, I noticed that a ‘rust-blake2-0.8’ package already exists, maybe
it would be possible to update that to 0.9, or make it inherit from
‘rust-blake2-0.9’ to avoid some code duplication.
[signature.asc (application/pgp-signature, inline)]

Information forwarded to guix-patches <at> gnu.org:
bug#49451; Package guix-patches. (Sun, 01 Aug 2021 10:11:01 GMT) Full text and rfc822 format available.

Message #71 received at 49451 <at> debbugs.gnu.org (full text, mbox):

From: Xinglu Chen <public <at> yoctocell.xyz>
To: southerntofu <southerntofu <at> thunix.net>, 49451 <at> debbugs.gnu.org
Subject: Re: [bug#49451] [PATCH 03/20] gnu: Add rust-derive-error
Date: Sun, 01 Aug 2021 12:10:14 +0200
[Message part 1 (text/plain, inline)]
On Sun, Jul 11 2021, southerntofu via Guix-patches via wrote:

> ---
>  gnu/packages/crates-io.scm | 29 +++++++++++++++++++++++++++++
>  1 file changed, 29 insertions(+)
>
> diff --git a/gnu/packages/crates-io.scm b/gnu/packages/crates-io.scm
> index c5605fa82c..2ac7bc0c2e 100644
> --- a/gnu/packages/crates-io.scm
> +++ b/gnu/packages/crates-io.scm
> @@ -12676,6 +12676,35 @@ for arbitrary structs.")
>  pattern for arbitrary structs.")
>      (license (list license:expat license:asl2.0))))
>  
> +(define-public rust-derive-error-0.0.4
> +  (package
> +    (name "rust-derive-error")
> +    (version "0.0.4")
> +    (source
> +      (origin
> +        (method url-fetch)
> +        (uri (crate-uri "derive-error" version))
> +        (file-name
> +          (string-append name "-" version ".tar.gz"))
> +        (sha256
> +          (base32
> +            "1j624ma4jw911yg3qqlvfybgk7614k2blhg6wgnb38wyn90882gc"))))
> +    (build-system cargo-build-system)
> +    (arguments
> +      `(#:skip-build?
> +        #t
> +        #:cargo-inputs
> +        (("rust-case" ,rust-case-0.1)
> +         ("rust-quote" ,rust-quote-0.3)
> +         ("rust-syn" ,rust-syn-0.11))))
> +    (home-page
> +      "https://github.com/rushmorem/derive-error")
> +    (synopsis
> +      "Derive macro for Error using macros 1.1")
> +    (description
> +      "Derive macro for Error using macros 1.1")

Full sentence(s) in the description.
[signature.asc (application/pgp-signature, inline)]

Information forwarded to guix-patches <at> gnu.org:
bug#49451; Package guix-patches. (Sun, 01 Aug 2021 10:12:02 GMT) Full text and rfc822 format available.

Message #74 received at 49451 <at> debbugs.gnu.org (full text, mbox):

From: Xinglu Chen <public <at> yoctocell.xyz>
To: southerntofu <southerntofu <at> thunix.net>, 49451 <at> debbugs.gnu.org
Subject: Re: [bug#49451] [PATCH 04/20] gnu: Add rust-downcast
Date: Sun, 01 Aug 2021 12:10:57 +0200
[Message part 1 (text/plain, inline)]
On Sun, Jul 11 2021, southerntofu via Guix-patches via wrote:

> ---
>  gnu/packages/crates-io.scm | 23 +++++++++++++++++++++++
>  1 file changed, 23 insertions(+)
>
> diff --git a/gnu/packages/crates-io.scm b/gnu/packages/crates-io.scm
> index 2ac7bc0c2e..d3641af193 100644
> --- a/gnu/packages/crates-io.scm
> +++ b/gnu/packages/crates-io.scm
> @@ -13721,6 +13721,29 @@ from macros.")
>          ("rust-rustc-serialize" ,rust-rustc-serialize-0.3)
>          ("rust-strsim" ,rust-strsim-0.5))))))
>  
> +(define-public rust-downcast-0.10
> +  (package
> +    (name "rust-downcast")
> +    (version "0.10.0")
> +    (source
> +      (origin
> +        (method url-fetch)
> +        (uri (crate-uri "downcast" version))
> +        (file-name
> +          (string-append name "-" version ".tar.gz"))
> +        (sha256
> +          (base32
> +            "07bh0l95gwrzak6rj29v8kkm577d8vivxsxhqgscf64b4bq59d2b"))))
> +    (build-system cargo-build-system)
> +    (arguments `(#:skip-build? #t))
> +    (home-page
> +      "https://github.com/fkoep/downcast-rs")
> +    (synopsis
> +      "Trait for downcasting trait objects back to their original types")
> +    (description
> +      "Trait for downcasting trait objects back to their original types")

Likewise (full sentence).
[signature.asc (application/pgp-signature, inline)]

Information forwarded to guix-patches <at> gnu.org:
bug#49451; Package guix-patches. (Sun, 01 Aug 2021 10:13:01 GMT) Full text and rfc822 format available.

Message #77 received at 49451 <at> debbugs.gnu.org (full text, mbox):

From: Xinglu Chen <public <at> yoctocell.xyz>
To: southerntofu <southerntofu <at> thunix.net>, 49451 <at> debbugs.gnu.org
Subject: Re: [bug#49451] [PATCH 05/20] gnu: Add rust-flexi-logger
Date: Sun, 01 Aug 2021 12:12:25 +0200
[Message part 1 (text/plain, inline)]
On Sun, Jul 11 2021, southerntofu via Guix-patches via wrote:

> ---
>  gnu/packages/crates-io.scm | 41 ++++++++++++++++++++++++++++++++++++++
>  1 file changed, 41 insertions(+)
>
> diff --git a/gnu/packages/crates-io.scm b/gnu/packages/crates-io.scm
> index d3641af193..e322661709 100644
> --- a/gnu/packages/crates-io.scm
> +++ b/gnu/packages/crates-io.scm
> @@ -15985,6 +15985,47 @@ Reader/Writer streams.  Contains bindings for zlib, deflate, and gzip-based
>  streams.")
>      (license (list license:expat license:asl2.0))))
>  
> +(define-public rust-flexi-logger-0.15
> +  (package
> +    (name "rust-flexi-logger")
> +    (version "0.15.12")
> +    (source
> +      (origin
> +        (method url-fetch)
> +        (uri (crate-uri "flexi_logger" version))
> +        (file-name
> +          (string-append name "-" version ".tar.gz"))
> +        (sha256
> +          (base32
> +            "1gs2flpzjd4kr9jw614vaqxxz7fd56gqkr78j47q0ja1vfp3raxa"))))
> +    (build-system cargo-build-system)
> +    (arguments
> +      `(#:skip-build?
> +        #t
> +        #:cargo-inputs
> +        (("rust-atty" ,rust-atty-0.2)
> +         ("rust-chrono" ,rust-chrono-0.4)
> +         ("rust-flate2" ,rust-flate2-1)
> +         ("rust-glob" ,rust-glob-0.3)
> +         ("rust-hostname" ,rust-hostname-0.3)
> +         ("rust-lazy-static" ,rust-lazy-static-1)
> +         ("rust-libc" ,rust-libc-0.2)
> +         ("rust-log" ,rust-log-0.4)
> +         ("rust-notify" ,rust-notify-4)
> +         ("rust-regex" ,rust-regex-1)
> +         ("rust-serde" ,rust-serde-1)
> +         ("rust-serde-derive" ,rust-serde-derive-1)
> +         ("rust-thiserror" ,rust-thiserror-1)
> +         ("rust-toml" ,rust-toml-0.5)
> +         ("rust-yansi" ,rust-yansi-0.5))))
> +    (home-page
> +      "https://github.com/emabee/flexi_logger")
> +    (synopsis
> +      "Easy-to-configure and flexible logger")
> +    (description
> +      "Easy-to-configure and flexible logger that writes logs to stderr and/or to files")

Please keep lines at ~80 characters long; write full sentence(s).
[signature.asc (application/pgp-signature, inline)]

Information forwarded to guix-patches <at> gnu.org:
bug#49451; Package guix-patches. (Sun, 01 Aug 2021 10:14:02 GMT) Full text and rfc822 format available.

Message #80 received at 49451 <at> debbugs.gnu.org (full text, mbox):

From: Xinglu Chen <public <at> yoctocell.xyz>
To: southerntofu <southerntofu <at> thunix.net>, 49451 <at> debbugs.gnu.org
Subject: Re: [bug#49451] [PATCH 06/20] gnu: rust-fragile: Update to 1.0
Date: Sun, 01 Aug 2021 12:13:09 +0200
[Message part 1 (text/plain, inline)]
On Sun, Jul 11 2021, southerntofu via Guix-patches via wrote:

> ---
>  gnu/packages/crates-io.scm | 23 +++++++++++++++++++++++
>  1 file changed, 23 insertions(+)
>
> diff --git a/gnu/packages/crates-io.scm b/gnu/packages/crates-io.scm
> index e322661709..258649f6a0 100644
> --- a/gnu/packages/crates-io.scm
> +++ b/gnu/packages/crates-io.scm
> @@ -16452,6 +16452,29 @@ implementation that is more efficient for smaller hash keys.")
>  syntax, as used by HTML forms.")
>      (license (list license:expat license:asl2.0))))
>  
> +(define-public rust-fragile-1
> +  (package
> +    (name "rust-fragile")
> +    (version "1.0.0")
> +    (source
> +      (origin
> +        (method url-fetch)
> +        (uri (crate-uri "fragile" version))
> +        (file-name
> +          (string-append name "-" version ".tar.gz"))
> +        (sha256
> +          (base32
> +            "1wlihmkjyhvl5rckal32p010piy1l15s6l81h7z31jcd971kk839"))))
> +    (build-system cargo-build-system)
> +    (arguments `(#:skip-build? #t))
> +    (home-page
> +      "https://github.com/mitsuhiko/rust-fragile")
> +    (synopsis
> +      "Provides wrapper types for sending non-send values to other threads")
> +    (description
> +      "Provides wrapper types for sending non-send values to other threads")

Full sentence and missing period.
[signature.asc (application/pgp-signature, inline)]

Information forwarded to guix-patches <at> gnu.org:
bug#49451; Package guix-patches. (Sun, 01 Aug 2021 10:15:01 GMT) Full text and rfc822 format available.

Message #83 received at 49451 <at> debbugs.gnu.org (full text, mbox):

From: Xinglu Chen <public <at> yoctocell.xyz>
To: southerntofu <southerntofu <at> thunix.net>, 49451 <at> debbugs.gnu.org
Subject: Re: [bug#49451] [PATCH 07/20] gnu: rust-hmac: Update to 0.10
Date: Sun, 01 Aug 2021 12:14:50 +0200
[Message part 1 (text/plain, inline)]
On Sun, Jul 11 2021, southerntofu via Guix-patches via wrote:

> ---
>  gnu/packages/crates-io.scm | 27 +++++++++++++++++++++++++++
>  1 file changed, 27 insertions(+)
>
> diff --git a/gnu/packages/crates-io.scm b/gnu/packages/crates-io.scm
> index 258649f6a0..2ac2230490 100644
> --- a/gnu/packages/crates-io.scm
> +++ b/gnu/packages/crates-io.scm
> @@ -20141,6 +20141,33 @@ Derivation Function (HKDF).")
>         (("rust-digest" ,rust-digest-0.8)
>          ("rust-hmac" ,rust-hmac-0.7))))))
>  
> +(define-public rust-hmac-0.10
> +  (package
> +    (name "rust-hmac")
> +    (version "0.10.1")
> +    (source
> +      (origin
> +        (method url-fetch)
> +        (uri (crate-uri "hmac" version))
> +        (file-name
> +          (string-append name "-" version ".tar.gz"))
> +        (sha256
> +          (base32
> +            "058yxq54x7xn0gk2vy9bl51r32c9z7qlcl2b80bjh3lk3rmiqi61"))))
> +    (build-system cargo-build-system)
> +    (arguments
> +      `(#:skip-build?
> +        #t
> +        #:cargo-inputs
> +        (("rust-crypto-mac" ,rust-crypto-mac-0.10)
> +         ("rust-digest" ,rust-digest-0.9))))
> +    (home-page "https://github.com/RustCrypto/MACs")
> +    (synopsis
> +      "Generic implementation of Hash-based Message Authentication Code (HMAC)")
> +    (description
> +      "Generic implementation of Hash-based Message Authentication Code (HMAC)")

Full sentence and missing period.
> +
>  (define-public rust-hmac-0.8
>    (package
>      (name "rust-hmac")

There is already a ‘rust-hmac-0.8’ package, maybe make it inherit from
‘rust-hmac-0.10’.

[signature.asc (application/pgp-signature, inline)]

Information forwarded to guix-patches <at> gnu.org:
bug#49451; Package guix-patches. (Sun, 01 Aug 2021 10:16:02 GMT) Full text and rfc822 format available.

Message #86 received at 49451 <at> debbugs.gnu.org (full text, mbox):

From: Xinglu Chen <public <at> yoctocell.xyz>
To: southerntofu <southerntofu <at> thunix.net>, 49451 <at> debbugs.gnu.org
Subject: Re: [bug#49451] [PATCH 08/20] gnu: Add rust-hsluv
Date: Sun, 01 Aug 2021 12:15:22 +0200
[Message part 1 (text/plain, inline)]
On Sun, Jul 11 2021, southerntofu via Guix-patches via wrote:

> ---
>  gnu/packages/crates-io.scm | 23 +++++++++++++++++++++++
>  1 file changed, 23 insertions(+)
>
> diff --git a/gnu/packages/crates-io.scm b/gnu/packages/crates-io.scm
> index 2ac2230490..5daaffaa52 100644
> --- a/gnu/packages/crates-io.scm
> +++ b/gnu/packages/crates-io.scm
> @@ -20327,6 +20327,29 @@ Hash-based Message Authentication Code algorithm} for SHA1.")
>         (("rust-libc" ,rust-libc-0.2)
>          ("rust-winutil" ,rust-winutil-0.1))))))
>  
> +(define-public rust-hsluv-0.1
> +  (package
> +    (name "rust-hsluv")
> +    (version "0.1.0")
> +    (source
> +      (origin
> +        (method url-fetch)
> +        (uri (crate-uri "hsluv" version))
> +        (file-name
> +          (string-append name "-" version ".tar.gz"))
> +        (sha256
> +          (base32
> +            "0g5p4x9np7292fxinqj34vlys5v20hg5yqqr8vvqbw8xcl5l3rax"))))
> +    (build-system cargo-build-system)
> +    (arguments `(#:skip-build? #t))
> +    (home-page
> +      "https://github.com/bb010g/rust-hsluv")
> +    (synopsis
> +      "Human-friendly HSL, Rust implementation (revision 4)")
> +    (description
> +      "Human-friendly HSL, Rust implementation (revision 4)")

Full sentence and missing period.
[signature.asc (application/pgp-signature, inline)]

Information forwarded to guix-patches <at> gnu.org:
bug#49451; Package guix-patches. (Sun, 01 Aug 2021 10:17:02 GMT) Full text and rfc822 format available.

Message #89 received at 49451 <at> debbugs.gnu.org (full text, mbox):

From: Xinglu Chen <public <at> yoctocell.xyz>
To: southerntofu <southerntofu <at> thunix.net>, 49451 <at> debbugs.gnu.org
Subject: Re: [bug#49451] [PATCH 09/20] gnu: Add rust-minidom
Date: Sun, 01 Aug 2021 12:16:20 +0200
[Message part 1 (text/plain, inline)]
On Sun, Jul 11 2021, southerntofu via Guix-patches via wrote:

> ---
>  gnu/packages/crates-io.scm | 26 ++++++++++++++++++++++++++
>  1 file changed, 26 insertions(+)
>
> diff --git a/gnu/packages/crates-io.scm b/gnu/packages/crates-io.scm
> index 5daaffaa52..16e2b33e4b 100644
> --- a/gnu/packages/crates-io.scm
> +++ b/gnu/packages/crates-io.scm
> @@ -26305,6 +26305,32 @@ file's MIME type by its extension.")
>          ("rust-phf-codegen" ,rust-phf-codegen-0.7)
>          ("rust-unicase" ,rust-unicase-1))))))
>  
> +(define-public rust-minidom-0.13
> +  (package
> +    (name "rust-minidom")
> +    (version "0.13.0")
> +    (source
> +      (origin
> +        (method url-fetch)
> +        (uri (crate-uri "minidom" version))
> +        (file-name
> +          (string-append name "-" version ".tar.gz"))
> +        (sha256
> +          (base32
> +            "13k0ngkwgj0zgn0zkkklnj274q351mpyzjaglr0dviwz2k19499k"))))
> +    (build-system cargo-build-system)
> +    (arguments
> +      `(#:skip-build?
> +        #t
> +        #:cargo-inputs
> +        (("rust-quick-xml" ,rust-quick-xml-0.20))))
> +    (home-page "https://gitlab.com/xmpp-rs/xmpp-rs")
> +    (synopsis
> +      "Small, simple DOM implementation on top of quick-xml")
> +    (description
> +      "This package provides a small, simple DOM implementation on top of quick-xml")

Keep lines around ~80 characters; missing period.
[signature.asc (application/pgp-signature, inline)]

Information forwarded to guix-patches <at> gnu.org:
bug#49451; Package guix-patches. (Sun, 01 Aug 2021 10:17:02 GMT) Full text and rfc822 format available.

Message #92 received at 49451 <at> debbugs.gnu.org (full text, mbox):

From: Xinglu Chen <public <at> yoctocell.xyz>
To: southerntofu <southerntofu <at> thunix.net>, 49451 <at> debbugs.gnu.org
Subject: Re: [bug#49451] [PATCH 10/20] gnu: Add rust-linked-hash-set
Date: Sun, 01 Aug 2021 12:16:42 +0200
[Message part 1 (text/plain, inline)]
On Sun, Jul 11 2021, southerntofu via Guix-patches via wrote:

> ---
>  gnu/packages/crates-io.scm | 27 +++++++++++++++++++++++++++
>  1 file changed, 27 insertions(+)
>
> diff --git a/gnu/packages/crates-io.scm b/gnu/packages/crates-io.scm
> index 16e2b33e4b..b60d07c15b 100644
> --- a/gnu/packages/crates-io.scm
> +++ b/gnu/packages/crates-io.scm
> @@ -24329,6 +24329,33 @@ pairs in insertion order.")
>          ("rust-serde" ,rust-serde-0.8)
>          ("rust-serde-test" ,rust-serde-test-0.8))))))
>  
> +(define-public rust-linked-hash-set-0.1
> +  (package
> +    (name "rust-linked-hash-set")
> +    (version "0.1.4")
> +    (source
> +      (origin
> +        (method url-fetch)
> +        (uri (crate-uri "linked_hash_set" version))
> +        (file-name
> +          (string-append name "-" version ".tar.gz"))
> +        (sha256
> +          (base32
> +            "124m7wiz9ah7ah58ckai413mzfglh3y1nz64qy1s676qlinnq627"))))
> +    (build-system cargo-build-system)
> +    (arguments
> +      `(#:skip-build?
> +        #t
> +        #:cargo-inputs
> +        (("rust-linked-hash-map"
> +          ,rust-linked-hash-map-0.5)
> +         ("rust-serde" ,rust-serde-1))))
> +    (home-page
> +      "https://github.com/alexheretic/linked-hash-set")
> +    (synopsis "HashSet with insertion ordering")
> +    (description "HashSet with insertion ordering")

Full sentence.
[signature.asc (application/pgp-signature, inline)]

Information forwarded to guix-patches <at> gnu.org:
bug#49451; Package guix-patches. (Sun, 01 Aug 2021 10:18:02 GMT) Full text and rfc822 format available.

Message #95 received at 49451 <at> debbugs.gnu.org (full text, mbox):

From: Xinglu Chen <public <at> yoctocell.xyz>
To: southerntofu <southerntofu <at> thunix.net>, 49451 <at> debbugs.gnu.org
Subject: Re: [bug#49451] [PATCH 11/20] gnu: rust-pbkdf2: Update to 0.6
Date: Sun, 01 Aug 2021 12:17:49 +0200
[Message part 1 (text/plain, inline)]
On Sun, Jul 11 2021, southerntofu via Guix-patches via wrote:

> ---
>  gnu/packages/crates-io.scm | 32 ++++++++++++++++++++++++++++++++
>  1 file changed, 32 insertions(+)
>
> diff --git a/gnu/packages/crates-io.scm b/gnu/packages/crates-io.scm
> index b60d07c15b..b65ea9568f 100644
> --- a/gnu/packages/crates-io.scm
> +++ b/gnu/packages/crates-io.scm
> @@ -31163,6 +31163,38 @@ path.Clean.")
>  directory path to the provided path.")
>      (license (list license:asl2.0 license:expat))))
>  
> +(define-public rust-pbkdf2-0.6
> +  (package
> +    (name "rust-pbkdf2")
> +    (version "0.6.0")
> +    (source
> +      (origin
> +        (method url-fetch)
> +        (uri (crate-uri "pbkdf2" version))
> +        (file-name
> +          (string-append name "-" version ".tar.gz"))
> +        (sha256
> +          (base32
> +            "0jjaapyawm5iqn97mmfj40dvipsy78cm80qcva28009l2zbw1f5k"))))
> +    (build-system cargo-build-system)
> +    (arguments
> +      `(#:skip-build?
> +        #t
> +        #:cargo-inputs
> +        (("rust-base64" ,rust-base64-0.13)
> +         ("rust-crypto-mac" ,rust-crypto-mac-0.10)
> +         ("rust-hmac" ,rust-hmac-0.10)
> +         ("rust-rand" ,rust-rand-0.7)
> +         ("rust-rand-core" ,rust-rand-core-0.5)
> +         ("rust-rayon" ,rust-rayon-1)
> +         ("rust-sha2" ,rust-sha2-0.9)
> +         ("rust-subtle" ,rust-subtle-2))))
> +    (home-page
> +      "https://github.com/RustCrypto/password-hashes/tree/master/pbkdf2")
> +    (synopsis "Generic implementation of PBKDF2")
> +    (description "Generic implementation of PBKDF2")

Full sentence.
[signature.asc (application/pgp-signature, inline)]

Information forwarded to guix-patches <at> gnu.org:
bug#49451; Package guix-patches. (Sun, 01 Aug 2021 10:19:01 GMT) Full text and rfc822 format available.

Message #98 received at 49451 <at> debbugs.gnu.org (full text, mbox):

From: Xinglu Chen <public <at> yoctocell.xyz>
To: southerntofu <southerntofu <at> thunix.net>, 49451 <at> debbugs.gnu.org
Subject: Re: [bug#49451] [PATCH 12/20] gnu: Add rust-sha3
Date: Sun, 01 Aug 2021 12:18:22 +0200
[Message part 1 (text/plain, inline)]
On Sun, Jul 11 2021, southerntofu via Guix-patches via wrote:

> ---
>  gnu/packages/crates-io.scm | 28 ++++++++++++++++++++++++++++
>  1 file changed, 28 insertions(+)
>
> diff --git a/gnu/packages/crates-io.scm b/gnu/packages/crates-io.scm
> index b65ea9568f..5389f69934 100644
> --- a/gnu/packages/crates-io.scm
> +++ b/gnu/packages/crates-io.scm
> @@ -42052,6 +42052,34 @@ functions core functionality.")
>         (("rust-gcc" ,rust-gcc-0.3)
>          ("rust-generic-array" ,rust-generic-array-0.8))))))
>  
> +(define-public rust-sha3-0.9
> +  (package
> +    (name "rust-sha3")
> +    (version "0.9.1")
> +    (source
> +      (origin
> +        (method url-fetch)
> +        (uri (crate-uri "sha3" version))
> +        (file-name
> +          (string-append name "-" version ".tar.gz"))
> +        (sha256
> +          (base32
> +            "02d85wpvz75a0n7r2da15ikqjwzamhii11qy9gqf6pafgm0rj4gq"))))
> +    (build-system cargo-build-system)
> +    (arguments
> +      `(#:skip-build?
> +        #t
> +        #:cargo-inputs
> +        (("rust-block-buffer" ,rust-block-buffer-0.9)
> +         ("rust-digest" ,rust-digest-0.9)
> +         ("rust-keccak" ,rust-keccak-0.1)
> +         ("rust-opaque-debug" ,rust-opaque-debug-0.3))))
> +    (home-page
> +      "https://github.com/RustCrypto/hashes")
> +    (synopsis "SHA-3 (Keccak) hash function")
> +    (description "SHA-3 (Keccak) hash function")

Full sentence.
[signature.asc (application/pgp-signature, inline)]

Information forwarded to guix-patches <at> gnu.org:
bug#49451; Package guix-patches. (Sun, 01 Aug 2021 10:20:01 GMT) Full text and rfc822 format available.

Message #101 received at 49451 <at> debbugs.gnu.org (full text, mbox):

From: Xinglu Chen <public <at> yoctocell.xyz>
To: southerntofu <southerntofu <at> thunix.net>, 49451 <at> debbugs.gnu.org
Subject: Re: [bug#49451] [PATCH 13/20] gnu: Add rust-mockall-derive
Date: Sun, 01 Aug 2021 12:19:12 +0200
[Message part 1 (text/plain, inline)]
On Sun, Jul 11 2021, southerntofu via Guix-patches via wrote:

> ---
>  gnu/packages/crates-io.scm | 30 ++++++++++++++++++++++++++++++
>  1 file changed, 30 insertions(+)
>
> diff --git a/gnu/packages/crates-io.scm b/gnu/packages/crates-io.scm
> index 5389f69934..2a9e477aaf 100644
> --- a/gnu/packages/crates-io.scm
> +++ b/gnu/packages/crates-io.scm
> @@ -26740,6 +26740,36 @@ IOCP and Async I/O abstractions.")
>         #:cargo-development-inputs
>         (("rust-rand" ,rust-rand-0.3))))))
>  
> +
> +(define-public rust-mockall-derive-0.9
> +  (package
> +    (name "rust-mockall-derive")
> +    (version "0.9.1")
> +    (source
> +      (origin
> +        (method url-fetch)
> +        (uri (crate-uri "mockall_derive" version))
> +        (file-name
> +          (string-append name "-" version ".tar.gz"))
> +        (sha256
> +          (base32
> +            "1snywdscj3chgs0xqr5700dsw2hy0qwd0s3kdk4nz85w6m327m2x"))))
> +    (build-system cargo-build-system)
> +    (arguments
> +      `(#:skip-build?
> +        #t
> +        #:cargo-inputs
> +        (("rust-cfg-if" ,rust-cfg-if-1)
> +         ("rust-proc-macro2" ,rust-proc-macro2-1)
> +         ("rust-quote" ,rust-quote-1)
> +         ("rust-syn" ,rust-syn-1))))
> +    (home-page "https://github.com/asomers/mockall")
> +    (synopsis "Procedural macros for Mockall
> +")

No need for a newline.

> +    (description "Procedural macros for Mockall
> +")

Same as above, and use full sentence(s).
[signature.asc (application/pgp-signature, inline)]

Information forwarded to guix-patches <at> gnu.org:
bug#49451; Package guix-patches. (Sun, 01 Aug 2021 10:21:01 GMT) Full text and rfc822 format available.

Message #104 received at 49451 <at> debbugs.gnu.org (full text, mbox):

From: Xinglu Chen <public <at> yoctocell.xyz>
To: southerntofu <southerntofu <at> thunix.net>, 49451 <at> debbugs.gnu.org
Subject: Re: [bug#49451] [PATCH 14/20] gnu: Add rust-mockall
Date: Sun, 01 Aug 2021 12:20:00 +0200
[Message part 1 (text/plain, inline)]
On Sun, Jul 11 2021, southerntofu via Guix-patches via wrote:

> ---
>  gnu/packages/crates-io.scm | 33 +++++++++++++++++++++++++++++++++
>  1 file changed, 33 insertions(+)
>
> diff --git a/gnu/packages/crates-io.scm b/gnu/packages/crates-io.scm
> index 2a9e477aaf..0e57d3c145 100644
> --- a/gnu/packages/crates-io.scm
> +++ b/gnu/packages/crates-io.scm
> @@ -26740,6 +26740,39 @@ IOCP and Async I/O abstractions.")
>         #:cargo-development-inputs
>         (("rust-rand" ,rust-rand-0.3))))))
>  
> +(define-public rust-mockall-0.9
> +  (package
> +    (name "rust-mockall")
> +    (version "0.9.1")
> +    (source
> +      (origin
> +        (method url-fetch)
> +        (uri (crate-uri "mockall" version))
> +        (file-name
> +          (string-append name "-" version ".tar.gz"))
> +        (sha256
> +          (base32
> +            "1m9kpv4523503v48ahyzk9g2rabvbjl70mlbkc8mkfzr4fni9mhq"))))
> +    (build-system cargo-build-system)
> +    (arguments
> +      `(#:skip-build?
> +        #t
> +        #:cargo-inputs
> +        (("rust-cfg-if" ,rust-cfg-if-1)
> +         ("rust-downcast" ,rust-downcast-0.10)
> +         ("rust-fragile" ,rust-fragile-1)
> +         ("rust-lazy-static" ,rust-lazy-static-1)
> +         ("rust-mockall-derive" ,rust-mockall-derive-0.9)
> +         ("rust-predicates" ,rust-predicates-1)
> +         ("rust-predicates-tree" ,rust-predicates-tree-1))))
> +    (home-page "https://github.com/asomers/mockall")
> +    (synopsis
> +      "Powerful mock object library for Rust
> +")

No need for a newline.

> +    (description
> +      "This package provides a powerful mock object library for Rust
> +")

Same as above, and missing period.
[signature.asc (application/pgp-signature, inline)]

Information forwarded to guix-patches <at> gnu.org:
bug#49451; Package guix-patches. (Sun, 01 Aug 2021 10:23:02 GMT) Full text and rfc822 format available.

Message #107 received at 49451 <at> debbugs.gnu.org (full text, mbox):

From: Xinglu Chen <public <at> yoctocell.xyz>
To: southerntofu <southerntofu <at> thunix.net>, 49451 <at> debbugs.gnu.org
Subject: Re: [bug#49451] [PATCH 15/20] gnu: Add rust-sasl
Date: Sun, 01 Aug 2021 12:22:04 +0200
[Message part 1 (text/plain, inline)]
On Sun, Jul 11 2021, southerntofu via Guix-patches via wrote:

> ---
>  gnu/packages/crates-io.scm | 31 +++++++++++++++++++++++++++++++
>  1 file changed, 31 insertions(+)
>
> diff --git a/gnu/packages/crates-io.scm b/gnu/packages/crates-io.scm
> index 0e57d3c145..44ae54f84c 100644
> --- a/gnu/packages/crates-io.scm
> +++ b/gnu/packages/crates-io.scm
> @@ -39583,6 +39583,37 @@ motivation for writing this library.
>  @end itemize")
>      (license (list license:asl2.0 license:expat))))
>  
> +(define-public rust-sasl-0.5
> +  (package
> +    (name "rust-sasl")
> +    (version "0.5.0")
> +    (source
> +      (origin
> +        (method url-fetch)
> +        (uri (crate-uri "sasl" version))
> +        (file-name
> +          (string-append name "-" version ".tar.gz"))
> +        (sha256
> +          (base32
> +            "1j9d6q580r18i90ksr0frjks3mzll73966p2rp0vn9w90b77sbap"))))
> +    (build-system cargo-build-system)
> +    (arguments
> +      `(#:skip-build?
> +        #t
> +        #:cargo-inputs
> +        (("rust-base64" ,rust-base64-0.13)
> +         ("rust-getrandom" ,rust-getrandom-0.2)
> +         ("rust-hmac" ,rust-hmac-0.10)
> +         ("rust-pbkdf2" ,rust-pbkdf2-0.6)
> +         ("rust-sha-1" ,rust-sha-1-0.9)
> +         ("rust-sha2" ,rust-sha2-0.9))))
> +    (home-page "https://gitlab.com/lumi/sasl-rs")
> +    (synopsis
> +      "Crate for SASL authentication. Currently only does the client side")

The synopsis should not contain multiple sentences, see “16.4.4 Synopses
and Descriptions” in the manual.

> +    (description
> +      "This package provides a crate for SASL authentication.  Currently only does the client side")

Keep lines at ~80 characters; missing period.
[signature.asc (application/pgp-signature, inline)]

Information forwarded to guix-patches <at> gnu.org:
bug#49451; Package guix-patches. (Sun, 01 Aug 2021 10:24:02 GMT) Full text and rfc822 format available.

Message #110 received at 49451 <at> debbugs.gnu.org (full text, mbox):

From: Xinglu Chen <public <at> yoctocell.xyz>
To: southerntofu <southerntofu <at> thunix.net>, 49451 <at> debbugs.gnu.org
Subject: Re: [bug#49451] [PATCH 16/20] gnu: Add rust-jid
Date: Sun, 01 Aug 2021 12:23:46 +0200
[Message part 1 (text/plain, inline)]
On Sun, Jul 11 2021, southerntofu via Guix-patches via wrote:

> ---
>  gnu/packages/crates-io.scm | 29 ++++++++++++++++++++++++++++-
>  1 file changed, 28 insertions(+), 1 deletion(-)
>
> diff --git a/gnu/packages/crates-io.scm b/gnu/packages/crates-io.scm
> index 44ae54f84c..f2e32d6172 100644
> --- a/gnu/packages/crates-io.scm
> +++ b/gnu/packages/crates-io.scm
> @@ -22727,6 +22727,33 @@ primitives to an @code{io::Write}.")
>  byte slices for sets of ASCII characters or bytes.")
>      (license license:expat)))
>  
> +(define-public rust-jid-0.9
> +  (package
> +    (name "rust-jid")
> +    (version "0.9.2")
> +    (source
> +      (origin
> +        (method url-fetch)
> +        (uri (crate-uri "jid" version))
> +        (file-name
> +          (string-append name "-" version ".tar.gz"))
> +        (sha256
> +          (base32
> +            "1s3dl38wwhnx0pbzm4cnwqmmr09nfg4nv6w4yl3cmbkc2n7xipma"))))
> +    (build-system cargo-build-system)
> +    (arguments
> +      `(#:skip-build?
> +        #t
> +        #:cargo-inputs
> +        (("rust-minidom" ,rust-minidom-0.13)
> +         ("rust-serde" ,rust-serde-1))))
> +    (home-page "https://gitlab.com/xmpp-rs/xmpp-rs")
> +    (synopsis
> +      "Crate which provides a Jid struct for Jabber IDs")
> +    (description
> +      "This package provides a crate which provides a Jid struct for Jabber IDs.")
> +    (license license:mpl2.0)))
> +
>  (define-public rust-jni-0.18
>    (package
>      (name "rust-jni")
> @@ -39611,7 +39638,7 @@ motivation for writing this library.
>      (synopsis
>        "Crate for SASL authentication. Currently only does the client side")
>      (description
> -      "This package provides a crate for SASL authentication.  Currently only does the client side")
> +      "Crate for SASL authentication.  Currently only does the client side")
>      (license license:lgpl3+)))

This hunk should probably be dropped.
[signature.asc (application/pgp-signature, inline)]

Information forwarded to guix-patches <at> gnu.org:
bug#49451; Package guix-patches. (Sun, 01 Aug 2021 10:25:01 GMT) Full text and rfc822 format available.

Message #113 received at 49451 <at> debbugs.gnu.org (full text, mbox):

From: Xinglu Chen <public <at> yoctocell.xyz>
To: southerntofu <southerntofu <at> thunix.net>, 49451 <at> debbugs.gnu.org
Subject: Re: [bug#49451] [PATCH 17/20] gnu: Add rust-xmpp-parsers
Date: Sun, 01 Aug 2021 12:24:09 +0200
[Message part 1 (text/plain, inline)]
On Sun, Jul 11 2021, southerntofu via Guix-patches via wrote:

> ---
>  gnu/packages/crates-io.scm | 34 ++++++++++++++++++++++++++++++++++
>  1 file changed, 34 insertions(+)
>
> diff --git a/gnu/packages/crates-io.scm b/gnu/packages/crates-io.scm
> index f2e32d6172..9bd91b0b7d 100644
> --- a/gnu/packages/crates-io.scm
> +++ b/gnu/packages/crates-io.scm
> @@ -55033,6 +55033,40 @@ to XDG Base Directory specification.")
>  parser.")
>      (license (list license:expat license:asl2.0))))
>  
> +(define-public rust-xmpp-parsers-0.18
> +  (package
> +    (name "rust-xmpp-parsers")
> +    (version "0.18.1")
> +    (source
> +      (origin
> +        (method url-fetch)
> +        (uri (crate-uri "xmpp-parsers" version))
> +        (file-name
> +          (string-append name "-" version ".tar.gz"))
> +        (sha256
> +          (base32
> +            "064bjmngy0abcp9wcms7h5b13rljr0isliy83csaa0j7xyjmpkq1"))))
> +    (build-system cargo-build-system)
> +    (arguments
> +      `(#:skip-build?
> +        #t
> +        #:cargo-inputs
> +        (("rust-base64" ,rust-base64-0.13)
> +         ("rust-blake2" ,rust-blake2-0.9)
> +         ("rust-chrono" ,rust-chrono-0.4)
> +         ("rust-digest" ,rust-digest-0.9)
> +         ("rust-jid" ,rust-jid-0.9)
> +         ("rust-minidom" ,rust-minidom-0.13)
> +         ("rust-sha-1" ,rust-sha-1-0.9)
> +         ("rust-sha2" ,rust-sha2-0.9)
> +         ("rust-sha3" ,rust-sha3-0.9))))
> +    (home-page "https://gitlab.com/xmpp-rs/xmpp-rs")
> +    (synopsis
> +      "Collection of parsers and serialisers for XMPP extensions")
> +    (description
> +      "Collection of parsers and serialisers for XMPP extensions")

Full sentence and missing period.
[signature.asc (application/pgp-signature, inline)]

Information forwarded to guix-patches <at> gnu.org:
bug#49451; Package guix-patches. (Sun, 01 Aug 2021 10:25:02 GMT) Full text and rfc822 format available.

Message #116 received at 49451 <at> debbugs.gnu.org (full text, mbox):

From: Xinglu Chen <public <at> yoctocell.xyz>
To: southerntofu <southerntofu <at> thunix.net>, 49451 <at> debbugs.gnu.org
Subject: Re: [bug#49451] [PATCH 18/20] gnu: Add rust-tokio-xmpp
Date: Sun, 01 Aug 2021 12:24:32 +0200
[Message part 1 (text/plain, inline)]
On Sun, Jul 11 2021, southerntofu via Guix-patches via wrote:

> ---
>  gnu/packages/crates-io.scm | 43 ++++++++++++++++++++++++++++++++++++++
>  1 file changed, 43 insertions(+)
>
> diff --git a/gnu/packages/crates-io.scm b/gnu/packages/crates-io.scm
> index 9bd91b0b7d..f85b096547 100644
> --- a/gnu/packages/crates-io.scm
> +++ b/gnu/packages/crates-io.scm
> @@ -49637,6 +49637,49 @@ stream-based WebSocket implementation.")
>          ("rust-tokio" ,rust-tokio-0.2)
>          ("rust-tokio-test" ,rust-tokio-test-0.2))))))
>  
> +(define-public rust-tokio-xmpp-3
> +  (package
> +    (name "rust-tokio-xmpp")
> +    (version "3.0.0")
> +    (source
> +      (origin
> +        (method url-fetch)
> +        (uri (crate-uri "tokio-xmpp" version))
> +        (file-name
> +          (string-append name "-" version ".tar.gz"))
> +        (sha256
> +          (base32
> +            "0f8s4gsv9zs6rlkc40jjglcm0prq10ypxszrwvpxhjbygbxrzb2n"))))
> +    (build-system cargo-build-system)
> +    (arguments
> +      `(#:skip-build?
> +        #t
> +        #:cargo-inputs
> +        (("rust-bytes" ,rust-bytes-1)
> +         ("rust-futures" ,rust-futures-0.3)
> +         ("rust-idna" ,rust-idna-0.2)
> +         ("rust-log" ,rust-log-0.4)
> +         ("rust-native-tls" ,rust-native-tls-0.2)
> +         ("rust-rustc-version" ,rust-rustc-version-0.3)
> +         ("rust-sasl" ,rust-sasl-0.5)
> +         ("rust-tokio" ,rust-tokio-1)
> +         ("rust-tokio-native-tls"
> +          ,rust-tokio-native-tls-0.3)
> +         ("rust-tokio-stream" ,rust-tokio-stream-0.1)
> +         ("rust-tokio-util" ,rust-tokio-util-0.6)
> +         ("rust-trust-dns-proto"
> +          ,rust-trust-dns-proto-0.20)
> +         ("rust-trust-dns-resolver"
> +          ,rust-trust-dns-resolver-0.20)
> +         ("rust-xml5ever" ,rust-xml5ever-0.16)
> +         ("rust-xmpp-parsers" ,rust-xmpp-parsers-0.18))))
> +    (home-page "https://gitlab.com/xmpp-rs/xmpp-rs")
> +    (synopsis
> +      "Asynchronous XMPP for Rust with tokio")
> +    (description
> +      "Asynchronous XMPP for Rust with tokio")

Full sentence and missing period.
[signature.asc (application/pgp-signature, inline)]

Information forwarded to guix-patches <at> gnu.org:
bug#49451; Package guix-patches. (Sun, 01 Aug 2021 10:29:02 GMT) Full text and rfc822 format available.

Message #119 received at 49451 <at> debbugs.gnu.org (full text, mbox):

From: Xinglu Chen <public <at> yoctocell.xyz>
To: southerntofu <southerntofu <at> thunix.net>, 49451 <at> debbugs.gnu.org
Subject: Re: [bug#49451] [PATCH 20/20] Run indent-code.el on the packages i
 added
Date: Sun, 01 Aug 2021 12:28:27 +0200
[Message part 1 (text/plain, inline)]
On Sun, Jul 11 2021, southerntofu via Guix-patches via wrote:

> ---
>  gnu/packages/crates-io.scm | 574 ++++++++++++++++++-------------------
>  gnu/packages/messaging.scm |  82 +++---
>  2 files changed, 328 insertions(+), 328 deletions(-)

etc/indent-code.el should be run on each individual package before you
create one or more patches.  For example

  Write definition of package A
  Run etc/indent-code.el on package A
  Create the patch

or if there are multiple packages

  Write definition of package A
  Write definition of package B
  Run etc/indent-code.el on package A and B
  Create patches for package A and B
[signature.asc (application/pgp-signature, inline)]

Information forwarded to guix-patches <at> gnu.org:
bug#49451; Package guix-patches. (Sun, 01 Aug 2021 10:30:02 GMT) Full text and rfc822 format available.

Message #122 received at 49451 <at> debbugs.gnu.org (full text, mbox):

From: Xinglu Chen <public <at> yoctocell.xyz>
To: southerntofu <southerntofu <at> thunix.net>, 49451 <at> debbugs.gnu.org
Subject: Re: [bug#49451] [PATCH 19/20] gnu: Add aparte
Date: Sun, 01 Aug 2021 12:29:18 +0200
[Message part 1 (text/plain, inline)]
On Sun, Jul 11 2021, southerntofu via Guix-patches via wrote:

> ---
>  gnu/packages/messaging.scm | 59 ++++++++++++++++++++++++++++++++++++++
>  1 file changed, 59 insertions(+)
>
> diff --git a/gnu/packages/messaging.scm b/gnu/packages/messaging.scm
> index 22e1c370aa..6bfee2e15e 100644
> --- a/gnu/packages/messaging.scm
> +++ b/gnu/packages/messaging.scm
> @@ -60,6 +60,7 @@
>    #:use-module (gnu packages check)
>    #:use-module (gnu packages compression)
>    #:use-module (gnu packages cpp)
> +  #:use-module (gnu packages crates-io)
>    #:use-module (gnu packages crypto)
>    #:use-module (gnu packages curl)
>    #:use-module (gnu packages cyrus-sasl)
> @@ -123,6 +124,7 @@
>    #:use-module (gnu packages xiph)
>    #:use-module (gnu packages xml)
>    #:use-module (gnu packages xorg)
> +  #:use-module (guix build-system cargo)
>    #:use-module (guix build-system cmake)
>    #:use-module (guix build-system go)
>    #:use-module (guix build-system glib-or-gtk)
> @@ -3016,4 +3018,61 @@ API.  Mattermost is not required.")
>      (home-page "https://github.com/42wim/matterbridge")
>      (license license:asl2.0)))
>  
> +(define-public aparte
> +  (package
> +    (name "aparte")
> +    (version "0.2.0")
> +    (source
> +      (origin
> +        (method url-fetch)
> +        (uri (crate-uri "aparte" version))
> +        (file-name
> +          (string-append name "-" version ".tar.gz"))
> +        (sha256
> +          (base32
> +            "0qzg1052whjhcsz8n3s77kb4zvp7k0na3hikzkf5qa3z4g0hyvrp"))))
> +    (build-system cargo-build-system)
> +    (arguments
> +      `(#:cargo-inputs
> +        (("rust-backtrace" ,rust-backtrace-0.3)
> +         ("rust-bytes" ,rust-bytes-0.5)
> +         ("rust-chrono" ,rust-chrono-0.4)
> +         ("rust-derive-error" ,rust-derive-error-0.0.4)
> +         ("rust-dirs" ,rust-dirs-2)
> +         ("rust-flexi-logger" ,rust-flexi-logger-0.15)
> +         ("rust-futures" ,rust-futures-0.3)
> +         ("rust-fuzzy-matcher" ,rust-fuzzy-matcher-0.3)
> +         ("rust-hsluv" ,rust-hsluv-0.1)
> +         ("rust-linked-hash-map"
> +          ,rust-linked-hash-map-0.5)
> +         ("rust-linked-hash-set"
> +          ,rust-linked-hash-set-0.1)
> +         ("rust-log" ,rust-log-0.4)
> +         ("rust-rand" ,rust-rand-0.8)
> +         ("rust-rpassword" ,rust-rpassword-3)
> +         ("rust-rust-crypto" ,rust-rust-crypto-0.2)
> +         ("rust-serde" ,rust-serde-1)
> +         ("rust-termion" ,rust-termion-1)
> +         ("rust-textwrap" ,rust-textwrap-0.12)
> +         ("rust-tokio" ,rust-tokio-1)
> +         ("rust-tokio-xmpp" ,rust-tokio-xmpp-3)
> +         ("rust-toml" ,rust-toml-0.5)
> +         ("rust-unicode-segmentation"
> +          ,rust-unicode-segmentation-1)
> +         ("rust-uuid" ,rust-uuid-0.7)
> +         ("rust-xmpp-parsers" ,rust-xmpp-parsers-0.18))
> +        #:cargo-development-inputs
> +        (("rust-mockall" ,rust-mockall-0.9))))
> +    (native-inputs
> +     `(("pkg-config" ,pkg-config)))
> +    (inputs
> +     `(("openssl" ,openssl)))
> +    (home-page
> +      "https://github.com/paulfariello/aparte")
> +    (synopsis
> +      "Simple XMPP console client written in Rust and inspired by Profanity")
> +    (description
> +      "Simple XMPP console client written in Rust and inspired by Profanity")

Full sentence, and missing period.
[signature.asc (application/pgp-signature, inline)]

Information forwarded to guix-patches <at> gnu.org:
bug#49451; Package guix-patches. (Sun, 01 Aug 2021 10:43:02 GMT) Full text and rfc822 format available.

Message #125 received at 49451 <at> debbugs.gnu.org (full text, mbox):

From: Xinglu Chen <public <at> yoctocell.xyz>
To: southerntofu <at> thunix.net, 49451 <at> debbugs.gnu.org
Subject: Re: [bug#49451] Adding package aparte (rust XMPP TUI client)
Date: Sun, 01 Aug 2021 12:42:40 +0200
[Message part 1 (text/plain, inline)]
On Tue, Jul 06 2021, southerntofu--- via Guix-patches via wrote:

> Hello,
>
> In this threads I will submit patches to include package aparte, from
> 0.2.0 release on Github. There's a few missing crates that will be
> added to gnu/packages/crates-io.scm, and the aparte package is added
> to gnu/packages/messaging.scm as suggested in the #guix IRC channel.
>
> This is my first package for guix so don't hesitate to tell me if i'm
> doing something wrong. Also, i noticed some packages in crates-io.scm
> are not ordered alphabetically. I tried not to mess the order even
> more but did not reorder packages which were already misordered.

I just reviewed the series; I don’t know much about Rust in Guix, so
maybe I have missed some Rust-specific things.  A tip is to run ‘guix
lint’ on each package; this will catch some of the common mistakes
people make. :)

I haven’t been able to build the ‘aparte’ package because I am having
trouble applying patch [07/20].  Could you check if you can apply the
patches on top of the ‘master’ branch?
[signature.asc (application/pgp-signature, inline)]

Information forwarded to guix-patches <at> gnu.org:
bug#49451; Package guix-patches. (Tue, 31 Aug 2021 15:32:02 GMT) Full text and rfc822 format available.

Message #128 received at 49451 <at> debbugs.gnu.org (full text, mbox):

From: "jgart" <jgart <at> dismail.de>
To: 49451 <at> debbugs.gnu.org
Subject: aparte on GuixRUS
Date: Tue, 31 Aug 2021 15:31:11 +0000
Hi,

I just wanted to mention that aparte is available as a pre-release package on GuixRUS channel until 49451 gets resolved:

https://git.sr.ht/~whereiseveryone/guixrus/commit/33971b21d69e3eb903c05cbfe42412e7f0a1f899

aparte currently builds and runs successfully on GuixRUS.

We'll continue to fix Xinglu's suggestions on GuixRUS until they are all ready and then we'll send a patch here with the fixes for further review.

all best,

 _________________________________________ 
/ 3B1D 7F19 E36B B60C 0F5B 2CA9 A52A A2B4 \
\ 77B6 DD35                               /
 ----------------------------------------- 
        \   ^__^
         \  (oo)\_______
            (__)\       )\/\
                ||----w |
                ||     ||




Added tag(s) patch. Request was from Bruno Victal <mirai <at> makinata.eu> to control <at> debbugs.gnu.org. (Thu, 30 Mar 2023 23:01:02 GMT) Full text and rfc822 format available.

This bug report was last modified 2 years and 74 days ago.

Previous Next


GNU bug tracking system
Copyright (C) 1999 Darren O. Benham, 1997,2003 nCipher Corporation Ltd, 1994-97 Ian Jackson.