mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-27 04:59:27 -05:00
gnu: Add rust-tower-layer-0.3.
* gnu/packages/crates-io.scm (rust-tower-layer-0.3): New variable.
This commit is contained in:
parent
0d659f8211
commit
6bf45a0165
1 changed files with 22 additions and 0 deletions
|
@ -27887,6 +27887,28 @@ (define-public rust-toml-0.2
|
|||
(home-page "https://github.com/alexcrichton/toml-rs")
|
||||
(synopsis "Rust encoder and decoder of TOML-formatted files and streams")
|
||||
|
||||
(define-public rust-tower-layer-0.3
|
||||
(package
|
||||
(name "rust-tower-layer")
|
||||
(version "0.3.0")
|
||||
(source
|
||||
(origin
|
||||
(method url-fetch)
|
||||
(uri (crate-uri "tower-layer" version))
|
||||
(file-name (string-append name "-" version ".tar.gz"))
|
||||
(sha256
|
||||
(base32
|
||||
"1p6i9rn5d98wsx6hi4hbxh2xqh2clwz0blcm6jrqiciq4rpnapd3"))))
|
||||
(build-system cargo-build-system)
|
||||
(arguments
|
||||
`(#:cargo-development-inputs
|
||||
(("rust-tower-service" ,rust-tower-service-0.3))))
|
||||
(home-page "https://github.com/tower-rs/tower")
|
||||
(synopsis "Easy composition between @code{Service}s")
|
||||
(description "This package decorates a @code{Service} to allow easy
|
||||
composition between @code{Service}s.")
|
||||
(license license:expat)))
|
||||
|
||||
(define-public rust-tower-service-0.3
|
||||
(package
|
||||
(name "rust-tower-service")
|
||||
|
|
Loading…
Reference in a new issue