mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-16 03:45:24 -05:00
gnu: Add rust-multipart-0.18.
* gnu/packages/crates-io.scm (rust-multipart-0.18): New variable. (rust-multipart-0.17): Inherit from ‘rust-multipart-0.18’. Signed-off-by: Nicolas Goaziou <mail@nicolasgoaziou.fr>
This commit is contained in:
parent
741cfe8410
commit
fa5ac1d8ac
1 changed files with 43 additions and 10 deletions
|
@ -28325,8 +28325,50 @@ (define-public rust-multi-default-trait-impl-0.1
|
|||
a default trait implementation you've defined.")
|
||||
(license license:lgpl2.1+)))
|
||||
|
||||
(define-public rust-multipart-0.18
|
||||
(package
|
||||
(name "rust-multipart")
|
||||
(version "0.18.0")
|
||||
(source
|
||||
(origin
|
||||
(method url-fetch)
|
||||
(uri (crate-uri "multipart" version))
|
||||
(file-name (string-append name "-" version ".tar.gz"))
|
||||
(sha256
|
||||
(base32
|
||||
"10libwfbazqcyxcpgpcdf1a66jnzghwlmxlxnffg4rrqhqrwdph0"))))
|
||||
(build-system cargo-build-system)
|
||||
(arguments
|
||||
`(#:cargo-inputs
|
||||
(("rust-buf-redux" ,rust-buf-redux-0.8)
|
||||
("rust-clippy" ,rust-clippy-0.0)
|
||||
("rust-httparse" ,rust-httparse-1)
|
||||
("rust-hyper" ,rust-hyper-0.10)
|
||||
("rust-iron" ,rust-iron-0.6)
|
||||
("rust-lazy-static" ,rust-lazy-static-1)
|
||||
("rust-log" ,rust-log-0.4)
|
||||
("rust-mime" ,rust-mime-0.3)
|
||||
("rust-mime-guess" ,rust-mime-guess-2)
|
||||
("rust-nickel" ,rust-nickel-0.11)
|
||||
("rust-quick-error" ,rust-quick-error-1)
|
||||
("rust-rand" ,rust-rand-0.8)
|
||||
("rust-rocket" ,rust-rocket-0.4)
|
||||
("rust-safemem" ,rust-safemem-0.3)
|
||||
("rust-tempfile" ,rust-tempfile-3)
|
||||
("rust-tiny-http" ,rust-tiny-http-0.6)
|
||||
("rust-twoway" ,rust-twoway-0.1))
|
||||
#:cargo-development-inputs
|
||||
(("rust-env-logger" ,rust-env-logger-0.5))))
|
||||
(home-page "https://github.com/abonander/multipart")
|
||||
(synopsis "Backend-agnostic extension for file uploads in HTTP libraries for Rust")
|
||||
(description "This package provides a backend-agnostic extension for HTTP
|
||||
libraries that provides support for POST multipart/form-data requests on both
|
||||
client and server.")
|
||||
(license (list license:expat license:asl2.0))))
|
||||
|
||||
(define-public rust-multipart-0.17
|
||||
(package
|
||||
(inherit rust-multipart-0.18)
|
||||
(name "rust-multipart")
|
||||
(version "0.17.1")
|
||||
(source
|
||||
|
@ -28336,7 +28378,6 @@ (define-public rust-multipart-0.17
|
|||
(file-name (string-append name "-" version ".tar.gz"))
|
||||
(sha256
|
||||
(base32 "1m3nrydgc56wjixsahipmvjgnxnw2cz7w8ryghsgahwjr3nswl6h"))))
|
||||
(build-system cargo-build-system)
|
||||
(arguments
|
||||
`(#:skip-build? #t
|
||||
#:cargo-inputs
|
||||
|
@ -28358,15 +28399,7 @@ (define-public rust-multipart-0.17
|
|||
("rust-tiny-http" ,rust-tiny-http-0.6)
|
||||
("rust-twoway" ,rust-twoway-0.1))
|
||||
#:cargo-development-inputs
|
||||
(("rust-env-logger" ,rust-env-logger-0.5))))
|
||||
(home-page "https://github.com/abonander/multipart")
|
||||
(synopsis
|
||||
"Backend-agnostic extension for file uploads in HTTP libraries for Rust")
|
||||
(description
|
||||
"This package provides a backend-agnostic extension for HTTP libraries
|
||||
that provides support for POST multipart/form-data requests on both client and
|
||||
server.")
|
||||
(license (list license:expat license:asl2.0))))
|
||||
(("rust-env-logger" ,rust-env-logger-0.5))))))
|
||||
|
||||
(define-public rust-multiversion-0.6
|
||||
(package
|
||||
|
|
Loading…
Reference in a new issue