diff options
author | Arun Isaac <arunisaac@systemreboot.net> | 2020-09-20 00:04:07 +0530 |
---|---|---|
committer | Arun Isaac <arunisaac@systemreboot.net> | 2020-10-12 11:41:58 +0530 |
commit | 9d4e56db47ca9a62320217fcdbbcae91c9d4bd7b (patch) | |
tree | 66195e9e29afb266c852b905dd6ff0680ff88f40 | |
parent | 6bf45a0165df34d88c2cdab10c26078e337154b9 (diff) | |
download | guix-9d4e56db47ca9a62320217fcdbbcae91c9d4bd7b.tar.gz |
gnu: Add rust-tower-test-0.3.
* gnu/packages/crates-io.scm (rust-tower-test-0.3): New variable.
-rw-r--r-- | gnu/packages/crates-io.scm | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/gnu/packages/crates-io.scm b/gnu/packages/crates-io.scm index 398d52d2ea..9ce2ec8ec2 100644 --- a/gnu/packages/crates-io.scm +++ b/gnu/packages/crates-io.scm @@ -27931,6 +27931,35 @@ composition between @code{Service}s.") request/response based, client or server.") (license license:expat))) +(define-public rust-tower-test-0.3 + (package + (name "rust-tower-test") + (version "0.3.0") + (source + (origin + (method url-fetch) + (uri (crate-uri "tower-test" version)) + (file-name (string-append name "-" version ".tar.gz")) + (sha256 + (base32 + "1j2k07g3z8ascq7r30bmw3b75v8lhd63mhfl60y59a74q71bp94v")))) + (build-system cargo-build-system) + (arguments + `(#:cargo-inputs + (("rust-futures-util" ,rust-futures-util-0.3) + ("rust-pin-project" ,rust-pin-project-0.4) + ("rust-tokio" ,rust-tokio-0.2) + ("rust-tokio-test" ,rust-tokio-test-0.2) + ("rust-tower-layer" ,rust-tower-layer-0.3) + ("rust-tower-service" ,rust-tower-service-0.3)) + #:cargo-development-inputs + (("rust-tokio" ,rust-tokio-0.2)))) + (home-page "https://github.com/tower-rs/tower") + (synopsis "Utilities for writing client and server @code{Service} tests") + (description "This package provides utilities for writing client and +server @code{Service} tests.") + (license license:expat))) + (description "This package provides a native Rust encoder and decoder of TOML-formatted files and streams. Provides implementations of the standard |