ngz pushed a commit to branch master
in repository guix.
commit d3d064a0731909fde55b155b92d85028927877fe
Author: phodina <[email protected]>
AuthorDate: Tue Nov 9 17:02:40 2021 +0000
gnu: Add rust-twoway-0.2.
* gnu/packages/crates-io.scm (rust-twoway-0.2): New variable.
(rust-twoway-0.1): Inherit from above.
Signed-off-by: Nicolas Goaziou <[email protected]>
---
gnu/packages/crates-io.scm | 20 +++++++++++++++++---
1 file changed, 17 insertions(+), 3 deletions(-)
diff --git a/gnu/packages/crates-io.scm b/gnu/packages/crates-io.scm
index cc7884a..687ec4b 100644
--- a/gnu/packages/crates-io.scm
+++ b/gnu/packages/crates-io.scm
@@ -58148,17 +58148,17 @@ design abstracts away all the internals of the
WebSocket protocol but still
makes them accessible for those who wants full control over the network.")
(license (list license:expat license:asl2.0))))
-(define-public rust-twoway-0.1
+(define-public rust-twoway-0.2
(package
(name "rust-twoway")
- (version "0.1.8")
+ (version "0.2.2")
(source
(origin
(method url-fetch)
(uri (crate-uri "twoway" version))
(file-name (string-append name "-" version ".tar.gz"))
(sha256
- (base32 "1lbf64snscr3vz71jbl6i2c8zr2ndsiqbk6316z39fj1a8mipcar"))))
+ (base32 "0iqb54firzb8jinl2674vz8s6c4h30842sa3v9pcs93w1m3gnzy5"))))
(build-system cargo-build-system)
(arguments
`(#:skip-build? #t
@@ -58174,6 +58174,20 @@ makes them accessible for those who wants full control
over the network.")
strings.")
(license (list license:expat license:asl2.0))))
+(define-public rust-twoway-0.1
+ (package
+ (inherit rust-twoway-0.2)
+ (name "rust-twoway")
+ (version "0.1.8")
+ (source
+ (origin
+ (method url-fetch)
+ (uri (crate-uri "twoway" version))
+ (file-name (string-append name "-" version ".tar.gz"))
+ (sha256
+ (base32
+ "1lbf64snscr3vz71jbl6i2c8zr2ndsiqbk6316z39fj1a8mipcar"))))))
+
(define-public rust-typeable-0.1
(package
(name "rust-typeable")