all messages for Guix-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
From: Steve George <steve@futurile.net>
To: 66579@debbugs.gnu.org
Cc: Steve George <steve@futurile.net>, efraim@flashner.co.il
Subject: [bug#66579] [PATCH 01/13] gnu: Add rust-hyper-proxy
Date: Mon, 16 Oct 2023 17:54:03 +0100	[thread overview]
Message-ID: <e8e910ed96319a235ec29f24d2f7fbb5530eced9.1697475045.git.steve@futurile.net> (raw)
In-Reply-To: <3e60165e-956b-443a-ae07-db86fd7157d2@gmail.com>

* gnu/packages/crates-io.scm (rust-hyper-proxy): New variable.
---
 gnu/packages/crates-io.scm | 40 ++++++++++++++++++++++++++++++++++++++
 1 file changed, 40 insertions(+)

diff --git a/gnu/packages/crates-io.scm b/gnu/packages/crates-io.scm
index 80fb92ec82..8dc31b9cd6 100644
--- a/gnu/packages/crates-io.scm
+++ b/gnu/packages/crates-io.scm
@@ -30717,6 +30717,46 @@ (define-public rust-humantime-1
         ("rust-rand" ,rust-rand-0.4)
         ("rust-time" ,rust-time-0.1))))))
 
+(define-public rust-hyper-proxy-0.9
+  (package
+    (name "rust-hyper-proxy")
+    (version "0.9.1")
+    (source (origin
+              (method url-fetch)
+              (uri (crate-uri "hyper-proxy" version))
+              (file-name (string-append name "-" version ".tar.gz"))
+              (sha256
+               (base32
+                "1k3mpq6d4rhz58dam1757sav14j32n39q8x37wjgpz943f4mm0fa"))))
+    (build-system cargo-build-system)
+    (arguments
+     (list #:skip-build? #f
+           #:cargo-inputs `(("rust-bytes" ,rust-bytes-1)
+                            ("rust-futures" ,rust-futures-0.3)
+                            ("rust-headers" ,rust-headers-0.3)
+                            ("rust-http" ,rust-http-0.2)
+                            ("rust-hyper" ,rust-hyper-0.14)
+                            ("rust-tokio" ,rust-tokio-1)
+                            ("rust-tower-service" ,rust-tower-service-0.3)
+                            ("rust-hyper-rustls" ,rust-hyper-rustls-0.22)
+                            ("rust-hyper-tls" ,rust-hyper-tls-0.5)
+                            ("rust-native-tls" ,rust-native-tls-0.2)
+                            ("rust-openssl" ,rust-openssl-0.10)
+                            ("rust-rustls-native-certs" ,rust-rustls-native-certs-0.5)
+                            ("rust-tokio-native-tls" ,rust-tokio-native-tls-0.3)
+                            ("rust-tokio-openssl" ,rust-tokio-openssl-0.6)
+                            ("rust-tokio-rustls" ,rust-tokio-rustls-0.22)
+                            ("rust-webpki" ,rust-webpki-0.21)
+                            ("rust-webpki-roots" ,rust-webpki-roots-0.21))
+           #:cargo-development-inputs `(("rust-hyper" ,rust-hyper-0.14)
+                                        ("rust-tokio" ,rust-tokio-1))))
+    (native-inputs (list pkg-config))
+    (inputs (list openssl))
+    (home-page "https://github.com/tafia/hyper-proxy")
+    (synopsis "Proxy connector for Hyper-based applications")
+    (description "Proxy connector for the Hyper HTTP library.")
+    (license license:expat)))
+
 (define-public rust-hyper-0.14
   (package
     (name "rust-hyper")

base-commit: 4ec6fd7817ec4073547fd71309374a293d7c436c
-- 
2.41.0





  reply	other threads:[~2023-10-16 16:59 UTC|newest]

Thread overview: 33+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2023-10-16 16:12 [bug#66579] [PATCH 00/13] Series to add rust-librespot-core, audio and discovery Steve George
2023-10-16 16:54 ` Steve George [this message]
2023-10-16 16:54 ` [bug#66579] [PATCH 02/13] gnu: rust-protobuf-2: Update to 2.28.0 Steve George
2023-10-16 16:54 ` [bug#66579] [PATCH 03/13] gnu: rust-protobuf-codegen & rust-protobuf-codegen-pure: " Steve George
2023-10-16 16:54 ` [bug#66579] [PATCH 04/13] gnu: Add rust-librespot-protocol Steve George
2023-10-16 16:54 ` [bug#66579] [PATCH 05/13] gnu: Add rust-password-hash-0.2 Steve George
2023-10-16 16:54 ` [bug#66579] [PATCH 06/13] gnu: Add rust-pbkdf2-0.8 Steve George
2023-10-16 16:54 ` [bug#66579] [PATCH 07/13] gnu: Add rust-priority-queue-1 Steve George
2023-10-16 16:54 ` [bug#66579] [PATCH 08/13] gnu: Add rust-shannon Steve George
2023-10-16 16:54 ` [bug#66579] [PATCH 09/13] gnu: Add rust-librespot-core Steve George
2023-10-16 16:54 ` [bug#66579] [PATCH 10/13] gnu: Add rust-librespot-audio Steve George
2023-10-20  9:30   ` Christopher Baines
2023-10-20 17:02     ` Steve George
2023-10-16 16:54 ` [bug#66579] [PATCH 11/13] gnu: rust-if-addrs: Update to 0.7.0 Steve George
2023-10-16 16:54 ` [bug#66579] [PATCH 12/13] gnu: rust-libmdns: Update to 0.7.5 Steve George
2023-10-16 16:54 ` [bug#66579] [PATCH 13/13] gnu: Add rust-librespot-discovery Steve George
2023-10-20 20:27 ` [bug#66579] [PATCH v2 00/15] Series to add rust-librespot-core, audio and discovery Steve George
2023-10-20 20:27   ` [bug#66579] [PATCH v2 01/15] gnu: Add rust-hyper-proxy Steve George
2023-10-20 20:27   ` [bug#66579] [PATCH v2 02/15] gnu: rust-protobuf-2: Update to 2.28.0 Steve George
2023-10-20 20:27   ` [bug#66579] [PATCH v2 03/15] gnu: rust-protobuf-codegen & rust-protobuf-codegen-pure: " Steve George
2023-10-20 20:27   ` [bug#66579] [PATCH v2 04/15] gnu: Add rust-librespot-protocol Steve George
2023-10-20 20:27   ` [bug#66579] [PATCH v2 05/15] gnu: Add rust-password-hash-0.2 Steve George
2023-10-20 20:27   ` [bug#66579] [PATCH v2 06/15] gnu: Add rust-pbkdf2-0.8 Steve George
2023-10-20 20:27   ` [bug#66579] [PATCH v2 07/15] gnu: Add rust-priority-queue-1 Steve George
2023-10-20 20:27   ` [bug#66579] [PATCH v2 08/15] gnu: Add rust-shannon Steve George
2023-10-20 20:27   ` [bug#66579] [PATCH v2 09/15] gnu: Add rust-librespot-core Steve George
2023-10-20 20:27   ` [bug#66579] [PATCH v2 10/15] gnu: Add rust-aes-ctr Steve George
2023-10-20 20:27   ` [bug#66579] [PATCH v2 11/15] gnu: Add rust-librespot-audio Steve George
2023-10-20 20:27   ` [bug#66579] [PATCH v2 12/15] gnu: rust-if-addrs: Update to 0.7.0 Steve George
2023-10-20 20:27   ` [bug#66579] [PATCH v2 13/15] gnu: rust-libmdns: Update to 0.7.5 Steve George
2023-10-20 20:28   ` [bug#66579] [PATCH v2 14/15] gnu: Add rust-librespot-discovery Steve George
2023-10-20 20:28   ` [bug#66579] [PATCH v2 15/15] gnu: Add rust-librespot-metadata Steve George
2023-10-22  8:37   ` bug#66579: [PATCH v2 00/15] Series to add rust-librespot-core, audio and discovery Efraim Flashner

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=e8e910ed96319a235ec29f24d2f7fbb5530eced9.1697475045.git.steve@futurile.net \
    --to=steve@futurile.net \
    --cc=66579@debbugs.gnu.org \
    --cc=efraim@flashner.co.il \
    /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.