unofficial mirror of guix-patches@gnu.org 
 help / color / mirror / code / Atom feed
From: Nicolas Goaziou via Guix-patches via <guix-patches@gnu.org>
To: 71110@debbugs.gnu.org
Cc: Nicolas Goaziou <mail@nicolasgoaziou.fr>,
	Efraim Flashner <efraim@flashner.co.il>
Subject: [bug#71110] [PATCH rust-team 31/37] gnu: Add rust-juniper-codegen-0.15, rust-juniper-0.15.
Date: Wed, 22 May 2024 11:45:49 +0200	[thread overview]
Message-ID: <9c515d1757bd2041c6496ea158b962f2bebc86f8.1716370758.git.mail@nicolasgoaziou.fr> (raw)
In-Reply-To: <cover.1716370756.git.mail@nicolasgoaziou.fr>

* gnu/packages/crates-io.scm (rust-juniper-codegen-0.15): New variable.
(rust-juniper-0.15): New variable.
(rust-juniper-codegen-0.14, rust-juniper-0.14): Inherit from above.

Change-Id: I56c57c66e00ef73f8b22a192bf3e09edeff92044
---
 gnu/packages/crates-io.scm | 90 ++++++++++++++++++++++++++++++++------
 1 file changed, 76 insertions(+), 14 deletions(-)

diff --git a/gnu/packages/crates-io.scm b/gnu/packages/crates-io.scm
index dfcd6299d3..85254e0547 100644
--- a/gnu/packages/crates-io.scm
+++ b/gnu/packages/crates-io.scm
@@ -36185,26 +36185,30 @@ (define-public rust-juliex-0.3
 concurrency primitives and multiple allocations.")
     (license (list license:expat license:asl2.0))))
 
-(define-public rust-juniper-codegen-0.14
+(define-public rust-juniper-codegen-0.15
   (package
     (name "rust-juniper-codegen")
-    (version "0.14.2")
+    (version "0.15.9")
     (source
      (origin
        (method url-fetch)
        (uri (crate-uri "juniper_codegen" version))
        (file-name (string-append name "-" version ".tar.gz"))
        (sha256
-        (base32 "06ym8568k9p75kvnfc4ywqbkzaa4ib6gngx9vpbsjwg9v0sg42nl"))))
+        (base32 "1nvigsc1yrfv09wx1yv830dd60ay556haz87p80h7m8s0rqpdsdf"))))
     (build-system cargo-build-system)
     (arguments
-     `(#:tests? #false                  ;FIXME: fail due to unresolved import
+     ;; XXX: Tests fail with "error[E0599]: no variant or associated item
+     ;; named `__TestExhaustive` found for enum `syn::Type` in the current
+     ;; scope".
+     `(#:tests? #false
        #:cargo-inputs
-       (("rust-proc-macro2" ,rust-proc-macro2-1)
+       (("rust-proc-macro-error" ,rust-proc-macro-error-1)
+        ("rust-proc-macro2" ,rust-proc-macro2-1)
         ("rust-quote" ,rust-quote-1)
         ("rust-syn" ,rust-syn-1))
        #:cargo-development-inputs
-       (("rust-juniper" ,rust-juniper-0.14))))
+       (("rust-juniper" ,rust-juniper-0.15))))
     (home-page "https://github.com/graphql-rust/juniper")
     (synopsis "Internal custom derive trait for Juniper GraphQL")
     (description
@@ -36212,32 +36216,63 @@ (define-public rust-juniper-codegen-0.14
 GraphQL.")
     (license license:bsd-2)))
 
-(define-public rust-juniper-0.14
+(define-public rust-juniper-codegen-0.14
   (package
-    (name "rust-juniper")
+    (inherit rust-juniper-codegen-0.15)
+    (name "rust-juniper-codegen")
     (version "0.14.2")
+    (source
+     (origin
+       (method url-fetch)
+       (uri (crate-uri "juniper_codegen" version))
+       (file-name (string-append name "-" version ".tar.gz"))
+       (sha256
+        (base32 "06ym8568k9p75kvnfc4ywqbkzaa4ib6gngx9vpbsjwg9v0sg42nl"))))
+    (arguments
+     `(#:tests? #false                  ;FIXME: fail due to unresolved import
+       #:cargo-inputs
+       (("rust-proc-macro2" ,rust-proc-macro2-1)
+        ("rust-quote" ,rust-quote-1)
+        ("rust-syn" ,rust-syn-1))
+       #:cargo-development-inputs
+       (("rust-juniper" ,rust-juniper-0.14))))))
+
+(define-public rust-juniper-0.15
+  (package
+    (name "rust-juniper")
+    (version "0.15.12")
     (source
      (origin
        (method url-fetch)
        (uri (crate-uri "juniper" version))
        (file-name (string-append name "-" version ".tar.gz"))
        (sha256
-        (base32 "0s56rb31yddhvjynl5bk8jihcdln8h5yfsx63kfxdhzvw98vlqpn"))))
+        (base32 "1dg1b5msr8k4kwmam2h0f64z7aamk4799vdh3cg55c881idclpc7"))))
     (build-system cargo-build-system)
     (arguments
      `(#:cargo-inputs
-       (("rust-chrono" ,rust-chrono-0.4)
+       (("rust-anyhow" ,rust-anyhow-1)
+        ("rust-async-trait" ,rust-async-trait-0.1)
+        ("rust-bson" ,rust-bson-1)
+        ("rust-chrono" ,rust-chrono-0.4)
+        ("rust-chrono-tz" ,rust-chrono-tz-0.5)
         ("rust-fnv" ,rust-fnv-1)
+        ("rust-futures" ,rust-futures-0.3)
+        ("rust-futures-enum" ,rust-futures-enum-0.1)
+        ("rust-graphql-parser" ,rust-graphql-parser-0.3)
         ("rust-indexmap" ,rust-indexmap-1)
-        ("rust-juniper-codegen" ,rust-juniper-codegen-0.14)
+        ("rust-juniper-codegen" ,rust-juniper-codegen-0.15)
         ("rust-serde" ,rust-serde-1)
-        ("rust-serde-derive" ,rust-serde-derive-1)
         ("rust-serde-json" ,rust-serde-json-1)
+        ("rust-smartstring" ,rust-smartstring-1)
+        ("rust-static-assertions" ,rust-static-assertions-1)
         ("rust-url" ,rust-url-2)
-        ("rust-uuid" ,rust-uuid-0.7))
+        ("rust-uuid" ,rust-uuid-0.8))
        #:cargo-development-inputs
        (("rust-bencher" ,rust-bencher-0.1)
-        ("rust-serde-json" ,rust-serde-json-1))))
+        ("rust-pretty-assertions" ,rust-pretty-assertions-0.7)
+        ("rust-serde-json" ,rust-serde-json-1)
+        ("rust-tokio" ,rust-tokio-1))))
     (home-page "https://github.com/graphql-rust/juniper")
     (synopsis "GraphQL server library for Rust")
     (description
@@ -36252,6 +36287,33 @@ (define-public rust-juniper-0.14
 debugging.")
     (license license:bsd-2)))
 
+(define-public rust-juniper-0.14
+  (package
+    (inherit rust-juniper-0.15)
+    (name "rust-juniper")
+    (version "0.14.2")
+    (source
+     (origin
+       (method url-fetch)
+       (uri (crate-uri "juniper" version))
+       (file-name (string-append name "-" version ".tar.gz"))
+       (sha256
+        (base32 "0s56rb31yddhvjynl5bk8jihcdln8h5yfsx63kfxdhzvw98vlqpn"))))
+    (arguments
+     `(#:cargo-inputs
+       (("rust-chrono" ,rust-chrono-0.4)
+        ("rust-fnv" ,rust-fnv-1)
+        ("rust-indexmap" ,rust-indexmap-1)
+        ("rust-juniper-codegen" ,rust-juniper-codegen-0.14)
+        ("rust-serde" ,rust-serde-1)
+        ("rust-serde-derive" ,rust-serde-derive-1)
+        ("rust-serde-json" ,rust-serde-json-1)
+        ("rust-url" ,rust-url-2)
+        ("rust-uuid" ,rust-uuid-0.7))
+       #:cargo-development-inputs
+       (("rust-bencher" ,rust-bencher-0.1)
+        ("rust-serde-json" ,rust-serde-json-1))))))
+
 (define-public rust-keccak-0.1
   (package
     (name "rust-keccak")
-- 
2.41.0







  parent reply	other threads:[~2024-05-22 10:47 UTC|newest]

Thread overview: 39+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2024-05-22  9:41 [bug#71110] [PATCH rust-team 00/37] Update rust-xremap to 0.10.0 Nicolas Goaziou via Guix-patches via
2024-05-22  9:45 ` [bug#71110] [PATCH rust-team 01/37] gnu: rust-expect-test-1: Update to 1.5.0 Nicolas Goaziou via Guix-patches via
2024-05-22  9:45 ` [bug#71110] [PATCH rust-team 02/37] gnu: rust-serde-with-macros-3: Update to 3.8.1 Nicolas Goaziou via Guix-patches via
2024-05-22  9:45 ` [bug#71110] [PATCH rust-team 03/37] gnu: Add rust-serde-derive-internals-0.29 Nicolas Goaziou via Guix-patches via
2024-05-22  9:45 ` [bug#71110] [PATCH rust-team 04/37] gnu: rust-schemars-derive-0.8: Update to 0.8.20 Nicolas Goaziou via Guix-patches via
2024-05-22  9:45 ` [bug#71110] [PATCH rust-team 05/37] gnu: rust-schemars-0.8: " Nicolas Goaziou via Guix-patches via
2024-05-22  9:45 ` [bug#71110] [PATCH rust-team 06/37] gnu: Add rust-base64-0.22 Nicolas Goaziou via Guix-patches via
2024-05-22  9:45 ` [bug#71110] [PATCH rust-team 07/37] gnu: rust-serde-with-3: Update to 3.8.1 Nicolas Goaziou via Guix-patches via
2024-05-22  9:45 ` [bug#71110] [PATCH rust-team 08/37] gnu: rust-regex-automata-0.4: Update to 0.4.6 Nicolas Goaziou via Guix-patches via
2024-05-22  9:45 ` [bug#71110] [PATCH rust-team 09/37] gnu: rust-regex-1: Update to 1.10.4 Nicolas Goaziou via Guix-patches via
2024-05-22  9:45 ` [bug#71110] [PATCH rust-team 10/37] gnu: rust-value-bag-sval2-1: Update to 1.9.0 Nicolas Goaziou via Guix-patches via
2024-05-22  9:45 ` [bug#71110] [PATCH rust-team 11/37] gnu: rust-value-bag-serde1-1: " Nicolas Goaziou via Guix-patches via
2024-05-22  9:45 ` [bug#71110] [PATCH rust-team 12/37] gnu: rust-value-bag-1: " Nicolas Goaziou via Guix-patches via
2024-05-22  9:45 ` [bug#71110] [PATCH rust-team 13/37] gnu: rust-env-logger-0.10: Update to 0.10.2 Nicolas Goaziou via Guix-patches via
2024-05-22  9:45 ` [bug#71110] [PATCH rust-team 14/37] gnu: Add rust-bson-1 Nicolas Goaziou via Guix-patches via
2024-05-22  9:45 ` [bug#71110] [PATCH rust-team 15/37] gnu: rust-anyhow-1: Update to 1.0.86 Nicolas Goaziou via Guix-patches via
2024-05-22  9:45 ` [bug#71110] [PATCH rust-team 16/37] gnu: Add rust-pretty-assertions-0.5 Nicolas Goaziou via Guix-patches via
2024-05-22  9:45 ` [bug#71110] [PATCH rust-team 17/37] gnu: Add rust-graphql-parser-0.3 Nicolas Goaziou via Guix-patches via
2024-05-22  9:45 ` [bug#71110] [PATCH rust-team 18/37] gnu: Add rust-iso8601-0.6 Nicolas Goaziou via Guix-patches via
2024-05-22  9:45 ` [bug#71110] [PATCH rust-team 19/37] gnu: Add rust-num-cmp-0.1 Nicolas Goaziou via Guix-patches via
2024-05-22  9:45 ` [bug#71110] [PATCH rust-team 20/37] gnu: Add rust-h3-0.0.4 Nicolas Goaziou via Guix-patches via
2024-05-22  9:45 ` [bug#71110] [PATCH rust-team 21/37] gnu: Add rust-h3-quinn-0.0.5 Nicolas Goaziou via Guix-patches via
2024-05-22  9:45 ` [bug#71110] [PATCH rust-team 22/37] gnu: Add rust-hyper-tls-0.6 Nicolas Goaziou via Guix-patches via
2024-05-22  9:45 ` [bug#71110] [PATCH rust-team 23/37] gnu: Add rust-hyper-rustls-0.26 Nicolas Goaziou via Guix-patches via
2024-05-22  9:45 ` [bug#71110] [PATCH rust-team 24/37] gnu: rust-pin-project-internal-1: Update to 1.1.5 Nicolas Goaziou via Guix-patches via
2024-05-22  9:45 ` [bug#71110] [PATCH rust-team 25/37] gnu: rust-rustls-pki-types-1: Update to 1.7.0 Nicolas Goaziou via Guix-patches via
2024-05-22  9:45 ` [bug#71110] [PATCH rust-team 26/37] gnu: rust-pin-project-1: Update to 1.1.5 Nicolas Goaziou via Guix-patches via
2024-05-22  9:45 ` [bug#71110] [PATCH rust-team 27/37] gnu: Add rust-wasm-streams-0.4 Nicolas Goaziou via Guix-patches via
2024-05-22  9:45 ` [bug#71110] [PATCH rust-team 28/37] gnu: Add rust-reqwest-0.12 Nicolas Goaziou via Guix-patches via
2024-05-22  9:45 ` [bug#71110] [PATCH rust-team 29/37] gnu: Add rust-derive-utils-0.11 Nicolas Goaziou via Guix-patches via
2024-05-22  9:45 ` [bug#71110] [PATCH rust-team 30/37] gnu: Add rust-futures-enum-0.1 Nicolas Goaziou via Guix-patches via
2024-05-22  9:45 ` Nicolas Goaziou via Guix-patches via [this message]
2024-05-22  9:45 ` [bug#71110] [PATCH rust-team 32/37] gnu: rust-num-traits-0.2: Update to 0.2.19 Nicolas Goaziou via Guix-patches via
2024-05-22  9:45 ` [bug#71110] [PATCH rust-team 33/37] gnu: rust-num-complex-0.4: Update to 0.4.6 Nicolas Goaziou via Guix-patches via
2024-05-22  9:45 ` [bug#71110] [PATCH rust-team 34/37] gnu: rust-num-integer-0.1: Update to 0.1.46 Nicolas Goaziou via Guix-patches via
2024-05-22  9:45 ` [bug#71110] [PATCH rust-team 35/37] gnu: rust-num-iter-0.1: Update to 0.1.45 Nicolas Goaziou via Guix-patches via
2024-05-22  9:45 ` [bug#71110] [PATCH rust-team 36/37] gnu: rust-num-0.4: Update to 0.4.2 Nicolas Goaziou via Guix-patches via
2024-05-22  9:45 ` [bug#71110] [PATCH rust-team 37/37] gnu: rust-xremap: Update to 0.10.0 Nicolas Goaziou via Guix-patches via
2024-05-23 21:30 ` bug#71110: [PATCH rust-team 00/37] Update rust-xremap " Nicolas Goaziou 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

  List information: https://guix.gnu.org/

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

  git send-email \
    --in-reply-to=9c515d1757bd2041c6496ea158b962f2bebc86f8.1716370758.git.mail@nicolasgoaziou.fr \
    --to=guix-patches@gnu.org \
    --cc=71110@debbugs.gnu.org \
    --cc=efraim@flashner.co.il \
    --cc=mail@nicolasgoaziou.fr \
    /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 public inbox

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

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).