From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:470:142:3::10]:50082) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1jSkVh-00087E-NB for guix-patches@gnu.org; Sun, 26 Apr 2020 12:52:06 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.90_1) (envelope-from ) id 1jSkVg-0005Lm-On for guix-patches@gnu.org; Sun, 26 Apr 2020 12:52:05 -0400 Received: from debbugs.gnu.org ([209.51.188.43]:51345) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_128_GCM_SHA256:128) (Exim 4.90_1) (envelope-from ) id 1jSkVg-0005KW-9e for guix-patches@gnu.org; Sun, 26 Apr 2020 12:52:04 -0400 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1jSkVg-0005O4-7T for guix-patches@gnu.org; Sun, 26 Apr 2020 12:52:04 -0400 Subject: [bug#40874] [PATCH 76/94] gnu: Add rust-tokio-buf-0.1. Resent-Message-ID: Received: from eggs.gnu.org ([2001:470:142:3::10]:49442) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1jSkUe-0006L1-Im for guix-patches@gnu.org; Sun, 26 Apr 2020 12:51:00 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.90_1) (envelope-from ) id 1jSkUd-0004QB-E5 for guix-patches@gnu.org; Sun, 26 Apr 2020 12:51:00 -0400 Received: from mail-out.m-online.net ([212.18.0.10]:40057) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1jSkUb-0004Ou-Gl for guix-patches@gnu.org; Sun, 26 Apr 2020 12:50:58 -0400 From: Hartmut Goebel Date: Sun, 26 Apr 2020 18:45:55 +0200 Message-Id: <5f76147438940923a69f690f3f71d8561ddc1e4b.1587919230.git.h.goebel@crazy-compilers.com> In-Reply-To: References: MIME-Version: 1.0 Content-Transfer-Encoding: 8bit List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: guix-patches-bounces+kyle=kyleam.com@gnu.org Sender: "Guix-patches" To: 40874@debbugs.gnu.org * gnu/packages/crates-io.scm (rust-tokio-buf-0.1): New variable. --- 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 d46fed212a..9b5f7223db 100644 --- a/gnu/packages/crates-io.scm +++ b/gnu/packages/crates-io.scm @@ -20837,6 +20837,30 @@ backed applications.") backed applications.") (license license:expat))) +(define-public rust-tokio-buf-0.1 + (package + (name "rust-tokio-buf") + (version "0.1.1") + (source + (origin + (method url-fetch) + (uri (crate-uri "tokio-buf" version)) + (file-name (string-append name "-" version ".tar.gz")) + (sha256 + (base32 "0inwrkh8knqy44mr9h2i305zyy4pxhfy90y0gr5rm1akdks21clg")))) + (build-system cargo-build-system) + (arguments + `(#:cargo-inputs + (("rust-bytes" ,rust-bytes-0.4) + ("rust-either" ,rust-either-1.5) + ("rust-futures" ,rust-futures-0.1)) + #:cargo-development-inputs + (("rust-tokio-mock-task" ,rust-tokio-mock-task-0.1)))) + (home-page "https://tokio.rs") + (synopsis "Asynchronous stream of byte buffers") + (description "Asynchronous stream of byte buffers") + (license license:expat))) + ;; Cyclic dependency with tokio-io (define-public rust-tokio-codec-0.1 (package -- 2.21.3