me
/
guix
Archived
1
0
Fork 0

gnu: rust-socks-0.3: Update to 0.3.4.

* gnu/packages/crates-io.scm (rust-socks-0.3): Update to 0.3.4.
[cargo-inputs]: Replace rust-winapi-0.2 with 0.3.  Remove
rust-ws2-32-sys-0.2.

Change-Id: I171d4a54e6554956d85849cdea3d50368c7041ce
master
Efraim Flashner 2024-02-08 15:29:30 +02:00
parent 78ea8a06d0
commit c92fe1ca6c
No known key found for this signature in database
GPG Key ID: 41AAE7DCCA3D8351
1 changed files with 4 additions and 7 deletions

View File

@ -61486,24 +61486,21 @@ maximal amount of configuration possible intended.")
(define-public rust-socks-0.3
(package
(name "rust-socks")
(version "0.3.2")
(version "0.3.4")
(source
(origin
(method url-fetch)
(uri (crate-uri "socks" version))
(file-name
(string-append name "-" version ".tar.gz"))
(file-name (string-append name "-" version ".tar.gz"))
(sha256
(base32
"1hnbw4c4j7dn9n3bd1v7ddkdzlxlzkfw3z29da1nxlj6jgx4r9p6"))))
(base32 "12ymihhib0zybm6n4mrvh39hj1dm0ya8mqnqdly63079kayxphzh"))))
(build-system cargo-build-system)
(arguments
`(#:tests? #f ; Tests require network connection.
#:cargo-inputs
(("rust-byteorder" ,rust-byteorder-1)
("rust-libc" ,rust-libc-0.2)
("rust-winapi" ,rust-winapi-0.2)
("rust-ws2-32-sys" ,rust-ws2-32-sys-0.2))))
("rust-winapi" ,rust-winapi-0.3))))
(home-page "https://github.com/sfackler/rust-socks")
(synopsis "Rust SOCKS proxy clients")
(description