unofficial mirror of guix-patches@gnu.org 
 help / color / mirror / code / Atom feed
From: Danny Milosavljevic <dannym@scratchpost.org>
To: 47948@debbugs.gnu.org
Cc: Danny Milosavljevic <dannym@scratchpost.org>
Subject: [bug#47948] [PATCH 48/49] gnu: Add rust-tokio.
Date: Thu, 22 Apr 2021 12:22:07 +0200	[thread overview]
Message-ID: <20210422102208.1154-48-dannym@scratchpost.org> (raw)
In-Reply-To: <20210422102208.1154-1-dannym@scratchpost.org>

* gnu/packages/crates-io.scm (rust-tokio-1.5): New variable.
---
 gnu/packages/crates-io.scm | 53 ++++++++++++++++++++++++++++++++++++++
 1 file changed, 53 insertions(+)

diff --git a/gnu/packages/crates-io.scm b/gnu/packages/crates-io.scm
index 86cc797b01..897bfcd4a5 100644
--- a/gnu/packages/crates-io.scm
+++ b/gnu/packages/crates-io.scm
@@ -51432,3 +51432,56 @@ configuration file and/or environment variables.")
     (description
       "Permutation testing for concurrent code")
     (license license:expat)))
+
+(define-public rust-tokio-1.5
+  (package
+    (name "rust-tokio")
+    (version "1.5.0")
+    (source
+      (origin
+        (method url-fetch)
+        (uri (crate-uri "tokio" version))
+        (file-name
+          (string-append name "-" version ".tar.gz"))
+        (sha256
+          (base32
+            "199pf7dy992rjpxygrj6790pzbyhhzvvlm9hcq5vbnmdq3kwiw43"))))
+    (build-system cargo-build-system)
+    (arguments
+      `(#:cargo-inputs
+        (("rust-autocfg" ,rust-autocfg-1)
+         ("rust-bytes" ,rust-bytes-1)
+         ("rust-libc" ,rust-libc-0.2)
+         ("rust-memchr" ,rust-memchr-2)
+         ("rust-mio" ,rust-mio-0.7)
+         ("rust-num-cpus" ,rust-num-cpus-1)
+         ("rust-once-cell" ,rust-once-cell-1)
+         ("rust-parking-lot" ,rust-parking-lot-0.11)
+         ("rust-pin-project-lite"
+          ,rust-pin-project-lite-0.2)
+         ("rust-signal-hook-registry"
+          ,rust-signal-hook-registry-1)
+         ("rust-tokio-macros" ,rust-tokio-macros-1)
+         ("rust-tracing" ,rust-tracing-0.1)
+         ("rust-winapi" ,rust-winapi-0.3))
+        #:cargo-development-inputs
+        (("rust-async-stream" ,rust-async-stream-0.3)
+         ("rust-futures" ,rust-futures-0.3)
+         ("rust-libc" ,rust-libc-0.2)
+         ("rust-loom" ,rust-loom-0.5)
+         ("rust-nix" ,rust-nix-0.19)
+         ("rust-proptest" ,rust-proptest-1)
+         ("rust-rand" ,rust-rand-0.8)
+         ("rust-tempfile" ,rust-tempfile-3)
+         ("rust-tokio-stream" ,rust-tokio-stream-0.1)
+         ("rust-tokio-test" ,rust-tokio-test-0.4))))
+    (home-page "https://tokio.rs")
+    (synopsis
+      "An event-driven, non-blocking I/O platform for writing asynchronous I/O
+backed applications.
+")
+    (description
+      "An event-driven, non-blocking I/O platform for writing asynchronous I/O
+backed applications.
+")
+    (license license:expat)))
-- 
2.29.2





  parent reply	other threads:[~2021-04-22 10:28 UTC|newest]

Thread overview: 56+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2021-04-22 10:10 [bug#47948] [PATCH 00/49] Towards deno Danny Milosavljevic
2021-04-22 10:16 ` [bug#47948] [PATCH 01/49] gnu: rust-byteorder: Update to 1.4.3 Danny Milosavljevic
2021-04-22 10:21 ` Danny Milosavljevic
2021-04-22 10:21   ` [bug#47948] [PATCH 02/49] gnu: rust-futures: Update to 0.3.14 Danny Milosavljevic
2021-04-22 10:21   ` [bug#47948] [PATCH 03/49] gnu: rust-futures-channel: " Danny Milosavljevic
2021-04-22 10:21   ` [bug#47948] [PATCH 04/49] gnu: rust-futures-core: " Danny Milosavljevic
2021-04-22 10:21   ` [bug#47948] [PATCH 05/49] gnu: rust-futures-executor: " Danny Milosavljevic
2021-04-22 10:21   ` [bug#47948] [PATCH 06/49] gnu: rust-futures-io: " Danny Milosavljevic
2021-04-22 10:21   ` [bug#47948] [PATCH 07/49] gnu: rust-futures-macro: " Danny Milosavljevic
2021-04-22 10:21   ` [bug#47948] [PATCH 08/49] gnu: rust-futures-sink: " Danny Milosavljevic
2021-04-22 10:21   ` [bug#47948] [PATCH 09/49] gnu: rust-futures-task: " Danny Milosavljevic
2021-04-22 10:21   ` [bug#47948] [PATCH 10/49] gnu: rust-futures-util: " Danny Milosavljevic
2021-04-22 10:21   ` [bug#47948] [PATCH 11/49] gnu: rust-serde: Update to 1.0.125 Danny Milosavljevic
2021-04-22 10:21   ` [bug#47948] [PATCH 12/49] gnu: rust-serde-derive: " Danny Milosavljevic
2021-04-22 10:21   ` [bug#47948] [PATCH 13/49] gnu: rust-serde-json: Update to 1.0.64 Danny Milosavljevic
2021-04-22 10:21   ` [bug#47948] [PATCH 14/49] gnu: Add rust-swc-visit-macros Danny Milosavljevic
2021-04-22 10:21   ` [bug#47948] [PATCH 15/49] gnu: Add rust-swc-visit Danny Milosavljevic
2021-04-22 10:21   ` [bug#47948] [PATCH 16/49] gnu: Add rust-swc-eq-ignore-macros Danny Milosavljevic
2021-04-22 10:21   ` [bug#47948] [PATCH 17/49] gnu: Add rust-from-variant Danny Milosavljevic
2021-04-22 10:21   ` [bug#47948] [PATCH 18/49] gnu: Add rust-swc-macros-common Danny Milosavljevic
2021-04-22 10:21   ` [bug#47948] [PATCH 19/49] gnu: Add rust-ast-node Danny Milosavljevic
2021-04-22 10:21   ` [bug#47948] [PATCH 20/49] gnu: Add rust-swc-common Danny Milosavljevic
2021-04-22 10:21   ` [bug#47948] [PATCH 21/49] gnu: Add rust-swc-ecma-transforms-typescript Danny Milosavljevic
2021-04-22 10:21   ` [bug#47948] [PATCH 22/49] gnu: Add rust-swc-ecma-transforms-react Danny Milosavljevic
2021-04-22 10:21   ` [bug#47948] [PATCH 23/49] gnu: Add rust-swc-ecma-loader Danny Milosavljevic
2021-04-22 10:21   ` [bug#47948] [PATCH 24/49] gnu: Add rust-swc-ecma-transforms-proposal Danny Milosavljevic
2021-04-22 10:21   ` [bug#47948] [PATCH 25/49] gnu: Add rust-swc-ecma-transforms-optimization Danny Milosavljevic
2021-04-22 10:21   ` [bug#47948] [PATCH 26/49] gnu: Add rust-swc-ecma-transforms-module Danny Milosavljevic
2021-04-22 10:21   ` [bug#47948] [PATCH 27/49] gnu: Add rust-swc-ecma-transforms-macros Danny Milosavljevic
2021-04-22 10:21   ` [bug#47948] [PATCH 28/49] gnu: Add rust-ordered-float Danny Milosavljevic
2021-04-22 10:21   ` [bug#47948] [PATCH 29/49] gnu: Add rust-swc-ecma-transforms-compat Danny Milosavljevic
2021-04-22 10:21   ` [bug#47948] [PATCH 30/49] gnu: Add rust-swc-ecma-utils Danny Milosavljevic
2021-04-22 10:21   ` [bug#47948] [PATCH 31/49] gnu: Add rust-swc-ecma-transforms-base Danny Milosavljevic
2021-04-22 10:21   ` [bug#47948] [PATCH 32/49] gnu: Add rust-swc-ecma-transforms Danny Milosavljevic
2021-04-22 10:21   ` [bug#47948] [PATCH 33/49] gnu: Add rust-swc-ecma-dep-graph Danny Milosavljevic
2021-04-22 10:21   ` [bug#47948] [PATCH 34/49] gnu: Add rust-swc-ecma-visit Danny Milosavljevic
2021-04-22 10:21   ` [bug#47948] [PATCH 35/49] gnu: Add rust-enum-kind Danny Milosavljevic
2021-04-22 10:21   ` [bug#47948] [PATCH 36/49] gnu: Add rust-swc-ecma-parser Danny Milosavljevic
2021-04-22 10:21   ` [bug#47948] [PATCH 37/49] gnu: Add rust-swc-ecma-codegen-macros Danny Milosavljevic
2021-04-22 10:21   ` [bug#47948] [PATCH 38/49] gnu: Add rust-swc-ecma-codegen Danny Milosavljevic
2021-04-22 10:21   ` [bug#47948] [PATCH 39/49] gnu: Add rust-swc-atoms Danny Milosavljevic
2021-04-22 10:21   ` [bug#47948] [PATCH 40/49] gnu: Add rust-string-enum Danny Milosavljevic
2021-04-22 10:22   ` [bug#47948] [PATCH 41/49] gnu: Add rust-swc-ecma-ast Danny Milosavljevic
2021-04-22 10:22   ` [bug#47948] [PATCH 42/49] gnu: Add rust-swc-ecmascript Danny Milosavljevic
2021-04-22 10:22   ` [bug#47948] [PATCH 43/49] gnu: Add rust-rand-xorshift Danny Milosavljevic
2021-04-22 10:22   ` [bug#47948] [PATCH 44/49] gnu: Add rust-quick-error Danny Milosavljevic
2021-04-22 10:22   ` [bug#47948] [PATCH 45/49] gnu: Add rust-proptest Danny Milosavljevic
2021-04-22 10:22   ` [bug#47948] [PATCH 46/49] gnu: Add rust-generator Danny Milosavljevic
2021-04-22 10:22   ` [bug#47948] [PATCH 47/49] gnu: Add rust-loom Danny Milosavljevic
2021-04-22 10:22   ` Danny Milosavljevic [this message]
2021-04-23  8:28     ` [bug#47948] [PATCH 48/49] gnu: Add rust-tokio Nicolas Goaziou
2021-04-22 10:22   ` [bug#47948] [PATCH 49/49] gnu: Add rust-deno-doc Danny Milosavljevic
2022-09-15  8:19 ` [bug#47948] [PATCH 00/49] Towards deno Lars-Dominik Braun
2023-10-12  7:40   ` Daniel Meißner via Guix-patches via
2023-12-14 23:35 ` [bug#47948] Sharlatan Hellseher
2024-08-19 19:01 ` [bug#47948] [PATCH 00/49] Towards deno Sharlatan Hellseher

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=20210422102208.1154-48-dannym@scratchpost.org \
    --to=dannym@scratchpost.org \
    --cc=47948@debbugs.gnu.org \
    /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).