From: zenmaya via Guix-patches via <guix-patches@gnu.org>
To: 70177@debbugs.gnu.org
Cc: zenmaya <maya@zenmaya.xyz>, Efraim Flashner <efraim@flashner.co.il>
Subject: [bug#70177] [PATCH 005/120] gnu: Add rust-cap-net-ext
Date: Thu, 4 Apr 2024 08:07:19 +0200 [thread overview]
Message-ID: <1dd76095bb8cf8ca169ddfb2a2a8ee2741cda518.1712173212.git.maya@zenmaya.xyz> (raw)
In-Reply-To: <cover.1712173212.git.maya@zenmaya.xyz>
Change-Id: If35dfe251d57ebc3d5f7c3a0298558994b2d5aa5
---
gnu/packages/crates-io.scm | 24 ++++++++++++++++++++++++
1 file changed, 24 insertions(+)
diff --git a/gnu/packages/crates-io.scm b/gnu/packages/crates-io.scm
index 5fec5ea9aa..fc684326ec 100644
--- a/gnu/packages/crates-io.scm
+++ b/gnu/packages/crates-io.scm
@@ -9509,6 +9509,30 @@ (define-public rust-camino-1
(description "This package provides a UTF-8 paths.")
(license (list license:expat license:asl2.0))))
+(define-public rust-cap-net-ext-3
+ (package
+ (name "rust-cap-net-ext")
+ (version "3.0.0")
+ (source
+ (origin
+ (method url-fetch)
+ (uri (crate-uri "cap-net-ext" version))
+ (file-name (string-append name "-" version ".tar.gz"))
+ (sha256
+ (base32 "0662h0yns8c1qz974r3gwqgysvgy78w7whc3yad2labln8znvzsr"))))
+ (build-system cargo-build-system)
+ (arguments
+ `(#:skip-build? #t
+ #:cargo-inputs (("rust-cap-primitives" ,rust-cap-primitives-3)
+ ("rust-cap-std" ,rust-cap-std-3)
+ ("rust-rustix" ,rust-rustix-0.38)
+ ("rust-smallvec" ,rust-smallvec-1))))
+ (home-page "https://github.com/bytecodealliance/cap-std")
+ (synopsis "Extension traits for `TcpListener`, `Pool`, etc.")
+ (description "Extension traits for `@code{TcpListener`}, `Pool`, etc.")
+ (license (list license:asl2.0 license:asl2.0 ;; LLVM exception
+ license:expat))))
+
(define-public rust-cap-0.1
(package
(name "rust-cap")
--
2.41.0
next prev parent reply other threads:[~2024-04-04 12:52 UTC|newest]
Thread overview: 23+ messages / expand[flat|nested] mbox.gz Atom feed top
2024-04-03 19:48 [bug#70177] [PATCH 000/120] Add wasmtime zenmaya via Guix-patches via
2024-04-04 6:07 ` [bug#70177] [PATCH 001/120] gnu: Add rust-addr2line zenmaya via Guix-patches via
2024-04-04 6:07 ` [bug#70177] [PATCH 002/120] gnu: Add rust-afl zenmaya via Guix-patches via
2024-04-04 6:07 ` [bug#70177] [PATCH 003/120] gnu: Update rust-arbitrary zenmaya via Guix-patches via
2024-04-04 6:07 ` [bug#70177] [PATCH 004/120] gnu: Add rust-bumpalo zenmaya via Guix-patches via
2024-04-04 6:07 ` zenmaya via Guix-patches via [this message]
2024-04-04 6:07 ` [bug#70177] [PATCH 006/120] gnu: Update rust-cpal zenmaya via Guix-patches via
2024-04-04 6:07 ` [bug#70177] [PATCH 007/120] gnu: Add rust-fallible-iterator zenmaya via Guix-patches via
2024-04-04 6:07 ` [bug#70177] [PATCH 008/120] gnu: Add rust-listenfd zenmaya via Guix-patches via
2024-04-04 6:07 ` [bug#70177] [PATCH 009/120] gnu: Add rust-fd-lock-4 zenmaya via Guix-patches via
2024-04-04 6:07 ` [bug#70177] [PATCH 010/120] gnu: Add rust-fs-set-times-0.20 zenmaya via Guix-patches via
2024-04-04 6:07 ` [bug#70177] [PATCH 011/120] gnu: Add rust-ambient-authority zenmaya via Guix-patches via
2024-04-04 6:07 ` [bug#70177] [PATCH 012/120] gnu: Add rust-gimli-0.28 zenmaya via Guix-patches via
2024-04-04 6:07 ` [bug#70177] [PATCH 013/120] gnu: Update rust-iana-time-zone zenmaya via Guix-patches via
2024-04-04 6:07 ` [bug#70177] [PATCH 014/120] gnu: Add rust-arf-strings zenmaya via Guix-patches via
2024-04-04 6:07 ` [bug#70177] [PATCH 015/120] gnu: Add rust-cap-primitives zenmaya via Guix-patches via
2024-04-04 6:07 ` [bug#70177] [PATCH 016/120] gnu: Add rust-cap-time-ext zenmaya via Guix-patches via
2024-04-04 6:07 ` [bug#70177] [PATCH 017/120] gnu: Add rust-cap-rand zenmaya via Guix-patches via
2024-04-04 6:07 ` [bug#70177] [PATCH 018/120] gnu: Add rust-cap-std zenmaya via Guix-patches via
2024-04-04 6:07 ` [bug#70177] [PATCH 019/120] gnu: Add rust-cap-fs-ext zenmaya via Guix-patches via
2024-04-04 6:07 ` [bug#70177] [PATCH 020/120] gnu: Add rust-io-extras zenmaya via Guix-patches via
2024-05-01 21:43 ` [bug#70177] [PATCH 000/120] Add wasmtime Ludovic Courtès
2024-05-29 20:04 ` Maya 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=1dd76095bb8cf8ca169ddfb2a2a8ee2741cda518.1712173212.git.maya@zenmaya.xyz \
--to=guix-patches@gnu.org \
--cc=70177@debbugs.gnu.org \
--cc=efraim@flashner.co.il \
--cc=maya@zenmaya.xyz \
/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).