gnu: Add rust-quinn-proto-0.8.
* gnu/packages/crates-io.scm (rust-quinn-proto-0.8): New variable.
This commit is contained in:
parent
89b34027cd
commit
2f19fb36a0
1 changed files with 37 additions and 0 deletions
|
@ -46008,6 +46008,43 @@ numbers.")
|
||||||
and Petrick's method, an algorithm to automatically minimize boolean expressions.")
|
and Petrick's method, an algorithm to automatically minimize boolean expressions.")
|
||||||
(license license:expat)))
|
(license license:expat)))
|
||||||
|
|
||||||
|
(define-public rust-quinn-proto-0.8
|
||||||
|
(package
|
||||||
|
(name "rust-quinn-proto")
|
||||||
|
(version "0.8.4")
|
||||||
|
(source (origin
|
||||||
|
(method url-fetch)
|
||||||
|
(uri (crate-uri "quinn-proto" version))
|
||||||
|
(file-name (string-append name "-" version ".tar.gz"))
|
||||||
|
(sha256
|
||||||
|
(base32 "0m9ak5nsplf3a6s7i9243y5rlh8d8a428r9hfnjngxw8jrmm9kiz"))))
|
||||||
|
(build-system cargo-build-system)
|
||||||
|
(arguments
|
||||||
|
`(#:cargo-inputs
|
||||||
|
(("rust-arbitrary" ,rust-arbitrary-1)
|
||||||
|
("rust-bytes" ,rust-bytes-1)
|
||||||
|
("rust-fxhash" ,rust-fxhash-0.2)
|
||||||
|
("rust-rand" ,rust-rand-0.8)
|
||||||
|
("rust-ring" ,rust-ring-0.16)
|
||||||
|
("rust-rustls" ,rust-rustls-0.20)
|
||||||
|
("rust-rustls-native-certs" ,rust-rustls-native-certs-0.6)
|
||||||
|
("rust-rustls-pemfile" ,rust-rustls-pemfile-0.2)
|
||||||
|
("rust-slab" ,rust-slab-0.4)
|
||||||
|
("rust-thiserror" ,rust-thiserror-1)
|
||||||
|
("rust-tinyvec" ,rust-tinyvec-1)
|
||||||
|
("rust-tracing" ,rust-tracing-0.1)
|
||||||
|
("rust-webpki" ,rust-webpki-0.22))
|
||||||
|
#:cargo-development-inputs
|
||||||
|
(("rust-assert-matches" ,rust-assert-matches-1)
|
||||||
|
("rust-hex-literal" ,rust-hex-literal-0.3)
|
||||||
|
("rust-lazy-static" ,rust-lazy-static-1)
|
||||||
|
("rust-rcgen" ,rust-rcgen-0.8)
|
||||||
|
("rust-tracing-subscriber" ,rust-tracing-subscriber-0.3))))
|
||||||
|
(home-page "https://github.com/quinn-rs/quinn")
|
||||||
|
(synopsis "State machine for the QUIC transport protocol")
|
||||||
|
(description "State machine for the QUIC transport protocol")
|
||||||
|
(license (list license:expat license:asl2.0))))
|
||||||
|
|
||||||
(define-public rust-quinn-udp-0.1
|
(define-public rust-quinn-udp-0.1
|
||||||
(package
|
(package
|
||||||
(name "rust-quinn-udp")
|
(name "rust-quinn-udp")
|
||||||
|
|
Reference in a new issue