all messages for Guix-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
From: Herman Rimm via Guix-patches via <guix-patches@gnu.org>
To: 70606@debbugs.gnu.org
Cc: Efraim Flashner <efraim@flashner.co.il>
Subject: [bug#70606] [PATCH rust-team 096/101] gnu: Place rust-ascii-utils-0.9 in alphabetical order.
Date: Sat, 27 Apr 2024 14:35:58 +0200	[thread overview]
Message-ID: <fa297ca9fa3bfa9211fa1268451a09bcba3d4943.1714220247.git.herman@rimm.ee> (raw)
In-Reply-To: <b53255f59c519aa27ff2addcc9ae778352fc5647.1714220242.git.herman@rimm.ee>

* gnu/packages/crates-io.scm (rust-ascii-utils-0.9, rust-ascii-0.8,
rust-ascii-0.9, rust-ascii-1, rust-as-slice-0.1, rust-as-slice-0.2,
rust-as-raw-xcb-connection-1): Move variables.

Change-Id: I7ad46b237f4fa65fe18926381a738fd8eb9a9e02
---
 gnu/packages/crates-io.scm | 288 ++++++++++++++++++-------------------
 1 file changed, 144 insertions(+), 144 deletions(-)

diff --git a/gnu/packages/crates-io.scm b/gnu/packages/crates-io.scm
index f30858efcb..a44221572f 100644
--- a/gnu/packages/crates-io.scm
+++ b/gnu/packages/crates-io.scm
@@ -3919,6 +3919,64 @@ (define-public rust-as-derive-utils-0.8
         ("rust-serde-derive" ,rust-serde-derive-1)
         ("rust-syn" ,rust-syn-1))))))
 
+(define-public rust-as-raw-xcb-connection-1
+  (package
+    (name "rust-as-raw-xcb-connection")
+    (version "1.0.0")
+    (source
+     (origin
+       (method url-fetch)
+       (uri (crate-uri "as-raw-xcb-connection" version))
+       (file-name (string-append name "-" version ".tar.gz"))
+       (sha256
+        (base32 "1am99fbsp5f5vnbvr0qnjma36q49c9zvdbn0czwwvian18mk2prd"))))
+    (build-system cargo-build-system)
+    (home-page "https://github.com/psychon/as-raw-xcb-connection")
+    (synopsis "Trait to facilitate interoperatibility with libxcb C API")
+    (description "This package provides trait to facilitate interoperatibility
+with @code{libxcb} C API.")
+    (license (list license:expat license:asl2.0))))
+
+(define-public rust-as-slice-0.2
+  (package
+    (name "rust-as-slice")
+    (version "0.2.1")
+    (source (origin
+              (method url-fetch)
+              (uri (crate-uri "as-slice" version))
+              (file-name (string-append name "-" version ".tar.gz"))
+              (sha256
+               (base32
+                "05j52y1ws8kir5zjxnl48ann0if79sb56p9nm76hvma01r7nnssi"))))
+    (build-system cargo-build-system)
+    (arguments
+     `(#:cargo-inputs (("rust-stable-deref-trait" ,rust-stable-deref-trait-1))))
+    (home-page "https://github.com/japaric/as-slice")
+    (synopsis "AsSlice and AsMutSlice traits")
+    (description "This package provides @code{AsSlice} and @code{AsMutSlice}
+traits.")
+    (license (list license:expat license:asl2.0))))
+
+(define-public rust-as-slice-0.1
+  (package
+    (inherit rust-as-slice-0.2)
+    (name "rust-as-slice")
+    (version "0.1.5")
+    (source
+     (origin
+       (method url-fetch)
+       (uri (crate-uri "as-slice" version))
+       (file-name (string-append name "-" version ".tar.gz"))
+       (sha256
+        (base32
+         "1q3a9494ikaq38zjg5px5gwwrbdgnyj23b505224njlmwd4knh25"))))
+    (arguments
+     `(#:cargo-inputs
+       (("rust-generic-array-0.14" ,rust-generic-array-0.14)
+        ("rust-generic-array-0.13" ,rust-generic-array-0.13)
+        ("rust-generic-array-0.12" ,rust-generic-array-0.12)
+        ("rust-stable-deref-trait" ,rust-stable-deref-trait-1))))))
+
 (define-public rust-as-variant-1
   (package
     (name "rust-as-variant")
@@ -3938,6 +3996,92 @@ (define-public rust-as-variant-1
 variants to `Option`s.")
     (license license:mpl2.0)))
 
+(define-public rust-ascii-1
+  (package
+    (name "rust-ascii")
+    (version "1.1.0")
+    (source
+      (origin
+        (method url-fetch)
+        (uri (crate-uri "ascii" version))
+        (file-name
+         (string-append name "-" version ".tar.gz"))
+        (sha256
+         (base32 "05nyyp39x4wzc1959kv7ckwqpkdzjd9dw4slzyjh73qbhjcfqayr"))))
+    (build-system cargo-build-system)
+    (arguments
+     `(#:skip-build? #t
+       #:cargo-inputs
+       (("rust-serde" ,rust-serde-1)
+        ("rust-serde-test" ,rust-serde-test-1))))
+    (home-page "https://github.com/tomprogrammer/rust-ascii")
+    (synopsis "ASCII-only equivalents to `char`, `str` and `String`")
+    (description
+     "A rust library that provides ASCII-only string and character types,
+equivalent to the @code{char}, @code{str} and @code{String} types in the
+standard library.")
+    (license (list license:asl2.0 license:expat))))
+
+(define-public rust-ascii-0.9
+  (package
+    (inherit rust-ascii-1)
+    (name "rust-ascii")
+    (version "0.9.3")
+    (source
+     (origin
+       (method url-fetch)
+       (uri (crate-uri "ascii" version))
+       (file-name
+        (string-append name "-" version ".tar.gz"))
+       (sha256
+        (base32
+         "0km3zzkhrr22drf9p1zcblqirlxkdc7zra25acpi0h8qax5c1cga"))))
+    (arguments
+     `(#:tests? #f      ; Not all tests build.
+       #:cargo-inputs
+       (("rust-quickcheck" ,rust-quickcheck-0.6)
+        ("rust-serde" ,rust-serde-1)
+        ("rust-serde-test" ,rust-serde-test-1))))))
+
+(define-public rust-ascii-0.8
+  (package
+    (inherit rust-ascii-1)
+    (name "rust-ascii")
+    (version "0.8.7")
+    (source
+     (origin
+       (method url-fetch)
+       (uri (crate-uri "ascii" version))
+       (file-name (string-append name "-" version ".tar.gz"))
+       (sha256
+        (base32 "051gh2bgjq90s0f0i0hd9p4z4fpg5k82b570d1223jj7rhd8kglp"))))
+    (build-system cargo-build-system)
+    (arguments
+     `(#:cargo-test-flags
+       '("--release" "--"
+         "--skip=src/ascii_char.rs - ascii_char::AsciiChar::from (line 296)"
+         "--skip=src/ascii_string.rs - ascii_string::AsciiString::pop (line 259)")
+       #:cargo-inputs
+       (("rust-quickcheck" ,rust-quickcheck-0.4))))))
+
+(define-public rust-ascii-utils-0.9
+  (package
+    (name "rust-ascii-utils")
+    (version "0.9.3")
+    (source
+     (origin
+       (method url-fetch)
+       (uri (crate-uri "ascii_utils" version))
+       (file-name (string-append name "-" version ".tar.gz"))
+       (sha256
+        (base32 "0jpp550pwi38msflpy7lnqm2r153kn9k19bss6k9ak9yacq8z4vi"))))
+    (build-system cargo-build-system)
+    (home-page "https://github.com/tredoe/ascii_utils")
+    (synopsis "Utilities to handle ASCII characters")
+    (description
+     "This library provides utilities to handle ASCII characters.")
+    (license license:mpl2.0)))
+
 (define-public rust-asio-sys-0.2
   (package
     (name "rust-asio-sys")
@@ -4134,150 +4278,6 @@ (define-public rust-askama-0.11
              ("rust-askama-escape" ,rust-askama-escape-0.10)
              ("rust-askama-shared" ,rust-askama-shared-0.12))))))
 
-(define-public rust-as-raw-xcb-connection-1
-  (package
-    (name "rust-as-raw-xcb-connection")
-    (version "1.0.0")
-    (source
-     (origin
-       (method url-fetch)
-       (uri (crate-uri "as-raw-xcb-connection" version))
-       (file-name (string-append name "-" version ".tar.gz"))
-       (sha256
-        (base32 "1am99fbsp5f5vnbvr0qnjma36q49c9zvdbn0czwwvian18mk2prd"))))
-    (build-system cargo-build-system)
-    (home-page "https://github.com/psychon/as-raw-xcb-connection")
-    (synopsis "Trait to facilitate interoperatibility with libxcb C API")
-    (description "This package provides trait to facilitate interoperatibility
-with @code{libxcb} C API.")
-    (license (list license:expat license:asl2.0))))
-
-(define-public rust-as-slice-0.2
-  (package
-    (name "rust-as-slice")
-    (version "0.2.1")
-    (source (origin
-              (method url-fetch)
-              (uri (crate-uri "as-slice" version))
-              (file-name (string-append name "-" version ".tar.gz"))
-              (sha256
-               (base32
-                "05j52y1ws8kir5zjxnl48ann0if79sb56p9nm76hvma01r7nnssi"))))
-    (build-system cargo-build-system)
-    (arguments
-     `(#:cargo-inputs (("rust-stable-deref-trait" ,rust-stable-deref-trait-1))))
-    (home-page "https://github.com/japaric/as-slice")
-    (synopsis "AsSlice and AsMutSlice traits")
-    (description "This package provides @code{AsSlice} and @code{AsMutSlice}
-traits.")
-    (license (list license:expat license:asl2.0))))
-
-(define-public rust-as-slice-0.1
-  (package
-    (inherit rust-as-slice-0.2)
-    (name "rust-as-slice")
-    (version "0.1.5")
-    (source
-     (origin
-       (method url-fetch)
-       (uri (crate-uri "as-slice" version))
-       (file-name (string-append name "-" version ".tar.gz"))
-       (sha256
-        (base32
-         "1q3a9494ikaq38zjg5px5gwwrbdgnyj23b505224njlmwd4knh25"))))
-    (arguments
-     `(#:cargo-inputs
-       (("rust-generic-array-0.14" ,rust-generic-array-0.14)
-        ("rust-generic-array-0.13" ,rust-generic-array-0.13)
-        ("rust-generic-array-0.12" ,rust-generic-array-0.12)
-        ("rust-stable-deref-trait" ,rust-stable-deref-trait-1))))))
-
-(define-public rust-ascii-1
-  (package
-    (name "rust-ascii")
-    (version "1.1.0")
-    (source
-      (origin
-        (method url-fetch)
-        (uri (crate-uri "ascii" version))
-        (file-name
-         (string-append name "-" version ".tar.gz"))
-        (sha256
-         (base32 "05nyyp39x4wzc1959kv7ckwqpkdzjd9dw4slzyjh73qbhjcfqayr"))))
-    (build-system cargo-build-system)
-    (arguments
-     `(#:skip-build? #t
-       #:cargo-inputs
-       (("rust-serde" ,rust-serde-1)
-        ("rust-serde-test" ,rust-serde-test-1))))
-    (home-page "https://github.com/tomprogrammer/rust-ascii")
-    (synopsis "ASCII-only equivalents to `char`, `str` and `String`")
-    (description
-     "A rust library that provides ASCII-only string and character types,
-equivalent to the @code{char}, @code{str} and @code{String} types in the
-standard library.")
-    (license (list license:asl2.0 license:expat))))
-
-(define-public rust-ascii-0.9
-  (package
-    (inherit rust-ascii-1)
-    (name "rust-ascii")
-    (version "0.9.3")
-    (source
-     (origin
-       (method url-fetch)
-       (uri (crate-uri "ascii" version))
-       (file-name
-        (string-append name "-" version ".tar.gz"))
-       (sha256
-        (base32
-         "0km3zzkhrr22drf9p1zcblqirlxkdc7zra25acpi0h8qax5c1cga"))))
-    (arguments
-     `(#:tests? #f      ; Not all tests build.
-       #:cargo-inputs
-       (("rust-quickcheck" ,rust-quickcheck-0.6)
-        ("rust-serde" ,rust-serde-1)
-        ("rust-serde-test" ,rust-serde-test-1))))))
-
-(define-public rust-ascii-0.8
-  (package
-    (inherit rust-ascii-1)
-    (name "rust-ascii")
-    (version "0.8.7")
-    (source
-     (origin
-       (method url-fetch)
-       (uri (crate-uri "ascii" version))
-       (file-name (string-append name "-" version ".tar.gz"))
-       (sha256
-        (base32 "051gh2bgjq90s0f0i0hd9p4z4fpg5k82b570d1223jj7rhd8kglp"))))
-    (build-system cargo-build-system)
-    (arguments
-     `(#:cargo-test-flags
-       '("--release" "--"
-         "--skip=src/ascii_char.rs - ascii_char::AsciiChar::from (line 296)"
-         "--skip=src/ascii_string.rs - ascii_string::AsciiString::pop (line 259)")
-       #:cargo-inputs
-       (("rust-quickcheck" ,rust-quickcheck-0.4))))))
-
-(define-public rust-ascii-utils-0.9
-  (package
-    (name "rust-ascii-utils")
-    (version "0.9.3")
-    (source
-     (origin
-       (method url-fetch)
-       (uri (crate-uri "ascii_utils" version))
-       (file-name (string-append name "-" version ".tar.gz"))
-       (sha256
-        (base32 "0jpp550pwi38msflpy7lnqm2r153kn9k19bss6k9ak9yacq8z4vi"))))
-    (build-system cargo-build-system)
-    (home-page "https://github.com/tredoe/ascii_utils")
-    (synopsis "Utilities to handle ASCII characters")
-    (description
-     "This library provides utilities to handle ASCII characters.")
-    (license license:mpl2.0)))
-
 (define-public rust-assert-0.7
   (package
     (name "rust-assert")
-- 
2.41.0





  parent reply	other threads:[~2024-04-27 13:18 UTC|newest]

Thread overview: 101+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2024-04-27 12:23 [bug#70606] [PATCH rust-team 001/101] gnu: Place rust-xxhash-rust-0.8 in alphabetical order Herman Rimm via Guix-patches via
2024-04-27 12:34 ` [bug#70606] [PATCH rust-team 002/101] gnu: Place rust-wl-clipboard-rs-0.8 " Herman Rimm via Guix-patches via
2024-04-27 12:34 ` [bug#70606] [PATCH rust-team 003/101] gnu: Place rust-valuable-derive-0.1 " Herman Rimm via Guix-patches via
2024-04-27 12:34 ` [bug#70606] [PATCH rust-team 004/101] gnu: Place rust-unidecode-0.3 " Herman Rimm via Guix-patches via
2024-04-27 12:34 ` [bug#70606] [PATCH rust-team 005/101] gnu: Place rust-tree-magic-0.2 " Herman Rimm via Guix-patches via
2024-04-27 12:34 ` [bug#70606] [PATCH rust-team 006/101] gnu: Place rust-tokio-tcp-0.1 " Herman Rimm via Guix-patches via
2024-04-27 12:34 ` [bug#70606] [PATCH rust-team 007/101] gnu: Place rust-timeago-0.4 " Herman Rimm via Guix-patches via
2024-04-27 12:34 ` [bug#70606] [PATCH rust-team 008/101] gnu: Place rust-tikv-jemalloc-ctl-0.4 " Herman Rimm via Guix-patches via
2024-04-27 12:34 ` [bug#70606] [PATCH rust-team 009/101] gnu: Place rust-tectonic-engine-xdvipdfmx-0.4 " Herman Rimm via Guix-patches via
2024-04-27 12:34 ` [bug#70606] [PATCH rust-team 010/101] gnu: Place rust-synchronoise-1 " Herman Rimm via Guix-patches via
2024-04-27 12:34 ` [bug#70606] [PATCH rust-team 011/101] gnu: Place rust-symphonia-metadata-0.4 " Herman Rimm via Guix-patches via
2024-04-27 12:34 ` [bug#70606] [PATCH rust-team 012/101] gnu: Place rust-sxd-xpath-0.4 " Herman Rimm via Guix-patches via
2024-04-27 12:34 ` [bug#70606] [PATCH rust-team 013/101] gnu: Place rust-spirv-types-0.4 " Herman Rimm via Guix-patches via
2024-04-27 12:34 ` [bug#70606] [PATCH rust-team 014/101] gnu: Place rust-snapbox-macros-0.3 " Herman Rimm via Guix-patches via
2024-04-27 12:34 ` [bug#70606] [PATCH rust-team 015/101] gnu: Place rust-snafu-0.8 " Herman Rimm via Guix-patches via
2024-04-27 12:34 ` [bug#70606] [PATCH rust-team 016/101] gnu: Place rust-paw-structopt-1 " Herman Rimm via Guix-patches via
2024-04-27 12:34 ` [bug#70606] [PATCH rust-team 017/101] gnu: Place rust-simplerand-1 " Herman Rimm via Guix-patches via
2024-04-27 12:34 ` [bug#70606] [PATCH rust-team 018/101] gnu: Place rust-sensors-0.2 " Herman Rimm via Guix-patches via
2024-04-27 12:34 ` [bug#70606] [PATCH rust-team 019/101] gnu: Place rust-serial-test-0.4 " Herman Rimm via Guix-patches via
2024-04-27 12:34 ` [bug#70606] [PATCH rust-team 020/101] gnu: Place rust-serde-wasm-bindgen-0.3 " Herman Rimm via Guix-patches via
2024-04-27 12:34 ` [bug#70606] [PATCH rust-team 021/101] gnu: Place rust-serdeconv-0.4 " Herman Rimm via Guix-patches via
2024-04-27 12:34 ` [bug#70606] [PATCH rust-team 022/101] gnu: Place rust-salsa-macros-0.17 " Herman Rimm via Guix-patches via
2024-04-27 12:34 ` [bug#70606] [PATCH rust-team 023/101] gnu: Place rust-rkyv-derive-0.7 " Herman Rimm via Guix-patches via
2024-04-27 12:34 ` [bug#70606] [PATCH rust-team 024/101] gnu: Place rust-hawktracer-proc-macro-0.4 " Herman Rimm via Guix-patches via
2024-04-27 12:34 ` [bug#70606] [PATCH rust-team 025/101] gnu: Place rust-etherparse-0.9 " Herman Rimm via Guix-patches via
2024-04-27 12:34 ` [bug#70606] [PATCH rust-team 026/101] gnu: Place rust-rust-htslib-0.38 " Herman Rimm via Guix-patches via
2024-04-27 12:34 ` [bug#70606] [PATCH rust-team 027/101] gnu: Place rust-rust-rawkey-0.1 " Herman Rimm via Guix-patches via
2024-04-27 12:34 ` [bug#70606] [PATCH rust-team 028/101] gnu: Place rust-pyo3-* packages " Herman Rimm via Guix-patches via
2024-04-27 12:34 ` [bug#70606] [PATCH rust-team 029/101] gnu: Place rust-pulldown-cmark-to-cmark-7 " Herman Rimm via Guix-patches via
2024-04-27 12:34 ` [bug#70606] [PATCH rust-team 030/101] gnu: Place rust-publicsuffix-2 " Herman Rimm via Guix-patches via
2024-04-27 12:34 ` [bug#70606] [PATCH rust-team 031/101] gnu: Place rust-pretty-hex-0.3 " Herman Rimm via Guix-patches via
2024-04-27 12:34 ` [bug#70606] [PATCH rust-team 032/101] gnu: Place rust-ping-0.4 " Herman Rimm via Guix-patches via
2024-04-27 12:34 ` [bug#70606] [PATCH rust-team 033/101] gnu: Place rust-perf-event-open-sys-1 " Herman Rimm via Guix-patches via
2024-04-27 12:34 ` [bug#70606] [PATCH rust-team 034/101] gnu: Place rust-parasail-sys-0.2 " Herman Rimm via Guix-patches via
2024-04-27 12:34 ` [bug#70606] [PATCH rust-team 035/101] gnu: Place rust-owo-colors-4 " Herman Rimm via Guix-patches via
2024-04-27 12:34 ` [bug#70606] [PATCH rust-team 036/101] gnu: Place rust-ouroborus-macro-0.17 " Herman Rimm via Guix-patches via
2024-04-27 12:34 ` [bug#70606] [PATCH rust-team 037/101] gnu: Place rust-openssl-macros-0.1 " Herman Rimm via Guix-patches via
2024-04-27 12:35 ` [bug#70606] [PATCH rust-team 038/101] gnu: Place rust-once-cell-1 " Herman Rimm via Guix-patches via
2024-04-27 12:35 ` [bug#70606] [PATCH rust-team 039/101] gnu: Place rust-ntest-proc-macro-helper-0.8 " Herman Rimm via Guix-patches via
2024-04-27 12:35 ` [bug#70606] [PATCH rust-team 040/101] gnu: Place rust-notify-debouncer-mini-0.4 " Herman Rimm via Guix-patches via
2024-04-27 12:35 ` [bug#70606] [PATCH rust-team 041/101] gnu: Place rust-normalize-path-0.2 " Herman Rimm via Guix-patches via
2024-04-27 12:35 ` [bug#70606] [PATCH rust-team 042/101] gnu: Place rust-nom8-0.2 " Herman Rimm via Guix-patches via
2024-04-27 12:35 ` [bug#70606] [PATCH rust-team 043/101] gnu: Place rust-nispor-1 " Herman Rimm via Guix-patches via
2024-04-27 12:35 ` [bug#70606] [PATCH rust-team 044/101] gnu: Place rust-nanorand-0.7 " Herman Rimm via Guix-patches via
2024-04-27 12:35 ` [bug#70606] [PATCH rust-team 045/101] gnu: Place rust-muldiv-1 " Herman Rimm via Guix-patches via
2024-04-27 12:35 ` [bug#70606] [PATCH rust-team 046/101] gnu: Place rust-metrics-macro-0.2 " Herman Rimm via Guix-patches via
2024-04-27 12:35 ` [bug#70606] [PATCH rust-team 047/101] gnu: Place rust-merge-derive-0.1 " Herman Rimm via Guix-patches via
2024-04-27 12:35 ` [bug#70606] [PATCH rust-team 048/101] gnu: Place rust-matrixcompare-core-0.1 " Herman Rimm via Guix-patches via
2024-04-27 12:35 ` [bug#70606] [PATCH rust-team 049/101] gnu: Place rust-matchit-0.7 " Herman Rimm via Guix-patches via
2024-04-27 12:35 ` [bug#70606] [PATCH rust-team 050/101] gnu: Place rust-markup-proc-macro-0.13 " Herman Rimm via Guix-patches via
2024-04-27 12:35 ` [bug#70606] [PATCH rust-team 051/101] gnu: Place rust-magma-0.8 " Herman Rimm via Guix-patches via
2024-04-27 12:35 ` [bug#70606] [PATCH rust-team 052/101] gnu: Place rust-local-ip-address-0.4 " Herman Rimm via Guix-patches via
2024-04-27 12:35 ` [bug#70606] [PATCH rust-team 053/101] gnu: Place rust-libtest-mimic-0.3 " Herman Rimm via Guix-patches via
2024-04-27 12:35 ` [bug#70606] [PATCH rust-team 054/101] gnu: Place rust-libz-sys-1 " Herman Rimm via Guix-patches via
2024-04-27 12:35 ` [bug#70606] [PATCH rust-team 055/101] gnu: Place rust-libmimalloc-sys-0.1 " Herman Rimm via Guix-patches via
2024-04-27 12:35 ` [bug#70606] [PATCH rust-team 056/101] gnu: Place rust-lexical-6 " Herman Rimm via Guix-patches via
2024-04-27 12:35 ` [bug#70606] [PATCH rust-team 057/101] gnu: Place rust-language-tags-0.3 " Herman Rimm via Guix-patches via
2024-04-27 12:35 ` [bug#70606] [PATCH rust-team 058/101] gnu: Place rust-k9-0.11 " Herman Rimm via Guix-patches via
2024-04-27 12:35 ` [bug#70606] [PATCH rust-team 059/101] gnu: Place rust-kqueue-sys-1 " Herman Rimm via Guix-patches via
2024-04-27 12:35 ` [bug#70606] [PATCH rust-team 060/101] gnu: Place rust-juniper-codegen-0.14 " Herman Rimm via Guix-patches via
2024-04-27 12:35 ` [bug#70606] [PATCH rust-team 061/101] gnu: Place rust-jsonpath-lib-0.3 " Herman Rimm via Guix-patches via
2024-04-27 12:35 ` [bug#70606] [PATCH rust-team 062/101] gnu: Place rust-iri-string-0.7 " Herman Rimm via Guix-patches via
2024-04-27 12:35 ` [bug#70606] [PATCH rust-team 063/101] gnu: Place rust-inout-0.1 " Herman Rimm via Guix-patches via
2024-04-27 12:35 ` [bug#70606] [PATCH rust-team 064/101] gnu: Place rust-iana-time-zone-haiku-0.1 " Herman Rimm via Guix-patches via
2024-04-27 12:35 ` [bug#70606] [PATCH rust-team 065/101] gnu: Place rust-hyphenation-commons-0.8 " Herman Rimm via Guix-patches via
2024-04-27 12:35 ` [bug#70606] [PATCH rust-team 066/101] gnu: Place rust-humantime-serde-1 " Herman Rimm via Guix-patches via
2024-04-27 12:35 ` [bug#70606] [PATCH rust-team 067/101] gnu: Place rust-kuchiki-0.8 " Herman Rimm via Guix-patches via
2024-04-27 12:35 ` [bug#70606] [PATCH rust-team 068/101] gnu: Place rust-html-escape-0.2 " Herman Rimm via Guix-patches via
2024-04-27 12:35 ` [bug#70606] [PATCH rust-team 069/101] gnu: Place rust-home-0.5 " Herman Rimm via Guix-patches via
2024-04-27 12:35 ` [bug#70606] [PATCH rust-team 070/101] gnu: Place rust-fsio-0.4 " Herman Rimm via Guix-patches via
2024-04-27 12:35 ` [bug#70606] [PATCH rust-team 071/101] gnu: Place rust-fs2-0.4 " Herman Rimm via Guix-patches via
2024-04-27 12:35 ` [bug#70606] [PATCH rust-team 072/101] gnu: Place rust-field-offset-0.3 " Herman Rimm via Guix-patches via
2024-04-27 12:35 ` [bug#70606] [PATCH rust-team 073/101] gnu: Place rust-fakeit-1 " Herman Rimm via Guix-patches via
2024-04-27 12:35 ` [bug#70606] [PATCH rust-team 074/101] gnu: Place rust-env-filter-0.1 " Herman Rimm via Guix-patches via
2024-04-27 12:35 ` [bug#70606] [PATCH rust-team 075/101] gnu: Place rust-enum-map-derive-0.4 " Herman Rimm via Guix-patches via
2024-04-27 12:35 ` [bug#70606] [PATCH rust-team 076/101] gnu: Place rust-dyn-clone-1 " Herman Rimm via Guix-patches via
2024-04-27 12:35 ` [bug#70606] [PATCH rust-team 077/101] gnu: Place rust-downcast-rs-1 " Herman Rimm via Guix-patches via
2024-04-27 12:35 ` [bug#70606] [PATCH rust-team 078/101] gnu: Place rust-dhcp4r-0.2 " Herman Rimm via Guix-patches via
2024-04-27 12:35 ` [bug#70606] [PATCH rust-team 079/101] gnu: Place rust-csv-index-0.1 " Herman Rimm via Guix-patches via
2024-04-27 12:35 ` [bug#70606] [PATCH rust-team 080/101] gnu: Place rust-crc-catalog-2 " Herman Rimm via Guix-patches via
2024-04-27 12:35 ` [bug#70606] [PATCH rust-team 081/101] gnu: Place rust-cov-mark-2 " Herman Rimm via Guix-patches via
2024-04-27 12:35 ` [bug#70606] [PATCH rust-team 082/101] gnu: Place rust-core-arch-0.1 " Herman Rimm via Guix-patches via
2024-04-27 12:35 ` [bug#70606] [PATCH rust-team 083/101] gnu: Place rust-const-panic-proc-macros-0.2 " Herman Rimm via Guix-patches via
2024-04-27 12:35 ` [bug#70606] [PATCH rust-team 084/101] gnu: Place rust-claxon-0.4 " Herman Rimm via Guix-patches via
2024-04-27 12:35 ` [bug#70606] [PATCH rust-team 085/101] gnu: Place rust-clap-cargo-0.12 " Herman Rimm via Guix-patches via
2024-04-27 12:35 ` [bug#70606] [PATCH rust-team 086/101] gnu: Place rust-ci-info-0.3 " Herman Rimm via Guix-patches via
2024-04-27 12:35 ` [bug#70606] [PATCH rust-team 087/101] gnu: Place rust-chan-0.1 " Herman Rimm via Guix-patches via
2024-04-27 12:35 ` [bug#70606] [PATCH rust-team 088/101] gnu: Place rust-cargo-lock-7 " Herman Rimm via Guix-patches via
2024-04-27 12:35 ` [bug#70606] [PATCH rust-team 089/101] gnu: Place rust-bytesize-1 " Herman Rimm via Guix-patches via
2024-04-27 12:35 ` [bug#70606] [PATCH rust-team 090/101] gnu: Place rust-buffer-redux-1 " Herman Rimm via Guix-patches via
2024-04-27 12:35 ` [bug#70606] [PATCH rust-team 091/101] gnu: Place rust-bio-types-0.12 " Herman Rimm via Guix-patches via
2024-04-27 12:35 ` [bug#70606] [PATCH rust-team 092/101] gnu: Place rust-base-x-0.2 " Herman Rimm via Guix-patches via
2024-04-27 12:35 ` [bug#70606] [PATCH rust-team 093/101] gnu: Place rust-av-metrics-0.9 " Herman Rimm via Guix-patches via
2024-04-27 12:35 ` [bug#70606] [PATCH rust-team 094/101] gnu: Place rust-autocompress-0.2 " Herman Rimm via Guix-patches via
2024-04-27 12:35 ` [bug#70606] [PATCH rust-team 095/101] gnu: Place rust-atomic-write-file-0.1 " Herman Rimm via Guix-patches via
2024-04-27 12:35 ` Herman Rimm via Guix-patches via [this message]
2024-04-27 12:35 ` [bug#70606] [PATCH rust-team 097/101] gnu: Place rust-askama-0.11 " Herman Rimm via Guix-patches via
2024-04-27 12:36 ` [bug#70606] [PATCH rust-team 098/101] gnu: Place rust-arr-macro-impl-0.1 " Herman Rimm via Guix-patches via
2024-04-27 12:36 ` [bug#70606] [PATCH rust-team 099/101] gnu: Place rust-argh-shared-0.1 " Herman Rimm via Guix-patches via
2024-04-27 12:36 ` [bug#70606] [PATCH rust-team 100/101] gnu: Place rust-aliasable-deref-trait-0.2 " Herman Rimm via Guix-patches via
2024-04-27 12:36 ` [bug#70606] [PATCH rust-team 101/101] gnu: Place rust-addchain-0.2 " Herman Rimm via Guix-patches via

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=fa297ca9fa3bfa9211fa1268451a09bcba3d4943.1714220247.git.herman@rimm.ee \
    --to=guix-patches@gnu.org \
    --cc=70606@debbugs.gnu.org \
    --cc=efraim@flashner.co.il \
    --cc=herman@rimm.ee \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
Code repositories for project(s) associated with this external index

	https://git.savannah.gnu.org/cgit/guix.git

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.