83b66acca48a188f14343503e55127c3b8b1d097
[jackhill/guix/guix.git] / gnu / packages / crates-io.scm
1 ;;; GNU Guix --- Functional package management for GNU
2 ;;; Copyright © 2019 Ivan Petkov <ivanppetkov@gmail.com>
3 ;;; Copyright © 2019, 2020 Efraim Flashner <efraim@flashner.co.il>
4 ;;; Copyright © 2019, 2020 Nicolas Goaziou <mail@nicolasgoaziou.fr>
5 ;;; Copyright © 2019 Giacomo Leidi <goodoldpaul@autistici.org>
6 ;;; Copyright © 2019, 2020 Tobias Geerinckx-Rice <me@tobias.gr>
7 ;;; Copyright © 2019, 2020 John Soo <jsoo1@asu.edu>
8 ;;; Copyright © 2019, 2020 Hartmut Goebel <h.goebel@crazy-compilers.com>
9 ;;; Copyright © 2020 Jakub Kądziołka <kuba@kadziolka.net>
10 ;;; Copyright © 2020 Leo Famulari <leo@famulari.name>
11 ;;; Copyright © 2020 Gabriel Arazas <foo.dogsquared@gmail.com>
12 ;;; Copyright © 2020 André Batista <nandre@riseup.net>
13 ;;; Copyright © 2020 Arun Isaac <arunisaac@systemreboot.net>
14 ;;;
15 ;;; This file is part of GNU Guix.
16 ;;;
17 ;;; GNU Guix is free software; you can redistribute it and/or modify it
18 ;;; under the terms of the GNU General Public License as published by
19 ;;; the Free Software Foundation; either version 3 of the License, or (at
20 ;;; your option) any later version.
21 ;;;
22 ;;; GNU Guix is distributed in the hope that it will be useful, but
23 ;;; WITHOUT ANY WARRANTY; without even the implied warranty of
24 ;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
25 ;;; GNU General Public License for more details.
26 ;;;
27 ;;; You should have received a copy of the GNU General Public License
28 ;;; along with GNU Guix. If not, see <http://www.gnu.org/licenses/>.
29
30 (define-module (gnu packages crates-io)
31 #:use-module (guix build-system cargo)
32 #:use-module (guix download)
33 #:use-module (guix git-download)
34 #:use-module ((guix licenses) #:prefix license:)
35 #:use-module (guix packages)
36 #:use-module (guix utils)
37 #:use-module (gnu packages)
38 #:use-module (gnu packages cmake)
39 #:use-module (gnu packages compression)
40 #:use-module (gnu packages crates-graphics)
41 #:use-module (gnu packages crates-gtk)
42 #:use-module (gnu packages crypto)
43 #:use-module (gnu packages curl)
44 #:use-module (gnu packages databases)
45 #:use-module (gnu packages fontutils)
46 #:use-module (gnu packages gettext)
47 #:use-module (gnu packages jemalloc)
48 #:use-module (gnu packages llvm)
49 #:use-module (gnu packages multiprecision)
50 #:use-module (gnu packages nettle)
51 #:use-module (gnu packages pcre)
52 #:use-module (gnu packages pkg-config)
53 #:use-module (gnu packages python)
54 #:use-module (gnu packages serialization)
55 #:use-module (gnu packages sqlite)
56 #:use-module (gnu packages ssh)
57 #:use-module (gnu packages tls)
58 #:use-module (gnu packages version-control)
59 #:use-module (gnu packages web)
60 #:use-module (gnu packages xml)
61 #:use-module (gnu packages xorg))
62
63 ;;;
64 ;;; Please: Try to add new module packages in alphabetic order.
65 ;;;
66
67 (define-public rust-abomonation-0.7
68 (package
69 (name "rust-abomonation")
70 (version "0.7.3")
71 (source
72 (origin
73 (method url-fetch)
74 (uri (crate-uri "abomonation" version))
75 (file-name
76 (string-append name "-" version ".tar.gz"))
77 (sha256
78 (base32
79 "1cjg3hjf028n447pdj7zcdgrkngx30as8ndxlxx947wvr49jkrsn"))))
80 (build-system cargo-build-system)
81 (arguments
82 `(#:cargo-development-inputs
83 (("rust-recycler" ,rust-recycler-0.1))))
84 (home-page "https://github.com/TimelyDataflow/abomonation")
85 (synopsis "High performance and very unsafe serialization library")
86 (description
87 "This package provides a high performance and very unsafe serialization
88 library in Rust.")
89 (license license:expat)))
90
91 (define-public rust-addr2line-0.11
92 (package
93 (name "rust-addr2line")
94 (version "0.11.0")
95 (source
96 (origin
97 (method url-fetch)
98 (uri (crate-uri "addr2line" version))
99 (file-name
100 (string-append name "-" version ".tar.gz"))
101 (sha256
102 (base32
103 "0sk5g8cb2yynlcm0wcqff9l9c9ml69rqgfrrbii0ybgdc236jkhw"))))
104 (build-system cargo-build-system)
105 (arguments
106 `(#:tests? #f ; Not all test files included.
107 #:cargo-inputs
108 (("rust-rustc-demangle" ,rust-rustc-demangle-0.1)
109 ("rust-object" ,rust-object-0.17)
110 ("rust-fallible-iterator" ,rust-fallible-iterator-0.2)
111 ("rust-cpp-demangle" ,rust-cpp-demangle-0.2)
112 ("rust-gimli" ,rust-gimli-0.20)
113 ("rust-smallvec" ,rust-smallvec-1)
114 ("rust-lazycell" ,rust-lazycell-1))
115 #:cargo-development-inputs
116 (("rust-backtrace" ,rust-backtrace-0.3)
117 ("rust-clap" ,rust-clap-2)
118 ("rust-findshlibs" ,rust-findshlibs-0.5)
119 ("rust-memmap" ,rust-memmap-0.7)
120 ("rust-rustc-test" ,rust-rustc-test-0.3))))
121 (home-page "https://github.com/gimli-rs/addr2line")
122 (synopsis "Symbolication library written in Rust, using gimli")
123 (description
124 "This package provides a cross-platform symbolication library written in
125 Rust, using gimli.")
126 (license (list license:asl2.0 license:expat))))
127
128 (define-public rust-addr2line-0.9
129 (package
130 (inherit rust-addr2line-0.11)
131 (name "rust-addr2line")
132 (version "0.9.0")
133 (source
134 (origin
135 (method url-fetch)
136 (uri (crate-uri "addr2line" version))
137 (file-name
138 (string-append name "-" version ".tar.gz"))
139 (sha256
140 (base32
141 "17rlf04nx3g3rcy661v24ksnmpk6vqn680g5b5sp8lk20iih2xnx"))))
142 (arguments
143 `(#:skip-build? #t
144 #:cargo-inputs
145 (("rust-cpp-demangle" ,rust-cpp-demangle-0.2)
146 ("rust-fallible-iterator" ,rust-fallible-iterator-0.2)
147 ("rust-gimli" ,rust-gimli-0.18)
148 ("rust-intervaltree" ,rust-intervaltree-0.2)
149 ("rust-lazycell" ,rust-lazycell-1)
150 ("rust-object" ,rust-object-0.12)
151 ("rust-rustc-demangle" ,rust-rustc-demangle-0.1)
152 ("rust-smallvec" ,rust-smallvec-0.6))
153 #:cargo-development-inputs
154 (("rust-backtrace" ,rust-backtrace-0.3)
155 ("rust-clap" ,rust-clap-2)
156 ;("rust-findshlibs" ,rust-findshlibs-0.4)
157 ("rust-memmap" ,rust-memmap-0.7)
158 ("rust-rustc-test" ,rust-rustc-test-0.3))))))
159
160 (define-public rust-adler32-1
161 (package
162 (name "rust-adler32")
163 (version "1.1.0")
164 (source
165 (origin
166 (method url-fetch)
167 (uri (crate-uri "adler32" version))
168 (file-name
169 (string-append name "-" version ".crate"))
170 (sha256
171 (base32
172 "0bgks405vz823bphgwhj4l9h6vpfh900s0phfk4qqijyh9xhfysn"))))
173 (build-system cargo-build-system)
174 (arguments
175 `(#:cargo-inputs
176 (("rust-compiler-builtins" ,rust-compiler-builtins-0.1)
177 ("rust-rustc-std-workspace-core" ,rust-rustc-std-workspace-core-1))
178 #:cargo-development-inputs
179 (("rust-bencher" ,rust-bencher-0.1)
180 ("rust-rand" ,rust-rand-0.4))))
181 (home-page "https://github.com/remram44/adler32-rs")
182 (synopsis "Implementation of the Adler32 rolling hash algorithm")
183 (description
184 "This library is an implementation of the Adler32 rolling hash algorithm in
185 the Rust programming language.")
186 (license (list license:bsd-3
187 license:zlib))))
188
189 (define-public rust-aead-0.3
190 (package
191 (name "rust-aead")
192 (version "0.3.2")
193 (source
194 (origin
195 (method url-fetch)
196 (uri (crate-uri "aead" version))
197 (file-name (string-append name "-" version ".tar.gz"))
198 (sha256
199 (base32
200 "0c8388alvivcj4qkxgh4s4l6fbczn3p8wc0pnar6crlfvcdmvjbz"))))
201 (build-system cargo-build-system)
202 (arguments
203 `(#:cargo-inputs
204 (("rust-blobby" ,rust-blobby-0.3)
205 ("rust-generic-array" ,rust-generic-array-0.14)
206 ("rust-heapless" ,rust-heapless-0.5))))
207 (home-page "https://github.com/RustCrypto/traits")
208 (synopsis "Traits for Authenticated Encryption with Associated Data (AEAD)
209 algorithms")
210 (description "This package provides traits for Authenticated Encryption
211 with Associated Data (AEAD) algorithms.")
212 (license (list license:expat license:asl2.0))))
213
214 (define-public rust-aes-0.4
215 (package
216 (name "rust-aes")
217 (version "0.4.0")
218 (source
219 (origin
220 (method url-fetch)
221 (uri (crate-uri "aes" version))
222 (file-name (string-append name "-" version ".tar.gz"))
223 (sha256
224 (base32
225 "1xgsp2bn5llsppald60iw4497gaspslg0a8hknhniiz4zmki607p"))))
226 (build-system cargo-build-system)
227 (arguments
228 `(#:cargo-inputs
229 (("rust-aes-soft" ,rust-aes-soft-0.4)
230 ("rust-aesni" ,rust-aesni-0.7)
231 ("rust-block-cipher" ,rust-block-cipher-0.7))
232 #:cargo-development-inputs
233 (("rust-block-cipher" ,rust-block-cipher-0.7))))
234 (home-page "https://github.com/RustCrypto/block-ciphers")
235 (synopsis "Facade for AES (Rijndael) block ciphers implementations")
236 (description "This package provides a facade for AES (Rijndael) block
237 ciphers implementations.")
238 (license (list license:expat license:asl2.0))))
239
240 (define-public rust-aes-gcm-0.6
241 (package
242 (name "rust-aes-gcm")
243 (version "0.6.0")
244 (source
245 (origin
246 (method url-fetch)
247 (uri (crate-uri "aes-gcm" version))
248 (file-name (string-append name "-" version ".tar.gz"))
249 (sha256
250 (base32
251 "1lga8my3zlc0b1nhcpc1hrbykfm014fqs6d64bwrjqii05w01xc6"))))
252 (build-system cargo-build-system)
253 (arguments
254 `(#:cargo-inputs
255 (("rust-aead" ,rust-aead-0.3)
256 ("rust-aes" ,rust-aes-0.4)
257 ("rust-block-cipher" ,rust-block-cipher-0.7)
258 ("rust-ghash" ,rust-ghash-0.3)
259 ("rust-subtle" ,rust-subtle-2)
260 ("rust-zeroize" ,rust-zeroize-1))
261 #:cargo-development-inputs
262 (("rust-criterion" ,rust-criterion-0.3)
263 ("rust-criterion-cycles-per-byte"
264 ,rust-criterion-cycles-per-byte-0.1)
265 ("rust-hex-literal" ,rust-hex-literal-0.2))))
266 (home-page "https://github.com/RustCrypto/AEADs")
267 (synopsis "AES-GCM (Galois/Counter Mode) Authenticated Encryption")
268 (description "This package provides a pure Rust implementation of the
269 AES-GCM (Galois/Counter Mode) Authenticated Encryption with Associated
270 Data (AEAD) Cipher with optional architecture-specific hardware
271 acceleration.")
272 (license (list license:asl2.0 license:expat))))
273
274 (define-public rust-aes-soft-0.4
275 (package
276 (name "rust-aes-soft")
277 (version "0.4.0")
278 (source
279 (origin
280 (method url-fetch)
281 (uri (crate-uri "aes-soft" version))
282 (file-name (string-append name "-" version ".tar.gz"))
283 (sha256
284 (base32
285 "19szsg0qqxq42k7bj5p3svb147n8wxy9a20n4g7mcl2fwrz689a9"))))
286 (build-system cargo-build-system)
287 (arguments
288 `(#:cargo-inputs
289 (("rust-block-cipher" ,rust-block-cipher-0.7)
290 ("rust-byteorder" ,rust-byteorder-1)
291 ("rust-opaque-debug" ,rust-opaque-debug-0.2))
292 #:cargo-development-inputs
293 (("rust-block-cipher" ,rust-block-cipher-0.7))))
294 (home-page "https://github.com/RustCrypto/block-ciphers")
295 (synopsis "Bit-sliced implementation of AES (Rijndael) block ciphers")
296 (description "This package provides a bit-sliced implementation of
297 AES (Rijndael) block ciphers.")
298 (license (list license:expat license:asl2.0))))
299
300 (define-public rust-aesni-0.7
301 (package
302 (name "rust-aesni")
303 (version "0.7.0")
304 (source
305 (origin
306 (method url-fetch)
307 (uri (crate-uri "aesni" version))
308 (file-name (string-append name "-" version ".tar.gz"))
309 (sha256
310 (base32
311 "0r6j0mjkyqnwvgib01cvrwfw8rlx1biw75234niv723n1fdx6l6h"))))
312 (build-system cargo-build-system)
313 (arguments
314 `(#:cargo-inputs
315 (("rust-block-cipher" ,rust-block-cipher-0.7)
316 ("rust-opaque-debug" ,rust-opaque-debug-0.2)
317 ("rust-stream-cipher" ,rust-stream-cipher-0.4))
318 #:cargo-development-inputs
319 (("rust-block-cipher" ,rust-block-cipher-0.7)
320 ("rust-stream-cipher" ,rust-stream-cipher-0.4))))
321 (home-page "https://github.com/RustCrypto/block-ciphers")
322 (synopsis "AES (Rijndael) block ciphers implementation using AES-NI")
323 (description "This package provides an implementation of AES (Rijndael)
324 block ciphers using AES-NI.")
325 (license (list license:expat license:asl2.0))))
326
327 (define-public rust-afl-0.8
328 (package
329 (name "rust-afl")
330 (version "0.8.0")
331 (source
332 (origin
333 (method url-fetch)
334 (uri (crate-uri "afl" version))
335 (file-name
336 (string-append name "-" version ".tar.gz"))
337 (sha256
338 (base32
339 "1rw11hycfjhqbc7z1smn75m0sczq519msjwimxh7b8s6n4pzk5r7"))))
340 (build-system cargo-build-system)
341 (arguments
342 `(#:skip-build? #t
343 #:cargo-inputs
344 (("rust-cc" ,rust-cc-1)
345 ("rust-clap" ,rust-clap-2)
346 ("rust-lazy-static" ,rust-lazy-static-1)
347 ("rust-libc" ,rust-libc-0.2)
348 ("rust-rustc-version" ,rust-rustc-version-0.2)
349 ("rust-xdg" ,rust-xdg-2.2))
350 #:cargo-development-inputs
351 (("rust-rustc-version" ,rust-rustc-version-0.2)
352 ("rust-xdg" ,rust-xdg-2.2))))
353 (home-page "https://github.com/rust-fuzz/afl.rs")
354 (synopsis
355 "Fuzzing Rust code with american-fuzzy-lop")
356 (description
357 "Fuzz Rust code with american-fuzzy-lop.")
358 (license license:asl2.0)))
359
360 (define-public rust-afl-0.5
361 (package
362 (inherit rust-afl-0.8)
363 (name "rust-afl")
364 (version "0.5.2")
365 (source
366 (origin
367 (method url-fetch)
368 (uri (crate-uri "afl" version))
369 (file-name
370 (string-append name "-" version ".tar.gz"))
371 (sha256
372 (base32
373 "0azpi917l8nhvx25n2v670nvkxkrhcwmddfi85qnr6kchmi6y946"))))
374 (arguments
375 `(#:skip-build? #t
376 #:cargo-inputs
377 (("rust-rustc-version" ,rust-rustc-version-0.2)
378 ("rust-cc" ,rust-cc-1)
379 ("rust-xdg" ,rust-xdg-2.2)
380 ("rust-clap" ,rust-clap-2))
381 #:cargo-development-inputs
382 (("rust-rustc-version" ,rust-rustc-version-0.2)
383 ("rust-xdg" ,rust-xdg-2.2))))))
384
385 (define-public rust-afl-0.4
386 (package
387 (inherit rust-afl-0.5)
388 (name "rust-afl")
389 (version "0.4.3")
390 (source
391 (origin
392 (method url-fetch)
393 (uri (crate-uri "afl" version))
394 (file-name
395 (string-append name "-" version ".tar.gz"))
396 (sha256
397 (base32
398 "0g2chc18ji7qxi0d03n2ai140qdcww958v5si6rcjnnhmri1vyfb"))))))
399
400 (define-public rust-ahash-0.4
401 (package
402 (name "rust-ahash")
403 (version "0.4.4")
404 (source
405 (origin
406 (method url-fetch)
407 (uri (crate-uri "ahash" version))
408 (file-name (string-append name "-" version ".tar.gz"))
409 (sha256
410 (base32
411 "06bxygcis4pfx0axi1ld0lclg8mf4plywdy7fnkyw2hrhcb74rkd"))))
412 (build-system cargo-build-system)
413 (arguments
414 `(#:cargo-inputs
415 (("rust-const-random" ,rust-const-random-0.1))
416 #:cargo-development-inputs
417 (("rust-criterion" ,rust-criterion-0.3)
418 ("rust-fnv" ,rust-fnv-1)
419 ("rust-fxhash" ,rust-fxhash-0.2)
420 ("rust-hex" ,rust-hex-0.3)
421 ("rust-no-panic" ,rust-no-panic-0.1)
422 ("rust-rand" ,rust-rand-0.6)
423 ("rust-seahash" ,rust-seahash-3))))
424 (home-page "https://github.com/tkaitchuck/ahash")
425 (synopsis "Non-cryptographic hash function using AES-NI")
426 (description "This package provides a non-cryptographic hash function
427 using AES-NI for high performance.")
428 (license (list license:expat license:asl2.0))))
429
430 (define-public rust-ahash-0.3
431 (package
432 (inherit rust-ahash-0.4)
433 (name "rust-ahash")
434 (version "0.3.8")
435 (source
436 (origin
437 (method url-fetch)
438 (uri (crate-uri "ahash" version))
439 (file-name
440 (string-append name "-" version ".tar.gz"))
441 (sha256
442 (base32
443 "05qjnr0wccch0gg2kghg0xyh8qd5gfqd15q9dd6r1lamcs375zg8"))))
444 (arguments
445 `(#:cargo-inputs
446 (("rust-const-random" ,rust-const-random-0.1))
447 #:cargo-development-inputs
448 (("rust-criterion" ,rust-criterion-0.3)
449 ("rust-fnv" ,rust-fnv-1)
450 ("rust-fxhash" ,rust-fxhash-0.2)
451 ("rust-hex" ,rust-hex-0.3)
452 ("rust-no-panic" ,rust-no-panic-0.1)
453 ("rust-rand" ,rust-rand-0.6)
454 ("rust-seahash" ,rust-seahash-3))))))
455
456 (define-public rust-aho-corasick-0.7
457 (package
458 (name "rust-aho-corasick")
459 (version "0.7.13")
460 (source
461 (origin
462 (method url-fetch)
463 (uri (crate-uri "aho-corasick" version))
464 (file-name
465 (string-append name "-" version ".tar.gz"))
466 (sha256
467 (base32
468 "11hfmqf90rdvjdpk0x1lixw1s9n08y3fxfy9zqsk0k2wpbc68c84"))))
469 (build-system cargo-build-system)
470 (arguments
471 `(#:cargo-inputs (("rust-memchr" ,rust-memchr-2))
472 #:cargo-development-inputs
473 (("rust-doc-comment" ,rust-doc-comment-0.3))))
474 (home-page "https://github.com/BurntSushi/aho-corasick")
475 (synopsis "Fast multiple substring searching")
476 (description
477 "Fast multiple substring searching.")
478 (license (list license:unlicense license:expat))))
479
480 (define-public rust-aho-corasick-0.6
481 (package
482 (inherit rust-aho-corasick-0.7)
483 (name "rust-aho-corasick")
484 (version "0.6.10")
485 (source
486 (origin
487 (method url-fetch)
488 (uri (crate-uri "aho-corasick" version))
489 (file-name
490 (string-append name "-" version ".tar.gz"))
491 (sha256
492 (base32
493 "19f8v503ibvlyr824g5ynicrh1lsmp2i0zmpszr8lqay0qw3vkl1"))))
494 (arguments
495 `(#:cargo-inputs
496 (("rust-memchr" ,rust-memchr-2))
497 #:cargo-development-inputs
498 (("rust-csv" ,rust-csv-1.1)
499 ("rust-docopt" ,rust-docopt-1.1)
500 ("rust-memmap" ,rust-memmap-0.6)
501 ("rust-quickcheck" ,rust-quickcheck-0.7)
502 ("rust-rand" ,rust-rand-0.5)
503 ("rust-serde" ,rust-serde-1)
504 ("rust-serde-derive" ,rust-serde-derive-1))))))
505
506 (define-public rust-aho-corasick-0.5
507 (package
508 (inherit rust-aho-corasick-0.6)
509 (name "rust-aho-corasick")
510 (version "0.5.3")
511 (source
512 (origin
513 (method url-fetch)
514 (uri (crate-uri "aho-corasick" version))
515 (file-name
516 (string-append name "-" version ".tar.gz"))
517 (sha256
518 (base32
519 "0rnvdmlajikq0i4zdy1p3pv699q6apvsxfc7av7byhppllp2r5ya"))))
520 (arguments
521 `(#:cargo-inputs
522 (("rust-memchr" ,rust-memchr-0.1))
523 #:cargo-development-inputs
524 (("rust-csv" ,rust-csv-0.14)
525 ("rust-docopt" ,rust-docopt-0.6)
526 ("rust-memmap" ,rust-memmap-0.2)
527 ("rust-quickcheck" ,rust-quickcheck-0.2)
528 ("rust-rand" ,rust-rand-0.3)
529 ("rust-rustc-serialize" ,rust-rustc-serialize-0.3))))))
530
531 (define-public rust-alga-0.9
532 (package
533 (name "rust-alga")
534 (version "0.9.3")
535 (source
536 (origin
537 (method url-fetch)
538 (uri (crate-uri "alga" version))
539 (file-name
540 (string-append name "-" version ".tar.gz"))
541 (sha256
542 (base32
543 "1wl4z8ini9269x04g8wwdz1nn3hmmvaaysq4jwhymikyg81kv0jg"))))
544 (build-system cargo-build-system)
545 (arguments
546 `(#:cargo-inputs
547 (("rust-approx" ,rust-approx-0.3)
548 ("rust-decimal" ,rust-decimal-2.0)
549 ("rust-num-complex" ,rust-num-complex-0.2)
550 ("rust-num-traits" ,rust-num-traits-0.2))
551 #:cargo-development-inputs
552 (("rust-alga-derive" ,rust-alga-derive-0.9)
553 ("rust-quickcheck" ,rust-quickcheck-0.8))))
554 (home-page "https://github.com/rustsim/alga")
555 (synopsis "Abstract algebra for Rust")
556 (description "Alga aims to provide solid mathematical abstractions to
557 algebra-focused applications. It defines and organizes through trait
558 inheritance the basic building blocks of general algebraic structures.
559 Specific implementations of algebraic structure traits are left to other
560 crates. Higher-level traits for specialized domains of algebra (like linear
561 algebra) are also provided and will prove useful for applications that include
562 code that is generic with regard to the algebraic entity types.")
563 (license license:asl2.0)))
564
565 (define-public rust-alga-derive-0.9
566 (package
567 (name "rust-alga-derive")
568 (version "0.9.2")
569 (source
570 (origin
571 (method url-fetch)
572 (uri (crate-uri "alga-derive" version))
573 (file-name
574 (string-append name "-" version ".tar.gz"))
575 (sha256
576 (base32
577 "0a2594j6blczz18vfg85agr7vsjrbq6900d3xwxw0zzbqj9j2adz"))))
578 (build-system cargo-build-system)
579 (arguments
580 `(#:cargo-inputs
581 (("rust-edit-distance" ,rust-edit-distance-2.1)
582 ("rust-proc-macro2" ,rust-proc-macro2-1)
583 ("rust-quickcheck" ,rust-quickcheck-0.9)
584 ("rust-quote" ,rust-quote-1)
585 ("rust-syn" ,rust-syn-1))))
586 (home-page "https://github.com/rustsim/alga")
587 (synopsis "Dutomatic deriving of abstract algebra traits")
588 (description "Derive attribute for implementing algebraic traits from the
589 @code{alga} crate.")
590 (license license:asl2.0)))
591
592 (define-public rust-alloc-no-stdlib-2
593 (package
594 (name "rust-alloc-no-stdlib")
595 (version "2.0.1")
596 (source
597 (origin
598 (method url-fetch)
599 (uri (crate-uri "alloc-no-stdlib" version))
600 (file-name (string-append name "-" version ".tar.gz"))
601 (sha256
602 (base32
603 "19lhmi73fii1b6vrzh23vvp5yjqm33cb94h9yz17pn25b51yr4ji"))))
604 (build-system cargo-build-system)
605 (home-page "https://github.com/dropbox/rust-alloc-no-stdlib")
606 (synopsis "Dynamic allocator that may be used with or without the stdlib")
607 (description "This package provides a dynamic allocator that may be used
608 with or without the stdlib. This allows a package with nostd to allocate
609 memory dynamically and be used either with a custom allocator, items on the
610 stack, or by a package that wishes to simply use Box<>. It also provides
611 options to use calloc or a mutable global variable for pre-zeroed memory.")
612 (license license:bsd-3)))
613
614 (define-public rust-alloc-no-stdlib-2.0 rust-alloc-no-stdlib-2)
615
616 (define-public rust-alloc-stdlib-0.2
617 (package
618 (name "rust-alloc-stdlib")
619 (version "0.2.1")
620 (source
621 (origin
622 (method url-fetch)
623 (uri (crate-uri "alloc-stdlib" version))
624 (file-name (string-append name "-" version ".tar.gz"))
625 (sha256
626 (base32
627 "1hj3r1x88aajnvigdck0diygj2isc90wa271kkj1swgiq3nxfzk9"))))
628 (build-system cargo-build-system)
629 (arguments
630 `(#:cargo-inputs
631 (("rust-alloc-no-stdlib" ,rust-alloc-no-stdlib-2.0))))
632 (home-page "https://github.com/dropbox/rust-alloc-no-stdlib")
633 (synopsis "A dynamic allocator example that may be used with the stdlib")
634 (description "This package provides a dynamic allocator example that may
635 be used with the stdlib.")
636 (license license:bsd-3)))
637
638 (define-public rust-android-glue-0.2
639 (package
640 (name "rust-android-glue")
641 (version "0.2.3")
642 (source
643 (origin
644 (method url-fetch)
645 (uri (crate-uri "android-glue" version))
646 (file-name
647 (string-append name "-" version ".tar.gz"))
648 (sha256
649 (base32
650 "01y495x4i9vqkwmklwn2xk7sqg666az2axjcpkr4iwngdwi48100"))))
651 (build-system cargo-build-system)
652 (home-page "https://github.com/tomaka/android-rs-glue")
653 (synopsis "Glue for the Android JNI")
654 (description "This package provides the glue for the Android JNI.")
655 (license license:expat)))
656
657 (define-public rust-ansi-parser-0.6
658 (package
659 (name "rust-ansi-parser")
660 (version "0.6.5")
661 (source
662 (origin
663 (method url-fetch)
664 (uri (crate-uri "ansi-parser" version))
665 (file-name
666 (string-append name "-" version ".tar.gz"))
667 (sha256
668 (base32 "152idb8a6gwdxzj6m099h3xgx8vw0sjc6skgw94nm2k3y5swc6kn"))))
669 (build-system cargo-build-system)
670 (arguments
671 `(#:cargo-inputs
672 (("rust-heapless" ,rust-heapless-0.5)
673 ("rust-nom" ,rust-nom-4.2))))
674 (home-page "https://gitlab.com/DavidBittner/ansi-parser")
675 (synopsis "Library using nom for parsing ANSI escape codes")
676 (description
677 "This package provides a library using nom for parsing ANSI
678 escape codes.")
679 (license license:mpl2.0)))
680
681 (define-public rust-antidote-1.0
682 (package
683 (name "rust-antidote")
684 (version "1.0.0")
685 (source
686 (origin
687 (method url-fetch)
688 (uri (crate-uri "antidote" version))
689 (file-name (string-append name "-" version ".crate"))
690 (sha256
691 (base32
692 "19g2sw2qa2ibnh4x7j1snk46593jgx6y7rnvva496ynq61af5z9l"))))
693 (build-system cargo-build-system)
694 (home-page "https://github.com/sfackler/rust-antidote")
695 (synopsis "Poison-free Mutex and RwLock types")
696 (description
697 "These types expose identical APIs to the standard library @code{Mutex} and
698 @code{RwLock} except that they do not return @code{PoisonError}s.")
699 (license (list license:asl2.0
700 license:expat))))
701
702 (define-public rust-anyhow-1.0
703 (package
704 (name "rust-anyhow")
705 (version "1.0.26")
706 (source
707 (origin
708 (method url-fetch)
709 (uri (crate-uri "anyhow" version))
710 (file-name
711 (string-append name "-" version ".tar.gz"))
712 (sha256
713 (base32
714 "0g6mzcxyj88k8bv8rr3zx4yczgimqvvgr12n14a29sqj6s1zc9bq"))))
715 (build-system cargo-build-system)
716 (arguments
717 `(#:skip-build? #t
718 #:cargo-development-inputs
719 (("rust-futures" ,rust-futures-0.3)
720 ("rust-rustversion" ,rust-rustversion-1)
721 ("rust-thiserror" ,rust-thiserror-1)
722 ("rust-trybuild" ,rust-trybuild-1))))
723 (home-page "https://github.com/dtolnay/anyhow")
724 (synopsis "Flexible concrete Error type")
725 (description "This package provides a flexible concrete Error type built on
726 @code{std::error::Error}.")
727 (license (list license:expat license:asl2.0))))
728
729 (define-public rust-approx-0.3
730 (package
731 (name "rust-approx")
732 (version "0.3.2")
733 (source
734 (origin
735 (method url-fetch)
736 (uri (crate-uri "approx" version))
737 (file-name
738 (string-append name "-" version ".tar.gz"))
739 (sha256
740 (base32
741 "1hx580xjdxl3766js9b49rnbnmr8gw8c060809l43k9f0xshprph"))))
742 (build-system cargo-build-system)
743 (arguments
744 `(#:skip-build? #t
745 #:cargo-inputs
746 (("rust-num-complex" ,rust-num-complex-0.2)
747 ("rust-num-traits" ,rust-num-traits-0.2))))
748 (home-page "https://github.com/brendanzab/approx")
749 (synopsis
750 "Approximate floating point equality comparisons and assertions")
751 (description
752 "Approximate floating point equality comparisons and assertions.")
753 (license license:asl2.0)))
754
755 (define-public rust-approx-0.1
756 (package
757 (inherit rust-approx-0.3)
758 (name "rust-approx")
759 (version "0.1.1")
760 (source
761 (origin
762 (method url-fetch)
763 (uri (crate-uri "approx" version))
764 (file-name
765 (string-append name "-" version ".tar.gz"))
766 (sha256
767 (base32
768 "153awzwywmb61xg857b80l63b1x6hifx2pha7lxf6fck9qxwraq8"))))
769 (arguments '())))
770
771 (define-public rust-arbitrary-0.2
772 (package
773 (name "rust-arbitrary")
774 (version "0.2.0")
775 (source
776 (origin
777 (method url-fetch)
778 (uri (crate-uri "arbitrary" version))
779 (file-name
780 (string-append name "-" version ".tar.gz"))
781 (sha256
782 (base32
783 "1i3fhcdyjq4isn22xx2svmpfr5hwyzi0wavbm07fs8i2dv5pdkv4"))))
784 (build-system cargo-build-system)
785 (home-page "https://github.com/nagisa/rust_arbitrary/")
786 (synopsis "Trait for generating structured data from unstructured data")
787 (description
788 "The trait for generating structured data from unstructured data.")
789 (license (list license:expat license:asl2.0))))
790
791 (define-public rust-arc-swap-0.4
792 (package
793 (name "rust-arc-swap")
794 (version "0.4.4")
795 (source
796 (origin
797 (method url-fetch)
798 (uri (crate-uri "arc-swap" version))
799 (file-name
800 (string-append name "-" version ".tar.gz"))
801 (sha256
802 (base32
803 "1zwswfi9n7n3hiq51w1xv34572k2diazx680rrxlc9w07c9akf6p"))))
804 (build-system cargo-build-system)
805 (arguments
806 `(#:cargo-development-inputs
807 (("rust-crossbeam-utils" ,rust-crossbeam-utils-0.6)
808 ("rust-itertools" ,rust-itertools-0.8)
809 ("rust-model" ,rust-model-0.1)
810 ("rust-num-cpus" ,rust-num-cpus-1)
811 ("rust-once-cell" ,rust-once-cell-1)
812 ("rust-proptest" ,rust-proptest-0.8)
813 ("rust-version-sync" ,rust-version-sync-0.8))))
814 (home-page "https://github.com/vorner/arc-swap")
815 (synopsis "Atomically swappable Arc")
816 (description "This package provides an atomically swappable Arc.")
817 (license (list license:asl2.0 license:expat))))
818
819 (define-public rust-arg-enum-proc-macro-0.3
820 (package
821 (name "rust-arg-enum-proc-macro")
822 (version "0.3.0")
823 (source
824 (origin
825 (method url-fetch)
826 (uri (crate-uri "arg_enum_proc_macro" version))
827 (file-name
828 (string-append name "-" version ".tar.gz"))
829 (sha256
830 (base32
831 "021rr6j3n031ynfbm7kwb3j3bxvbsz40n0nqi78k47d3p92rihcv"))))
832 (build-system cargo-build-system)
833 (arguments
834 `(#:cargo-inputs
835 (("rust-proc-macro2" ,rust-proc-macro2-1)
836 ("rust-syn" ,rust-syn-1)
837 ("rust-quote" ,rust-quote-1))))
838 (home-page "https://github.com/lu-zero/arg_enum_proc_macro")
839 (synopsis "Procedural macro compatible with clap arg_enum")
840 (description
841 "This package provides a procedural macro compatible with clap's
842 @code{arg_enum}.")
843 (license license:expat)))
844
845 (define-public rust-argon2rs-0.2
846 (package
847 (name "rust-argon2rs")
848 (version "0.2.5")
849 (source
850 (origin
851 (method url-fetch)
852 (uri (crate-uri "argon2rs" version))
853 (file-name
854 (string-append name "-" version ".tar.gz"))
855 (sha256
856 (base32
857 "14mkgkrjd4b4zy92pflz6yb4j1wn2chbd8jczxknxbkdm2vb0rrz"))))
858 (build-system cargo-build-system)
859 (arguments
860 `(#:cargo-inputs
861 (("rust-blake2-rfc" ,rust-blake2-rfc-0.2)
862 ("rust-scoped-threadpool" ,rust-scoped-threadpool-0.1))
863 #:cargo-development-inputs
864 (("rust-cargon" ,rust-cargon-0.0))
865 #:phases
866 (modify-phases %standard-phases
867 (add-after 'unpack 'fix-cargo-toml
868 (lambda _
869 (substitute* "Cargo.toml"
870 (("\\{ path =.*,") "{"))
871 #t)))))
872 (home-page "https://github.com/bryant/argon2rs")
873 (synopsis "Rust password hashing library that runs on Argon2")
874 (description "This package provides a pure Rust password hashing library
875 that runs on Argon2.")
876 (license license:expat)))
877
878 (define-public rust-arrayref-0.3
879 (package
880 (name "rust-arrayref")
881 (version "0.3.6")
882 (source
883 (origin
884 (method url-fetch)
885 (uri (crate-uri "arrayref" version))
886 (file-name
887 (string-append name "-" version ".tar.gz"))
888 (sha256
889 (base32
890 "0i6m1l3f73i0lf0cjdf5rh3xpvxydyhfbakq7xx7bkrp5qajgid4"))))
891 (build-system cargo-build-system)
892 (arguments
893 `(#:cargo-development-inputs
894 (("rust-quickcheck" ,rust-quickcheck-0.6))))
895 (home-page "https://github.com/droundy/arrayref")
896 (synopsis "Macros to take array references of slices")
897 (description
898 "Macros to take array references of slices.")
899 (license license:bsd-2)))
900
901 (define-public rust-arrayvec-0.5
902 (package
903 (name "rust-arrayvec")
904 (version "0.5.1")
905 (source
906 (origin
907 (method url-fetch)
908 (uri (crate-uri "arrayvec" version))
909 (file-name
910 (string-append name "-" version ".tar.gz"))
911 (sha256
912 (base32
913 "1f5mca8kiiwhvhxd1mbnq68j6v6rk139sch567zwwzl6hs37vxyg"))))
914 (build-system cargo-build-system)
915 (arguments
916 `(#:skip-build? #t
917 #:cargo-inputs
918 (("rust-serde" ,rust-serde-1))
919 #:cargo-development-inputs
920 (("rust-bencher" ,rust-bencher-0.1)
921 ("rust-matches" ,rust-matches-0.1)
922 ("rust-serde-test" ,rust-serde-test-1))))
923 (home-page "https://github.com/bluss/arrayvec")
924 (synopsis "Vector with fixed capacity")
925 (description
926 "This package provides a vector with fixed capacity, backed by an
927 array (it can be stored on the stack too). Implements fixed capacity
928 ArrayVec and ArrayString.")
929 (license (list license:expat license:asl2.0))))
930
931 (define-public rust-arrayvec-0.4
932 (package
933 (inherit rust-arrayvec-0.5)
934 (name "rust-arrayvec")
935 (version "0.4.12")
936 (source
937 (origin
938 (method url-fetch)
939 (uri (crate-uri "arrayvec" version))
940 (file-name
941 (string-append name "-" version ".tar.gz"))
942 (sha256
943 (base32
944 "1fdiv5m627gh6flp4mpmi1mh647imm9x423licsr11psz97d97yd"))))
945 (arguments
946 `(#:skip-build? #t
947 #:cargo-inputs
948 (("rust-nodrop" ,rust-nodrop-0.1)
949 ("rust-serde" ,rust-serde-1))
950 #:cargo-development-inputs
951 (("rust-bencher" ,rust-bencher-0.1)
952 ("rust-matches" ,rust-matches-0.1)
953 ("rust-serde-test" ,rust-serde-test-1))))))
954
955 (define-public rust-as-slice-0.1
956 (package
957 (name "rust-as-slice")
958 (version "0.1.4")
959 (source
960 (origin
961 (method url-fetch)
962 (uri (crate-uri "as-slice" version))
963 (file-name (string-append name "-" version ".tar.gz"))
964 (sha256
965 (base32
966 "1rmhdfj11va424163d6r79wbgf2043i2p37s59ky6x2v8wiiqkdv"))))
967 (build-system cargo-build-system)
968 (arguments
969 `(#:cargo-inputs
970 (("rust-generic-array-0.14" ,rust-generic-array-0.14)
971 ("rust-generic-array-0.13" ,rust-generic-array-0.13)
972 ("rust-generic-array-0.12" ,rust-generic-array-0.12)
973 ("rust-stable-deref-trait" ,rust-stable-deref-trait-1))))
974 (home-page "https://github.com/japaric/as-slice")
975 (synopsis "AsSlice and AsMutSlice traits")
976 (description "This package provides @code{AsSlice} and @code{AsMutSlice}
977 traits.")
978 (license (list license:expat license:asl2.0))))
979
980 (define-public rust-ascii-1.0
981 (package
982 (name "rust-ascii")
983 (version "1.0.0")
984 (source
985 (origin
986 (method url-fetch)
987 (uri (crate-uri "ascii" version))
988 (file-name
989 (string-append name "-" version ".tar.gz"))
990 (sha256
991 (base32
992 "0281gc828q4j692gb66jfdr5k16gyszgqflylh0pp30rllv63xdv"))))
993 (build-system cargo-build-system)
994 (arguments
995 `(#:skip-build? #t
996 #:cargo-inputs
997 (("rust-serde" ,rust-serde-1)
998 ("rust-serde-test" ,rust-serde-test-1))))
999 (home-page "https://github.com/tomprogrammer/rust-ascii")
1000 (synopsis "ASCII-only equivalents to `char`, `str` and `String`.")
1001 (description
1002 "A rust library that provides ASCII-only string and character types,
1003 equivalent to the @code{char}, @code{str} and @code{String} types in the
1004 standard library.")
1005 (license (list license:asl2.0 license:expat))))
1006
1007 (define-public rust-ascii-0.9
1008 (package
1009 (inherit rust-ascii-1.0)
1010 (name "rust-ascii")
1011 (version "0.9.3")
1012 (source
1013 (origin
1014 (method url-fetch)
1015 (uri (crate-uri "ascii" version))
1016 (file-name
1017 (string-append name "-" version ".tar.gz"))
1018 (sha256
1019 (base32
1020 "0km3zzkhrr22drf9p1zcblqirlxkdc7zra25acpi0h8qax5c1cga"))))
1021 (arguments
1022 `(#:cargo-inputs
1023 (("rust-quickcheck" ,rust-quickcheck-0.6)
1024 ("rust-serde" ,rust-serde-1)
1025 ("rust-serde-test" ,rust-serde-test-1))))))
1026
1027 (define-public rust-assert-cli-0.6
1028 (package
1029 (name "rust-assert-cli")
1030 (version "0.6.3")
1031 (source
1032 (origin
1033 (method url-fetch)
1034 (uri (crate-uri "assert-cli" version))
1035 (file-name (string-append name "-" version ".tar.gz"))
1036 (sha256
1037 (base32 "0jc1bh3cvnl66bl7s5gr1xnm0hl8d2l3gmil0pmhp5v2xp0bg6m2"))))
1038 (build-system cargo-build-system)
1039 (arguments
1040 `(#:tests? #f ;; requires `printenv`, but installing coreutils doesn't help
1041 #:cargo-inputs
1042 (("rust-colored" ,rust-colored-1)
1043 ("rust-difference" ,rust-difference-2)
1044 ("rust-environment" ,rust-environment-0.1)
1045 ("rust-failure" ,rust-failure-0.1)
1046 ("rust-failure-derive" ,rust-failure-derive-0.1)
1047 ("rust-serde-json" ,rust-serde-json-1))
1048 #:cargo-development-inputs
1049 (("rust-docmatic" ,rust-docmatic-0.1))))
1050 (home-page "https://github.com/assert-rs/assert_cli")
1051 (synopsis "Test CLI Applications")
1052 (description "This package helps testing CLI Applications.")
1053 (license (list license:expat license:asl2.0))))
1054
1055 (define-public rust-assert-cmd-1
1056 (package
1057 (name "rust-assert-cmd")
1058 (version "1.0.1")
1059 (source
1060 (origin
1061 (method url-fetch)
1062 (uri (crate-uri "assert-cmd" version))
1063 (file-name
1064 (string-append name "-" version ".tar.gz"))
1065 (sha256
1066 (base32
1067 "1nhqr0zimizcnqfggccfznyrmvklgqwhklsh0f1yq5lwdyi9r2y8"))))
1068 (build-system cargo-build-system)
1069 (arguments
1070 `(#:cargo-inputs
1071 (("rust-doc-comment" ,rust-doc-comment-0.3)
1072 ("rust-predicates" ,rust-predicates-1)
1073 ("rust-predicates-core" ,rust-predicates-core-1)
1074 ("rust-predicates-tree" ,rust-predicates-tree-1)
1075 ("rust-wait-timeout" ,rust-wait-timeout-0.2))
1076 #:cargo-development-inputs
1077 (("rust-escargot" ,rust-escargot-0.5))))
1078 (home-page "https://github.com/assert-rs/assert_cmd")
1079 (synopsis "Test CLI Applications")
1080 (description "Test CLI Applications.")
1081 (license (list license:expat license:asl2.0))))
1082
1083 (define-public rust-assert-fs-0.11
1084 (package
1085 (name "rust-assert-fs")
1086 (version "0.11.3")
1087 (source
1088 (origin
1089 (method url-fetch)
1090 (uri (crate-uri "assert-fs" version))
1091 (file-name
1092 (string-append name "-" version ".tar.gz"))
1093 (sha256
1094 (base32
1095 "1h1q90qskbylv4g3jyizdanj73835q7vvq7q10y555x4gnavmrjc"))))
1096 (build-system cargo-build-system)
1097 (arguments
1098 `(#:cargo-inputs
1099 (("rust-globwalk" ,rust-globwalk-0.5)
1100 ("rust-predicates" ,rust-predicates-1)
1101 ("rust-predicates-core" ,rust-predicates-core-1)
1102 ("rust-predicates-tree" ,rust-predicates-tree-1)
1103 ("rust-tempfile" ,rust-tempfile-3))
1104 #:cargo-development-inputs
1105 (("rust-docmatic" ,rust-docmatic-0.1))))
1106 (home-page "https://github.com/assert-rs/assert_fs")
1107 (synopsis "File system fixtures and assertions for testing")
1108 (description
1109 "File system fixtures and assertions for testing.")
1110 (license (list license:expat license:asl2.0))))
1111
1112 (define-public rust-assert-matches-1.3
1113 (package
1114 (name "rust-assert-matches")
1115 (version "1.3.0")
1116 (source
1117 (origin
1118 (method url-fetch)
1119 (uri (crate-uri "assert_matches" version))
1120 (file-name
1121 (string-append name "-" version ".tar.gz"))
1122 (sha256
1123 (base32
1124 "1rar61v00gz2aniid0mylxcr4q98s6l77c3hvbszmg57kj10msvx"))))
1125 (build-system cargo-build-system)
1126 (home-page "https://github.com/murarth/assert_matches")
1127 (synopsis "Asserts that a value matches a pattern")
1128 (description
1129 "This package asserts that a value matches a pattern in Rust.")
1130 (license (list license:expat license:asl2.0))))
1131
1132 (define-public rust-aster-0.41
1133 (package
1134 (name "rust-aster")
1135 (version "0.41.0")
1136 (source
1137 (origin
1138 (method url-fetch)
1139 (uri (crate-uri "aster" version))
1140 (file-name
1141 (string-append name "-" version ".tar.gz"))
1142 (sha256
1143 (base32
1144 "1q704kn23wnwnrxml7w1mxw6a3xb6386x5wgys6ibnyramrxzksc"))))
1145 (build-system cargo-build-system)
1146 (arguments
1147 `(#:skip-build? #t
1148 #:cargo-inputs
1149 (("rust-clippy" ,rust-clippy-0.0)
1150 ("rust-compiletest-rs" ,rust-compiletest-rs-0.2)
1151 ("rust-syntex-syntax" ,rust-syntex-syntax-0.58))))
1152 (home-page "https://github.com/serde-rs/aster")
1153 (synopsis "Libsyntax ast builder")
1154 (description "This package provides a libsyntax ast builder.")
1155 (license (list license:expat license:asl2.0))))
1156
1157 (define-public rust-async-compression-0.3
1158 (package
1159 (name "rust-async-compression")
1160 (version "0.3.5")
1161 (source
1162 (origin
1163 (method url-fetch)
1164 (uri (crate-uri "async-compression" version))
1165 (file-name (string-append name "-" version ".tar.gz"))
1166 (sha256
1167 (base32
1168 "164dfy1wrl9qbj95rvcpkfbrkpz3c1s7mk288sv9cwp7rj5pc8ch"))))
1169 (build-system cargo-build-system)
1170 (arguments
1171 `(#:cargo-inputs
1172 (("rust-brotli" ,rust-brotli-3)
1173 ("rust-bytes" ,rust-bytes-0.5)
1174 ("rust-bzip2" ,rust-bzip2-0.3)
1175 ("rust-flate2" ,rust-flate2-1)
1176 ("rust-futures-core" ,rust-futures-core-0.3)
1177 ("rust-futures-io" ,rust-futures-io-0.3)
1178 ("rust-memchr" ,rust-memchr-2)
1179 ("rust-pin-project-lite" ,rust-pin-project-lite-0.1)
1180 ("rust-tokio" ,rust-tokio-0.2)
1181 ("rust-xz2" ,rust-xz2-0.1)
1182 ("rust-zstd" ,rust-zstd-0.5)
1183 ("rust-zstd-safe" ,rust-zstd-safe-2))
1184 #:cargo-development-inputs
1185 (("rust-bytes" ,rust-bytes-0.5)
1186 ("rust-futures" ,rust-futures-0.3)
1187 ("rust-futures-test" ,rust-futures-test-0.3)
1188 ("rust-ntest" ,rust-ntest-0.3)
1189 ("rust-proptest" ,rust-proptest-0.9)
1190 ("rust-proptest-derive" ,rust-proptest-derive-0.1)
1191 ("rust-rand" ,rust-rand-0.7)
1192 ("rust-timebomb" ,rust-timebomb-0.1)
1193 ("rust-tokio" ,rust-tokio-0.2))))
1194 (home-page "https://github.com/Nemo157/async-compression")
1195 (synopsis "Adaptors between compression crates and Rust's modern asynchronous IO types")
1196 (description "This package provides adaptors between compression crates
1197 and Rust's modern asynchronous IO types.")
1198 (license (list license:expat license:asl2.0))))
1199
1200 (define-public rust-async-trait-0.1
1201 (package
1202 (name "rust-async-trait")
1203 (version "0.1.40")
1204 (source
1205 (origin
1206 (method url-fetch)
1207 (uri (crate-uri "async-trait" version))
1208 (file-name (string-append name "-" version ".tar.gz"))
1209 (sha256
1210 (base32
1211 "10x7jcg8xqvkmqyz11117aw959p4af5gq1cpf022b9f0hl6j6z38"))))
1212 (build-system cargo-build-system)
1213 (arguments
1214 `(#:cargo-inputs
1215 (("rust-proc-macro2" ,rust-proc-macro2-1)
1216 ("rust-quote" ,rust-quote-1)
1217 ("rust-syn" ,rust-syn-1))
1218 #:cargo-development-inputs
1219 (("rust-rustversion" ,rust-rustversion-1)
1220 ("rust-tracing" ,rust-tracing-0.1)
1221 ("rust-tracing-attributes" ,rust-tracing-attributes-0.1)
1222 ("rust-tracing-futures" ,rust-tracing-futures-0.2)
1223 ("rust-trybuild" ,rust-trybuild-1))))
1224 (home-page "https://github.com/dtolnay/async-trait")
1225 (synopsis "Type erasure for async trait methods")
1226 (description "This package provides type erasure for async trait
1227 methods.")
1228 (license (list license:expat license:asl2.0))))
1229
1230 (define-public rust-atom-0.3
1231 (package
1232 (name "rust-atom")
1233 (version "0.3.5")
1234 (source
1235 (origin
1236 (method url-fetch)
1237 (uri (crate-uri "atom" version))
1238 (file-name (string-append name "-" version ".tar.gz"))
1239 (sha256
1240 (base32
1241 "1qig9fcdqf07mzzpkicm5wgxv0zpr28njdsqf708wxq27yf6k1iw"))))
1242 (build-system cargo-build-system)
1243 (home-page "https://github.com/slide-rs/atom")
1244 (synopsis "A safe abstraction around AtomicPtr")
1245 (description "This package provides a safe abstraction around AtomicPtr.")
1246 (license license:asl2.0)))
1247
1248 (define-public rust-atty-0.2
1249 (package
1250 (name "rust-atty")
1251 (version "0.2.14")
1252 (source
1253 (origin
1254 (method url-fetch)
1255 (uri (crate-uri "atty" version))
1256 (file-name (string-append name "-" version ".crate"))
1257 (sha256
1258 (base32
1259 "1s7yslcs6a28c5vz7jwj63lkfgyx8mx99fdirlhi9lbhhzhrpcyr"))))
1260 (build-system cargo-build-system)
1261 (arguments
1262 `(#:skip-build? #t
1263 #:cargo-inputs
1264 (("rust-hermit-abi" ,rust-hermit-abi-0.1)
1265 ("rust-libc" ,rust-libc-0.2)
1266 ("rust-winapi" ,rust-winapi-0.3))))
1267 (home-page "https://github.com/softprops/atty")
1268 (synopsis "Simple interface for querying atty")
1269 (description
1270 "This package provides a simple interface for querying atty.")
1271 (license license:expat)))
1272
1273 (define-public rust-autocfg-1.0
1274 (package
1275 (name "rust-autocfg")
1276 (version "1.0.1")
1277 (source
1278 (origin
1279 (method url-fetch)
1280 (uri (crate-uri "autocfg" version))
1281 (file-name
1282 (string-append name "-" version ".tar.gz"))
1283 (sha256
1284 (base32
1285 "0jj6i9zn4gjl03kjvziqdji6rwx8ykz8zk2ngpc331z2g3fk3c6d"))))
1286 (build-system cargo-build-system)
1287 (home-page "https://github.com/cuviper/autocfg")
1288 (synopsis
1289 "Automatic cfg for Rust compiler features")
1290 (description
1291 "Automatic cfg for Rust compiler features.")
1292 (license (list license:asl2.0 license:expat))))
1293
1294 (define-public rust-autocfg-0.1
1295 (package
1296 (inherit rust-autocfg-1.0)
1297 (name "rust-autocfg")
1298 (version "0.1.7")
1299 (source
1300 (origin
1301 (method url-fetch)
1302 (uri (crate-uri "autocfg" version))
1303 (file-name (string-append name "-" version ".crate"))
1304 (sha256
1305 (base32
1306 "1chwgimpx5z7xbag7krr9d8asxfqbh683qhgl9kn3hxk2l0djj8x"))))
1307 (arguments '(#:skip-build? #t))))
1308
1309 (define-public rust-average-0.10
1310 (package
1311 (name "rust-average")
1312 (version "0.10.4")
1313 (source
1314 (origin
1315 (method url-fetch)
1316 (uri (crate-uri "average" version))
1317 (file-name
1318 (string-append name "-" version ".tar.gz"))
1319 (sha256
1320 (base32
1321 "1dmsxqcr1n0i20qr9g2g6j89kkx8dy6w18dbqzx1wi42wj1chgvh"))))
1322 (build-system cargo-build-system)
1323 (arguments
1324 `(#:cargo-inputs
1325 (("rust-conv" ,rust-conv-0.3)
1326 ("rust-float-ord" ,rust-float-ord-0.2)
1327 ("rust-num-traits" ,rust-num-traits-0.2)
1328 ("rust-serde" ,rust-serde-1)
1329 ("rust-serde-big-array" ,rust-serde-big-array-0.2)
1330 ("rust-serde-derive" ,rust-serde-derive-1))
1331 #:cargo-development-inputs
1332 (("rust-bencher" ,rust-bencher-0.1)
1333 ("rust-proptest" ,rust-proptest-0.9)
1334 ("rust-quantiles" ,rust-quantiles-0.7)
1335 ("rust-rand" ,rust-rand-0.7)
1336 ("rust-rand-distr" ,rust-rand-distr-0.2)
1337 ("rust-rand-xoshiro" ,rust-rand-xoshiro-0.4)
1338 ("rust-serde-json" ,rust-serde-json-1)
1339 ("rust-streaming-stats" ,rust-streaming-stats-0.2))))
1340 (home-page "https://github.com/vks/average")
1341 (synopsis "Calculate statistics iteratively")
1342 (description "This crate provides for calculating statistics iteratively
1343 in Rust.")
1344 (license (list license:asl2.0 license:expat))))
1345
1346 (define-public rust-average-0.9
1347 (package
1348 (inherit rust-average-0.10)
1349 (name "rust-average")
1350 (version "0.9.4")
1351 (source
1352 (origin
1353 (method url-fetch)
1354 (uri (crate-uri "average" version))
1355 (file-name (string-append name "-" version ".tar.gz"))
1356 (sha256
1357 (base32
1358 "1f8ya00bv6qki9m7b4lb3bn845rj473mx02qpm7wgy5qc1yp75xs"))))
1359 (arguments
1360 `(#:cargo-inputs
1361 (("rust-conv" ,rust-conv-0.3)
1362 ("rust-float-ord" ,rust-float-ord-0.2)
1363 ("rust-num-integer" ,rust-num-integer-0.1)
1364 ("rust-num-traits" ,rust-num-traits-0.2)
1365 ("rust-serde" ,rust-serde-1)
1366 ("rust-serde-big-array" ,rust-serde-big-array-0.1)
1367 ("rust-serde-derive" ,rust-serde-derive-1))
1368 #:cargo-development-inputs
1369 (("rust-bencher" ,rust-bencher-0.1)
1370 ("rust-quantiles" ,rust-quantiles-0.7)
1371 ("rust-rand" ,rust-rand-0.6)
1372 ("rust-serde-json" ,rust-serde-json-1)
1373 ("rust-streaming-stats" ,rust-streaming-stats-0.2))))))
1374
1375 (define-public rust-az-1
1376 (package
1377 (name "rust-az")
1378 (version "1.0.0")
1379 (source
1380 (origin
1381 (method url-fetch)
1382 (uri (crate-uri "az" version))
1383 (file-name
1384 (string-append name "-" version ".tar.gz"))
1385 (sha256
1386 (base32
1387 "0sb51w9pjcqb315dg6zv9wwqj1q2fldcc3xmfv0bhkmajiyx9g79"))))
1388 (build-system cargo-build-system)
1389 (home-page "https://gitlab.com/tspiteri/az")
1390 (synopsis "Casts and checked casts")
1391 (description "This crate provides casts and checked casts.")
1392 (license (list license:expat license:asl2.0))))
1393
1394 (define-public rust-backtrace-0.3
1395 (package
1396 (name "rust-backtrace")
1397 (version "0.3.46")
1398 (source
1399 (origin
1400 (method url-fetch)
1401 (uri (crate-uri "backtrace" version))
1402 (file-name
1403 (string-append name "-" version ".tar.gz"))
1404 (sha256
1405 (base32
1406 "17hh1vrhfd01qpjilrdpy7q0lf2j2qv36achpg37q92rff4r5rmi"))))
1407 (build-system cargo-build-system)
1408 (arguments
1409 `(#:skip-build? #t
1410 #:cargo-inputs
1411 (("rust-addr2line" ,rust-addr2line-0.11)
1412 ("rust-backtrace-sys" ,rust-backtrace-sys-0.1)
1413 ("rust-cfg-if" ,rust-cfg-if-0.1)
1414 ("rust-compiler-builtins" ,rust-compiler-builtins-0.1)
1415 ("rust-cpp-demangle" ,rust-cpp-demangle-0.2)
1416 ("rust-findshlibs" ,rust-findshlibs-0.5)
1417 ("rust-goblin" ,rust-goblin-0.2)
1418 ("rust-libc" ,rust-libc-0.2)
1419 ("rust-memmap" ,rust-memmap-0.7)
1420 ("rust-rustc-demangle" ,rust-rustc-demangle-0.1)
1421 ("rust-rustc-serialize" ,rust-rustc-serialize-0.3)
1422 ("rust-rustc-std-workspace-core" ,rust-rustc-std-workspace-core-1)
1423 ("rust-serde" ,rust-serde-1)
1424 ("rust-winapi" ,rust-winapi-0.3))))
1425 (home-page "https://github.com/rust-lang/backtrace-rs")
1426 (synopsis
1427 "Acquire a stack trace (backtrace) at runtime in a Rust program")
1428 (description
1429 "This package provides a library to acquire a stack
1430 trace (backtrace) at runtime in a Rust program.")
1431 (license (list license:asl2.0 license:expat))))
1432
1433 (define-public rust-backtrace-0.3.35
1434 (package
1435 (inherit rust-backtrace-0.3)
1436 (name "rust-backtrace")
1437 (version "0.3.35")
1438 (source
1439 (origin
1440 (method url-fetch)
1441 (uri (crate-uri "backtrace" version))
1442 (file-name
1443 (string-append name "-" version ".tar.gz"))
1444 (sha256
1445 (base32
1446 "0mfwbb6832rh1za304w8x37bvs9fjbybpmmz0iksqfzsaf108w8k"))))))
1447
1448 (define-public rust-backtrace-sys-0.1
1449 (package
1450 (name "rust-backtrace-sys")
1451 (version "0.1.37")
1452 (source
1453 (origin
1454 (method url-fetch)
1455 (uri (crate-uri "backtrace-sys" version))
1456 (file-name (string-append name "-" version ".crate"))
1457 (sha256
1458 (base32
1459 "16a3igz22q9lnnjjr77f4k8ci48v8zdwrs67khx3h7wx3jzfpyqq"))))
1460 (build-system cargo-build-system)
1461 (arguments
1462 `(#:cargo-inputs
1463 (("rust-libc" ,rust-libc-0.2)
1464 ("rust-compiler-builtins" ,rust-compiler-builtins-0.1)
1465 ("rust-rustc-std-workspace-core" ,rust-rustc-std-workspace-core-1)
1466 ("rust-cc" ,rust-cc-1))))
1467 (home-page "https://github.com/rust-lang/backtrace-rs")
1468 (synopsis "Bindings to the libbacktrace gcc library")
1469 (description
1470 "This package provides bindings to the libbacktrace gcc library.")
1471 (license (list license:asl2.0
1472 license:expat))))
1473
1474 (define-public rust-base58-0.1
1475 (package
1476 (name "rust-base58")
1477 (version "0.1.0")
1478 (source
1479 (origin
1480 (method url-fetch)
1481 (uri (crate-uri "base58" version))
1482 (file-name
1483 (string-append name "-" version ".tar.gz"))
1484 (sha256
1485 (base32
1486 "10xfw6v7jzn9i682mkw9nqybzafrvl3i2wawwgp5a8gh2n0fw92h"))))
1487 (build-system cargo-build-system)
1488 (home-page "https://github.com/debris/base58")
1489 (synopsis "Tiny and fast base58 encoding")
1490 (description
1491 "Encode to base58 using only Rust. This package is based on
1492 @url{https://github.com/trezor/trezor-crypto/blob/master/base58.c} at commit
1493 c6e7d37. However, this package works only up to 128 bytes.")
1494 (license license:expat)))
1495
1496 (define-public rust-base64-0.12
1497 (package
1498 (name "rust-base64")
1499 (version "0.12.3")
1500 (source
1501 (origin
1502 (method url-fetch)
1503 (uri (crate-uri "base64" version))
1504 (file-name
1505 (string-append name "-" version ".tar.gz"))
1506 (sha256
1507 (base32
1508 "1zq33had71xh48n17g4kqs96szhx3yh7qibzwi4fk217n3vz0h9l"))
1509 (modules '((guix build utils)))
1510 (snippet
1511 '(begin
1512 ;; 'doctest' isn't stable until rust-1.40
1513 (substitute* "src/lib.rs"
1514 (("\\(doctest") "(test"))
1515 #t))))
1516 (build-system cargo-build-system)
1517 (arguments
1518 `(#:cargo-development-inputs
1519 (("rust-criterion" ,rust-criterion-0.3)
1520 ("rust-doc-comment" ,rust-doc-comment-0.3)
1521 ("rust-rand" ,rust-rand-0.6))))
1522 (home-page "https://github.com/marshallpierce/rust-base64")
1523 (synopsis "Encodes and decodes base64 as bytes or utf8")
1524 (description
1525 "This package encodes and decodes base64 as bytes or utf8.")
1526 (license (list license:expat license:asl2.0))))
1527
1528 (define-public rust-base64-0.11
1529 (package
1530 (inherit rust-base64-0.12)
1531 (name "rust-base64")
1532 (version "0.11.0")
1533 (source
1534 (origin
1535 (method url-fetch)
1536 (uri (crate-uri "base64" version))
1537 (file-name
1538 (string-append name "-" version ".tar.gz"))
1539 (sha256
1540 (base32
1541 "1iqmims6yvr6vwzyy54qd672zw29ipjj17p8klcr578c9ajpw6xl"))))))
1542
1543 (define-public rust-base64-0.10
1544 (package
1545 (inherit rust-base64-0.11)
1546 (name "rust-base64")
1547 (version "0.10.1")
1548 (source
1549 (origin
1550 (method url-fetch)
1551 (uri (crate-uri "base64" version))
1552 (file-name
1553 (string-append name "-" version ".tar.gz"))
1554 (sha256
1555 (base32
1556 "13k6bvd3n6dm7jqn9x918w65dd9xhx454bqphbnv0bkd6n9dj98b"))))
1557 (arguments
1558 `(#:cargo-inputs
1559 (("rust-byteorder" ,rust-byteorder-1))
1560 #:cargo-development-inputs
1561 (("rust-criterion" ,rust-criterion-0.2)
1562 ("rust-rand" ,rust-rand-0.4))))))
1563
1564 (define-public rust-base64-0.9
1565 (package
1566 (inherit rust-base64-0.11)
1567 (name "rust-base64")
1568 (version "0.9.3")
1569 (source
1570 (origin
1571 (method url-fetch)
1572 (uri (crate-uri "base64" version))
1573 (file-name (string-append name "-" version ".tar.gz"))
1574 (sha256
1575 (base32 "0hs62r35bgxslawyrn1vp9rmvrkkm76fqv0vqcwd048vs876r7a8"))))
1576 (arguments
1577 `(#:cargo-inputs
1578 (("rust-byteorder" ,rust-byteorder-1)
1579 ("rust-safemem" ,rust-safemem-0.3))
1580 #:cargo-development-inputs
1581 (("rust-rand" ,rust-rand-0.4))))))
1582
1583 (define-public rust-base-x-0.2
1584 (package
1585 (name "rust-base-x")
1586 (version "0.2.6")
1587 (source
1588 (origin
1589 (method url-fetch)
1590 (uri (crate-uri "base-x" version))
1591 (file-name (string-append name "-" version ".crate"))
1592 (sha256
1593 (base32
1594 "1hfy0wv7j5ynd73yk1vyr32pqa77rp15lkrc54f8ky9c6hcbc80v"))))
1595 (build-system cargo-build-system)
1596 (arguments
1597 `(#:skip-build? #t
1598 #:cargo-development-inputs
1599 (("rust-bencher" ,rust-bencher-0.1)
1600 ("rust-json" ,rust-json-0.11)
1601 ("rust-rand" ,rust-rand-0.3))))
1602 (home-page "https://github.com/OrKoN/base-x-rs")
1603 (synopsis "Encode/decode any base")
1604 (description "This library provides for encoding and decoding any base.")
1605 (license license:expat)))
1606
1607 (define-public rust-bencher-0.1
1608 (package
1609 (name "rust-bencher")
1610 (version "0.1.5")
1611 (source
1612 (origin
1613 (method url-fetch)
1614 (uri (crate-uri "bencher" version))
1615 (file-name (string-append name "-" version ".crate"))
1616 (sha256
1617 (base32
1618 "1x8p2xblgqssay8cdykp5pkfc0np0jk5bs5cx4f5av097aav9zbx"))))
1619 (build-system cargo-build-system)
1620 (home-page "https://github.com/bluss/bencher/")
1621 (synopsis "Port of the libtest benchmark runner to Rust stable")
1622 (description "This package provides a port of the libtest (unstable Rust)
1623 benchmark runner to Rust stable releases. Supports running benchmarks and
1624 filtering based on the name. Benchmark execution works exactly the same way
1625 and no more (caveat: black_box is still missing!).")
1626 (license (list license:asl2.0
1627 license:expat))))
1628
1629 (define-public rust-better-panic-0.2
1630 (package
1631 (name "rust-better-panic")
1632 (version "0.2.0")
1633 (source
1634 (origin
1635 (method url-fetch)
1636 (uri (crate-uri "better-panic" version))
1637 (file-name
1638 (string-append name "-" version ".tar.gz"))
1639 (sha256
1640 (base32
1641 "0xl48v6pd9ys7wp0ni62i6q73xpd1nhf92z09sjc9n3lrj0ac4ix"))))
1642 (build-system cargo-build-system)
1643 (arguments
1644 `(#:cargo-inputs
1645 (("rust-backtrace" ,rust-backtrace-0.3)
1646 ("rust-console" ,rust-console-0.9)
1647 ("rust-syntect" ,rust-syntect-3.3))))
1648 (home-page "https://github.com/mitsuhiko/better-panic")
1649 (synopsis "Pretty backtraces inspired by Python's tracebacks")
1650 (description
1651 "This package provides pretty panic backtraces inspired by Python's
1652 tracebacks.")
1653 (license (list license:expat license:asl2.0))))
1654
1655 (define-public rust-bigdecimal-0.2
1656 (package
1657 (name "rust-bigdecimal")
1658 (version "0.2.0")
1659 (source
1660 (origin
1661 (method url-fetch)
1662 (uri (crate-uri "bigdecimal" version))
1663 (file-name (string-append name "-" version ".tar.gz"))
1664 (sha256
1665 (base32
1666 "0fd5chyy76y4qb043w1bbgz1v22f9hw5703f5r90ac5hwqk3qh6c"))))
1667 (build-system cargo-build-system)
1668 (arguments
1669 `(#:cargo-inputs
1670 (("rust-num-bigint" ,rust-num-bigint-0.3)
1671 ("rust-num-integer" ,rust-num-integer-0.1)
1672 ("rust-num-traits" ,rust-num-traits-0.2)
1673 ("rust-serde" ,rust-serde-1))
1674 #:cargo-development-inputs
1675 (("rust-serde-json" ,rust-serde-json-1))))
1676 (home-page "https://github.com/akubera/bigdecimal-rs")
1677 (synopsis "Arbitrary precision decimal numbers")
1678 (description "This package provides arbitrary precision decimal numbers.")
1679 (license (list license:expat license:asl2.0))))
1680
1681 (define-public rust-bincode-1
1682 (package
1683 (name "rust-bincode")
1684 (version "1.3.1")
1685 (source
1686 (origin
1687 (method url-fetch)
1688 (uri (crate-uri "bincode" version))
1689 (file-name
1690 (string-append name "-" version ".tar.gz"))
1691 (sha256
1692 (base32
1693 "0vc9pjh6hfp9vfq752sa88rxwg93ydhm0dvvy58rcvx2p8wkl3gk"))))
1694 (build-system cargo-build-system)
1695 (arguments
1696 `(#:cargo-inputs
1697 (("rust-serde" ,rust-serde-1)
1698 ("rust-byteorder" ,rust-byteorder-1))
1699 #:cargo-development-inputs
1700 (("rust-serde-bytes" ,rust-serde-bytes-0.11)
1701 ("rust-serde-derive" ,rust-serde-derive-1))))
1702 (home-page "https://github.com/servo/bincode")
1703 (synopsis
1704 "Binary serialization/deserialization strategy")
1705 (description
1706 "This package provides a binary serialization/deserialization strategy
1707 that uses Serde for transforming structs into bytes and vice versa!")
1708 (license license:expat)))
1709
1710 (define-public rust-bindgen-0.55
1711 (package
1712 (name "rust-bindgen")
1713 (version "0.55.1")
1714 (source
1715 (origin
1716 (method url-fetch)
1717 (uri (crate-uri "bindgen" version))
1718 (file-name (string-append name "-" version ".tar.gz"))
1719 (sha256
1720 (base32
1721 "0hxlvy9q9984rr3rqaxwmgxjrd9wh11mcc161hv3shz6b7jkrcbm"))))
1722 (build-system cargo-build-system)
1723 (inputs
1724 `(("clang" ,clang)))
1725 (arguments
1726 `(#:cargo-inputs
1727 (("rust-bitflags" ,rust-bitflags-1)
1728 ("rust-cexpr" ,rust-cexpr-0.4)
1729 ("rust-cfg-if" ,rust-cfg-if-0.1)
1730 ("rust-clang-sys" ,rust-clang-sys-1)
1731 ("rust-clap" ,rust-clap-2)
1732 ("rust-env-logger" ,rust-env-logger-0.7)
1733 ("rust-lazy-static" ,rust-lazy-static-1)
1734 ("rust-lazycell" ,rust-lazycell-1)
1735 ("rust-log" ,rust-log-0.4)
1736 ("rust-peeking-take-while" ,rust-peeking-take-while-0.1)
1737 ("rust-proc-macro2" ,rust-proc-macro2-1)
1738 ("rust-quote" ,rust-quote-1)
1739 ("rust-regex" ,rust-regex-1)
1740 ("rust-rustc-hash" ,rust-rustc-hash-1)
1741 ("rust-shlex" ,rust-shlex-0.1)
1742 ("rust-which" ,rust-which-3))
1743 #:cargo-development-inputs
1744 (("rust-clap" ,rust-clap-2)
1745 ("rust-diff" ,rust-diff-0.1)
1746 ("rust-shlex" ,rust-shlex-0.1))
1747 #:phases
1748 (modify-phases %standard-phases
1749 (add-after 'unpack 'enable-unstable-features
1750 (lambda _
1751 (setenv "RUSTC_BOOTSTRAP" "1")
1752 #t)))))
1753 (home-page "https://rust-lang.github.io/rust-bindgen/")
1754 (synopsis "Generate Rust FFI bindings to C and C++ libraries.")
1755 (description "This package can be used to automatically generate Rust FFI
1756 bindings to C and C++ libraries.")
1757 (license license:bsd-3)))
1758
1759 (define-public rust-bindgen-0.54
1760 (package
1761 (inherit rust-bindgen-0.55)
1762 (name "rust-bindgen")
1763 (version "0.54.1")
1764 (source
1765 (origin
1766 (method url-fetch)
1767 (uri (crate-uri "bindgen" version))
1768 (file-name
1769 (string-append name "-" version ".tar.gz"))
1770 (sha256
1771 (base32
1772 "0dn7dlwa0abjlqbl2kvwfdy6k6kgcqg6ixcjmk6pc3dpps09pm7l"))))
1773 (build-system cargo-build-system)
1774 (arguments
1775 `(#:tests? #f ; not all test files included
1776 #:cargo-inputs
1777 (("rust-bitflags" ,rust-bitflags-1)
1778 ("rust-cexpr" ,rust-cexpr-0.4)
1779 ("rust-cfg-if" ,rust-cfg-if-0.1)
1780 ("rust-clang-sys" ,rust-clang-sys-0.29)
1781 ("rust-clap" ,rust-clap-2)
1782 ("rust-env-logger" ,rust-env-logger-0.7)
1783 ("rust-lazy-static" ,rust-lazy-static-1)
1784 ("rust-lazycell" ,rust-lazycell-1)
1785 ("rust-log" ,rust-log-0.4)
1786 ("rust-peeking-take-while" ,rust-peeking-take-while-0.1)
1787 ("rust-proc-macro2" ,rust-proc-macro2-1)
1788 ("rust-quote" ,rust-quote-1)
1789 ("rust-regex" ,rust-regex-1)
1790 ("rust-rustc-hash" ,rust-rustc-hash-1)
1791 ("rust-shlex" ,rust-shlex-0.1)
1792 ("rust-which" ,rust-which-3))
1793 #:cargo-development-inputs
1794 (("rust-clap" ,rust-clap-2)
1795 ("rust-diff" ,rust-diff-0.1)
1796 ("rust-shlex" ,rust-shlex-0.1))))
1797 (inputs
1798 `(("clang" ,clang)))))
1799
1800 (define-public rust-bindgen-0.53
1801 (package
1802 (inherit rust-bindgen-0.54)
1803 (name "rust-bindgen")
1804 (version "0.53.3")
1805 (source
1806 (origin
1807 (method url-fetch)
1808 (uri (crate-uri "bindgen" version))
1809 (file-name
1810 (string-append name "-" version ".tar.gz"))
1811 (sha256
1812 (base32
1813 "1rc9grfd25bk5b2acmqljhx55ndbzmh7w8b3x6q707cb4s6rfan7"))))
1814 (arguments
1815 `(#:cargo-inputs
1816 (("rust-bitflags" ,rust-bitflags-1)
1817 ("rust-cexpr" ,rust-cexpr-0.4)
1818 ("rust-cfg-if" ,rust-cfg-if-0.1)
1819 ("rust-clang-sys" ,rust-clang-sys-0.29)
1820 ("rust-clap" ,rust-clap-2)
1821 ("rust-env-logger" ,rust-env-logger-0.7)
1822 ("rust-lazy-static" ,rust-lazy-static-1)
1823 ("rust-lazycell" ,rust-lazycell-1)
1824 ("rust-log" ,rust-log-0.4)
1825 ("rust-peeking-take-while" ,rust-peeking-take-while-0.1)
1826 ("rust-proc-macro2" ,rust-proc-macro2-1)
1827 ("rust-quote" ,rust-quote-1)
1828 ("rust-regex" ,rust-regex-1)
1829 ("rust-rustc-hash" ,rust-rustc-hash-1)
1830 ("rust-shlex" ,rust-shlex-0.1)
1831 ("rust-which" ,rust-which-3))
1832 #:cargo-development-inputs
1833 (("rust-clap" ,rust-clap-2)
1834 ("rust-diff" ,rust-diff-0.1)
1835 ("rust-shlex" ,rust-shlex-0.1))))))
1836
1837 (define-public rust-bindgen-0.52
1838 (package
1839 (inherit rust-bindgen-0.53)
1840 (name "rust-bindgen")
1841 (version "0.52.0")
1842 (source
1843 (origin
1844 (method url-fetch)
1845 (uri (crate-uri "bindgen" version))
1846 (file-name
1847 (string-append name "-" version ".tar.gz"))
1848 (sha256
1849 (base32
1850 "0mzy2gjiaggl602yn4a11xzrxfj18kl7pwqa5yv32njkxd257j7i"))))
1851 (arguments
1852 `(#:cargo-inputs
1853 (("rust-shlex" ,rust-shlex-0.1)
1854 ("rust-cfg-if" ,rust-cfg-if-0.1)
1855 ("rust-peeking-take-while"
1856 ,rust-peeking-take-while-0.1)
1857 ("rust-clang-sys" ,rust-clang-sys-0.28)
1858 ("rust-cexpr" ,rust-cexpr-0.3)
1859 ("rust-log" ,rust-log-0.4)
1860 ("rust-env-logger" ,rust-env-logger-0.7)
1861 ("rust-proc-macro2" ,rust-proc-macro2-1)
1862 ("rust-quote" ,rust-quote-1)
1863 ("rust-rustc-hash" ,rust-rustc-hash-1)
1864 ("rust-bitflags" ,rust-bitflags-1)
1865 ("rust-lazycell" ,rust-lazycell-1)
1866 ("rust-regex" ,rust-regex-1)
1867 ("rust-lazy-static" ,rust-lazy-static-1)
1868 ("rust-clap" ,rust-clap-2)
1869 ("rust-which" ,rust-which-3))
1870 #:cargo-development-inputs
1871 (("rust-clap" ,rust-clap-2)
1872 ("rust-diff" ,rust-diff-0.1)
1873 ("rust-shlex" ,rust-shlex-0.1))))))
1874
1875 (define-public rust-bindgen-0.51
1876 (package
1877 (inherit rust-bindgen-0.52)
1878 (name "rust-bindgen")
1879 (version "0.51.1")
1880 (source
1881 (origin
1882 (method url-fetch)
1883 (uri (crate-uri "bindgen" version))
1884 (file-name
1885 (string-append name "-" version ".tar.gz"))
1886 (sha256
1887 (base32
1888 "0x9gndlnwmxsihxvsc3izyyss7g8b2djn0daafshj1gcy69i7mzb"))))
1889 (arguments
1890 `(#:cargo-inputs
1891 (("rust-shlex" ,rust-shlex-0.1)
1892 ("rust-cfg-if" ,rust-cfg-if-0.1)
1893 ("rust-peeking-take-while"
1894 ,rust-peeking-take-while-0.1)
1895 ("rust-clang-sys" ,rust-clang-sys-0.28)
1896 ("rust-cexpr" ,rust-cexpr-0.3)
1897 ("rust-log" ,rust-log-0.4)
1898 ("rust-env-logger" ,rust-env-logger-0.6)
1899 ("rust-proc-macro2" ,rust-proc-macro2-1)
1900 ("rust-quote" ,rust-quote-1)
1901 ("rust-rustc-hash" ,rust-rustc-hash-1)
1902 ("rust-bitflags" ,rust-bitflags-1)
1903 ("rust-regex" ,rust-regex-1)
1904 ("rust-lazy-static" ,rust-lazy-static-1)
1905 ("rust-clap" ,rust-clap-2)
1906 ("rust-which" ,rust-which-3))
1907 #:cargo-development-inputs
1908 (("rust-clap" ,rust-clap-2)
1909 ("rust-diff" ,rust-diff-0.1)
1910 ("rust-shlex" ,rust-shlex-0.1))))
1911 (inputs `())))
1912
1913 (define-public rust-bindgen-0.50
1914 (package
1915 (inherit rust-bindgen-0.51)
1916 (name "rust-bindgen")
1917 (version "0.50.1")
1918 (source
1919 (origin
1920 (method url-fetch)
1921 (uri (crate-uri "bindgen" version))
1922 (file-name
1923 (string-append name "-" version ".tar.gz"))
1924 (sha256
1925 (base32
1926 "1fp98x0k4cawil3rqxsfrb58pq3mb5mn37rp745zxfmjfigml3nb"))))
1927 (arguments
1928 `(#:cargo-inputs
1929 (("rust-bitflags" ,rust-bitflags-1)
1930 ("rust-cexpr" ,rust-cexpr-0.3)
1931 ("rust-cfg-if" ,rust-cfg-if-0.1)
1932 ("rust-clang-sys" ,rust-clang-sys-0.28)
1933 ("rust-clap" ,rust-clap-2)
1934 ("rust-env-logger" ,rust-env-logger-0.6)
1935 ("rust-fxhash" ,rust-fxhash-0.2)
1936 ("rust-lazy-static" ,rust-lazy-static-1)
1937 ("rust-log" ,rust-log-0.4)
1938 ("rust-peeking-take-while" ,rust-peeking-take-while-0.1)
1939 ("rust-proc-macro2" ,rust-proc-macro2-0.4)
1940 ("rust-quote" ,rust-quote-0.6)
1941 ("rust-regex" ,rust-regex-1)
1942 ("rust-shlex" ,rust-shlex-0.1)
1943 ("rust-which" ,rust-which-2.0))
1944 #:cargo-development-inputs
1945 (("rust-clap" ,rust-clap-2)
1946 ("rust-diff" ,rust-diff-0.1)
1947 ("rust-shlex" ,rust-shlex-0.1))))))
1948
1949 (define-public rust-bindgen-0.37
1950 (package
1951 (inherit rust-bindgen-0.50)
1952 (name "rust-bindgen")
1953 (version "0.37.4")
1954 (source
1955 (origin
1956 (method url-fetch)
1957 (uri (crate-uri "bindgen" version))
1958 (file-name
1959 (string-append name "-" version ".tar.gz"))
1960 (sha256
1961 (base32
1962 "08f2cyzr8fc027mzj2lhmn5j3w318g2ql7yfw5ngxa3yhy1an98v"))))
1963 (arguments
1964 `(#:skip-build? #t
1965 #:cargo-inputs
1966 (("rust-cfg-if" ,rust-cfg-if-0.1)
1967 ("rust-peeking-take-while"
1968 ,rust-peeking-take-while-0.1)
1969 ("rust-cexpr" ,rust-cexpr-0.2)
1970 ("rust-clang-sys" ,rust-clang-sys-0.23)
1971 ("rust-proc-macro2" ,rust-proc-macro2-0.3) ; 0.3.5
1972 ("rust-log" ,rust-log-0.4)
1973 ("rust-env-logger" ,rust-env-logger-0.5)
1974 ("rust-quote" ,rust-quote-0.5)
1975 ("rust-which" ,rust-which-1.0)
1976 ("rust-regex" ,rust-regex-1)
1977 ("rust-lazy-static" ,rust-lazy-static-1)
1978 ("rust-clap" ,rust-clap-2))
1979 #:cargo-development-inputs
1980 (("rust-clap" ,rust-clap-2)
1981 ("rust-diff" ,rust-diff-0.1)
1982 ("rust-shlex" ,rust-shlex-0.1))))))
1983
1984 (define-public rust-bindgen-0.49
1985 (package/inherit rust-bindgen-0.50
1986 (name "rust-bindgen")
1987 (version "0.49.4")
1988 (source
1989 (origin
1990 (method url-fetch)
1991 (uri (crate-uri "bindgen" version))
1992 (file-name (string-append name "-" version ".tar.gz"))
1993 (sha256
1994 (base32 "0vjacbvashvds5rbrlqvq5fy55wmp50iia3mnczvycap7mzhh1sc"))))
1995 (build-system cargo-build-system)
1996 (arguments
1997 `(#:cargo-inputs
1998 (("rust-bitflags" ,rust-bitflags-1)
1999 ("rust-cexpr" ,rust-cexpr-0.3)
2000 ("rust-cfg-if" ,rust-cfg-if-0.1)
2001 ("rust-clang-sys" ,rust-clang-sys-0.28)
2002 ("rust-clap" ,rust-clap-2)
2003 ("rust-env-logger" ,rust-env-logger-0.6)
2004 ("rust-fxhash" ,rust-fxhash-0.2)
2005 ("rust-lazy-static" ,rust-lazy-static-1)
2006 ("rust-log" ,rust-log-0.4)
2007 ("rust-peeking-take-while" ,rust-peeking-take-while-0.1)
2008 ("rust-proc-macro2" ,rust-proc-macro2-0.4)
2009 ("rust-quote" ,rust-quote-0.6)
2010 ("rust-regex" ,rust-regex-1)
2011 ("rust-shlex" ,rust-shlex-0.1)
2012 ("rust-which" ,rust-which-2.0))
2013 #:cargo-development-inputs
2014 (("rust-clap" ,rust-clap-2)
2015 ("rust-diff" ,rust-diff-0.1)
2016 ("rust-shlex" ,rust-shlex-0.1))))))
2017
2018 (define-public rust-bindgen-0.33
2019 (package
2020 (inherit rust-bindgen-0.50)
2021 (name "rust-bindgen")
2022 (version "0.33.2")
2023 (source
2024 (origin
2025 (method url-fetch)
2026 (uri (crate-uri "bindgen" version))
2027 (file-name
2028 (string-append name "-" version ".tar.gz"))
2029 (sha256
2030 (base32
2031 "0vnw5fb74gl9pgnimgbrkac1xgwrjz86pqilx20rbkia77cdhgk0"))))
2032 (build-system cargo-build-system)
2033 (arguments
2034 `(#:cargo-inputs
2035 (("rust-cexpr" ,rust-cexpr-0.2)
2036 ("rust-cfg-if" ,rust-cfg-if-0.1)
2037 ("rust-clang-sys" ,rust-clang-sys-0.22)
2038 ("rust-clap" ,rust-clap-2)
2039 ("rust-env-logger" ,rust-env-logger-0.5)
2040 ("rust-lazy-static" ,rust-lazy-static-1)
2041 ("rust-log" ,rust-log-0.4)
2042 ("rust-peeking-take-while" ,rust-peeking-take-while-0.1)
2043 ("rust-quote" ,rust-quote-0.3)
2044 ("rust-regex" ,rust-regex-0.2)
2045 ("rust-which" ,rust-which-1.0))
2046 #:cargo-development-inputs
2047 (("rust-clap" ,rust-clap-2)
2048 ("rust-diff" ,rust-diff-0.1)
2049 ("rust-shlex" ,rust-shlex-0.1))))))
2050
2051 (define-public rust-bit-set-0.5
2052 (package
2053 (name "rust-bit-set")
2054 (version "0.5.1")
2055 (source
2056 (origin
2057 (method url-fetch)
2058 (uri (crate-uri "bit-set" version))
2059 (file-name
2060 (string-append name "-" version ".tar.gz"))
2061 (sha256
2062 (base32
2063 "100ac8867bvbx9kv634w4xjk98b71i8nq4wdcvpf3cf4ha4j6k78"))))
2064 (build-system cargo-build-system)
2065 (arguments
2066 `(#:skip-build? #t
2067 #:cargo-inputs
2068 (("rust-bit-vec" ,rust-bit-vec-0.5))
2069 #:cargo-development-inputs
2070 (("rust-rand" ,rust-rand-0.4))))
2071 (home-page "https://github.com/contain-rs/bit-set")
2072 (synopsis "Set of bits")
2073 (description
2074 "This package provides a set of bits.")
2075 (license (list license:asl2.0 license:expat))))
2076
2077 (define-public rust-bit-set-0.4
2078 (package
2079 (inherit rust-bit-set-0.5)
2080 (name "rust-bit-set")
2081 (version "0.4.0")
2082 (source
2083 (origin
2084 (method url-fetch)
2085 (uri (crate-uri "bit-set" version))
2086 (file-name
2087 (string-append name "-" version ".tar.gz"))
2088 (sha256
2089 (base32
2090 "0320hhcbr73yzjpj2237vw2zq728yg7vmzb8dardg04ff4263gyr"))))
2091 (build-system cargo-build-system)
2092 (arguments
2093 `(#:cargo-inputs
2094 (("rust-bit-vec" ,rust-bit-vec-0.4))
2095 #:cargo-development-inputs
2096 (("rust-rand" ,rust-rand-0.3))))))
2097
2098 (define-public rust-bit-vec-0.5
2099 (package
2100 (name "rust-bit-vec")
2101 (version "0.5.1")
2102 (source
2103 (origin
2104 (method url-fetch)
2105 (uri (crate-uri "bit-vec" version))
2106 (file-name
2107 (string-append name "-" version ".tar.gz"))
2108 (sha256
2109 (base32
2110 "1fyh8221s6cxlmng01v8v2ljhavzawqqs8r1xjc66ap5sjavx6zm"))))
2111 (build-system cargo-build-system)
2112 (arguments
2113 `(#:skip-build? #t
2114 #:cargo-inputs
2115 (("rust-serde" ,rust-serde-1))
2116 #:cargo-development-inputs
2117 (("rust-serde-json" ,rust-serde-json-1))))
2118 (home-page "https://github.com/contain-rs/bit-vec")
2119 (synopsis "Vector of bits")
2120 (description
2121 "This package provides a vector of bits.")
2122 (license (list license:expat license:asl2.0))))
2123
2124 (define-public rust-bit-vec-0.4
2125 (package
2126 (inherit rust-bit-vec-0.5)
2127 (name "rust-bit-vec")
2128 (version "0.4.4")
2129 (source
2130 (origin
2131 (method url-fetch)
2132 (uri (crate-uri "bit-vec" version))
2133 (file-name
2134 (string-append name "-" version ".tar.gz"))
2135 (sha256
2136 (base32
2137 "0pw902a8ail0k64a7092a8vngfzsq7xkj2r22hz6q1z62s5zzd02"))))
2138 (arguments
2139 `(#:cargo-development-inputs
2140 (("rust-rand" ,rust-rand-0.3))))))
2141
2142 (define-public rust-bitflags-1
2143 (package
2144 (name "rust-bitflags")
2145 (version "1.2.1")
2146 (source
2147 (origin
2148 (method url-fetch)
2149 (uri (crate-uri "bitflags" version))
2150 (file-name (string-append name "-" version ".crate"))
2151 (sha256
2152 (base32
2153 "14qnd5nq8p2almk79m4m8ydqhd413yaxsyjp5xd19g3mikzf47fg"))))
2154 (build-system cargo-build-system)
2155 (home-page "https://github.com/bitflags/bitflags")
2156 (synopsis "Macro to generate structures which behave like bitflags")
2157 (description "This package provides a macro to generate structures which
2158 behave like a set of bitflags.")
2159 (license (list license:asl2.0
2160 license:expat))))
2161
2162 (define-public rust-bitflags-0.9
2163 (package
2164 (inherit rust-bitflags-1)
2165 (name "rust-bitflags")
2166 (version "0.9.1")
2167 (source
2168 (origin
2169 (method url-fetch)
2170 (uri (crate-uri "bitflags" version))
2171 (file-name
2172 (string-append name "-" version ".tar.gz"))
2173 (sha256
2174 (base32
2175 "19dk39gfwmhi3iy1x0wgml1fv1bkb525ywy25zwihbm063i05zaf"))))))
2176
2177 (define-public rust-bitflags-0.8
2178 (package
2179 (inherit rust-bitflags-1)
2180 (name "rust-bitflags")
2181 (version "0.8.2")
2182 (source
2183 (origin
2184 (method url-fetch)
2185 (uri (crate-uri "bitflags" version))
2186 (file-name
2187 (string-append name "-" version ".tar.gz"))
2188 (sha256
2189 (base32
2190 "1x5z8hmirpnapkx6sww8gkc6x0q8ppni0lbsigm3mrba5byfjw0k"))))))
2191
2192 (define-public rust-bitflags-0.7
2193 (package
2194 (inherit rust-bitflags-1)
2195 (name "rust-bitflags")
2196 (version "0.7.0")
2197 (source
2198 (origin
2199 (method url-fetch)
2200 (uri (crate-uri "bitflags" version))
2201 (file-name
2202 (string-append name "-" version ".tar.gz"))
2203 (sha256
2204 (base32
2205 "0v8hh6wdkpk9my8z8442g4hqrqf05h0qj53dsay6mv18lqvqklda"))))))
2206
2207 (define-public rust-bitflags-0.5
2208 (package
2209 (inherit rust-bitflags-1)
2210 (name "rust-bitflags")
2211 (version "0.5.0")
2212 (source
2213 (origin
2214 (method url-fetch)
2215 (uri (crate-uri "bitflags" version))
2216 (file-name (string-append name "-" version ".tar.gz"))
2217 (sha256
2218 (base32 "08qdq5w1nd3hzwsrxk0dxzqv4g8wbwj6v2193njskwzdd09r6rsg"))))))
2219
2220 (define-public rust-bitstream-io-0.8
2221 (package
2222 (name "rust-bitstream-io")
2223 (version "0.8.5")
2224 (source
2225 (origin
2226 (method url-fetch)
2227 (uri (crate-uri "bitstream-io" version))
2228 (file-name
2229 (string-append name "-" version ".tar.gz"))
2230 (sha256
2231 (base32
2232 "00a6wy54s1dmadm5xz8k2cbsd7ixvm48mlc45bk0fdy0pbra6jk1"))))
2233 (build-system cargo-build-system)
2234 (arguments `(#:skip-build? #t))
2235 (home-page
2236 "https://github.com/tuffy/bitstream-io")
2237 (synopsis
2238 "Library for reading/writing un-aligned values from/to streams in big-endian and little-endian formats.")
2239 (description
2240 "Library for reading/writing un-aligned values from/to streams in big-endian and little-endian formats.")
2241 (license (list license:expat license:asl2.0))))
2242
2243 (define-public rust-blake2-0.8
2244 (package
2245 (name "rust-blake2")
2246 (version "0.8.1")
2247 (source
2248 (origin
2249 (method url-fetch)
2250 (uri (crate-uri "blake2" version))
2251 (file-name
2252 (string-append name "-" version ".tar.gz"))
2253 (sha256
2254 (base32
2255 "0c4k11j04kqhkci6i9b7lz6p13kpcv228pdqixgrawvavaq0gjwl"))))
2256 (build-system cargo-build-system)
2257 (arguments
2258 `(#:cargo-inputs
2259 (("rust-byte-tools" ,rust-byte-tools-0.3)
2260 ("rust-crypto-mac" ,rust-crypto-mac-0.7)
2261 ("rust-digest" ,rust-digest-0.8)
2262 ("rust-opaque-debug" ,rust-opaque-debug-0.2))
2263 #:cargo-development-inputs
2264 (("rust-crypto-mac" ,rust-crypto-mac-0.7)
2265 ("rust-digest" ,rust-digest-0.8)
2266 ("rust-hex-literal" ,rust-hex-literal-0.1))))
2267 (home-page "https://github.com/RustCrypto/hashes")
2268 (synopsis "BLAKE2 hash functions")
2269 (description "This package provides BLAKE2 hash functions in Rust.")
2270 (license (list license:expat license:asl2.0))))
2271
2272 (define-public rust-blake2-rfc-0.2
2273 (package
2274 (name "rust-blake2-rfc")
2275 (version "0.2.18")
2276 (source
2277 (origin
2278 (method url-fetch)
2279 (uri (crate-uri "blake2-rfc" version))
2280 (file-name
2281 (string-append name "-" version ".tar.gz"))
2282 (sha256
2283 (base32
2284 "0034g47hyq2bzmk40895ill1mbnpmmjakdq3dmm9clidvl5m6vax"))))
2285 (build-system cargo-build-system)
2286 (arguments
2287 `(#:skip-build? #t
2288 #:cargo-inputs
2289 (("rust-arrayvec" ,rust-arrayvec-0.4)
2290 ("rust-clippy" ,rust-clippy-0.0)
2291 ("rust-constant-time-eq" ,rust-constant-time-eq-0.1))
2292 #:cargo-development-inputs
2293 (("rust-data-encoding" ,rust-data-encoding-2))))
2294 (home-page "https://github.com/cesarb/blake2-rfc")
2295 (synopsis "Rust implementation of BLAKE2 based on RFC 7693")
2296 (description
2297 "This package provides a pure Rust implementation of BLAKE2 based on RFC
2298 7693.")
2299 (license (list license:asl2.0 license:expat))))
2300
2301 (define-public rust-blake2b-simd-0.5
2302 (package
2303 (name "rust-blake2b-simd")
2304 (version "0.5.10")
2305 (source
2306 (origin
2307 (method url-fetch)
2308 (uri (crate-uri "blake2b-simd" version))
2309 (file-name
2310 (string-append name "-" version ".tar.gz"))
2311 (sha256
2312 (base32
2313 "12icvk8ixlivv3jv5nyrg01sajp4s279zb1kmif0nfja4ms2vyyq"))))
2314 (build-system cargo-build-system)
2315 (arguments
2316 `(#:skip-build? #t
2317 #:cargo-inputs
2318 (("rust-arrayref" ,rust-arrayref-0.3)
2319 ("rust-arrayvec" ,rust-arrayvec-0.5)
2320 ("rust-constant-time-eq" ,rust-constant-time-eq-0.1))))
2321 (home-page "https://github.com/oconnor663/blake2_simd")
2322 (synopsis "Pure Rust BLAKE2b implementation with dynamic SIMD")
2323 (description
2324 "This package provides a pure Rust implementation of the BLAKE2b and
2325 BLAKE2bp hash functions.")
2326 (license license:expat)))
2327
2328 (define-public rust-blas-sys-0.7
2329 (package
2330 (name "rust-blas-sys")
2331 (version "0.7.1")
2332 (source
2333 (origin
2334 (method url-fetch)
2335 (uri (crate-uri "blas-sys" version))
2336 (file-name (string-append name "-" version ".crate"))
2337 (sha256
2338 (base32
2339 "0h14zjycwc76v15h8qll9z1xiryvmpvsb5gam97pqpdjrrwv5c8k"))))
2340 (build-system cargo-build-system)
2341 (arguments
2342 `(#:skip-build? #t
2343 #:cargo-inputs (("rust-libc" ,rust-libc-0.2))))
2344 (home-page "https://github.com/blas-lapack-rs/blas-sys")
2345 (synopsis "Bindings to BLAS (Fortran)")
2346 (description
2347 "This package provides bindings to BLAS (Fortran).")
2348 (license (list license:asl2.0
2349 license:expat))))
2350
2351 (define-public rust-blobby-0.3
2352 (package
2353 (name "rust-blobby")
2354 (version "0.3.0")
2355 (source
2356 (origin
2357 (method url-fetch)
2358 (uri (crate-uri "blobby" version))
2359 (file-name
2360 (string-append name "-" version ".tar.gz"))
2361 (sha256
2362 (base32
2363 "1s2f3a7lx5rd26554d9940basff7qpyf1y8gkc309cgc8csmalpw"))))
2364 (build-system cargo-build-system)
2365 (arguments
2366 `(#:cargo-development-inputs
2367 (("rust-hex" ,rust-hex-0.3))))
2368 (home-page "https://github.com/RustCrypto/utils")
2369 (synopsis "Iterator over simple binary blob storage")
2370 (description "This package provides an iterator over simple binary blob
2371 storage.")
2372 (license (list license:expat license:asl2.0))))
2373
2374 (define-public rust-blobby-0.1
2375 (package
2376 (inherit rust-blobby-0.3)
2377 (name "rust-blobby")
2378 (version "0.1.2")
2379 (source
2380 (origin
2381 (method url-fetch)
2382 (uri (crate-uri "blobby" version))
2383 (file-name
2384 (string-append name "-" version ".tar.gz"))
2385 (sha256
2386 (base32
2387 "1xicpf3s2mi5xqnx8ps5mdych4ib5nh2nfsbrsg8ar8bjk1girbg"))))
2388 (build-system cargo-build-system)
2389 (arguments
2390 `(#:skip-build? #t
2391 #:cargo-inputs
2392 (("rust-byteorder" ,rust-byteorder-1))
2393 #:cargo-development-inputs
2394 (("rust-byteorder" ,rust-byteorder-1)
2395 ("rust-hex" ,rust-hex-0.3))))))
2396
2397 (define-public rust-block-0.1
2398 (package
2399 (name "rust-block")
2400 (version "0.1.6")
2401 (source
2402 (origin
2403 (method url-fetch)
2404 (uri (crate-uri "block" version))
2405 (file-name
2406 (string-append name "-" version ".tar.gz"))
2407 (sha256
2408 (base32
2409 "16k9jgll25pzsq14f244q22cdv0zb4bqacldg3kx6h89d7piz30d"))))
2410 (build-system cargo-build-system)
2411 (arguments
2412 `(#:skip-build? #t
2413 #:cargo-development-inputs
2414 (("rust-objc-test-utils" ,rust-objc-test-utils-0.0))))
2415 (home-page "https://github.com/SSheldon/rust-block")
2416 (synopsis "Rust interface for Apple's C language extension of blocks")
2417 (description "This package provides a rust interface for Apple's C language
2418 extension of blocks.")
2419 (license license:expat)))
2420
2421 (define-public rust-block-buffer-0.9
2422 (package
2423 (name "rust-block-buffer")
2424 (version "0.9.0")
2425 (source
2426 (origin
2427 (method url-fetch)
2428 (uri (crate-uri "block-buffer" version))
2429 (file-name
2430 (string-append name "-" version ".tar.gz"))
2431 (sha256
2432 (base32
2433 "1r4pf90s7d7lj1wdjhlnqa26vvbm6pnc33z138lxpnp9srpi2lj1"))))
2434 (build-system cargo-build-system)
2435 (arguments
2436 `(#:cargo-inputs
2437 (("rust-block-padding" ,rust-block-padding-0.2)
2438 ("rust-generic-array" ,rust-generic-array-0.14))))
2439 (home-page "https://github.com/RustCrypto/utils")
2440 (synopsis "Fixed size buffer for block processing of data")
2441 (description
2442 "Fixed size buffer for block processing of data.")
2443 (license (list license:expat license:asl2.0))))
2444
2445 (define-public rust-block-buffer-0.8
2446 (package
2447 (inherit rust-block-buffer-0.9)
2448 (name "rust-block-buffer")
2449 (version "0.8.0")
2450 (source
2451 (origin
2452 (method url-fetch)
2453 (uri (crate-uri "block-buffer" version))
2454 (file-name
2455 (string-append name "-" version ".tar.gz"))
2456 (sha256
2457 (base32
2458 "0c9x5b8pk25i13bajqjkzf03bm5hx2y8pi9llfvjpy3nhr295kyv"))))
2459 (arguments
2460 `(#:cargo-inputs
2461 (("rust-block-padding" ,rust-block-padding-0.1)
2462 ("rust-byte-tools" ,rust-byte-tools-0.3)
2463 ("rust-byteorder" ,rust-byteorder-1)
2464 ("rust-generic-array" ,rust-generic-array-0.14))))))
2465
2466 (define-public rust-block-buffer-0.7
2467 (package
2468 (inherit rust-block-buffer-0.9)
2469 (name "rust-block-buffer")
2470 (version "0.7.3")
2471 (source
2472 (origin
2473 (method url-fetch)
2474 (uri (crate-uri "block-buffer" version))
2475 (file-name
2476 (string-append name "-" version ".tar.gz"))
2477 (sha256
2478 (base32
2479 "12v8wizynqin0hqf140kmp9s38q223mp1b0hkqk8j5pk8720v560"))))
2480 (arguments
2481 `(#:cargo-inputs
2482 (("rust-block-padding" ,rust-block-padding-0.1)
2483 ("rust-byte-tools" ,rust-byte-tools-0.3)
2484 ("rust-byteorder" ,rust-byteorder-1)
2485 ("rust-generic-array" ,rust-generic-array-0.12))))))
2486
2487 (define-public rust-block-cipher-0.7
2488 (package
2489 (name "rust-block-cipher")
2490 (version "0.7.1")
2491 (source
2492 (origin
2493 (method url-fetch)
2494 (uri (crate-uri "block-cipher" version))
2495 (file-name (string-append name "-" version ".tar.gz"))
2496 (sha256
2497 (base32
2498 "043zgfz1x4sxkdcsyabrcr440fcwhfpcqqa54jm7zp35wx4n84zs"))))
2499 (build-system cargo-build-system)
2500 (arguments
2501 `(#:cargo-inputs
2502 (("rust-blobby" ,rust-blobby-0.1)
2503 ("rust-generic-array" ,rust-generic-array-0.14))))
2504 (home-page "https://github.com/RustCrypto/traits")
2505 (synopsis "Traits for description of block ciphers")
2506 (description "This package provides traits for description of block
2507 ciphers.")
2508 (license (list license:expat license:asl2.0))))
2509
2510 (define-public rust-block-cipher-trait-0.4
2511 (package
2512 (name "rust-block-cipher-trait")
2513 (version "0.4.2")
2514 (source
2515 (origin
2516 (method url-fetch)
2517 (uri (crate-uri "block-cipher-trait" version))
2518 (file-name (string-append name "-" version ".tar.gz"))
2519 (sha256
2520 (base32
2521 "10qmg8vphqmfllb9a2yx6s7r66jh1wh33clhsawq7ikg2wgz2p6q"))))
2522 (build-system cargo-build-system)
2523 (arguments
2524 `(#:cargo-inputs
2525 (("rust-generic-array" ,rust-generic-array-0.8))))
2526 (home-page "https://github.com/RustCrypto/block-ciphers")
2527 (synopsis "Block cipher algorithms")
2528 (description "This package provides a collection of block cipher
2529 algorithms. This package is deprecated. Please use block-cipher instead")
2530 (license (list license:expat license:asl2.0))))
2531
2532 (define-public rust-block-padding-0.2
2533 (package
2534 (name "rust-block-padding")
2535 (version "0.2.0")
2536 (source
2537 (origin
2538 (method url-fetch)
2539 (uri (crate-uri "block-padding" version))
2540 (file-name
2541 (string-append name "-" version ".tar.gz"))
2542 (sha256
2543 (base32
2544 "0x6b2dgink7rc3755r8jl4kmndydy5563h3wz7z9jqrb25ygv2y9"))))
2545 (build-system cargo-build-system)
2546 (home-page "https://github.com/RustCrypto/utils")
2547 (synopsis "Padding and unpadding of messages divided into blocks")
2548 (description
2549 "Padding and unpadding of messages divided into blocks.")
2550 (license (list license:expat license:asl2.0))))
2551
2552 (define-public rust-block-padding-0.1
2553 (package
2554 (inherit rust-block-padding-0.2)
2555 (name "rust-block-padding")
2556 (version "0.1.4")
2557 (source
2558 (origin
2559 (method url-fetch)
2560 (uri (crate-uri "block-padding" version))
2561 (file-name
2562 (string-append name "-" version ".tar.gz"))
2563 (sha256
2564 (base32
2565 "02fz9wx5dmgpc79ndrb9xfxqlrkk7lg5wki2blz2zqg27spw6kbd"))))
2566 (arguments
2567 `(#:cargo-inputs
2568 (("rust-byte-tools" ,rust-byte-tools-0.3))))))
2569
2570 (define-public rust-bresenham-0.1
2571 (package
2572 (name "rust-bresenham")
2573 (version "0.1.1")
2574 (source
2575 (origin
2576 (method url-fetch)
2577 (uri (crate-uri "bresenham" version))
2578 (file-name
2579 (string-append name "-" version ".tar.gz"))
2580 (sha256
2581 (base32
2582 "1mvg3zcyll0m3z79jwbg183ha4kb7bw06rd286ijwvgn4mi13hdz"))))
2583 (build-system cargo-build-system)
2584 (home-page "https://github.com/mbr/bresenham-rs")
2585 (synopsis
2586 "Iterator-based integer-only implementation of Bresenham's line algorithm")
2587 (description
2588 "This package provides a fast, iterator-based integer-only implementation of
2589 Bresenham's line algorithm.")
2590 (license license:expat)))
2591
2592 (define-public rust-brotli-3
2593 (package
2594 (name "rust-brotli")
2595 (version "3.3.0")
2596 (source
2597 (origin
2598 (method url-fetch)
2599 (uri (crate-uri "brotli" version))
2600 (file-name (string-append name "-" version ".tar.gz"))
2601 (sha256
2602 (base32
2603 "0gk1g3fx1vps2ic8kh5n32gzq9h5w1j3ff6lvjm171ph428r2abz"))))
2604 (build-system cargo-build-system)
2605 (arguments
2606 `(#:cargo-inputs
2607 (("rust-alloc-no-stdlib" ,rust-alloc-no-stdlib-2)
2608 ("rust-alloc-stdlib" ,rust-alloc-stdlib-0.2)
2609 ("rust-brotli-decompressor" ,rust-brotli-decompressor-2)
2610 ("rust-packed-simd" ,rust-packed-simd-0.3)
2611 ("rust-sha2" ,rust-sha2-0.8))))
2612 (home-page "https://github.com/dropbox/rust-brotli")
2613 (synopsis "Brotli compressor and decompressor")
2614 (description "This package provides a brotli compressor and decompressor
2615 with no dependency on the rust stdlib. This makes it suitable for embedded
2616 devices and kernels.")
2617 (license (list license:bsd-3 license:expat))))
2618
2619 (define-public rust-brotli-decompressor-2
2620 (package
2621 (name "rust-brotli-decompressor")
2622 (version "2.3.1")
2623 (source
2624 (origin
2625 (method url-fetch)
2626 (uri (crate-uri "brotli-decompressor" version))
2627 (file-name (string-append name "-" version ".tar.gz"))
2628 (sha256
2629 (base32
2630 "1v7l1sa63ix1aq8h0k1ijvxvb5w796hz154b9aw0xn6lp31y2lhh"))))
2631 (build-system cargo-build-system)
2632 (arguments
2633 `(#:tests? #f ; not all test files included
2634 #:cargo-inputs
2635 (("rust-alloc-no-stdlib" ,rust-alloc-no-stdlib-2.0)
2636 ("rust-alloc-stdlib" ,rust-alloc-stdlib-0.2))))
2637 (home-page "https://github.com/dropbox/rust-brotli-decompressor")
2638 (synopsis "Brotli decompressor")
2639 (description "This package provides a brotli decompressor with no
2640 dependency on the rust stdlib. This makes it suitable for embedded devices
2641 and kernels.")
2642 (license (list license:bsd-3 license:expat))))
2643
2644 (define-public rust-bs58-0.2
2645 (package
2646 (name "rust-bs58")
2647 (version "0.2.5")
2648 (source
2649 (origin
2650 (method url-fetch)
2651 (uri (crate-uri "bs58" version))
2652 (file-name
2653 (string-append name "-" version ".tar.gz"))
2654 (sha256
2655 (base32
2656 "125i962x0m0ggdif6ds51wfif2lypiicy469dj5j2l6rm6xycpn9"))))
2657 (build-system cargo-build-system)
2658 (arguments
2659 `(#:cargo-inputs
2660 (("rust-sha2" ,rust-sha2-0.8))
2661 #:cargo-development-inputs
2662 (("rust-assert-matches" ,rust-assert-matches-1.3)
2663 ("rust-base58" ,rust-base58-0.1)
2664 ("rust-rust-base58" ,rust-rust-base58-0.0))))
2665 (home-page "https://github.com/mycorrhiza/bs58-rs")
2666 (synopsis "Another Base58 codec implementation")
2667 (description
2668 "Another Base58 codec implementation. Compared to the base58 crate this
2669 is significantly faster at decoding (about 2.4x as fast when decoding 32
2670 bytes), almost the same speed for encoding (about 3% slower when encoding 32
2671 bytes), doesn't have the 128 byte limitation and supports a configurable
2672 alphabet.")
2673 (license (list license:asl2.0 license:expat))))
2674
2675 (define-public rust-bstr-0.2
2676 (package
2677 (name "rust-bstr")
2678 (version "0.2.12")
2679 (source
2680 (origin
2681 (method url-fetch)
2682 (uri (crate-uri "bstr" version))
2683 (file-name
2684 (string-append name "-" version ".tar.gz"))
2685 (sha256
2686 (base32
2687 "0hazfback6i2k3vhhwyj8h46id3y58zxqh22pz46hj9r1zayd298"))))
2688 (build-system cargo-build-system)
2689 (arguments
2690 `(#:skip-build? #t
2691 #:cargo-inputs
2692 (("rust-lazy-static" ,rust-lazy-static-1)
2693 ("rust-memchr" ,rust-memchr-2)
2694 ("rust-regex-automata" ,rust-regex-automata-0.1)
2695 ("rust-serde" ,rust-serde-1))
2696 #:cargo-development-inputs
2697 (("rust-quickcheck" ,rust-quickcheck-0.8)
2698 ("rust-ucd-parse" ,rust-ucd-parse-0.1)
2699 ("rust-unicode-segmentation" ,rust-unicode-segmentation-1.3))))
2700 (home-page "https://github.com/BurntSushi/bstr")
2701 (synopsis
2702 "String type that is not required to be valid UTF-8")
2703 (description
2704 "This package provides a string type that is not required to be valid
2705 UTF-8.")
2706 (license (list license:expat license:asl2.0))))
2707
2708 (define-public rust-bstr-0.1
2709 (package
2710 (inherit rust-bstr-0.2)
2711 (name "rust-bstr")
2712 (version "0.1.4")
2713 (source
2714 (origin
2715 (method url-fetch)
2716 (uri (crate-uri "bstr" version))
2717 (file-name
2718 (string-append name "-" version ".tar.gz"))
2719 (sha256
2720 (base32
2721 "0nzi9vqhl56ws8gq39f3aj4qjrr4l3g5lbkkcj8xq1x4cb74wq2r"))))))
2722
2723 (define-public rust-buffered-reader-0.9
2724 (package
2725 (name "rust-buffered-reader")
2726 (version "0.9.0")
2727 (source
2728 (origin
2729 (method url-fetch)
2730 (uri (crate-uri "buffered-reader" version))
2731 (file-name
2732 (string-append name "-" version ".tar.gz"))
2733 (sha256
2734 (base32
2735 "05rklfiia1k4c4ifpim08l22i0q0l3j9xdg2yh3njrp6w58z6z13"))))
2736 (build-system cargo-build-system)
2737 (arguments
2738 `(#:cargo-inputs
2739 (("rust-bzip2" ,rust-bzip2-0.3)
2740 ("rust-flate2" ,rust-flate2-1)
2741 ("rust-libc" ,rust-libc-0.2))))
2742 (home-page "https://sequoia-pgp.org/")
2743 (synopsis "Super-powered Reader")
2744 (description
2745 "Like the @code{BufRead} trait, the @code{BufferedReader} trait has an
2746 internal buffer that is directly exposed to the user. This design enables two
2747 performance optimizations. First, the use of an internal buffer amortizes
2748 system calls. Second, exposing the internal buffer allows the user to work
2749 with data in place, which avoids another copy.")
2750 (license license:gpl3)))
2751
2752 (define-public rust-build-const-0.2
2753 (package
2754 (name "rust-build-const")
2755 (version "0.2.1")
2756 (source
2757 (origin
2758 (method url-fetch)
2759 (uri (crate-uri "build_const" version))
2760 (file-name (string-append name "-" version ".tar.gz"))
2761 (sha256
2762 (base32
2763 "0faz882spx9474cszay2djmb0lghbwq51qayabcar1s7g4r2l29r"))))
2764 (build-system cargo-build-system)
2765 (home-page "https://crates.io/crates/build_const")
2766 (synopsis "Create importable constants from build.rs or a script")
2767 (description "This package provides a library for creating importable
2768 constants from build.rs or a script.")
2769 (license license:expat)))
2770
2771 (define-public rust-bumpalo-3
2772 (package
2773 (name "rust-bumpalo")
2774 (version "3.2.1")
2775 (source
2776 (origin
2777 (method url-fetch)
2778 (uri (crate-uri "bumpalo" version))
2779 (file-name
2780 (string-append name "-" version ".tar.gz"))
2781 (sha256
2782 (base32
2783 "11silgpsnfv6ir7j2nh7a69564f92vq20k9ha7zcbynpiav9vbhj"))))
2784 (build-system cargo-build-system)
2785 (arguments
2786 `(#:tests? #f ; cargo_readme_up_to_date test fails
2787 #:cargo-development-inputs
2788 (("rust-criterion" ,rust-criterion-0.3)
2789 ("rust-quickcheck" ,rust-quickcheck-0.9))))
2790 (home-page "https://github.com/fitzgen/bumpalo")
2791 (synopsis "Fast bump allocation arena for Rust")
2792 (description
2793 "This package provides a fast bump allocation arena for Rust.")
2794 (license (list license:asl2.0 license:expat))))
2795
2796 (define-public rust-bumpalo-2
2797 (package
2798 (inherit rust-bumpalo-3)
2799 (name "rust-bumpalo")
2800 (version "2.6.0")
2801 (source
2802 (origin
2803 (method url-fetch)
2804 (uri (crate-uri "bumpalo" version))
2805 (file-name
2806 (string-append name "-" version ".tar.gz"))
2807 (sha256
2808 (base32
2809 "020psxs5dlm0gdbs83rx2rcavibdshdr0fpzk3mmw65zq8ppz05d"))))
2810 (arguments
2811 `(#:tests? #f ; cargo_readme_up_to_date test fails
2812 #:cargo-development-inputs
2813 (("rust-criterion" ,rust-criterion-0.2)
2814 ("rust-quickcheck" ,rust-quickcheck-0.8))))))
2815
2816 (define-public rust-byte-tools-0.3
2817 (package
2818 (name "rust-byte-tools")
2819 (version "0.3.1")
2820 (source
2821 (origin
2822 (method url-fetch)
2823 (uri (crate-uri "byte-tools" version))
2824 (file-name
2825 (string-append name "-" version ".tar.gz"))
2826 (sha256
2827 (base32
2828 "1mqi29wsm8njpl51pfwr31wmpzs5ahlcb40wsjyd92l90ixcmdg3"))))
2829 (build-system cargo-build-system)
2830 (arguments `(#:skip-build? #t))
2831 (home-page "https://github.com/RustCrypto/utils")
2832 (synopsis "Bytes related utility functions")
2833 (description "Bytes related utility functions.")
2834 (license (list license:asl2.0 license:expat))))
2835
2836 (define-public rust-bytecount-0.6
2837 (package
2838 (name "rust-bytecount")
2839 (version "0.6.0")
2840 (source
2841 (origin
2842 (method url-fetch)
2843 (uri (crate-uri "bytecount" version))
2844 (file-name
2845 (string-append name "-" version ".tar.gz"))
2846 (sha256
2847 (base32
2848 "0vplsx73zncb7mz8x0fs3k0p0rz5bmavj09vjk5nqn4z6fa7h0dh"))))
2849 (build-system cargo-build-system)
2850 (arguments
2851 `(#:cargo-inputs
2852 (("rust-packed-simd" ,rust-packed-simd-0.3))
2853 #:cargo-development-inputs
2854 (("rust-criterion" ,rust-criterion-0.3)
2855 ("rust-quickcheck" ,rust-quickcheck-0.9)
2856 ("rust-rand" ,rust-rand-0.7))))
2857 (home-page "https://github.com/llogiq/bytecount")
2858 (synopsis "Count occurrences of a given byte")
2859 (description
2860 "Count occurrences of a given byte, or the number of UTF-8 code points,
2861 in a byte slice, fast.")
2862 (license (list license:asl2.0 license:expat))))
2863
2864 (define-public rust-bytecount-0.5
2865 (package
2866 (inherit rust-bytecount-0.6)
2867 (name "rust-bytecount")
2868 (version "0.5.1")
2869 (source
2870 (origin
2871 (method url-fetch)
2872 (uri (crate-uri "bytecount" version))
2873 (file-name
2874 (string-append name "-" version ".tar.gz"))
2875 (sha256
2876 (base32
2877 "0z6a280kiy4kg5v3qw97pbyvwycr17fsm41804i8zpq7nmads3xy"))))
2878 (arguments
2879 `(#:cargo-inputs
2880 (("rust-packed-simd" ,rust-packed-simd-0.3))
2881 #:cargo-development-inputs
2882 (("rust-criterion" ,rust-criterion-0.2)
2883 ("rust-quickcheck" ,rust-quickcheck-0.8)
2884 ("rust-rand" ,rust-rand-0.6))))))
2885
2886 (define-public rust-bytecount-0.4
2887 (package
2888 (inherit rust-bytecount-0.5)
2889 (name "rust-bytecount")
2890 (version "0.4.0")
2891 (source
2892 (origin
2893 (method url-fetch)
2894 (uri (crate-uri "bytecount" version))
2895 (file-name
2896 (string-append name "-" version ".tar.gz"))
2897 (sha256
2898 (base32
2899 "13qpy38z5wx0rzcdvr2h0ixbfgi1dbrif068il3hwn3k2mah88mr"))))
2900 (arguments
2901 `(#:cargo-inputs
2902 (("rust-packed-simd" ,rust-packed-simd-0.3))
2903 #:cargo-development-inputs
2904 (("rust-criterion" ,rust-criterion-0.2)
2905 ("rust-quickcheck" ,rust-quickcheck-0.6)
2906 ("rust-rand" ,rust-rand-0.4))))))
2907
2908 (define-public rust-bytemuck-1
2909 (package
2910 (name "rust-bytemuck")
2911 (version "1.4.0")
2912 (source
2913 (origin
2914 (method url-fetch)
2915 (uri (crate-uri "bytemuck" version))
2916 (file-name
2917 (string-append name "-" version ".tar.gz"))
2918 (sha256
2919 (base32
2920 "071043n73hwi55z9c55ga4v52v8a7ri56gqja8r98clkdyxns14j"))))
2921 (build-system cargo-build-system)
2922 (arguments
2923 `(#:cargo-inputs
2924 (("rust-bytemuck-derive" ,rust-bytemuck-derive-1))))
2925 (home-page "https://github.com/Lokathor/bytemuck")
2926 (synopsis "Crate for mucking around with piles of bytes")
2927 (description
2928 "This package provides a crate for mucking around with piles of bytes.")
2929 (license license:zlib)))
2930
2931 (define-public rust-bytemuck-derive-1
2932 (package
2933 (name "rust-bytemuck-derive")
2934 (version "1.0.0")
2935 (source
2936 (origin
2937 (method url-fetch)
2938 (uri (crate-uri "bytemuck-derive" version))
2939 (file-name (string-append name "-" version ".tar.gz"))
2940 (sha256
2941 (base32
2942 "1k59b6g2d87nf32qwhp73vng3al0zklxg64iiwf0pkxy74xf5ni8"))))
2943 (build-system cargo-build-system)
2944 (arguments
2945 `(#:skip-build? #t
2946 #:cargo-inputs
2947 (("rust-proc-macro2" ,rust-proc-macro2-1)
2948 ("rust-quote" ,rust-quote-1)
2949 ("rust-syn" ,rust-syn-1))
2950 #:cargo-development-inputs
2951 (("rust-bytemuck" ,rust-bytemuck-1))))
2952 (home-page "https://github.com/Lokathor/bytemuck")
2953 (synopsis "Derive proc-macros for @code{bytemuck}")
2954 (description
2955 "This package derives proc-macros for the @code{bytemuck} crate.")
2956 (license
2957 (list license:zlib license:asl2.0 license:expat))))
2958
2959 (define-public rust-byteorder-1
2960 (package
2961 (name "rust-byteorder")
2962 (version "1.3.4")
2963 (source
2964 (origin
2965 (method url-fetch)
2966 (uri (crate-uri "byteorder" version))
2967 (file-name
2968 (string-append name "-" version ".tar.gz"))
2969 (sha256
2970 (base32
2971 "1pkjfhgjnq898g1d38ygcfi0msg3m6756cwv0sgysj1d26p8mi08"))))
2972 (build-system cargo-build-system)
2973 (arguments
2974 `(#:cargo-development-inputs
2975 (("rust-doc-comment" ,rust-doc-comment-0.3)
2976 ("rust-quickcheck" ,rust-quickcheck-0.8)
2977 ("rust-rand" ,rust-rand-0.6))))
2978 (home-page
2979 "https://github.com/BurntSushi/byteorder")
2980 (synopsis
2981 "Reading/writing numbers in big-endian and little-endian")
2982 (description
2983 "Library for reading/writing numbers in big-endian and
2984 little-endian.")
2985 (license (list license:expat license:unlicense))))
2986
2987 (define-public rust-byteorder-0.5
2988 (package
2989 (inherit rust-byteorder-1)
2990 (name "rust-byteorder")
2991 (version "0.5.3")
2992 (source
2993 (origin
2994 (method url-fetch)
2995 (uri (crate-uri "byteorder" version))
2996 (file-name
2997 (string-append name "-" version ".tar.gz"))
2998 (sha256
2999 (base32
3000 "0ma8pkyz1jbglr29m1yzlc9ghmv6672nvsrn7zd0yn5jqs60xh8g"))))
3001 (arguments
3002 `(#:tests? #f
3003 #:cargo-development-inputs
3004 (("rust-quickcheck" ,rust-quickcheck-0.2)
3005 ("rust-rand" ,rust-rand-0.3))))))
3006
3007 (define-public rust-bytes-0.5
3008 (package
3009 (name "rust-bytes")
3010 (version "0.5.4")
3011 (source
3012 (origin
3013 (method url-fetch)
3014 (uri (crate-uri "bytes" version))
3015 (file-name (string-append name "-" version ".tar.gz"))
3016 (sha256
3017 (base32 "1q9r7si1l8vndg4n2ny2nv833ghp5vyqzk5indb9rmhd5ibaq2hk"))))
3018 (build-system cargo-build-system)
3019 (arguments
3020 `(#:cargo-inputs
3021 (("rust-serde" ,rust-serde-1))
3022 #:cargo-development-inputs
3023 (("rust-loom" ,rust-loom-0.2)
3024 ("rust-serde-test" ,rust-serde-test-1))))
3025 (home-page "https://github.com/tokio-rs/bytes")
3026 (synopsis "Types and traits for working with bytes")
3027 (description "Types and traits for working with bytes.")
3028 (license license:expat)))
3029
3030 (define-public rust-bytes-0.4
3031 (package/inherit rust-bytes-0.5
3032 (name "rust-bytes")
3033 (version "0.4.12")
3034 (source
3035 (origin
3036 (method url-fetch)
3037 (uri (crate-uri "bytes" version))
3038 (file-name
3039 (string-append name "-" version ".tar.gz"))
3040 (sha256
3041 (base32
3042 "0768a55q2fsqdjsvcv98ndg9dq7w2g44dvq1avhwpxrdzbydyvr0"))))
3043 (build-system cargo-build-system)
3044 (arguments
3045 `(#:cargo-inputs
3046 (("rust-byteorder" ,rust-byteorder-1)
3047 ("rust-either" ,rust-either-1)
3048 ("rust-iovec" ,rust-iovec-0.1)
3049 ("rust-serde" ,rust-serde-1))
3050 #:cargo-development-inputs
3051 (("rust-serde-test" ,rust-serde-test-1))))))
3052
3053 (define-public rust-bytes-0.3
3054 (package
3055 (inherit rust-bytes-0.4)
3056 (name "rust-bytes")
3057 (version "0.3.0")
3058 (source
3059 (origin
3060 (method url-fetch)
3061 (uri (crate-uri "bytes" version))
3062 (file-name
3063 (string-append name "-" version ".tar.gz"))
3064 (sha256
3065 (base32
3066 "09vcp9kh12pva2xn2ir79k90v1a0id8f4sdv1abn5ifw2bqsyaf1"))))
3067 (arguments
3068 `(#:tests? #f ; Tests not distributed in crate.
3069 #:cargo-development-inputs
3070 (("rust-rand" ,rust-rand-0.3))))))
3071
3072 (define-public rust-bzip2-0.3
3073 (package
3074 (name "rust-bzip2")
3075 (version "0.3.3")
3076 (source
3077 (origin
3078 (method url-fetch)
3079 (uri (crate-uri "bzip2" version))
3080 (file-name
3081 (string-append name "-" version ".tar.gz"))
3082 (sha256
3083 (base32
3084 "0fvfwanp42j1zpig880jhb5mc0na50bijmwd6211p77sy35w7ds2"))))
3085 (build-system cargo-build-system)
3086 (arguments
3087 `(#:cargo-inputs
3088 (("rust-bzip2-sys" ,rust-bzip2-sys-0.1)
3089 ("rust-futures" ,rust-futures-0.1)
3090 ("rust-libc" ,rust-libc-0.2)
3091 ("rust-tokio-io" ,rust-tokio-io-0.1))
3092 #:cargo-development-inputs
3093 (("rust-partial-io" ,rust-partial-io-0.2)
3094 ("rust-quickcheck" ,rust-quickcheck-0.4)
3095 ("rust-rand" ,rust-rand-0.3)
3096 ("rust-tokio-core" ,rust-tokio-core-0.1))))
3097 (home-page "https://github.com/alexcrichton/bzip2-rs")
3098 (synopsis
3099 "Rust bindings to libbzip2 for bzip2 compression and decompression")
3100 (description
3101 "Bindings to @code{libbzip2} for @code{bzip2} compression and decompression
3102 exposed as Reader/Writer streams.")
3103 (license (list license:expat license:asl2.0))))
3104
3105 (define-public rust-bzip2-sys-0.1
3106 (package
3107 (name "rust-bzip2-sys")
3108 (version "0.1.9+1.0.8")
3109 (source
3110 (origin
3111 (method url-fetch)
3112 (uri (crate-uri "bzip2-sys" version))
3113 (file-name
3114 (string-append name "-" version ".tar.gz"))
3115 (sha256
3116 (base32
3117 "0pi8lxzb1104q9cpvv1jgnk909cggqh2zcdhywqwlbq6c2i3jfxd"))
3118 (modules '((guix build utils)))
3119 (snippet
3120 '(begin
3121 (delete-file-recursively "bzip2-1.0.8")
3122 (delete-file "build.rs")
3123 ;; Inspired by Debian's patch.
3124 (with-output-to-file "build.rs"
3125 (lambda _
3126 (format #t "fn main() {~@
3127 println!(\"cargo:rustc-link-lib=bz2\");~@
3128 }~%")))
3129 #t))))
3130 (build-system cargo-build-system)
3131 (arguments
3132 `(#:cargo-inputs
3133 (("rust-libc" ,rust-libc-0.2)
3134 ("rust-cc" ,rust-cc-1)
3135 ("rust-pkg-config" ,rust-pkg-config-0.3))))
3136 (home-page "https://github.com/alexcrichton/bzip2-rs")
3137 (synopsis "Rust bindings to libbzip2")
3138 (description
3139 "Bindings to @code{libbzip2} for bzip2 compression and decompression
3140 exposed as Reader/Writer streams.")
3141 (license (list license:expat license:asl2.0))))
3142
3143 (define-public rust-c2-chacha-0.2
3144 (package
3145 (name "rust-c2-chacha")
3146 (version "0.2.2")
3147 (source
3148 (origin
3149 (method url-fetch)
3150 (uri (crate-uri "c2-chacha" version))
3151 (file-name
3152 (string-append name "-" version ".tar.gz"))
3153 (sha256
3154 (base32
3155 "00a11qdc8mg3z0k613rhprkc9p6xz0y7b1681x32ixg0hr3x0r3x"))))
3156 (build-system cargo-build-system)
3157 (arguments
3158 `(#:skip-build? #t
3159 #:cargo-inputs
3160 (("rust-byteorder" ,rust-byteorder-1)
3161 ("rust-lazy-static" ,rust-lazy-static-1)
3162 ("rust-ppv-lite86" ,rust-ppv-lite86-0.2)
3163 ("rust-stream-cipher" ,rust-stream-cipher-0.3))
3164 #:cargo-development-inputs
3165 (("rust-hex-literal" ,rust-hex-literal-0.2))))
3166 (home-page "https://github.com/cryptocorrosion/cryptocorrosion")
3167 (synopsis "The ChaCha family of stream ciphers")
3168 (description
3169 "The ChaCha family of stream ciphers.")
3170 (license (list license:asl2.0 license:expat))))
3171
3172 (define-public rust-calloop-0.4
3173 (package
3174 (name "rust-calloop")
3175 (version "0.4.4")
3176 (source
3177 (origin
3178 (method url-fetch)
3179 (uri (crate-uri "calloop" version))
3180 (file-name
3181 (string-append name "-" version ".tar.gz"))
3182 (sha256
3183 (base32
3184 "0q6ic9lr0s86886mbyn4yncg68b2sykgwjf3iygdw01swmxhk8ks"))
3185 (modules '((guix build utils)))
3186 (snippet
3187 '(begin
3188 (substitute* "Cargo.toml"
3189 (("=1.0.0") "^1.0.0"))
3190 #t))))
3191 (build-system cargo-build-system)
3192 (arguments
3193 `(#:cargo-inputs
3194 (("rust-mio" ,rust-mio-0.6)
3195 ("rust-mio-extras" ,rust-mio-extras-2)
3196 ("rust-nix" ,rust-nix-0.14))
3197 #:cargo-development-inputs
3198 (("rust-lazycell" ,rust-lazycell-1))))
3199 (home-page "https://github.com/Smithay/calloop")
3200 (synopsis "Callback-based event loop")
3201 (description
3202 "This package provides a callback-based event loop")
3203 (license license:expat)))
3204
3205 (define-public rust-capnp-0.10
3206 (package
3207 (name "rust-capnp")
3208 (version "0.10.3")
3209 (source
3210 (origin
3211 (method url-fetch)
3212 (uri (crate-uri "capnp" version))
3213 (file-name (string-append name "-" version ".tar.gz"))
3214 (sha256
3215 (base32 "17hsnmlcrzksjjpwpz51y8g36xzq8042i2cwns0lsg7rixfw2rxq"))))
3216 (build-system cargo-build-system)
3217 (arguments
3218 `(#:cargo-inputs
3219 (("rust-futures" ,rust-futures-0.1)
3220 ("rust-quickcheck" ,rust-quickcheck-0.2))
3221 #:cargo-development-inputs
3222 (("rust-quickcheck" ,rust-quickcheck-0.2))))
3223 (home-page "https://github.com/capnproto/capnproto-rust")
3224 (synopsis "Runtime library for Cap'n Proto data encoding")
3225 (description "This package provides a runtime library for Cap'n Proto data
3226 encoding.")
3227 (license license:expat)))
3228
3229 (define-public rust-capnp-futures-0.10
3230 (package
3231 (name "rust-capnp-futures")
3232 (version "0.10.1")
3233 (source
3234 (origin
3235 (method url-fetch)
3236 (uri (crate-uri "capnp-futures" version))
3237 (file-name (string-append name "-" version ".tar.gz"))
3238 (sha256
3239 (base32 "0qdiqkp9mh4acpa0dqhpzv2gwf949rj3m85mgwl1rih6gvgbh1zs"))))
3240 (build-system cargo-build-system)
3241 (arguments
3242 `(#:cargo-inputs
3243 (("rust-capnp" ,rust-capnp-0.10)
3244 ("rust-futures" ,rust-futures-0.1))
3245 #:cargo-development-inputs
3246 (("rust-capnp" ,rust-capnp-0.10)
3247 ("rust-quickcheck" ,rust-quickcheck-0.2))))
3248 (home-page "https://github.com/capnproto/capnproto-rust")
3249 (synopsis "Async serialization for Cap'n Proto messages")
3250 (description "This package provides async serialization for Cap'n Proto
3251 messages.")
3252 (license license:expat)))
3253
3254 (define-public rust-capnp-rpc-0.10
3255 (package
3256 (name "rust-capnp-rpc")
3257 (version "0.10.0")
3258 (source
3259 (origin
3260 (method url-fetch)
3261 (uri (crate-uri "capnp-rpc" version))
3262 (file-name (string-append name "-" version ".tar.gz"))
3263 (sha256
3264 (base32 "1j6xg7yays1hlm1045wviyn1642yvvi2p4kba26yk07a0kafr3jn"))))
3265 (build-system cargo-build-system)
3266 (native-inputs
3267 `(("capnproto" ,capnproto)))
3268 (arguments
3269 `(#:cargo-inputs
3270 (("rust-capnp" ,rust-capnp-0.10)
3271 ("rust-capnp-futures" ,rust-capnp-futures-0.10)
3272 ("rust-futures" ,rust-futures-0.1))
3273 #:cargo-development-inputs
3274 (("rust-capnpc" ,rust-capnpc-0.10))))
3275 (home-page "https://github.com/capnproto/capnproto-rust")
3276 (synopsis "Cap'n Proto remote procedure call protocol implementation")
3277 (description "This package provides an implementation of the Cap'n Proto
3278 remote procedure call protocol")
3279 (license license:expat)))
3280
3281 (define-public rust-capnpc-0.10
3282 (package
3283 (name "rust-capnpc")
3284 (version "0.10.2")
3285 (source
3286 (origin
3287 (method url-fetch)
3288 (uri (crate-uri "capnpc" version))
3289 (file-name (string-append name "-" version ".tar.gz"))
3290 (sha256
3291 (base32 "1zxbmdkr0xfzkfq9p8zn7pp9jjq275qhr8fh9a0cc0ab37yfvbyj"))))
3292 (build-system cargo-build-system)
3293 (arguments
3294 `(#:cargo-inputs (("rust-capnp" ,rust-capnp-0.10))))
3295 (home-page "https://github.com/capnproto/capnproto-rust")
3296 (synopsis "Cap'n Proto code generation")
3297 (description "Cap'n Proto code generation")
3298 (license license:expat)))
3299
3300 (define-public rust-caps-0.3
3301 (package
3302 (name "rust-caps")
3303 (version "0.3.3")
3304 (source
3305 (origin
3306 (method url-fetch)
3307 (uri (crate-uri "caps" version))
3308 (file-name
3309 (string-append name "-" version ".tar.gz"))
3310 (sha256
3311 (base32
3312 "1vplgzx8nifzr3f0l8ca77jqnz3fdymdg0ickacgdvawc44a3n90"))))
3313 (build-system cargo-build-system)
3314 (arguments
3315 `(#:skip-build? #t
3316 #:cargo-inputs
3317 (("rust-errno" ,rust-errno-0.2)
3318 ("rust-error-chain" ,rust-error-chain-0.12)
3319 ("rust-libc" ,rust-libc-0.2))))
3320 (home-page "https://github.com/lucab/caps-rs")
3321 (synopsis "Pure-Rust library to work with Linux capabilities")
3322 (description
3323 "This package provides a pure-Rust library to work with Linux
3324 capabilities")
3325 (license (list license:expat license:asl2.0))))
3326
3327 (define-public rust-cargo-metadata-0.9
3328 (package
3329 (name "rust-cargo-metadata")
3330 (version "0.9.1")
3331 (source
3332 (origin
3333 (method url-fetch)
3334 (uri (crate-uri "cargo_metadata" version))
3335 (file-name
3336 (string-append name "-" version ".tar.gz"))
3337 (sha256
3338 (base32
3339 "00pjms89lghvizh4d55lz80hvrih9r55xv9m5wd9vcsgc163gqs6"))))
3340 (build-system cargo-build-system)
3341 (arguments
3342 `(#:tests? #f
3343 #:cargo-inputs
3344 (("rust-semver" ,rust-semver-0.9)
3345 ("rust-serde" ,rust-serde-1)
3346 ("rust-serde-derive" ,rust-serde-derive-1)
3347 ("rust-serde-json" ,rust-serde-json-1))
3348 #:cargo-development-inputs
3349 (("rust-clap" ,rust-clap-2)
3350 ("rust-docopt" ,rust-docopt-1.1)
3351 ("rust-structopt" ,rust-structopt-0.2))))
3352 (home-page "https://github.com/oli-obk/cargo_metadata")
3353 (synopsis "Structured access to the output of `cargo metadata`")
3354 (description
3355 "This package provides structured access to the output of @code{cargo
3356 metadata}.")
3357 (license license:expat)))
3358
3359 (define-public rust-cargo-metadata-0.6
3360 (package
3361 (inherit rust-cargo-metadata-0.9)
3362 (name "rust-cargo-metadata")
3363 (version "0.6.4")
3364 (source
3365 (origin
3366 (method url-fetch)
3367 (uri (crate-uri "cargo_metadata" version))
3368 (file-name
3369 (string-append name "-" version ".tar.gz"))
3370 (sha256
3371 (base32
3372 "1givpi2w7iwqqnl87x5yc15zcm5hs6yw490sb6abkfp1h39v9lg5"))))
3373 (arguments
3374 `(#:skip-build? #t
3375 #:cargo-inputs
3376 (("rust-error-chain" ,rust-error-chain-0.12)
3377 ("rust-semver" ,rust-semver-0.9)
3378 ("rust-serde" ,rust-serde-1)
3379 ("rust-serde-derive" ,rust-serde-derive-1)
3380 ("rust-serde-json" ,rust-serde-json-1))
3381 #:cargo-development-inputs
3382 (;("rust-docopt" ,rust-docopt-0.8)
3383 ("rust-clap" ,rust-clap-2))))))
3384
3385 (define-public rust-cargon-0.0
3386 (package
3387 (name "rust-cargon")
3388 (version "0.0.1")
3389 (source
3390 (origin
3391 (method url-fetch)
3392 (uri (crate-uri "cargon" version))
3393 (file-name (string-append name "-" version ".crate"))
3394 (sha256
3395 (base32
3396 "1cszlab7jk736p0lb50ag4l9nv72m7j41bwrmygl0lr4iz0350w2"))))
3397 (build-system cargo-build-system)
3398 (arguments
3399 `(#:cargo-inputs
3400 (("rust-gcc" ,rust-gcc-0.3))))
3401 (home-page "https://github.com/bryant/argon2rs")
3402 (synopsis "Thin wrapper around the Argon2 C library")
3403 (description
3404 "This package provides a thin wrapper around the Argon2 C library. It is
3405 used in argon2rs' bench suite.")
3406 (license license:wtfpl2)))
3407
3408 (define-public rust-cast-0.2
3409 (package
3410 (name "rust-cast")
3411 (version "0.2.3")
3412 (source
3413 (origin
3414 (method url-fetch)
3415 (uri (crate-uri "cast" version))
3416 (file-name
3417 (string-append name "-" version ".tar.gz"))
3418 (sha256
3419 (base32
3420 "1c5z7zryj0zwnhdgs6rw5dfvnlwc1vm19jzrlgx5055alnwk952b"))))
3421 (build-system cargo-build-system)
3422 (arguments
3423 `(#:skip-build? #t
3424 #:cargo-inputs
3425 (("rust-rustc-version" ,rust-rustc-version-0.2))
3426 #:cargo-development-inputs
3427 (("rust-quickcheck" ,rust-quickcheck-0.9))))
3428 (home-page "https://github.com/japaric/cast.rs")
3429 (synopsis
3430 "Ergonomic, checked cast functions for primitive types")
3431 (description
3432 "Ergonomic, checked cast functions for primitive types.")
3433 (license (list license:expat license:asl2.0))))
3434
3435 (define-public rust-cblas-sys-0.1
3436 (package
3437 (name "rust-cblas-sys")
3438 (version "0.1.4")
3439 (source
3440 (origin
3441 (method url-fetch)
3442 (uri (crate-uri "cblas-sys" version))
3443 (file-name (string-append name "-" version ".crate"))
3444 (sha256
3445 (base32
3446 "0rgsn3klhhh09d8qf3b87zl4rwk93l2g0qzh9hhb0lff5kcfrzmn"))))
3447 (build-system cargo-build-system)
3448 (arguments
3449 `(#:skip-build? #t
3450 #:cargo-inputs (("rust-libc" ,rust-libc-0.2))))
3451 (home-page "https://github.com/blas-lapack-rs/cblas-sys")
3452 (synopsis "Bindings to CBLAS (C)")
3453 (description
3454 "The package provides bindings to CBLAS (C).")
3455 (license (list license:asl2.0
3456 license:expat))))
3457
3458 (define-public rust-cc-1
3459 (package
3460 (name "rust-cc")
3461 (version "1.0.58")
3462 (source
3463 (origin
3464 (method url-fetch)
3465 (uri (crate-uri "cc" version))
3466 (file-name (string-append name "-" version ".crate"))
3467 (sha256
3468 (base32
3469 "065m2fphrv5csy8hvv37msi3a739mfkgw7pcg71dfw9jwnr6z87r"))))
3470 (build-system cargo-build-system)
3471 (arguments
3472 `(#:tests? #f
3473 #:cargo-inputs
3474 (("rust-jobserver" ,rust-jobserver-0.1))
3475 #:cargo-development-inputs
3476 (("rust-tempfile" ,rust-tempfile-3))))
3477 (home-page "https://github.com/alexcrichton/cc-rs")
3478 (synopsis "Invoke the native C compiler")
3479 (description
3480 "This package provides a build-time dependency for Cargo build scripts to
3481 assist in invoking the native C compiler to compile native C code into a static
3482 archive to be linked into Rustcode.")
3483 (license (list license:asl2.0
3484 license:expat))))
3485
3486 (define-public rust-cexpr-0.4
3487 (package
3488 (name "rust-cexpr")
3489 (version "0.4.0")
3490 (source
3491 (origin
3492 (method url-fetch)
3493 (uri (crate-uri "cexpr" version))
3494 (file-name
3495 (string-append name "-" version ".tar.gz"))
3496 (sha256
3497 (base32
3498 "09qd1k1mrhcqfhqmsz4y1bya9gcs29si7y3w96pqkgid4y2dpbpl"))))
3499 (build-system cargo-build-system)
3500 (arguments
3501 `(#:cargo-inputs
3502 (("rust-nom" ,rust-nom-5))
3503 #:cargo-development-inputs
3504 (("rust-clang-sys" ,rust-clang-sys-0.28))))
3505 (inputs
3506 `(("clang" ,clang)))
3507 (home-page "https://github.com/jethrogb/rust-cexpr")
3508 (synopsis "C expression parser and evaluator")
3509 (description
3510 "This package provides a C expression parser and evaluator.")
3511 (license (list license:asl2.0 license:expat))))
3512
3513 (define-public rust-cexpr-0.3
3514 (package
3515 (inherit rust-cexpr-0.4)
3516 (name "rust-cexpr")
3517 (version "0.3.6")
3518 (source
3519 (origin
3520 (method url-fetch)
3521 (uri (crate-uri "cexpr" version))
3522 (file-name
3523 (string-append name "-" version ".tar.gz"))
3524 (sha256
3525 (base32
3526 "07fdfj4ff2974y33yixrb657riq9zl9b9h9lr0h7ridhhvxvbrgw"))))
3527 (arguments
3528 `(#:cargo-inputs
3529 (("rust-nom" ,rust-nom-4.2))
3530 #:cargo-development-inputs
3531 (("rust-clang-sys" ,rust-clang-sys-0.28))))))
3532
3533 (define-public rust-cexpr-0.2
3534 (package
3535 (inherit rust-cexpr-0.3)
3536 (name "rust-cexpr")
3537 (version "0.2.3")
3538 (source
3539 (origin
3540 (method url-fetch)
3541 (uri (crate-uri "cexpr" version))
3542 (file-name
3543 (string-append name "-" version ".tar.gz"))
3544 (sha256
3545 (base32
3546 "0v1xa3758czmj8h97gh548mr8g0v13ixxvrlm1s79nb7jmgc9aj2"))))
3547 (build-system cargo-build-system)
3548 (arguments
3549 `(#:cargo-inputs
3550 (("rust-nom" ,rust-nom-3))
3551 #:cargo-development-inputs
3552 (("rust-clang-sys" ,rust-clang-sys-0.11))))))
3553
3554 (define-public rust-cfg-if-0.1
3555 (package
3556 (name "rust-cfg-if")
3557 (version "0.1.10")
3558 (source
3559 (origin
3560 (method url-fetch)
3561 (uri (crate-uri "cfg-if" version))
3562 (file-name (string-append name "-" version ".crate"))
3563 (sha256
3564 (base32
3565 "08h80ihs74jcyp24cd75wwabygbbdgl05k6p5dmq8akbr78vv1a7"))))
3566 (build-system cargo-build-system)
3567 (arguments
3568 `(#:cargo-inputs
3569 (("rust-compiler-builtins" ,rust-compiler-builtins-0.1)
3570 ("rust-rustc-std-workspace-core" ,rust-rustc-std-workspace-core-1))))
3571 (home-page "https://github.com/alexcrichton/cfg-if")
3572 (synopsis "Define an item depending on parameters")
3573 (description "This package provides a macro to ergonomically define an item
3574 depending on a large number of #[cfg] parameters. Structured like an
3575 @code{if-else} chain, the first matching branch is the item that gets emitted.")
3576 (license (list license:asl2.0
3577 license:expat))))
3578
3579 (define-public rust-chrono-0.4
3580 (package
3581 (name "rust-chrono")
3582 (version "0.4.13")
3583 (source
3584 (origin
3585 (method url-fetch)
3586 (uri (crate-uri "chrono" version))
3587 (file-name
3588 (string-append name "-" version ".tar.gz"))
3589 (sha256
3590 (base32
3591 "1dm0q1kmk2vq5djwhp1j9cm4aa38wr9vy1i1w19p2y0nj4188kf7"))))
3592 (build-system cargo-build-system)
3593 (arguments
3594 `(#:skip-build? #t
3595 #:cargo-inputs
3596 (("rust-num-integer" ,rust-num-integer-0.1)
3597 ("rust-num-traits" ,rust-num-traits-0.2)
3598 ("rust-js-sys" ,rust-js-sys-0.3)
3599 ("rust-rustc-serialize" ,rust-rustc-serialize-0.3)
3600 ("rust-serde" ,rust-serde-1)
3601 ("rust-time" ,rust-time-0.1)
3602 ("rust-wasm-bindgen" ,rust-wasm-bindgen-0.2))
3603 #:cargo-development-inputs
3604 (;("rust-bincode" ,rust-bincode-0.8)
3605 ("rust-criterion" ,rust-criterion-0.2)
3606 ("rust-doc-comment" ,rust-doc-comment-0.3)
3607 ("rust-num-iter" ,rust-num-iter-0.1)
3608 ("rust-serde-derive" ,rust-serde-derive-1)
3609 ("rust-serde-json" ,rust-serde-json-1)
3610 ("rust-wasm-bindgen-test" ,rust-wasm-bindgen-test-0.2))))
3611 (home-page
3612 "https://github.com/chronotope/chrono")
3613 (synopsis "Date and time library for Rust")
3614 (description "Date and time library for Rust.")
3615 (license (list license:expat license:asl2.0))))
3616
3617 (define-public rust-ci-info-0.3
3618 (package
3619 (name "rust-ci-info")
3620 (version "0.3.1")
3621 (source
3622 (origin
3623 (method url-fetch)
3624 (uri (crate-uri "ci-info" version))
3625 (file-name
3626 (string-append name "-" version ".tar.gz"))
3627 (sha256
3628 (base32
3629 "00pr17g6q6i752acrkycg0hkq3lm0p634anm41g3m6lqg8q83s75"))))
3630 (build-system cargo-build-system)
3631 (arguments
3632 `(#:cargo-inputs
3633 (("rust-serde" ,rust-serde-1)
3634 ("rust-serde-derive" ,rust-serde-derive-1))))
3635 (home-page "https://github.com/sagiegurari/ci_info")
3636 (synopsis "Provides current CI environment information")
3637 (description
3638 "This package provides current CI environment information.")
3639 (license license:asl2.0)))
3640
3641 (define-public rust-clang-sys-1
3642 (package
3643 (name "rust-clang-sys")
3644 (version "1.0.0")
3645 (source
3646 (origin
3647 (method url-fetch)
3648 (uri (crate-uri "clang-sys" version))
3649 (file-name (string-append name "-" version ".tar.gz"))
3650 (sha256
3651 (base32
3652 "0695kfrqx7n091fzm6msbqg2q2kyhka64q08lm63f3l9d964i8cx"))))
3653 (build-system cargo-build-system)
3654 (inputs
3655 `(("clang" ,clang)))
3656 (arguments
3657 `(#:cargo-inputs
3658 (("rust-glob" ,rust-glob-0.3)
3659 ("rust-libc" ,rust-libc-0.2)
3660 ("rust-libloading" ,rust-libloading-0.6))))
3661 (home-page "https://github.com/KyleMayes/clang-sys")
3662 (synopsis "Rust bindings for libclang")
3663 (description "This package provides Rust bindings for libclang.")
3664 (license license:asl2.0)))
3665
3666 (define-public rust-clang-sys-0.29
3667 (package
3668 (inherit rust-clang-sys-1)
3669 (name "rust-clang-sys")
3670 (version "0.29.3")
3671 (source
3672 (origin
3673 (method url-fetch)
3674 (uri (crate-uri "clang-sys" version))
3675 (file-name (string-append name "-" version ".tar.gz"))
3676 (sha256
3677 (base32
3678 "02nibl74zbz5x693iy5vdbhnfckja47m7j1mp2bj7fjw3pgkfs7y"))))
3679 (build-system cargo-build-system)
3680 (arguments
3681 `(#:cargo-inputs
3682 (("rust-glob" ,rust-glob-0.3)
3683 ("rust-libc" ,rust-libc-0.2)
3684 ("rust-libloading" ,rust-libloading-0.5))))))
3685
3686 (define-public rust-clang-sys-0.28
3687 (package
3688 (inherit rust-clang-sys-0.29)
3689 (name "rust-clang-sys")
3690 (version "0.28.1")
3691 (source
3692 (origin
3693 (method url-fetch)
3694 (uri (crate-uri "clang-sys" version))
3695 (file-name (string-append name "-" version ".tar.gz"))
3696 (sha256
3697 (base32
3698 "0ls8zcqi5bmmrvrk3b6r1ym4wlivinbv590d2dvg2xn9f44mbpl1"))))))
3699
3700 (define-public rust-clang-sys-0.26
3701 (package
3702 (inherit rust-clang-sys-0.28)
3703 (name "rust-clang-sys")
3704 (version "0.26.4")
3705 (source
3706 (origin
3707 (method url-fetch)
3708 (uri (crate-uri "clang-sys" version))
3709 (file-name (string-append name "-" version ".crate"))
3710 (sha256
3711 (base32
3712 "1r50dwy5hj5gq07dn0qf8222d07qv0970ymx0j8n9779yayc3w3f"))))
3713 (arguments
3714 `(#:cargo-inputs
3715 (("rust-glob" ,rust-glob-0.2)
3716 ("rust-libc" ,rust-libc-0.2)
3717 ("rust-libloading" ,rust-libloading-0.5))))))
3718
3719 (define-public rust-clang-sys-0.23
3720 (package
3721 (inherit rust-clang-sys-0.26)
3722 (name "rust-clang-sys")
3723 (version "0.23.0")
3724 (source
3725 (origin
3726 (method url-fetch)
3727 (uri (crate-uri "clang-sys" version))
3728 (file-name
3729 (string-append name "-" version ".tar.gz"))
3730 (sha256
3731 (base32
3732 "1hjr333izzhs6bic84qwnyzy5xzmvasib8f3zkzj4ln3a97c1xyp"))))))
3733
3734 (define-public rust-clang-sys-0.22
3735 (package
3736 (inherit rust-clang-sys-0.26)
3737 (name "rust-clang-sys")
3738 (version "0.22.0")
3739 (source
3740 (origin
3741 (method url-fetch)
3742 (uri (crate-uri "clang-sys" version))
3743 (file-name
3744 (string-append name "-" version ".tar.gz"))
3745 (sha256
3746 (base32
3747 "0f65dw1ydnzq4wrv894fql78n4ikb53jjp53xck0s4hb64s1m6lk"))))
3748 (build-system cargo-build-system)
3749 (arguments
3750 `(#:cargo-inputs
3751 (("rust-clippy" ,rust-clippy-0.0)
3752 ("rust-glob" ,rust-glob-0.2)
3753 ("rust-libc" ,rust-libc-0.2)
3754 ("rust-libloading" ,rust-libloading-0.5))))))
3755
3756 (define-public rust-clang-sys-0.11
3757 (package
3758 (inherit rust-clang-sys-0.22)
3759 (name "rust-clang-sys")
3760 (version "0.11.1")
3761 (source
3762 (origin
3763 (method url-fetch)
3764 (uri (crate-uri "clang-sys" version))
3765 (file-name
3766 (string-append name "-" version ".tar.gz"))
3767 (sha256
3768 (base32
3769 "17i47skqp1d9svil2m1wspnhz7ci1x0fipia70ns0qffciwiz48r"))))
3770 (build-system cargo-build-system)
3771 (arguments
3772 `(#:cargo-inputs
3773 (("rust-bitflags" ,rust-bitflags-0.7)
3774 ("rust-clippy" ,rust-clippy-0.0)
3775 ("rust-glob" ,rust-glob-0.2)
3776 ("rust-lazy-static" ,rust-lazy-static-0.2)
3777 ("rust-libc" ,rust-libc-0.2)
3778 ("rust-libloading" ,rust-libloading-0.3))))))
3779
3780 (define-public rust-clap-2
3781 (package
3782 (name "rust-clap")
3783 (version "2.33.1")
3784 (source
3785 (origin
3786 (method url-fetch)
3787 (uri (crate-uri "clap" version))
3788 (file-name (string-append name "-" version ".crate"))
3789 (sha256
3790 (base32
3791 "0a91g4m6rcqpf6gzxh43cj6mnj9g8ahpr634baim6kcmgza81ymx"))))
3792 (build-system cargo-build-system)
3793 (arguments
3794 `(#:cargo-inputs
3795 (("rust-ansi-term" ,rust-ansi-term-0.11)
3796 ("rust-atty" ,rust-atty-0.2)
3797 ("rust-bitflags" ,rust-bitflags-1)
3798 ("rust-clippy" ,rust-clippy-0.0)
3799 ("rust-strsim" ,rust-strsim-0.8)
3800 ("rust-term-size" ,rust-term-size-0.3)
3801 ("rust-textwrap" ,rust-textwrap-0.11)
3802 ("rust-unicode-width" ,rust-unicode-width-0.1)
3803 ("rust-vec-map" ,rust-vec-map-0.8)
3804 ("rust-yaml-rust" ,rust-yaml-rust-0.3))
3805 #:cargo-development-inputs
3806 (("rust-lazy-static" ,rust-lazy-static-1)
3807 ("rust-regex" ,rust-regex-1)
3808 ("rust-version-sync" ,rust-version-sync-0.8))))
3809 (home-page "https://clap.rs/")
3810 (synopsis "Command Line Argument Parser")
3811 (description
3812 "This package provides a simple to use, efficient, and full-featured
3813 Command Line Argument Parser.")
3814 (license license:expat)))
3815
3816 (define-public rust-clicolors-control-1.0
3817 (package
3818 (name "rust-clicolors-control")
3819 (version "1.0.1")
3820 (source
3821 (origin
3822 (method url-fetch)
3823 (uri (crate-uri "clicolors-control" version))
3824 (file-name (string-append name "-" version ".crate"))
3825 (sha256
3826 (base32
3827 "07klix8nbpwk0cg1k4h0kkiijm1jxvrzndqdkr7dqr6xvkjjw24h"))))
3828 (build-system cargo-build-system)
3829 (arguments
3830 `(#:cargo-inputs
3831 (("rust-atty" ,rust-atty-0.2)
3832 ("rust-lazy-static" ,rust-lazy-static-1)
3833 ("rust-libc" ,rust-libc-0.2)
3834 ("rust-winapi" ,rust-winapi-0.3))))
3835 (home-page "https://github.com/mitsuhiko/clicolors-control")
3836 (synopsis "Common utility library to control CLI colorization")
3837 (description
3838 "This package provides a common utility library to control CLI
3839 colorization.")
3840 (license license:expat)))
3841
3842 (define-public rust-clipboard-win-2.1
3843 (package
3844 (name "rust-clipboard-win")
3845 (version "2.1.2")
3846 (source
3847 (origin
3848 (method url-fetch)
3849 (uri (crate-uri "clipboard-win" version))
3850 (file-name
3851 (string-append name "-" version ".tar.gz"))
3852 (sha256
3853 (base32
3854 "0431sg4jhabrqf2dliiwhbx9hinb9z4qfcm6914lm5mb17ya5798"))))
3855 (build-system cargo-build-system)
3856 (arguments
3857 `(#:tests? #f ; Tests are for Windows.
3858 #:cargo-inputs (("rust-winapi" ,rust-winapi-0.3))))
3859 (home-page "https://github.com/DoumanAsh/clipboard-win")
3860 (synopsis "Interact with Windows clipboard")
3861 (description
3862 "This package provides simple way to interact with Windows clipboard.")
3863 (license license:expat)))
3864
3865 (define-public rust-clippy-0.0
3866 (package
3867 (name "rust-clippy")
3868 (version "0.0.302")
3869 (source
3870 (origin
3871 (method url-fetch)
3872 (uri (crate-uri "clippy" version))
3873 (file-name
3874 (string-append name "-" version ".tar.gz"))
3875 (sha256
3876 (base32
3877 "1562x3sq9mgmc8j39gd34wqm7ybrdvpmj7cc1n450gwsawayw4fr"))))
3878 (build-system cargo-build-system)
3879 (arguments
3880 `(#:skip-build? #t
3881 #:cargo-inputs
3882 (("rust-term" ,rust-term-0.5))))
3883 (home-page "https://github.com/rust-lang/rust-clippy")
3884 (synopsis
3885 "Lints to avoid common pitfalls in Rust")
3886 (description
3887 "This package provides a bunch of helpful lints to avoid common
3888 pitfalls in Rust.")
3889 (license (list license:expat license:asl2.0))))
3890
3891 (define-public rust-cloudabi-0.1
3892 (package
3893 (name "rust-cloudabi")
3894 (version "0.1.0")
3895 (source
3896 (origin
3897 (method url-fetch)
3898 (uri (crate-uri "cloudabi" version))
3899 (file-name (string-append name "-" version ".crate"))
3900 (sha256
3901 (base32
3902 "0rv4yf5jlldfkynzrw687s00f4x12ypw7axv71vawhy6h4i52i23"))))
3903 (build-system cargo-build-system)
3904 (arguments
3905 `(#:skip-build? #t
3906 #:cargo-inputs
3907 (("rust-bitflags" ,rust-bitflags-1))))
3908 (home-page "https://cloudabi.org/")
3909 (synopsis "Low level interface to CloudABI")
3910 (description "This package provides a low level interface to CloudABI. It
3911 contains all syscalls and related types.")
3912 (license license:bsd-2)))
3913
3914 (define-public rust-cloudabi-0.0
3915 (package
3916 (inherit rust-cloudabi-0.1)
3917 (name "rust-cloudabi")
3918 (version "0.0.3")
3919 (source
3920 (origin
3921 (method url-fetch)
3922 (uri (crate-uri "cloudabi" version))
3923 (file-name (string-append name "-" version ".crate"))
3924 (sha256
3925 (base32
3926 "0kxcg83jlihy0phnd2g8c2c303px3l2p3pkjz357ll6llnd5pz6x"))))
3927 (arguments
3928 `(#:cargo-inputs
3929 (("rust-bitflags" ,rust-bitflags-1))))))
3930
3931 (define-public rust-cloudflare-zlib-sys-0.2
3932 (package
3933 (name "rust-cloudflare-zlib-sys")
3934 (version "0.2.0")
3935 (source
3936 (origin
3937 (method url-fetch)
3938 (uri (crate-uri "cloudflare-zlib-sys" version))
3939 (file-name
3940 (string-append name "-" version ".tar.gz"))
3941 (sha256
3942 (base32
3943 "01lwfd15ijw4d8jsqp87yv4wpmzcp84qm0qqwy3yxmm0fjr5q6by"))))
3944 ;; This crate bundles cloudflare's fork of zlib, so we don't unbundle it.
3945 (build-system cargo-build-system)
3946 (arguments
3947 `(#:skip-build? #t
3948 #:cargo-inputs
3949 (("rust-cc" ,rust-cc-1))))
3950 (home-page "https://github.com/cloudflare/zlib")
3951 (synopsis
3952 "Cloudflare fork of zlib with massive performance improvements")
3953 (description
3954 "Cloudflare fork of zlib with massive performance improvements.")
3955 (license
3956 (list license:expat
3957 license:asl2.0
3958 license:zlib))))
3959
3960 (define-public rust-cmake-0.1
3961 (package
3962 (name "rust-cmake")
3963 (version "0.1.44")
3964 (source
3965 (origin
3966 (method url-fetch)
3967 (uri (crate-uri "cmake" version))
3968 (file-name (string-append name "-" version ".crate"))
3969 (sha256
3970 (base32
3971 "1fv346ipxmvff6qrnh78rild0s8k72ilfjkdsrk869562y62cmhf"))))
3972 (build-system cargo-build-system)
3973 (arguments
3974 `(#:cargo-inputs (("rust-cc" ,rust-cc-1))))
3975 (home-page "https://github.com/alexcrichton/cmake-rs")
3976 (synopsis "Rust build dependency for running cmake")
3977 (description
3978 "This package provides a build dependency for running @code{cmake} to build
3979 a native library. The CMake executable is assumed to be @code{cmake} unless the
3980 CMAKE environmental variable is set.")
3981 (license (list license:asl2.0
3982 license:expat))))
3983
3984 (define-public rust-cocoa-0.19
3985 (package
3986 (name "rust-cocoa")
3987 (version "0.19.1")
3988 (source
3989 (origin
3990 (method url-fetch)
3991 (uri (crate-uri "cocoa" version))
3992 (file-name
3993 (string-append name "-" version ".tar.gz"))
3994 (sha256
3995 (base32
3996 "0034vahbfv574q4b63rj241b8rnka5cjiqsqc6wiggnin9l7g7zj"))))
3997 (build-system cargo-build-system)
3998 (arguments
3999 `(#:skip-build? #t ; only for macOS
4000 #:cargo-inputs
4001 (("rust-bitflags" ,rust-bitflags-1)
4002 ("rust-block" ,rust-block-0.1)
4003 ("rust-core-foundation" ,rust-core-foundation-0.6)
4004 ("rust-core-graphics" ,rust-core-graphics-0.17)
4005 ("rust-foreign-types" ,rust-foreign-types-0.3)
4006 ("rust-libc" ,rust-libc-0.2)
4007 ("rust-objc" ,rust-objc-0.2))))
4008 (home-page "https://github.com/servo/core-foundation-rs")
4009 (synopsis "Bindings to Cocoa for macOS")
4010 (description "Bindings to Cocoa for macOS.")
4011 (license (list license:expat license:asl2.0))))
4012
4013 (define-public rust-cocoa-0.18
4014 (package
4015 (inherit rust-cocoa-0.19)
4016 (name "rust-cocoa")
4017 (version "0.18.5")
4018 (source
4019 (origin
4020 (method url-fetch)
4021 (uri (crate-uri "cocoa" version))
4022 (file-name
4023 (string-append name "-" version ".tar.gz"))
4024 (sha256
4025 (base32
4026 "0m6fgdr4d2fp8jhkqvwr23hrqqqjv72g0j9vdgijc58k05j9j1hp"))))))
4027
4028 (define-public rust-color-quant-1.0
4029 (package
4030 (name "rust-color-quant")
4031 (version "1.0.1")
4032 (source
4033 (origin
4034 (method url-fetch)
4035 (uri (crate-uri "color-quant" version))
4036 (file-name
4037 (string-append name "-" version ".tar.gz"))
4038 (sha256
4039 (base32
4040 "1ga56jrafnjm80903nnqjkyii4bwd6a7visxh0g8hgi6cmrvbfqd"))))
4041 (build-system cargo-build-system)
4042 (home-page "https://github.com/PistonDevelopers/color_quant.git")
4043 (synopsis
4044 "Color quantization library to reduce n colors to 256 colors")
4045 (description
4046 "Color quantization library to reduce n colors to 256 colors.")
4047 (license license:expat)))
4048
4049 (define-public rust-colored-1
4050 (package
4051 (name "rust-colored")
4052 (version "1.9.3")
4053 (source
4054 (origin
4055 (method url-fetch)
4056 (uri (crate-uri "colored" version))
4057 (file-name
4058 (string-append name "-" version ".tar.gz"))
4059 (sha256
4060 (base32
4061 "0nbc1czs512h1k696y7glv1kjrb2b914zpxraic6q5fgv80wizzl"))))
4062 (build-system cargo-build-system)
4063 (arguments
4064 `(#:tests? #f
4065 #:cargo-inputs
4066 (("rust-atty" ,rust-atty-0.2)
4067 ("rust-winapi" ,rust-winapi-0.3)
4068 ("rust-lazy-static" ,rust-lazy-static-1))
4069 #:cargo-development-inputs
4070 (("rust-ansi-term" ,rust-ansi-term-0.12)
4071 ("rust-rspec" ,rust-rspec-1))
4072 #:phases
4073 (modify-phases %standard-phases
4074 (add-after 'unpack 'fix-version-requirements
4075 (lambda _
4076 (substitute* "Cargo.toml"
4077 (("1.0.0-beta.3") ,(package-version rust-rspec-1)))
4078 #t)))))
4079 (home-page "https://github.com/mackwic/colored")
4080 (synopsis "Add colors in your terminal")
4081 (description
4082 "The most simple way to add colors in your terminal.")
4083 (license license:mpl2.0)))
4084
4085 (define-public rust-colored-1.9.1
4086 (package/inherit rust-colored-1
4087 (name "rust-colored")
4088 (version "1.9.1")
4089 (source
4090 (origin
4091 (method url-fetch)
4092 (uri (crate-uri "colored" version))
4093 (file-name (string-append name "-" version ".tar.gz"))
4094 (sha256
4095 (base32 "0fildacm47g86acmx44yvxx6cka8fdym5qkgfm8x8gh2hsrghc7r"))))))
4096
4097 ;; This package requires features which are unavailable
4098 ;; on the stable releases of Rust.
4099 (define-public rust-compiler-builtins-0.1
4100 (package
4101 (name "rust-compiler-builtins")
4102 (version "0.1.26")
4103 (source
4104 (origin
4105 (method url-fetch)
4106 (uri (crate-uri "compiler_builtins" version))
4107 (file-name (string-append name "-" version ".crate"))
4108 (sha256
4109 (base32
4110 "1rhj6ccmfkh9gcxnxgjq4fg257yi4f9325nfzsphbmxwkrg06sq3"))))
4111 (build-system cargo-build-system)
4112 (arguments
4113 `(#:skip-build? #t
4114 #:cargo-inputs
4115 (("rust-rustc-std-workspace-core" ,rust-rustc-std-workspace-core-1)
4116 ("rust-cc" ,rust-cc-1))))
4117 (home-page "https://github.com/rust-lang/compiler-builtins")
4118 (synopsis "Compiler intrinsics used by the Rust compiler")
4119 (description
4120 "This package provides compiler intrinsics used by the Rust compiler. This
4121 package is primarily useful when building the @code{core} crate yourself and you
4122 need compiler-rt intrinsics.")
4123 (license (list license:asl2.0
4124 license:expat))))
4125
4126 (define-public rust-compiler-error-0.1
4127 (package
4128 (name "rust-compiler-error")
4129 (version "0.1.1")
4130 (source
4131 (origin
4132 (method url-fetch)
4133 (uri (crate-uri "compiler_error" version))
4134 (file-name
4135 (string-append name "-" version ".tar.gz"))
4136 (sha256
4137 (base32
4138 "0irh7c0gznk2k6mj3cmqw7x4pg59lppmy1y8d6k5xc926rnmz5zg"))))
4139 (build-system cargo-build-system)
4140 (arguments '(#:skip-build? #t))
4141 (home-page "https://github.com/lu-zero/compiler_error")
4142 (synopsis "Triggerable compiler error")
4143 (description "This package provides a triggerable compiler error for Rust.")
4144 (license license:expat)))
4145
4146 (define-public rust-compiletest-rs-0.3
4147 (package
4148 (name "rust-compiletest-rs")
4149 (version "0.3.22")
4150 (source
4151 (origin
4152 (method url-fetch)
4153 (uri (crate-uri "compiletest-rs" version))
4154 (file-name
4155 (string-append name "-" version ".tar.gz"))
4156 (sha256
4157 (base32
4158 "1di7kl2zv7jcwqq343aafqhn31gfa600zh4mi6cp10mn6a9wq3pl"))))
4159 (build-system cargo-build-system)
4160 (arguments
4161 `(#:skip-build? #t
4162 #:cargo-inputs
4163 (("rust-diff" ,rust-diff-0.1)
4164 ("rust-filetime" ,rust-filetime-0.2)
4165 ("rust-getopts" ,rust-getopts-0.2)
4166 ("rust-libc" ,rust-libc-0.2)
4167 ("rust-log" ,rust-log-0.4)
4168 ("rust-miow" ,rust-miow-0.3)
4169 ("rust-regex" ,rust-regex-1)
4170 ("rust-rustfix" ,rust-rustfix-0.4)
4171 ("rust-serde" ,rust-serde-1)
4172 ("rust-serde-derive" ,rust-serde-derive-1)
4173 ("rust-serde-json" ,rust-serde-json-1)
4174 ("rust-tempfile" ,rust-tempfile-3)
4175 ("rust-tester" ,rust-tester-0.5)
4176 ("rust-winapi" ,rust-winapi-0.3))))
4177 (home-page "https://github.com/laumann/compiletest-rs")
4178 (synopsis "Compiletest utility from the Rust compiler")
4179 (description
4180 "The compiletest utility from the Rust compiler as a standalone testing
4181 harness.")
4182 (license (list license:asl2.0 license:expat))))
4183
4184 (define-public rust-compiletest-rs-0.2
4185 (package
4186 (inherit rust-compiletest-rs-0.3)
4187 (name "rust-compiletest-rs")
4188 (version "0.2.10")
4189 (source
4190 (origin
4191 (method url-fetch)
4192 (uri (crate-uri "compiletest_rs" version))
4193 (file-name
4194 (string-append name "-" version ".tar.gz"))
4195 (sha256
4196 (base32
4197 "0njz4shbhl1pvb6ngpi1wpz2gr5lf2dcha22lpdk995pzrwd6h97"))))
4198 (arguments
4199 `(#:skip-build? #t
4200 #:cargo-inputs
4201 (("rust-log" ,rust-log-0.3)
4202 ("rust-rustc-serialize" ,rust-rustc-serialize-0.3)
4203 ("rust-tempdir" ,rust-tempdir-0.3))))))
4204
4205 (define-public rust-console-0.11
4206 (package
4207 (name "rust-console")
4208 (version "0.11.3")
4209 (source
4210 (origin
4211 (method url-fetch)
4212 (uri (crate-uri "console" version))
4213 (file-name
4214 (string-append name "-" version ".tar.gz"))
4215 (sha256
4216 (base32
4217 "0nmwkbb1j1zjb2z4akk83rqgnbv7j3dla4nxv0ibk9xvavk982cc"))))
4218 (build-system cargo-build-system)
4219 (arguments
4220 `(#:cargo-inputs
4221 (("rust-encode-unicode" ,rust-encode-unicode-0.3)
4222 ("rust-lazy-static" ,rust-lazy-static-1)
4223 ("rust-libc" ,rust-libc-0.2)
4224 ("rust-regex" ,rust-regex-1)
4225 ("rust-terminal-size" ,rust-terminal-size-0.1)
4226 ("rust-termios" ,rust-termios-0.3)
4227 ("rust-unicode-width" ,rust-unicode-width-0.1)
4228 ("rust-winapi" ,rust-winapi-0.3)
4229 ("rust-winapi-util" ,rust-winapi-util-0.1))))
4230 (home-page "https://github.com/mitsuhiko/console")
4231 (synopsis "Terminal and console abstraction for Rust")
4232 (description
4233 "This package provides a terminal and console abstraction for Rust")
4234 (license license:expat)))
4235
4236 (define-public rust-console-0.9
4237 (package
4238 (inherit rust-console-0.11)
4239 (name "rust-console")
4240 (version "0.9.2")
4241 (source
4242 (origin
4243 (method url-fetch)
4244 (uri (crate-uri "console" version))
4245 (file-name
4246 (string-append name "-" version ".tar.gz"))
4247 (sha256
4248 (base32
4249 "1h765951c9mywff534f0191slazykmif4290g2yarcwhd2cg7q25"))))
4250 (arguments
4251 `(#:cargo-inputs
4252 (("rust-unicode-width" ,rust-unicode-width-0.1)
4253 ("rust-libc" ,rust-libc-0.2)
4254 ("rust-termios" ,rust-termios-0.3)
4255 ("rust-encode-unicode" ,rust-encode-unicode-0.3)
4256 ("rust-winapi" ,rust-winapi-0.3)
4257 ("rust-clicolors-control" ,rust-clicolors-control-1.0)
4258 ("rust-regex" ,rust-regex-1)
4259 ("rust-lazy-static" ,rust-lazy-static-1))))))
4260
4261 (define-public rust-console-0.7
4262 (package
4263 (name "rust-console")
4264 (version "0.7.7")
4265 (source
4266 (origin
4267 (method url-fetch)
4268 (uri (crate-uri "console" version))
4269 (file-name
4270 (string-append name "-" version ".tar.gz"))
4271 (sha256
4272 (base32
4273 "0a4n2syzik9lh02v2i4wdazvm05d99bib7dw0lqvz8mq2hn7r9cc"))))
4274 (build-system cargo-build-system)
4275 (arguments
4276 `(#:skip-build? #t
4277 #:cargo-inputs
4278 (("rust-atty" ,rust-atty-0.2)
4279 ("rust-clicolors-control" ,rust-clicolors-control-1.0)
4280 ("rust-encode-unicode" ,rust-encode-unicode-0.3)
4281 ("rust-lazy-static" ,rust-lazy-static-1)
4282 ("rust-libc" ,rust-libc-0.2)
4283 ("rust-parking-lot" ,rust-parking-lot-0.8)
4284 ("rust-regex" ,rust-regex-1)
4285 ("rust-termios" ,rust-termios-0.3)
4286 ("rust-unicode-width" ,rust-unicode-width-0.1)
4287 ("rust-winapi" ,rust-winapi-0.3))))
4288 (home-page "https://github.com/mitsuhiko/console")
4289 (synopsis "Terminal and console abstraction for Rust")
4290 (description
4291 "This package provides a terminal and console abstraction for Rust.")
4292 (license license:expat)))
4293
4294 (define-public rust-console-error-panic-hook-0.1
4295 (package
4296 (name "rust-console-error-panic-hook")
4297 (version "0.1.6")
4298 (source
4299 (origin
4300 (method url-fetch)
4301 (uri (crate-uri "console_error_panic_hook" version))
4302 (file-name
4303 (string-append name "-" version ".tar.gz"))
4304 (sha256
4305 (base32
4306 "04d2narcrzk9bnddz17rr2l819l82pr0h6d98s2w9q236n87dndq"))))
4307 (build-system cargo-build-system)
4308 (arguments
4309 `(#:skip-build? #t
4310 #:cargo-inputs
4311 (("rust-cfg-if" ,rust-cfg-if-0.1)
4312 ("rust-wasm-bindgen" ,rust-wasm-bindgen-0.2))))
4313 (home-page "https://github.com/rustwasm/console_error_panic_hook")
4314 (synopsis "Logs panics to console.error")
4315 (description
4316 "This package provides a panic hook for @code{wasm32-unknown-unknown}
4317 that logs panics to @code{console.error}.")
4318 (license (list license:expat license:asl2.0))))
4319
4320 (define-public rust-console-log-0.1
4321 (package
4322 (name "rust-console-log")
4323 (version "0.1.2")
4324 (source
4325 (origin
4326 (method url-fetch)
4327 (uri (crate-uri "console-log" version))
4328 (file-name
4329 (string-append name "-" version ".tar.gz"))
4330 (sha256
4331 (base32
4332 "0j1wd2885m3245bhsb2qjvw08lzplbi1rgg2v3yv0hbljk972y0y"))))
4333 (build-system cargo-build-system)
4334 (arguments
4335 `(#:cargo-inputs
4336 (("rust-log" ,rust-log-0.4)
4337 ("rust-web-sys" ,rust-web-sys-0.3))))
4338 (home-page "https://github.com/iamcodemaker/console_log")
4339 (synopsis "Route Rust log messages to the browser's console")
4340 (description
4341 "This package provides a logging facility that routes Rust log messages to
4342 the browser's console.")
4343 (license (list license:expat license:asl2.0))))
4344
4345 (define-public rust-const-fn-0.4
4346 (package
4347 (name "rust-const-fn")
4348 (version "0.4.2")
4349 (source
4350 (origin
4351 (method url-fetch)
4352 (uri (crate-uri "const-fn" version))
4353 (file-name (string-append name "-" version ".tar.gz"))
4354 (sha256
4355 (base32
4356 "1wnhzyrhfcaawnzi172k98cfawwi5zwqql7pg0nz2qlccm6dz46f"))))
4357 (build-system cargo-build-system)
4358 (home-page "https://github.com/taiki-e/const_fn")
4359 (synopsis "Generate const functions with conditional compilations")
4360 (description "This package provides an attribute for easy generation of
4361 const functions with conditional compilations.")
4362 (license (list license:asl2.0 license:expat))))
4363
4364 (define-public rust-const-random-0.1
4365 (package
4366 (name "rust-const-random")
4367 (version "0.1.8")
4368 (source
4369 (origin
4370 (method url-fetch)
4371 (uri (crate-uri "const-random" version))
4372 (file-name (string-append name "-" version ".tar.gz"))
4373 (sha256
4374 (base32
4375 "0sp1ang5sh27fq5b7g9fdwpq4d5s17ymj7khfzax4bbvffngj6ig"))))
4376 (build-system cargo-build-system)
4377 (arguments
4378 `(#:cargo-inputs
4379 (("rust-const-random-macro" ,rust-const-random-macro-0.1)
4380 ("rust-proc-macro-hack" ,rust-proc-macro-hack-0.5))))
4381 (home-page "https://github.com/tkaitchuck/constrandom")
4382 (synopsis "Compile time random number generation")
4383 (description "This package provides compile time random number
4384 generation.")
4385 (license (list license:expat license:asl2.0))))
4386
4387 (define-public rust-const-random-macro-0.1
4388 (package
4389 (name "rust-const-random-macro")
4390 (version "0.1.8")
4391 (source
4392 (origin
4393 (method url-fetch)
4394 (uri (crate-uri "const-random-macro" version))
4395 (file-name (string-append name "-" version ".tar.gz"))
4396 (sha256
4397 (base32
4398 "0ykc9riajn6bijvw46092gp18vrbky3y1cjpgjgx57a5xc3cdr15"))))
4399 (build-system cargo-build-system)
4400 (arguments
4401 `(#:cargo-inputs
4402 (("rust-getrandom" ,rust-getrandom-0.1)
4403 ("rust-proc-macro-hack" ,rust-proc-macro-hack-0.5))))
4404 (home-page "https://github.com/tkaitchuck/constrandom")
4405 (synopsis "Procedural macro used by const-random")
4406 (description "This package provides the procedural macro used by
4407 @code{rust-const-random}.")
4408 (license (list license:expat license:asl2.0))))
4409
4410 (define-public rust-constant-time-eq-0.1
4411 (package
4412 (name "rust-constant-time-eq")
4413 (version "0.1.5")
4414 (source
4415 (origin
4416 (method url-fetch)
4417 (uri (crate-uri "constant_time_eq" version))
4418 (file-name (string-append name "-" version ".crate"))
4419 (sha256
4420 (base32
4421 "1g3vp04qzmk6cpzrd19yci6a95m7ap6wy7wkwgiy2pjklklrfl14"))))
4422 (build-system cargo-build-system)
4423 (home-page "https://github.com/cesarb/constant_time_eq")
4424 (synopsis
4425 "Compares two equal-sized byte strings in constant time")
4426 (description
4427 "This package compares two equal-sized byte strings in constant time.
4428 It is inspired by the Linux kernel's @code{crypto_memneq}.")
4429 (license license:cc0)))
4430
4431 (define-public rust-conv-0.3
4432 (package
4433 (name "rust-conv")
4434 (version "0.3.3")
4435 (source
4436 (origin
4437 (method url-fetch)
4438 (uri (crate-uri "conv" version))
4439 (file-name
4440 (string-append name "-" version ".tar.gz"))
4441 (sha256
4442 (base32
4443 "168j1npqrif1yqxbgbk0pdrx9shzhs5ylc5a4xw49b6hbxi11zvq"))
4444 (modules '((guix build utils)))
4445 (snippet
4446 '(begin (substitute* "Cargo.toml"
4447 (("0.2.21.*") "0.2.21\"\n"))
4448 #t))))
4449 (build-system cargo-build-system)
4450 (arguments
4451 `(#:cargo-inputs
4452 (("rust-custom-derive" ,rust-custom-derive-0.1))
4453 #:cargo-development-inputs
4454 (("rust-quickcheck" ,rust-quickcheck-0.2)
4455 ("rust-winapi" ,rust-winapi-0.2))))
4456 (home-page "https://github.com/DanielKeep/rust-conv")
4457 (synopsis "Conversion traits with more specific semantics")
4458 (description
4459 "This crate provides a number of conversion traits with more specific
4460 semantics than those provided by @code{as} or @code{From}/@code{Into}.")
4461 (license license:expat)))
4462
4463 (define-public rust-cookie-0.12
4464 (package
4465 (name "rust-cookie")
4466 (version "0.12.0")
4467 (source
4468 (origin
4469 (method url-fetch)
4470 (uri (crate-uri "cookie" version))
4471 (file-name
4472 (string-append name "-" version ".tar.gz"))
4473 (sha256
4474 (base32
4475 "1mdvqixahcywvqp0y8k2skkgbpfhsp0w73l9mz93dcrx1gq091l8"))))
4476 (build-system cargo-build-system)
4477 (arguments
4478 `(#:cargo-inputs
4479 (("rust-base64" ,rust-base64-0.10)
4480 ("rust-ring" ,rust-ring-0.14)
4481 ("rust-time" ,rust-time-0.1)
4482 ("rust-url" ,rust-url-1))))
4483 (home-page "https://github.com/SergioBenitez/cookie-rs")
4484 (synopsis
4485 "Crate for parsing HTTP cookie headers and managing a cookie jar")
4486 (description
4487 "Parse HTTP cookie headers and manage a cookie jar with this crate.
4488 It supports signed and private (encrypted + signed) jars.")
4489 (license (list license:asl2.0 license:expat))))
4490
4491 (define-public rust-cookie-store-0.7
4492 (package
4493 (name "rust-cookie-store")
4494 (version "0.7.0")
4495 (source
4496 (origin
4497 (method url-fetch)
4498 (uri (crate-uri "cookie-store" version))
4499 (file-name
4500 (string-append name "-" version ".tar.gz"))
4501 (sha256
4502 (base32
4503 "174i9k9g62pfx7y1nqynywdpjplkl3j4hi3ck6bz2r996qzhnxa6"))))
4504 (build-system cargo-build-system)
4505 (arguments
4506 `(#:cargo-inputs
4507 (("rust-cookie" ,rust-cookie-0.12)
4508 ("rust-idna" ,rust-idna-0.1)
4509 ("rust-log" ,rust-log-0.4)
4510 ("rust-publicsuffix" ,rust-publicsuffix-1)
4511 ("rust-serde" ,rust-serde-1)
4512 ("rust-serde-json" ,rust-serde-json-1)
4513 ("rust-time" ,rust-time-0.1)
4514 ("rust-try-from" ,rust-try-from-0.3)
4515 ("rust-url" ,rust-url-1))
4516 #:cargo-development-inputs
4517 (("rust-env-logger" ,rust-env-logger-0.6)
4518 ("rust-pretty-assertions" ,rust-pretty-assertions-0.6))))
4519 (home-page "https://github.com/pfernie/cookie_store")
4520 (synopsis "Implementation of Cookie storage and retrieval per RFC6265")
4521 (description
4522 "This crate provides an implementation for storing and retrieving Cookies per
4523 the path and domain matching rules specified in RFC6265.
4524
4525 Split from the user_agent crate.")
4526 (license (list license:asl2.0 license:expat))))
4527
4528 (define-public rust-cordic-0.1
4529 (package
4530 (name "rust-cordic")
4531 (version "0.1.4")
4532 (source
4533 (origin
4534 (method url-fetch)
4535 (uri (crate-uri "cordic" version))
4536 (file-name
4537 (string-append name "-" version ".tar.gz"))
4538 (sha256
4539 (base32
4540 "13zvqn6c8d8lp18p9ik10q100wfsyv2m2n4fca16laq3yw7r231m"))))
4541 (build-system cargo-build-system)
4542 (arguments
4543 `(#:skip-build? #t ; rust-fixed fails to build
4544 #:cargo-inputs (("rust-fixed" ,rust-fixed-1))))
4545 (home-page "https://github.com/sebcrozet/cordic")
4546 (synopsis "Special functions for fixed-point numbers using the CORDIC method")
4547 (description "This package provides special functions for fixed-point
4548 numbers using the CORDIC method.")
4549 (license license:bsd-3)))
4550
4551 (define-public rust-cookie-0.14
4552 (package
4553 (name "rust-cookie")
4554 (version "0.14.2")
4555 (source
4556 (origin
4557 (method url-fetch)
4558 (uri (crate-uri "cookie" version))
4559 (file-name (string-append name "-" version ".tar.gz"))
4560 (sha256
4561 (base32
4562 "1q56fl2cqrci9ksa80d7g220phq02nf1yfbvxkpk9g1p95ma2wqk"))))
4563 (build-system cargo-build-system)
4564 (arguments
4565 `(#:cargo-inputs
4566 (("rust-aes-gcm" ,rust-aes-gcm-0.6)
4567 ("rust-base64" ,rust-base64-0.12)
4568 ("rust-hkdf" ,rust-hkdf-0.9)
4569 ("rust-hmac" ,rust-hmac-0.8)
4570 ("rust-percent-encoding" ,rust-percent-encoding-2)
4571 ("rust-rand" ,rust-rand-0.7)
4572 ("rust-sha2" ,rust-sha2-0.9)
4573 ("rust-time" ,rust-time-0.2))
4574 #:cargo-development-inputs
4575 (("rust-version-check" ,rust-version-check-0.9))))
4576 (home-page "https://github.com/SergioBenitez/cookie-rs")
4577 (synopsis "HTTP cookie parsing and cookie jar management")
4578 (description "This package provides HTTP cookie parsing and cookie jar
4579 management. It supports signed and private (encrypted, authenticated) jars.")
4580 (license (list license:expat license:asl2.0))))
4581
4582 (define-public rust-cookie-store-0.12
4583 (package
4584 (name "rust-cookie-store")
4585 (version "0.12.0")
4586 (source
4587 (origin
4588 (method url-fetch)
4589 (uri (crate-uri "cookie_store" version))
4590 (file-name (string-append name "-" version ".tar.gz"))
4591 (sha256
4592 (base32
4593 "1lqhmdwgnyvi1mjmw4rbgd02fwav4aabpg4vcld23d8c9g5dy61q"))))
4594 (build-system cargo-build-system)
4595 (arguments
4596 `(#:cargo-inputs
4597 (("rust-cookie" ,rust-cookie-0.14)
4598 ("rust-idna" ,rust-idna-0.2)
4599 ("rust-indexmap" ,rust-indexmap-1)
4600 ("rust-log" ,rust-log-0.4)
4601 ("rust-publicsuffix" ,rust-publicsuffix-1)
4602 ("rust-serde" ,rust-serde-1)
4603 ("rust-serde-json" ,rust-serde-json-1)
4604 ("rust-time" ,rust-time-0.2)
4605 ("rust-url" ,rust-url-2))
4606 #:cargo-development-inputs
4607 (("rust-env-logger" ,rust-env-logger-0.7)
4608 ("rust-pretty-assertions" ,rust-pretty-assertions-0.6))))
4609 (home-page "https://github.com/pfernie/cookie_store")
4610 (synopsis "Cookie storage and retrieval")
4611 (description "This package implements cookie storage and retrieval.")
4612 (license (list license:expat license:asl2.0))))
4613
4614 (define-public rust-core-arch-0.1
4615 (package
4616 (name "rust-core-arch")
4617 (version "0.1.5")
4618 (source
4619 (origin
4620 (method url-fetch)
4621 (uri (crate-uri "core_arch" version))
4622 (file-name
4623 (string-append name "-" version ".tar.gz"))
4624 (sha256
4625 (base32
4626 "04vdvr9vj0f1cv2p54nsszmrrk9w1js4c0z4i0bdlajl1lydslim"))))
4627 (build-system cargo-build-system)
4628 (arguments
4629 `(#:skip-build? #t
4630 #:cargo-development-inputs
4631 (("rust-wasm-bindgen-test" ,rust-wasm-bindgen-test-0.2))))
4632 (home-page "https://github.com/rust-lang/stdarch")
4633 (synopsis
4634 "Rust's core library architecture-specific intrinsics")
4635 (description
4636 "@code{core::arch} - Rust's core library architecture-specific
4637 intrinsics.")
4638 (license (list license:expat license:asl2.0))))
4639
4640 (define-public rust-core-foundation-0.7
4641 (package
4642 (name "rust-core-foundation")
4643 (version "0.7.0")
4644 (source
4645 (origin
4646 (method url-fetch)
4647 (uri (crate-uri "core-foundation" version))
4648 (file-name
4649 (string-append name "-" version ".tar.gz"))
4650 (sha256
4651 (base32
4652 "0wbias8f0m5kyn2pcksi0h58fdslams6nmf16w78fgn42dx4rljp"))))
4653 (build-system cargo-build-system)
4654 (arguments
4655 `(#:skip-build? #t
4656 #:cargo-inputs
4657 (("rust-chrono" ,rust-chrono-0.4)
4658 ("rust-core-foundation-sys" ,rust-core-foundation-sys-0.7)
4659 ("rust-libc" ,rust-libc-0.2)
4660 ("rust-uuid" ,rust-uuid-0.5))))
4661 (home-page "https://github.com/servo/core-foundation-rs")
4662 (synopsis "Bindings to Core Foundation for macOS")
4663 (description "This package provides bindings to Core Foundation for
4664 macOS.")
4665 (license (list license:expat license:asl2.0))))
4666
4667 (define-public rust-core-foundation-0.6
4668 (package
4669 (inherit rust-core-foundation-0.7)
4670 (name "rust-core-foundation")
4671 (version "0.6.4")
4672 (source
4673 (origin
4674 (method url-fetch)
4675 (uri (crate-uri "core-foundation" version))
4676 (file-name
4677 (string-append name "-" version ".tar.gz"))
4678 (sha256
4679 (base32
4680 "0va97wf49c8dzm9c8pgyk1jn7z21rl0bj1syf2zz5m2z2hzy1f95"))))
4681 (arguments
4682 `(#:tests? #f
4683 #:cargo-inputs
4684 (("rust-chrono" ,rust-chrono-0.4)
4685 ("rust-core-foundation-sys" ,rust-core-foundation-sys-0.6)
4686 ("rust-libc" ,rust-libc-0.2)
4687 ("rust-uuid" ,rust-uuid-0.5))))))
4688
4689 (define-public rust-core-foundation-sys-0.7
4690 (package
4691 (name "rust-core-foundation-sys")
4692 (version "0.7.2")
4693 (source
4694 (origin
4695 (method url-fetch)
4696 (uri (crate-uri "core-foundation-sys" version))
4697 (file-name
4698 (string-append name "-" version ".tar.gz"))
4699 (sha256
4700 (base32
4701 "1ghrg46h4ci306agr2vwm28w6gb5l455nzp61y2zkhwfs49p4nis"))))
4702 (build-system cargo-build-system)
4703 (home-page "https://github.com/servo/core-foundation-rs")
4704 (synopsis "Bindings to Core Foundation for macOS")
4705 (description "This package provides bindings to Core Foundation for
4706 macOS.")
4707 (license (list license:expat license:asl2.0))))
4708
4709 (define-public rust-core-foundation-sys-0.6
4710 (package
4711 (inherit rust-core-foundation-sys-0.7)
4712 (name "rust-core-foundation-sys")
4713 (version "0.6.2")
4714 (source
4715 (origin
4716 (method url-fetch)
4717 (uri (crate-uri "core-foundation-sys" version))
4718 (file-name (string-append name "-" version ".crate"))
4719 (sha256
4720 (base32
4721 "0fzsw1j9g1x598yhwklg59l15hwzc0pyvs01w9fg2kin4598mjp7"))))))
4722
4723 (define-public rust-core-text-13
4724 (package
4725 (name "rust-core-text")
4726 (version "13.3.2")
4727 (source
4728 (origin
4729 (method url-fetch)
4730 (uri (crate-uri "core-text" version))
4731 (file-name
4732 (string-append name "-" version ".tar.gz"))
4733 (sha256
4734 (base32
4735 "0v9lxn277p39cf81pb45r7k0lzf17pwgd5cpry1c04ajv556b16v"))))
4736 (build-system cargo-build-system)
4737 (arguments
4738 `(#:skip-build? #t ; only for macOS
4739 #:cargo-inputs
4740 (("rust-core-foundation" ,rust-core-foundation-0.6)
4741 ("rust-core-graphics" ,rust-core-graphics-0.17)
4742 ("rust-foreign-types" ,rust-foreign-types-0.3)
4743 ("rust-libc" ,rust-libc-0.2))))
4744 (home-page "https://github.com/servo/core-foundation-rs")
4745 (synopsis "Bindings to the Core Text framework")
4746 (description
4747 "Bindings to the Core Text framework.")
4748 (license (list license:expat license:asl2.0))))
4749
4750 (define-public rust-cpp-demangle-0.2
4751 (package
4752 (name "rust-cpp-demangle")
4753 (version "0.2.16")
4754 (source
4755 (origin
4756 (method url-fetch)
4757 (uri (crate-uri "cpp_demangle" version))
4758 (file-name
4759 (string-append name "-" version ".tar.gz"))
4760 (sha256
4761 (base32
4762 "0bamx2c78xzjhhvpg6p9bjarl6qm6j8npm6756kiqdh784w29j8k"))))
4763 (build-system cargo-build-system)
4764 (arguments
4765 `(#:skip-build? #t
4766 #:cargo-inputs
4767 (("rust-afl" ,rust-afl-0.8)
4768 ("rust-cfg-if" ,rust-cfg-if-0.1)
4769 ("rust-glob" ,rust-glob-0.3))
4770 #:cargo-development-inputs
4771 (("rust-clap" ,rust-clap-2)
4772 ("rust-diff" ,rust-diff-0.1))))
4773 (home-page "https://github.com/gimli-rs/cpp_demangle")
4774 (synopsis "Demangle C++ symbols")
4775 (description
4776 "This package provides a crate for demangling C++ symbols.")
4777 (license (list license:expat license:asl2.0))))
4778
4779 (define-public rust-cpuid-bool-0.1
4780 (package
4781 (name "rust-cpuid-bool")
4782 (version "0.1.0")
4783 (source
4784 (origin
4785 (method url-fetch)
4786 (uri (crate-uri "cpuid-bool" version))
4787 (file-name
4788 (string-append name "-" version ".tar.gz"))
4789 (sha256
4790 (base32
4791 "1r3v22cxly1shvw8qi0153708kggdqvh8jp0g82wbxi06d1mqdvd"))))
4792 (build-system cargo-build-system)
4793 (home-page "https://github.com/RustCrypto/utils")
4794 (synopsis "Lightweight alternative to is_x86_feature_detected")
4795 (description
4796 "This package provides a lightweight @code{no-std} compatible alternative
4797 to @code{is_x86_feature_detected}.")
4798 (license (list license:expat license:asl2.0))))
4799
4800 (define-public rust-crates-index-0.13
4801 (package
4802 (name "rust-crates-index")
4803 (version "0.13.1")
4804 (source
4805 (origin
4806 (method url-fetch)
4807 (uri (crate-uri "crates-index" version))
4808 (file-name
4809 (string-append name "-" version ".tar.gz"))
4810 (sha256
4811 (base32
4812 "1n7pp6mk59hw3nqlh8irxc9pp0g5ziw7bprqsw2lxvg13cvdp76s"))))
4813 (build-system cargo-build-system)
4814 (arguments
4815 `(#:skip-build? #t
4816 #:cargo-inputs
4817 (("rust-error-chain" ,rust-error-chain-0.12)
4818 ("rust-git2" ,rust-git2-0.9)
4819 ("rust-glob" ,rust-glob-0.3)
4820 ("rust-serde" ,rust-serde-1)
4821 ("rust-serde-derive" ,rust-serde-derive-1)
4822 ("rust-serde-json" ,rust-serde-json-1))
4823 #:cargo-development-inputs
4824 (("rust-tempdir" ,rust-tempdir-0.3))))
4825 (home-page
4826 "https://github.com/frewsxcv/rust-crates-index")
4827 (synopsis
4828 "Retrieving and interacting with the crates.io index")
4829 (description
4830 "Library for retrieving and interacting with the crates.io index.")
4831 (license license:asl2.0)))
4832
4833 (define-public rust-crc-1
4834 (package
4835 (name "rust-crc")
4836 (version "1.8.1")
4837 (source
4838 (origin
4839 (method url-fetch)
4840 (uri (crate-uri "crc" version))
4841 (file-name (string-append name "-" version ".tar.gz"))
4842 (sha256
4843 (base32
4844 "1sqal6gm6lbj7f45iv3rw2s9w3pvvha8v970y51s7k7mwy6m8qyn"))))
4845 (build-system cargo-build-system)
4846 (arguments
4847 `(#:cargo-inputs
4848 (("rust-build-const" ,rust-build-const-0.2))))
4849 (home-page "https://crates.io/crates/crc")
4850 (synopsis "Rust implementation of CRC(16, 32, 64)")
4851 (description "This package provides a Rust implementation of CRC(16, 32,
4852 64) with support for various standards.")
4853 (license (list license:expat license:asl2.0))))
4854
4855 (define-public rust-crc32fast-1
4856 (package
4857 (name "rust-crc32fast")
4858 (version "1.2.0")
4859 (source
4860 (origin
4861 (method url-fetch)
4862 (uri (crate-uri "crc32fast" version))
4863 (file-name
4864 (string-append name "-" version ".tar.gz"))
4865 (sha256
4866 (base32
4867 "1c9dhkvf3brrzzplcijaywxi2w8wv5578i0ryhcm7x8dmzi5s4ms"))))
4868 (build-system cargo-build-system)
4869 (arguments
4870 `(#:skip-build? #t
4871 #:cargo-inputs
4872 (("rust-cfg-if" ,rust-cfg-if-0.1))
4873 #:cargo-development-inputs
4874 (("rust-bencher" ,rust-bencher-0.1)
4875 ("rust-quickcheck" ,rust-quickcheck-0.8)
4876 ("rust-rand" ,rust-rand-0.4))))
4877 (home-page "https://github.com/srijs/rust-crc32fast")
4878 (synopsis
4879 "Fast, SIMD-accelerated CRC32 (IEEE) checksum computation")
4880 (description
4881 "Fast, SIMD-accelerated CRC32 (IEEE) checksum computation.")
4882 (license (list license:expat license:asl2.0))))
4883
4884 (define-public rust-criterion-0.3
4885 (package
4886 (name "rust-criterion")
4887 (version "0.3.3")
4888 (source
4889 (origin
4890 (method url-fetch)
4891 (uri (crate-uri "criterion" version))
4892 (file-name
4893 (string-append name "-" version ".tar.gz"))
4894 (sha256
4895 (base32
4896 "1n24l95pgjig4nfhgm3vn9gxb49ky5ylr8390scl7wbcxk7agnkh"))))
4897 (build-system cargo-build-system)
4898 (arguments
4899 `(#:cargo-inputs
4900 (("rust-atty" ,rust-atty-0.2)
4901 ("rust-cast" ,rust-cast-0.2)
4902 ("rust-clap" ,rust-clap-2)
4903 ("rust-criterion-plot" ,rust-criterion-plot-0.4)
4904 ("rust-csv" ,rust-csv-1.1)
4905 ("rust-itertools" ,rust-itertools-0.9)
4906 ("rust-lazy-static" ,rust-lazy-static-1)
4907 ("rust-num-traits" ,rust-num-traits-0.2)
4908 ("rust-oorandom" ,rust-oorandom-11.1)
4909 ("rust-plotters" ,rust-plotters-0.2)
4910 ("rust-rayon" ,rust-rayon-1)
4911 ("rust-regex" ,rust-regex-1)
4912 ("rust-serde" ,rust-serde-1)
4913 ("rust-serde-cbor" ,rust-serde-cbor-0.11)
4914 ("rust-serde-derive" ,rust-serde-derive-1)
4915 ("rust-serde-json" ,rust-serde-json-1)
4916 ("rust-tinytemplate" ,rust-tinytemplate-1)
4917 ("rust-walkdir" ,rust-walkdir-2))
4918 #:cargo-development-inputs
4919 (("rust-approx" ,rust-approx-0.3)
4920 ("rust-quickcheck" ,rust-quickcheck-0.9)
4921 ("rust-rand" ,rust-rand-0.7)
4922 ("rust-tempfile" ,rust-tempfile-3))))
4923 (home-page "https://bheisler.github.io/criterion.rs/book/index.html")
4924 (synopsis "Statistics-driven micro-benchmarking library")
4925 (description
4926 "This package provides a statistics-driven micro-benchmarking library.")
4927 (license (list license:asl2.0 license:expat))))
4928
4929 (define-public rust-criterion-0.2
4930 (package
4931 (inherit rust-criterion-0.3)
4932 (name "rust-criterion")
4933 (version "0.2.11")
4934 (source
4935 (origin
4936 (method url-fetch)
4937 (uri (crate-uri "criterion" version))
4938 (file-name
4939 (string-append name "-" version ".tar.gz"))
4940 (sha256
4941 (base32
4942 "1543wlpc4p1kz7sqqa7ylr8bkdr8l4f34hy4bxj7krpkahwhaqq3"))))
4943 (arguments
4944 `(#:cargo-inputs
4945 (("rust-atty" ,rust-atty-0.2)
4946 ("rust-cast" ,rust-cast-0.2)
4947 ("rust-clap" ,rust-clap-2)
4948 ("rust-criterion-plot" ,rust-criterion-plot-0.3)
4949 ("rust-csv" ,rust-csv-1.1)
4950 ("rust-itertools" ,rust-itertools-0.8)
4951 ("rust-lazy-static" ,rust-lazy-static-1)
4952 ("rust-libc" ,rust-libc-0.2)
4953 ("rust-num-traits" ,rust-num-traits-0.2)
4954 ("rust-rand-core" ,rust-rand-core-0.3)
4955 ("rust-rand-os" ,rust-rand-os-0.1)
4956 ("rust-rand-xoshiro" ,rust-rand-xoshiro-0.1)
4957 ("rust-rayon" ,rust-rayon-1)
4958 ("rust-rayon-core" ,rust-rayon-core-1)
4959 ("rust-serde" ,rust-serde-1)
4960 ("rust-serde-derive" ,rust-serde-derive-1)
4961 ("rust-serde-json" ,rust-serde-json-1)
4962 ("rust-tinytemplate" ,rust-tinytemplate-1)
4963 ("rust-walkdir" ,rust-walkdir-2))
4964 #:cargo-development-inputs
4965 (("rust-approx" ,rust-approx-0.3)
4966 ("rust-quickcheck" ,rust-quickcheck-0.8)
4967 ("rust-rand" ,rust-rand-0.6)
4968 ("rust-tempdir" ,rust-tempdir-0.3))))))
4969
4970 (define-public rust-criterion-cycles-per-byte-0.1
4971 (package
4972 (name "rust-criterion-cycles-per-byte")
4973 (version "0.1.2")
4974 (source
4975 (origin
4976 (method url-fetch)
4977 (uri (crate-uri "criterion-cycles-per-byte" version))
4978 (file-name (string-append name "-" version ".tar.gz"))
4979 (sha256
4980 (base32
4981 "15iw8zvyilx6k3a7z79vpzmpm6kkyds4c1ng3jlwfc43axd4hd4d"))))
4982 (build-system cargo-build-system)
4983 (arguments
4984 `(#:cargo-inputs
4985 (("rust-criterion" ,rust-criterion-0.3))))
4986 (home-page "https://crates.io/crates/criterion-cycles-per-byte")
4987 (synopsis "Measure time with CPU cycles for criterion")
4988 (description "This package lets you measure time with CPU cycles for
4989 criterion.")
4990 (license (list license:expat license:asl2.0))))
4991
4992 (define-public rust-criterion-plot-0.4
4993 (package
4994 (name "rust-criterion-plot")
4995 (version "0.4.3")
4996 (source
4997 (origin
4998 (method url-fetch)
4999 (uri (crate-uri "criterion-plot" version))
5000 (file-name
5001 (string-append name "-" version ".tar.gz"))
5002 (sha256
5003 (base32
5004 "17c8v5fv064181yspagkdcfd6jhs7233ba6g94bbl7v0xjnzw8p0"))))
5005 (build-system cargo-build-system)
5006 (arguments
5007 `(#:cargo-inputs
5008 (("rust-cast" ,rust-cast-0.2)
5009 ("rust-itertools" ,rust-itertools-0.9))
5010 #:cargo-development-inputs
5011 (("rust-itertools-num" ,rust-itertools-num-0.1)
5012 ("rust-num-complex" ,rust-num-complex-0.2)
5013 ("rust-rand" ,rust-rand-0.4))))
5014 (home-page "https://github.com/bheisler/criterion.rs")
5015 (synopsis "Criterion's plotting library")
5016 (description "This package provides criterion's plotting library.")
5017 (license (list license:expat license:asl2.0))))
5018
5019 (define-public rust-criterion-plot-0.3
5020 (package
5021 (inherit rust-criterion-plot-0.4)
5022 (name "rust-criterion-plot")
5023 (version "0.3.1")
5024 (source
5025 (origin
5026 (method url-fetch)
5027 (uri (crate-uri "criterion-plot" version))
5028 (file-name
5029 (string-append name "-" version ".tar.gz"))
5030 (sha256
5031 (base32
5032 "13pv09z4ryp70qyzablkibwa2mh6c2852qq1sjr9wjigvwnj3ybn"))))
5033 (arguments
5034 `(#:cargo-inputs
5035 (("rust-byteorder" ,rust-byteorder-1)
5036 ("rust-cast" ,rust-cast-0.2)
5037 ("rust-itertools" ,rust-itertools-0.8))
5038 #:cargo-development-inputs
5039 (("rust-itertools-num" ,rust-itertools-num-0.1)
5040 ("rust-num-complex" ,rust-num-complex-0.2)
5041 ("rust-rand" ,rust-rand-0.4))))))
5042
5043 (define-public rust-crossbeam-0.7
5044 (package
5045 (name "rust-crossbeam")
5046 (version "0.7.3")
5047 (source
5048 (origin
5049 (method url-fetch)
5050 (uri (crate-uri "crossbeam" version))
5051 (file-name
5052 (string-append name "-" version ".tar.gz"))
5053 (sha256
5054 (base32
5055 "13kzn2d49n2qn5q42y2dj48kyv6aln2d9smq8x9n675l3zzknck9"))))
5056 (build-system cargo-build-system)
5057 (arguments
5058 `(#:cargo-inputs
5059 (("rust-cfg-if" ,rust-cfg-if-0.1)
5060 ("rust-crossbeam-channel" ,rust-crossbeam-channel-0.4)
5061 ("rust-crossbeam-deque" ,rust-crossbeam-deque-0.7)
5062 ("rust-crossbeam-epoch" ,rust-crossbeam-epoch-0.8)
5063 ("rust-crossbeam-queue" ,rust-crossbeam-queue-0.2)
5064 ("rust-crossbeam-utils" ,rust-crossbeam-utils-0.7))
5065 #:cargo-development-inputs
5066 (("rust-rand" ,rust-rand-0.6))))
5067 (home-page "https://github.com/crossbeam-rs/crossbeam")
5068 (synopsis "Tools for concurrent programming")
5069 (description "Tools for concurrent programming.")
5070 (license (list license:expat license:asl2.0))))
5071
5072 (define-public rust-crossbeam-channel-0.4
5073 (package
5074 (name "rust-crossbeam-channel")
5075 (version "0.4.2")
5076 (source
5077 (origin
5078 (method url-fetch)
5079 (uri (crate-uri "crossbeam-channel" version))
5080 (file-name
5081 (string-append name "-" version ".tar.gz"))
5082 (sha256
5083 (base32
5084 "0qd05n5bcwafkmbzq1lspwrfi29xnzlw46qarg1sl0lwj68qdvfc"))))
5085 (build-system cargo-build-system)
5086 (arguments
5087 `(#:cargo-inputs
5088 (("rust-crossbeam-utils" ,rust-crossbeam-utils-0.7)
5089 ("rust-maybe-uninit" ,rust-maybe-uninit-2.0))
5090 #:cargo-development-inputs
5091 (("rust-num-cpus" ,rust-num-cpus-1)
5092 ("rust-rand" ,rust-rand-0.6)
5093 ("rust-signal-hook" ,rust-signal-hook-0.1))))
5094 (home-page
5095 "https://github.com/crossbeam-rs/crossbeam/tree/master/crossbeam-channel")
5096 (synopsis
5097 "Multi-producer multi-consumer channels for message passing")
5098 (description
5099 "Multi-producer multi-consumer channels for message passing.")
5100 (license (list license:expat
5101 license:asl2.0
5102 license:bsd-2))))
5103
5104 (define-public rust-crossbeam-channel-0.3
5105 (package
5106 (inherit rust-crossbeam-channel-0.4)
5107 (name "rust-crossbeam-channel")
5108 (version "0.3.9")
5109 (source
5110 (origin
5111 (method url-fetch)
5112 (uri (crate-uri "crossbeam-channel" version))
5113 (file-name
5114 (string-append name "-" version ".tar.gz"))
5115 (sha256
5116 (base32
5117 "1ylyzb1m9qbvd1nd3vy38x9073wdmcy295ncjs7wf7ap476pzv68"))))
5118 (arguments
5119 `(#:cargo-inputs
5120 (("rust-crossbeam-utils" ,rust-crossbeam-utils-0.6))
5121 #:cargo-development-inputs
5122 (("rust-num-cpus" ,rust-num-cpus-1)
5123 ("rust-rand" ,rust-rand-0.6)
5124 ("rust-signal-hook" ,rust-signal-hook-0.1))))))
5125
5126 (define-public rust-crossbeam-deque-0.7
5127 (package
5128 (name "rust-crossbeam-deque")
5129 (version "0.7.3")
5130 (source
5131 (origin
5132 (method url-fetch)
5133 (uri (crate-uri "crossbeam-deque" version))
5134 (file-name
5135 (string-append name "-" version ".tar.gz"))
5136 (sha256
5137 (base32
5138 "11c2c0x5grdba3ah3g94yn6b8s47xi8qwm85h8hq5vmf9nbsy0lz"))))
5139 (build-system cargo-build-system)
5140 (arguments
5141 `(#:cargo-inputs
5142 (("rust-crossbeam-epoch" ,rust-crossbeam-epoch-0.8)
5143 ("rust-crossbeam-utils" ,rust-crossbeam-utils-0.7)
5144 ("rust-maybe-uninit" ,rust-maybe-uninit-2.0))
5145 #:cargo-development-inputs
5146 (("rust-rand" ,rust-rand-0.6))))
5147 (home-page
5148 "https://github.com/crossbeam-rs/crossbeam/tree/master/crossbeam-deque")
5149 (synopsis "Concurrent work-stealing deque")
5150 (description "Concurrent work-stealing deque.")
5151 (license (list license:expat license:asl2.0))))
5152
5153 (define-public rust-crossbeam-deque-0.6
5154 (package
5155 (inherit rust-crossbeam-deque-0.7)
5156 (name "rust-crossbeam-deque")
5157 (version "0.6.3")
5158 (source
5159 (origin
5160 (method url-fetch)
5161 (uri (crate-uri "crossbeam-deque" version))
5162 (file-name
5163 (string-append name "-" version ".tar.gz"))
5164 (sha256
5165 (base32
5166 "04rcpgjs6ns57vag8a3dzx26190dhbvy2l0p9n22b9p1yf64pr05"))))
5167 (arguments
5168 `(#:cargo-inputs
5169 (("rust-crossbeam-epoch" ,rust-crossbeam-epoch-0.7)
5170 ("rust-crossbeam-utils" ,rust-crossbeam-utils-0.6))
5171 #:cargo-development-inputs
5172 (("rust-rand" ,rust-rand-0.6))))))
5173
5174 (define-public rust-crossbeam-epoch-0.8
5175 (package
5176 (name "rust-crossbeam-epoch")
5177 (version "0.8.2")
5178 (source
5179 (origin
5180 (method url-fetch)
5181 (uri (crate-uri "crossbeam-epoch" version))
5182 (file-name
5183 (string-append name "-" version ".tar.gz"))
5184 (sha256
5185 (base32
5186 "1knsf0zz7rgzxn0nwz5gajjcrivxpw3zrdcp946gdhdgr9sd53h5"))))
5187 (build-system cargo-build-system)
5188 (arguments
5189 `(#:cargo-inputs
5190 (("rust-autocfg" ,rust-autocfg-1.0)
5191 ("rust-cfg-if" ,rust-cfg-if-0.1)
5192 ("rust-crossbeam-utils" ,rust-crossbeam-utils-0.7)
5193 ("rust-lazy-static" ,rust-lazy-static-1)
5194 ("rust-maybe-uninit" ,rust-maybe-uninit-2.0)
5195 ("rust-memoffset" ,rust-memoffset-0.5)
5196 ("rust-scopeguard" ,rust-scopeguard-1))
5197 #:cargo-development-inputs
5198 (("rust-rand" ,rust-rand-0.6))))
5199 (home-page
5200 "https://github.com/crossbeam-rs/crossbeam/tree/master/crossbeam-epoch")
5201 (synopsis "Epoch-based garbage collection")
5202 (description "Epoch-based garbage collection.")
5203 (license (list license:expat license:asl2.0))))
5204
5205 (define-public rust-crossbeam-epoch-0.7
5206 (package
5207 (inherit rust-crossbeam-epoch-0.8)
5208 (name "rust-crossbeam-epoch")
5209 (version "0.7.2")
5210 (source
5211 (origin
5212 (method url-fetch)
5213 (uri (crate-uri "crossbeam-epoch" version))
5214 (file-name
5215 (string-append name "-" version ".tar.gz"))
5216 (sha256
5217 (base32
5218 "1a9prma2nalqvys7f8wrazkdzh26w3mi5gzrk8mdmwrp5rvxdp7y"))))
5219 (arguments
5220 `(#:cargo-inputs
5221 (("rust-arrayvec" ,rust-arrayvec-0.4)
5222 ("rust-cfg-if" ,rust-cfg-if-0.1)
5223 ("rust-crossbeam-utils" ,rust-crossbeam-utils-0.6)
5224 ("rust-lazy-static" ,rust-lazy-static-1)
5225 ("rust-memoffset" ,rust-memoffset-0.5)
5226 ("rust-scopeguard" ,rust-scopeguard-1))
5227 #:cargo-development-inputs
5228 (("rust-rand" ,rust-rand-0.6))))))
5229
5230 (define-public rust-crossbeam-queue-0.2
5231 (package
5232 (name "rust-crossbeam-queue")
5233 (version "0.2.3")
5234 (source
5235 (origin
5236 (method url-fetch)
5237 (uri (crate-uri "crossbeam-queue" version))
5238 (file-name
5239 (string-append name "-" version ".tar.gz"))
5240 (sha256
5241 (base32 "0w15z68nz3ac4f2s4djhwha8vmlwsh9dlfrmsl4x84y2ah5acjvp"))))
5242 (build-system cargo-build-system)
5243 (arguments
5244 `(#:cargo-inputs
5245 (("rust-cfg-if" ,rust-cfg-if-0.1)
5246 ("rust-crossbeam-utils" ,rust-crossbeam-utils-0.7)
5247 ("rust-maybe-uninit" ,rust-maybe-uninit-2.0))
5248 #:cargo-development-inputs
5249 (("rust-rand" ,rust-rand-0.6))))
5250 (home-page
5251 "https://github.com/crossbeam-rs/crossbeam/tree/master/crossbeam-queue")
5252 (synopsis "Concurrent queues in Rust")
5253 (description
5254 "This crate provides concurrent queues that can be shared among threads.")
5255 (license (list license:expat
5256 license:asl2.0
5257 license:bsd-2))))
5258
5259 (define-public rust-crossbeam-queue-0.1
5260 (package
5261 (inherit rust-crossbeam-queue-0.2)
5262 (name "rust-crossbeam-queue")
5263 (version "0.1.2")
5264 (source
5265 (origin
5266 (method url-fetch)
5267 (uri (crate-uri "crossbeam-queue" version))
5268 (file-name
5269 (string-append name "-" version ".tar.gz"))
5270 (sha256
5271 (base32
5272 "0jsa9dbxnwqcxfws09vaschf92d4imlbbikmcn4ka8z7rzb9r5vw"))))
5273 (arguments
5274 `(#:cargo-inputs
5275 (("rust-crossbeam-utils" ,rust-crossbeam-utils-0.6))
5276 #:cargo-development-inputs
5277 (("rust-rand" ,rust-rand-0.6))))))
5278
5279 (define-public rust-crossbeam-utils-0.7
5280 (package
5281 (name "rust-crossbeam-utils")
5282 (version "0.7.2")
5283 (source
5284 (origin
5285 (method url-fetch)
5286 (uri (crate-uri "crossbeam-utils" version))
5287 (file-name
5288 (string-append name "-" version ".tar.gz"))
5289 (sha256
5290 (base32
5291 "1a31wbrda1320gj2a6az1lin2d34xfc3xf88da4c17qy5lxcgiy3"))))
5292 (build-system cargo-build-system)
5293 (arguments
5294 `(#:cargo-inputs
5295 (("rust-autocfg" ,rust-autocfg-1.0)
5296 ("rust-cfg-if" ,rust-cfg-if-0.1)
5297 ("rust-lazy-static" ,rust-lazy-static-1))
5298 #:cargo-development-inputs
5299 (("rust-rand" ,rust-rand-0.6))))
5300 (home-page
5301 "https://github.com/crossbeam-rs/crossbeam/tree/master/crossbeam-utils")
5302 (synopsis "Utilities for concurrent programming")
5303 (description
5304 "Utilities for concurrent programming.")
5305 (license (list license:expat license:asl2.0))))
5306
5307 (define-public rust-crossbeam-utils-0.6
5308 (package
5309 (inherit rust-crossbeam-utils-0.7)
5310 (name "rust-crossbeam-utils")
5311 (version "0.6.6")
5312 (source
5313 (origin
5314 (method url-fetch)
5315 (uri (crate-uri "crossbeam-utils" version))
5316 (file-name
5317 (string-append name "-" version ".tar.gz"))
5318 (sha256
5319 (base32
5320 "1rk0r9n04bmq4a3g2q5qhvvlmrmx780gc6h9lmc94mwndslkz5q4"))))
5321 (arguments
5322 `(#:cargo-inputs
5323 (("rust-cfg-if" ,rust-cfg-if-0.1)
5324 ("rust-lazy-static" ,rust-lazy-static-1))
5325 #:cargo-development-inputs
5326 (("rust-rand" ,rust-rand-0.6))))))
5327
5328 (define-public rust-crossterm-0.13
5329 (package
5330 (name "rust-crossterm")
5331 (version "0.13.3")
5332 (source
5333 (origin
5334 (method url-fetch)
5335 (uri (crate-uri "crossterm" version))
5336 (file-name (string-append name "-" version ".tar.gz"))
5337 (sha256
5338 (base32 "1jw9s85mnhpkk38lihr4ildip4jhfhc3h86npncd92i4mdb257vm"))))
5339 (build-system cargo-build-system)
5340 (arguments
5341 `(#:cargo-inputs
5342 (("rust-crossterm-winapi" ,rust-crossterm-winapi-0.4)
5343 ("rust-lazy-static" ,rust-lazy-static-1)
5344 ("rust-libc" ,rust-libc-0.2)
5345 ("rust-mio" ,rust-mio-0.6)
5346 ("rust-serde" ,rust-serde-1)
5347 ("rust-winapi" ,rust-winapi-0.3))))
5348 (home-page "https://github.com/crossterm-rs/crossterm")
5349 (synopsis "Crossplatform terminal library for manipulating terminals")
5350 (description "This package provides a crossplatform terminal library for
5351 manipulating terminals.")
5352 (license license:expat)))
5353
5354 (define-public rust-crossterm-winapi-0.4
5355 (package
5356 (name "rust-crossterm-winapi")
5357 (version "0.4.0")
5358 (source
5359 (origin
5360 (method url-fetch)
5361 (uri (crate-uri "crossterm-winapi" version))
5362 (file-name (string-append name "-" version ".tar.gz"))
5363 (sha256
5364 (base32 "1j3av8bba3f5y4n4w1vgn0iz28vdajxrli6lqxnvpddbphskmph2"))))
5365 (build-system cargo-build-system)
5366 (arguments
5367 `(#:cargo-inputs (("rust-winapi" ,rust-winapi-0.3))))
5368 (home-page "https://github.com/crossterm-rs/crossterm-winapi")
5369 (synopsis "Basic simple abstractions around common WinAPI calls")
5370 (description "WinAPI wrapper that provides some basic simple abstractions
5371 around common WinAPI calls.")
5372 (license license:expat)))
5373
5374 (define-public rust-crypto-mac-0.8
5375 (package
5376 (name "rust-crypto-mac")
5377 (version "0.8.0")
5378 (source
5379 (origin
5380 (method url-fetch)
5381 (uri (crate-uri "crypto-mac" version))
5382 (file-name
5383 (string-append name "-" version ".tar.gz"))
5384 (sha256
5385 (base32
5386 "1axfs4zmy74rn9666p92j7nmcv11zdp2d51yrppc2dv26cqa715m"))))
5387 (build-system cargo-build-system)
5388 (arguments
5389 `(#:cargo-inputs
5390 (("rust-blobby" ,rust-blobby-0.1)
5391 ("rust-generic-array" ,rust-generic-array-0.14)
5392 ("rust-subtle" ,rust-subtle-2))))
5393 (home-page "https://github.com/RustCrypto/traits")
5394 (synopsis "Trait for Message Authentication Code (MAC) algorithms")
5395 (description "This package provides trait for @dfn{Message Authentication
5396 Code} (MAC) algorithms.")
5397 (license (list license:expat license:asl2.0))))
5398
5399 (define-public rust-crypto-mac-0.7
5400 (package
5401 (inherit rust-crypto-mac-0.8)
5402 (name "rust-crypto-mac")
5403 (version "0.7.0")
5404 (source
5405 (origin
5406 (method url-fetch)
5407 (uri (crate-uri "crypto-mac" version))
5408 (file-name
5409 (string-append name "-" version ".tar.gz"))
5410 (sha256
5411 (base32
5412 "1rbrq6qy9dl0pj4ym2zy33miaaa8vpzdss60p9bdb58xy46l0d24"))))
5413 (arguments
5414 `(#:cargo-inputs
5415 (("rust-blobby" ,rust-blobby-0.1)
5416 ("rust-generic-array" ,rust-generic-array-0.12)
5417 ("rust-subtle" ,rust-subtle-1.0))))))
5418
5419 (define-public rust-crypto-mac-0.4
5420 (package
5421 (name "rust-crypto-mac")
5422 (version "0.4.0")
5423 (source
5424 (origin
5425 (method url-fetch)
5426 (uri (crate-uri "crypto-mac" version))
5427 (file-name
5428 (string-append name "-" version ".tar.gz"))
5429 (sha256
5430 (base32
5431 "160ixpghhz5kz16f38kzcyv6lx8wmi4cgbhlhq4nazf678iib43p"))))
5432 (build-system cargo-build-system)
5433 (arguments
5434 `(#:cargo-inputs
5435 (("rust-constant-time-eq" ,rust-constant-time-eq-0.1)
5436 ("rust-generic-array" ,rust-generic-array-0.8))))
5437 (home-page "https://github.com/RustCrypto/traits")
5438 (synopsis "Trait for Message Authentication Code (MAC) algorithms")
5439 (description "This package provides traits for Message Authentication
5440 Code (MAC) algorithms.")
5441 (license (list license:expat license:asl2.0))))
5442
5443 (define-public rust-crypto-tests-0.5
5444 (package
5445 (name "rust-crypto-tests")
5446 (version "0.5.5")
5447 (source
5448 (origin
5449 (method url-fetch)
5450 (uri (crate-uri "crypto-tests" version))
5451 (file-name (string-append name "-" version ".tar.gz"))
5452 (sha256
5453 (base32
5454 "08yrh40a9ll4k29ppizg2yjf96i6s3i9pbkhxp60y8arar93134v"))))
5455 (build-system cargo-build-system)
5456 (arguments
5457 `(#:cargo-inputs
5458 (("rust-block-cipher-trait" ,rust-block-cipher-trait-0.4)
5459 ("rust-crypto-mac" ,rust-crypto-mac-0.4)
5460 ("rust-digest" ,rust-digest-0.6)
5461 ("rust-generic-array" ,rust-generic-array-0.8))))
5462 (home-page "https://github.com/RustCrypto/utils")
5463 (synopsis "Test helpers for cryptographic algorithms")
5464 (description "This package provides test helpers for cryptographic
5465 algorithms.")
5466 (license (list license:expat license:asl2.0))))
5467
5468 (define-public rust-cryptovec-0.4
5469 (package
5470 (name "rust-cryptovec")
5471 (version "0.4.6")
5472 (source
5473 (origin
5474 (method url-fetch)
5475 (uri (crate-uri "cryptovec" version))
5476 (file-name
5477 (string-append name "-" version ".tar.gz"))
5478 (sha256
5479 (base32
5480 "1n88dmhfb2dxs48zllq1g1dya76zx4fajw482qy8jj4hgg1da4p4"))))
5481 (build-system cargo-build-system)
5482 (arguments
5483 `(#:tests? #f ; CryptoVec::from_slice failed
5484 #:cargo-inputs
5485 (("rust-kernel32-sys" ,rust-kernel32-sys-0.2)
5486 ("rust-libc" ,rust-libc-0.2)
5487 ("rust-winapi" ,rust-winapi-0.2))))
5488 (home-page "https://crates.io/crates/cryptovec")
5489 (synopsis
5490 "Vector which zeroes its memory on clears and reallocations")
5491 (description
5492 "This package provides a vector which zeroes its memory on clears and
5493 reallocations.")
5494 (license license:asl2.0)))
5495
5496 (define-public rust-cssparser-0.27
5497 (package
5498 (name "rust-cssparser")
5499 (version "0.27.2")
5500 (source
5501 (origin
5502 (method url-fetch)
5503 (uri (crate-uri "cssparser" version))
5504 (file-name
5505 (string-append name "-" version ".tar.gz"))
5506 (sha256
5507 (base32
5508 "02nbm690rmkaz1ca0383qq7mc1g066w3s85f17pdihnda79njjvm"))))
5509 (build-system cargo-build-system)
5510 (arguments
5511 `(#:tests? #f ; Not all files included in the tarball.
5512 #:cargo-inputs
5513 (("rust-cssparser-macros" ,rust-cssparser-macros-0.6)
5514 ("rust-dtoa-short" ,rust-dtoa-short-0.3)
5515 ("rust-itoa" ,rust-itoa-0.4)
5516 ("rust-matches" ,rust-matches-0.1)
5517 ("rust-phf" ,rust-phf-0.8)
5518 ("rust-proc-macro2" ,rust-proc-macro2-1)
5519 ("rust-quote" ,rust-quote-1)
5520 ("rust-serde" ,rust-serde-1)
5521 ("rust-smallvec" ,rust-smallvec-1)
5522 ("rust-syn" ,rust-syn-1))
5523 #:cargo-development-inputs
5524 (("rust-difference" ,rust-difference-2)
5525 ("rust-encoding-rs" ,rust-encoding-rs-0.8)
5526 ("rust-serde-json" ,rust-serde-json-1))))
5527 (home-page "https://github.com/servo/rust-cssparser")
5528 (synopsis "Rust implementation of CSS Syntax Level 3")
5529 (description
5530 "This package contains a Rust implementation of CSS Syntax Level 3.")
5531 (license license:mpl2.0)))
5532
5533 (define-public rust-cssparser-0.25
5534 (package
5535 (inherit rust-cssparser-0.27)
5536 (name "rust-cssparser")
5537 (version "0.25.9")
5538 (source
5539 (origin
5540 (method url-fetch)
5541 (uri (crate-uri "cssparser" version))
5542 (file-name
5543 (string-append name "-" version ".tar.gz"))
5544 (sha256
5545 (base32
5546 "03klvpdzsk4cyh8k0dbnlngzafv7gqywqrnsqqb3gfmrxyj8rqgv"))))
5547 (arguments
5548 `(#:tests? #f ; Some test files missing.
5549 #:cargo-inputs
5550 (("rust-cssparser-macros" ,rust-cssparser-macros-0.3)
5551 ("rust-dtoa-short" ,rust-dtoa-short-0.3)
5552 ("rust-heapsize" ,rust-heapsize-0.4)
5553 ("rust-itoa" ,rust-itoa-0.4)
5554 ("rust-matches" ,rust-matches-0.1)
5555 ("rust-phf" ,rust-phf-0.7)
5556 ("rust-procedural-masquerade" ,rust-procedural-masquerade-0.1)
5557 ("rust-serde" ,rust-serde-1)
5558 ("rust-smallvec" ,rust-smallvec-0.6)
5559 ("rust-autocfg" ,rust-autocfg-0.1)
5560 ("rust-proc-macro2" ,rust-proc-macro2-1)
5561 ("rust-quote" ,rust-quote-1)
5562 ("rust-syn" ,rust-syn-1))
5563 #:cargo-development-inputs
5564 (("rust-difference" ,rust-difference-2)
5565 ("rust-encoding-rs" ,rust-encoding-rs-0.8)
5566 ("rust-serde-json" ,rust-serde-json-1))))))
5567
5568 (define-public rust-cssparser-macros-0.6
5569 (package
5570 (name "rust-cssparser-macros")
5571 (version "0.6.0")
5572 (source
5573 (origin
5574 (method url-fetch)
5575 (uri (crate-uri "cssparser-macros" version))
5576 (file-name
5577 (string-append name "-" version ".tar.gz"))
5578 (sha256
5579 (base32
5580 "0vp13g4blyjvhg3j4r9b7vrwhnfi1y2fmhv8hxgficpjazg7bbnz"))))
5581 (build-system cargo-build-system)
5582 (arguments
5583 `(#:cargo-inputs
5584 (("rust-quote" ,rust-quote-1)
5585 ("rust-syn" ,rust-syn-1))))
5586 (home-page "https://github.com/servo/rust-cssparser")
5587 (synopsis "Procedural macros for cssparser")
5588 (description
5589 "This package provides the procedural macros for rust-cssparser.")
5590 (license license:mpl2.0)))
5591
5592 (define-public rust-cssparser-macros-0.3
5593 (package
5594 (inherit rust-cssparser-macros-0.6)
5595 (name "rust-cssparser-macros")
5596 (version "0.3.6")
5597 (source
5598 (origin
5599 (method url-fetch)
5600 (uri (crate-uri "cssparser-macros" version))
5601 (file-name
5602 (string-append name "-" version ".tar.gz"))
5603 (sha256
5604 (base32
5605 "1vqyc5xm8a4va92vs1nn0cc46c930l2n21gccijnc5y7hx7cicav"))))
5606 (arguments
5607 `(#:cargo-inputs
5608 (("rust-phf-codegen" ,rust-phf-codegen-0.7)
5609 ("rust-proc-macro2" ,rust-proc-macro2-1)
5610 ("rust-procedural-masquerade" ,rust-procedural-masquerade-0.1)
5611 ("rust-quote" ,rust-quote-1)
5612 ("rust-syn" ,rust-syn-1))))))
5613
5614 (define-public rust-csv-1.1
5615 (package
5616 (name "rust-csv")
5617 (version "1.1.3")
5618 (source
5619 (origin
5620 (method url-fetch)
5621 (uri (crate-uri "csv" version))
5622 (file-name
5623 (string-append name "-" version ".tar.gz"))
5624 (sha256
5625 (base32
5626 "0yd2z55m2pg4al4yng4nl2y7c9dw2v7yhg5ynihxyrmmd9zzxbq0"))))
5627 (build-system cargo-build-system)
5628 (arguments
5629 `(#:skip-build? #t
5630 #:cargo-inputs
5631 (("rust-bstr" ,rust-bstr-0.2)
5632 ("rust-csv-core" ,rust-csv-core-0.1)
5633 ("rust-itoa" ,rust-itoa-0.4)
5634 ("rust-ryu" ,rust-ryu-1.0)
5635 ("rust-serde" ,rust-serde-1))
5636 #:cargo-development-inputs
5637 (("rust-serde" ,rust-serde-1))))
5638 (home-page "https://github.com/BurntSushi/rust-csv")
5639 (synopsis "Fast CSV parsing with support for serde")
5640 (description
5641 "Fast CSV parsing with support for serde.")
5642 (license (list license:unlicense license:expat))))
5643
5644 (define-public rust-csv-0.14
5645 (package
5646 (inherit rust-csv-1.1)
5647 (name "rust-csv")
5648 (version "0.14.7")
5649 (source
5650 (origin
5651 (method url-fetch)
5652 (uri (crate-uri "csv" version))
5653 (file-name
5654 (string-append name "-" version ".tar.gz"))
5655 (sha256
5656 (base32
5657 "1g0qvr9fj25fq1fy0p758glrb30yz7x46h18hsysaqyaswaihv16"))))
5658 (arguments
5659 `(#:cargo-inputs
5660 (("rust-byteorder" ,rust-byteorder-0.5)
5661 ("rust-rustc-serialize" ,rust-rustc-serialize-0.3))
5662 #:cargo-development-inputs
5663 (("rust-regex" ,rust-regex-0.1))))))
5664
5665 (define-public rust-csv-core-0.1
5666 (package
5667 (name "rust-csv-core")
5668 (version "0.1.10")
5669 (source
5670 (origin
5671 (method url-fetch)
5672 (uri (crate-uri "csv-core" version))
5673 (file-name
5674 (string-append name "-" version ".tar.gz"))
5675 (sha256
5676 (base32
5677 "145wcc3560v1kmysqqspvddppiysr2rifqzy4nnlh3r6kxanc91b"))))
5678 (build-system cargo-build-system)
5679 (arguments
5680 `(#:cargo-inputs
5681 (("rust-memchr" ,rust-memchr-2))
5682 #:cargo-development-inputs
5683 (("rust-arrayvec" ,rust-arrayvec-0.5))))
5684 (home-page "https://github.com/BurntSushi/rust-csv")
5685 (synopsis
5686 "Bare bones CSV parsing with no_std support")
5687 (description
5688 "Bare bones CSV parsing with no_std support.")
5689 (license (list license:unlicense license:expat))))
5690
5691 (define-public rust-ct-logs-0.7
5692 (package
5693 (name "rust-ct-logs")
5694 (version "0.7.0")
5695 (source
5696 (origin
5697 (method url-fetch)
5698 (uri (crate-uri "ct-logs" version))
5699 (file-name (string-append name "-" version ".tar.gz"))
5700 (sha256
5701 (base32
5702 "0bk7pbmkjm18cgccm4a76vyn3wkaf2z4bh0jy9fk3dl4188i73lc"))))
5703 (build-system cargo-build-system)
5704 (arguments
5705 `(#:cargo-inputs (("rust-sct" ,rust-sct-0.6))))
5706 (home-page "https://github.com/ctz/ct-logs")
5707 (synopsis "Google's list of Certificate Transparency logs")
5708 (description "This package contains Google's list of Certificate
5709 Transparency logs for use with sct crate.")
5710 (license (list license:asl2.0 license:isc license:expat))))
5711
5712 (define-public rust-ct-logs-0.3
5713 (package
5714 (inherit rust-ct-logs-0.7)
5715 (name "rust-ct-logs")
5716 (version "0.3.0")
5717 (source
5718 (origin
5719 (method url-fetch)
5720 (uri (crate-uri "ct-logs" version))
5721 (file-name (string-append name "-" version ".tar.gz"))
5722 (sha256
5723 (base32 "1f0885ws3p49xh6dfgnhh7zjw9h4rhs9ljs8i9cnkhifzz98784f"))))
5724 (arguments
5725 `(#:cargo-inputs
5726 (("rust-sct" ,rust-sct-0.3))))))
5727
5728 (define-public rust-ctor-0.1
5729 (package
5730 (name "rust-ctor")
5731 (version "0.1.15")
5732 (source
5733 (origin
5734 (method url-fetch)
5735 (uri (crate-uri "ctor" version))
5736 (file-name
5737 (string-append name "-" version ".tar.gz"))
5738 (sha256
5739 (base32
5740 "09x2my9x33srjdip8yf4lm5gq7xqis2694abvpa64r60pajqm19r"))))
5741 (build-system cargo-build-system)
5742 (arguments
5743 `(#:cargo-inputs
5744 (("rust-syn" ,rust-syn-1)
5745 ("rust-quote" ,rust-quote-1))
5746 #:cargo-development-inputs
5747 (("rust-libc-print" ,rust-libc-print-0.1))))
5748 (home-page "https://github.com/mmastrac/rust-ctor")
5749 (synopsis "__attribute__((constructor)) for Rust")
5750 (description
5751 "This package provides an @code{__attribute__((constructor))} for Rust.")
5752 (license (list license:asl2.0 license:expat))))
5753
5754 (define-public rust-ctrlc-3.1
5755 (package
5756 (name "rust-ctrlc")
5757 (version "3.1.3")
5758 (source
5759 (origin
5760 (method url-fetch)
5761 (uri (crate-uri "ctrlc" version))
5762 (file-name
5763 (string-append name "-" version ".tar.gz"))
5764 (sha256
5765 (base32
5766 "0zz8ad4bk28s111af5vy1c5kii4zw0cgh87ivzgj28f8nkcd5py7"))))
5767 (build-system cargo-build-system)
5768 (arguments
5769 `(#:cargo-inputs
5770 (("rust-nix" ,rust-nix-0.14)
5771 ("rust-winapi" ,rust-winapi-0.3))
5772 #:cargo-development-inputs
5773 (("rust-winapi" ,rust-winapi-0.3))))
5774 (home-page "https://github.com/Detegr/rust-ctrlc")
5775 (synopsis "Easy Ctrl-C handler for Rust projects")
5776 (description
5777 "This package provides an easy Ctrl-C handler for Rust projects.")
5778 (license (list license:expat license:asl2.0))))
5779
5780 (define-public rust-cty-0.2
5781 (package
5782 (name "rust-cty")
5783 (version "0.2.1")
5784 (source
5785 (origin
5786 (method url-fetch)
5787 (uri (crate-uri "cty" version))
5788 (file-name (string-append name "-" version ".tar.gz"))
5789 (sha256
5790 (base32
5791 "1qvkdnkxmd7g6fwhmv26zxqi0l7b9cd4d7h1knylvjyh43bc04vk"))))
5792 (build-system cargo-build-system)
5793 (home-page "https://github.com/japaric/cty")
5794 (synopsis "Type aliases to C types")
5795 (description "This package provides type aliases to C types like c_int for
5796 use with bindgen.")
5797 (license (list license:expat license:asl2.0))))
5798
5799 (define-public rust-curl-sys-0.4
5800 (package
5801 (name "rust-curl-sys")
5802 (version "0.4.20")
5803 (source
5804 (origin
5805 (method url-fetch)
5806 (uri (crate-uri "curl-sys" version))
5807 (file-name (string-append name "-" version ".tar.gz"))
5808 (sha256
5809 (base32
5810 "02542zmvl3fpdqf7ai4cqnamm4albx9j645dkjx5qr1myq8ax42y"))
5811 (modules '((guix build utils)))
5812 (snippet
5813 '(begin (delete-file-recursively "curl") #t))))
5814 (build-system cargo-build-system)
5815 (arguments
5816 `(#:cargo-inputs
5817 (("rust-libc" ,rust-libc-0.2)
5818 ("rust-libnghttp2-sys" ,rust-libnghttp2-sys-0.1)
5819 ("rust-libz-sys" ,rust-libz-sys-1)
5820 ("rust-openssl-sys" ,rust-openssl-sys-0.9)
5821 ("rust-winapi" ,rust-winapi-0.3)
5822 ("rust-cc" ,rust-cc-1)
5823 ("rust-pkg-config" ,rust-pkg-config-0.3)
5824 ("rust-vcpkg" ,rust-vcpkg-0.2))))
5825 (native-inputs
5826 `(("pkg-config" ,pkg-config)))
5827 (inputs
5828 `(("curl" ,curl)
5829 ("nghttp2" ,nghttp2)
5830 ("openssl" ,openssl)
5831 ("zlib" ,zlib)))
5832 (home-page "https://github.com/alexcrichton/curl-rust")
5833 (synopsis "Native bindings to the libcurl library")
5834 (description
5835 "This package provides native bindings to the @code{libcurl} library.")
5836 (license license:expat)))
5837
5838 (define-public rust-custom-derive-0.1
5839 (package
5840 (name "rust-custom-derive")
5841 (version "0.1.7")
5842 (source
5843 (origin
5844 (method url-fetch)
5845 (uri (crate-uri "custom_derive" version))
5846 (file-name (string-append name "-" version ".tar.gz"))
5847 (sha256
5848 (base32
5849 "1f81bavw1wnykwh21hh4yyzigs6zl6f6pkk9p3car8kq95yfb2pg"))))
5850 (build-system cargo-build-system)
5851 (arguments
5852 `(#:skip-build? #t
5853 #:cargo-development-inputs
5854 (("rust-rustc-serialize" ,rust-rustc-serialize-0.3))))
5855 (home-page
5856 "https://github.com/DanielKeep/rust-custom-derive/tree/custom_derive-master")
5857 (synopsis "Custom derivation macro for Rust")
5858 (description
5859 "This crate provides a macro that enables the use of custom @code{derive}
5860 attributes.")
5861 (license (list license:asl2.0 license:expat))))
5862
5863 (define-public rust-darling-0.10
5864 (package
5865 (name "rust-darling")
5866 (version "0.10.2")
5867 (source
5868 (origin
5869 (method url-fetch)
5870 (uri (crate-uri "darling" version))
5871 (file-name
5872 (string-append name "-" version ".tar.gz"))
5873 (sha256
5874 (base32
5875 "0n7qsp6854wm3y1q1lvylhv15zvc87ibbac1nyfmcdbyv1snww0d"))))
5876 (build-system cargo-build-system)
5877 (arguments
5878 `(#:cargo-inputs
5879 (("rust-darling-core" ,rust-darling-core-0.10)
5880 ("rust-darling-macro" ,rust-darling-macro-0.10))
5881 #:cargo-development-inputs
5882 (("rust-proc-macro2" ,rust-proc-macro2-1)
5883 ("rust-quote" ,rust-quote-1)
5884 ("rust-syn" ,rust-syn-1))))
5885 (home-page "https://github.com/TedDriggs/darling")
5886 (synopsis "Proc-macro library for reading attributes in custom derives")
5887 (description
5888 "This package provides a proc-macro library for reading attributes
5889 into structs when implementing custom derives.")
5890 (license license:expat)))
5891
5892 (define-public rust-darling-core-0.10
5893 (package
5894 (name "rust-darling-core")
5895 (version "0.10.2")
5896 (source
5897 (origin
5898 (method url-fetch)
5899 (uri (crate-uri "darling-core" version))
5900 (file-name
5901 (string-append name "-" version ".tar.gz"))
5902 (sha256
5903 (base32
5904 "16sija1jv0l754x4aa6b6fy01d1kf8m0r4id3flqipm45np61jgh"))))
5905 (build-system cargo-build-system)
5906 (arguments
5907 `(#:cargo-inputs
5908 (("rust-fnv" ,rust-fnv-1)
5909 ("rust-ident-case" ,rust-ident-case-1)
5910 ("rust-proc-macro2" ,rust-proc-macro2-1)
5911 ("rust-quote" ,rust-quote-1)
5912 ("rust-strsim" ,rust-strsim-0.9)
5913 ("rust-syn" ,rust-syn-1))))
5914 (home-page "https://github.com/TedDriggs/darling")
5915 (synopsis "Helper crate for @code{rust-darling}")
5916 (description
5917 "Helper crate for @code{rust-darling}, a proc-macro library for
5918 reading attributes into structs when implementing custom derives.")
5919 (license license:expat)))
5920
5921 (define-public rust-darling-macro-0.10
5922 (package
5923 (name "rust-darling-macro")
5924 (version "0.10.2")
5925 (source
5926 (origin
5927 (method url-fetch)
5928 (uri (crate-uri "darling_macro" version))
5929 (file-name
5930 (string-append name "-" version ".tar.gz"))
5931 (sha256
5932 (base32
5933 "0wlv31cxkrjijz5gv13hvk55c9lmd781aj12c8n84sa9mksa5dfr"))))
5934 (build-system cargo-build-system)
5935 (arguments
5936 `(#:cargo-inputs
5937 (("rust-darling-core" ,rust-darling-core-0.10)
5938 ("rust-quote" ,rust-quote-1)
5939 ("rust-syn" ,rust-syn-1))))
5940 (home-page "https://github.com/TedDriggs/darling")
5941 (synopsis "Helper crate for @code{rust-darling}")
5942 (description
5943 "Internal support for @code{rust-darling}, a proc-macro library for
5944 reading attributes into structs when implementing custom derives.")
5945 (license license:expat)))
5946
5947 (define-public rust-dashmap-3
5948 (package
5949 (name "rust-dashmap")
5950 (version "3.11.10")
5951 (source
5952 (origin
5953 (method url-fetch)
5954 (uri (crate-uri "dashmap" version))
5955 (file-name (string-append name "-" version ".tar.gz"))
5956 (sha256
5957 (base32
5958 "1ddrjj4khb0s263pw278g5dvbhaid40611h123s9w5shr0phw9hg"))
5959 (modules '((guix build utils)))
5960 (snippet
5961 '(begin
5962 ;; Enable unstable features
5963 (substitute* "src/lib.rs"
5964 (("#!\\[cfg_attr" all)
5965 (string-append "#![feature(map_get_key_value)]" "\n"
5966 "#![feature(inner_deref)]" "\n"
5967 all)))
5968 #t))))
5969 (build-system cargo-build-system)
5970 (arguments
5971 `(#:cargo-inputs
5972 (("rust-ahash" ,rust-ahash-0.3)
5973 ("rust-hashbrown" ,rust-hashbrown-0.8)
5974 ("rust-serde" ,rust-serde-1))
5975 #:phases
5976 (modify-phases %standard-phases
5977 (add-after 'unpack 'enable-unstable-features
5978 (lambda _
5979 (setenv "RUSTC_BOOTSTRAP" "1")
5980 #t)))))
5981 (home-page "https://github.com/xacrimon/dashmap")
5982 (synopsis "Blazing fast concurrent HashMap for Rust")
5983 (description "This package implements a blazing fast concurrent HashMap
5984 for Rust.")
5985 (license license:expat)))
5986
5987 (define-public rust-data-encoding-2
5988 (package
5989 (name "rust-data-encoding")
5990 (version "2.1.2")
5991 (source
5992 (origin
5993 (method url-fetch)
5994 (uri (crate-uri "data-encoding" version))
5995 (file-name (string-append name "-" version ".crate"))
5996 (sha256
5997 (base32
5998 "15xd6afhsjl08285piwczrafmckpp8i29padj8v12xhahshprx7l"))))
5999 (build-system cargo-build-system)
6000 (arguments '(#:skip-build? #t))
6001 (home-page "https://github.com/ia0/data-encoding")
6002 (synopsis "Efficient and customizable data-encoding functions")
6003 (description
6004 "This library provides encodings for many different common cases, including
6005 hexadecimal, base32, and base64.")
6006 (license license:expat)))
6007
6008 (define-public rust-data-url-0.1
6009 (package
6010 (name "rust-data-url")
6011 (version "0.1.0")
6012 (source
6013 (origin
6014 (method url-fetch)
6015 (uri (crate-uri "data-url" version))
6016 (file-name
6017 (string-append name "-" version ".tar.gz"))
6018 (sha256
6019 (base32
6020 "176wa1n8h71iwyaxhar4sqwrgrvb5sxk26az0fy88vnxrsffjgyk"))))
6021 (build-system cargo-build-system)
6022 (arguments
6023 `(#:cargo-inputs
6024 (("rust-matches" ,rust-matches-0.1))
6025 #:cargo-development-inputs
6026 (("rust-rustc-test" ,rust-rustc-test-0.3)
6027 ("rust-serde" ,rust-serde-1)
6028 ("rust-serde-json" ,rust-serde-json-1))))
6029 (home-page "https://github.com/servo/rust-url")
6030 (synopsis "Processing of data: URL according to WHATWG's Fetch Standard")
6031 (description
6032 "Processing of data: URL according to WHATWG's Fetch Standard.")
6033 (license (list license:expat license:asl2.0))))
6034
6035 (define-public rust-datetime-0.4
6036 (package
6037 (name "rust-datetime")
6038 (version "0.4.7")
6039 (source
6040 (origin
6041 (method url-fetch)
6042 (uri (crate-uri "datetime" version))
6043 (file-name
6044 (string-append name "-" version ".tar.gz"))
6045 (sha256
6046 (base32
6047 "1fd74bq48xg8ki5yw1mr1pa5hd3j5lbk4iqc5r0kh3l62b0vci2w"))))
6048 (build-system cargo-build-system)
6049 (arguments
6050 `(#:cargo-inputs
6051 (("rust-iso8601" ,rust-iso8601-0.1)
6052 ("rust-kernel32-sys" ,rust-kernel32-sys-0.2)
6053 ("rust-libc" ,rust-libc-0.2)
6054 ("rust-locale" ,rust-locale-0.2)
6055 ("rust-num-traits" ,rust-num-traits-0.1)
6056 ("rust-pad" ,rust-pad-0.1)
6057 ("rust-redox-syscall" ,rust-redox-syscall-0.1)
6058 ("rust-winapi" ,rust-winapi-0.2))
6059 #:cargo-development-inputs
6060 (("rust-regex" ,rust-regex-0.1)
6061 ("rust-rustc-serialize" ,rust-rustc-serialize-0.3))))
6062 (home-page "https://github.com/rust-datetime/datetime")
6063 (synopsis "Library for date and time formatting and arithmetic")
6064 (description "This package provides a library for date and time formatting
6065 and arithmetic.")
6066 (license license:expat)))
6067
6068 (define-public rust-decimal-2.0
6069 (package
6070 (name "rust-decimal")
6071 (version "2.0.4")
6072 (source
6073 (origin
6074 (method url-fetch)
6075 (uri (crate-uri "decimal" version))
6076 (file-name
6077 (string-append name "-" version ".tar.gz"))
6078 (sha256
6079 (base32
6080 "1vb3i8vg1dxrw3kzbfiag3gg7rdjd73z80mwbwkq60vnphiqfig6"))))
6081 (build-system cargo-build-system)
6082 (arguments
6083 `(#:cargo-inputs
6084 (("rust-bitflags" ,rust-bitflags-1)
6085 ("rust-libc" ,rust-libc-0.2)
6086 ("rust-ord-subset" ,rust-ord-subset-3)
6087 ("rust-rustc-serialize" ,rust-rustc-serialize-0.3)
6088 ("rust-serde" ,rust-serde-1)
6089 ("rust-cc" ,rust-cc-1))
6090 #:cargo-development-inputs
6091 (("rust-serde-json" ,rust-serde-json-1))))
6092 (home-page "https://github.com/alkis/decimal")
6093 (synopsis "Decimal floating point arithmetic for Rust")
6094 (description
6095 "Decimal floating point arithmetic for Rust.")
6096 (license license:asl2.0)))
6097
6098 (define-public rust-deflate-0.8
6099 (package
6100 (name "rust-deflate")
6101 (version "0.8.6")
6102 (source
6103 (origin
6104 (method url-fetch)
6105 (uri (crate-uri "deflate" version))
6106 (file-name
6107 (string-append name "-" version ".tar.gz"))
6108 (sha256
6109 (base32
6110 "0x6iqlayg129w63999kz97m279m0jj4x4sm6gkqlvmp73y70yxvk"))))
6111 (build-system cargo-build-system)
6112 (arguments
6113 `(#:tests? #f ; not all test files included
6114 #:cargo-inputs
6115 (("rust-adler32" ,rust-adler32-1)
6116 ("rust-byteorder" ,rust-byteorder-1)
6117 ("rust-gzip-header" ,rust-gzip-header-0.3))
6118 #:cargo-development-inputs
6119 (("rust-miniz-oxide" ,rust-miniz-oxide-0.3))))
6120 (home-page "https://github.com/image-rs/deflate-rs")
6121 (synopsis "DEFLATE, zlib and gzip encoder written in rust")
6122 (description
6123 "This package provides a DEFLATE, zlib and gzip encoder written in rust.")
6124 (license (list license:expat license:asl2.0))))
6125
6126 (define-public rust-deflate-0.7
6127 (package
6128 (inherit rust-deflate-0.8)
6129 (name "rust-deflate")
6130 (version "0.7.20")
6131 (source
6132 (origin
6133 (method url-fetch)
6134 (uri (crate-uri "deflate" version))
6135 (file-name
6136 (string-append name "-" version ".tar.gz"))
6137 (sha256
6138 (base32
6139 "1d7d9fpmgjnznrksmd3vlv3dyw01wsrm11ifil6ag22871xnlyvh"))))
6140 (arguments
6141 `(#:cargo-inputs
6142 (("rust-adler32" ,rust-adler32-1)
6143 ("rust-byteorder" ,rust-byteorder-1)
6144 ("rust-gzip-header" ,rust-gzip-header-0.3)
6145 ("rust-flate2" ,rust-flate2-1))))))
6146
6147 (define-public rust-defmac-0.2
6148 (package
6149 (name "rust-defmac")
6150 (version "0.2.1")
6151 (source
6152 (origin
6153 (method url-fetch)
6154 (uri (crate-uri "defmac" version))
6155 (file-name (string-append name "-" version ".crate"))
6156 (sha256
6157 (base32
6158 "14cqfvc0f1pkd6gdhjxa2wv3iibqprc0n203ims8lvg96752ynfm"))))
6159 (build-system cargo-build-system)
6160 (home-page "https://github.com/bluss/defmac")
6161 (synopsis "Macro to define lambda-like macros inline")
6162 (description "A macro to define lambda-like macros inline.")
6163 (license (list license:asl2.0
6164 license:expat))))
6165
6166 (define-public rust-defmac-0.1
6167 (package
6168 (inherit rust-defmac-0.2)
6169 (name "rust-defmac")
6170 (version "0.1.3")
6171 (source
6172 (origin
6173 (method url-fetch)
6174 (uri (crate-uri "defmac" version))
6175 (file-name (string-append name "-" version ".crate"))
6176 (sha256
6177 (base32
6178 "17giv0n0n1r64z0dahfvkjy3ys517jxyhs8sd9lmgvcljpjyryxa"))))))
6179
6180 (define-public rust-delta-e-0.2
6181 (package
6182 (name "rust-delta-e")
6183 (version "0.2.1")
6184 (source
6185 (origin
6186 (method url-fetch)
6187 (uri (crate-uri "delta_e" version))
6188 (file-name
6189 (string-append name "-" version ".tar.gz"))
6190 (sha256
6191 (base32
6192 "18rxibmi27ark8vj367qm2iqmv5x293l8fm9ang4y2sv3l251sf5"))))
6193 (build-system cargo-build-system)
6194 (arguments
6195 `(#:cargo-inputs (("rust-lab" ,rust-lab-0.7))))
6196 (home-page "https://github.com/elliotekj/DeltaE")
6197 (synopsis "Pure Rust implementation of the CIEDE2000 algorithm")
6198 (description "DeltaE is a pure-Rust implementation of the
6199 @url{http://en.wikipedia.org/wiki/Color_difference#CIEDE2000, CIEDE2000}
6200 algorithm which serves to quantify the difference between two colors.")
6201 (license license:expat)))
6202
6203 (define-public rust-demo-hack-0.0
6204 (package
6205 (name "rust-demo-hack")
6206 (version "0.0.5")
6207 (source
6208 (origin
6209 (method url-fetch)
6210 (uri (crate-uri "demo-hack" version))
6211 (file-name
6212 (string-append name "-" version ".tar.gz"))
6213 (sha256
6214 (base32
6215 "0m0114p1g0zzrdph5bg03i8m8p70vrwn3whs191jrbjcrmh5lmnp"))))
6216 (build-system cargo-build-system)
6217 (arguments
6218 `(#:cargo-inputs
6219 (("rust-demo-hack-impl" ,rust-demo-hack-impl-0.0)
6220 ("rust-proc-macro-hack" ,rust-proc-macro-hack-0.5))))
6221 (home-page "https://github.com/dtolnay/proc-macro-hack")
6222 (synopsis "Demo of proc-macro-hack")
6223 (description "Demo of proc-macro-hack.")
6224 (license (list license:expat license:asl2.0))))
6225
6226 (define-public rust-demo-hack-impl-0.0
6227 (package
6228 (name "rust-demo-hack-impl")
6229 (version "0.0.5")
6230 (source
6231 (origin
6232 (method url-fetch)
6233 (uri (crate-uri "demo-hack-impl" version))
6234 (file-name
6235 (string-append name "-" version ".tar.gz"))
6236 (sha256
6237 (base32
6238 "1f1fdl60xjas9wlmcl9v6f56vgm3mzwr019kcifav5464rx3w3ld"))))
6239 (build-system cargo-build-system)
6240 (arguments
6241 `(#:cargo-inputs
6242 (("rust-proc-macro-hack" ,rust-proc-macro-hack-0.5)
6243 ("rust-quote" ,rust-quote-0.6)
6244 ("rust-syn" ,rust-syn-0.15))))
6245 (home-page "https://github.com/dtolnay/proc-macro-hack")
6246 (synopsis "Demo of proc-macro-hack")
6247 (description "Demo of proc-macro-hack.")
6248 (license (list license:expat license:asl2.0))))
6249
6250 (define-public rust-derive-builder-0.9
6251 (package
6252 (name "rust-derive-builder")
6253 (version "0.9.0")
6254 (source
6255 (origin
6256 (method url-fetch)
6257 (uri (crate-uri "derive-builder" version))
6258 (file-name
6259 (string-append name "-" version ".tar.gz"))
6260 (sha256
6261 (base32
6262 "1h4f8vnggmpyw27fznl3cpyjrzz1nw5xrxx6ca3zcb3z54hqcrd2"))))
6263 (build-system cargo-build-system)
6264 (arguments
6265 `(#:cargo-inputs
6266 (("rust-compiletest-rs" ,rust-compiletest-rs-0.3)
6267 ("rust-darling" ,rust-darling-0.10)
6268 ("rust-derive-builder-core" ,rust-derive-builder-core-0.9)
6269 ("rust-env-logger" ,rust-env-logger-0.5)
6270 ("rust-log" ,rust-log-0.4)
6271 ("rust-proc-macro2" ,rust-proc-macro2-1)
6272 ("rust-quote" ,rust-quote-1)
6273 ("rust-skeptic" ,rust-skeptic-0.13)
6274 ("rust-syn" ,rust-syn-1))
6275 #:cargo-development-inputs
6276 (("rust-pretty-assertions" ,rust-pretty-assertions-0.6))))
6277 (home-page "https://github.com/colin-kiegel/rust-derive-builder")
6278 (synopsis "Builder pattern for arbitrary structs")
6279 (description "Rust macro to automatically implement the builder pattern
6280 for arbitrary structs.")
6281 (license (list license:expat license:asl2.0))))
6282
6283 (define-public rust-derive-builder-0.5
6284 (package
6285 (inherit rust-derive-builder-0.9)
6286 (name "rust-derive-builder")
6287 (version "0.5.1")
6288 (source
6289 (origin
6290 (method url-fetch)
6291 (uri (crate-uri "derive_builder" version))
6292 (file-name (string-append name "-" version ".tar.gz"))
6293 (sha256
6294 (base32 "0fgl8dsigr7h70clxjq8xmsfc021w5ag262wfgcqv0ian1m8x6cc"))))
6295 (arguments
6296 `(#:cargo-inputs
6297 (("rust-compiletest-rs" ,rust-compiletest-rs-0.3)
6298 ("rust-derive-builder-core" ,rust-derive-builder-core-0.2)
6299 ("rust-env-logger" ,rust-env-logger-0.4)
6300 ("rust-log" ,rust-log-0.3)
6301 ("rust-quote" ,rust-quote-0.3)
6302 ("rust-skeptic" ,rust-skeptic-0.9)
6303 ("rust-syn" ,rust-syn-0.11))
6304 #:cargo-development-inputs
6305 (("rust-env-logger" ,rust-env-logger-0.4)
6306 ("rust-log" ,rust-log-0.3)
6307 ("rust-pretty-assertions" ,rust-pretty-assertions-0.2)
6308 ("rust-skeptic" ,rust-skeptic-0.9))))))
6309
6310 (define-public rust-derive-builder-core-0.9
6311 (package
6312 (name "rust-derive-builder-core")
6313 (version "0.9.0")
6314 (source
6315 (origin
6316 (method url-fetch)
6317 (uri (crate-uri "derive-builder-core" version))
6318 (file-name
6319 (string-append name "-" version ".tar.gz"))
6320 (sha256
6321 (base32
6322 "1vwb8nwls4lhd2yiyj87kmwws4mmfqfrjcr0pk09b11c6wzfm497"))))
6323 (build-system cargo-build-system)
6324 (arguments
6325 `(#:cargo-inputs
6326 (("rust-darling" ,rust-darling-0.10)
6327 ("rust-log" ,rust-log-0.4)
6328 ("rust-proc-macro2" ,rust-proc-macro2-1)
6329 ("rust-quote" ,rust-quote-1)
6330 ("rust-syn" ,rust-syn-1))
6331 #:cargo-development-inputs
6332 (("rust-pretty-assertions" ,rust-pretty-assertions-0.6))))
6333 (home-page "https://github.com/colin-kiegel/rust-derive-builder")
6334 (synopsis "Internal helper library for @code{rust-derive-builder}")
6335 (description
6336 "Internal helper library for @code{rust-derive-builder}.")
6337 (license (list license:expat license:asl2.0))))
6338
6339 (define-public rust-derive-builder-core-0.2
6340 (package
6341 (inherit rust-derive-builder-core-0.9)
6342 (name "rust-derive-builder-core")
6343 (version "0.2.0")
6344 (source
6345 (origin
6346 (method url-fetch)
6347 (uri (crate-uri "derive-builder-core" version))
6348 (file-name (string-append name "-" version ".tar.gz"))
6349 (sha256
6350 (base32 "0mxpl1ja3l60w1v5vr3733hr5mcpds2hfl6shrmy3a2zkvp28pkk"))))
6351 (arguments
6352 `(#:cargo-inputs
6353 (("rust-log" ,rust-log-0.3)
6354 ("rust-quote" ,rust-quote-0.3)
6355 ("rust-syn" ,rust-syn-0.11))
6356 #:cargo-development-inputs
6357 (("rust-pretty-assertions" ,rust-pretty-assertions-0.2))))))
6358
6359 (define-public rust-derive-error-chain-0.10
6360 (package
6361 (name "rust-derive-error-chain")
6362 (version "0.10.1")
6363 (source
6364 (origin
6365 (method url-fetch)
6366 (uri (crate-uri "derive-error-chain" version))
6367 (file-name (string-append name "-" version ".tar.gz"))
6368 (sha256
6369 (base32
6370 "0jnybrpiq5jzx69xq74cwxply36js02z14y9sym8sf2iwsnsk71w"))))
6371 (build-system cargo-build-system)
6372 (arguments
6373 `(#:cargo-inputs
6374 (("rust-quote" ,rust-quote-0.3)
6375 ("rust-syn" ,rust-syn-0.14))))
6376 (home-page "https://github.com/Arnavion/derive-error-chain")
6377 (synopsis "Macros 1.1 implementation of error-chain")
6378 (description "This package provides a Macros 1.1 implementation of
6379 error-chain.")
6380 (license (list license:expat license:asl2.0))))
6381
6382 (define-public rust-derive-more-0.99
6383 (package
6384 (name "rust-derive-more")
6385 (version "0.99.9")
6386 (source
6387 (origin
6388 (method url-fetch)
6389 (uri (crate-uri "derive-more" version))
6390 (file-name
6391 (string-append name "-" version ".tar.gz"))
6392 (sha256
6393 (base32
6394 "0xizcpj39rx0474mbbx8m0xww98qh92zsg82gf52qnvbryqri299"))))
6395 (build-system cargo-build-system)
6396 (arguments
6397 `(#:tests? #f ; Some test files missing.
6398 #:cargo-inputs
6399 (("rust-proc-macro2" ,rust-proc-macro2-1)
6400 ("rust-quote" ,rust-quote-1)
6401 ("rust-syn" ,rust-syn-1))
6402 #:cargo-development-inputs
6403 (("rust-peg" ,rust-peg-0.5)
6404 ("rust-rustc-version" ,rust-rustc-version-0.2))))
6405 (home-page "https://github.com/JelteF/derive_more")
6406 (synopsis "Adds derive macros for more traits")
6407 (description
6408 "Rust has lots of builtin traits that are implemented for its basic
6409 types, such as @code{Add}, @code{Not}, @code{From} or @code{Display}.
6410 However, when wrapping these types inside your own structs or enums you lose
6411 the implementations of these traits and are required to recreate them. This is
6412 especially annoying when your own structures are very simple, such as when
6413 using the commonly advised newtype pattern (e.g. @code{MyInt(i32)}).
6414
6415 This library tries to remove these annoyances and the corresponding
6416 boilerplate code. It does this by allowing you to derive lots of commonly used
6417 traits for both structs and enums.")
6418 (license license:expat)))
6419
6420 (define-public rust-derive-new-0.5
6421 (package
6422 (name "rust-derive-new")
6423 (version "0.5.8")
6424 (source
6425 (origin
6426 (method url-fetch)
6427 (uri (crate-uri "derive-new" version))
6428 (file-name (string-append name "-" version ".tar.gz"))
6429 (sha256
6430 (base32 "1ncibp4jhpkym7namg3viqyw8hljd32n6abg64af8qjwrn91iwvi"))))
6431 (build-system cargo-build-system)
6432 (arguments
6433 `(#:cargo-inputs
6434 (("rust-proc-macro2" ,rust-proc-macro2-1)
6435 ("rust-quote" ,rust-quote-1)
6436 ("rust-syn" ,rust-syn-1))))
6437 (home-page "https://github.com/nrc/derive-new")
6438 (synopsis "Simple constructor functions for structs and enums")
6439 (description "`#[derive(new)]` implements simple constructor functions for
6440 structs and enums.")
6441 (license license:expat)))
6442
6443 (define-public rust-dialoguer-0.6
6444 (package
6445 (name "rust-dialoguer")
6446 (version "0.6.2")
6447 (source
6448 (origin
6449 (method url-fetch)
6450 (uri (crate-uri "dialoguer" version))
6451 (file-name
6452 (string-append name "-" version ".tar.gz"))
6453 (sha256
6454 (base32
6455 "0f31ahy6myg2vz9xrdmp0vx0m7x427a1wxpgrgwhxd0rgfpqdapl"))))
6456 (build-system cargo-build-system)
6457 (arguments
6458 `(#:cargo-inputs
6459 (("rust-console" ,rust-console-0.11)
6460 ("rust-lazy-static" ,rust-lazy-static-1)
6461 ("rust-tempfile" ,rust-tempfile-3))))
6462 (home-page "https://github.com/mitsuhiko/dialoguer")
6463 (synopsis "Library for command line prompts")
6464 (description
6465 "This package provides a library for command line prompts and the like.")
6466 (license license:expat)))
6467
6468 (define-public rust-dialoguer-0.3
6469 (package
6470 (inherit rust-dialoguer-0.6)
6471 (name "rust-dialoguer")
6472 (version "0.3.0")
6473 (source
6474 (origin
6475 (method url-fetch)
6476 (uri (crate-uri "dialoguer" version))
6477 (file-name
6478 (string-append name "-" version ".tar.gz"))
6479 (sha256
6480 (base32
6481 "1a9gqvqp83gg4jbm286q5ab3l44zyyzlsdaiqmw8x4k80fdc5l8s"))))
6482 (build-system cargo-build-system)
6483 (arguments
6484 `(#:cargo-test-flags '("--lib")
6485 #:cargo-inputs
6486 (("rust-console" ,rust-console-0.11)
6487 ("rust-lazy-static" ,rust-lazy-static-1)
6488 ("rust-tempfile" ,rust-tempfile-2))))))
6489
6490 (define-public rust-diesel-1
6491 (package
6492 (name "rust-diesel")
6493 (version "1.4.5")
6494 (source
6495 (origin
6496 (method url-fetch)
6497 (uri (crate-uri "diesel" version))
6498 (file-name (string-append name "-" version ".tar.gz"))
6499 (sha256
6500 (base32
6501 "134dy6gdbv30q388gsp5777w2qh63hdqsim1j8s1aylpmggfjb9y"))))
6502 (build-system cargo-build-system)
6503 (arguments
6504 `(#:cargo-inputs
6505 (("rust-bigdecimal" ,rust-bigdecimal-0.2)
6506 ("rust-bitflags" ,rust-bitflags-1)
6507 ("rust-byteorder" ,rust-byteorder-1)
6508 ("rust-chrono" ,rust-chrono-0.4)
6509 ("rust-diesel-derives" ,rust-diesel-derives-1.4)
6510 ("rust-ipnetwork" ,rust-ipnetwork-0.17)
6511 ("rust-libc" ,rust-libc-0.2)
6512 ("rust-libsqlite3-sys" ,rust-libsqlite3-sys-0.15)
6513 ("rust-mysqlclient-sys" ,rust-mysqlclient-sys-0.2)
6514 ("rust-num-bigint" ,rust-num-bigint-0.3)
6515 ("rust-num-integer" ,rust-num-integer-0.1)
6516 ("rust-num-traits" ,rust-num-traits-0.2)
6517 ("rust-pq-sys" ,rust-pq-sys-0.4)
6518 ("rust-quickcheck" ,rust-quickcheck-0.4)
6519 ("rust-r2d2" ,rust-r2d2)
6520 ("rust-serde-json" ,rust-serde-json-1)
6521 ("rust-time" ,rust-time-0.1)
6522 ("rust-url" ,rust-url-1)
6523 ("rust-uuid" ,rust-uuid-0.7))
6524 #:cargo-development-inputs
6525 (("rust-cfg-if" ,rust-cfg-if-0.1)
6526 ("rust-dotenv" ,rust-dotenv-0.10)
6527 ("rust-quickcheck" ,rust-quickcheck-0.4)
6528 ("rust-tempdir" ,rust-tempdir-0.3))))
6529 (home-page "https://diesel.rs")
6530 (synopsis "A safe, extensible ORM and Query Builder")
6531 (description "This package provides a safe, extensible ORM and Query
6532 Builder for PostgreSQL, SQLite, and MySQL.")
6533 (license (list license:expat license:asl2.0))))
6534
6535 (define-public rust-diesel-derives-1.4
6536 (package
6537 (name "rust-diesel-derives")
6538 (version "1.4.1")
6539 (source
6540 (origin
6541 (method url-fetch)
6542 (uri (crate-uri "diesel_derives" version))
6543 (file-name (string-append name "-" version ".tar.gz"))
6544 (sha256
6545 (base32
6546 "1lsq133fwk0zj8xvxhdxqgg0xs31zf3abnwdyshaf0ldca7hkxa5"))))
6547 (build-system cargo-build-system)
6548 (arguments
6549 `(#:cargo-inputs
6550 (("rust-proc-macro2" ,rust-proc-macro2-1)
6551 ("rust-quote" ,rust-quote-1)
6552 ("rust-syn" ,rust-syn-1))
6553 #:cargo-development-inputs
6554 (("rust-cfg-if" ,rust-cfg-if-0.1)
6555 ("rust-diesel" ,rust-diesel-1)
6556 ("rust-dotenv" ,rust-dotenv-0.10))))
6557 (home-page "https://diesel.rs")
6558 (synopsis "Crate internal to Diesel")
6559 (description "You should not use this crate directly, it is internal to
6560 Diesel.")
6561 (license (list license:expat license:asl2.0))))
6562
6563 (define-public rust-diff-0.1
6564 (package
6565 (name "rust-diff")
6566 (version "0.1.12")
6567 (source
6568 (origin
6569 (method url-fetch)
6570 (uri (crate-uri "diff" version))
6571 (file-name
6572 (string-append name "-" version ".tar.gz"))
6573 (sha256
6574 (base32
6575 "16b40bhsa2qgvgvxs983l625pkxyp6m0mzmpwg2605cvj53yl98f"))))
6576 (build-system cargo-build-system)
6577 (arguments
6578 `(#:skip-build? #t
6579 #:cargo-development-inputs
6580 (("rust-quickcheck" ,rust-quickcheck-0.9)
6581 ("rust-speculate" ,rust-speculate-0.1))))
6582 (home-page "https://github.com/utkarshkukreti/diff.rs")
6583 (synopsis
6584 "LCS based slice and string diffing implementation")
6585 (description
6586 "An LCS based slice and string diffing implementation.")
6587 (license (list license:expat license:asl2.0))))
6588
6589 (define-public rust-difference-2
6590 (package
6591 (name "rust-difference")
6592 (version "2.0.0")
6593 (source
6594 (origin
6595 (method url-fetch)
6596 (uri (crate-uri "difference" version))
6597 (file-name
6598 (string-append name "-" version ".tar.gz"))
6599 (sha256
6600 (base32
6601 "1621wx4k8h452p6xzmzzvm7mz87kxh4yqz0kzxfjj9xmjxlbyk2j"))))
6602 (build-system cargo-build-system)
6603 (arguments
6604 `(#:skip-build? #t
6605 #:cargo-inputs
6606 (("rust-getopts" ,rust-getopts-0.2))
6607 #:cargo-development-inputs
6608 (("rust-quickcheck" ,rust-quickcheck-0.8)
6609 ("rust-term" ,rust-term-0.5))))
6610 (home-page "https://github.com/johannhof/difference.rs")
6611 (synopsis "Rust text diffing and assertion library")
6612 (description
6613 "This package provides a Rust text diffing and assertion library.")
6614 (license license:expat)))
6615
6616 (define-public rust-difference-1
6617 (package/inherit rust-difference-2
6618 (name "rust-difference")
6619 (version "1.0.0")
6620 (source
6621 (origin
6622 (method url-fetch)
6623 (uri (crate-uri "difference" version))
6624 (file-name (string-append name "-" version ".tar.gz"))
6625 (sha256
6626 (base32 "1a5v0b73z7vywbclll32wjsfkdgh6wn9prnq91z0d3lag4clsc5k"))))
6627 (build-system cargo-build-system)
6628 (arguments
6629 `(#:cargo-inputs
6630 (("rust-getopts" ,rust-getopts-0.2))
6631 #:cargo-development-inputs
6632 (("rust-term" ,rust-term-0.2))))))
6633
6634 (define-public rust-diffs-0.3
6635 (package
6636 (name "rust-diffs")
6637 (version "0.3.0")
6638 (source
6639 (origin
6640 (method url-fetch)
6641 (uri (crate-uri "diffs" version))
6642 (file-name
6643 (string-append name "-" version ".tar.gz"))
6644 (sha256
6645 (base32
6646 "036sqycmir4bbl4016jprsyjq4hicc31r68dyqadmc8ac9pk55d1"))))
6647 (build-system cargo-build-system)
6648 (home-page "https://nest.pijul.com/pijul_org/pijul")
6649 (synopsis "Diff algorithms, also called longest common subsequence")
6650 (description
6651 "This package provides a number of diff algorithms, also called longest
6652 common subsequence. The diff algorithms include Myer's diff and Patience
6653 diff.")
6654 (license (list license:asl2.0 license:expat))))
6655
6656 (define-public rust-digest-0.9
6657 (package
6658 (name "rust-digest")
6659 (version "0.9.0")
6660 (source
6661 (origin
6662 (method url-fetch)
6663 (uri (crate-uri "digest" version))
6664 (file-name
6665 (string-append name "-" version ".tar.gz"))
6666 (sha256
6667 (base32
6668 "0rmhvk33rgvd6ll71z8sng91a52rw14p0drjn1da0mqa138n1pfk"))))
6669 (build-system cargo-build-system)
6670 (arguments
6671 `(#:cargo-inputs
6672 (("rust-blobby" ,rust-blobby-0.1)
6673 ("rust-generic-array" ,rust-generic-array-0.14))))
6674 (home-page "https://github.com/RustCrypto/traits")
6675 (synopsis "Traits for cryptographic hash functions")
6676 (description
6677 "Traits for cryptographic hash functions.")
6678 (license (list license:expat license:asl2.0))))
6679
6680 (define-public rust-digest-0.8
6681 (package
6682 (inherit rust-digest-0.9)
6683 (name "rust-digest")
6684 (version "0.8.1")
6685 (source
6686 (origin
6687 (method url-fetch)
6688 (uri (crate-uri "digest" version))
6689 (file-name
6690 (string-append name "-" version ".tar.gz"))
6691 (sha256
6692 (base32
6693 "1madjl27f3kj5ql7kwgvb9c8b7yb7bv7yfgx7rqzj4i3fp4cil7k"))))
6694 (arguments
6695 `(#:skip-build? #t
6696 #:cargo-inputs
6697 (("rust-blobby" ,rust-blobby-0.1)
6698 ("rust-generic-array" ,rust-generic-array-0.13))))))
6699
6700 (define-public rust-digest-0.6
6701 (package
6702 (name "rust-digest")
6703 (version "0.6.2")
6704 (source
6705 (origin
6706 (method url-fetch)
6707 (uri (crate-uri "digest" version))
6708 (file-name (string-append name "-" version ".tar.gz"))
6709 (sha256
6710 (base32
6711 "02mgf8z4hi96w9nl2zb5w3k6lqbhjgv5z8hhyv2b7x7kavqrpcp5"))))
6712 (build-system cargo-build-system)
6713 (arguments
6714 `(#:cargo-inputs
6715 (("rust-generic-array" ,rust-generic-array-0.8))))
6716 (home-page "https://github.com/RustCrypto/traits")
6717 (synopsis "Traits for cryptographic hash functions")
6718 (description "This package provides traits for cryptographic hash
6719 functions.")
6720 (license (list license:expat license:asl2.0))))
6721
6722 (define-public rust-directories-3
6723 (package
6724 (name "rust-directories")
6725 (version "3.0.1")
6726 (source
6727 (origin
6728 (method url-fetch)
6729 (uri (crate-uri "directories" version))
6730 (file-name
6731 (string-append name "-" version ".tar.gz"))
6732 (sha256
6733 (base32
6734 "03ysv4m6mhsc3w1xnvncd5sxf7v2dz917awq6ksx0n0bsqwxdzpq"))))
6735 (build-system cargo-build-system)
6736 (arguments
6737 `(#:cargo-inputs
6738 (("rust-dirs-sys" ,rust-dirs-sys-0.3))
6739 #:cargo-development-inputs
6740 (("rust-bencher" ,rust-bencher-0.1))))
6741 (home-page "https://github.com/dirs-dev/directories-rs")
6742 (synopsis "Library for standard locations of data directories")
6743 (description
6744 "This package provides a tiny mid-level library that provides
6745 platform-specific standard locations of directories for config,
6746 cache and other data on Linux, Windows and macOS by leveraging the
6747 mechanisms defined by the XDG base/user directory specifications
6748 on Linux, the Known Folder API on Windows, and the Standard
6749 Directory guidelines on macOS.")
6750 (license (list license:expat license:asl2.0))))
6751
6752 (define-public rust-dirs-2.0
6753 (package
6754 (name "rust-dirs")
6755 (version "2.0.2")
6756 (source
6757 (origin
6758 (method url-fetch)
6759 (uri (crate-uri "dirs" version))
6760 (file-name
6761 (string-append name "-" version ".tar.gz"))
6762 (sha256
6763 (base32
6764 "1qymhyq7w7wlf1dirq6gsnabdyzg6yi2yyxkx6c4ldlkbjdaibhk"))))
6765 (arguments
6766 `(#:cargo-inputs
6767 (("rust-cfg-if" ,rust-cfg-if-0.1)
6768 ("rust-dirs-sys" ,rust-dirs-sys-0.3))))
6769 (build-system cargo-build-system)
6770 (home-page "https://github.com/soc/dirs-rs")
6771 (synopsis "Abstractions for standard locations for various platforms")
6772 (description
6773 "This package provides a tiny low-level library that provides
6774 platform-specific standard locations of directories for config, cache and other
6775 data on Linux, Windows, macOS and Redox by leveraging the mechanisms defined by
6776 the XDG base/user directory specifications on Linux, the Known Folder API on
6777 Windows, and the Standard Directory guidelines on macOS.")
6778 (license (list license:expat license:asl2.0))))
6779
6780 (define-public rust-dirs-1.0
6781 (package
6782 (inherit rust-dirs-2.0)
6783 (name "rust-dirs")
6784 (version "1.0.5")
6785 (source
6786 (origin
6787 (method url-fetch)
6788 (uri (crate-uri "dirs" version))
6789 (file-name (string-append name "-" version ".crate"))
6790 (sha256
6791 (base32
6792 "009rrhzj9pxyncmm2vhlj70npg0cgggv2hjbbkiwdl9vccq8kmrz"))))
6793 (arguments
6794 `(#:skip-build? #t
6795 #:cargo-inputs
6796 (("rust-libc" ,rust-libc-0.2)
6797 ("rust-redox-users" ,rust-redox-users-0.3)
6798 ("rust-winapi" ,rust-winapi-0.3))))))
6799
6800 (define-public rust-dirs-sys-0.3
6801 (package
6802 (name "rust-dirs-sys")
6803 (version "0.3.5")
6804 (source
6805 (origin
6806 (method url-fetch)
6807 (uri (crate-uri "dirs-sys" version))
6808 (file-name
6809 (string-append name "-" version ".tar.gz"))
6810 (sha256
6811 (base32
6812 "0ym5843xack45b1yjahrh3q2f72shnwf1dd2jncf9qsxf3sxg4wf"))))
6813 (build-system cargo-build-system)
6814 (arguments
6815 `(#:cargo-inputs
6816 (("rust-cfg-if" ,rust-cfg-if-0.1)
6817 ("rust-libc" ,rust-libc-0.2)
6818 ("rust-redox-users" ,rust-redox-users-0.3)
6819 ("rust-winapi" ,rust-winapi-0.3))))
6820 (home-page "https://github.com/soc/dirs-sys-rs")
6821 (synopsis
6822 "System-level helper functions for the dirs and directories crates")
6823 (description
6824 "This package provides system-level helper functions for the @code{dirs}
6825 and @code{directories} crates.")
6826 (license (list license:asl2.0 license:expat))))
6827
6828 (define-public rust-discard-1.0
6829 (package
6830 (name "rust-discard")
6831 (version "1.0.4")
6832 (source
6833 (origin
6834 (method url-fetch)
6835 (uri (crate-uri "discard" version))
6836 (file-name (string-append name "-" version ".crate"))
6837 (sha256
6838 (base32
6839 "1h67ni5bxvg95s91wgicily4ix7lcw7cq0a5gy9njrybaibhyb91"))))
6840 (build-system cargo-build-system)
6841 (arguments '(#:skip-build? #t))
6842 (home-page "https://github.com/Pauan/rust-discard")
6843 (synopsis "Allow for intentionally leaking memory")
6844 (description "There are situations where you need to intentionally leak some
6845 memory but not other memory. This package provides a discard trait which allows
6846 for intentionally leaking memory")
6847 (license license:expat)))
6848
6849 (define-public rust-dispatch-0.1
6850 (package
6851 (name "rust-dispatch")
6852 (version "0.1.4")
6853 (source
6854 (origin
6855 (method url-fetch)
6856 (uri (crate-uri "dispatch" version))
6857 (file-name
6858 (string-append name "-" version ".tar.gz"))
6859 (sha256
6860 (base32
6861 "019nzy993hxaiazcdnayx3csv2iki34i535asw11ki96hakkrs84"))))
6862 (build-system cargo-build-system)
6863 (arguments '(#:tests? #f)) ; Tests only run on Mac.
6864 (home-page "https://github.com/SSheldon/rust-dispatch")
6865 (synopsis "Rust wrapper for Apple's Grand Central Dispatch")
6866 (description "This package provides a Rust wrapper for Apple's Grand
6867 Central Dispatch.")
6868 (license license:expat)))
6869
6870 (define-public rust-dissimilar-1.0
6871 (package
6872 (name "rust-dissimilar")
6873 (version "1.0.1")
6874 (source
6875 (origin
6876 (method url-fetch)
6877 (uri (crate-uri "dissimilar" version))
6878 (file-name
6879 (string-append name "-" version ".tar.gz"))
6880 (sha256
6881 (base32
6882 "154ba92ifmh3js1k0hbmxz7pv95n8wmahlyvhdbnxggbs8f1dpir"))))
6883 (build-system cargo-build-system)
6884 (home-page "https://github.com/dtolnay/dissimilar")
6885 (synopsis "Diff library with semantic cleanup")
6886 (description
6887 "This package provides a diff library with semantic cleanup, based on
6888 Google's diff-match-patch.")
6889 (license (list license:expat license:asl2.0))))
6890
6891 (define-public rust-dlib-0.4
6892 (package
6893 (name "rust-dlib")
6894 (version "0.4.1")
6895 (source
6896 (origin
6897 (method url-fetch)
6898 (uri (crate-uri "dlib" version))
6899 (file-name
6900 (string-append name "-" version ".tar.gz"))
6901 (sha256
6902 (base32
6903 "0smp2cdvy12xfw26qyqms273w5anszfadv73g75s88yqm54i5rbp"))))
6904 (build-system cargo-build-system)
6905 (arguments
6906 `(#:cargo-inputs
6907 (("rust-libloading" ,rust-libloading-0.5))))
6908 (home-page "https://github.com/vberger/dlib")
6909 (synopsis "Helper macros for manually loading optional system libraries")
6910 (description
6911 "This package provides helper macros for handling manually loading optional
6912 system libraries.")
6913 (license license:expat)))
6914
6915 (define-public rust-doc-comment-0.3
6916 (package
6917 (name "rust-doc-comment")
6918 (version "0.3.1")
6919 (source
6920 (origin
6921 (method url-fetch)
6922 (uri (crate-uri "doc-comment" version))
6923 (file-name (string-append name "-" version ".crate"))
6924 (sha256
6925 (base32
6926 "15rsqxgarfpb1yim9sbp9yfgj7p2dq6v51c6bq1a62paii9ylgcj"))))
6927 (build-system cargo-build-system)
6928 (arguments '(#:skip-build? #t))
6929 (home-page "https://github.com/GuillaumeGomez/doc-comment")
6930 (synopsis "Macro to generate doc comments")
6931 (description "This package provides a way to generate doc comments
6932 from macros.")
6933 (license license:expat)))
6934
6935 (define-public rust-docmatic-0.1
6936 (package
6937 (name "rust-docmatic")
6938 (version "0.1.2")
6939 (source
6940 (origin
6941 (method url-fetch)
6942 (uri (crate-uri "docmatic" version))
6943 (file-name (string-append name "-" version ".tar.gz"))
6944 (sha256
6945 (base32 "1hx85n266lxswqxrbbinqlhi1qcnjgd4cc7v42abg72kmz7fnn4d"))))
6946 (build-system cargo-build-system)
6947 (arguments
6948 `(#:cargo-inputs
6949 (("rust-which" ,rust-which-2.0))))
6950 (home-page "https://github.com/assert-rs/docmatic")
6951 (synopsis "Test Rust examples in your documentation")
6952 (description "Test Rust examples in your documentation.")
6953 (license license:expat)))
6954
6955 (define-public rust-docopt-1.1
6956 (package
6957 (name "rust-docopt")
6958 (version "1.1.0")
6959 (source
6960 (origin
6961 (method url-fetch)
6962 (uri (crate-uri "docopt" version))
6963 (file-name
6964 (string-append name "-" version ".tar.gz"))
6965 (sha256
6966 (base32
6967 "0s9rcpmnnivs502q69lc1h1wrwapkq09ikgbfbgqf31idmc5llkz"))))
6968 (build-system cargo-build-system)
6969 (arguments
6970 `(#:cargo-inputs
6971 (("rust-lazy-static" ,rust-lazy-static-1)
6972 ("rust-regex" ,rust-regex-1)
6973 ("rust-serde" ,rust-serde-1)
6974 ("rust-strsim" ,rust-strsim-0.9))))
6975 (home-page "https://github.com/docopt/docopt.rs")
6976 (synopsis "Command line argument parsing")
6977 (description "Command line argument parsing.")
6978 (license (list license:expat license:unlicense))))
6979
6980 (define-public rust-docopt-0.8
6981 (package/inherit rust-docopt-1.1
6982 (name "rust-docopt")
6983 (version "0.8.3")
6984 (source
6985 (origin
6986 (method url-fetch)
6987 (uri (crate-uri "docopt" version))
6988 (file-name (string-append name "-" version ".tar.gz"))
6989 (sha256
6990 (base32 "0jha611mffc2qnxvdl3pmglz07akl99lk1vihhb3nl1cd69x7b6q"))))
6991 (arguments
6992 `(#:cargo-inputs
6993 (("rust-lazy-static" ,rust-lazy-static-1)
6994 ("rust-regex" ,rust-regex-0.2)
6995 ("rust-serde" ,rust-serde-1)
6996 ("rust-serde-derive" ,rust-serde-derive-1)
6997 ("rust-strsim" ,rust-strsim-0.6))))))
6998
6999 (define-public rust-docopt-0.7
7000 (package
7001 (inherit rust-docopt-1.1)
7002 (name "rust-docopt")
7003 (version "0.7.0")
7004 (source
7005 (origin
7006 (method url-fetch)
7007 (uri (crate-uri "docopt" version))
7008 (file-name
7009 (string-append name "-" version ".tar.gz"))
7010 (sha256
7011 (base32
7012 "1n6gbhsks2w9y0b4bwqyawh4ghbkka09w6pjcrq9i1sd51pflcmb"))))
7013 (arguments
7014 `(#:cargo-inputs
7015 (("rust-lazy-static" ,rust-lazy-static-0.2)
7016 ("rust-regex" ,rust-regex-0.2)
7017 ("rust-rustc-serialize" ,rust-rustc-serialize-0.3)
7018 ("rust-strsim" ,rust-strsim-0.6))))))
7019
7020 (define-public rust-docopt-0.6
7021 (package
7022 (inherit rust-docopt-0.7)
7023 (name "rust-docopt")
7024 (version "0.6.86")
7025 (source
7026 (origin
7027 (method url-fetch)
7028 (uri (crate-uri "docopt" version))
7029 (file-name
7030 (string-append name "-" version ".tar.gz"))
7031 (sha256
7032 (base32
7033 "1nf4f4zf5yk0d0l4kl7hkii4na22fhn0l2hgfb46yzv08l2g6zja"))))
7034 (arguments
7035 `(#:cargo-inputs
7036 (("rust-lazy-static" ,rust-lazy-static-0.2)
7037 ("rust-regex" ,rust-regex-0.1)
7038 ("rust-rustc-serialize" ,rust-rustc-serialize-0.3)
7039 ("rust-strsim" ,rust-strsim-0.5))))))
7040
7041 (define-public rust-downcast-rs-1.1
7042 (package
7043 (name "rust-downcast-rs")
7044 (version "1.1.1")
7045 (source
7046 (origin
7047 (method url-fetch)
7048 (uri (crate-uri "downcast-rs" version))
7049 (file-name
7050 (string-append name "-" version ".tar.gz"))
7051 (sha256
7052 (base32
7053 "1xhs2qj02k9m4mm5fgh19y88850y9jsnwwlblf2ffc91gjs6xfjj"))))
7054 (build-system cargo-build-system)
7055 (home-page "https://github.com/marcianx/downcast-rs")
7056 (synopsis "Trait object downcasting support using only safe Rust")
7057 (description
7058 "Trait object downcasting support using only safe Rust. It supports type
7059 parameters, associated types, and type constraints.")
7060 (license (list license:expat license:asl2.0))))
7061
7062 (define-public rust-downcast-rs-1.2
7063 (package
7064 (name "rust-downcast-rs")
7065 (version "1.2.0")
7066 (source
7067 (origin
7068 (method url-fetch)
7069 (uri (crate-uri "downcast-rs" version))
7070 (file-name
7071 (string-append name "-" version ".tar.gz"))
7072 (sha256
7073 (base32
7074 "0l36kgxqd5djhqwf5abxjmgasdw8n0qsjvw3jdvhi91nj393ba4y"))))
7075 (build-system cargo-build-system)
7076 (home-page "https://github.com/marcianx/downcast-rs")
7077 (synopsis "Trait object downcasting support using only safe Rust")
7078 (description
7079 "Trait object downcasting support using only safe Rust. It supports type
7080 parameters, associated types, and type constraints.")
7081 (license (list license:expat license:asl2.0))))
7082
7083 (define-public rust-dogged-0.2
7084 (package
7085 (name "rust-dogged")
7086 (version "0.2.0")
7087 (source
7088 (origin
7089 (method url-fetch)
7090 (uri (crate-uri "dogged" version))
7091 (file-name (string-append name "-" version ".tar.gz"))
7092 (sha256
7093 (base32 "0yk5l6qqidl5y935x15gi9kkd6niim1wb64r1l7kdzl9jw8dyf16"))))
7094 (build-system cargo-build-system)
7095 (arguments
7096 `(#:skip-build? #t
7097 #:cargo-development-inputs
7098 (("rust-rand" ,rust-rand-0.3))))
7099 (home-page "https://github.com/nikomatsakis/dogged")
7100 (synopsis "Persistent vector, similar to Clojure")
7101 (description "This package experimental persistent collections in Rust.
7102 Based on a digit-indexed trie, as in Clojure. Supports @code{push()},
7103 @code{get()}, and @code{get_mut()} as its primitive operations for now. All
7104 O(1)-in-practice, if not in theory, but obviously not as fast as a
7105 non-persistent vector.")
7106 (license (list license:asl2.0 license:expat))))
7107
7108 (define-public rust-dotenv-0.15
7109 (package
7110 (name "rust-dotenv")
7111 (version "0.15.0")
7112 (source
7113 (origin
7114 (method url-fetch)
7115 (uri (crate-uri "dotenv" version))
7116 (file-name (string-append name "-" version ".tar.gz"))
7117 (sha256
7118 (base32
7119 "13ysjx7n2bqxxqydvnnbdwgik7i8n6h5c1qhr9g11x6cxnnhpjbp"))))
7120 (build-system cargo-build-system)
7121 (arguments
7122 `(#:cargo-inputs
7123 (("rust-clap" ,rust-clap-2))
7124 #:cargo-development-inputs
7125 (("rust-tempfile" ,rust-tempfile-3))))
7126 (home-page "https://github.com/dotenv-rs/dotenv")
7127 (synopsis "@code{dotenv} implementation for Rust")
7128 (description "This package provides a @code{dotenv} implementation for
7129 Rust.")
7130 (license license:expat)))
7131
7132 (define-public rust-dotenv-0.10
7133 (package
7134 (inherit rust-dotenv-0.15)
7135 (name "rust-dotenv")
7136 (version "0.10.1")
7137 (source
7138 (origin
7139 (method url-fetch)
7140 (uri (crate-uri "dotenv" version))
7141 (file-name (string-append name "-" version ".tar.gz"))
7142 (sha256
7143 (base32
7144 "1ww0wfnilz4cy789fni06gckm45xsb9fplrih26l4qyi4jxy5w6n"))))
7145 (arguments
7146 `(#:cargo-inputs
7147 (("rust-derive-error-chain" ,rust-derive-error-chain-0.10)
7148 ("rust-error-chain" ,rust-error-chain-0.10)
7149 ("rust-regex" ,rust-regex-0.2))))))
7150
7151 (define-public rust-draw-state-0.8
7152 (package
7153 (name "rust-draw-state")
7154 (version "0.8.0")
7155 (source
7156 (origin
7157 (method url-fetch)
7158 (uri (crate-uri "draw_state" version))
7159 (file-name
7160 (string-append name "-" version ".tar.gz"))
7161 (sha256
7162 (base32
7163 "0lfng4fz9x7bwsmzv9r20ply10w0iid6vfcrhx292s6hw8vrbkrk"))))
7164 (build-system cargo-build-system)
7165 (arguments
7166 `(#:cargo-inputs
7167 (("rust-serde" ,rust-serde-1)
7168 ("rust-bitflags" ,rust-bitflags-1))))
7169 (home-page "https://github.com/gfx-rs/draw_state")
7170 (synopsis "Graphics state blocks for gfx-rs")
7171 (description "Graphics state blocks for gfx-rs.")
7172 (license license:asl2.0)))
7173
7174 (define-public rust-dtoa-0.4
7175 (package
7176 (name "rust-dtoa")
7177 (version "0.4.4")
7178 (source
7179 (origin
7180 (method url-fetch)
7181 (uri (crate-uri "dtoa" version))
7182 (file-name (string-append name "-" version ".crate"))
7183 (sha256
7184 (base32
7185 "0phbm7i0dpn44gzi07683zxaicjap5064w62pidci4fhhciv8mza"))))
7186 (build-system cargo-build-system)
7187 (arguments '(#:skip-build? #t))
7188 (home-page "https://github.com/dtolnay/dtoa")
7189 (synopsis "Fast functions for printing floating-point primitives")
7190 (description "This crate provides fast functions for printing
7191 floating-point primitives to an @code{io::Write}.")
7192 (license (list license:asl2.0
7193 license:expat))))
7194
7195 (define-public rust-dtoa-0.2
7196 (package
7197 (inherit rust-dtoa-0.4)
7198 (name "rust-dtoa")
7199 (version "0.2.2")
7200 (source
7201 (origin
7202 (method url-fetch)
7203 (uri (crate-uri "dtoa" version))
7204 (file-name (string-append name "-" version ".crate"))
7205 (sha256
7206 (base32
7207 "0g96cap6si1g6wi62hsdk2fnj3sf5vd4i97zj6163j8hhnsl3n0d"))))))
7208
7209 (define-public rust-dtoa-short-0.3
7210 (package
7211 (name "rust-dtoa-short")
7212 (version "0.3.2")
7213 (source
7214 (origin
7215 (method url-fetch)
7216 (uri (crate-uri "dtoa-short" version))
7217 (file-name
7218 (string-append name "-" version ".tar.gz"))
7219 (sha256
7220 (base32
7221 "1wkn7ziqffq8hj0a411lgn7674ackzdk734ikp230rmp2f2hn0jr"))))
7222 (build-system cargo-build-system)
7223 (arguments
7224 `(#:cargo-inputs
7225 (("rust-dtoa" ,rust-dtoa-0.4))
7226 #:cargo-development-inputs
7227 (("rust-float-cmp" ,rust-float-cmp-0.3))))
7228 (home-page "https://github.com/upsuper/dtoa-short")
7229 (synopsis "Serialize float number and truncate to certain precision")
7230 (description
7231 "Serialize float number and truncate to certain precision in Rust.")
7232 (license license:mpl2.0)))
7233
7234 (define-public rust-duct-0.13
7235 (package
7236 (name "rust-duct")
7237 (version "0.13.0")
7238 (source
7239 (origin
7240 (method url-fetch)
7241 (uri (crate-uri "duct" version))
7242 (file-name
7243 (string-append name "-" version ".tar.gz"))
7244 (sha256
7245 (base32
7246 "1ir3884i1yznkfdccqqbcb9v5sdpcgxlv41hgzncrqaljv18r0wj"))))
7247 (build-system cargo-build-system)
7248 (arguments
7249 `(#:skip-build? #t
7250 #:cargo-inputs
7251 (("rust-libc" ,rust-libc-0.2)
7252 ("rust-once-cell" ,rust-once-cell-1)
7253 ("rust-os-pipe" ,rust-os-pipe-0.8)
7254 ("rust-shared-child" ,rust-shared-child-0.3))
7255 #:cargo-development-inputs
7256 (("rust-tempdir" ,rust-tempdir-0.3))))
7257 (home-page
7258 "https://github.com/oconnor663/duct.rs")
7259 (synopsis
7260 "Library for running child processes")
7261 (description
7262 "A library for running child processes.")
7263 (license license:expat)))
7264
7265 (define-public rust-dwrote-0.9
7266 (package
7267 (name "rust-dwrote")
7268 (version "0.9.0")
7269 (source
7270 (origin
7271 (method url-fetch)
7272 (uri (crate-uri "dwrote" version))
7273 (file-name
7274 (string-append name "-" version ".tar.gz"))
7275 (sha256
7276 (base32
7277 "03gzl5pd90nlkmwqmbmjmyz47h7wlblbqrwv5a29npnv0ag3dl8b"))))
7278 (build-system cargo-build-system)
7279 (arguments
7280 `(#:skip-build? #t
7281 #:cargo-inputs
7282 (("rust-lazy-static" ,rust-lazy-static-1)
7283 ("rust-libc" ,rust-libc-0.2)
7284 ("rust-serde" ,rust-serde-1)
7285 ("rust-serde-derive" ,rust-serde-derive-1)
7286 ;("rust-wio" ,rust-wio-0.2)
7287 ("rust-winapi" ,rust-winapi-0.3))))
7288 (home-page "https://github.com/servo/dwrote-rs")
7289 (synopsis "Lightweight binding to DirectWrite")
7290 (description
7291 "This package provides lightweight binding to DirectWrite.")
7292 (license license:mpl2.0)))
7293
7294 (define-public rust-edit-distance-2.1
7295 (package
7296 (name "rust-edit-distance")
7297 (version "2.1.0")
7298 (source
7299 (origin
7300 (method url-fetch)
7301 (uri (crate-uri "edit-distance" version))
7302 (file-name
7303 (string-append name "-" version ".tar.gz"))
7304 (sha256
7305 (base32
7306 "0yq3wlmd7ly22qxhfysi77qp31yvpx2ll9waa75bkpiih7rsmfmv"))))
7307 (build-system cargo-build-system)
7308 (arguments
7309 `(#:cargo-development-inputs
7310 (("rust-quickcheck" ,rust-quickcheck-0.9))))
7311 (home-page "https://github.com/febeling/edit-distance")
7312 (synopsis "Levenshtein edit distance between strings")
7313 (description
7314 "Levenshtein edit distance between strings, a measure for similarity.")
7315 (license license:asl2.0)))
7316
7317 (define-public rust-either-1
7318 (package
7319 (name "rust-either")
7320 (version "1.5.3")
7321 (source
7322 (origin
7323 (method url-fetch)
7324 (uri (crate-uri "either" version))
7325 (file-name
7326 (string-append name "-" version ".tar.gz"))
7327 (sha256
7328 (base32
7329 "1qyz1b1acad6w0k5928jw5zaq900zhsk7p8dlcp4hh61w4f6n7xv"))))
7330 (build-system cargo-build-system)
7331 (arguments
7332 `(#:skip-build? #t
7333 #:cargo-inputs (("rust-serde" ,rust-serde-1))))
7334 (home-page "https://github.com/bluss/either")
7335 (synopsis
7336 "Enum @code{Either} with variants @code{Left} and @code{Right}")
7337 (description
7338 "The enum @code{Either} with variants @code{Left} and
7339 @code{Right} is a general purpose sum type with two cases.")
7340 (license (list license:expat license:asl2.0))))
7341
7342 (define-public rust-embed-resource-1.3
7343 (package
7344 (name "rust-embed-resource")
7345 (version "1.3.1")
7346 (source
7347 (origin
7348 (method url-fetch)
7349 (uri (crate-uri "embed-resource" version))
7350 (file-name
7351 (string-append name "-" version ".tar.gz"))
7352 (sha256
7353 (base32
7354 "0v1adsw9mq7gjjjhx4hcjhqppdf4vm0gbcgh7sxirbxh99la9axv"))))
7355 (build-system cargo-build-system)
7356 (arguments
7357 `(#:cargo-inputs
7358 (("rust-vswhom" ,rust-vswhom-0.1)
7359 ("rust-winreg" ,rust-winreg-0.6))))
7360 (home-page "https://github.com/nabijaczleweli/rust-embed-resource")
7361 (synopsis
7362 "Cargo library to handle compilation and inclusion of Windows resources")
7363 (description
7364 "This package provides a Cargo library to handle compilation and
7365 inclusion of Windows resources in the most resilient fashion imaginable.")
7366 (license license:expat)))
7367
7368 (define-public rust-ena-0.14
7369 (package
7370 (name "rust-ena")
7371 (version "0.14.0")
7372 (source
7373 (origin
7374 (method url-fetch)
7375 (uri (crate-uri "ena" version))
7376 (file-name (string-append name "-" version ".tar.gz"))
7377 (sha256
7378 (base32 "1hrnkx2swbczn0jzpscxxipx7jcxhg6sf9vk911ff91wm6a2nh6p"))))
7379 (build-system cargo-build-system)
7380 (arguments
7381 `(#:skip-build? #t
7382 #:cargo-inputs
7383 (("rust-dogged" ,rust-dogged-0.2)
7384 ("rust-log" ,rust-log-0.4)
7385 ("rust-petgraph" ,rust-petgraph-0.4))))
7386 (home-page "https://github.com/rust-lang/ena")
7387 (synopsis "Union-find, congruence closure, and other unification code")
7388 (description "This package provides an implementation of union-find /
7389 congruence-closure in Rust. It was extracted from rustc for independent
7390 experimentation.")
7391 (license (list license:expat license:asl2.0))))
7392
7393 (define-public rust-ena-0.13
7394 (package
7395 (inherit rust-ena-0.14)
7396 (name "rust-ena")
7397 (version "0.13.1")
7398 (source
7399 (origin
7400 (method url-fetch)
7401 (uri (crate-uri "ena" version))
7402 (file-name (string-append name "-" version ".tar.gz"))
7403 (sha256
7404 (base32 "0dkggq0qwv140y2kjfd4spp77zi3v7vnpm4bfy7s7r4cla7xqi49"))))))
7405
7406 (define-public rust-encode-unicode-0.3
7407 (package
7408 (name "rust-encode-unicode")
7409 (version "0.3.6")
7410 (source
7411 (origin
7412 (method url-fetch)
7413 (uri (crate-uri "encode_unicode" version))
7414 (file-name
7415 (string-append name "-" version ".tar.gz"))
7416 (sha256
7417 (base32
7418 "07w3vzrhxh9lpjgsg2y5bwzfar2aq35mdznvcp3zjl0ssj7d4mx3"))))
7419 (build-system cargo-build-system)
7420 (arguments
7421 `(#:skip-build? #t
7422 #:cargo-inputs
7423 (("rust-ascii" ,rust-ascii-1.0)
7424 ("rust-clippy" ,rust-clippy-0.0))
7425 #:cargo-development-inputs
7426 (("rust-lazy-static" ,rust-lazy-static-1))))
7427 (home-page "https://github.com/tormol/encode_unicode")
7428 (synopsis
7429 "UTF-8 and UTF-16 support for char, u8 and u16")
7430 (description
7431 "UTF-8 and UTF-16 character types, iterators and related methods for
7432 char, u8 and u16.")
7433 (license (list license:expat license:asl2.0))))
7434
7435 (define-public rust-encoding-0.2
7436 (package
7437 (name "rust-encoding")
7438 (version "0.2.33")
7439 (source
7440 (origin
7441 (method url-fetch)
7442 (uri (crate-uri "encoding" version))
7443 (file-name
7444 (string-append name "-" version ".tar.gz"))
7445 (sha256
7446 (base32
7447 "1v1ndmkarh9z3n5hk53da4z56hgk9wa5kcsm7cnx345raqw983bb"))))
7448 (build-system cargo-build-system)
7449 (arguments
7450 `(#:skip-build? #t
7451 #:cargo-inputs
7452 (("rust-encoding-index-japanese"
7453 ,rust-encoding-index-japanese-1.20141219)
7454 ("rust-encoding-index-korean"
7455 ,rust-encoding-index-korean-1.20141219)
7456 ("rust-encoding-index-simpchinese"
7457 ,rust-encoding-index-simpchinese-1.20141219)
7458 ("rust-encoding-index-singlebyte"
7459 ,rust-encoding-index-singlebyte-1.20141219)
7460 ("rust-encoding-index-tradchinese"
7461 ,rust-encoding-index-tradchinese-1.20141219))
7462 #:cargo-development-inputs
7463 (("rust-getopts" ,rust-getopts-0.2))))
7464 (home-page
7465 "https://github.com/lifthrasiir/rust-encoding")
7466 (synopsis "Character encoding support for Rust")
7467 (description
7468 "Character encoding support for Rust.")
7469 (license license:expat)))
7470
7471 (define-public rust-encoding-index-japanese-1.20141219
7472 (package
7473 (name "rust-encoding-index-japanese")
7474 (version "1.20141219.5")
7475 (source
7476 (origin
7477 (method url-fetch)
7478 (uri (crate-uri "encoding-index-japanese" version))
7479 (file-name
7480 (string-append name "-" version ".tar.gz"))
7481 (sha256
7482 (base32
7483 "148c1lmd640p1d7fzk0nv7892mbyavvwddgqvcsm78798bzv5s04"))))
7484 (build-system cargo-build-system)
7485 (arguments
7486 `(#:skip-build? #t
7487 #:cargo-inputs
7488 (("rust-encoding-index-tests" ,rust-encoding-index-tests-0.1))))
7489 (home-page "https://github.com/lifthrasiir/rust-encoding")
7490 (synopsis "Index tables for Japanese character encodings")
7491 (description
7492 "Index tables for Japanese character encodings.")
7493 (license license:cc0)))
7494
7495 (define-public rust-encoding-index-korean-1.20141219
7496 (package
7497 (name "rust-encoding-index-korean")
7498 (version "1.20141219.5")
7499 (source
7500 (origin
7501 (method url-fetch)
7502 (uri (crate-uri "encoding-index-korean" version))
7503 (file-name
7504 (string-append name "-" version ".tar.gz"))
7505 (sha256
7506 (base32
7507 "10cxabp5ppygbq4y6y680856zl9zjvq7ahpiw8zj3fmwwsw3zhsd"))))
7508 (build-system cargo-build-system)
7509 (arguments
7510 `(#:skip-build? #t
7511 #:cargo-inputs
7512 (("rust-encoding-index-tests" ,rust-encoding-index-tests-0.1))))
7513 (home-page "https://github.com/lifthrasiir/rust-encoding")
7514 (synopsis "Index tables for Korean character encodings")
7515 (description
7516 "Index tables for Korean character encodings.")
7517 (license license:cc0)))
7518
7519 (define-public rust-encoding-index-simpchinese-1.20141219
7520 (package
7521 (name "rust-encoding-index-simpchinese")
7522 (version "1.20141219.5")
7523 (source
7524 (origin
7525 (method url-fetch)
7526 (uri (crate-uri "encoding-index-simpchinese" version))
7527 (file-name
7528 (string-append name "-" version ".tar.gz"))
7529 (sha256
7530 (base32
7531 "1xria2i7mc5dqdrpqxasdbxv1qx46jjbm53if3y1i4cvj2a72ynq"))))
7532 (build-system cargo-build-system)
7533 (arguments
7534 `(#:skip-build? #t
7535 #:cargo-inputs
7536 (("rust-encoding-index-tests" ,rust-encoding-index-tests-0.1))))
7537 (home-page "https://github.com/lifthrasiir/rust-encoding")
7538 (synopsis "Index tables for simplified Chinese character encodings")
7539 (description
7540 "Index tables for simplified Chinese character encodings.")
7541 (license license:cc0)))
7542
7543 (define-public rust-encoding-index-singlebyte-1.20141219
7544 (package
7545 (name "rust-encoding-index-singlebyte")
7546 (version "1.20141219.5")
7547 (source
7548 (origin
7549 (method url-fetch)
7550 (uri (crate-uri "encoding-index-singlebyte" version))
7551 (file-name
7552 (string-append name "-" version ".tar.gz"))
7553 (sha256
7554 (base32
7555 "0jp85bz2pprzvg9m95w4q0vibh67b6w3bx35lafay95jzyndal9k"))))
7556 (build-system cargo-build-system)
7557 (arguments
7558 `(#:skip-build? #t
7559 #:cargo-inputs
7560 (("rust-encoding-index-tests" ,rust-encoding-index-tests-0.1))))
7561 (home-page "https://github.com/lifthrasiir/rust-encoding")
7562 (synopsis "Index tables for various single-byte character encodings")
7563 (description
7564 "Index tables for various single-byte character encodings.")
7565 (license license:cc0)))
7566
7567 (define-public rust-encoding-index-tests-0.1
7568 (package
7569 (name "rust-encoding-index-tests")
7570 (version "0.1.4")
7571 (source
7572 (origin
7573 (method url-fetch)
7574 (uri (crate-uri "encoding_index_tests" version))
7575 (file-name
7576 (string-append name "-" version ".tar.gz"))
7577 (sha256
7578 (base32
7579 "0s85y091gl17ixass49bzaivng7w8p82p6nyvz2r3my9w4mxhim2"))))
7580 (build-system cargo-build-system)
7581 (arguments `(#:skip-build? #t))
7582 (home-page "https://github.com/lifthrasiir/rust-encoding")
7583 (synopsis
7584 "Macros used to test index tables for character encodings")
7585 (description
7586 "Helper macros used to test index tables for character
7587 encodings.")
7588 (license license:cc0)))
7589
7590 (define-public rust-encoding-index-tradchinese-1.20141219
7591 (package
7592 (name "rust-encoding-index-tradchinese")
7593 (version "1.20141219.5")
7594 (source
7595 (origin
7596 (method url-fetch)
7597 (uri (crate-uri "encoding-index-tradchinese" version))
7598 (file-name
7599 (string-append name "-" version ".tar.gz"))
7600 (sha256
7601 (base32
7602 "060ci4iz6xfvzk38syfbjvs7pix5hch3mvxkksswmqwcd3aj03px"))))
7603 (build-system cargo-build-system)
7604 (arguments
7605 `(#:skip-build? #t
7606 #:cargo-inputs
7607 (("rust-encoding-index-tests" ,rust-encoding-index-tests-0.1))))
7608 (home-page "https://github.com/lifthrasiir/rust-encoding")
7609 (synopsis "Index tables for traditional Chinese character encodings")
7610 (description
7611 "Index tables for traditional Chinese character encodings.")
7612 (license license:cc0)))
7613
7614 (define-public rust-encoding-rs-0.8
7615 (package
7616 (name "rust-encoding-rs")
7617 (version "0.8.17")
7618 (source
7619 (origin
7620 (method url-fetch)
7621 (uri (crate-uri "encoding_rs" version))
7622 (file-name
7623 (string-append name "-" version ".tar.gz"))
7624 (sha256
7625 (base32
7626 "1v902qqnbd37vdq4rjvp6k05wmghrasfdcjy30gp1xpjg5f7hma1"))))
7627 (build-system cargo-build-system)
7628 (arguments
7629 `(#:skip-build? #t
7630 #:cargo-inputs
7631 (("rust-cfg-if" ,rust-cfg-if-0.1)
7632 ("rust-packed-simd" ,rust-packed-simd-0.3)
7633 ("rust-serde" ,rust-serde-1))
7634 #:cargo-development-inputs
7635 (("rust-bincode" ,rust-bincode-1)
7636 ("rust-serde-derive" ,rust-serde-derive-1)
7637 ("rust-serde-json" ,rust-serde-json-1))))
7638 (home-page "https://docs.rs/encoding_rs/")
7639 (synopsis "Gecko-oriented implementation of the Encoding Standard")
7640 (description
7641 "This package provides a Gecko-oriented implementation of the Encoding
7642 Standard.")
7643 (license (list license:asl2.0 license:expat))))
7644
7645 (define-public rust-encoding-rs-io-0.1
7646 (package
7647 (name "rust-encoding-rs-io")
7648 (version "0.1.7")
7649 (source
7650 (origin
7651 (method url-fetch)
7652 (uri (crate-uri "encoding_rs_io" version))
7653 (file-name
7654 (string-append name "-" version ".tar.gz"))
7655 (sha256
7656 (base32
7657 "10ra4l688cdadd8h1lsbahld1zbywnnqv68366mbhamn3xjwbhqw"))))
7658 (build-system cargo-build-system)
7659 (arguments
7660 `(#:cargo-inputs
7661 (("rust-encoding-rs" ,rust-encoding-rs-0.8))))
7662 (home-page "https://github.com/BurntSushi/encoding_rs_io")
7663 (synopsis "Streaming transcoding for encoding_rs")
7664 (description
7665 "Streaming transcoding for encoding_rs.")
7666 (license (list license:asl2.0 license:expat))))
7667
7668 (define-public rust-enum-as-inner-0.3
7669 (package
7670 (name "rust-enum-as-inner")
7671 (version "0.3.3")
7672 (source
7673 (origin
7674 (method url-fetch)
7675 (uri (crate-uri "enum-as-inner" version))
7676 (file-name (string-append name "-" version ".tar.gz"))
7677 (sha256
7678 (base32
7679 "15gmpgywijda93lkq7hf2y53h66sqkhzabzbxich288xm6b00pvw"))))
7680 (build-system cargo-build-system)
7681 (arguments
7682 `(#:cargo-inputs
7683 (("rust-heck" ,rust-heck-0.3)
7684 ("rust-proc-macro2" ,rust-proc-macro2-1)
7685 ("rust-quote" ,rust-quote-1)
7686 ("rust-syn" ,rust-syn-1))))
7687 (home-page "https://github.com/bluejekyll/enum-as-inner")
7688 (synopsis "Proc-macro for deriving inner field accessor functions on enums")
7689 (description "This package provides a proc-macro for deriving inner field
7690 accessor functions on enums.")
7691 (license (list license:expat license:asl2.0))))
7692
7693 (define-public rust-enum-as-inner-0.2
7694 (package
7695 (inherit rust-enum-as-inner-0.3)
7696 (name "rust-enum-as-inner")
7697 (version "0.2.1")
7698 (source
7699 (origin
7700 (method url-fetch)
7701 (uri (crate-uri "enum-as-inner" version))
7702 (file-name
7703 (string-append name "-" version ".tar.gz"))
7704 (sha256
7705 (base32
7706 "0zg3h7k3g1z7a9ayqy63sk302d4dg5g2h274ddv80mj4jxn2cn1x"))))
7707 (arguments
7708 `(#:cargo-inputs
7709 (("rust-proc-macro2" ,rust-proc-macro2-0.4)
7710 ("rust-quote" ,rust-quote-0.6)
7711 ("rust-syn" ,rust-syn-0.15))))))
7712
7713 (define-public rust-env-logger-0.7
7714 (package
7715 (name "rust-env-logger")
7716 (version "0.7.1")
7717 (source
7718 (origin
7719 (method url-fetch)
7720 (uri (crate-uri "env_logger" version))
7721 (file-name
7722 (string-append name "-" version ".tar.gz"))
7723 (sha256
7724 (base32
7725 "0djx8h8xfib43g5w94r1m1mkky5spcw4wblzgnhiyg5vnfxknls4"))))
7726 (build-system cargo-build-system)
7727 (arguments
7728 `(#:skip-build? #t
7729 #:cargo-inputs
7730 (("rust-atty" ,rust-atty-0.2)
7731 ("rust-humantime" ,rust-humantime-1)
7732 ("rust-log" ,rust-log-0.4)
7733 ("rust-regex" ,rust-regex-1)
7734 ("rust-termcolor" ,rust-termcolor-1))))
7735 (home-page "https://github.com/sebasmagri/env_logger/")
7736 (synopsis "Logging implementation for @code{log}")
7737 (description
7738 "This package provides a logging implementation for @code{log} which
7739 is configured via an environment variable.")
7740 (license (list license:expat license:asl2.0))))
7741
7742 (define-public rust-env-logger-0.6
7743 (package
7744 (inherit rust-env-logger-0.7)
7745 (name "rust-env-logger")
7746 (version "0.6.2")
7747 (source
7748 (origin
7749 (method url-fetch)
7750 (uri (crate-uri "env_logger" version))
7751 (file-name
7752 (string-append name "-" version ".tar.gz"))
7753 (sha256
7754 (base32
7755 "1lx2s5nk96xx4i3m4zc4ghqgi8kb07dsnyiv8jk2clhax42dxz5a"))))
7756 (arguments
7757 `(#:cargo-inputs
7758 (("rust-atty" ,rust-atty-0.2)
7759 ("rust-humantime" ,rust-humantime-1)
7760 ("rust-log" ,rust-log-0.4)
7761 ("rust-regex" ,rust-regex-1)
7762 ("rust-termcolor" ,rust-termcolor-1))))))
7763
7764 (define-public rust-env-logger-0.5
7765 (package
7766 (inherit rust-env-logger-0.7)
7767 (name "rust-env-logger")
7768 (version "0.5.13")
7769 (source
7770 (origin
7771 (method url-fetch)
7772 (uri (crate-uri "env-logger" version))
7773 (file-name
7774 (string-append name "-" version ".tar.gz"))
7775 (sha256
7776 (base32
7777 "0f0c4i4c65jh8lci0afl5yg74ac0lbnpxcp81chj114zwg9a9c0m"))))
7778 (arguments
7779 `(#:cargo-inputs
7780 (("rust-atty" ,rust-atty-0.2)
7781 ("rust-humantime" ,rust-humantime-1)
7782 ("rust-log" ,rust-log-0.4)
7783 ("rust-regex" ,rust-regex-1)
7784 ("rust-termcolor" ,rust-termcolor-1))))))
7785
7786 (define-public rust-env-logger-0.4
7787 (package
7788 (inherit rust-env-logger-0.7)
7789 (name "rust-env-logger")
7790 (version "0.4.3")
7791 (source
7792 (origin
7793 (method url-fetch)
7794 (uri (crate-uri "env-logger" version))
7795 (file-name
7796 (string-append name "-" version ".tar.gz"))
7797 (sha256
7798 (base32
7799 "0nydz2lidsvx9gs0v2zcz68rzqx8in7fzmiprgsrhqh17vkj3prx"))))
7800 (build-system cargo-build-system)
7801 (arguments
7802 `(#:skip-build? #t
7803 #:cargo-inputs
7804 (("rust-log" ,rust-log-0.3)
7805 ("rust-regex" ,rust-regex-0.2))))))
7806
7807 (define-public rust-env-logger-0.3
7808 (package
7809 (inherit rust-env-logger-0.7)
7810 (name "rust-env-logger")
7811 (version "0.3.5")
7812 (source
7813 (origin
7814 (method url-fetch)
7815 (uri (crate-uri "env_logger" version))
7816 (file-name (string-append name "-" version ".tar.gz"))
7817 (sha256
7818 (base32
7819 "0bvcjgkw4s3k1rd7glpflgc8s9a393zjd6jfdgvs8gjvwj0dgaqm"))))
7820 (arguments
7821 `(#:skip-build? #t ; Cannot find dependent crates.
7822 #:cargo-inputs
7823 (("rust-regex" ,rust-regex-0.1)
7824 ("rust-log" ,rust-log-0.3))))))
7825
7826 (define-public rust-environment-0.1
7827 (package
7828 (name "rust-environment")
7829 (version "0.1.1")
7830 (source
7831 (origin
7832 (method url-fetch)
7833 (uri (crate-uri "environment" version))
7834 (file-name (string-append name "-" version ".tar.gz"))
7835 (sha256
7836 (base32 "1vh32mcxf3z8xaibwv751zj14d08nh7iwk1vqdj90rkq17i18jqz"))))
7837 (build-system cargo-build-system)
7838 (arguments
7839 `(#:tests? #f)) ;; 3/6 tests fail due to missing file
7840 (home-page "https://github.com/Freyskeyd/environment")
7841 (synopsis "Helper to deal with environment variables")
7842 (description "This package provides helper to deal with environment
7843 variables.")
7844 (license (list license:expat license:asl2.0))))
7845
7846 (define-public rust-envmnt-0.6
7847 (package
7848 (name "rust-envmnt")
7849 (version "0.6.0")
7850 (source
7851 (origin
7852 (method url-fetch)
7853 (uri (crate-uri "envmnt" version))
7854 (file-name
7855 (string-append name "-" version ".tar.gz"))
7856 (sha256
7857 (base32
7858 "12zkq3p999bypyxmjnpiqw9r3hmifb3bcikd7j3as1fdcbq01fyl"))))
7859 (build-system cargo-build-system)
7860 (arguments
7861 `(#:skip-build? #t
7862 #:cargo-inputs
7863 (("rust-indexmap" ,rust-indexmap-1))))
7864 (home-page "https://github.com/sagiegurari/envmnt")
7865 (synopsis "Environment variables utility functions")
7866 (description
7867 "Environment variables utility functions.")
7868 (license license:asl2.0)))
7869
7870 (define-public rust-erased-serde-0.3
7871 (package
7872 (name "rust-erased-serde")
7873 (version "0.3.11")
7874 (source
7875 (origin
7876 (method url-fetch)
7877 (uri (crate-uri "erased-serde" version))
7878 (file-name
7879 (string-append name "-" version ".tar.gz"))
7880 (sha256
7881 (base32
7882 "1lgkpkk7nx6f24gmr3psyj8d2avc9701r9jyw1i4ssp10lbnv2yq"))))
7883 (build-system cargo-build-system)
7884 (arguments
7885 `(#:skip-build? #t
7886 #:cargo-inputs
7887 (("rust-serde" ,rust-serde-1))
7888 #:cargo-development-inputs
7889 (;("rust-serde-cbor" ,rust-serde-cbor-0.9)
7890 ("rust-serde-derive" ,rust-serde-derive-1)
7891 ("rust-serde-json" ,rust-serde-json-1))))
7892 (home-page "https://github.com/dtolnay/erased-serde")
7893 (synopsis "Type-erased Serialize and Serializer traits")
7894 (description
7895 "Type-erased Serialize and Serializer traits.")
7896 (license (list license:asl2.0 license:expat))))
7897
7898 (define-public rust-err-derive-0.2
7899 (package
7900 (name "rust-err-derive")
7901 (version "0.2.3")
7902 (source
7903 (origin
7904 (method url-fetch)
7905 (uri (crate-uri "err-derive" version))
7906 (file-name
7907 (string-append name "-" version ".tar.gz"))
7908 (sha256
7909 (base32
7910 "0v6wxrshfpg7mwaxzq8jwxbfiyn7zk5rlm4m8kkrwh7dpf8nrx42"))))
7911 (build-system cargo-build-system)
7912 (arguments
7913 `(#:cargo-inputs
7914 (("rust-synstructure" ,rust-synstructure-0.12)
7915 ("rust-skeptic" ,rust-skeptic-0.13)
7916 ("rust-proc-macro-error" ,rust-proc-macro-error-0.4)
7917 ("rust-proc-macro2" ,rust-proc-macro2-1)
7918 ("rust-syn" ,rust-syn-1)
7919 ("rust-rustversion" ,rust-rustversion-1)
7920 ("rust-quote" ,rust-quote-1))
7921 #:cargo-development-inputs
7922 (("rust-skeptic" ,rust-skeptic-0.13))))
7923 (home-page "https://gitlab.com/torkleyy/err-derive")
7924 (synopsis "Derive macro for `std::error::Error`")
7925 (description
7926 "Derive macro for @code{std::error::Error}.")
7927 (license (list license:expat license:asl2.0))))
7928
7929 (define-public rust-errno-0.2
7930 (package
7931 (name "rust-errno")
7932 (version "0.2.4")
7933 (source
7934 (origin
7935 (method url-fetch)
7936 (uri (crate-uri "errno" version))
7937 (file-name
7938 (string-append name "-" version ".tar.gz"))
7939 (sha256
7940 (base32
7941 "0kn8mlygxxr02cm97401nppd2dbkwsalpcbai67rh6yh3rh73862"))))
7942 (build-system cargo-build-system)
7943 (arguments
7944 `(#:skip-build? #t
7945 #:cargo-inputs
7946 (("rust-errno-dragonfly" ,rust-errno-dragonfly-0.1)
7947 ("rust-libc" ,rust-libc-0.2)
7948 ("rust-winapi" ,rust-winapi-0.3))))
7949 (home-page "https://github.com/lambda-fairy/rust-errno")
7950 (synopsis "Cross-platform interface to the @code{errno} variable")
7951 (description
7952 "Cross-platform interface to the @code{errno} variable.")
7953 (license (list license:asl2.0 license:expat))))
7954
7955 (define-public rust-errno-dragonfly-0.1
7956 (package
7957 (name "rust-errno-dragonfly")
7958 (version "0.1.1")
7959 (source
7960 (origin
7961 (method url-fetch)
7962 (uri (crate-uri "errno-dragonfly" version))
7963 (file-name
7964 (string-append name "-" version ".tar.gz"))
7965 (sha256
7966 (base32
7967 "0rshlc00nv45f14v2l1w0ma2nf1jg5j7q9pvw7hh018r6r73bjhl"))))
7968 (build-system cargo-build-system)
7969 (arguments
7970 `(#:skip-build? #t
7971 #:cargo-inputs
7972 (("rust-libc" ,rust-libc-0.2)
7973 ("rust-gcc" ,rust-gcc-0.3))))
7974 (home-page "https://github.com/mneumann/errno-dragonfly-rs")
7975 (synopsis "Exposes errno functionality to stable Rust on DragonFlyBSD")
7976 (description
7977 "Exposes errno functionality to stable Rust on DragonFlyBSD.")
7978 (license license:expat)))
7979
7980 (define-public rust-error-chain-0.12
7981 (package
7982 (name "rust-error-chain")
7983 (version "0.12.2")
7984 (source
7985 (origin
7986 (method url-fetch)
7987 (uri (crate-uri "error-chain" version))
7988 (file-name
7989 (string-append name "-" version ".tar.gz"))
7990 (sha256
7991 (base32
7992 "1ka5y0fmymxzx3gz2yrd7rpz2i555m1iw4fpmcggpzcgr1n10wfk"))))
7993 (build-system cargo-build-system)
7994 (arguments
7995 `(#:skip-build? #t
7996 #:cargo-inputs
7997 (("rust-backtrace" ,rust-backtrace-0.3)
7998 ("rust-version-check" ,rust-version-check-0.9))))
7999 (home-page "https://github.com/rust-lang-nursery/error-chain")
8000 (synopsis "Yet another error boilerplate library")
8001 (description
8002 "Yet another error boilerplate library.")
8003 (license (list license:asl2.0 license:expat))))
8004
8005 (define-public rust-error-chain-0.11
8006 (package
8007 (inherit rust-error-chain-0.12)
8008 (name "rust-error-chain")
8009 (version "0.11.0")
8010 (source
8011 (origin
8012 (method url-fetch)
8013 (uri (crate-uri "error-chain" version))
8014 (file-name
8015 (string-append name "-" version ".tar.gz"))
8016 (sha256
8017 (base32
8018 "1wykkr0naizbkwxjwia1rch8xhwvgij9khqvjzs07mrmqifislgz"))))
8019 (arguments
8020 `(#:tests? #f ; Not all test files included.
8021 #:cargo-inputs
8022 (("rust-backtrace" ,rust-backtrace-0.3))))))
8023
8024 (define-public rust-error-chain-0.10
8025 (package
8026 (inherit rust-error-chain-0.11)
8027 (name "rust-error-chain")
8028 (version "0.10.0")
8029 (source
8030 (origin
8031 (method url-fetch)
8032 (uri (crate-uri "error-chain" version))
8033 (file-name
8034 (string-append name "-" version ".tar.gz"))
8035 (sha256
8036 (base32
8037 "1y1gyj9g5c3k1nzkvxrgry8v9k86kcc585mczrm3qz019s35shyr"))))
8038 (arguments
8039 `(#:cargo-inputs
8040 (("rust-backtrace" ,rust-backtrace-0.3))))))
8041
8042 (define-public rust-escargot-0.5
8043 (package
8044 (name "rust-escargot")
8045 (version "0.5.0")
8046 (source
8047 (origin
8048 (method url-fetch)
8049 (uri (crate-uri "escargot" version))
8050 (file-name
8051 (string-append name "-" version ".tar.gz"))
8052 (sha256
8053 (base32
8054 "0vd9phbpd6yrnsksn2as8flvq8ykzvck2zlz143xpp42qaz9dkvl"))))
8055 (build-system cargo-build-system)
8056 (arguments
8057 `(#:tests? #f ; not all test files included
8058 #:cargo-inputs
8059 (("rust-lazy-static" ,rust-lazy-static-1)
8060 ("rust-log" ,rust-log-0.4)
8061 ("rust-serde" ,rust-serde-1)
8062 ("rust-serde-json" ,rust-serde-json-1))
8063 #:cargo-development-inputs
8064 (("rust-assert-fs" ,rust-assert-fs-0.11))))
8065 (home-page "https://github.com/crate-ci/escargot")
8066 (synopsis "Cargo API written in Paris")
8067 (description "Cargo API written in Paris.")
8068 (license (list license:expat license:asl2.0))))
8069
8070 (define-public rust-expat-sys-2.1
8071 (package
8072 (name "rust-expat-sys")
8073 (version "2.1.6")
8074 (source
8075 (origin
8076 (method url-fetch)
8077 (uri (crate-uri "expat-sys" version))
8078 (file-name
8079 (string-append name "-" version ".tar.gz"))
8080 (sha256
8081 (base32
8082 "1yj5pqynds776ay8wg9mhi3hvna4fv7vf244yr1864r0i5r1k3v5"))
8083 (modules '((guix build utils)))
8084 (snippet
8085 '(begin (delete-file-recursively "expat") #t))))
8086 (build-system cargo-build-system)
8087 (arguments
8088 `(#:cargo-inputs
8089 (("rust-cmake" ,rust-cmake-0.1)
8090 ("rust-pkg-config" ,rust-pkg-config-0.3))))
8091 (native-inputs
8092 `(("pkg-config" ,pkg-config)))
8093 (inputs
8094 `(("expat" ,expat)))
8095 (home-page "http://www.libexpat.org/")
8096 (synopsis "XML parser library written in C")
8097 (description "XML parser library written in C")
8098 (license license:expat)))
8099
8100 (define-public rust-expectest-0.9
8101 (package
8102 (name "rust-expectest")
8103 (version "0.9.2")
8104 (source
8105 (origin
8106 (method url-fetch)
8107 (uri (crate-uri "expectest" version))
8108 (file-name (string-append name "-" version ".tar.gz"))
8109 (sha256
8110 (base32 "0f24q2a53x7sfmmrqjbwbk7pahzwkpd829fcr023kb7q5xnd6z4g"))))
8111 (build-system cargo-build-system)
8112 (arguments
8113 `(#:cargo-inputs
8114 (("rust-num-traits" ,rust-num-traits-0.1))))
8115 (home-page "https://github.com/zummenix/expectest")
8116 (synopsis "Matchers and matcher functions for unit testing")
8117 (description "This crate provides matchers and matcher functions for unit
8118 testing.")
8119 (license (list license:expat license:asl2.0))))
8120
8121 (define-public rust-fake-simd-0.1
8122 (package
8123 (name "rust-fake-simd")
8124 (version "0.1.2")
8125 (source
8126 (origin
8127 (method url-fetch)
8128 (uri (crate-uri "fake-simd" version))
8129 (file-name
8130 (string-append name "-" version ".tar.gz"))
8131 (sha256
8132 (base32
8133 "1vfylvk4va2ivqx85603lyqqp0zk52cgbs4n5nfbbbqx577qm2p8"))))
8134 (build-system cargo-build-system)
8135 (arguments `(#:skip-build? #t))
8136 (home-page "https://github.com/RustCrypto/utils")
8137 (synopsis "Crate for mimicking simd crate on stable Rust")
8138 (description
8139 "Crate for mimicking simd crate on stable Rust.")
8140 (license (list license:asl2.0 license:expat))))
8141
8142 (define-public rust-failure-0.1
8143 (package
8144 (name "rust-failure")
8145 (version "0.1.7")
8146 (source
8147 (origin
8148 (method url-fetch)
8149 (uri (crate-uri "failure" version))
8150 (file-name
8151 (string-append name "-" version ".tar.gz"))
8152 (sha256
8153 (base32
8154 "0js6i6mb42q1g6q3csfbmi6q40s64k96705xbim0d8zg44j9qlmq"))))
8155 (build-system cargo-build-system)
8156 (arguments
8157 `(#:skip-build? #t
8158 #:cargo-inputs
8159 (("rust-backtrace" ,rust-backtrace-0.3)
8160 ("rust-failure-derive" ,rust-failure-derive-0.1))))
8161 (home-page "https://rust-lang-nursery.github.io/failure/")
8162 (synopsis "Experimental error handling abstraction")
8163 (description
8164 "Experimental error handling abstraction.")
8165 (license (list license:asl2.0 license:expat))))
8166
8167 (define-public rust-failure-derive-0.1
8168 (package
8169 (name "rust-failure-derive")
8170 (version "0.1.7")
8171 (source
8172 (origin
8173 (method url-fetch)
8174 (uri (crate-uri "failure_derive" version))
8175 (file-name
8176 (string-append name "-" version ".tar.gz"))
8177 (sha256
8178 (base32
8179 "0cfjz0c9szqpxn43b2r722p6m3swzxj7aj6xhqw23ml7h8y762h3"))))
8180 (build-system cargo-build-system)
8181 (arguments
8182 `(#:skip-build? #t
8183 #:cargo-inputs
8184 (("rust-proc-macro2" ,rust-proc-macro2-1)
8185 ("rust-quote" ,rust-quote-1)
8186 ("rust-syn" ,rust-syn-1)
8187 ("rust-synstructure" ,rust-synstructure-0.12))
8188 #:cargo-development-inputs
8189 (("rust-failure" ,rust-failure-0.1))))
8190 (home-page "https://rust-lang-nursery.github.io/failure/")
8191 (synopsis "Derives for the failure crate")
8192 (description "Derives for the failure crate.")
8193 (license (list license:asl2.0 license:expat))))
8194
8195 (define-public rust-fallible-iterator-0.2
8196 (package
8197 (name "rust-fallible-iterator")
8198 (version "0.2.0")
8199 (source
8200 (origin
8201 (method url-fetch)
8202 (uri (crate-uri "fallible-iterator" version))
8203 (file-name (string-append name "-" version ".crate"))
8204 (sha256
8205 (base32
8206 "1xq759lsr8gqss7hva42azn3whgrbrs2sd9xpn92c5ickxm1fhs4"))))
8207 (build-system cargo-build-system)
8208 (home-page "https://github.com/sfackler/rust-fallible-iterator")
8209 (synopsis "Fallible iterator traits")
8210 (description "If the @code{std} or @code{alloc} features are enabled, this
8211 crate provides implementations for @code{Box}, @code{Vec}, @code{BTreeMap}, and
8212 @code{BTreeSet}. If the @code{std} feature is enabled, this crate additionally
8213 provides implementations for @code{HashMap} and @code{HashSet}.")
8214 (license (list license:asl2.0
8215 license:expat))))
8216
8217 (define-public rust-fallible-streaming-iterator-0.1
8218 (package
8219 (name "rust-fallible-streaming-iterator")
8220 (version "0.1.9")
8221 (source
8222 (origin
8223 (method url-fetch)
8224 (uri (crate-uri "fallible-streaming-iterator" version))
8225 (file-name (string-append name "-" version ".tar.gz"))
8226 (sha256
8227 (base32 "0nj6j26p71bjy8h42x6jahx1hn0ng6mc2miwpgwnp8vnwqf4jq3k"))))
8228 (build-system cargo-build-system)
8229 (home-page "https://github.com/sfackler/fallible-streaming-iterator")
8230 (synopsis "Fallible streaming iteration")
8231 (description "Fallible streaming iteration")
8232 (license (list license:expat license:asl2.0))))
8233
8234 (define-public rust-fern-0.6
8235 (package
8236 (name "rust-fern")
8237 (version "0.6.0")
8238 (source
8239 (origin
8240 (method url-fetch)
8241 (uri (crate-uri "fern" version))
8242 (file-name
8243 (string-append name "-" version ".tar.gz"))
8244 (sha256
8245 (base32
8246 "0rghkbmpm7ckchd2fr2ifahprc7ll3qs0fbwsspsgj6cy0h4i6lc"))))
8247 (build-system cargo-build-system)
8248 (arguments
8249 `(#:cargo-inputs
8250 (("rust-chrono" ,rust-chrono-0.4)
8251 ("rust-colored" ,rust-colored-1)
8252 ("rust-libc" ,rust-libc-0.2)
8253 ("rust-log" ,rust-log-0.4)
8254 ("rust-reopen" ,rust-reopen-0.3)
8255 ("rust-syslog" ,rust-syslog-3.3)
8256 ("rust-syslog" ,rust-syslog-4.0))
8257 #:cargo-development-inputs
8258 (("rust-chrono" ,rust-chrono-0.4)
8259 ("rust-clap" ,rust-clap-2)
8260 ("rust-tempdir" ,rust-tempdir-0.3))))
8261 (home-page "https://github.com/daboross/fern")
8262 (synopsis "Simple, efficient logging")
8263 (description
8264 "This package provides a simple, efficient logging system for Rust.")
8265 (license license:expat)))
8266
8267 (define-public rust-fern-0.5
8268 (package
8269 (inherit rust-fern-0.6)
8270 (name "rust-fern")
8271 (version "0.5.9")
8272 (source
8273 (origin
8274 (method url-fetch)
8275 (uri (crate-uri "fern" version))
8276 (file-name
8277 (string-append name "-" version ".tar.gz"))
8278 (sha256
8279 (base32
8280 "1anslk0hx9an4ypcaxqff080hgbcxm7ji7d4qf4f6qx1mkav16p6"))))
8281 (arguments
8282 `(#:cargo-inputs
8283 (("rust-libc" ,rust-libc-0.2)
8284 ("rust-reopen" ,rust-reopen-0.3)
8285 ("rust-log" ,rust-log-0.4)
8286 ("rust-chrono" ,rust-chrono-0.4)
8287 ("rust-colored" ,rust-colored-1)
8288 ("rust-syslog" ,rust-syslog-3.3)
8289 ("rust-syslog" ,rust-syslog-4.0))
8290 #:cargo-development-inputs
8291 (("rust-clap" ,rust-clap-2)
8292 ("rust-tempdir" ,rust-tempdir-0.3))))))
8293
8294 (define-public rust-filetime-0.2
8295 (package
8296 (name "rust-filetime")
8297 (version "0.2.8")
8298 (source
8299 (origin
8300 (method url-fetch)
8301 (uri (crate-uri "filetime" version))
8302 (file-name (string-append name "-" version ".crate"))
8303 (sha256
8304 (base32
8305 "0zfc90802dbw11bx6kmm8zw6r88k7glm4q6l8riqw35an3dd9xhz"))))
8306 (build-system cargo-build-system)
8307 (arguments
8308 `(#:skip-build? #t
8309 #:cargo-inputs
8310 (("rust-cfg-if" ,rust-cfg-if-0.1)
8311 ("rust-libc" ,rust-libc-0.2)
8312 ("rust-redox-syscall" ,rust-redox-syscall-0.1)
8313 ("rust-winapi" ,rust-winapi-0.3))
8314 #:cargo-development-inputs
8315 (("rust-tempfile" ,rust-tempfile-3))))
8316 (home-page "https://github.com/alexcrichton/filetime")
8317 (synopsis "Platform-agnostic accessors of timestamps in File metadata")
8318 (description
8319 "This library contains a helper library for inspecting and setting the
8320 various timestamps of files in Rust. This library takes into account
8321 cross-platform differences in terms of where the timestamps are located, what
8322 they are called, and how to convert them into a platform-independent
8323 representation.")
8324 (license (list license:asl2.0
8325 license:expat))))
8326
8327 (define-public rust-findshlibs-0.5
8328 (package
8329 (name "rust-findshlibs")
8330 (version "0.5.0")
8331 (source
8332 (origin
8333 (method url-fetch)
8334 (uri (crate-uri "findshlibs" version))
8335 (file-name (string-append name "-" version ".crate"))
8336 (sha256
8337 (base32
8338 "1n2vagn0q5yim32hxkwi1cjgp3yn1dm45p7z8nw6lapywihhs9mi"))))
8339 (build-system cargo-build-system)
8340 (arguments
8341 `(#:skip-build? #t
8342 #:cargo-inputs
8343 (("rust-lazy-static" ,rust-lazy-static-1)
8344 ("rust-libc" ,rust-libc-0.2))))
8345 (home-page "https://github.com/gimli-rs/findshlibs")
8346 (synopsis "Find the set of shared libraries loaded in the current process")
8347 (description
8348 "Find the set of shared libraries loaded in the current process with a
8349 cross platform API.")
8350 (license (list license:asl2.0
8351 license:expat))))
8352
8353 (define-public rust-fixed-1
8354 (package
8355 (name "rust-fixed")
8356 (version "1.2.0")
8357 (source
8358 (origin
8359 (method url-fetch)
8360 (uri (crate-uri "fixed" version))
8361 (file-name
8362 (string-append name "-" version ".tar.gz"))
8363 (sha256
8364 (base32
8365 "0p0v4jjgbbvp91sl8rkfqb2hldaxbzv89mzwmp8753mlrfqwn185"))))
8366 (build-system cargo-build-system)
8367 (arguments
8368 `(#:skip-build? #t
8369 #:cargo-inputs
8370 (("rust-az" ,rust-az-1)
8371 ("rust-half" ,rust-half-1)
8372 ("rust-num-traits" ,rust-num-traits-0.2)
8373 ("rust-serde" ,rust-serde-1)
8374 ("rust-typenum" ,rust-typenum-1))
8375 #:cargo-development-inputs
8376 (("rust-criterion" ,rust-criterion-0.3)
8377 ("rust-num-traits" ,rust-num-traits-0.2)
8378 ("rust-rand" ,rust-rand-0.7)
8379 ("rust-rand-xoshiro" ,rust-rand-xoshiro-0.4))))
8380 (home-page "https://gitlab.com/tspiteri/fixed")
8381 (synopsis "Rust fixed-point numbers")
8382 (description "This package provides fixed-point numbers in Rust.")
8383 (license (list license:expat license:asl2.0))))
8384
8385 (define-public rust-fixedbitset-0.2
8386 (package
8387 (name "rust-fixedbitset")
8388 (version "0.2.0")
8389 (source
8390 (origin
8391 (method url-fetch)
8392 (uri (crate-uri "fixedbitset" version))
8393 (file-name (string-append name "-" version ".crate"))
8394 (sha256
8395 (base32
8396 "0kg03p777wc0dajd9pvlcnsyrwa8dhqwf0sd9r4dw0p82rs39arp"))))
8397 (build-system cargo-build-system)
8398 (home-page "https://github.com/petgraph/fixedbitset")
8399 (synopsis "FixedBitSet is a simple bitset collection")
8400 (description "FixedBitSet is a simple bitset collection.")
8401 (license (list license:asl2.0
8402 license:expat))))
8403
8404 (define-public rust-fixedbitset-0.1
8405 (package
8406 (inherit rust-fixedbitset-0.2)
8407 (name "rust-fixedbitset")
8408 (version "0.1.9")
8409 (source
8410 (origin
8411 (method url-fetch)
8412 (uri (crate-uri "fixedbitset" version))
8413 (file-name (string-append name "-" version ".crate"))
8414 (sha256
8415 (base32
8416 "0czam11mi80dbyhf4rd4lz0ihcf7vkfchrdcrn45wbs0h40dxm46"))))))
8417
8418 (define-public rust-flame-0.2
8419 (package
8420 (name "rust-flame")
8421 (version "0.2.2")
8422 (source
8423 (origin
8424 (method url-fetch)
8425 (uri (crate-uri "flame" version))
8426 (file-name
8427 (string-append name "-" version ".tar.gz"))
8428 (sha256
8429 (base32
8430 "0c5bmhyimzxch3pmh0w3z9n57saasgix4bmbbksr9vp1c5j71hhz"))))
8431 (build-system cargo-build-system)
8432 (arguments
8433 `(#:cargo-inputs
8434 (("rust-lazy-static" ,rust-lazy-static-0.2)
8435 ("rust-serde" ,rust-serde-1)
8436 ("rust-serde-derive" ,rust-serde-derive-1)
8437 ("rust-serde-json" ,rust-serde-json-1)
8438 ("rust-thread-id" ,rust-thread-id-3))))
8439 (home-page "https://github.com/llogiq/flame")
8440 (synopsis "Profiling and flamegraph library")
8441 (description "A profiling and flamegraph library.")
8442 (license (list license:asl2.0 license:expat))))
8443
8444 (define-public rust-flamer-0.3
8445 (package
8446 (name "rust-flamer")
8447 (version "0.3.0")
8448 (source
8449 (origin
8450 (method url-fetch)
8451 (uri (crate-uri "flamer" version))
8452 (file-name
8453 (string-append name "-" version ".tar.gz"))
8454 (sha256
8455 (base32
8456 "1b2d7jx80f3p7hqpgdi7wksaiq18k9w23p0cs2sxf7jbx2jx3bgj"))))
8457 (build-system cargo-build-system)
8458 (arguments
8459 `(#:tests? #f ; Uses features not available in stable Rust release
8460 #:cargo-inputs
8461 (("rust-flame" ,rust-flame-0.2)
8462 ("rust-quote" ,rust-quote-0.6)
8463 ("rust-syn" ,rust-syn-0.15))))
8464 (home-page "https://github.com/llogiq/flamer")
8465 (synopsis "Macro to insert @code{flame::start_guard(_)}")
8466 (description
8467 "A procedural macro to insert @code{flame::start_guard(_)} calls.")
8468 (license license:asl2.0)))
8469
8470 (define-public rust-flate2-1
8471 (package
8472 (name "rust-flate2")
8473 (version "1.0.14")
8474 (source
8475 (origin
8476 (method url-fetch)
8477 (uri (crate-uri "flate2" version))
8478 (file-name
8479 (string-append name "-" version ".tar.gz"))
8480 (sha256
8481 (base32
8482 "0hlb2zmn5ixrgr0i1qvrd3a7j4fpp002d0kddn2hm7hjj49z9zrc"))))
8483 (build-system cargo-build-system)
8484 (arguments
8485 `(#:skip-build? #t
8486 #:cargo-inputs
8487 (("rust-cfg-if" ,rust-cfg-if-0.1)
8488 ("rust-cloudflare-zlib-sys"
8489 ,rust-cloudflare-zlib-sys-0.2)
8490 ("rust-crc32fast" ,rust-crc32fast-1)
8491 ("rust-futures" ,rust-futures-0.1)
8492 ("rust-libc" ,rust-libc-0.2)
8493 ("rust-libz-sys" ,rust-libz-sys-1)
8494 ("rust-miniz-sys" ,rust-miniz-sys-0.1)
8495 ("rust-miniz-oxide" ,rust-miniz-oxide-0.3)
8496 ("rust-tokio-io" ,rust-tokio-io-0.1))
8497 #:cargo-development-inputs
8498 (("rust-futures" ,rust-futures-0.1)
8499 ("rust-quickcheck" ,rust-quickcheck-0.9)
8500 ("rust-rand" ,rust-rand-0.7)
8501 ("rust-tokio-io" ,rust-tokio-io-0.1)
8502 ("rust-tokio-tcp" ,rust-tokio-tcp-0.1)
8503 ("rust-tokio-threadpool" ,rust-tokio-threadpool-0.1))))
8504 (home-page "https://github.com/alexcrichton/flate2-rs")
8505 (synopsis
8506 "Bindings to miniz.c for DEFLATE compression and decompression")
8507 (description
8508 "Bindings to miniz.c for DEFLATE compression and decompression exposed as
8509 Reader/Writer streams. Contains bindings for zlib, deflate, and gzip-based
8510 streams.")
8511 (license (list license:expat license:asl2.0))))
8512
8513 (define-public rust-float-cmp-0.8
8514 (package
8515 (name "rust-float-cmp")
8516 (version "0.8.0")
8517 (source
8518 (origin
8519 (method url-fetch)
8520 (uri (crate-uri "float-cmp" version))
8521 (file-name
8522 (string-append name "-" version ".tar.gz"))
8523 (sha256
8524 (base32
8525 "1i56hnzjn5pmrcm47fwkmfxiihk7wz5vvcgpb0kpfhzkqi57y9p1"))))
8526 (build-system cargo-build-system)
8527 (arguments
8528 `(#:cargo-inputs (("rust-num-traits" ,rust-num-traits-0.2))))
8529 (home-page "https://github.com/mikedilger/float-cmp")
8530 (synopsis "Floating point approximate comparison traits")
8531 (description
8532 "Floating point approximate comparison traits in Rust.")
8533 (license license:expat)))
8534
8535 (define-public rust-float-cmp-0.6
8536 (package
8537 (inherit rust-float-cmp-0.8)
8538 (name "rust-float-cmp")
8539 (version "0.6.0")
8540 (source
8541 (origin
8542 (method url-fetch)
8543 (uri (crate-uri "float-cmp" version))
8544 (file-name
8545 (string-append name "-" version ".tar.gz"))
8546 (sha256
8547 (base32
8548 "0zb1lv3ga18vsnpjjdg87yazbzvmfwwllj3aiid8660rp3qw8qns"))))))
8549
8550 (define-public rust-float-cmp-0.5
8551 (package
8552 (inherit rust-float-cmp-0.6)
8553 (name "rust-float-cmp")
8554 (version "0.5.3")
8555 (source
8556 (origin
8557 (method url-fetch)
8558 (uri (crate-uri "float-cmp" version))
8559 (file-name
8560 (string-append name "-" version ".tar.gz"))
8561 (sha256
8562 (base32
8563 "03hmx3n48hjm0x1ig84n1j87kzp75lzr6cj1sgi6a6pykgn4n8km"))))))
8564
8565 (define-public rust-float-cmp-0.3
8566 (package
8567 (inherit rust-float-cmp-0.5)
8568 (name "rust-float-cmp")
8569 (version "0.3.0")
8570 (source
8571 (origin
8572 (method url-fetch)
8573 (uri (crate-uri "float-cmp" version))
8574 (file-name
8575 (string-append name "-" version ".tar.gz"))
8576 (sha256
8577 (base32
8578 "1c0hmj46xma5aysz0qb49padhc26aw875whx6q6rglsj5dqpds1b"))))
8579 (arguments
8580 `(#:cargo-inputs (("rust-num" ,rust-num-0.1))))))
8581
8582 (define-public rust-float-ord-0.2
8583 (package
8584 (name "rust-float-ord")
8585 (version "0.2.0")
8586 (source
8587 (origin
8588 (method url-fetch)
8589 (uri (crate-uri "float-ord" version))
8590 (file-name
8591 (string-append name "-" version ".tar.gz"))
8592 (sha256
8593 (base32
8594 "0kin50365sr3spnbscq43lksymybi99ai9rkqdw90m6vixhlibbv"))))
8595 (build-system cargo-build-system)
8596 (arguments
8597 `(#:cargo-development-inputs
8598 (("rust-rand" ,rust-rand-0.3))))
8599 (home-page "https://github.com/notriddle/rust-float-ord")
8600 (synopsis "Total ordering for floating-point numbers")
8601 (description
8602 "This package provides a total ordering for floating-point numbers.")
8603 (license (list license:asl2.0 license:expat))))
8604
8605 (define-public rust-fluid-0.4
8606 (package
8607 (name "rust-fluid")
8608 (version "0.4.1")
8609 (source
8610 (origin
8611 (method url-fetch)
8612 (uri (crate-uri "fluid" version))
8613 (file-name (string-append name "-" version ".tar.gz"))
8614 (sha256
8615 (base32
8616 "04qgdc4lx934158icx9rvs0v6lyvirmb0brllvz38hj9fsaqfbsp"))))
8617 (build-system cargo-build-system)
8618 (arguments
8619 `(#:cargo-inputs
8620 (("rust-colored" ,rust-colored-1)
8621 ("rust-fluid-attributes" ,rust-fluid-attributes-0.4)
8622 ("rust-num-traits" ,rust-num-traits-0.2))))
8623 (home-page "https://crates.io/crates/fluid")
8624 (synopsis "Human readable test library")
8625 (description "This package provides a human readable test library.")
8626 (license license:asl2.0)))
8627
8628 (define-public rust-fluid-attributes-0.4
8629 (package
8630 (name "rust-fluid-attributes")
8631 (version "0.4.0")
8632 (source
8633 (origin
8634 (method url-fetch)
8635 (uri (crate-uri "fluid_attributes" version))
8636 (file-name (string-append name "-" version ".tar.gz"))
8637 (sha256
8638 (base32
8639 "1i67vcas0gr64bc8spprlfp7m7msv1jyspghgq1q8f0qrnvy8px8"))))
8640 (build-system cargo-build-system)
8641 (arguments
8642 `(#:tests? #f
8643 #:cargo-inputs
8644 (("rust-proc-macro2" ,rust-proc-macro2-0.4)
8645 ("rust-quote" ,rust-quote-0.6)
8646 ("rust-syn" ,rust-syn-0.15)
8647 ("rust-uuid" ,rust-uuid-0.7))))
8648 (home-page "https://gitlab.com/Boiethios/fluid-rs/wikis")
8649 (synopsis "Proc macro attributes for the fluid crate")
8650 (description "This package provides proc macro attributes for the fluid
8651 crate.")
8652 (license license:asl2.0)))
8653
8654 (define-public rust-fnv-1
8655 (package
8656 (name "rust-fnv")
8657 (version "1.0.6")
8658 (source
8659 (origin
8660 (method url-fetch)
8661 (uri (crate-uri "fnv" version))
8662 (file-name (string-append name "-" version ".crate"))
8663 (sha256
8664 (base32
8665 "1ww56bi1r5b8id3ns9j3qxbi7w5h005rzhiryy0zi9h97raqbb9g"))))
8666 (build-system cargo-build-system)
8667 (home-page "https://github.com/servo/rust-fnv")
8668 (synopsis "Implementation of the Fowler-Noll-Vo hash function")
8669 (description "The @code{fnv} hash function is a custom @code{Hasher}
8670 implementation that is more efficient for smaller hash keys.")
8671 (license (list license:asl2.0
8672 license:expat))))
8673
8674 (define-public rust-font-kit-0.4
8675 (package
8676 (name "rust-font-kit")
8677 (version "0.4.0")
8678 (source
8679 (origin
8680 (method url-fetch)
8681 (uri (crate-uri "font-kit" version))
8682 (file-name
8683 (string-append name "-" version ".tar.gz"))
8684 (sha256
8685 (base32
8686 "1fmg1jmqdvsjxjbyz8chpx1mhp544mwq128ns1shhrha5a6zzdqp"))))
8687 (build-system cargo-build-system)
8688 (arguments
8689 `(#:skip-build? #t
8690 #:cargo-inputs
8691 (("rust-lyon-path" ,rust-lyon-path-0.14)
8692 ("rust-core-graphics" ,rust-core-graphics-0.17)
8693 ("rust-float-ord" ,rust-float-ord-0.2)
8694 ("rust-libc" ,rust-libc-0.2)
8695 ("rust-euclid" ,rust-euclid-0.20)
8696 ("rust-winapi" ,rust-winapi-0.3)
8697 ("rust-servo-fontconfig"
8698 ,rust-servo-fontconfig-0.4)
8699 ("rust-freetype" ,rust-freetype-0.4)
8700 ("rust-log" ,rust-log-0.4)
8701 ("rust-core-foundation"
8702 ,rust-core-foundation-0.6)
8703 ("rust-memmap" ,rust-memmap-0.7)
8704 ("rust-dwrote" ,rust-dwrote-0.9)
8705 ("rust-dirs" ,rust-dirs-1.0)
8706 ("rust-byteorder" ,rust-byteorder-1)
8707 ("rust-lazy-static" ,rust-lazy-static-1)
8708 ("rust-core-text" ,rust-core-text-13)
8709 ("rust-walkdir" ,rust-walkdir-2))))
8710 (home-page "https://github.com/servo/font-kit")
8711 (synopsis "Cross-platform font loading library")
8712 (description
8713 "This package provides a cross-platform font loading library.")
8714 (license (list license:expat license:asl2.0))))
8715
8716 (define-public rust-foreign-types-0.5
8717 (package
8718 (name "rust-foreign-types")
8719 (version "0.5.0")
8720 (source
8721 (origin
8722 (method url-fetch)
8723 (uri (crate-uri "foreign-types" version))
8724 (file-name
8725 (string-append name "-" version ".tar.gz"))
8726 (sha256
8727 (base32
8728 "0rfr2zfxnx9rz3292z5nyk8qs2iirznn5ff3rd4vgdwza6mdjdyp"))))
8729 (build-system cargo-build-system)
8730 (arguments
8731 `(#:cargo-inputs
8732 (("rust-foreign-types-macros" ,rust-foreign-types-macros-0.2)
8733 ("rust-foreign-types-shared" ,rust-foreign-types-shared-0.3))))
8734 (home-page "https://github.com/sfackler/foreign-types")
8735 (synopsis "Framework for Rust wrappers over C APIs")
8736 (description
8737 "This package provides a framework for Rust wrappers over C APIs.")
8738 (license (list license:expat license:asl2.0))))
8739
8740 (define-public rust-foreign-types-0.3
8741 (package
8742 (inherit rust-foreign-types-0.5)
8743 (name "rust-foreign-types")
8744 (version "0.3.2")
8745 (source
8746 (origin
8747 (method url-fetch)
8748 (uri (crate-uri "foreign-types" version))
8749 (file-name
8750 (string-append name "-" version ".tar.gz"))
8751 (sha256
8752 (base32
8753 "1cgk0vyd7r45cj769jym4a6s7vwshvd0z4bqrb92q1fwibmkkwzn"))))
8754 (arguments
8755 `(#:cargo-inputs
8756 (("rust-foreign-types-macros" ,rust-foreign-types-macros-0.1)
8757 ("rust-foreign-types-shared" ,rust-foreign-types-shared-0.1))))))
8758
8759 (define-public rust-foreign-types-macros-0.2
8760 (package
8761 (name "rust-foreign-types-macros")
8762 (version "0.2.0")
8763 (source
8764 (origin
8765 (method url-fetch)
8766 (uri (crate-uri "foreign-types-macros" version))
8767 (file-name
8768 (string-append name "-" version ".tar.gz"))
8769 (sha256
8770 (base32
8771 "0x71sdffjfb123l2jn5vhz0ni09b4rdq3h3gpczd1dj1g5qlr2yv"))))
8772 (build-system cargo-build-system)
8773 (arguments
8774 `(#:cargo-inputs
8775 (("rust-proc-macro2" ,rust-proc-macro2-1)
8776 ("rust-quote" ,rust-quote-1)
8777 ("rust-syn" ,rust-syn-1))))
8778 (home-page "https://github.com/sfackler/foreign-types")
8779 (synopsis "Internal crate used by foreign-types")
8780 (description
8781 "This package is an internal crate used by foreign-types.")
8782 (license (list license:expat license:asl2.0))))
8783
8784 (define-public rust-foreign-types-macros-0.1
8785 (package
8786 (inherit rust-foreign-types-macros-0.2)
8787 (name "rust-foreign-types-macros")
8788 (version "0.1.1")
8789 (source
8790 (origin
8791 (method url-fetch)
8792 (uri (crate-uri "foreign-types-macros" version))
8793 (file-name
8794 (string-append name "-" version ".tar.gz"))
8795 (sha256
8796 (base32
8797 "0bh6z5rwdhfm987idal8r0ha5svz1li7md5l1g2a5966gya1jns0"))))))
8798
8799 (define-public rust-foreign-types-shared-0.3
8800 (package
8801 (name "rust-foreign-types-shared")
8802 (version "0.3.0")
8803 (source
8804 (origin
8805 (method url-fetch)
8806 (uri (crate-uri "foreign-types-shared" version))
8807 (file-name
8808 (string-append name "-" version ".tar.gz"))
8809 (sha256
8810 (base32
8811 "0mg85r21bxg2i97zl3q8l3cviqz4wcbwziz875wlja3zpcrwz13n"))))
8812 (build-system cargo-build-system)
8813 (home-page "https://github.com/sfackler/foreign-types")
8814 (synopsis "Internal crate used by foreign-types")
8815 (description
8816 "An internal crate used by foreign-types.")
8817 (license (list license:expat license:asl2.0))))
8818
8819 (define-public rust-foreign-types-shared-0.2
8820 (package
8821 (inherit rust-foreign-types-shared-0.3)
8822 (name "rust-foreign-types-shared")
8823 (version "0.2.0")
8824 (source
8825 (origin
8826 (method url-fetch)
8827 (uri (crate-uri "foreign-types-shared" version))
8828 (file-name (string-append name "-" version ".crate"))
8829 (sha256
8830 (base32
8831 "0kanxlif1vp0ffh2r9l610jqbkmb3183yqykxq1z5w1vay2rn7y6"))))))
8832
8833 (define-public rust-foreign-types-shared-0.1
8834 (package
8835 (inherit rust-foreign-types-shared-0.2)
8836 (name "rust-foreign-types-shared")
8837 (version "0.1.1")
8838 (source
8839 (origin
8840 (method url-fetch)
8841 (uri (crate-uri "foreign-types-shared" version))
8842 (file-name
8843 (string-append name "-" version ".tar.gz"))
8844 (sha256
8845 (base32
8846 "0jxgzd04ra4imjv8jgkmdq59kj8fsz6w4zxsbmlai34h26225c00"))))))
8847
8848 (define-public rust-fragile-0.3
8849 (package
8850 (name "rust-fragile")
8851 (version "0.3.0")
8852 (source
8853 (origin
8854 (method url-fetch)
8855 (uri (crate-uri "fragile" version))
8856 (file-name
8857 (string-append name "-" version ".tar.gz"))
8858 (sha256
8859 (base32
8860 "1yf2hmkw52x2dva3c9km1x8c2z5kwby7qqn8kz5ms3gs480i9y05"))))
8861 (build-system cargo-build-system)
8862 (home-page "https://github.com/mitsuhiko/rust-fragile")
8863 (synopsis "Wrapper types for sending non-send values to other threads")
8864 (description "This package provides wrapper types for sending non-send
8865 values to other threads.")
8866 (license license:asl2.0)))
8867
8868 (define-public rust-freetype-0.4
8869 (package
8870 (name "rust-freetype")
8871 (version "0.4.1")
8872 (source
8873 (origin
8874 (method url-fetch)
8875 (uri (crate-uri "freetype" version))
8876 (file-name
8877 (string-append name "-" version ".tar.gz"))
8878 (sha256
8879 (base32
8880 "0a70x03n68997f08bi3n47q9wyi3pv5s9v4rjc79sihb84mnp4hi"))))
8881 (build-system cargo-build-system)
8882 (arguments
8883 `(#:skip-build? #t
8884 #:cargo-inputs
8885 (("rust-libc" ,rust-libc-0.2)
8886 ("rust-servo-freetype-sys" ,rust-servo-freetype-sys-4))))
8887 (home-page "https://github.com/servo/rust-freetype")
8888 (synopsis "Bindings for Freetype used by Servo")
8889 (description
8890 "Bindings for Freetype used by Servo.")
8891 (license (list license:asl2.0 license:expat))))
8892
8893 (define-public rust-freetype-rs-0.23
8894 (package
8895 (name "rust-freetype-rs")
8896 (version "0.23.0")
8897 (source
8898 (origin
8899 (method url-fetch)
8900 (uri (crate-uri "freetype-rs" version))
8901 (file-name
8902 (string-append name "-" version ".tar.gz"))
8903 (sha256
8904 (base32
8905 "06yn6l44wad0h0i4nzs5jfq64zgf89xr01fy1w22i90j22ilnkmd"))))
8906 (build-system cargo-build-system)
8907 (arguments
8908 `(#:cargo-inputs
8909 (("rust-bitflags" ,rust-bitflags-1)
8910 ("rust-freetype-sys" ,rust-freetype-sys-0.9)
8911 ("rust-libc" ,rust-libc-0.2))
8912 #:cargo-development-inputs
8913 (("rust-unicode-normalization" ,rust-unicode-normalization-0.1))))
8914 (inputs
8915 `(("freetype" ,freetype)
8916 ("zlib" ,zlib)))
8917 (home-page "https://github.com/PistonDevelopers/freetype-rs")
8918 (synopsis "Bindings for FreeType font library")
8919 (description "This package provides bindings for FreeType font library.")
8920 (license license:expat)))
8921
8922 (define-public rust-freetype-sys-0.9
8923 (package
8924 (name "rust-freetype-sys")
8925 (version "0.9.0")
8926 (source
8927 (origin
8928 (method url-fetch)
8929 (uri (crate-uri "freetype-sys" version))
8930 (file-name
8931 (string-append name "-" version ".tar.gz"))
8932 (sha256
8933 (base32
8934 "1i309xc6gcsgdfiim3j5f0sk08imr4frlzfa185iaxqciysqgikx"))))
8935 (build-system cargo-build-system)
8936 (arguments
8937 `(#:cargo-inputs
8938 (("rust-libc" ,rust-libc-0.2)
8939 ("rust-libz-sys" ,rust-libz-sys-1)
8940 ("rust-pkg-config" ,rust-pkg-config-0.3))))
8941 (inputs
8942 `(("freetype" ,freetype)
8943 ("zlib" ,zlib)))
8944 (home-page "https://github.com/PistonDevelopers/freetype-sys")
8945 (synopsis "Low level binding for FreeType font library")
8946 (description
8947 "This package provides low level binding for FreeType font library.")
8948 (license license:expat)))
8949
8950 (define-public rust-fs2-0.4
8951 (package
8952 (name "rust-fs2")
8953 (version "0.4.3")
8954 (source
8955 (origin
8956 (method url-fetch)
8957 (uri (crate-uri "fs2" version))
8958 (file-name (string-append name "-" version ".tar.gz"))
8959 (sha256
8960 (base32 "04v2hwk7035c088f19mfl5b1lz84gnvv2hv6m935n0hmirszqr4m"))))
8961 (build-system cargo-build-system)
8962 (arguments
8963 `(#:tests? #f ;; "#![feature] may not be used on stable release channel"
8964 #:cargo-inputs
8965 (("rust-libc" ,rust-libc-0.2)
8966 ("rust-winapi" ,rust-winapi-0.3))
8967 #:cargo-development-inputs
8968 (("rust-tempdir" ,rust-tempdir-0.3))))
8969 (home-page "https://github.com/danburkert/fs2-rs")
8970 (synopsis "Cross-platform file locks and file duplication")
8971 (description "This package provides cross-platform file locks and file
8972 duplication.")
8973 (license (list license:expat license:asl2.0))))
8974
8975 (define-public rust-fs-extra-1.1
8976 (package
8977 (name "rust-fs-extra")
8978 (version "1.1.0")
8979 (source
8980 (origin
8981 (method url-fetch)
8982 (uri (crate-uri "fs_extra" version))
8983 (file-name (string-append name "-" version ".crate"))
8984 (sha256
8985 (base32
8986 "0x6675wdhsx277k1k1235jwcv38naf20d8kwrk948ds26hh4lajz"))))
8987 (build-system cargo-build-system)
8988 (arguments '(#:skip-build? #t))
8989 (home-page "https://github.com/webdesus/fs_extra")
8990 (synopsis "Extra file system methods")
8991 (description "Expanding opportunities standard library @code{std::fs} and
8992 @code{std::io}. Recursively copy folders with recept information about
8993 process and much more.")
8994 (license license:expat)))
8995
8996 (define-public rust-fs2-0.2
8997 (package
8998 (name "rust-fs2")
8999 (version "0.2.5")
9000 (source
9001 (origin
9002 (method url-fetch)
9003 (uri (crate-uri "fs2" version))
9004 (file-name
9005 (string-append name "-" version ".tar.gz"))
9006 (sha256
9007 (base32
9008 "1vsih93cvds3x6f3w9bc5rnkyv8haix1px4jpcqvjyd9l7ji9m5w"))))
9009 (build-system cargo-build-system)
9010 (arguments
9011 `(#:tests? #f
9012 #:cargo-inputs
9013 (("rust-kernel32-sys" ,rust-kernel32-sys-0.2)
9014 ("rust-libc" ,rust-libc-0.2)
9015 ("rust-winapi" ,rust-winapi-0.2))
9016 #:cargo-development-inputs
9017 (("rust-tempdir" ,rust-tempdir-0.3))))
9018 (home-page "https://github.com/danburkert/fs2-rs")
9019 (synopsis "File locks and file duplication")
9020 (description
9021 "This package provides cross-platform file locks and file duplication.")
9022 (license (list license:expat license:asl2.0))))
9023
9024 (define-public rust-fsevent-0.4
9025 (package
9026 (name "rust-fsevent")
9027 (version "0.4.0")
9028 (source
9029 (origin
9030 (method url-fetch)
9031 (uri (crate-uri "fsevent" version))
9032 (file-name
9033 (string-append name "-" version ".tar.gz"))
9034 (sha256
9035 (base32
9036 "1djxnc2fmv265xqf1iyfz56smh13v9r1p0w9125wjg6k3fyx3dss"))))
9037 (build-system cargo-build-system)
9038 (arguments
9039 `(#:skip-build? #t ; only available on macOS
9040 #:cargo-inputs
9041 (("rust-bitflags" ,rust-bitflags-1)
9042 ("rust-fsevent-sys" ,rust-fsevent-sys-2))
9043 #:cargo-development-inputs
9044 (("rust-tempdir" ,rust-tempdir-0.3)
9045 ("rust-time" ,rust-time-0.1))))
9046 (home-page "https://github.com/octplane/fsevent-rust")
9047 (synopsis "Rust bindings to the fsevent-sys macOS API")
9048 (description
9049 "This package provides Rust bindings to the @code{fsevent-sys} macOS API
9050 for file changes notifications")
9051 (license license:expat)))
9052
9053 (define-public rust-fsevent-sys-2
9054 (package
9055 (name "rust-fsevent-sys")
9056 (version "2.0.1")
9057 (source
9058 (origin
9059 (method url-fetch)
9060 (uri (crate-uri "fsevent-sys" version))
9061 (file-name
9062 (string-append name "-" version ".tar.gz"))
9063 (sha256
9064 (base32
9065 "18246vxk7rqn52m0sfrhivxq802i34p2wqqx5zsa0pamjj5086zl"))))
9066 (build-system cargo-build-system)
9067 (arguments
9068 `(#:skip-build? #t ; only available on macOS
9069 #:cargo-inputs (("rust-libc" ,rust-libc-0.2))))
9070 (home-page "https://github.com/octplane/fsevent-rust/tree/master/fsevent-sys")
9071 (synopsis "Rust bindings to the fsevent macOS API")
9072 (description "This package provides Rust bindings to the @code{fsevent}
9073 macOS API for file changes notifications")
9074 (license license:expat)))
9075
9076 (define-public rust-fst-0.4
9077 (package
9078 (name "rust-fst")
9079 (version "0.4.0")
9080 (source
9081 (origin
9082 (method url-fetch)
9083 (uri (crate-uri "fst" version))
9084 (file-name
9085 (string-append name "-" version ".tar.gz"))
9086 (sha256
9087 (base32
9088 "0ybmdzkknhv1wx6ws86iyixfyzc04l4nm71b9va7953r1m3i6z1z"))))
9089 (build-system cargo-build-system)
9090 (arguments
9091 `(#:skip-build? #t
9092 #:cargo-inputs
9093 (("rust-utf8-ranges" ,rust-utf8-ranges-1.0))))
9094 (home-page "https://github.com/BurntSushi/fst")
9095 (synopsis "Represent sets or maps of large numbers of strings.")
9096 (description
9097 "Use finite state transducers to compactly represent sets or maps of many
9098 strings (> 1 billion is possible).")
9099 (license (list license:unlicense license:expat))))
9100
9101 (define-public rust-fuchsia-cprng-0.1
9102 (package
9103 (name "rust-fuchsia-cprng")
9104 (version "0.1.1")
9105 (source
9106 (origin
9107 (method url-fetch)
9108 (uri (crate-uri "fuchsia-cprng" version))
9109 (file-name (string-append name "-" version ".crate"))
9110 (sha256
9111 (base32
9112 "1fnkqrbz7ixxzsb04bsz9p0zzazanma8znfdqjvh39n14vapfvx0"))))
9113 (build-system cargo-build-system)
9114 (arguments '(#:skip-build? #t))
9115 (home-page
9116 "https://fuchsia.googlesource.com/fuchsia/+/master/garnet/public/rust/fuchsia-cprng")
9117 (synopsis "Fuchsia cryptographically secure pseudorandom number generator")
9118 (description "Rust crate for the Fuchsia cryptographically secure
9119 pseudorandom number generator")
9120 (license license:bsd-3)))
9121
9122 (define-public rust-fuchsia-zircon-0.3
9123 (package
9124 (name "rust-fuchsia-zircon")
9125 (version "0.3.3")
9126 (source
9127 (origin
9128 (method url-fetch)
9129 (uri (crate-uri "fuchsia-zircon" version))
9130 (file-name (string-append name "-" version ".crate"))
9131 (sha256
9132 (base32
9133 "10jxc5ks1x06gpd0xg51kcjrxr35nj6qhx2zlc5n7bmskv3675rf"))))
9134 (build-system cargo-build-system)
9135 (arguments
9136 `(#:skip-build? #t
9137 #:cargo-inputs
9138 (("rust-bitflags" ,rust-bitflags-1)
9139 ("rust-fuchsia-zircon-sys" ,rust-fuchsia-zircon-sys-0.3))))
9140 (home-page "https://fuchsia.googlesource.com/garnet/")
9141 (synopsis "Rust bindings for the Zircon kernel")
9142 (description "Rust bindings for the Zircon kernel.")
9143 (license license:bsd-3)))
9144
9145 (define-public rust-fuchsia-zircon-sys-0.3
9146 (package
9147 (name "rust-fuchsia-zircon-sys")
9148 (version "0.3.3")
9149 (source
9150 (origin
9151 (method url-fetch)
9152 (uri (crate-uri "fuchsia-zircon-sys" version))
9153 (file-name (string-append name "-" version ".crate"))
9154 (sha256
9155 (base32
9156 "19zp2085qsyq2bh1gvcxq1lb8w6v6jj9kbdkhpdjrl95fypakjix"))))
9157 (build-system cargo-build-system)
9158 (arguments '(#:skip-build? #t))
9159 (home-page "https://fuchsia.googlesource.com/garnet/")
9160 (synopsis "Low-level Rust bindings for the Zircon kernel")
9161 (description "Low-level Rust bindings for the Zircon kernel.")
9162 (license license:bsd-3)))
9163
9164 (define-public rust-futf-0.1
9165 (package
9166 (name "rust-futf")
9167 (version "0.1.4")
9168 (source
9169 (origin
9170 (method url-fetch)
9171 (uri (crate-uri "futf" version))
9172 (file-name
9173 (string-append name "-" version ".tar.gz"))
9174 (sha256
9175 (base32
9176 "0fxc18bnabird5jl941nsd6d25vq8cn8barmz4d30dlkzbiir73w"))))
9177 (build-system cargo-build-system)
9178 (arguments
9179 `(#:skip-build? #t
9180 #:cargo-inputs
9181 (("rust-mac" ,rust-mac-0.1)
9182 ("rust-new-debug-unreachable" ,rust-new-debug-unreachable-1))))
9183 (home-page "https://github.com/servo/futf")
9184 (synopsis "Handling fragments of UTF-8")
9185 (description "Handling fragments of UTF-8.")
9186 (license (list license:asl2.0 license:expat))))
9187
9188 (define-public rust-futures-0.3
9189 (package
9190 (name "rust-futures")
9191 (version "0.3.1")
9192 (source
9193 (origin
9194 (method url-fetch)
9195 (uri (crate-uri "futures" version))
9196 (file-name
9197 (string-append name "-" version ".tar.gz"))
9198 (sha256
9199 (base32
9200 "11srrbc0hp7pgz142qjfx2z07kfhc98rbfwqyrgm4mxvxib61wdn"))))
9201 (build-system cargo-build-system)
9202 (arguments
9203 `(#:tests? #f
9204 #:cargo-inputs
9205 (("rust-futures-channel" ,rust-futures-channel-0.3)
9206 ("rust-futures-core" ,rust-futures-core-0.3)
9207 ("rust-futures-executor" ,rust-futures-executor-0.3)
9208 ("rust-futures-io" ,rust-futures-io-0.3)
9209 ("rust-futures-sink" ,rust-futures-sink-0.3)
9210 ("rust-futures-task" ,rust-futures-task-0.3)
9211 ("rust-futures-util" ,rust-futures-util-0.3))
9212 #:cargo-development-inputs
9213 (("rust-assert-matches" ,rust-assert-matches-1.3)
9214 ("rust-pin-utils" ,rust-pin-utils-0.1)
9215 ("rust-tokio" ,rust-tokio-0.1))))
9216 (home-page "https://rust-lang-nursery.github.io/futures-rs")
9217 (synopsis "Rust implementation of futures and streams")
9218 (description
9219 "A Rust implementation of futures and streams featuring zero allocations,
9220 composability, and iterator-like interfaces.")
9221 (license (list license:expat license:asl2.0))))
9222
9223 (define-public rust-futures-0.1
9224 (package
9225 (name "rust-futures")
9226 (version "0.1.29")
9227 (source
9228 (origin
9229 (method url-fetch)
9230 (uri (crate-uri "futures" version))
9231 (file-name (string-append name "-" version ".crate"))
9232 (sha256
9233 (base32
9234 "1vq3cw37knnd0afw3rcjzh71i2l01v5m4ysinrrqdvnn2ql0z60v"))))
9235 (build-system cargo-build-system)
9236 (arguments '(#:skip-build? #t))
9237 (home-page "https://github.com/rust-lang/futures-rs")
9238 (synopsis "Implementation of zero-cost futures in Rust")
9239 (description "An implementation of @code{futures} and @code{streams}
9240 featuring zero allocations, composability, and iterator-like interfaces.")
9241 (license (list license:asl2.0
9242 license:expat))))
9243
9244 (define-public rust-futures-channel-0.3
9245 (package
9246 (name "rust-futures-channel")
9247 (version "0.3.1")
9248 (source
9249 (origin
9250 (method url-fetch)
9251 (uri (crate-uri "futures-channel" version))
9252 (file-name
9253 (string-append name "-" version ".tar.gz"))
9254 (sha256
9255 (base32
9256 "11lvk749n61654ad40xn751gmxzwb697nwh36s5gs0ni2z59ibpw"))))
9257 (build-system cargo-build-system)
9258 (arguments
9259 `(#:tests? #f
9260 #:cargo-inputs
9261 (("rust-futures-core" ,rust-futures-core-0.3)
9262 ("rust-futures-sink" ,rust-futures-sink-0.3))))
9263 (home-page "https://rust-lang-nursery.github.io/futures-rs")
9264 (synopsis "Channels for asynchronous communication using futures-rs")
9265 (description
9266 "Channels for asynchronous communication using futures-rs.")
9267 (license (list license:expat license:asl2.0))))
9268
9269 (define-public rust-futures-channel-preview-0.3
9270 (package
9271 (name "rust-futures-channel-preview")
9272 (version "0.3.0-alpha.17")
9273 (source
9274 (origin
9275 (method url-fetch)
9276 (uri (crate-uri "futures-channel-preview" version))
9277 (file-name
9278 (string-append name "-" version ".tar.gz"))
9279 (sha256
9280 (base32
9281 "1blgpikhw391lzrfqcgg4xsn5xc0dlybni77ka7f0vb08zaixir1"))))
9282 (build-system cargo-build-system)
9283 (arguments
9284 `(#:skip-build? #t
9285 #:cargo-inputs
9286 (("rust-futures-core-preview" ,rust-futures-core-preview-0.3))))
9287 (home-page "https://rust-lang.github.io/futures-rs/")
9288 (synopsis
9289 "Channels for asynchronous communication using futures-rs")
9290 (description
9291 "Channels for asynchronous communication using futures-rs.")
9292 (license (list license:expat license:asl2.0))))
9293
9294 (define-public rust-futures-core-0.3
9295 (package
9296 (name "rust-futures-core")
9297 (version "0.3.1")
9298 (source
9299 (origin
9300 (method url-fetch)
9301 (uri (crate-uri "futures-core" version))
9302 (file-name
9303 (string-append name "-" version ".tar.gz"))
9304 (sha256
9305 (base32
9306 "0rh8q6pg08dizk5hwksvjgvkw26s3sr3b199nggv3ypyg914qmkr"))))
9307 (build-system cargo-build-system)
9308 (arguments '(#:tests? #f))
9309 (home-page "https://rust-lang-nursery.github.io/futures-rs")
9310 (synopsis "Core traits and types in for the `futures` library")
9311 (description "This package provides the core traits and types in for the
9312 @code{futures} library.")
9313 (license (list license:expat license:asl2.0))))
9314
9315 (define-public rust-futures-core-preview-0.3
9316 (package
9317 (name "rust-futures-core-preview")
9318 (version "0.3.0-alpha.17")
9319 (source
9320 (origin
9321 (method url-fetch)
9322 (uri (crate-uri "futures-core-preview" version))
9323 (file-name (string-append name "-" version ".crate"))
9324 (sha256
9325 (base32
9326 "1xaq8m609k6cz8xydwhwp8xxyxigabcw1w9ngycfy0bnkg7iq52b"))))
9327 (build-system cargo-build-system)
9328 (arguments '(#:tests? #f))
9329 (home-page "https://rust-lang-nursery.github.io/futures-rs/")
9330 (synopsis "Core traits and types in for the @code{futures} library.")
9331 (description "This crate provides the core traits and types in for the
9332 @code{futures} library.")
9333 (license (list license:asl2.0
9334 license:expat))))
9335
9336 (define-public rust-futures-cpupool-0.1
9337 (package
9338 (name "rust-futures-cpupool")
9339 (version "0.1.8")
9340 (source
9341 (origin
9342 (method url-fetch)
9343 (uri (crate-uri "futures-cpupool" version))
9344 (file-name (string-append name "-" version ".crate"))
9345 (sha256
9346 (base32
9347 "1r32456gpblzfvnkf60545v8acqk7gh5zhyhi1jn669k9gicv45b"))))
9348 (build-system cargo-build-system)
9349 (arguments
9350 `(#:cargo-inputs
9351 (("rust-futures" ,rust-futures-0.1)
9352 ("rust-num-cpus" ,rust-num-cpus-1))))
9353 (home-page "https://github.com/rust-lang-nursery/futures-rs")
9354 (synopsis "Implementation of thread pools which hand out futures")
9355 (description
9356 "An implementation of thread pools which hand out futures to the results of
9357 the computation on the threads themselves.")
9358 (license (list license:asl2.0
9359 license:expat))))
9360
9361 (define-public rust-futures-executor-0.3
9362 (package
9363 (name "rust-futures-executor")
9364 (version "0.3.1")
9365 (source
9366 (origin
9367 (method url-fetch)
9368 (uri (crate-uri "futures-executor" version))
9369 (file-name
9370 (string-append name "-" version ".tar.gz"))
9371 (sha256
9372 (base32
9373 "0cf24wbgxqh4kdjbb557vk1axzmbpmwb8s05ga1nls1zaqv4f9qy"))))
9374 (build-system cargo-build-system)
9375 (arguments
9376 `(#:tests? #f
9377 #:cargo-inputs
9378 (("rust-futures-core" ,rust-futures-core-0.3)
9379 ("rust-futures-task" ,rust-futures-task-0.3)
9380 ("rust-futures-util" ,rust-futures-util-0.3)
9381 ("rust-num-cpus" ,rust-num-cpus-1))))
9382 (home-page "https://rust-lang-nursery.github.io/futures-rs")
9383 (synopsis "Executors for asynchronous tasks based on the futures-rs library")
9384 (description
9385 "This package provides executors for asynchronous tasks based on the
9386 @code{futures-rs} library.")
9387 (license (list license:expat license:asl2.0))))
9388
9389 (define-public rust-futures-executor-preview-0.3
9390 (package
9391 (name "rust-futures-executor-preview")
9392 (version "0.3.0-alpha.17")
9393 (source
9394 (origin
9395 (method url-fetch)
9396 (uri (crate-uri "futures-executor-preview" version))
9397 (file-name
9398 (string-append name "-" version ".tar.gz"))
9399 (sha256
9400 (base32
9401 "053g5kf2qa1xhdkwp3d1grrizzy4683mpbb3y0vvm00hwl7jdfl7"))))
9402 (build-system cargo-build-system)
9403 (arguments
9404 `(#:skip-build? #t
9405 #:cargo-inputs
9406 (("rust-futures-channel-preview" ,rust-futures-channel-preview-0.3)
9407 ("rust-futures-core-preview" ,rust-futures-core-preview-0.3)
9408 ("rust-futures-util-preview" ,rust-futures-util-preview-0.3)
9409 ("rust-num-cpus" ,rust-num-cpus-1)
9410 ("rust-pin-utils" ,rust-pin-utils-0.1))))
9411 (home-page "https://github.com/rust-lang/futures-rs")
9412 (synopsis
9413 "Executors for asynchronous tasks based on futures-rs")
9414 (description
9415 "Executors for asynchronous tasks based on the futures-rs
9416 library.")
9417 (license (list license:expat license:asl2.0))))
9418
9419 (define-public rust-futures-io-0.3
9420 (package
9421 (name "rust-futures-io")
9422 (version "0.3.1")
9423 (source
9424 (origin
9425 (method url-fetch)
9426 (uri (crate-uri "futures-io" version))
9427 (file-name
9428 (string-append name "-" version ".tar.gz"))
9429 (sha256
9430 (base32
9431 "1zxm41fmkrb0r39ajk3rr9invcd5bdwlafazn8m9aw4y49ymfxp6"))))
9432 (build-system cargo-build-system)
9433 (home-page "https://rust-lang-nursery.github.io/futures-rs")
9434 (synopsis
9435 "`AsyncRead` and `AsyncWrite` traits for the futures-rs library")
9436 (description
9437 "This package provides the @code{AsyncRead} and @code{AsyncWrite} traits
9438 for the futures-rs library.")
9439 (license (list license:expat license:asl2.0))))
9440
9441 (define-public rust-futures-io-preview-0.3
9442 (package
9443 (name "rust-futures-io-preview")
9444 (version "0.3.0-alpha.17")
9445 (source
9446 (origin
9447 (method url-fetch)
9448 (uri (crate-uri "futures-io-preview" version))
9449 (file-name (string-append name "-" version ".crate"))
9450 (sha256
9451 (base32
9452 "0fhvwhdb8ywjjbfng0ra1r8yyc9yzpyxg9sv3spb3f7w0lk40bh8"))))
9453 (build-system cargo-build-system)
9454 (home-page "https://rust-lang-nursery.github.io/futures-rs/")
9455 (synopsis "Async read and write traits for the futures library")
9456 (description "This crate provides the @code{AsyncRead} and
9457 @code{AsyncWrite} traits for the @code{futures-rs} library.")
9458 (license (list license:asl2.0
9459 license:expat))))
9460
9461 (define-public rust-futures-macro-0.3
9462 (package
9463 (name "rust-futures-macro")
9464 (version "0.3.1")
9465 (source
9466 (origin
9467 (method url-fetch)
9468 (uri (crate-uri "futures-macro" version))
9469 (file-name
9470 (string-append name "-" version ".tar.gz"))
9471 (sha256
9472 (base32
9473 "0r3px32wgqfbmfyb1lrj9wplvjris5magdyhfr7xnyjk2mncbrsj"))))
9474 (build-system cargo-build-system)
9475 (arguments
9476 `(#:cargo-inputs
9477 (("rust-proc-macro-hack" ,rust-proc-macro-hack-0.5)
9478 ("rust-proc-macro2" ,rust-proc-macro2-1)
9479 ("rust-quote" ,rust-quote-1)
9480 ("rust-syn" ,rust-syn-1))))
9481 (home-page "https://rust-lang-nursery.github.io/futures-rs")
9482 (synopsis "Futures-rs procedural macro implementations")
9483 (description
9484 "This package provides the @code{futures-rs} procedural macro implementations.")
9485 (license (list license:expat license:asl2.0))))
9486
9487 (define-public rust-futures-preview-0.3
9488 (package
9489 (name "rust-futures-preview")
9490 (version "0.3.0-alpha.17")
9491 (source
9492 (origin
9493 (method url-fetch)
9494 (uri (crate-uri "futures-preview" version))
9495 (file-name
9496 (string-append name "-" version ".tar.gz"))
9497 (sha256
9498 (base32
9499 "0rsq8d1ciyg37i5ysd9dynwmklwy4sx466z9a72687wsi8fgj9dz"))))
9500 (build-system cargo-build-system)
9501 (arguments
9502 `(#:tests? #f
9503 #:cargo-inputs
9504 (("rust-futures-channel-preview" ,rust-futures-channel-preview-0.3)
9505 ("rust-futures-core-preview" ,rust-futures-core-preview-0.3)
9506 ("rust-futures-executor-preview" ,rust-futures-executor-preview-0.3)
9507 ("rust-futures-io-preview" ,rust-futures-io-preview-0.3)
9508 ("rust-futures-sink-preview" ,rust-futures-sink-preview-0.3)
9509 ("rust-futures-util-preview" ,rust-futures-util-preview-0.3))))
9510 (home-page "https://rust-lang-nursery.github.io/futures-rs")
9511 (synopsis "An implementation of futures and streams")
9512 (description
9513 "An implementation of futures and streams featuring zero allocations,
9514 composability, and iterator-like interfaces.")
9515 (license (list license:expat license:asl2.0))))
9516
9517 (define-public rust-futures-select-macro-preview-0.3
9518 (package
9519 (name "rust-futures-select-macro-preview")
9520 (version "0.3.0-alpha.17")
9521 (source
9522 (origin
9523 (method url-fetch)
9524 (uri (crate-uri "futures-select-macro-preview" version))
9525 (file-name
9526 (string-append name "-" version ".tar.gz"))
9527 (sha256
9528 (base32
9529 "1a90ivjzkgz7msiz5si05xzi8xwsk5gar1gkrbmrgqpgkliqd7a6"))))
9530 (build-system cargo-build-system)
9531 (arguments
9532 `(#:cargo-inputs
9533 (("rust-proc-macro-hack" ,rust-proc-macro-hack-0.5)
9534 ("rust-proc-macro2" ,rust-proc-macro2-0.4)
9535 ("rust-quote" ,rust-quote-0.6)
9536 ("rust-syn" ,rust-syn-0.15))))
9537 (home-page "https://github.com/rust-lang/futures-rs")
9538 (synopsis
9539 "Handle the first Future to complete")
9540 (description
9541 "The @code{select!} macro for waiting on multiple different
9542 @code{Future}s at once and handling the first one to complete.")
9543 (license (list license:expat license:asl2.0))))
9544
9545 (define-public rust-futures-sink-0.3
9546 (package
9547 (name "rust-futures-sink")
9548 (version "0.3.1")
9549 (source
9550 (origin
9551 (method url-fetch)
9552 (uri (crate-uri "futures-sink" version))
9553 (file-name
9554 (string-append name "-" version ".tar.gz"))
9555 (sha256
9556 (base32
9557 "05iwskzxq3yqvxv9l1kqnd7kkmp0dwc39fnvwrcjsg76z8zf66qp"))))
9558 (build-system cargo-build-system)
9559 (home-page "https://rust-lang-nursery.github.io/futures-rs")
9560 (synopsis "Asynchronous `Sink` trait for the futures-rs library")
9561 (description "This package provides the asynchronous @code{Sink} trait for
9562 the futures-rs library.")
9563 (license (list license:expat license:asl2.0))))
9564
9565 (define-public rust-futures-sink-preview-0.3
9566 (package
9567 (name "rust-futures-sink-preview")
9568 (version "0.3.0-alpha.17")
9569 (source
9570 (origin
9571 (method url-fetch)
9572 (uri (crate-uri "futures-sink-preview" version))
9573 (file-name (string-append name "-" version ".crate"))
9574 (sha256
9575 (base32
9576 "1r4d0gy73hdxkh5g1lrhl1kjnwp6mywjgcj70v0z78b921da42a3"))))
9577 (build-system cargo-build-system)
9578 (arguments
9579 `(#:cargo-inputs
9580 (("rust-futures-core-preview" ,rust-futures-core-preview-0.3))))
9581 (home-page "https://rust-lang-nursery.github.io/futures-rs/")
9582 (synopsis "Asynchronous `Sink` trait for the futures-rs library")
9583 (description
9584 "This package provides the asynchronous @code{Sink} trait for the
9585 futures-rs library.")
9586 (license (list license:asl2.0
9587 license:expat))))
9588
9589 (define-public rust-futures-task-0.3
9590 (package
9591 (name "rust-futures-task")
9592 (version "0.3.1")
9593 (source
9594 (origin
9595 (method url-fetch)
9596 (uri (crate-uri "futures-task" version))
9597 (file-name
9598 (string-append name "-" version ".tar.gz"))
9599 (sha256
9600 (base32
9601 "1yg5d7b3z58mhqbrax5a0qdsfvzfclwyqvw5k3i41x4wnbb55bhb"))))
9602 (build-system cargo-build-system)
9603 (arguments '(#:tests? #f))
9604 (home-page "https://rust-lang-nursery.github.io/futures-rs")
9605 (synopsis "Tools for working with tasks")
9606 (description "Tools for working with tasks.")
9607 (license (list license:expat license:asl2.0))))
9608
9609 (define-public rust-futures-test-0.3
9610 (package
9611 (name "rust-futures-test")
9612 (version "0.3.5")
9613 (source
9614 (origin
9615 (method url-fetch)
9616 (uri (crate-uri "futures-test" version))
9617 (file-name (string-append name "-" version ".tar.gz"))
9618 (sha256
9619 (base32
9620 "0v9r2mmgdbm0x4gppd5jzf4rss7439ivkqwi604m0r2il3zap6ci"))))
9621 (build-system cargo-build-system)
9622 (arguments
9623 `(#:cargo-inputs
9624 (("rust-futures-core" ,rust-futures-core-0.3)
9625 ("rust-futures-executor" ,rust-futures-executor-0.3)
9626 ("rust-futures-io" ,rust-futures-io-0.3)
9627 ("rust-futures-task" ,rust-futures-task-0.3)
9628 ("rust-futures-util" ,rust-futures-util-0.3)
9629 ("rust-once-cell" ,rust-once-cell-1)
9630 ("rust-pin-utils" ,rust-pin-utils-0.1))))
9631 (home-page "https://rust-lang.github.io/futures-rs")
9632 (synopsis "Test components built off futures-rs")
9633 (description "This package provides common utilities for testing
9634 components built off futures-rs.")
9635 (license (list license:expat license:asl2.0))))
9636
9637 (define-public rust-futures-timer-0.1
9638 (package
9639 (name "rust-futures-timer")
9640 (version "0.1.1")
9641 (source
9642 (origin
9643 (method url-fetch)
9644 (uri (crate-uri "futures-timer" version))
9645 (file-name (string-append name "-" version ".tar.gz"))
9646 (sha256
9647 (base32 "0hw0nlyrq5an6l6y8md1rg6r380zrddvmh9cg0h64xfwnvlxzkm5"))))
9648 (build-system cargo-build-system)
9649 (arguments
9650 `(#:cargo-inputs (("rust-futures" ,rust-futures-0.1))))
9651 (home-page "https://github.com/async-rs/futures-timer")
9652 (synopsis "Timeouts for futures")
9653 (description "Timeouts for futures.")
9654 (license (list license:expat license:asl2.0))))
9655
9656 (define-public rust-futures-util-0.3
9657 (package
9658 (name "rust-futures-util")
9659 (version "0.3.1")
9660 (source
9661 (origin
9662 (method url-fetch)
9663 (uri (crate-uri "futures-util" version))
9664 (file-name
9665 (string-append name "-" version ".tar.gz"))
9666 (sha256
9667 (base32
9668 "0xlyqdn6lnpkw27lwxczihx91h64gbdd31n8c8y5v63nzds65mn0"))))
9669 (build-system cargo-build-system)
9670 (arguments
9671 `(#:cargo-inputs
9672 (("rust-futures" ,rust-futures-0.1)
9673 ("rust-futures-channel" ,rust-futures-channel-0.3)
9674 ("rust-futures-core" ,rust-futures-core-0.3)
9675 ("rust-futures-io" ,rust-futures-io-0.3)
9676 ("rust-futures-macro" ,rust-futures-macro-0.3)
9677 ("rust-futures-sink" ,rust-futures-sink-0.3)
9678 ("rust-futures-task" ,rust-futures-task-0.3)
9679 ("rust-memchr" ,rust-memchr-2)
9680 ("rust-pin-utils" ,rust-pin-utils-0.1)
9681 ("rust-proc-macro-hack" ,rust-proc-macro-hack-0.5)
9682 ("rust-proc-macro-nested" ,rust-proc-macro-nested-0.1)
9683 ("rust-slab" ,rust-slab-0.4)
9684 ("rust-tokio-io" ,rust-tokio-io-0.1))))
9685 (home-page "https://rust-lang-nursery.github.io/futures-rs")
9686 (synopsis "Common utilities and extension traits for the futures-rs library")
9687 (description "This package provides common utilities and extension traits
9688 for the futures-rs library.")
9689 (license (list license:expat license:asl2.0))))
9690
9691 (define-public rust-futures-util-preview-0.3
9692 (package
9693 (name "rust-futures-util-preview")
9694 (version "0.3.0-alpha.17")
9695 (source
9696 (origin
9697 (method url-fetch)
9698 (uri (crate-uri "futures-util-preview" version))
9699 (file-name
9700 (string-append name "-" version ".tar.gz"))
9701 (sha256
9702 (base32
9703 "0kizm86wgr5qldyavskfi0r1msg6m4x2pkj0d4r04br2ig29i0dg"))))
9704 (build-system cargo-build-system)
9705 (arguments
9706 `(#:tests? #f
9707 #:cargo-inputs
9708 (("rust-futures" ,rust-futures-0.1)
9709 ("rust-futures-channel-preview" ,rust-futures-channel-preview-0.3)
9710 ("rust-futures-core-preview" ,rust-futures-core-preview-0.3)
9711 ("rust-futures-io-preview" ,rust-futures-io-preview-0.3)
9712 ("rust-futures-select-macro-preview"
9713 ,rust-futures-select-macro-preview-0.3)
9714 ("rust-futures-sink-preview" ,rust-futures-sink-preview-0.3)
9715 ("rust-memchr" ,rust-memchr-2)
9716 ("rust-pin-utils" ,rust-pin-utils-0.1)
9717 ("rust-proc-macro-hack" ,rust-proc-macro-hack-0.5)
9718 ("rust-proc-macro-nested" ,rust-proc-macro-nested-0.1)
9719 ("rust-rand" ,rust-rand-0.7)
9720 ("rust-slab" ,rust-slab-0.4)
9721 ("rust-tokio-io" ,rust-tokio-io-0.1))))
9722 (home-page "https://github.com/rust-lang/futures-rs")
9723 (synopsis
9724 "Utilities and extension traits for futures-rs library")
9725 (description
9726 "Common utilities and extension traits for the futures-rs
9727 library.")
9728 (license (list license:expat license:asl2.0))))
9729
9730 (define-public rust-fxhash-0.2
9731 (package
9732 (name "rust-fxhash")
9733 (version "0.2.1")
9734 (source
9735 (origin
9736 (method url-fetch)
9737 (uri (crate-uri "fxhash" version))
9738 (file-name
9739 (string-append name "-" version ".tar.gz"))
9740 (sha256
9741 (base32
9742 "037mb9ichariqi45xm6mz0b11pa92gj38ba0409z3iz239sns6y3"))))
9743 (build-system cargo-build-system)
9744 (arguments
9745 `(#:cargo-inputs
9746 (("rust-byteorder" ,rust-byteorder-1))
9747 #:cargo-development-inputs
9748 (("rust-fnv" ,rust-fnv-1)
9749 ("rust-seahash" ,rust-seahash-3))))
9750 (home-page "https://github.com/cbreeden/fxhash")
9751 (synopsis "Hashing algorithm from hasher used in FireFox and Rustc")
9752 (description
9753 "This package provides a fast, non-secure, hashing algorithm
9754 derived from an internal hasher used in FireFox and Rustc.")
9755 (license (list license:asl2.0 license:expat))))
9756
9757 (define-public rust-gcc-0.3
9758 (package
9759 (name "rust-gcc")
9760 (version "0.3.55")
9761 (source
9762 (origin
9763 (method url-fetch)
9764 (uri (crate-uri "gcc" version))
9765 (file-name (string-append name "-" version ".tar.gz"))
9766 (sha256
9767 (base32
9768 "1hng1sajn4r67hndvhjysswz8niayjwvcj42zphpxzhbz89kjpwg"))))
9769 (build-system cargo-build-system)
9770 (arguments
9771 `(#:tests? #f ; gcc-test folder missing from release tarball.
9772 #:cargo-inputs
9773 (("rust-rayon" ,rust-rayon-0.8))
9774 #:cargo-development-inputs
9775 (("rust-tempdir" ,rust-tempdir-0.3))))
9776 (home-page "https://github.com/alexcrichton/cc-rs")
9777 (synopsis "Library to compile C/C++ code into a Rust library/application")
9778 (description
9779 "This package provides a build-time dependency for Cargo build scripts to
9780 assist in invoking the native C compiler to compile native C code into a static
9781 archive to be linked into Rustcode.")
9782 (license (list license:asl2.0
9783 license:expat))))
9784
9785 (define-public rust-gdi32-sys-0.2
9786 (package
9787 (name "rust-gdi32-sys")
9788 (version "0.2.0")
9789 (source
9790 (origin
9791 (method url-fetch)
9792 (uri (crate-uri "gdi32-sys" version))
9793 (file-name
9794 (string-append name "-" version ".tar.gz"))
9795 (sha256
9796 (base32
9797 "0605d4ngjsspghwjv4jicajich1gnl0aik9f880ajjzjixd524h9"))))
9798 (build-system cargo-build-system)
9799 (arguments
9800 `(#:skip-build? #t
9801 #:cargo-inputs
9802 (("rust-winapi" ,rust-winapi-0.2)
9803 ("rust-winapi-build" ,rust-winapi-build-0.1))))
9804 (home-page "https://github.com/retep998/winapi-rs")
9805 (synopsis "Function definitions for the Windows API library gdi32")
9806 (description "This package contains function definitions for the Windows
9807 API library @code{gdi32}.")
9808 (license license:expat)))
9809
9810 (define-public rust-generator-0.6
9811 (package
9812 (name "rust-generator")
9813 (version "0.6.20")
9814 (source
9815 (origin
9816 (method url-fetch)
9817 (uri (crate-uri "generator" version))
9818 (file-name
9819 (string-append name "-" version ".tar.gz"))
9820 (sha256
9821 (base32
9822 "0f07mwkarwrqrykhkzqpvfnd5crz20dd8l24psn01kiqzc71dana"))))
9823 (build-system cargo-build-system)
9824 (arguments
9825 `(#:cargo-inputs
9826 (("rust-libc" ,rust-libc-0.2)
9827 ("rust-log" ,rust-log-0.4)
9828 ("rust-winapi" ,rust-winapi-0.3)
9829 ("rust-cc" ,rust-cc-1)
9830 ("rust-rustc-version" ,rust-rustc-version-0.2))))
9831 (home-page "https://github.com/Xudong-Huang/generator-rs")
9832 (synopsis "Stackfull Generator Library in Rust")
9833 (description "Stackfull Generator Library in Rust.")
9834 (license (list license:asl2.0 license:expat))))
9835
9836 (define-public rust-generic-array-0.14
9837 (package
9838 (name "rust-generic-array")
9839 (version "0.14.2")
9840 (source
9841 (origin
9842 (method url-fetch)
9843 (uri (crate-uri "generic-array" version))
9844 (file-name
9845 (string-append name "-" version ".tar.gz"))
9846 (sha256
9847 (base32
9848 "107r1fpm8zcab3lzci4x9par6ik8bra390c60rhxvnmz7dgnlx5c"))))
9849 (build-system cargo-build-system)
9850 (arguments
9851 `(#:cargo-inputs
9852 (("rust-serde" ,rust-serde-1)
9853 ("rust-typenum" ,rust-typenum-1)
9854 ("rust-version-check" ,rust-version-check-0.9))
9855 #:cargo-development-inputs
9856 (("rust-bincode" ,rust-bincode-1)
9857 ("rust-serde-json" ,rust-serde-json-1))))
9858 (home-page "https://github.com/fizyk20/generic-array.git")
9859 (synopsis
9860 "Generic types implementing functionality of arrays")
9861 (description
9862 "Generic types implementing functionality of arrays.")
9863 (license license:expat)))
9864
9865 (define-public rust-generic-array-0.13
9866 (package
9867 (inherit rust-generic-array-0.14)
9868 (name "rust-generic-array")
9869 (version "0.13.2")
9870 (source
9871 (origin
9872 (method url-fetch)
9873 (uri (crate-uri "generic-array" version))
9874 (file-name
9875 (string-append name "-" version ".tar.gz"))
9876 (sha256
9877 (base32
9878 "1kddwxpd58y807y1r3lijg7sw3gxm6nczl6wp57gamhv6mhygl8f"))))
9879 (arguments
9880 `(#:cargo-inputs
9881 (("rust-serde" ,rust-serde-1)
9882 ("rust-typenum" ,rust-typenum-1))
9883 #:cargo-development-inputs
9884 (("rust-bincode" ,rust-bincode-1)
9885 ("rust-serde-json" ,rust-serde-json-1))))))
9886
9887 (define-public rust-generic-array-0.12
9888 (package
9889 (inherit rust-generic-array-0.13)
9890 (name "rust-generic-array")
9891 (version "0.12.3")
9892 (source
9893 (origin
9894 (method url-fetch)
9895 (uri (crate-uri "generic-array" version))
9896 (file-name
9897 (string-append name "-" version ".tar.gz"))
9898 (sha256
9899 (base32
9900 "1v5jg7djicq34nbiv1dwaki71gkny002wyy9qfn3y0hfmrs053y6"))))))
9901
9902 (define-public rust-generic-array-0.8
9903 (package
9904 (inherit rust-generic-array-0.12)
9905 (name "rust-generic-array")
9906 (version "0.8.3")
9907 (source
9908 (origin
9909 (method url-fetch)
9910 (uri (crate-uri "generic-array" version))
9911 (file-name (string-append name "-" version ".tar.gz"))
9912 (sha256
9913 (base32
9914 "1wi6rlx3dmrvl26yxm4z5n68kyj2ikk4nllk1kazw2ik9scnkszw"))))
9915 (arguments
9916 `(#:cargo-inputs
9917 (("rust-nodrop" ,rust-nodrop-0.1)
9918 ("rust-serde" ,rust-serde-1)
9919 ("rust-typenum" ,rust-typenum-1))
9920 #:cargo-development-inputs
9921 (("rust-serde-json" ,rust-serde-json-1))))))
9922
9923 (define-public rust-genmesh-0.6
9924 (package
9925 (name "rust-genmesh")
9926 (version "0.6.2")
9927 (source
9928 (origin
9929 (method url-fetch)
9930 (uri (crate-uri "genmesh" version))
9931 (file-name
9932 (string-append name "-" version ".tar.gz"))
9933 (sha256
9934 (base32
9935 "17qybydyblf3hjiw7mq181jpi4vrbb8dmsj0wi347r8k0m354g89"))))
9936 (build-system cargo-build-system)
9937 (arguments
9938 `(#:cargo-inputs
9939 (("rust-cgmath" ,rust-cgmath-0.16)
9940 ("rust-mint" ,rust-mint-0.5))))
9941 (home-page "https://github.com/gfx-rs/genmesh")
9942 (synopsis "Package for generating 3D meshes")
9943 (description
9944 "This package provides a package for generating 3D meshes/")
9945 (license license:asl2.0)))
9946
9947 (define-public rust-getch-0.2
9948 (package
9949 (name "rust-getch")
9950 (version "0.2.1")
9951 (source
9952 (origin
9953 (method url-fetch)
9954 (uri (crate-uri "getch" version))
9955 (file-name
9956 (string-append name "-" version ".tar.gz"))
9957 (sha256
9958 (base32
9959 "00in8q95qi8a5q3zn2zcaqp5avj79f5myd2a4zfdy2m24ycvbc5v"))))
9960 (build-system cargo-build-system)
9961 (arguments
9962 `(#:cargo-inputs
9963 (("rust-libc" ,rust-libc-0.2)
9964 ("rust-termios" ,rust-termios-0.2))))
9965 (home-page "https://nest.pijul.com/pijul_org/getch")
9966 (synopsis "Portable implementation of getch")
9967 (description
9968 "This package provides a portable implementation of getch, using
9969 @code{_getch} on Windows, and @code{termios} on Unix.")
9970 (license license:asl2.0)))
9971
9972 (define-public rust-getopts-0.2
9973 (package
9974 (name "rust-getopts")
9975 (version "0.2.21")
9976 (source
9977 (origin
9978 (method url-fetch)
9979 (uri (crate-uri "getopts" version))
9980 (file-name (string-append name "-" version ".crate"))
9981 (sha256
9982 (base32
9983 "1mgb3qvivi26gs6ihqqhh8iyhp3vgxri6vwyrwg28w0xqzavznql"))))
9984 (build-system cargo-build-system)
9985 (arguments
9986 `(#:cargo-inputs
9987 (("rust-unicode-width" ,rust-unicode-width-0.1)
9988 ("rust-rustc-std-workspace-core" ,rust-rustc-std-workspace-core-1)
9989 ("rust-rustc-std-workspace-std" ,rust-rustc-std-workspace-std-1.0))
9990 #:cargo-development-inputs
9991 (("rust-log" ,rust-log-0.3))))
9992 (home-page "https://github.com/rust-lang/getopts")
9993 (synopsis "Rust library for option parsing for CLI utilities")
9994 (description "This library provides getopts-like option parsing.")
9995 (license (list license:asl2.0
9996 license:expat))))
9997
9998 (define-public rust-getrandom-0.1
9999 (package
10000 (name "rust-getrandom")
10001 (version "0.1.14")
10002 (source
10003 (origin
10004 (method url-fetch)
10005 (uri (crate-uri "getrandom" version))
10006 (file-name
10007 (string-append name "-" version ".tar.gz"))
10008 (sha256
10009 (base32
10010 "1sq30li71h19rhnhs1h6576ja68insajx8wvh1nn088r8pc8vg3s"))))
10011 (build-system cargo-build-system)
10012 (arguments
10013 `(#:skip-build? #t
10014 #:cargo-inputs
10015 (("rust-cfg-if" ,rust-cfg-if-0.1)
10016 ("rust-compiler-builtins" ,rust-compiler-builtins-0.1)
10017 ("rust-wasm-bindgen" ,rust-wasm-bindgen-0.2)
10018 ("rust-libc" ,rust-libc-0.2)
10019 ("rust-log" ,rust-log-0.4)
10020 ("rust-stdweb" ,rust-stdweb-0.4)
10021 ("rust-wasi" ,rust-wasi-0.9)
10022 ("rust-rustc-std-workspace-core" ,rust-rustc-std-workspace-core-1))))
10023 (home-page "https://github.com/rust-random/getrandom")
10024 (synopsis "Retrieve random data from system source")
10025 (description
10026 "This package provides a small cross-platform library for
10027 retrieving random data from system source.")
10028 (license (list license:expat license:asl2.0))))
10029
10030 (define-public rust-gettext-rs-0.5
10031 (package
10032 (name "rust-gettext-rs")
10033 (version "0.5.0")
10034 (source
10035 (origin
10036 (method url-fetch)
10037 (uri (crate-uri "gettext-rs" version))
10038 (file-name
10039 (string-append name "-" version ".tar.gz"))
10040 (sha256
10041 (base32
10042 "1qc9a63i54b9ad3jx951hn7xb6xf76c9f3hmi2cdy2m7rhczm58v"))))
10043 (build-system cargo-build-system)
10044 (arguments
10045 `(#:cargo-inputs
10046 (("rust-gettext-sys" ,rust-gettext-sys-0.19)
10047 ("rust-locale-config" ,rust-locale-config-0.3))))
10048 (inputs
10049 `(("gettext" ,gettext-minimal)))
10050 (home-page "https://github.com/Koka/gettext-rs")
10051 (synopsis "GNU Gettext FFI binding for Rust")
10052 (description "This package provides GNU Gettext FFI bindings for Rust.")
10053 (license license:expat)))
10054
10055 (define-public rust-gettext-rs-0.4
10056 (package
10057 (inherit rust-gettext-rs-0.5)
10058 (name "rust-gettext-rs")
10059 (version "0.4.4")
10060 (source
10061 (origin
10062 (method url-fetch)
10063 (uri (crate-uri "gettext-rs" version))
10064 (file-name
10065 (string-append name "-" version ".tar.gz"))
10066 (sha256
10067 (base32
10068 "0z6fcsn1g3w9mlgfj6ln6qvqf8610w3zwvk6g062h657v114lifz"))))
10069 (arguments
10070 `(#:cargo-inputs
10071 (("rust-gettext-sys" ,rust-gettext-sys-0.19)
10072 ("rust-locale-config" ,rust-locale-config-0.2))))))
10073
10074 (define-public rust-gettext-sys-0.19
10075 (package
10076 (name "rust-gettext-sys")
10077 (version "0.19.9")
10078 (source
10079 (origin
10080 (method url-fetch)
10081 (uri (crate-uri "gettext-sys" version))
10082 (file-name
10083 (string-append name "-" version ".tar.gz"))
10084 (sha256
10085 (base32
10086 "0lzi6ja81vc16mhcdmn3lw35120n9ijhvsy5dh5775mpbfxc8d70"))
10087 (modules '((guix build utils)))
10088 (snippet
10089 '(begin (delete-file "gettext-0.19.8.1.tar.xz") #t))))
10090 (build-system cargo-build-system)
10091 (arguments
10092 `(#:cargo-inputs
10093 (("rust-cc" ,rust-cc-1))))
10094 (inputs
10095 `(("gettext" ,gettext-minimal)))
10096 (home-page "https://github.com/Koka/gettext-rs")
10097 (synopsis "Gettext raw FFI bindings")
10098 (description "This package provides raw FFI bindings for GNU Gettext.")
10099 (license license:expat)))
10100
10101 (define-public rust-gfa-0.6
10102 (package
10103 (name "rust-gfa")
10104 (version "0.6.2")
10105 (source
10106 (origin
10107 (method url-fetch)
10108 (uri (crate-uri "gfa" version))
10109 (file-name
10110 (string-append name "-" version ".tar.gz"))
10111 (sha256
10112 (base32
10113 "0ghmy4r0324s6vvmj9nmh326346nkwm7nybnpcpswnjvf02b85gw"))))
10114 (build-system cargo-build-system)
10115 (arguments
10116 `(#:cargo-inputs
10117 (("rust-bstr" ,rust-bstr-0.2)
10118 ("rust-bytemuck" ,rust-bytemuck-1)
10119 ("rust-lazy-static" ,rust-lazy-static-1)
10120 ("rust-nom" ,rust-nom-5)
10121 ("rust-regex" ,rust-regex-1)
10122 ("rust-serde" ,rust-serde-1))
10123 #:cargo-development-inputs
10124 (("rust-criterion" ,rust-criterion-0.3))))
10125 (home-page "https://github.com/chfi/rs-gfa")
10126 (synopsis "Library for graphs in the GFA (Graphical Fragment Assembly) format")
10127 (description
10128 "This package provides a library for working with graphs in the
10129 @acronym{GFA, Graphical Fragment Assembly} format.")
10130 (license license:expat)))
10131
10132 (define-public rust-ghash-0.3
10133 (package
10134 (name "rust-ghash")
10135 (version "0.3.0")
10136 (source
10137 (origin
10138 (method url-fetch)
10139 (uri (crate-uri "ghash" version))
10140 (file-name (string-append name "-" version ".tar.gz"))
10141 (sha256
10142 (base32
10143 "0c957q9sk1q93pqqfvhcmflfm1zvbr14aznfpm25kqd6i437zqnn"))))
10144 (build-system cargo-build-system)
10145 (arguments
10146 `(#:cargo-inputs
10147 (("rust-polyval" ,rust-polyval-0.4)
10148 ("rust-zeroize" ,rust-zeroize-1))
10149 #:cargo-development-inputs
10150 (("rust-hex-literal" ,rust-hex-literal-0.1))))
10151 (home-page "https://github.com/RustCrypto/universal-hashes")
10152 (synopsis "Universal hash over GF(2^128)")
10153 (description "This package provides a universal hash over GF(2^128) useful
10154 for constructing a Message Authentication Code (MAC), as in the AES-GCM
10155 authenticated encryption cipher.")
10156 (license (list license:expat license:asl2.0))))
10157
10158 (define-public rust-gimli-0.20
10159 (package
10160 (name "rust-gimli")
10161 (version "0.20.0")
10162 (source
10163 (origin
10164 (method url-fetch)
10165 (uri (crate-uri "gimli" version))
10166 (file-name
10167 (string-append name "-" version ".tar.gz"))
10168 (sha256
10169 (base32
10170 "0cz6wg1niwfqf0mk28igsdnsm92cs57cai9jpzdmvw6hma863pc1"))))
10171 (build-system cargo-build-system)
10172 (arguments
10173 `(#:skip-build? #t
10174 #:cargo-inputs
10175 (("rust-fallible-iterator"
10176 ,rust-fallible-iterator-0.2)
10177 ("rust-arrayvec" ,rust-arrayvec-0.5)
10178 ("rust-stable-deref-trait"
10179 ,rust-stable-deref-trait-1)
10180 ("rust-smallvec" ,rust-smallvec-1)
10181 ("rust-indexmap" ,rust-indexmap-1)
10182 ("rust-byteorder" ,rust-byteorder-1))))
10183 (home-page "https://github.com/gimli-rs/gimli")
10184 (synopsis "Library for reading and writing the DWARF debugging format")
10185 (description
10186 "This package provides a library for reading and writing the DWARF debugging format.")
10187 (license (list license:asl2.0 license:expat))))
10188
10189 (define-public rust-gimli-0.18
10190 (package
10191 (name "rust-gimli")
10192 (version "0.18.0")
10193 (source
10194 (origin
10195 (method url-fetch)
10196 (uri (crate-uri "gimli" version))
10197 (file-name
10198 (string-append name "-" version ".tar.gz"))
10199 (sha256
10200 (base32
10201 "0ma1zg2klqr47rasm7jn3zzd1j1pj2a8wkfbv5zsx10qh43phy4k"))))
10202 (build-system cargo-build-system)
10203 (arguments
10204 `(#:cargo-inputs
10205 (("rust-arrayvec" ,rust-arrayvec-0.4)
10206 ("rust-byteorder" ,rust-byteorder-1)
10207 ("rust-fallible-iterator" ,rust-fallible-iterator-0.2)
10208 ("rust-indexmap" ,rust-indexmap-1)
10209 ("rust-stable-deref-trait" ,rust-stable-deref-trait-1))
10210 #:cargo-development-inputs
10211 (("rust-crossbeam" ,rust-crossbeam-0.7)
10212 ("rust-getopts" ,rust-getopts-0.2)
10213 ("rust-memmap" ,rust-memmap-0.7)
10214 ("rust-num-cpus" ,rust-num-cpus-1)
10215 ("rust-object" ,rust-object-0.12)
10216 ("rust-rayon" ,rust-rayon-1)
10217 ("rust-regex" ,rust-regex-1)
10218 ("rust-test-assembler" ,rust-test-assembler-0.1)
10219 ("rust-typed-arena" ,rust-typed-arena-1.4))))
10220 (home-page "https://github.com/gimli-rs/gimli")
10221 (synopsis "Reading and writing the DWARF debugging format")
10222 (description
10223 "This package provides a library for reading and writing the
10224 DWARF debugging format.")
10225 (license (list license:asl2.0 license:expat))))
10226
10227 (define-public rust-git2-0.11
10228 (package
10229 (name "rust-git2")
10230 (version "0.11.0")
10231 (source
10232 (origin
10233 (method url-fetch)
10234 (uri (crate-uri "git2" version))
10235 (file-name
10236 (string-append name "-" version ".tar.gz"))
10237 (sha256
10238 (base32
10239 "1i0fgsr91r97hsjbgqnymkcyiyg0057m7m04116k3vmyqpvrwlbp"))))
10240 (build-system cargo-build-system)
10241 (arguments
10242 `(#:cargo-inputs
10243 (("rust-bitflags" ,rust-bitflags-1)
10244 ("rust-libc" ,rust-libc-0.2)
10245 ("rust-libgit2-sys" ,rust-libgit2-sys-0.10)
10246 ("rust-log" ,rust-log-0.4)
10247 ("rust-openssl-probe" ,rust-openssl-probe-0.1)
10248 ("rust-openssl-sys" ,rust-openssl-sys-0.9)
10249 ("rust-url" ,rust-url-2))
10250 #:cargo-development-inputs
10251 (("rust-docopt" ,rust-docopt-1.1)
10252 ("rust-serde" ,rust-serde-1)
10253 ("rust-serde-derive" ,rust-serde-derive-1)
10254 ("rust-tempfile" ,rust-tempfile-3)
10255 ("rust-thread-id" ,rust-thread-id-3)
10256 ("rust-time" ,rust-time-0.1))))
10257 (native-inputs
10258 `(("pkg-config" ,pkg-config)))
10259 (inputs
10260 `(("libgit2" ,libgit2)
10261 ("libssh2" ,libssh2)
10262 ("openssl" ,openssl)
10263 ("zlib" ,zlib)))
10264 (home-page "https://github.com/rust-lang/git2-rs")
10265 (synopsis "Rust bindings to libgit2")
10266 (description
10267 "Bindings to libgit2 for interoperating with git repositories.
10268 This library is both threadsafe and memory safe and allows both
10269 reading and writing git repositories.")
10270 (license (list license:asl2.0 license:expat))))
10271
10272 (define-public rust-git2-0.9
10273 (package
10274 (inherit rust-git2-0.11)
10275 (name "rust-git2")
10276 (version "0.9.1")
10277 (source
10278 (origin
10279 (method url-fetch)
10280 (uri (crate-uri "git2" version))
10281 (file-name
10282 (string-append name "-" version ".tar.gz"))
10283 (sha256
10284 (base32
10285 "0cayf5w7wkvclvs8brbi7lyfxbdklwls9s49mpf2brl655yjwjwj"))))
10286 (arguments
10287 `(#:cargo-inputs
10288 (("rust-bitflags" ,rust-bitflags-1)
10289 ("rust-libc" ,rust-libc-0.2)
10290 ("rust-libgit2-sys" ,rust-libgit2-sys-0.8)
10291 ("rust-log" ,rust-log-0.4)
10292 ("rust-openssl-probe" ,rust-openssl-probe-0.1)
10293 ("rust-openssl-sys" ,rust-openssl-sys-0.9)
10294 ("rust-url" ,rust-url-1))
10295 #:cargo-development-inputs
10296 (("rust-docopt" ,rust-docopt-1.1)
10297 ("rust-serde" ,rust-serde-1)
10298 ("rust-serde-derive" ,rust-serde-derive-1)
10299 ("rust-tempdir" ,rust-tempdir-0.3)
10300 ("rust-thread-id" ,rust-thread-id-3)
10301 ("rust-time" ,rust-time-0.1))))))
10302
10303 (define-public rust-glium-0.25
10304 (package
10305 (name "rust-glium")
10306 (version "0.25.1")
10307 (source
10308 (origin
10309 (method url-fetch)
10310 (uri (crate-uri "glium" version))
10311 (file-name
10312 (string-append name "-" version ".tar.gz"))
10313 (sha256
10314 (base32
10315 "0mhjly07x10lxg802ppg16wbxddhh4fdnlg10i99qwpfamvqhzbd"))))
10316 (build-system cargo-build-system)
10317 (arguments
10318 `(#:cargo-inputs
10319 (("rust-backtrace" ,rust-backtrace-0.3)
10320 ("rust-fnv" ,rust-fnv-1)
10321 ("rust-glutin" ,rust-glutin-0.21)
10322 ("rust-lazy-static" ,rust-lazy-static-1)
10323 ("rust-smallvec" ,rust-smallvec-0.6)
10324 ("rust-takeable-option" ,rust-takeable-option-0.4))
10325 #:cargo-development-inputs
10326 (("rust-cgmath" ,rust-cgmath-0.17)
10327 ("rust-genmesh" ,rust-genmesh-0.6)
10328 ("rust-gl-generator" ,rust-gl-generator-0.11)
10329 ("rust-image" ,rust-image-0.21)
10330 ("rust-obj" ,rust-obj-0.9)
10331 ("rust-rand" ,rust-rand-0.6))))
10332 (home-page "https://github.com/glium/glium")
10333 (synopsis
10334 "OpenGL wrapper")
10335 (description
10336 "Glium is an intermediate layer between OpenGL and your application. You
10337 still need to manually handle the graphics pipeline, but without having to use
10338 OpenGL's old and error-prone API.")
10339 (license license:asl2.0)))
10340
10341 (define-public rust-glob-0.3
10342 (package
10343 (name "rust-glob")
10344 (version "0.3.0")
10345 (source
10346 (origin
10347 (method url-fetch)
10348 (uri (crate-uri "glob" version))
10349 (file-name (string-append name "-" version ".crate"))
10350 (sha256
10351 (base32
10352 "0x25wfr7vg3mzxc9x05dcphvd3nwlcmbnxrvwcvrrdwplcrrk4cv"))))
10353 (build-system cargo-build-system)
10354 (arguments
10355 `(#:tests? #f
10356 #:cargo-development-inputs
10357 (("rust-tempdir" ,rust-tempdir-0.3))))
10358 (home-page "https://github.com/rust-lang-nursery/glob")
10359 (synopsis "Match file paths against Unix shell style patterns")
10360 (description
10361 "This package provides support for matching file paths against Unix
10362 shell style patterns.")
10363 (license (list license:asl2.0
10364 license:expat))))
10365
10366 (define-public rust-glob-0.2
10367 (package
10368 (inherit rust-glob-0.3)
10369 (name "rust-glob")
10370 (version "0.2.11")
10371 (source
10372 (origin
10373 (method url-fetch)
10374 (uri (crate-uri "glob" version))
10375 (file-name (string-append name "-" version ".crate"))
10376 (sha256
10377 (base32
10378 "1ysvi72slkw784fcsymgj4308c3y03gwjjzqxp80xdjnkbh8vqcb"))))))
10379
10380 (define-public rust-globset-0.4
10381 (package
10382 (name "rust-globset")
10383 (version "0.4.5")
10384 (source
10385 (origin
10386 (method url-fetch)
10387 (uri (crate-uri "globset" version))
10388 (file-name
10389 (string-append name "-" version ".tar.gz"))
10390 (sha256
10391 (base32
10392 "0841ihdg1ps2618cs0kjbr3pn3rzrj24rx3n4pg1sa6p1d1xmlbs"))))
10393 (build-system cargo-build-system)
10394 (arguments
10395 `(#:cargo-inputs
10396 (("rust-aho-corasick" ,rust-aho-corasick-0.7)
10397 ("rust-bstr" ,rust-bstr-0.2)
10398 ("rust-fnv" ,rust-fnv-1)
10399 ("rust-log" ,rust-log-0.4)
10400 ("rust-regex" ,rust-regex-1)
10401 ("rust-serde" ,rust-serde-1))
10402 #:cargo-development-inputs
10403 (("rust-glob" ,rust-glob-0.3)
10404 ("rust-lazy-static" ,rust-lazy-static-1)
10405 ("rust-serde-json" ,rust-serde-json-1))))
10406 (home-page
10407 "https://github.com/BurntSushi/ripgrep/tree/master/globset")
10408 (synopsis
10409 "Cross platform single glob and glob set matching")
10410 (description
10411 "Cross platform single glob and glob set matching. Glob set matching is
10412 the process of matching one or more glob patterns against a single candidate
10413 path simultaneously, and returning all of the globs that matched.")
10414 (license (list license:expat license:unlicense))))
10415
10416 (define-public rust-globwalk-0.8
10417 (package
10418 (name "rust-globwalk")
10419 (version "0.8.0")
10420 (source
10421 (origin
10422 (method url-fetch)
10423 (uri (crate-uri "globwalk" version))
10424 (file-name (string-append name "-" version ".tar.gz"))
10425 (sha256
10426 (base32
10427 "0ihld70ngnri1qd8sd61099yfzcl6iqn17rfa102q1bl6ck710hp"))))
10428 (build-system cargo-build-system)
10429 (arguments
10430 `(#:cargo-inputs
10431 (("rust-bitflags" ,rust-bitflags-1)
10432 ("rust-ignore" ,rust-ignore-0.4)
10433 ("rust-walkdir" ,rust-walkdir-2))
10434 #:cargo-development-inputs
10435 (("rust-backtrace" ,rust-backtrace-0.3.35)
10436 ("rust-docmatic" ,rust-docmatic-0.1)
10437 ("rust-tempdir" ,rust-tempdir-0.3))))
10438 (home-page "https://github.com/gilnaa/globwalk")
10439 (synopsis "Glob-matched recursive file system walking")
10440 (description "This package provides glob-matched recursive file system
10441 walking. Based on both @code{rust-walkdir} and @code{rust-ignore}, this crate
10442 inherits many goodies from both, such as limiting search depth and amount of
10443 open file descriptors.")
10444 (license license:expat)))
10445
10446 (define-public rust-globwalk-0.5
10447 (package
10448 (inherit rust-globwalk-0.8)
10449 (name "rust-globwalk")
10450 (version "0.5.0")
10451 (source
10452 (origin
10453 (method url-fetch)
10454 (uri (crate-uri "globwalk" version))
10455 (file-name
10456 (string-append name "-" version ".tar.gz"))
10457 (sha256
10458 (base32
10459 "09axyql26s09z60sgi3y3lkin9swy2b5km3b0v6mm84xhlljxyl9"))))
10460 (arguments
10461 `(#:cargo-inputs
10462 (("rust-ignore" ,rust-ignore-0.4)
10463 ("rust-walkdir" ,rust-walkdir-2))
10464 #:cargo-development-inputs
10465 (("rust-docmatic" ,rust-docmatic-0.1)
10466 ("rust-tempdir" ,rust-tempdir-0.3))))))
10467
10468 (define-public rust-goblin-0.2
10469 (package
10470 (name "rust-goblin")
10471 (version "0.2.1")
10472 (source
10473 (origin
10474 (method url-fetch)
10475 (uri (crate-uri "goblin" version))
10476 (file-name
10477 (string-append name "-" version ".tar.gz"))
10478 (sha256
10479 (base32
10480 "1j38fkqadbsjxawr3wnj9m0qaihcwp6pmfakmhsar881509y7mfx"))))
10481 (build-system cargo-build-system)
10482 (arguments
10483 `(#:skip-build? #t
10484 #:cargo-inputs
10485 (("rust-scroll" ,rust-scroll-0.10)
10486 ("rust-plain" ,rust-plain-0.2)
10487 ("rust-log" ,rust-log-0.4))))
10488 (home-page "https://github.com/m4b/goblin")
10489 (synopsis "ELF, Mach-o, and PE binary parsing and loading crate")
10490 (description "This package provides an ELF, Mach-o, and PE binary parsing
10491 and loading crate.")
10492 (license license:expat)))
10493
10494 (define-public rust-goblin-0.1
10495 (package
10496 (inherit rust-goblin-0.2)
10497 (name "rust-goblin")
10498 (version "0.1.3")
10499 (source
10500 (origin
10501 (method url-fetch)
10502 (uri (crate-uri "goblin" version))
10503 (file-name
10504 (string-append name "-" version ".tar.gz"))
10505 (sha256
10506 (base32
10507 "1nn0aa2jf207gbyccxnrzm7n217di025z5y1ybblp7nkk11j309h"))))
10508 (arguments
10509 `(#:skip-build? #t
10510 #:cargo-inputs
10511 (("rust-scroll" ,rust-scroll-0.10)
10512 ("rust-plain" ,rust-plain-0.2)
10513 ("rust-log" ,rust-log-0.4))))))
10514
10515 (define-public rust-goblin-0.0
10516 (package
10517 (name "rust-goblin")
10518 (version "0.0.23")
10519 (source
10520 (origin
10521 (method url-fetch)
10522 (uri (crate-uri "goblin" version))
10523 (file-name
10524 (string-append name "-" version ".tar.gz"))
10525 (sha256
10526 (base32
10527 "1g92bl76dgc3v3rins61l811pkwsl3jif1x35h2jx33b7dsv8mmc"))))
10528 (build-system cargo-build-system)
10529 (arguments
10530 `(#:skip-build? #t
10531 #:cargo-inputs
10532 (("rust-log" ,rust-log-0.4)
10533 ("rust-plain" ,rust-plain-0.2)
10534 ("rust-scroll" ,rust-scroll-0.9))))
10535 (home-page "https://github.com/m4b/goblin")
10536 (synopsis "Binary parsing and loading")
10537 (description
10538 "An impish, cross-platform, ELF, Mach-o, and PE binary parsing and
10539 loading crate.")
10540 (license license:expat)))
10541
10542 (define-public rust-grep-0.2
10543 (package
10544 (name "rust-grep")
10545 (version "0.2.7")
10546 (source
10547 (origin
10548 (method url-fetch)
10549 (uri (crate-uri "grep" version))
10550 (file-name
10551 (string-append name "-" version ".tar.gz"))
10552 (sha256
10553 (base32
10554 "0s3y1rx94swqnciz2zzifm8pmy2iyck270skgxhgkq7ab6x96bjq"))))
10555 (build-system cargo-build-system)
10556 (arguments
10557 `(#:skip-build? #t
10558 #:cargo-inputs
10559 (("rust-grep-cli" ,rust-grep-cli-0.1)
10560 ("rust-grep-matcher" ,rust-grep-matcher-0.1)
10561 ("rust-grep-pcre2" ,rust-grep-pcre2-0.1)
10562 ("rust-grep-printer" ,rust-grep-printer-0.1)
10563 ("rust-grep-regex" ,rust-grep-regex-0.1)
10564 ("rust-grep-searcher" ,rust-grep-searcher-0.1))
10565 #:cargo-development-inputs
10566 (("rust-termcolor" ,rust-termcolor-1)
10567 ("rust-walkdir" ,rust-walkdir-2))))
10568 (home-page "https://github.com/BurntSushi/ripgrep")
10569 (synopsis "Line oriented regex searching as a library")
10570 (description
10571 "Fast line oriented regex searching as a library.")
10572 (license (list license:unlicense license:expat))))
10573
10574 (define-public rust-grep-cli-0.1
10575 (package
10576 (name "rust-grep-cli")
10577 (version "0.1.5")
10578 (source
10579 (origin
10580 (method url-fetch)
10581 (uri (crate-uri "grep-cli" version))
10582 (file-name
10583 (string-append name "-" version ".tar.gz"))
10584 (sha256
10585 (base32
10586 "10mi7pkvlm5r478jhwlx15wlmqylq9fmkdg4qazz1xcifx7pi4im"))))
10587 (build-system cargo-build-system)
10588 (arguments
10589 `(#:cargo-inputs
10590 (("rust-atty" ,rust-atty-0.2)
10591 ("rust-bstr" ,rust-bstr-0.2)
10592 ("rust-globset" ,rust-globset-0.4)
10593 ("rust-lazy-static" ,rust-lazy-static-1)
10594 ("rust-log" ,rust-log-0.4)
10595 ("rust-regex" ,rust-regex-1)
10596 ("rust-same-file" ,rust-same-file-1.0)
10597 ("rust-termcolor" ,rust-termcolor-1)
10598 ("rust-winapi-util" ,rust-winapi-util-0.1))))
10599 (home-page
10600 "https://github.com/BurntSushi/ripgrep")
10601 (synopsis
10602 "Utilities for search oriented command line applications")
10603 (description
10604 "Utilities for search oriented command line applications.")
10605 (license license:expat)))
10606
10607 (define-public rust-grep-matcher-0.1
10608 (package
10609 (name "rust-grep-matcher")
10610 (version "0.1.4")
10611 (source
10612 (origin
10613 (method url-fetch)
10614 (uri (crate-uri "grep-matcher" version))
10615 (file-name
10616 (string-append name "-" version ".tar.gz"))
10617 (sha256
10618 (base32
10619 "0l4k9c0iw17vqw02z0wbx1nfj9h2xiiqx1px32lhhw7ibbyy3w7x"))))
10620 (build-system cargo-build-system)
10621 (arguments
10622 `(#:cargo-inputs
10623 (("rust-memchr" ,rust-memchr-2))
10624 #:cargo-development-inputs
10625 (("rust-regex" ,rust-regex-1))))
10626 (home-page "https://github.com/BurntSushi/ripgrep")
10627 (synopsis "Trait for regular expressions")
10628 (description
10629 "This crate provides a low level interface for describing regular
10630 expression matchers. The @code{grep} crate uses this interface in order to make
10631 the regex engine it uses pluggable.")
10632 (license (list license:expat license:unlicense))))
10633
10634 (define-public rust-grep-pcre2-0.1
10635 (package
10636 (name "rust-grep-pcre2")
10637 (version "0.1.4")
10638 (source
10639 (origin
10640 (method url-fetch)
10641 (uri (crate-uri "grep-pcre2" version))
10642 (file-name
10643 (string-append name "-" version ".tar.gz"))
10644 (sha256
10645 (base32
10646 "0sk8b188j81zfrmmy7jsq0pckydz42qf7w0pd2lwyfsa2nw4yksb"))))
10647 (build-system cargo-build-system)
10648 (arguments
10649 `(#:cargo-inputs
10650 (("rust-grep-matcher" ,rust-grep-matcher-0.1)
10651 ("rust-pcre2" ,rust-pcre2-0.2))))
10652 (native-inputs
10653 `(("pcre2" ,pcre2)
10654 ("pkg-config" ,pkg-config)))
10655 (home-page
10656 "https://github.com/BurntSushi/ripgrep")
10657 (synopsis "Use PCRE2 with the grep crate")
10658 (description "Use PCRE2 with the grep crate.")
10659 (license (list license:expat license:unlicense))))
10660
10661 (define-public rust-grep-printer-0.1
10662 (package
10663 (name "rust-grep-printer")
10664 (version "0.1.5")
10665 (source
10666 (origin
10667 (method url-fetch)
10668 (uri (crate-uri "grep-printer" version))
10669 (file-name
10670 (string-append name "-" version ".tar.gz"))
10671 (sha256
10672 (base32
10673 "004xv2bb52x801n0m1pknkdmzcjbi9fk9625m49y9s0ghh6d8d3z"))))
10674 (build-system cargo-build-system)
10675 (arguments
10676 `(#:cargo-inputs
10677 (("rust-base64" ,rust-base64-0.12)
10678 ("rust-bstr" ,rust-bstr-0.2)
10679 ("rust-grep-matcher" ,rust-grep-matcher-0.1)
10680 ("rust-grep-searcher" ,rust-grep-searcher-0.1)
10681 ("rust-serde" ,rust-serde-1)
10682 ("rust-serde-derive" ,rust-serde-derive-1)
10683 ("rust-serde-json" ,rust-serde-json-1)
10684 ("rust-termcolor" ,rust-termcolor-1))
10685 #:cargo-development-inputs
10686 (("rust-grep-regex" ,rust-grep-regex-0.1))))
10687 (home-page "https://github.com/BurntSushi/ripgrep")
10688 (synopsis "Standard printing of search results")
10689 (description
10690 "An implementation of the grep crate's Sink trait that provides
10691 standard printing of search results, similar to grep itself.")
10692 (license (list license:unlicense license:expat))))
10693
10694 (define-public rust-grep-regex-0.1
10695 (package
10696 (name "rust-grep-regex")
10697 (version "0.1.8")
10698 (source
10699 (origin
10700 (method url-fetch)
10701 (uri (crate-uri "grep-regex" version))
10702 (file-name
10703 (string-append name "-" version ".tar.gz"))
10704 (sha256
10705 (base32
10706 "1lm3mpp93m8qw6sgcqw64inadp0z061x3xb0pnn51684594mxfm7"))))
10707 (build-system cargo-build-system)
10708 (arguments
10709 `(#:cargo-inputs
10710 (("rust-aho-corasick" ,rust-aho-corasick-0.7)
10711 ("rust-bstr" ,rust-bstr-0.2)
10712 ("rust-grep-matcher" ,rust-grep-matcher-0.1)
10713 ("rust-log" ,rust-log-0.4)
10714 ("rust-regex" ,rust-regex-1)
10715 ("rust-regex-syntax" ,rust-regex-syntax-0.6)
10716 ("rust-thread-local" ,rust-thread-local-1.0))))
10717 (home-page "https://github.com/BurntSushi/ripgrep")
10718 (synopsis "Use Rust's regex library with the grep crate")
10719 (description
10720 "Use Rust's regex library with the grep crate.")
10721 (license (list license:unlicense license:expat))))
10722
10723 (define-public rust-grep-searcher-0.1
10724 (package
10725 (name "rust-grep-searcher")
10726 (version "0.1.7")
10727 (source
10728 (origin
10729 (method url-fetch)
10730 (uri (crate-uri "grep-searcher" version))
10731 (file-name
10732 (string-append name "-" version ".tar.gz"))
10733 (sha256
10734 (base32
10735 "06sb8n7nvaa4dnqnsx9jxvs78nnzmyp110cyzdvxnw09i4h7728r"))))
10736 (build-system cargo-build-system)
10737 (arguments
10738 `(#:cargo-inputs
10739 (("rust-bstr" ,rust-bstr-0.2)
10740 ("rust-bytecount" ,rust-bytecount-0.6)
10741 ("rust-encoding-rs" ,rust-encoding-rs-0.8)
10742 ("rust-encoding-rs-io" ,rust-encoding-rs-io-0.1)
10743 ("rust-grep-matcher" ,rust-grep-matcher-0.1)
10744 ("rust-log" ,rust-log-0.4)
10745 ("rust-memmap" ,rust-memmap-0.7))
10746 #:cargo-development-inputs
10747 (("rust-grep-regex" ,rust-grep-regex-0.1)
10748 ("rust-regex" ,rust-regex-1))))
10749 (home-page "https://github.com/BurntSushi/ripgrep")
10750 (synopsis "Line oriented regex searching as a library")
10751 (description
10752 "Fast line oriented regex searching as a library.")
10753 (license (list license:unlicense license:expat))))
10754
10755 (define-public rust-gzip-header-0.3
10756 (package
10757 (name "rust-gzip-header")
10758 (version "0.3.0")
10759 (source
10760 (origin
10761 (method url-fetch)
10762 (uri (crate-uri "gzip-header" version))
10763 (file-name
10764 (string-append name "-" version ".tar.gz"))
10765 (sha256
10766 (base32
10767 "0fg6vm8sgsm69szwqyz7abfbyziv6pv0jkcailimlamvsfrzwc81"))))
10768 (build-system cargo-build-system)
10769 (arguments
10770 `(#:cargo-inputs
10771 (("rust-crc32fast" ,rust-crc32fast-1))))
10772 (home-page "https://github.com/oyvindln/gzip-header")
10773 (synopsis "Decoding and encoding the header part of gzip files")
10774 (description
10775 "This package provides a crate for decoding and encoding the header part
10776 of gzip files based on the gzip header implementation in the @code{flate2} crate.")
10777 (license (list license:expat license:asl2.0))))
10778
10779 (define-public rust-h2-0.2
10780 (package
10781 (name "rust-h2")
10782 (version "0.2.6")
10783 (source
10784 (origin
10785 (method url-fetch)
10786 (uri (crate-uri "h2" version))
10787 (file-name (string-append name "-" version ".tar.gz"))
10788 (sha256
10789 (base32
10790 "0lvdrzn43iikl521dlrb7z96lsmy7l6nnm35ylf00q7dmq5rwgwr"))))
10791 (build-system cargo-build-system)
10792 (arguments
10793 `(#:cargo-inputs
10794 (("rust-bytes" ,rust-bytes-0.5)
10795 ("rust-fnv" ,rust-fnv-1)
10796 ("rust-futures-core" ,rust-futures-core-0.3)
10797 ("rust-futures-sink" ,rust-futures-sink-0.3)
10798 ("rust-futures-util" ,rust-futures-util-0.3)
10799 ("rust-http" ,rust-http-0.2)
10800 ("rust-indexmap" ,rust-indexmap-1)
10801 ("rust-slab" ,rust-slab-0.4)
10802 ("rust-tokio" ,rust-tokio-0.2)
10803 ("rust-tokio-util" ,rust-tokio-util-0.3)
10804 ("rust-tracing" ,rust-tracing-0.1))
10805 #:cargo-development-inputs
10806 (("rust-env-logger" ,rust-env-logger-0.5)
10807 ("rust-hex" ,rust-hex-0.2)
10808 ("rust-quickcheck" ,rust-quickcheck-0.4)
10809 ("rust-rand" ,rust-rand-0.3)
10810 ("rust-rustls" ,rust-rustls-0.16)
10811 ("rust-serde" ,rust-serde-1)
10812 ("rust-serde-json" ,rust-serde-json-1)
10813 ("rust-tokio" ,rust-tokio-0.2)
10814 ("rust-tokio-rustls" ,rust-tokio-rustls-0.12)
10815 ("rust-walkdir" ,rust-walkdir-1)
10816 ("rust-webpki" ,rust-webpki-0.21)
10817 ("rust-webpki-roots" ,rust-webpki-roots-0.17))))
10818 (home-page "https://github.com/hyperium/h2")
10819 (synopsis "HTTP/2.0 client and server")
10820 (description "This package provides an HTTP/2.0 client and server.")
10821 (license license:expat)))
10822
10823 (define-public rust-h2-0.1
10824 (package
10825 (inherit rust-h2-0.2)
10826 (name "rust-h2")
10827 (version "0.1.26")
10828 (source
10829 (origin
10830 (method url-fetch)
10831 (uri (crate-uri "h2" version))
10832 (file-name (string-append name "-" version ".tar.gz"))
10833 (sha256
10834 (base32 "0qn457y8xh03p7c7cpk76r22gqpyqxc58g5022j3iya7d0j4rcx5"))))
10835 (arguments
10836 `(#:skip-build? #t ;; TODO missing indirect dependency
10837 #:cargo-inputs
10838 (("rust-byteorder" ,rust-byteorder-1)
10839 ("rust-bytes" ,rust-bytes-0.4)
10840 ("rust-fnv" ,rust-fnv-1)
10841 ("rust-futures" ,rust-futures-0.1)
10842 ("rust-http" ,rust-http-0.1)
10843 ("rust-indexmap" ,rust-indexmap-1)
10844 ("rust-log" ,rust-log-0.4)
10845 ("rust-slab" ,rust-slab-0.4)
10846 ("rust-string" ,rust-string-0.2)
10847 ("rust-tokio-io" ,rust-tokio-io-0.1))
10848 #:cargo-development-inputs
10849 (("rust-env-logger" ,rust-env-logger-0.5)
10850 ("rust-hex" ,rust-hex-0.2)
10851 ("rust-quickcheck" ,rust-quickcheck-0.4)
10852 ("rust-rand" ,rust-rand-0.3)
10853 ;;("rust-rustls" ,rust-rustls-0.12) requires 0.5
10854 ("rust-serde" ,rust-serde-1)
10855 ("rust-serde-json" ,rust-serde-json-1)
10856 ("rust-tokio" ,rust-tokio-0.1)
10857 ("rust-tokio-rustls" ,rust-tokio-rustls-0.12)
10858 ("rust-walkdir" ,rust-walkdir-1)
10859 ("rust-webpki" ,rust-webpki-0.21)
10860 ("rust-webpki-roots" ,rust-webpki-roots-0.17))))))
10861
10862 (define-public rust-half-1
10863 (package
10864 (name "rust-half")
10865 (version "1.6.0")
10866 (source
10867 (origin
10868 (method url-fetch)
10869 (uri (crate-uri "half" version))
10870 (file-name
10871 (string-append name "-" version ".tar.gz"))
10872 (sha256
10873 (base32
10874 "0xq1qkbfwnxv72b2fakgi5ai0j8arw38whwxgxs3rp1fz28anvyk"))))
10875 (build-system cargo-build-system)
10876 (arguments
10877 `(#:cargo-inputs
10878 (("rust-serde" ,rust-serde-1))
10879 #:cargo-development-inputs
10880 (("rust-criterion" ,rust-criterion-0.3)
10881 ("rust-quickcheck" ,rust-quickcheck-0.9)
10882 ("rust-quickcheck-macros" ,rust-quickcheck-macros-0.9)
10883 ("rust-rand" ,rust-rand-0.7)
10884 ("rust-version-sync" ,rust-version-sync-0.8))))
10885 (home-page "https://github.com/starkat99/half-rs")
10886 (synopsis "Half-precision floating point f16 type")
10887 (description
10888 "Half-precision floating point f16 type for Rust implementing the
10889 IEEE 754-2008 binary16 type.")
10890 (license (list license:expat license:asl2.0))))
10891
10892 (define-public rust-handlebars-2.0
10893 (package
10894 (name "rust-handlebars")
10895 (version "2.0.4")
10896 (source
10897 (origin
10898 (method url-fetch)
10899 (uri (crate-uri "handlebars" version))
10900 (file-name
10901 (string-append name "-" version ".tar.gz"))
10902 (sha256
10903 (base32
10904 "1m99gwjd7q7q79bk4f716wsdvcyhsrcsq4vbzcavbkmc48d194mg"))))
10905 (build-system cargo-build-system)
10906 (arguments
10907 `(#:skip-build? #t
10908 #:cargo-inputs
10909 (("rust-hashbrown" ,rust-hashbrown-0.5)
10910 ("rust-log" ,rust-log-0.4)
10911 ("rust-pest" ,rust-pest-2)
10912 ("rust-pest-derive" ,rust-pest-derive-2)
10913 ("rust-quick-error" ,rust-quick-error-1.2)
10914 ("rust-serde" ,rust-serde-1)
10915 ("rust-serde-json" ,rust-serde-json-1)
10916 ("rust-walkdir" ,rust-walkdir-2))
10917 #:cargo-development-inputs
10918 (("rust-criterion" ,rust-criterion-0.2)
10919 ("rust-env-logger" ,rust-env-logger-0.6)
10920 ("rust-maplit" ,rust-maplit-1.0)
10921 ("rust-serde-derive" ,rust-serde-derive-1)
10922 ("rust-tempfile" ,rust-tempfile-3))))
10923 (home-page "https://github.com/sunng87/handlebars-rust")
10924 (synopsis "Handlebars templating implemented in Rust")
10925 (description
10926 "This package provides handlebars templating implemented in Rust. It is
10927 the template engine that renders the official Rust website")
10928 (license license:expat)))
10929
10930 (define-public rust-hash32-0.1
10931 (package
10932 (name "rust-hash32")
10933 (version "0.1.1")
10934 (source
10935 (origin
10936 (method url-fetch)
10937 (uri (crate-uri "hash32" version))
10938 (file-name (string-append name "-" version ".tar.gz"))
10939 (sha256
10940 (base32
10941 "1k7lv7hsbzv14pz90cxay6v7avh6d6kcrra0rsc45b33dvw1l16l"))))
10942 (build-system cargo-build-system)
10943 (arguments
10944 `(#:cargo-inputs
10945 (("rust-byteorder" ,rust-byteorder-1))
10946 #:cargo-development-inputs
10947 (("rust-hash32-derive" ,rust-hash32-derive-0.1))))
10948 (home-page "https://github.com/japaric/hash32")
10949 (synopsis "32-bit hashing machinery")
10950 (description "This package provides 32-bit hashing machinery.")
10951 (license (list license:expat license:asl2.0))))
10952
10953 (define-public rust-hash32-derive-0.1
10954 (package
10955 (name "rust-hash32-derive")
10956 (version "0.1.0")
10957 (source
10958 (origin
10959 (method url-fetch)
10960 (uri (crate-uri "hash32-derive" version))
10961 (file-name (string-append name "-" version ".tar.gz"))
10962 (sha256
10963 (base32
10964 "18lrlxycq45kaz0l688shxnhgh3ryjp3zn0n6vfcs5sa2nyyzh7b"))))
10965 (build-system cargo-build-system)
10966 (arguments
10967 `(#:cargo-inputs
10968 (("rust-proc-macro2" ,rust-proc-macro2-0.3)
10969 ("rust-quote" ,rust-quote-0.5)
10970 ("rust-syn" ,rust-syn-0.13))))
10971 (home-page "https://github.com/japaric/hash32")
10972 (synopsis "Macros 1.1 implementation of @code{#[derive(Hash32)]}")
10973 (description "This package provides a macros 1.1 implementation of
10974 @code{#[derive(Hash32)]}.")
10975 (license (list license:expat license:asl2.0))))
10976
10977 (define-public rust-hashbrown-0.8
10978 (package
10979 (name "rust-hashbrown")
10980 (version "0.8.0")
10981 (source
10982 (origin
10983 (method url-fetch)
10984 (uri (crate-uri "hashbrown" version))
10985 (file-name (string-append name "-" version ".tar.gz"))
10986 (sha256
10987 (base32
10988 "09y86zmf59n6ys9yf2bvg9ckwwa1ijv2i3flkz45iqkwfmh7i6xb"))))
10989 (build-system cargo-build-system)
10990 (arguments
10991 `(#:cargo-inputs
10992 (("rust-ahash" ,rust-ahash-0.3)
10993 ("rust-compiler-builtins" ,rust-compiler-builtins-0.1)
10994 ("rust-rayon" ,rust-rayon-1)
10995 ("rust-rustc-std-workspace-alloc" ,rust-rustc-std-workspace-alloc-1)
10996 ("rust-rustc-std-workspace-core" ,rust-rustc-std-workspace-core-1)
10997 ("rust-serde" ,rust-serde-1))
10998 #:cargo-development-inputs
10999 (("rust-doc-comment" ,rust-doc-comment-0.3)
11000 ("rust-lazy-static" ,rust-lazy-static-1)
11001 ("rust-rand" ,rust-rand-0.7)
11002 ("rust-rayon" ,rust-rayon-1)
11003 ("rust-rustc-hash" ,rust-rustc-hash-1.0)
11004 ("rust-serde-test" ,rust-serde-test-1))))
11005 (home-page "https://github.com/rust-lang/hashbrown")
11006 (synopsis "Rust port of Google's SwissTable hash map")
11007 (description "This package provides a Rust port of Google's SwissTable
11008 hash map.")
11009 (license (list license:asl2.0 license:expat))))
11010
11011 (define-public rust-hashbrown-0.5
11012 (package
11013 (inherit rust-hashbrown-0.8)
11014 (name "rust-hashbrown")
11015 (version "0.5.0")
11016 (source
11017 (origin
11018 (method url-fetch)
11019 (uri (crate-uri "hashbrown" version))
11020 (file-name
11021 (string-append name "-" version ".tar.gz"))
11022 (sha256
11023 (base32
11024 "0lr3gsicplw7czapsscmii87hgzpvxf5ch92v7pi95xsipxl3pp1"))))
11025 (arguments
11026 `(#:skip-build? #t
11027 #:cargo-inputs
11028 (("rust-compiler-builtins" ,rust-compiler-builtins-0.1)
11029 ("rust-rayon" ,rust-rayon-1)
11030 ("rust-rustc-std-workspace-alloc" ,rust-rustc-std-workspace-alloc-1)
11031 ("rust-rustc-std-workspace-core" ,rust-rustc-std-workspace-core-1)
11032 ("rust-serde" ,rust-serde-1))
11033 #:cargo-development-inputs
11034 (("rust-lazy-static" ,rust-lazy-static-1)
11035 ("rust-rand" ,rust-rand-0.5)
11036 ("rust-rayon" ,rust-rayon-1)
11037 ("rust-rustc-hash" ,rust-rustc-hash-1)
11038 ("rust-serde-test" ,rust-serde-test-1))))))
11039
11040 (define-public rust-heapless-0.5
11041 (package
11042 (name "rust-heapless")
11043 (version "0.5.5")
11044 (source
11045 (origin
11046 (method url-fetch)
11047 (uri (crate-uri "heapless" version))
11048 (file-name (string-append name "-" version ".tar.gz"))
11049 (sha256
11050 (base32
11051 "1h1d6s1f9zn0rz2vkdn0b42kcnkmlpd90yhfyqqhpirv38ws5a3k"))))
11052 (build-system cargo-build-system)
11053 (arguments
11054 `(#:cargo-inputs
11055 (("rust-as-slice" ,rust-as-slice-0.1)
11056 ("rust-generic-array" ,rust-generic-array-0.13)
11057 ("rust-hash32" ,rust-hash32-0.1)
11058 ("rust-serde" ,rust-serde-1)
11059 ("rust-stable-deref-trait" ,rust-stable-deref-trait-1)
11060 ("rust-ufmt-write" ,rust-ufmt-write-0.1))
11061 #:cargo-development-inputs
11062 (("rust-scoped-threadpool" ,rust-scoped-threadpool-0.1)
11063 ("rust-ufmt" ,rust-ufmt-0.1))))
11064 (home-page "https://github.com/japaric/heapless")
11065 (synopsis "@code{statice} friendly data structures")
11066 (description "This package provides @code{static} friendly data structures
11067 that don't require dynamic memory allocation.")
11068 (license (list license:expat license:asl2.0))))
11069
11070 (define-public rust-heapsize-0.4
11071 (package
11072 (name "rust-heapsize")
11073 (version "0.4.2")
11074 (source
11075 (origin
11076 (method url-fetch)
11077 (uri (crate-uri "heapsize" version))
11078 (file-name (string-append name "-" version ".crate"))
11079 (sha256
11080 (base32
11081 "0q94q9ppqjgrw71swiyia4hgby2cz6dldp7ij57nkvhd6zmfcy8n"))))
11082 (build-system cargo-build-system)
11083 (arguments
11084 `(#:skip-build? #t
11085 #:cargo-inputs (("rust-winapi" ,rust-winapi-0.3))))
11086 (home-page "https://github.com/servo/heapsize")
11087 (synopsis "Measure the total runtime size of an object on the heap")
11088 (description
11089 "Infrastructure for measuring the total runtime size of an object on the
11090 heap.")
11091 (license (list license:asl2.0
11092 license:expat))))
11093
11094 (define-public rust-heapsize-0.3
11095 (package
11096 (inherit rust-heapsize-0.4)
11097 (name "rust-heapsize")
11098 (version "0.3.9")
11099 (source
11100 (origin
11101 (method url-fetch)
11102 (uri (crate-uri "heapsize" version))
11103 (file-name (string-append name "-" version ".crate"))
11104 (sha256
11105 (base32
11106 "0dmwc37vgsdjzk10443dj4f23439i9gch28jcwzmry3chrwx8v2m"))))
11107 (arguments
11108 `(#:skip-build? #t
11109 #:cargo-inputs (("rust-kernel32-sys" ,rust-kernel32-sys-0.2))))))
11110
11111 ;; This package makes use of removed features
11112 (define-public rust-heapsize-plugin-0.1
11113 (package
11114 (name "rust-heapsize-plugin")
11115 (version "0.1.6")
11116 (source
11117 (origin
11118 (method url-fetch)
11119 (uri (crate-uri "heapsize_plugin" version))
11120 (file-name (string-append name "-" version ".crate"))
11121 (sha256
11122 (base32
11123 "1i72isf699q9jl167g2kg4xd6h3cd05rc79zaph58aqjy0g0m9y9"))))
11124 (build-system cargo-build-system)
11125 (arguments
11126 `(#:skip-build? #t
11127 #:cargo-inputs (("rust-heapsize" ,rust-heapsize-0.3))))
11128 (home-page "https://github.com/servo/heapsize")
11129 (synopsis "Measure runtime size of an object on the heap")
11130 (description
11131 "This package automatically generates infrastructure for measuring the
11132 total runtime size of an object on the heap")
11133 (license license:mpl2.0)))
11134
11135 (define-public rust-heck-0.3
11136 (package
11137 (name "rust-heck")
11138 (version "0.3.1")
11139 (source
11140 (origin
11141 (method url-fetch)
11142 (uri (crate-uri "heck" version))
11143 (file-name (string-append name "-" version ".crate"))
11144 (sha256
11145 (base32
11146 "01a2v7yvkiqxakdqz4hw3w3g4sm52ivz9cs3qcsv2arxsmw4wmi0"))))
11147 (build-system cargo-build-system)
11148 (arguments
11149 `(#:skip-build? #t
11150 #:cargo-inputs
11151 (("rust-unicode-segmentation" ,rust-unicode-segmentation-1.3))))
11152 (home-page "https://github.com/withoutboats/heck")
11153 (synopsis "Case conversion library")
11154 (description
11155 "This library exists to provide case conversion between common cases like
11156 CamelCase and snake_case. It is intended to be unicode aware, internally
11157 consistent, and reasonably well performing.")
11158 (license (list license:asl2.0
11159 license:expat))))
11160
11161 (define-public rust-hermit-abi-0.1
11162 (package
11163 (name "rust-hermit-abi")
11164 (version "0.1.10")
11165 (source
11166 (origin
11167 (method url-fetch)
11168 (uri (crate-uri "hermit-abi" version))
11169 (file-name
11170 (string-append name "-" version ".tar.gz"))
11171 (sha256
11172 (base32
11173 "0blmmzik5cs79ivq70s9gal8ypgzj50wnl2hwsaam46gjjbz2p3j"))))
11174 (build-system cargo-build-system)
11175 (arguments
11176 `(#:skip-build? #t
11177 #:cargo-inputs
11178 (("rust-compiler-builtins" ,rust-compiler-builtins-0.1)
11179 ("rust-libc" ,rust-libc-0.2)
11180 ("rust-rustc-std-workspace-core" ,rust-rustc-std-workspace-core-1))))
11181 (home-page "https://github.com/hermitcore/rusty-hermit")
11182 (synopsis "Small interface to call functions from RustyHermit")
11183 (description
11184 "Hermit-abi is small interface to call functions from the unikernel RustyHermit.
11185 It is used to build the target x86_64-unknown-hermit.")
11186 (license (list license:expat license:asl2.0))))
11187
11188 (define-public rust-hex-0.4
11189 (package
11190 (name "rust-hex")
11191 (version "0.4.0")
11192 (source
11193 (origin
11194 (method url-fetch)
11195 (uri (crate-uri "hex" version))
11196 (file-name
11197 (string-append name "-" version ".tar.gz"))
11198 (sha256
11199 (base32
11200 "0glsfrx2pxfsf6ivxj7vfrvd7g78j4z47ssgm5idm8p376z3jfq2"))))
11201 (build-system cargo-build-system)
11202 (arguments '(#:skip-build? #t))
11203 (home-page "https://github.com/KokaKiwi/rust-hex")
11204 (synopsis "Encode and decode data to/from hexadecimals")
11205 (description "This crate allows for encoding and decoding data into/from
11206 hexadecimal representation.")
11207 (license (list license:asl2.0
11208 license:expat))))
11209
11210 (define-public rust-hex-0.3
11211 (package
11212 (inherit rust-hex-0.4)
11213 (name "rust-hex")
11214 (version "0.3.2")
11215 (source
11216 (origin
11217 (method url-fetch)
11218 (uri (crate-uri "hex" version))
11219 (file-name (string-append name "-" version ".crate"))
11220 (sha256
11221 (base32
11222 "0xsdcjiik5j750j67zk42qdnmm4ahirk3gmkmcqgq7qls2jjcl40"))))))
11223
11224 (define-public rust-hex-0.2
11225 (package
11226 (inherit rust-hex-0.4)
11227 (name "rust-hex")
11228 (version "0.2.0")
11229 (source
11230 (origin
11231 (method url-fetch)
11232 (uri (crate-uri "hex" version))
11233 (file-name (string-append name "-" version ".crate"))
11234 (sha256
11235 (base32 "1ajkw40qzn2ygnqjj9w584f6l31wi318258n84pn2hax8la2i8nn"))))))
11236
11237 (define-public rust-hex-literal-0.2
11238 (package
11239 (name "rust-hex-literal")
11240 (version "0.2.1")
11241 (source
11242 (origin
11243 (method url-fetch)
11244 (uri (crate-uri "hex-literal" version))
11245 (file-name
11246 (string-append name "-" version ".tar.gz"))
11247 (sha256
11248 (base32
11249 "1q36f0qq31ggh4ipcwb7a5g6jmci2010vn2v3qpaz4csxhhf47cn"))))
11250 (build-system cargo-build-system)
11251 (arguments
11252 `(#:cargo-inputs
11253 (("rust-hex-literal-impl" ,rust-hex-literal-impl-0.2)
11254 ("rust-proc-macro-hack" ,rust-proc-macro-hack-0.5))))
11255 (home-page "https://github.com/RustCrypto/utils")
11256 (synopsis
11257 "Convert hexadecimal string to byte array at compile time")
11258 (description
11259 "Procedural macro for converting hexadecimal string to byte array at
11260 compile time.")
11261 (license (list license:asl2.0 license:expat))))
11262
11263 (define-public rust-hex-literal-0.1
11264 (package
11265 (inherit rust-hex-literal-0.2)
11266 (name "rust-hex-literal")
11267 (version "0.1.4")
11268 (source
11269 (origin
11270 (method url-fetch)
11271 (uri (crate-uri "hex-literal" version))
11272 (file-name
11273 (string-append name "-" version ".tar.gz"))
11274 (sha256
11275 (base32
11276 "0ffnn5g9q5xhdmzj2ic5hk9y18kyqflbmqcssqcya9gixs5r5hnx"))))
11277 (arguments
11278 `(#:cargo-inputs
11279 (("rust-hex-literal-impl" ,rust-hex-literal-impl-0.1)
11280 ("rust-proc-macro-hack" ,rust-proc-macro-hack-0.4))))))
11281
11282 (define-public rust-hex-literal-impl-0.2
11283 (package
11284 (name "rust-hex-literal-impl")
11285 (version "0.2.1")
11286 (source
11287 (origin
11288 (method url-fetch)
11289 (uri (crate-uri "hex-literal-impl" version))
11290 (file-name
11291 (string-append name "-" version ".tar.gz"))
11292 (sha256
11293 (base32
11294 "0bgldhp5gdwwnikfdxigmz9b64qpgwbjqk6mfgv0pvig9s25qk4x"))))
11295 (build-system cargo-build-system)
11296 (arguments
11297 `(#:cargo-inputs
11298 (("rust-proc-macro-hack" ,rust-proc-macro-hack-0.5))))
11299 (home-page "https://github.com/RustCrypto/utils")
11300 (synopsis "Internal implementation of the hex-literal crate")
11301 (description
11302 "Internal implementation of the hex-literal crate.")
11303 (license (list license:asl2.0 license:expat))))
11304
11305 (define-public rust-hex-literal-impl-0.1
11306 (package
11307 (inherit rust-hex-literal-impl-0.2)
11308 (name "rust-hex-literal-impl")
11309 (version "0.1.2")
11310 (source
11311 (origin
11312 (method url-fetch)
11313 (uri (crate-uri "hex-literal-impl" version))
11314 (file-name
11315 (string-append name "-" version ".tar.gz"))
11316 (sha256
11317 (base32
11318 "1nnxqhyn9l998ma04ip79bmpqv1as6003s03g26ynhrr471p022j"))))
11319 (arguments
11320 `(#:cargo-inputs
11321 (("rust-proc-macro-hack" ,rust-proc-macro-hack-0.4))))))
11322
11323 (define-public rust-hkdf-0.9
11324 (package
11325 (name "rust-hkdf")
11326 (version "0.9.0")
11327 (source
11328 (origin
11329 (method url-fetch)
11330 (uri (crate-uri "hkdf" version))
11331 (file-name (string-append name "-" version ".tar.gz"))
11332 (sha256
11333 (base32
11334 "1jdvmf8aadk3s0kn9kk3dj00nprjk9glks5f8dm55r43af34j4gy"))))
11335 (build-system cargo-build-system)
11336 (arguments
11337 `(#:cargo-inputs
11338 (("rust-digest" ,rust-digest-0.9)
11339 ("rust-hmac" ,rust-hmac-0.8))
11340 #:cargo-development-inputs
11341 (("rust-bencher" ,rust-bencher-0.1)
11342 ("rust-crypto-tests" ,rust-crypto-tests-0.5)
11343 ("rust-hex" ,rust-hex-0.4)
11344 ("rust-sha-1" ,rust-sha-1-0.9)
11345 ("rust-sha2" ,rust-sha2-0.9))))
11346 (home-page "https://github.com/RustCrypto/KDFs/")
11347 (synopsis "HMAC-based Extract-and-Expand Key Derivation Function (HKDF)")
11348 (description "This package provides a HMAC-based Extract-and-Expand Key
11349 Derivation Function (HKDF).")
11350 (license (list license:expat license:asl2.0))))
11351
11352 (define-public rust-hmac-0.8
11353 (package
11354 (name "rust-hmac")
11355 (version "0.8.1")
11356 (source
11357 (origin
11358 (method url-fetch)
11359 (uri (crate-uri "hmac" version))
11360 (file-name
11361 (string-append name "-" version ".tar.gz"))
11362 (sha256
11363 (base32
11364 "0h48wc7iysh4xd6ci4prh8bb7nszijrh9w3blaaq8a6cilk8hs0j"))))
11365 (build-system cargo-build-system)
11366 (arguments
11367 `(#:cargo-inputs
11368 (("rust-crypto-mac" ,rust-crypto-mac-0.8)
11369 ("rust-digest" ,rust-digest-0.9))
11370 #:cargo-development-inputs
11371 (("rust-crypto-mac" ,rust-crypto-mac-0.8)
11372 ("rust-md-5" ,rust-md-5-0.9)
11373 ("rust-sha2" ,rust-sha2-0.9))))
11374 (home-page "https://github.com/RustCrypto/MACs")
11375 (synopsis "Generic implementation of Hash-based Message Authentication Code")
11376 (description
11377 "This package provides a generic implementation of @acronym{HMAC,
11378 Hash-based Message Authentication Code}.")
11379 (license (list license:expat license:asl2.0))))
11380
11381 (define-public rust-hmac-0.7
11382 (package
11383 (inherit rust-hmac-0.8)
11384 (name "rust-hmac")
11385 (version "0.7.1")
11386 (source
11387 (origin
11388 (method url-fetch)
11389 (uri (crate-uri "hmac" version))
11390 (file-name
11391 (string-append name "-" version ".tar.gz"))
11392 (sha256
11393 (base32
11394 "15cnwpssp2n1kdm9x7abir67f2hp3q6rdfj1mcck3hm4rmj5xjsx"))))
11395 (arguments
11396 `(#:cargo-inputs
11397 (("rust-crypto-mac" ,rust-crypto-mac-0.7)
11398 ("rust-digest" ,rust-digest-0.8))
11399 #:cargo-development-inputs
11400 (("rust-crypto-mac" ,rust-crypto-mac-0.7)
11401 ("rust-md-5" ,rust-md-5-0.8)
11402 ("rust-sha2" ,rust-sha2-0.8))))))
11403
11404 (define-public rust-hostname-0.3
11405 (package
11406 (name "rust-hostname")
11407 (version "0.3.1")
11408 (source
11409 (origin
11410 (method url-fetch)
11411 (uri (crate-uri "hostname" version))
11412 (file-name
11413 (string-append name "-" version ".tar.gz"))
11414 (sha256
11415 (base32
11416 "0rz8yf70cvzl3nry71m4bz9w6x4j9kdz3qng6pnwhk2h20z1qwrw"))))
11417 (build-system cargo-build-system)
11418 (arguments
11419 `(#:cargo-inputs
11420 (("rust-libc" ,rust-libc-0.2)
11421 ("rust-match-cfg" ,rust-match-cfg-0.1)
11422 ("rust-winapi" ,rust-winapi-0.3))
11423 #:cargo-development-inputs
11424 (("rust-version-sync" ,rust-version-sync-0.8))))
11425 (home-page "https://github.com/svartalf/hostname")
11426 (synopsis "Get hostname for Rust")
11427 (description
11428 "Get hostname for Rust.")
11429 (license license:expat)))
11430
11431 (define-public rust-hostname-0.1
11432 (package
11433 (inherit rust-hostname-0.3)
11434 (name "rust-hostname")
11435 (version "0.1.5")
11436 (source
11437 (origin
11438 (method url-fetch)
11439 (uri (crate-uri "hostname" version))
11440 (file-name (string-append name "-" version ".crate"))
11441 (sha256
11442 (base32
11443 "0kprf862qaa7lwdms6aw7f3275h0j2rwhs9nz5784pm8hdmb9ki1"))))
11444 (arguments
11445 `(#:skip-build? #t
11446 #:cargo-inputs
11447 (("rust-libc" ,rust-libc-0.2)
11448 ("rust-winutil" ,rust-winutil-0.1))))))
11449
11450 (define-public rust-html5ever-0.24
11451 (package
11452 (name "rust-html5ever")
11453 (version "0.24.1")
11454 (source
11455 (origin
11456 (method url-fetch)
11457 (uri (crate-uri "html5ever" version))
11458 (file-name
11459 (string-append name "-" version ".tar.gz"))
11460 (sha256
11461 (base32 "1js4cr04941ld4r4fqpblvfigy75ds48qcbqhnr7nmz4l6q86m02"))))
11462 (build-system cargo-build-system)
11463 (arguments
11464 `(#:cargo-inputs
11465 (("rust-log" ,rust-log-0.4)
11466 ("rust-mac" ,rust-mac-0.1)
11467 ("rust-markup5ever" ,rust-markup5ever-0.9)
11468 ("rust-proc-macro2" ,rust-proc-macro2-0.4)
11469 ("rust-quote" ,rust-quote-0.6)
11470 ("rust-syn" ,rust-syn-0.15))
11471 #:cargo-development-inputs
11472 (("rust-criterion" ,rust-criterion-0.2)
11473 ("rust-rustc-serialize" ,rust-rustc-serialize-0.3)
11474 ("rust-rustc-test" ,rust-rustc-test-0.3)
11475 ("rust-typed-arena" ,rust-typed-arena-1.4))))
11476 (home-page "https://github.com/servo/html5ever")
11477 (synopsis "High-performance browser-grade HTML5 parser")
11478 (description
11479 "High-performance browser-grade HTML5 parser.")
11480 (license (list license:asl2.0 license:expat))))
11481
11482 (define-public rust-html5ever-0.23
11483 (package/inherit rust-html5ever-0.24
11484 (name "rust-html5ever")
11485 (version "0.23.0")
11486 (source
11487 (origin
11488 (method url-fetch)
11489 (uri (crate-uri "html5ever" version))
11490 (file-name (string-append name "-" version ".tar.gz"))
11491 (sha256
11492 (base32 "1dx8k7synrmf3fl6gcfm5q1cybfglvhc9xnvly3s5xcc0b45mrjw"))))
11493 (arguments
11494 `(#:cargo-inputs
11495 (("rust-log" ,rust-log-0.4)
11496 ("rust-mac" ,rust-mac-0.1)
11497 ("rust-markup5ever" ,rust-markup5ever-0.8)
11498 ("rust-proc-macro2" ,rust-proc-macro2-0.4)
11499 ("rust-quote" ,rust-quote-0.6)
11500 ("rust-syn" ,rust-syn-0.15))
11501 #:cargo-development-inputs
11502 (("rust-criterion" ,rust-criterion-0.2)
11503 ("rust-rustc-serialize" ,rust-rustc-serialize-0.3)
11504 ("rust-rustc-test" ,rust-rustc-test-0.3)
11505 ("rust-typed-arena" ,rust-typed-arena-1.4))))))
11506
11507 (define-public rust-http-0.2
11508 (package
11509 (name "rust-http")
11510 (version "0.2.1")
11511 (source
11512 (origin
11513 (method url-fetch)
11514 (uri (crate-uri "http" version))
11515 (file-name (string-append name "-" version ".tar.gz"))
11516 (sha256
11517 (base32 "1y827q7j0gvs8z2x12biaik9db6nb902lpqv889cbcj84sbnkm98"))))
11518 (build-system cargo-build-system)
11519 (arguments
11520 `(#:cargo-inputs
11521 (("rust-bytes" ,rust-bytes-0.5)
11522 ("rust-fnv" ,rust-fnv-1)
11523 ("rust-itoa" ,rust-itoa-0.4))
11524 #:cargo-development-inputs
11525 (("rust-doc-comment" ,rust-doc-comment-0.3)
11526 ("rust-indexmap" ,rust-indexmap-1)
11527 ("rust-quickcheck" ,rust-quickcheck-0.9)
11528 ("rust-rand" ,rust-rand-0.7)
11529 ("rust-seahash" ,rust-seahash-3)
11530 ("rust-serde" ,rust-serde-1)
11531 ("rust-serde-json" ,rust-serde-json-1))))
11532 (home-page "https://github.com/hyperium/http")
11533 (synopsis "Set of types for representing HTTP requests and responses")
11534 (description "This package provides a set of types for representing HTTP
11535 requests and responses.")
11536 (license (list license:asl2.0 license:expat))))
11537
11538 (define-public rust-http-0.1
11539 (package/inherit rust-http-0.2
11540 (name "rust-http")
11541 (version "0.1.17")
11542 (source
11543 (origin
11544 (method url-fetch)
11545 (uri (crate-uri "http" version))
11546 (file-name
11547 (string-append name "-" version ".tar.gz"))
11548 (sha256
11549 (base32
11550 "06icxvrd26r6s7dzjavja7r47hgjb9851wblqh8frxnsy3q29lzf"))))
11551 (arguments
11552 `(#:cargo-inputs
11553 (("rust-bytes" ,rust-bytes-0.4)
11554 ("rust-fnv" ,rust-fnv-1)
11555 ("rust-itoa" ,rust-itoa-0.4))
11556 #:cargo-development-inputs
11557 (("rust-indexmap" ,rust-indexmap-1)
11558 ("rust-quickcheck" ,rust-quickcheck-0.6)
11559 ("rust-rand" ,rust-rand-0.4)
11560 ("rust-seahash" ,rust-seahash-3)
11561 ("rust-serde" ,rust-serde-1)
11562 ("rust-serde-json" ,rust-serde-json-1))))))
11563
11564 (define-public rust-http-body-0.3
11565 (package
11566 (name "rust-http-body")
11567 (version "0.3.1")
11568 (source
11569 (origin
11570 (method url-fetch)
11571 (uri (crate-uri "http-body" version))
11572 (file-name (string-append name "-" version ".tar.gz"))
11573 (sha256
11574 (base32 "06qi0ni45lb92w3ml260c0bxbq5zd4snjmz0a9k69xq6021zzm8k"))))
11575 (build-system cargo-build-system)
11576 (arguments
11577 `(#:cargo-inputs
11578 (("rust-bytes" ,rust-bytes-0.5)
11579 ("rust-http" ,rust-http-0.2))))
11580 (home-page "https://github.com/hyperium/http-body")
11581 (synopsis "Asynchronous, streaming, HTTP request or response body")
11582 (description "Trait representing an asynchronous, streaming, HTTP request
11583 or response body.")
11584 (license license:expat)))
11585
11586 (define-public rust-http-body-0.1
11587 (package/inherit rust-http-body-0.3
11588 (name "rust-http-body")
11589 (version "0.1.0")
11590 (source
11591 (origin
11592 (method url-fetch)
11593 (uri (crate-uri "http-body" version))
11594 (file-name (string-append name "-" version ".tar.gz"))
11595 (sha256
11596 (base32 "0b99404k4mw6a92hvyr0qwzkqv4f866ykg0x7913limjq5cwhhb7"))))
11597 (build-system cargo-build-system)
11598 (arguments
11599 `(#:cargo-inputs
11600 (("rust-bytes" ,rust-bytes-0.4)
11601 ("rust-futures" ,rust-futures-0.1)
11602 ("rust-http" ,rust-http-0.1)
11603 ("rust-tokio-buf" ,rust-tokio-buf-0.1))))))
11604
11605 (define-public rust-http-req-0.5
11606 (package
11607 (name "rust-http-req")
11608 (version "0.5.4")
11609 (source
11610 (origin
11611 (method url-fetch)
11612 (uri (crate-uri "http_req" version))
11613 (file-name
11614 (string-append name "-" version ".tar.gz"))
11615 (sha256
11616 (base32
11617 "0qaw43nwvvxbnqddxhb9fh9316dn64nmkzj08pq8n49qdy51xrys"))))
11618 (build-system cargo-build-system)
11619 (arguments
11620 `(#:skip-build? #t
11621 #:cargo-inputs
11622 ;; Haven't packaged rustls and webpki because of license
11623 (("rust-native-tls" ,rust-native-tls-0.2)
11624 ("rust-unicase" ,rust-unicase-2))))
11625 (home-page "https://github.com/jayjamesjay/http_req")
11626 (synopsis
11627 "HTTP client with built-in HTTPS support")
11628 (description
11629 "Simple and lightweight HTTP client with built-in HTTPS support.")
11630 (license license:expat)))
11631
11632 (define-public rust-httparse-1
11633 (package
11634 (name "rust-httparse")
11635 (version "1.3.3")
11636 (source
11637 (origin
11638 (method url-fetch)
11639 (uri (crate-uri "httparse" version))
11640 (file-name
11641 (string-append name "-" version ".tar.gz"))
11642 (sha256
11643 (base32
11644 "10vsfx1b8drhif08fbi0ha9d3v1f3h80w42rxh0y3hrvzl64nwz8"))))
11645 (build-system cargo-build-system)
11646 (arguments
11647 `(#:skip-build? #t
11648 #:cargo-development-inputs
11649 (("rust-pico-sys" ,rust-pico-sys-0.0))))
11650 (home-page "https://github.com/seanmonstar/httparse")
11651 (synopsis "Zero-copy HTTP/1.x parser")
11652 (description
11653 "This package provides a tiny, safe, speedy, zero-copy HTTP/1.x parser.")
11654 (license (list license:asl2.0 license:expat))))
11655
11656 (define-public rust-humansize-1
11657 (package
11658 (name "rust-humansize")
11659 (version "1.1.0")
11660 (source
11661 (origin
11662 (method url-fetch)
11663 (uri (crate-uri "humansize" version))
11664 (file-name (string-append name "-" version ".tar.gz"))
11665 (sha256
11666 (base32
11667 "0piadmwjah1jv6q288im4za9szlgalzjyq2811w35i6gg9ib5jmn"))))
11668 (build-system cargo-build-system)
11669 (home-page "https://github.com/LeopoldArkham/humansize")
11670 (synopsis "Represent file sizes in a human-readable format")
11671 (description "This package provides a configurable crate to easily
11672 represent file sizes in a human-readable format.")
11673 (license (list license:expat license:asl2.0))))
11674
11675 (define-public rust-humantime-2
11676 (package
11677 (name "rust-humantime")
11678 (version "2.0.1")
11679 (source
11680 (origin
11681 (method url-fetch)
11682 (uri (crate-uri "humantime" version))
11683 (file-name
11684 (string-append name "-" version ".tar.gz"))
11685 (sha256
11686 (base32
11687 "0yivhqyi8xik2j6sd3q45ybakjx8jsx5632dx9xjn0birh4dj6iw"))))
11688 (build-system cargo-build-system)
11689 (arguments
11690 `(#:cargo-development-inputs
11691 (("rust-chrono" ,rust-chrono-0.4)
11692 ("rust-rand" ,rust-rand-0.6)
11693 ("rust-time" ,rust-time-0.1))))
11694 (home-page "https://github.com/tailhook/humantime")
11695 (synopsis
11696 "Parser and formatter for Duration and SystemTime")
11697 (description
11698 "A parser and formatter for @code{std::time::{Duration,
11699 SystemTime}}.")
11700 (license (list license:expat license:asl2.0))))
11701
11702 (define-public rust-humantime-1
11703 (package
11704 (inherit rust-humantime-2)
11705 (name "rust-humantime")
11706 (version "1.3.0")
11707 (source
11708 (origin
11709 (method url-fetch)
11710 (uri (crate-uri "humantime" version))
11711 (file-name
11712 (string-append name "-" version ".tar.gz"))
11713 (sha256
11714 (base32
11715 "0krwgbf35pd46xvkqg14j070vircsndabahahlv3rwhflpy4q06z"))))
11716 (arguments
11717 `(#:skip-build? #t
11718 #:cargo-inputs
11719 (("rust-quick-error" ,rust-quick-error-1.2))
11720 #:cargo-development-inputs
11721 (("rust-chrono" ,rust-chrono-0.4)
11722 ("rust-rand" ,rust-rand-0.4)
11723 ("rust-time" ,rust-time-0.1))))))
11724
11725 (define-public rust-hyper-0.13
11726 (package
11727 (name "rust-hyper")
11728 (version "0.13.7")
11729 (source
11730 (origin
11731 (method url-fetch)
11732 (uri (crate-uri "hyper" version))
11733 (file-name (string-append name "-" version ".tar.gz"))
11734 (sha256
11735 (base32
11736 "1symcnba2y03b8lj6xp2wd994lk3xyk3wizacjg5s60njzfshs1y"))))
11737 (build-system cargo-build-system)
11738 (arguments
11739 `(#:cargo-inputs
11740 (("rust-bytes" ,rust-bytes-0.5)
11741 ("rust-futures-channel" ,rust-futures-channel-0.3)
11742 ("rust-futures-core" ,rust-futures-core-0.3)
11743 ("rust-futures-util" ,rust-futures-util-0.3)
11744 ("rust-h2" ,rust-h2-0.2)
11745 ("rust-http" ,rust-http-0.2)
11746 ("rust-http-body" ,rust-http-body-0.3)
11747 ("rust-httparse" ,rust-httparse-1)
11748 ("rust-itoa" ,rust-itoa-0.4)
11749 ("rust-pin-project" ,rust-pin-project-0.4)
11750 ("rust-socket2" ,rust-socket2-0.3)
11751 ("rust-time" ,rust-time-0.1)
11752 ("rust-tokio" ,rust-tokio-0.2)
11753 ("rust-tower-service" ,rust-tower-service-0.3)
11754 ("rust-tracing" ,rust-tracing-0.1)
11755 ("rust-want" ,rust-want-0.3))
11756 #:cargo-development-inputs
11757 (("rust-futures-util" ,rust-futures-util-0.3)
11758 ("rust-matches" ,rust-matches-0.1)
11759 ("rust-num-cpus" ,rust-num-cpus-1)
11760 ("rust-pretty-env-logger" ,rust-pretty-env-logger-0.4)
11761 ("rust-serde" ,rust-serde-1)
11762 ("rust-serde-derive" ,rust-serde-derive-1)
11763 ("rust-serde-json" ,rust-serde-json-1)
11764 ("rust-spmc" ,rust-spmc-0.3)
11765 ("rust-tokio" ,rust-tokio-0.2)
11766 ("rust-tokio-test" ,rust-tokio-test-0.2)
11767 ("rust-tokio-util" ,rust-tokio-util-0.3)
11768 ("rust-tower-util" ,rust-tower-util-0.3)
11769 ("rust-url" ,rust-url-1))))
11770 (home-page "https://hyper.rs")
11771 (synopsis "Fast and correct HTTP library.")
11772 (description "This package provides a fast and correct HTTP library.")
11773 (license license:expat)))
11774
11775 (define-public rust-hyper-0.12
11776 (package
11777 (inherit rust-hyper-0.13)
11778 (name "rust-hyper")
11779 (version "0.12.35")
11780 (source
11781 (origin
11782 (method url-fetch)
11783 (uri (crate-uri "hyper" version))
11784 (file-name (string-append name "-" version ".tar.gz"))
11785 (sha256
11786 (base32 "1xnm8zi4bdjqhlnx3238kx8yjf29jjd1ww54apcql7wf8g8nxglx"))))
11787 (arguments
11788 `(#:skip-build? #t ;; fails due to some missing example file
11789 #:cargo-inputs
11790 (("rust-bytes" ,rust-bytes-0.4)
11791 ("rust-futures" ,rust-futures-0.1)
11792 ("rust-futures-cpupool" ,rust-futures-cpupool-0.1)
11793 ("rust-h2" ,rust-h2-0.1)
11794 ("rust-http" ,rust-http-0.1)
11795 ("rust-http-body" ,rust-http-body-0.1)
11796 ("rust-httparse" ,rust-httparse-1)
11797 ("rust-iovec" ,rust-iovec-0.1)
11798 ("rust-itoa" ,rust-itoa-0.4)
11799 ("rust-log" ,rust-log-0.4)
11800 ("rust-net2" ,rust-net2-0.2)
11801 ("rust-time" ,rust-time-0.1)
11802 ("rust-tokio" ,rust-tokio-0.1)
11803 ("rust-tokio-buf" ,rust-tokio-buf-0.1)
11804 ("rust-tokio-executor" ,rust-tokio-executor-0.1)
11805 ("rust-tokio-io" ,rust-tokio-io-0.1)
11806 ("rust-tokio-reactor" ,rust-tokio-reactor-0.1)
11807 ("rust-tokio-tcp" ,rust-tokio-tcp-0.1)
11808 ("rust-tokio-threadpool" ,rust-tokio-threadpool-0.1)
11809 ("rust-tokio-timer" ,rust-tokio-timer-0.2)
11810 ("rust-want" ,rust-want-0.2))
11811 #:cargo-development-inputs
11812 (("rust-futures-timer" ,rust-futures-timer-0.1)
11813 ("rust-num-cpus" ,rust-num-cpus-1)
11814 ("rust-rustc-version" ,rust-rustc-version-0.2)
11815 ("rust-pretty-env-logger" ,rust-pretty-env-logger-0.3)
11816 ("rust-serde" ,rust-serde-1)
11817 ("rust-serde-derive" ,rust-serde-derive-1)
11818 ("rust-serde-json" ,rust-serde-json-1)
11819 ("rust-spmc" ,rust-spmc-0.3)
11820 ("rust-tokio-fs" ,rust-tokio-fs-0.1)
11821 ("rust-tokio-mockstream" ,rust-tokio-mockstream-1)
11822 ("rust-url" ,rust-url-1))))))
11823
11824 (define-public rust-hyper-old-types-0.11
11825 (package
11826 (name "rust-hyper-old-types")
11827 (version "0.11.0")
11828 (source
11829 (origin
11830 (method url-fetch)
11831 (uri (crate-uri "hyper-old-types" version))
11832 (file-name
11833 (string-append name "-" version ".tar.gz"))
11834 (sha256
11835 (base32
11836 "1i69sks0bwamzqdbx8ffgkssxffv6crdmwjgl47nr5pkxi8vx5k8"))))
11837 (build-system cargo-build-system)
11838 (arguments
11839 `(#:tests? #f ; Tests do not compile
11840 #:cargo-inputs
11841 (("rust-base64" ,rust-base64-0.9)
11842 ("rust-bytes" ,rust-bytes-0.4)
11843 ("rust-http" ,rust-http-0.1)
11844 ("rust-httparse" ,rust-httparse-1)
11845 ("rust-language-tags" ,rust-language-tags-0.2)
11846 ("rust-log" ,rust-log-0.4)
11847 ("rust-mime" ,rust-mime-0.3)
11848 ("rust-percent-encoding" ,rust-percent-encoding-1.0)
11849 ("rust-time" ,rust-time-0.1)
11850 ("rust-unicase" ,rust-unicase-2))))
11851 (home-page "https://hyper.rs")
11852 (synopsis "HTTP types from hyper 0.11.x")
11853 (description
11854 "This package contains HTTP types from the newer hyper crate in versions
11855 0.11.x.")
11856 (license license:expat)))
11857
11858 (define-public rust-hyper-rustls-0.21
11859 (package
11860 (name "rust-hyper-rustls")
11861 (version "0.21.0")
11862 (source
11863 (origin
11864 (method url-fetch)
11865 (uri (crate-uri "hyper-rustls" version))
11866 (file-name (string-append name "-" version ".tar.gz"))
11867 (sha256
11868 (base32
11869 "1dmbj15fx6qyg26hji2jm7q9y383090jy3z9zjn5xs4f7v43qx1p"))))
11870 (build-system cargo-build-system)
11871 (arguments
11872 `(#:cargo-inputs
11873 (("rust-bytes" ,rust-bytes-0.5)
11874 ("rust-ct-logs" ,rust-ct-logs-0.7)
11875 ("rust-futures-util" ,rust-futures-util-0.3)
11876 ("rust-hyper" ,rust-hyper-0.13)
11877 ("rust-log" ,rust-log-0.4)
11878 ("rust-rustls" ,rust-rustls-0.18)
11879 ("rust-rustls-native-certs" ,rust-rustls-native-certs-0.4)
11880 ("rust-tokio" ,rust-tokio-0.2)
11881 ("rust-tokio-rustls" ,rust-tokio-rustls-0.14)
11882 ("rust-webpki" ,rust-webpki-0.21)
11883 ("rust-webpki-roots" ,rust-webpki-roots-0.20))
11884 #:cargo-development-inputs
11885 (("rust-tokio" ,rust-tokio-0.2))))
11886 (home-page "https://github.com/ctz/hyper-rustls")
11887 (synopsis "Rustls+hyper integration for pure rust HTTPS")
11888 (description "This package provides Rustls+hyper integration for pure rust
11889 HTTPS.")
11890 (license
11891 (list license:asl2.0 license:isc license:expat))))
11892
11893 (define-public rust-hyper-tls-0.4
11894 (package
11895 (name "rust-hyper-tls")
11896 (version "0.4.3")
11897 (source
11898 (origin
11899 (method url-fetch)
11900 (uri (crate-uri "hyper-tls" version))
11901 (file-name (string-append name "-" version ".tar.gz"))
11902 (sha256
11903 (base32
11904 "1vcfyz7dxavf4brns15afmj5fxz88lbn05rrpbfqsnybdp2sqyfr"))))
11905 (build-system cargo-build-system)
11906 (native-inputs
11907 `(("pkg-config" ,pkg-config)))
11908 (inputs
11909 `(("openssl" ,openssl)))
11910 (arguments
11911 `(#:cargo-inputs
11912 (("rust-bytes" ,rust-bytes-0.5)
11913 ("rust-hyper" ,rust-hyper-0.13)
11914 ("rust-native-tls" ,rust-native-tls-0.2)
11915 ("rust-tokio" ,rust-tokio-0.2)
11916 ("rust-tokio-tls" ,rust-tokio-tls-0.3))
11917 #:cargo-development-inputs
11918 (("rust-tokio" ,rust-tokio-0.2))))
11919 (home-page "https://hyper.rs")
11920 (synopsis "Default TLS implementation for use with hyper")
11921 (description "This package provides the default TLS implementation for use
11922 with hyper.")
11923 (license (list license:expat license:asl2.0))))
11924
11925 (define-public rust-hyper-tls-0.3
11926 (package
11927 (inherit rust-hyper-tls-0.4)
11928 (name "rust-hyper-tls")
11929 (version "0.3.2")
11930 (source
11931 (origin
11932 (method url-fetch)
11933 (uri (crate-uri "hyper-tls" version))
11934 (file-name (string-append name "-" version ".tar.gz"))
11935 (sha256
11936 (base32 "0kqp4sz8613j6nv375wfj3gh95ff4nb6a3rb1f2vbx0almm0v01s"))))
11937 (arguments
11938 `(#:cargo-inputs
11939 (("rust-bytes" ,rust-bytes-0.4)
11940 ("rust-futures" ,rust-futures-0.1)
11941 ("rust-hyper" ,rust-hyper-0.12)
11942 ("rust-native-tls" ,rust-native-tls-0.2)
11943 ("rust-tokio-io" ,rust-tokio-io-0.1))
11944 #:cargo-development-inputs
11945 (("rust-tokio" ,rust-tokio-0.1))))))
11946
11947 (define-public rust-ident-case-1
11948 (package
11949 (name "rust-ident-case")
11950 (version "1.0.1")
11951 (source
11952 (origin
11953 (method url-fetch)
11954 (uri (crate-uri "ident_case" version))
11955 (file-name
11956 (string-append name "-" version ".tar.gz"))
11957 (sha256
11958 (base32
11959 "0fac21q6pwns8gh1hz3nbq15j8fi441ncl6w4vlnd1cmc55kiq5r"))))
11960 (build-system cargo-build-system)
11961 (home-page "https://github.com/TedDriggs/ident_case")
11962 (synopsis "Utility for applying case rules to Rust identifiers")
11963 (description
11964 "Utility for applying case rules to Rust identifiers.")
11965 (license (list license:expat license:asl2.0))))
11966
11967 (define-public rust-idna-0.2
11968 (package
11969 (name "rust-idna")
11970 (version "0.2.0")
11971 (source
11972 (origin
11973 (method url-fetch)
11974 (uri (crate-uri "idna" version))
11975 (file-name
11976 (string-append name "-" version ".tar.gz"))
11977 (sha256
11978 (base32
11979 "1a9066imqpdrm1aavfasdyb1zahqaz8jmdcwdawvb1pf60y6gqh2"))))
11980 (build-system cargo-build-system)
11981 (arguments
11982 `(#:skip-build? #t
11983 #:cargo-inputs
11984 (("rust-matches" ,rust-matches-0.1)
11985 ("rust-unicode-bidi" ,rust-unicode-bidi-0.3)
11986 ("rust-unicode-normalization" ,rust-unicode-normalization-0.1))
11987 #:cargo-development-inputs
11988 (("rust-rustc-test" ,rust-rustc-test-0.3)
11989 ("rust-serde-json" ,rust-serde-json-1))))
11990 (home-page "https://github.com/servo/rust-url/")
11991 (synopsis "Internationalizing Domain Names in Applications and Punycode")
11992 (description
11993 "IDNA (Internationalizing Domain Names in Applications) and Punycode.")
11994 (license (list license:expat license:asl2.0))))
11995
11996 (define-public rust-idna-0.1
11997 (package
11998 (inherit rust-idna-0.2)
11999 (name "rust-idna")
12000 (version "0.1.5")
12001 (source
12002 (origin
12003 (method url-fetch)
12004 (uri (crate-uri "idna" version))
12005 (file-name
12006 (string-append name "-" version ".tar.gz"))
12007 (sha256
12008 (base32
12009 "0kl4gs5kaydn4v07c6ka33spm9qdh2np0x7iw7g5zd8z1c7rxw1q"))))
12010 (arguments
12011 `(#:skip-build? #t
12012 #:cargo-inputs
12013 (("rust-matches" ,rust-matches-0.1)
12014 ("rust-unicode-bidi" ,rust-unicode-bidi-0.3)
12015 ("rust-unicode-normalization" ,rust-unicode-normalization-0.1))
12016 #:cargo-development-inputs
12017 (("rust-rustc-serialize" ,rust-rustc-serialize-0.3)
12018 ("rust-rustc-test" ,rust-rustc-test-0.3))))))
12019
12020 (define-public rust-if-chain-1
12021 (package
12022 (name "rust-if-chain")
12023 (version "1.0.0")
12024 (source
12025 (origin
12026 (method url-fetch)
12027 (uri (crate-uri "if_chain" version))
12028 (file-name (string-append name "-" version ".tar.gz"))
12029 (sha256
12030 (base32
12031 "0zgcn31bahnsmsjc0cgk0cy38p8sfjs79yvi6rjs5zz5b5xhqdn3"))))
12032 (build-system cargo-build-system)
12033 (home-page "https://github.com/lfairy/if_chain")
12034 (synopsis "Macro for writing nested @code{if let} expressions")
12035 (description "This package provides a macro for writing nested @code{if
12036 let} expressions.")
12037 (license (list license:expat license:asl2.0))))
12038
12039 (define-public rust-ignore-0.4
12040 (package
12041 (name "rust-ignore")
12042 (version "0.4.16")
12043 (source
12044 (origin
12045 (method url-fetch)
12046 (uri (crate-uri "ignore" version))
12047 (file-name
12048 (string-append name "-" version ".tar.gz"))
12049 (sha256
12050 (base32
12051 "0wpcv4qgfzcyzydhlqa2qr56j72fj1a66s11xzdji59898mbzp12"))))
12052 (build-system cargo-build-system)
12053 (arguments
12054 `(#:cargo-inputs
12055 (("rust-crossbeam-utils" ,rust-crossbeam-utils-0.7)
12056 ("rust-globset" ,rust-globset-0.4)
12057 ("rust-lazy-static" ,rust-lazy-static-1)
12058 ("rust-log" ,rust-log-0.4)
12059 ("rust-memchr" ,rust-memchr-2)
12060 ("rust-regex" ,rust-regex-1)
12061 ("rust-same-file" ,rust-same-file-1.0)
12062 ("rust-thread-local" ,rust-thread-local-1.0)
12063 ("rust-walkdir" ,rust-walkdir-2)
12064 ("rust-winapi-util" ,rust-winapi-util-0.1))
12065 #:cargo-development-inputs
12066 (("rust-crossbeam-channel" ,rust-crossbeam-channel-0.4))))
12067 (home-page "https://github.com/BurntSushi/ripgrep/tree/master/ignore")
12068 (synopsis "Efficiently match ignore files such as .gitignore")
12069 (description
12070 "This package provides a fast library for efficiently matching
12071 ignore files such as .gitignore against file paths.")
12072 (license (list license:unlicense license:expat))))
12073
12074 (define-public rust-indexmap-1
12075 (package
12076 (name "rust-indexmap")
12077 (version "1.4.0")
12078 (source
12079 (origin
12080 (method url-fetch)
12081 (uri (crate-uri "indexmap" version))
12082 (file-name
12083 (string-append name "-" version ".tar.gz"))
12084 (sha256
12085 (base32
12086 "1ziabh0lc4wwahv3qgv6aqckyydcrczpagpfp770jn5m2fqv5663"))))
12087 (build-system cargo-build-system)
12088 (arguments
12089 `(#:cargo-inputs
12090 (("rust-autocfg" ,rust-autocfg-1.0)
12091 ("rust-serde" ,rust-serde-1)
12092 ("rust-rayon" ,rust-rayon-1))
12093 #:cargo-development-inputs
12094 (("rust-fnv" ,rust-fnv-1)
12095 ("rust-itertools" ,rust-itertools-0.8)
12096 ("rust-lazy-static" ,rust-lazy-static-1)
12097 ("rust-quickcheck" ,rust-quickcheck-0.9)
12098 ("rust-rand" ,rust-rand-0.7)
12099 ("rust-serde-test" ,rust-serde-test-1))))
12100 (home-page "https://github.com/bluss/indexmap")
12101 (synopsis "Hash table with consistent order and fast iteration.")
12102 (description
12103 "This package provides a hash table with consistent order and fast iteration.
12104
12105 The indexmap is a hash table where the iteration order of the key-value
12106 pairs is independent of the hash values of the keys. It has the usual
12107 hash table functionality, it preserves insertion order except after
12108 removals, and it allows lookup of its elements by either hash table key
12109 or numerical index. A corresponding hash set type is also provided.")
12110 (license (list license:asl2.0 license:expat))))
12111
12112 (define-public rust-inflate-0.4
12113 (package
12114 (name "rust-inflate")
12115 (version "0.4.5")
12116 (source
12117 (origin
12118 (method url-fetch)
12119 (uri (crate-uri "inflate" version))
12120 (file-name
12121 (string-append name "-" version ".tar.gz"))
12122 (sha256
12123 (base32
12124 "1zxjdn8iwa0ssxrnjmywm3r1v284wryvzrf8vkc7nyf5ijbjknqw"))))
12125 (build-system cargo-build-system)
12126 (arguments
12127 `(#:cargo-inputs (("rust-adler32" ,rust-adler32-1))))
12128 (home-page "https://github.com/PistonDevelopers/inflate.git")
12129 (synopsis "DEFLATE decoding")
12130 (description "This package provides DEFLATE decoding.")
12131 (license license:expat)))
12132
12133 (define-public rust-inflector-0.11
12134 (package
12135 (name "rust-inflector")
12136 (version "0.11.4")
12137 (source
12138 (origin
12139 (method url-fetch)
12140 (uri (crate-uri "Inflector" version))
12141 (file-name (string-append name "-" version ".tar.gz"))
12142 (sha256
12143 (base32
12144 "1lqmcni21ifzyq41fhz6k1j2b23cmsx469s4g4sf01l78miqqhzy"))))
12145 (build-system cargo-build-system)
12146 (arguments
12147 `(#:cargo-inputs
12148 (("rust-lazy-static" ,rust-lazy-static-1)
12149 ("rust-regex" ,rust-regex-1))))
12150 (home-page "https://github.com/whatisinternet/inflector")
12151 (synopsis "String based inflections for Rust")
12152 (description "This package adds String based inflections for Rust. Snake,
12153 kebab, camel, sentence, class, title and table cases as well as ordinalize,
12154 deordinalize, demodulize, foreign key, and pluralize/singularize are supported
12155 as both traits and pure functions acting on String types.")
12156 (license license:bsd-2)))
12157
12158 (define-public rust-inotify-0.7
12159 (package
12160 (name "rust-inotify")
12161 (version "0.7.1")
12162 (source
12163 (origin
12164 (method url-fetch)
12165 (uri (crate-uri "inotify" version))
12166 (file-name
12167 (string-append name "-" version ".tar.gz"))
12168 (sha256
12169 (base32
12170 "0byhq4x4b2rlbkmfrab5dni39wiq2ls1hv1nhggp7rla5inwc5j8"))))
12171 (build-system cargo-build-system)
12172 (arguments
12173 `(#:cargo-inputs
12174 (("rust-bitflags" ,rust-bitflags-1)
12175 ("rust-futures" ,rust-futures-0.1)
12176 ("rust-inotify-sys" ,rust-inotify-sys-0.1)
12177 ("rust-libc" ,rust-libc-0.2)
12178 ("rust-mio" ,rust-mio-0.6)
12179 ("rust-tokio" ,rust-tokio-0.1)
12180 ("rust-tokio-io" ,rust-tokio-io-0.1)
12181 ("rust-tokio-reactor" ,rust-tokio-reactor-0.1))
12182 #:cargo-development-inputs
12183 (("rust-tempdir" ,rust-tempdir-0.3))))
12184 (home-page "https://github.com/inotify-rs/inotify")
12185 (synopsis "Idiomatic wrapper for inotify")
12186 (description "This package provides an idiomatic wrapper for inotify written
12187 in Rust.")
12188 (license license:isc)))
12189
12190 (define-public rust-inotify-0.6
12191 (package
12192 (inherit rust-inotify-0.7)
12193 (name "rust-inotify")
12194 (version "0.6.1")
12195 (source
12196 (origin
12197 (method url-fetch)
12198 (uri (crate-uri "inotify" version))
12199 (file-name
12200 (string-append name "-" version ".tar.gz"))
12201 (sha256
12202 (base32
12203 "0627k5aq44knjlrc09hl017nxap3svpl79przf26y3ciycwlbda0"))))
12204 (arguments
12205 `(#:cargo-inputs
12206 (("rust-bitflags" ,rust-bitflags-1)
12207 ("rust-futures" ,rust-futures-0.1)
12208 ("rust-inotify-sys" ,rust-inotify-sys-0.1)
12209 ("rust-libc" ,rust-libc-0.2)
12210 ("rust-mio" ,rust-mio-0.6)
12211 ("rust-tokio-io" ,rust-tokio-io-0.1)
12212 ("rust-tokio-reactor" ,rust-tokio-reactor-0.1))
12213 #:cargo-development-inputs
12214 (("rust-tempdir" ,rust-tempdir-0.3))))))
12215
12216 (define-public rust-inotify-sys-0.1
12217 (package
12218 (name "rust-inotify-sys")
12219 (version "0.1.3")
12220 (source
12221 (origin
12222 (method url-fetch)
12223 (uri (crate-uri "inotify-sys" version))
12224 (file-name
12225 (string-append name "-" version ".tar.gz"))
12226 (sha256
12227 (base32
12228 "1h2nwgajz80qddjm4mpma94zahxw84nscbycy9pgzbjrgjl1ljp7"))))
12229 (build-system cargo-build-system)
12230 (arguments
12231 `(#:cargo-inputs (("rust-libc" ,rust-libc-0.2))))
12232 (home-page "https://github.com/inotify-rs/inotify-sys")
12233 (synopsis "Inotify bindings for Rust")
12234 (description
12235 "This package provides inotify bindings for the Rust programming language.")
12236 (license license:isc)))
12237
12238 (define-public rust-insta-0.16
12239 (package
12240 (name "rust-insta")
12241 (version "0.16.1")
12242 (source
12243 (origin
12244 (method url-fetch)
12245 (uri (crate-uri "insta" version))
12246 (file-name (string-append name "-" version ".tar.gz"))
12247 (sha256
12248 (base32
12249 "1vhqlirp75nx8qalz87qk2wjs7mzwxww0n09n2ircgw1phd94zk1"))))
12250 (build-system cargo-build-system)
12251 (arguments
12252 `(#:cargo-inputs
12253 (("rust-backtrace" ,rust-backtrace-0.3)
12254 ("rust-console" ,rust-console-0.11)
12255 ("rust-difference" ,rust-difference-2)
12256 ("rust-globwalk" ,rust-globwalk-0.8)
12257 ("rust-lazy-static" ,rust-lazy-static-1)
12258 ("rust-pest" ,rust-pest-2)
12259 ("rust-pest-derive" ,rust-pest-derive-2)
12260 ("rust-ron" ,rust-ron-0.5)
12261 ("rust-serde" ,rust-serde-1)
12262 ("rust-serde-json" ,rust-serde-json-1)
12263 ("rust-serde-yaml" ,rust-serde-yaml-0.8))))
12264 (home-page "https://github.com/mitsuhiko/insta")
12265 (synopsis "Snapshot testing library for Rust")
12266 (description "This package provides a snapshot testing library for Rust.")
12267 (license license:asl2.0)))
12268
12269 (define-public rust-insta-0.8
12270 (package
12271 (inherit rust-insta-0.16)
12272 (name "rust-insta")
12273 (version "0.8.1")
12274 (source
12275 (origin
12276 (method url-fetch)
12277 (uri (crate-uri "insta" version))
12278 (file-name
12279 (string-append name "-" version ".tar.gz"))
12280 (sha256
12281 (base32
12282 "17rvqw9xm61prncbqi3cplphr3l2dl85sljdpyr3fz2mqjgbdfwb"))))
12283 (arguments
12284 `(#:skip-build? #t
12285 #:cargo-inputs
12286 (("rust-chrono" ,rust-chrono-0.4)
12287 ("rust-ci-info" ,rust-ci-info-0.3)
12288 ("rust-console" ,rust-console-0.7)
12289 ("rust-difference" ,rust-difference-2)
12290 ("rust-failure" ,rust-failure-0.1)
12291 ("rust-lazy-static" ,rust-lazy-static-1)
12292 ("rust-pest" ,rust-pest-2)
12293 ("rust-pest-derive" ,rust-pest-derive-2)
12294 ("rust-ron" ,rust-ron-0.4)
12295 ("rust-serde" ,rust-serde-1)
12296 ("rust-serde-json" ,rust-serde-json-1)
12297 ("rust-serde-yaml" ,rust-serde-yaml-0.8)
12298 ("rust-uuid" ,rust-uuid-0.7))))))
12299
12300 (define-public rust-instant-0.1
12301 (package
12302 (name "rust-instant")
12303 (version "0.1.4")
12304 (source
12305 (origin
12306 (method url-fetch)
12307 (uri (crate-uri "instant" version))
12308 (file-name
12309 (string-append name "-" version ".tar.gz"))
12310 (sha256
12311 (base32
12312 "10k1170waz1na056wvjvkps3lz28z9pc8kp8vpy4kpp53i5a4xvp"))))
12313 (build-system cargo-build-system)
12314 (arguments
12315 `(#:tests? #f ; Issue during the wasm test.
12316 #:cargo-inputs
12317 (("rust-js-sys" ,rust-js-sys-0.3)
12318 ("rust-stdweb" ,rust-stdweb-0.4)
12319 ("rust-time" ,rust-time-0.1)
12320 ("rust-wasm-bindgen" ,rust-wasm-bindgen-0.2)
12321 ("rust-web-sys" ,rust-web-sys-0.3))
12322 #:cargo-development-inputs
12323 (("rust-wasm-bindgen-test" ,rust-wasm-bindgen-test-0.2))))
12324 (home-page "https://github.com/sebcrozet/instant")
12325 (synopsis
12326 "Partial replacement for std::time::Instant that works on WASM too")
12327 (description
12328 "This package provides a partial replacement for @code{std::time::Instant}
12329 that works on WASM too.")
12330 (license license:bsd-3)))
12331
12332 (define-public rust-interpolate-name-0.2
12333 (package
12334 (name "rust-interpolate-name")
12335 (version "0.2.3")
12336 (source
12337 (origin
12338 (method url-fetch)
12339 (uri (crate-uri "interpolate_name" version))
12340 (file-name
12341 (string-append name "-" version ".tar.gz"))
12342 (sha256
12343 (base32
12344 "05vzsiqb69d1mbpaphcg4ifjsjs6g03b8pacskfcydqhh555zcxl"))))
12345 (build-system cargo-build-system)
12346 (arguments
12347 `(#:skip-build? #t
12348 #:cargo-inputs
12349 (("rust-proc-macro2" ,rust-proc-macro2-1)
12350 ("rust-syn" ,rust-syn-1)
12351 ("rust-quote" ,rust-quote-1))))
12352 (home-page "https://github.com/lu-zero/interpolate_name")
12353 (synopsis "Simple procedural macro attribute for repetitive tests")
12354 (description
12355 "Simple procedural macro attribute for repetitive tests.")
12356 (license license:expat)))
12357
12358 (define-public rust-interpolation-0.2
12359 (package
12360 (name "rust-interpolation")
12361 (version "0.2.0")
12362 (source
12363 (origin
12364 (method url-fetch)
12365 (uri (crate-uri "interpolation" version))
12366 (file-name
12367 (string-append name "-" version ".tar.gz"))
12368 (sha256
12369 (base32
12370 "00icvvgc72zdgyrwwg2p0wad4hry4d2vd6l9iqpyjpmw5dykbdyk"))))
12371 (build-system cargo-build-system)
12372 (arguments `(#:skip-build? #t))
12373 (home-page "https://github.com/pistondevelopers/interpolation")
12374 (synopsis "Library for interpolation")
12375 (description
12376 "This package provides a library for interpolation.")
12377 (license license:expat)))
12378
12379 (define-public rust-intervaltree-0.2
12380 (package
12381 (name "rust-intervaltree")
12382 (version "0.2.4")
12383 (source
12384 (origin
12385 (method url-fetch)
12386 (uri (crate-uri "intervaltree" version))
12387 (file-name
12388 (string-append name "-" version ".tar.gz"))
12389 (sha256
12390 (base32
12391 "10k40gsv79kwnsqrzwmnmm6psa5fqws8yggavmbggvymv16hffdg"))))
12392 (build-system cargo-build-system)
12393 (arguments
12394 `(#:skip-build? #t
12395 #:cargo-inputs
12396 (("rust-smallvec" ,rust-smallvec-0.6))))
12397 (home-page "https://github.com/main--/rust-intervaltree")
12398 (synopsis "Immutable interval trees")
12399 (description
12400 "This package provides a simple and generic implementation of an
12401 immutable interval tree.")
12402 (license license:expat)))
12403
12404 (define-public rust-iovec-0.1
12405 (package
12406 (name "rust-iovec")
12407 (version "0.1.4")
12408 (source
12409 (origin
12410 (method url-fetch)
12411 (uri (crate-uri "iovec" version))
12412 (file-name (string-append name "-" version ".crate"))
12413 (sha256
12414 (base32
12415 "0ph73qygwx8i0mblrf110cj59l00gkmsgrpzz1rm85syz5pymcxj"))))
12416 (build-system cargo-build-system)
12417 (arguments
12418 `(#:skip-build? #t
12419 #:cargo-inputs (("rust-libc" ,rust-libc-0.2))))
12420 (home-page "https://github.com/carllerche/iovec")
12421 (synopsis "Portable buffer type for scatter/gather I/O operations")
12422 (description
12423 "Portable buffer type for scatter/gather I/O operations.")
12424 (license (list license:asl2.0
12425 license:expat))))
12426
12427 (define-public rust-ipconfig-0.2
12428 (package
12429 (name "rust-ipconfig")
12430 (version "0.2.2")
12431 (source
12432 (origin
12433 (method url-fetch)
12434 (uri (crate-uri "ipconfig" version))
12435 (file-name (string-append name "-" version ".tar.gz"))
12436 (sha256
12437 (base32
12438 "1mzsagc6bk3i3fpggqlq8am5rxn4hgs297rsaya90w79xj5g3qpp"))))
12439 (build-system cargo-build-system)
12440 (arguments
12441 `(#:cargo-inputs
12442 (("rust-socket2" ,rust-socket2-0.3)
12443 ("rust-widestring" ,rust-widestring-0.4)
12444 ("rust-winapi" ,rust-winapi-0.3)
12445 ("rust-winreg" ,rust-winreg-0.6))))
12446 (home-page "https://github.com/liranringel/ipconfig")
12447 (synopsis "Get network adapters and configuration information for Windows")
12448 (description "This package lets you get network adapters information and
12449 network configuration for Windows.")
12450 (license (list license:expat license:asl2.0))))
12451
12452 (define-public rust-is-macro-0.1
12453 (package
12454 (name "rust-is-macro")
12455 (version "0.1.8")
12456 (source
12457 (origin
12458 (method url-fetch)
12459 (uri (crate-uri "is-macro" version))
12460 (file-name (string-append name "-" version ".tar.gz"))
12461 (sha256
12462 (base32
12463 "1vjh4sdpvx1kdf1znyk3b54gkyk7f8lsasc47ypkksp3r4ypz004"))))
12464 (build-system cargo-build-system)
12465 (arguments
12466 `(#:cargo-inputs
12467 (("rust-inflector" ,rust-inflector-0.11)
12468 ("rust-pmutil" ,rust-pmutil-0.5)
12469 ("rust-proc-macro2" ,rust-proc-macro2-1)
12470 ("rust-quote" ,rust-quote-1)
12471 ("rust-syn" ,rust-syn-1))))
12472 (home-page "https://github.com/kdy1/is-macro")
12473 (synopsis "Create methods to use custom enum like Option/Result")
12474 (description "This package lets you easily create methods to use a custom
12475 enum like Option/Result.")
12476 (license license:expat)))
12477
12478 (define-public rust-ipnet-2
12479 (package
12480 (name "rust-ipnet")
12481 (version "2.3.0")
12482 (source
12483 (origin
12484 (method url-fetch)
12485 (uri (crate-uri "ipnet" version))
12486 (file-name (string-append name "-" version ".tar.gz"))
12487 (sha256
12488 (base32
12489 "0db147nh8jnxr23yxa7hwqn7dcjivdqi3aq4mgf2zgkqqqa2zgj7"))))
12490 (build-system cargo-build-system)
12491 (arguments
12492 `(#:cargo-inputs
12493 (("rust-serde" ,rust-serde-1))
12494 #:cargo-development-inputs
12495 (("rust-serde-test" ,rust-serde-test-1))))
12496 (home-page "https://github.com/krisprice/ipnet")
12497 (synopsis "Work with IPv4 and IPv6 network addresses")
12498 (description "This package provides types and useful methods for working
12499 with IPv4 and IPv6 network addresses, commonly called IP prefixes. The new
12500 IpNet, Ipv4Net, and Ipv6Net types build on the existing IpAddr, Ipv4Addr, and
12501 Ipv6Addr types already provided in Rust's standard library and align to their
12502 design to stay consistent. The module also provides useful traits that extend
12503 Ipv4Addr and Ipv6Addr with methods for Add, Sub, BitAnd, and BitOr operations.
12504 The module only uses stable feature so it is guaranteed to compile using the
12505 stable toolchain.")
12506 (license (list license:expat license:asl2.0))))
12507
12508 (define-public rust-ipnetwork-0.17
12509 (package
12510 (name "rust-ipnetwork")
12511 (version "0.17.0")
12512 (source
12513 (origin
12514 (method url-fetch)
12515 (uri (crate-uri "ipnetwork" version))
12516 (file-name (string-append name "-" version ".tar.gz"))
12517 (sha256
12518 (base32
12519 "0sviri9ksb3cmhx3h0rcfy8pvpx7f0cx5ba1z87ydvf07amymhq2"))))
12520 (build-system cargo-build-system)
12521 (arguments
12522 `(#:cargo-inputs
12523 (("rust-serde" ,rust-serde-1))
12524 #:cargo-development-inputs
12525 (("rust-criterion" ,rust-criterion-0.3)
12526 ("rust-serde-derive" ,rust-serde-derive-1)
12527 ("rust-serde-json" ,rust-serde-json-1))))
12528 (home-page "https://crates.io/crates/ipnetwork")
12529 (synopsis "Work with IP CIDRs in Rust")
12530 (description "This package provides a library to work with IP CIDRs in
12531 Rust.")
12532 (license (list license:expat license:asl2.0))))
12533
12534 (define-public rust-is-executable
12535 (package
12536 (name "rust-is-executable")
12537 (version "0.1.2")
12538 (source
12539 (origin
12540 (method url-fetch)
12541 (uri (crate-uri "is_executable" version))
12542 (file-name
12543 (string-append name "-" version ".tar.gz"))
12544 (sha256
12545 (base32
12546 "0xy516afjh79a0d53j9v4w5mgi2s0r6f6qynnyz8g0dwi8xmab9h"))))
12547 (build-system cargo-build-system)
12548 (arguments
12549 `(;; One test tries to invoke 'cargo readme' which does not exist and aborts.
12550 #:phases
12551 (modify-phases %standard-phases
12552 (add-after 'unpack 'patch-test
12553 (lambda _
12554 (substitute* "tests/tests.rs"
12555 (("panic!\\(\"Run `cargo readme > README.md` to update README.md\"\\)")
12556 "return;"))
12557 #t)))
12558 #:cargo-inputs
12559 (("rust-diff" ,rust-diff-0.1)
12560 ("rust-winapi" ,rust-winapi-0.3))))
12561 (home-page "https://github.com/fitzgen/is_executable")
12562 (synopsis "Find executable files at path")
12563 (description
12564 "This package provides a small helper function which determines
12565 whether or not a given path points to an executable file.")
12566 (license (list license:expat license:asl2.0))))
12567
12568 (define-public rust-iso8601-0.1
12569 (package
12570 (name "rust-iso8601")
12571 (version "0.1.1")
12572 (source
12573 (origin
12574 (method url-fetch)
12575 (uri (crate-uri "iso8601" version))
12576 (file-name
12577 (string-append name "-" version ".tar.gz"))
12578 (sha256
12579 (base32
12580 "0xy48qyfmirslaj4dy6n4g8b564jap3cjiql35fmj5vgii7ldp0i"))))
12581 (build-system cargo-build-system)
12582 (arguments
12583 `(#:cargo-inputs
12584 (("rust-clippy" ,rust-clippy-0.0)
12585 ("rust-nom" ,rust-nom-1.2))))
12586 (home-page "https://github.com/badboy/iso8601")
12587 (synopsis "Parsing ISO8601 dates using nom")
12588 (description "Parsing ISO8601 dates using nom.")
12589 (license license:expat)))
12590
12591 (define-public rust-itertools-0.9
12592 (package
12593 (name "rust-itertools")
12594 (version "0.9.0")
12595 (source
12596 (origin
12597 (method url-fetch)
12598 (uri (crate-uri "itertools" version))
12599 (file-name
12600 (string-append name "-" version ".tar.gz"))
12601 (sha256
12602 (base32
12603 "0jyml7ygr7kijkcjdl3fk5f34y5h5jsavclim7l13zjiavw1hkr8"))))
12604 (build-system cargo-build-system)
12605 (arguments
12606 `(#:cargo-inputs
12607 (("rust-either" ,rust-either-1))
12608 #:cargo-development-inputs
12609 (("rust-criterion" ,rust-criterion-0.3)
12610 ("rust-permutohedron" ,rust-permutohedron-0.2)
12611 ("rust-quickcheck" ,rust-quickcheck-0.9)
12612 ("rust-rand" ,rust-rand-0.7))
12613 #:phases
12614 (modify-phases %standard-phases
12615 (add-after 'unpack 'patch-cargo-toml
12616 (lambda _
12617 (substitute* "Cargo.toml"
12618 (("=0.3.0") "0.3"))
12619 #t)))))
12620 (home-page
12621 "https://github.com/rust-itertools/itertools")
12622 (synopsis
12623 "Extra iterator adaptors, iterator methods, free functions, and macros")
12624 (description
12625 "Extra iterator adaptors, iterator methods, free functions, and macros.")
12626 (license (list license:expat license:asl2.0))))
12627
12628 (define-public rust-itertools-0.8
12629 (package
12630 (inherit rust-itertools-0.9)
12631 (name "rust-itertools")
12632 (version "0.8.2")
12633 (source
12634 (origin
12635 (method url-fetch)
12636 (uri (crate-uri "itertools" version))
12637 (file-name
12638 (string-append name "-" version ".tar.gz"))
12639 (sha256
12640 (base32
12641 "1154j48aw913v5jnyhpxialxhdn2sfpl4d7bwididyb1r05jsspm"))))
12642 (arguments
12643 `(#:skip-build? #t
12644 #:cargo-inputs
12645 (("rust-either" ,rust-either-1))
12646 #:cargo-development-inputs
12647 (("rust-permutohedron" ,rust-permutohedron-0.2)
12648 ("rust-quickcheck" ,rust-quickcheck-0.7)
12649 ("rust-rand" ,rust-rand-0.6))))))
12650
12651 (define-public rust-itertools-0.7
12652 (package
12653 (inherit rust-itertools-0.8)
12654 (name "rust-itertools")
12655 (version "0.7.11")
12656 (source
12657 (origin
12658 (method url-fetch)
12659 (uri (crate-uri "itertools" version))
12660 (file-name (string-append name "-" version ".tar.gz"))
12661 (sha256
12662 (base32
12663 "03cpsj26xmyamcalclqzr1i700vwx8hnbgxbpjvs354f8mnr8iqd"))))
12664 (arguments
12665 `(#:cargo-inputs
12666 (("rust-either" ,rust-either-1))
12667 #:cargo-development-inputs
12668 (("rust-permutohedron" ,rust-permutohedron-0.2)
12669 ("rust-quickcheck" ,rust-quickcheck-0.5))))))
12670
12671 (define-public rust-itertools-0.5
12672 (package
12673 (inherit rust-itertools-0.7)
12674 (name "rust-itertools")
12675 (version "0.5.10")
12676 (source
12677 (origin
12678 (method url-fetch)
12679 (uri (crate-uri "itertools" version))
12680 (file-name (string-append name "-" version ".tar.gz"))
12681 (sha256
12682 (base32
12683 "1z4lyrakgynvhylya72qb3vizmxmd62whjmg4r8k01d4inbxccs8"))))
12684 (arguments
12685 `(#:tests? #f ; Tests fail to compile
12686 #:cargo-inputs
12687 (("rust-either" ,rust-either-1))
12688 #:cargo-development-inputs
12689 (("rust-permutohedron" ,rust-permutohedron-0.2)
12690 ("rust-quickcheck" ,rust-quickcheck-0.4))))))
12691
12692 (define-public rust-itertools-num-0.1
12693 (package
12694 (name "rust-itertools-num")
12695 (version "0.1.3")
12696 (source
12697 (origin
12698 (method url-fetch)
12699 (uri (crate-uri "itertools-num" version))
12700 (file-name
12701 (string-append name "-" version ".tar.gz"))
12702 (sha256
12703 (base32
12704 "1rr7ig9nkpampcas23s91x7yac6qdnwssq3nap522xbgkqps4wm8"))))
12705 (build-system cargo-build-system)
12706 (arguments
12707 `(#:skip-build? #t
12708 #:cargo-inputs
12709 (("rust-num-traits" ,rust-num-traits-0.2))
12710 #:cargo-development-inputs
12711 (("rust-itertools" ,rust-itertools-0.8)
12712 ("rust-quickcheck" ,rust-quickcheck-0.8))))
12713 (home-page
12714 "https://github.com/bluss/itertools-num")
12715 (synopsis
12716 "Numerical iterator tools")
12717 (description
12718 "Numerical iterator tools. Extra iterators and iterator methods
12719 and functions.")
12720 (license (list license:expat license:asl2.0))))
12721
12722 (define-public rust-itoa-0.4
12723 (package
12724 (name "rust-itoa")
12725 (version "0.4.5")
12726 (source
12727 (origin
12728 (method url-fetch)
12729 (uri (crate-uri "itoa" version))
12730 (file-name (string-append name "-" version ".crate"))
12731 (sha256
12732 (base32
12733 "13nxqrfnh83a7x5rw4wq2ilp8nxvwy74dxzysdg59dbxqk0agdxq"))))
12734 (build-system cargo-build-system)
12735 (home-page "https://github.com/dtolnay/itoa")
12736 (synopsis "Fast functions for printing integer primitives")
12737 (description "This crate provides fast functions for printing integer
12738 primitives to an @code{io::Write}.")
12739 (license (list license:asl2.0
12740 license:expat))))
12741
12742 (define-public rust-itoa-0.3
12743 (package
12744 (inherit rust-itoa-0.4)
12745 (name "rust-itoa")
12746 (version "0.3.4")
12747 (source
12748 (origin
12749 (method url-fetch)
12750 (uri (crate-uri "itoa" version))
12751 (file-name
12752 (string-append name "-" version ".tar.gz"))
12753 (sha256
12754 (base32
12755 "136vwi6l2k1vrlvfx49lhficj813pk88xrcx1q3axqh1mwms6943"))))))
12756
12757 (define-public rust-itoa-0.1
12758 (package
12759 (inherit rust-itoa-0.4)
12760 (name "rust-itoa")
12761 (version "0.1.1")
12762 (source
12763 (origin
12764 (method url-fetch)
12765 (uri (crate-uri "itoa" version))
12766 (file-name (string-append name "-" version ".crate"))
12767 (sha256
12768 (base32
12769 "18g7p2hrb3dk84z3frfgmszfc9hjb4ps9vp99qlb1kmf9gm8hc5f"))))))
12770
12771 (define-public rust-ivf-0.1
12772 (package
12773 (name "rust-ivf")
12774 (version "0.1.0")
12775 (source
12776 (origin
12777 (method url-fetch)
12778 (uri (crate-uri "ivf" version))
12779 (file-name
12780 (string-append name "-" version ".tar.gz"))
12781 (sha256
12782 (base32
12783 "1wfjf3rilqavrhvwagzinvng9dg28wcjk3c6c6p5qmc1xy65qfh1"))))
12784 (build-system cargo-build-system)
12785 (arguments
12786 `(#:skip-build? #t
12787 #:cargo-inputs
12788 (("rust-bitstream-io" ,rust-bitstream-io-0.8))))
12789 (home-page "https://github.com/xiph/rav1e")
12790 (synopsis "Simple ivf muxer")
12791 (description "This package provides a simple ivf muxer.")
12792 (license license:bsd-2)))
12793
12794 (define-public rust-jemalloc-sys-0.3
12795 (package
12796 (name "rust-jemalloc-sys")
12797 (version "0.3.2")
12798 (source
12799 (origin
12800 (method url-fetch)
12801 (uri (crate-uri "jemalloc-sys" version))
12802 (file-name (string-append name "-" version ".tar.gz"))
12803 (sha256
12804 (base32
12805 "0ify9vlql01qhfxlj7d4p9jvcp90mj2h69nkbq7slccvbhzryfqd"))
12806 (modules '((guix build utils)))
12807 (snippet
12808 '(begin (delete-file-recursively "jemalloc") #t))))
12809 (build-system cargo-build-system)
12810 (arguments
12811 `(#:cargo-inputs
12812 (("rust-libc" ,rust-libc-0.2)
12813 ;; Build dependencies:
12814 ("rust-cc" ,rust-cc-1)
12815 ("rust-fs-extra" ,rust-fs-extra-1.1))
12816 #:phases
12817 (modify-phases %standard-phases
12818 (add-after 'configure 'override-jemalloc
12819 (lambda* (#:key inputs #:allow-other-keys)
12820 (let ((jemalloc (assoc-ref inputs "jemalloc")))
12821 (setenv "JEMALLOC_OVERRIDE"
12822 (string-append jemalloc "/lib/libjemalloc_pic.a")))
12823 #t)))))
12824 (native-inputs
12825 `(("jemalloc" ,jemalloc)))
12826 (home-page "https://github.com/gnzlbg/jemallocator")
12827 (synopsis "Rust FFI bindings to jemalloc")
12828 (description "This package provides Rust FFI bindings to jemalloc.")
12829 (license (list license:asl2.0
12830 license:expat))))
12831
12832 (define-public rust-jemalloc-sys-0.1
12833 (package
12834 (inherit rust-jemalloc-sys-0.3)
12835 (name "rust-jemalloc-sys")
12836 (version "0.1.8")
12837 (source
12838 (origin
12839 (method url-fetch)
12840 (uri (crate-uri "jemalloc-sys" version))
12841 (file-name
12842 (string-append name "-" version ".tar.gz"))
12843 (sha256
12844 (base32
12845 "1bh07rlzgg39ys1lsgnpxgvjj6blagp2h17fx267d0g3a272rimz"))
12846 (modules '((guix build utils)))
12847 (snippet
12848 '(begin (delete-file-recursively "jemalloc") #t))))))
12849
12850 (define-public rust-jemallocator-0.3
12851 (package
12852 (name "rust-jemallocator")
12853 (version "0.3.2")
12854 (source
12855 (origin
12856 (method url-fetch)
12857 (uri (crate-uri "jemallocator" version))
12858 (file-name
12859 (string-append name "-" version ".tar.gz"))
12860 (sha256
12861 (base32
12862 "0sabfa5118b7l4ars5n36s2fjyfn59w4d6mjs6rrmsa5zky67bj3"))))
12863 (build-system cargo-build-system)
12864 (arguments
12865 `(#:skip-build? #t
12866 #:cargo-inputs
12867 (("rust-jemalloc-sys" ,rust-jemalloc-sys-0.3)
12868 ("rust-libc" ,rust-libc-0.2))
12869 #:cargo-development-inputs
12870 (("rust-paste" ,rust-paste-0.1))))
12871 (home-page "https://github.com/gnzlbg/jemallocator")
12872 (synopsis "Rust allocator backed by jemalloc")
12873 (description
12874 "This package provides a Rust allocator backed by jemalloc.")
12875 (license (list license:expat license:asl2.0))))
12876
12877 (define-public rust-jemallocator-0.1
12878 (package
12879 (inherit rust-jemallocator-0.3)
12880 (name "rust-jemallocator")
12881 (version "0.1.9")
12882 (source
12883 (origin
12884 (method url-fetch)
12885 (uri (crate-uri "jemallocator" version))
12886 (file-name
12887 (string-append name "-" version ".tar.gz"))
12888 (sha256
12889 (base32
12890 "1csabk36p06nlh3qxxsg6nkf074b2jq2cld5zriq0xazqqmd834z"))))
12891 (build-system cargo-build-system)
12892 (arguments
12893 `(#:cargo-inputs
12894 (("rust-jemalloc-sys" ,rust-jemalloc-sys-0.1)
12895 ("rust-libc" ,rust-libc-0.2))
12896 #:phases
12897 (modify-phases %standard-phases
12898 (add-after 'configure 'override-jemalloc
12899 (lambda* (#:key inputs #:allow-other-keys)
12900 (let ((jemalloc (assoc-ref inputs "jemalloc")))
12901 (setenv "JEMALLOC_OVERRIDE"
12902 (string-append jemalloc "/lib/libjemalloc_pic.a")))
12903 #t)))))
12904 (native-inputs
12905 `(("jemalloc" ,jemalloc)))))
12906
12907 (define-public rust-jobserver-0.1
12908 (package
12909 (name "rust-jobserver")
12910 (version "0.1.19")
12911 (source
12912 (origin
12913 (method url-fetch)
12914 (uri (crate-uri "jobserver" version))
12915 (file-name
12916 (string-append name "-" version ".tar.gz"))
12917 (sha256
12918 (base32
12919 "1q2w80v8p2pbfm8ayhjs6zi11a1hp4535z4ck8kg872z8ldnrc37"))))
12920 (build-system cargo-build-system)
12921 (arguments
12922 `(#:cargo-inputs
12923 (("rust-libc" ,rust-libc-0.2))
12924 #:cargo-development-inputs
12925 (("rust-futures" ,rust-futures-0.1)
12926 ("rust-num-cpus" ,rust-num-cpus-1)
12927 ("rust-tempdir" ,rust-tempdir-0.3)
12928 ("rust-tokio-core" ,rust-tokio-core-0.1)
12929 ("rust-tokio-process" ,rust-tokio-process-0.2))))
12930 (home-page "https://github.com/alexcrichton/jobserver-rs")
12931 (synopsis "GNU make jobserver for Rust")
12932 (description
12933 "An implementation of the GNU make jobserver for Rust.")
12934 (license (list license:expat license:asl2.0))))
12935
12936 (define-public rust-js-sys-0.3
12937 (package
12938 (name "rust-js-sys")
12939 (version "0.3.37")
12940 (source
12941 (origin
12942 (method url-fetch)
12943 (uri (crate-uri "js-sys" version))
12944 (file-name
12945 (string-append name "-" version ".tar.gz"))
12946 (sha256
12947 (base32
12948 "0mbhpbw3zjjl51m24qx3ilq4y8xipm5sfa5hsavaabqs6wsx89va"))))
12949 (build-system cargo-build-system)
12950 (arguments
12951 `(#:skip-build? #t
12952 #:cargo-inputs
12953 (("rust-wasm-bindgen" ,rust-wasm-bindgen-0.2))
12954 #:cargo-development-inputs
12955 (("rust-wasm-bindgen-futures" ,rust-wasm-bindgen-futures-0.4)
12956 ("rust-wasm-bindgen-test" ,rust-wasm-bindgen-test-0.3))))
12957 (home-page "https://rustwasm.github.io/wasm-bindgen/")
12958 (synopsis "Bindings for all JS global objects and functions in WASM")
12959 (description
12960 "Bindings for all JS global objects and functions in all JS environments
12961 like Node.js and browsers, built on @code{#[wasm_bindgen]} using the
12962 wasm-bindgen crate.")
12963 (license (list license:asl2.0 license:expat))))
12964
12965 (define-public rust-json-0.11
12966 (package
12967 (name "rust-json")
12968 (version "0.11.15")
12969 (source
12970 (origin
12971 (method url-fetch)
12972 (uri (crate-uri "json" version))
12973 (file-name (string-append name "-" version ".crate"))
12974 (sha256
12975 (base32
12976 "1rg9jxf6bpbwis3ixd5ak8rp37him7n4z8awz4ssrxl6hyplbhlj"))))
12977 (build-system cargo-build-system)
12978 (arguments '(#:skip-build? #t))
12979 (home-page "https://github.com/maciejhirsz/json-rust")
12980 (synopsis "JSON implementation in Rust")
12981 (description "This crate provides a JSON implementation in Rust, reducing
12982 friction with idiomatic Rust structs to ease interopability.")
12983 (license (list license:asl2.0
12984 license:expat))))
12985
12986 (define-public rust-keccak-0.1
12987 (package
12988 (name "rust-keccak")
12989 (version "0.1.0")
12990 (source
12991 (origin
12992 (method url-fetch)
12993 (uri (crate-uri "keccak" version))
12994 (file-name (string-append name "-" version ".tar.gz"))
12995 (sha256
12996 (base32 "19ybbvxrdk9yy65rk7f5ad0hcxszkjwph68yzkj3954lnir1bhk7"))))
12997 (build-system cargo-build-system)
12998 (arguments `(#:skip-build? #t))
12999 (home-page "https://crates.io/crates/keccak")
13000 (synopsis "Keccak-f sponge function for Rust")
13001 (description "This package provides a keccak-f sponge function")
13002 (license license:cc0)))
13003
13004 (define-public rust-kernel32-sys-0.2
13005 (package
13006 (name "rust-kernel32-sys")
13007 (version "0.2.2")
13008 (source
13009 (origin
13010 (method url-fetch)
13011 (uri (crate-uri "kernel32-sys" version))
13012 (file-name (string-append name "-" version ".crate"))
13013 (sha256
13014 (base32
13015 "1389av0601a9yz8dvx5zha9vmkd6ik7ax0idpb032d28555n41vm"))))
13016 (build-system cargo-build-system)
13017 (arguments
13018 `(#:skip-build? #t
13019 #:cargo-inputs
13020 (("rust-winapi" ,rust-winapi-0.2)
13021 ("rust-winapi-build" ,rust-winapi-build-0.1))))
13022 (home-page "https://github.com/retep998/winapi-rs")
13023 (synopsis "Function definitions for the Windows API library kernel32")
13024 (description "Contains function definitions for the Windows API library
13025 kernel32.")
13026 (license license:expat)))
13027
13028 (define-public rust-khronos-api-3
13029 (package
13030 (name "rust-khronos-api")
13031 (version "3.1.0")
13032 (source
13033 (origin
13034 (method url-fetch)
13035 (uri (crate-uri "khronos-api" version))
13036 (file-name
13037 (string-append name "-" version ".tar.gz"))
13038 (sha256
13039 (base32
13040 "1p0xj5mlbagqyvvnv8wmv3cr7l9y1m153888pxqwg3vk3mg5inz2"))))
13041 (build-system cargo-build-system)
13042 (home-page "https://github.com/brendanzab/gl-rs/")
13043 (synopsis "Khronos XML API Registry")
13044 (description
13045 "The Khronos XML API Registry, exposed as byte string constants.")
13046 (license license:asl2.0)))
13047
13048 (define-public rust-language-tags-0.2
13049 (package
13050 (name "rust-language-tags")
13051 (version "0.2.2")
13052 (source
13053 (origin
13054 (method url-fetch)
13055 (uri (crate-uri "language-tags" version))
13056 (file-name (string-append name "-" version ".crate"))
13057 (sha256
13058 (base32
13059 "16hrjdpa827carq5x4b8zhas24d8kg4s16m6nmmn1kb7cr5qh7d9"))))
13060 (build-system cargo-build-system)
13061 (arguments
13062 `(#:skip-build? #t
13063 #:cargo-inputs
13064 (("rust-heapsize" ,rust-heapsize-0.3)
13065 ("rust-heapsize-plugin" ,rust-heapsize-plugin-0.1))))
13066 (home-page "https://github.com/pyfisch/rust-language-tags")
13067 (synopsis "Language tags for Rust")
13068 (description
13069 "Language tags can be used identify human languages, scripts e.g. Latin
13070 script, countries and other regions. They are commonly used in HTML and HTTP
13071 @code{Content-Language} and @code{Accept-Language} header fields. This package
13072 currently supports parsing (fully conformant parser), formatting and comparing
13073 language tags.")
13074 (license license:expat)))
13075
13076 (define-public rust-lab-0.8
13077 (package
13078 (name "rust-lab")
13079 (version "0.8.1")
13080 (source
13081 (origin
13082 (method url-fetch)
13083 (uri (crate-uri "lab" version))
13084 (file-name
13085 (string-append name "-" version ".tar.gz"))
13086 (sha256
13087 (base32
13088 "1ysnbviwi35mq6xyz9c59mpgigyfp4s4y2mispxzrms4vk83bx15"))))
13089 (build-system cargo-build-system)
13090 (arguments
13091 `(#:cargo-development-inputs
13092 (("rust-approx" ,rust-approx-0.3)
13093 ("rust-criterion" ,rust-criterion-0.3)
13094 ("rust-lazy-static" ,rust-lazy-static-1)
13095 ("rust-pretty-assertions" ,rust-pretty-assertions-0.6)
13096 ("rust-rand" ,rust-rand-0.5))))
13097 (home-page "https://github.com/TooManyBees/lab")
13098 (synopsis "Convert RGB to CIE-LAB for Rust")
13099 (description
13100 "This package contains tools for converting RGB colors to the CIE-LAB color
13101 space, and comparing differences in color.")
13102 (license license:expat)))
13103
13104 (define-public rust-lab-0.7
13105 (package
13106 (inherit rust-lab-0.8)
13107 (name "rust-lab")
13108 (version "0.7.2")
13109 (source
13110 (origin
13111 (method url-fetch)
13112 (uri (crate-uri "lab" version))
13113 (file-name
13114 (string-append name "-" version ".tar.gz"))
13115 (sha256
13116 (base32
13117 "0g692d489lq01pv3mzfhxd98j0r22lw28l6bk112m74djlfzxdmw"))))
13118 (arguments
13119 `(#:tests? #f ; test suite assumes avx2 support
13120 #:cargo-development-inputs
13121 (("rust-criterion" ,rust-criterion-0.3)
13122 ("rust-lazy-static" ,rust-lazy-static-1)
13123 ("rust-pretty-assertions" ,rust-pretty-assertions-0.6)
13124 ("rust-rand" ,rust-rand-0.5))))))
13125
13126 (define-public rust-lab-0.4
13127 (package
13128 (inherit rust-lab-0.8)
13129 (name "rust-lab")
13130 (version "0.4.4")
13131 (source
13132 (origin
13133 (method url-fetch)
13134 (uri (crate-uri "lab" version))
13135 (file-name
13136 (string-append name "-" version ".tar.gz"))
13137 (sha256
13138 (base32
13139 "0h4ig5bvzmwlzd74zj7b4sh7kzi3c6mjjnw7yjz8ijxvr4mrcr1s"))))
13140 (arguments
13141 `(#:cargo-development-inputs
13142 (("rust-rand" ,rust-rand-0.3))))))
13143
13144 (define-public rust-lalrpop-0.19
13145 (package
13146 (name "rust-lalrpop")
13147 (version "0.19.1")
13148 (source
13149 (origin
13150 (method url-fetch)
13151 (uri (crate-uri "lalrpop" version))
13152 (file-name (string-append name "-" version ".tar.gz"))
13153 (sha256
13154 (base32 "1j52sybjhn82ydgsmnw7nkywjyb7pvg50mvyb48m7vdq3wcmdyv0"))))
13155 (build-system cargo-build-system)
13156 (arguments
13157 `(#:skip-build? #t
13158 #:cargo-inputs
13159 (("rust-ascii-canvas" ,rust-ascii-canvas-2)
13160 ("rust-atty" ,rust-atty-0.2)
13161 ("rust-bit-set" ,rust-bit-set-0.5)
13162 ("rust-diff" ,rust-diff-0.1)
13163 ("rust-docopt" ,rust-docopt-1.1)
13164 ("rust-ena" ,rust-ena-0.14)
13165 ("rust-itertools" ,rust-itertools-0.9)
13166 ("rust-lalrpop-util" ,rust-lalrpop-util-0.19)
13167 ("rust-petgraph" ,rust-petgraph-0.5)
13168 ("rust-regex" ,rust-regex-1)
13169 ("rust-regex-syntax" ,rust-regex-syntax-0.6)
13170 ("rust-serde" ,rust-serde-1)
13171 ("rust-serde-derive" ,rust-serde-derive-1)
13172 ("rust-sha2" ,rust-sha2-0.8)
13173 ("rust-string-cache" ,rust-string-cache-0.8)
13174 ("rust-term" ,rust-term-0.5)
13175 ("rust-unicode-xid" ,rust-unicode-xid-0.2))
13176 #:cargo-development-inputs
13177 (("rust-rand" ,rust-rand-0.7))))
13178 (home-page "https://github.com/lalrpop/lalrpop")
13179 (synopsis "Convenient LR(1) parser generator for Rust")
13180 (description "LALRPOP is a Rust parser generator framework with usability
13181 as its primary goal. You should be able to write compact, DRY, readable
13182 grammars.")
13183 (license (list license:asl2.0 license:expat))))
13184
13185 (define-public rust-lalrpop-0.17
13186 (package
13187 (inherit rust-lalrpop-0.19)
13188 (name "rust-lalrpop")
13189 (version "0.17.2")
13190 (source
13191 (origin
13192 (method url-fetch)
13193 (uri (crate-uri "lalrpop" version))
13194 (file-name (string-append name "-" version ".tar.gz"))
13195 (sha256
13196 (base32 "1nv7ma8cgw3r1fcma7gy06fwwlpl4fkz91mxv5kjhiaxwyc3dp34"))))
13197 (build-system cargo-build-system)
13198 (arguments
13199 `(#:cargo-inputs
13200 (("rust-ascii-canvas" ,rust-ascii-canvas-2)
13201 ("rust-atty" ,rust-atty-0.2)
13202 ("rust-bit-set" ,rust-bit-set-0.5)
13203 ("rust-diff" ,rust-diff-0.1)
13204 ("rust-docopt" ,rust-docopt-1.1)
13205 ("rust-ena" ,rust-ena-0.13)
13206 ("rust-itertools" ,rust-itertools-0.8)
13207 ("rust-lalrpop-util" ,rust-lalrpop-util-0.17)
13208 ("rust-petgraph" ,rust-petgraph-0.4)
13209 ("rust-regex" ,rust-regex-1)
13210 ("rust-regex-syntax" ,rust-regex-syntax-0.6)
13211 ("rust-serde" ,rust-serde-1)
13212 ("rust-serde-derive" ,rust-serde-derive-1)
13213 ("rust-sha2" ,rust-sha2-0.8)
13214 ("rust-string-cache" ,rust-string-cache-0.7)
13215 ("rust-term" ,rust-term-0.5)
13216 ("rust-unicode-xid" ,rust-unicode-xid-0.2))
13217 #:cargo-development-inputs
13218 (("rust-rand" ,rust-rand-0.6))))))
13219
13220 (define-public rust-lalrpop-util-0.19
13221 (package
13222 (name "rust-lalrpop-util")
13223 (version "0.19.1")
13224 (source
13225 (origin
13226 (method url-fetch)
13227 (uri (crate-uri "lalrpop-util" version))
13228 (file-name (string-append name "-" version ".tar.gz"))
13229 (sha256
13230 (base32 "0224r8gsbk8and96nhwgzdj4hc1c01g78zmvv3x4f5jnzwg1cwb7"))))
13231 (build-system cargo-build-system)
13232 (arguments
13233 `(#:skip-build? #t
13234 #:cargo-inputs
13235 (("rust-regex" ,rust-regex-1))))
13236 (home-page "https://github.com/lalrpop/lalrpop")
13237 (synopsis "Runtime library for parsers generated by LALRPOP")
13238 (description "THis package provides the runtime library for parsers
13239 generated by LALRPOP.")
13240 (license (list license:asl2.0 license:expat))))
13241
13242 (define-public rust-lalrpop-util-0.17
13243 (package
13244 (inherit rust-lalrpop-util-0.19)
13245 (name "rust-lalrpop-util")
13246 (version "0.17.2")
13247 (source
13248 (origin
13249 (method url-fetch)
13250 (uri (crate-uri "lalrpop-util" version))
13251 (file-name (string-append name "-" version ".tar.gz"))
13252 (sha256
13253 (base32 "0z4bjn3g9232n1im5p6mn9mwlvw5aj5iac6hbjmljqxkhf3d2xy2"))))))
13254
13255 (define-public rust-lazy-static-1.4
13256 (package
13257 (name "rust-lazy-static")
13258 (version "1.4.0")
13259 (source
13260 (origin
13261 (method url-fetch)
13262 (uri (crate-uri "lazy_static" version))
13263 (file-name (string-append name "-" version ".crate"))
13264 (sha256
13265 (base32
13266 "0in6ikhw8mgl33wjv6q6xfrb5b9jr16q8ygjy803fay4zcisvaz2"))))
13267 (build-system cargo-build-system)
13268 (arguments
13269 `(#:cargo-inputs (("rust-spin" ,rust-spin-0.5))
13270 #:cargo-development-inputs
13271 (("rust-doc-comment" ,rust-doc-comment-0.3))))
13272 (home-page "https://github.com/rust-lang-nursery/lazy-static.rs")
13273 (synopsis "Macro for declaring lazily evaluated statics in Rust")
13274 (description
13275 "This package provides a macro for declaring lazily evaluated statics in
13276 Rust. Using this macro, it is possible to have @code{static}s that require code
13277 to be executed at runtime in order to be initialized. This includes anything
13278 requiring heap allocations, like vectors or hash maps, as well as anything that
13279 requires non-const function calls to be computed.")
13280 (license (list license:asl2.0
13281 license:expat))))
13282
13283 (define-public rust-lazy-static-1 rust-lazy-static-1.4)
13284
13285 (define-public rust-lazy-static-1.3
13286 (package
13287 (inherit rust-lazy-static-1.4)
13288 (name "rust-lazy-static")
13289 (version "1.3.0")
13290 (source
13291 (origin
13292 (method url-fetch)
13293 (uri (crate-uri "lazy_static" version))
13294 (file-name (string-append name "-" version ".crate"))
13295 (sha256
13296 (base32
13297 "052ac27w189hrf1j3hz7sga46rp84zl2hqnzyihxv78mgzr2jmxw"))))
13298 (arguments
13299 `(#:cargo-inputs (("rust-spin" ,rust-spin-0.5))))))
13300
13301 (define-public rust-lazy-static-0.2
13302 (package
13303 (inherit rust-lazy-static-1.4)
13304 (name "rust-lazy-static")
13305 (version "0.2.11")
13306 (source
13307 (origin
13308 (method url-fetch)
13309 (uri (crate-uri "lazy_static" version))
13310 (file-name
13311 (string-append name "-" version ".tar.gz"))
13312 (sha256
13313 (base32
13314 "0wxy8vak7jsx6r8gx475pjqpx11p2bfq4wvw6idmqi31mp3k7w3n"))))
13315 (arguments
13316 `(#:tests? #f ; Tests fail to compile.
13317 #:cargo-inputs
13318 (("rust-compiletest-rs" ,rust-compiletest-rs-0.3)
13319 ("rust-spin" ,rust-spin-0.4))))))
13320
13321 (define-public rust-lazy-static-0.1
13322 (package
13323 (inherit rust-lazy-static-0.2)
13324 (name "rust-lazy-static")
13325 (version "0.1.16")
13326 (source
13327 (origin
13328 (method url-fetch)
13329 (uri (crate-uri "lazy_static" version))
13330 (file-name
13331 (string-append name "-" version ".tar.gz"))
13332 (sha256
13333 (base32
13334 "05vl1h4b0iv800grsdyc3fg2bq29p70wjav6zpjvxxd5i8d6s66g"))))
13335 (arguments '())))
13336
13337 (define-public rust-lazycell-1
13338 (package
13339 (name "rust-lazycell")
13340 (version "1.2.1")
13341 (source
13342 (origin
13343 (method url-fetch)
13344 (uri (crate-uri "lazycell" version))
13345 (file-name
13346 (string-append name "-" version ".tar.gz"))
13347 (sha256
13348 (base32
13349 "0gvqycmpv7parc98i6y64ai7rvxrn1947z2a6maa02g4kvxdd55j"))))
13350 (build-system cargo-build-system)
13351 (arguments
13352 `(#:skip-build? #t
13353 #:cargo-inputs (("rust-clippy" ,rust-clippy-0.0))))
13354 (home-page "https://github.com/indiv0/lazycell")
13355 (synopsis "Lazily filled Cell struct")
13356 (description
13357 "This package provides a library providing a lazily filled Cell struct.")
13358 (license (list license:expat license:asl2.0))))
13359
13360 (define-public rust-lexical-core-0.7
13361 (package
13362 (name "rust-lexical-core")
13363 (version "0.7.4")
13364 (source
13365 (origin
13366 (method url-fetch)
13367 (uri (crate-uri "lexical-core" version))
13368 (file-name
13369 (string-append name "-" version ".tar.gz"))
13370 (sha256
13371 (base32
13372 "05i6b69ay8xbxw88vx89vglb7xm5n8ky82hax7d5a7z60bdccrfv"))))
13373 (build-system cargo-build-system)
13374 (arguments
13375 `(#:cargo-inputs
13376 (("rust-arrayvec" ,rust-arrayvec-0.5)
13377 ("rust-bitflags" ,rust-bitflags-1)
13378 ("rust-cfg-if" ,rust-cfg-if-0.1)
13379 ("rust-dtoa" ,rust-dtoa-0.4)
13380 ("rust-ryu" ,rust-ryu-1.0)
13381 ("rust-static-assertions" ,rust-static-assertions-1))
13382 #:cargo-development-inputs
13383 (("rust-approx" ,rust-approx-0.3)
13384 ("rust-proptest" ,rust-proptest-0.9)
13385 ("rust-quickcheck" ,rust-quickcheck-0.9))))
13386 (home-page
13387 "https://github.com/Alexhuszagh/rust-lexical/tree/master/lexical-core")
13388 (synopsis
13389 "Lexical, to- and from-string conversion routines")
13390 (description
13391 "Lexical, to- and from-string conversion routines.")
13392 (license (list license:expat license:asl2.0))))
13393
13394 (define-public rust-lexical-core-0.4
13395 (package
13396 (inherit rust-lexical-core-0.7)
13397 (name "rust-lexical-core")
13398 (version "0.4.2")
13399 (source
13400 (origin
13401 (method url-fetch)
13402 (uri (crate-uri "lexical-core" version))
13403 (file-name
13404 (string-append name "-" version ".tar.gz"))
13405 (sha256
13406 (base32
13407 "1gr5y3ykghd3wjc00l3iizkj1dxylyhwi6fj6yn2qg06nzx771iz"))))
13408 (arguments
13409 `(#:skip-build? #t
13410 #:cargo-inputs
13411 (("rust-cfg-if" ,rust-cfg-if-0.1)
13412 ("rust-dtoa" ,rust-dtoa-0.4)
13413 ("rust-ryu" ,rust-ryu-1.0)
13414 ("rust-stackvector" ,rust-stackvector-1.0)
13415 ("rust-static-assertions" ,rust-static-assertions-0.3))
13416 #:cargo-development-inputs
13417 (("rust-approx" ,rust-approx-0.3)
13418 ("rust-proptest" ,rust-proptest-0.9)
13419 ("rust-quickcheck" ,rust-quickcheck-0.8)
13420 ("rust-rustc-version" ,rust-rustc-version-0.2))))))
13421
13422 (define-public rust-libc-0.2
13423 (package
13424 (name "rust-libc")
13425 (version "0.2.79")
13426 (source
13427 (origin
13428 (method url-fetch)
13429 (uri (crate-uri "libc" version))
13430 (file-name (string-append name "-" version ".crate"))
13431 (sha256
13432 (base32
13433 "0hw7qnlymw5gi5c3xd7mirpgrc5l0pvqpjg9jb3vzqw0dq3gcj14"))))
13434 (build-system cargo-build-system)
13435 (arguments
13436 `(#:cargo-inputs
13437 (("rust-rustc-std-workspace-core" ,rust-rustc-std-workspace-core-1))))
13438 (home-page "https://github.com/rust-lang/libc")
13439 (synopsis "Raw FFI bindings to platform libraries like libc")
13440 (description
13441 "The rust libc crate provides all of the definitions necessary to easily
13442 interoperate with C code (or \"C-like\" code) on each of the platforms that Rust
13443 supports. This includes type definitions (e.g., c_int), constants (e.g., EINVAL)
13444 as well as function headers (e.g., malloc).
13445
13446 This crate exports all underlying platform types, functions, and constants under
13447 the crate root, so all items are accessible as @samp{libc::foo}. The types and
13448 values of all the exported APIs match the platform that libc is compiled for.")
13449 (license (list license:expat
13450 license:asl2.0))))
13451
13452 (define-public rust-libc-print-0.1
13453 (package
13454 (name "rust-libc-print")
13455 (version "0.1.13")
13456 (source
13457 (origin
13458 (method url-fetch)
13459 (uri (crate-uri "libc-print" version))
13460 (file-name (string-append name "-" version ".tar.gz"))
13461 (sha256
13462 (base32 "0cjvz622b9bmf32q3mzmxv9ddxfdla6z2v647v8f3qx7lci9kmji"))))
13463 (build-system cargo-build-system)
13464 (arguments
13465 `(#:cargo-inputs (("rust-libc" ,rust-libc-0.2))))
13466 (home-page "https://github.com/mmastrac/rust-libc-print")
13467 (synopsis "Println! and eprintln! without stdlib")
13468 (description "This package provices @code{println!} and @code{eprintln!}
13469 macros on libc without stdlib.")
13470 (license (list license:asl2.0 license:expat))))
13471
13472 (define-public rust-libflate-1
13473 (package
13474 (name "rust-libflate")
13475 (version "1.0.2")
13476 (source
13477 (origin
13478 (method url-fetch)
13479 (uri (crate-uri "libflate" version))
13480 (file-name (string-append name "-" version ".tar.gz"))
13481 (sha256
13482 (base32
13483 "0jarv5ildsm0ci4prd4gz7fqypifhp9xk34z9w49rchx7q1ckfp9"))))
13484 (build-system cargo-build-system)
13485 (arguments
13486 `(#:cargo-inputs
13487 (("rust-adler32" ,rust-adler32-1)
13488 ("rust-crc32fast" ,rust-crc32fast-1)
13489 ("rust-libflate-lz77" ,rust-libflate-lz77-1)
13490 ("rust-rle-decode-fast" ,rust-rle-decode-fast-1))
13491 #:cargo-development-inputs
13492 (("rust-clap" ,rust-clap-2))))
13493 (home-page "https://github.com/sile/libflate")
13494 (synopsis "DEFLATE algorithm and related formats (ZLIB, GZIP)")
13495 (description "This package provides a Rust implementation of DEFLATE
13496 algorithm and related formats (ZLIB, GZIP).")
13497 (license license:expat)))
13498
13499 (define-public rust-libflate-0.1
13500 (package
13501 (inherit rust-libflate-1)
13502 (name "rust-libflate")
13503 (version "0.1.27")
13504 (source
13505 (origin
13506 (method url-fetch)
13507 (uri (crate-uri "libflate" version))
13508 (file-name (string-append name "-" version ".tar.gz"))
13509 (sha256
13510 (base32
13511 "1p8z839c5lpl0g01mf8iglys9lgcjxw6xjw56crhwp8z7gs5s4yr"))))
13512 (build-system cargo-build-system)
13513 (arguments
13514 `(#:cargo-inputs
13515 (("rust-adler32" ,rust-adler32-1)
13516 ("rust-crc32fast" ,rust-crc32fast-1)
13517 ("rust-rle-decode-fast" ,rust-rle-decode-fast-1)
13518 ("rust-take-mut" ,rust-take-mut-0.2))
13519 #:cargo-development-inputs
13520 (("rust-clap" ,rust-clap-2))))))
13521
13522 (define-public rust-libflate-lz77-1
13523 (package
13524 (name "rust-libflate-lz77")
13525 (version "1.0.0")
13526 (source
13527 (origin
13528 (method url-fetch)
13529 (uri (crate-uri "libflate_lz77" version))
13530 (file-name (string-append name "-" version ".tar.gz"))
13531 (sha256
13532 (base32
13533 "06xir79gmp97mdnlnjclk5zlzgkf5s6qvwilcd4gq9j9gngz11ij"))))
13534 (build-system cargo-build-system)
13535 (arguments
13536 `(#:cargo-development-inputs
13537 (("rust-libflate" ,rust-libflate-0.1))))
13538 (home-page "https://github.com/sile/libflate")
13539 (synopsis "LZ77 encoder for libflate crate")
13540 (description "This package provides a LZ77 encoder for libflate crate.")
13541 (license license:expat)))
13542
13543 (define-public rust-libgit2-sys-0.10
13544 (package
13545 (name "rust-libgit2-sys")
13546 (version "0.10.0")
13547 (source
13548 (origin
13549 (method url-fetch)
13550 (uri (crate-uri "libgit2-sys" version))
13551 (file-name (string-append name "-" version ".tar.gz"))
13552 (sha256
13553 (base32
13554 "0l9fvki7qxsl97vgzqwlv75nl213a5vxw7b1jaik97ala356pv6r"))
13555 (modules '((guix build utils)))
13556 (snippet
13557 '(begin (delete-file-recursively "libgit2") #t))))
13558 (build-system cargo-build-system)
13559 (arguments
13560 `(#:cargo-inputs
13561 (("rust-libc" ,rust-libc-0.2)
13562 ("rust-libz-sys" ,rust-libz-sys-1)
13563 ("rust-libssh2-sys" ,rust-libssh2-sys-0.2)
13564 ("rust-openssl-sys" ,rust-openssl-sys-0.9)
13565 ;; Build dependencies:
13566 ("rust-cc" ,rust-cc-1)
13567 ("rust-pkg-config" ,rust-pkg-config-0.3))))
13568 (native-inputs
13569 `(("pkg-config" ,pkg-config)))
13570 (inputs
13571 `(("libgit2" ,libgit2)
13572 ("openssl" ,openssl)
13573 ("zlib" ,zlib)))
13574 (home-page "https://github.com/rust-lang/git2-rs")
13575 (synopsis "Native bindings to the libgit2 library")
13576 (description
13577 "This package provides native rust bindings to the @code{libgit2} library.")
13578 (license (list license:asl2.0
13579 license:expat))))
13580
13581 (define-public rust-libgit2-sys-0.8
13582 (package
13583 (inherit rust-libgit2-sys-0.10)
13584 (name "rust-libgit2-sys")
13585 (version "0.8.2")
13586 (source
13587 (origin
13588 (method url-fetch)
13589 (uri (crate-uri "libgit2-sys" version))
13590 (file-name (string-append name "-" version ".tar.gz"))
13591 (sha256
13592 (base32
13593 "0y2mibmx7wy91s2kmb2gfb29mrqlqaxpy5wcwr8s1lwws7b9w5sc"))
13594 (modules '((guix build utils)))
13595 (snippet
13596 '(begin (delete-file-recursively "libgit2") #t))))))
13597
13598 (define-public rust-libgit2-sys-0.7
13599 (package
13600 (inherit rust-libgit2-sys-0.8)
13601 (name "rust-libgit2-sys")
13602 (version "0.7.11")
13603 (source
13604 (origin
13605 (method url-fetch)
13606 (uri (crate-uri "libgit2-sys" version))
13607 (file-name (string-append name "-" version ".tar.gz"))
13608 (sha256
13609 (base32
13610 "1wcvg2qqra2aviasvqcscl8gb2rnjnd6h998wy5dlmf2bnriqi28"))
13611 (modules '((guix build utils)))
13612 (snippet
13613 '(begin (delete-file-recursively "libgit2") #t))))
13614 (arguments
13615 `(#:cargo-inputs
13616 (("rust-curl-sys" ,rust-curl-sys-0.4)
13617 ("rust-libc" ,rust-libc-0.2)
13618 ("rust-libssh2-sys" ,rust-libssh2-sys-0.2)
13619 ("rust-libz-sys" ,rust-libz-sys-1)
13620 ("rust-openssl-sys" ,rust-openssl-sys-0.9)
13621 ("rust-cc" ,rust-cc-1)
13622 ("rust-pkg-config" ,rust-pkg-config-0.3))))))
13623
13624 (define-public rust-libloading-0.6
13625 (package
13626 (name "rust-libloading")
13627 (version "0.6.3")
13628 (source
13629 (origin
13630 (method url-fetch)
13631 (uri (crate-uri "libloading" version))
13632 (file-name (string-append name "-" version ".tar.gz"))
13633 (sha256
13634 (base32
13635 "1ygliqa518jjxwa5ih4b2f8m984ib596vxmjb28pa5lb8zqdhhr4"))
13636 (modules '((guix build utils)))
13637 (snippet
13638 '(begin
13639 ;; Enable unstable features
13640 (substitute* "src/lib.rs"
13641 (("//! A memory" all)
13642 (string-append "#![feature(non_exhaustive)]\n" all)))))))
13643 (build-system cargo-build-system)
13644 (arguments
13645 `(#:cargo-inputs
13646 (("rust-cfg-if" ,rust-cfg-if-0.1)
13647 ("rust-winapi" ,rust-winapi-0.3))
13648 #:cargo-development-inputs
13649 (("rust-libc" ,rust-libc-0.2)
13650 ("rust-static-assertions" ,rust-static-assertions-1))))
13651 (home-page "https://github.com/nagisa/rust_libloading/")
13652 (synopsis "Safer binding to dynamic library loading utilities")
13653 (description "This package provides a safer binding to dynamic library
13654 loading utilities.")
13655 (license license:isc)))
13656
13657 (define-public rust-libloading-0.5
13658 (package
13659 (name "rust-libloading")
13660 (version "0.5.2")
13661 (source
13662 (origin
13663 (method url-fetch)
13664 (uri (crate-uri "libloading" version))
13665 (file-name (string-append name "-" version ".crate"))
13666 (sha256
13667 (base32
13668 "0lyply8rcqc8agajzxs7bq6ivba9dnn1i68kgb9z2flnfjh13cgj"))))
13669 (build-system cargo-build-system)
13670 (arguments
13671 `(#:cargo-inputs
13672 (("rust-winapi" ,rust-winapi-0.3)
13673 ("rust-cc" ,rust-cc-1))))
13674 (home-page "https://github.com/nagisa/rust_libloading/")
13675 (synopsis "Rust library for loading dynamic libraries")
13676 (description
13677 "A memory-safer wrapper around system dynamic library loading primitives.
13678 The most important safety guarantee by this library is prevention of
13679 dangling-Symbols that may occur after a Library is unloaded. Using this library
13680 allows loading dynamic libraries (also known as shared libraries) as well as use
13681 functions and static variables these libraries contain.")
13682 (license license:isc)))
13683
13684 (define-public rust-libloading-0.3
13685 (package
13686 (inherit rust-libloading-0.5)
13687 (name "rust-libloading")
13688 (version "0.3.4")
13689 (source
13690 (origin
13691 (method url-fetch)
13692 (uri (crate-uri "libloading" version))
13693 (file-name
13694 (string-append name "-" version ".tar.gz"))
13695 (sha256
13696 (base32
13697 "0risz19rllhdc0d7nkpwkf4pcbjjgg1iim0kkmzb6kkp874hl0ha"))))
13698 (build-system cargo-build-system)
13699 (arguments
13700 `(#:tests? #f ; Some test libraries not included in release.
13701 #:cargo-inputs
13702 (("rust-kernel32-sys" ,rust-kernel32-sys-0.2)
13703 ("rust-lazy-static" ,rust-lazy-static-0.2)
13704 ("rust-winapi" ,rust-winapi-0.2)
13705 ("rust-target-build-utils" ,rust-target-build-utils-0.3))))))
13706
13707 (define-public rust-libm-0.2
13708 (package
13709 (name "rust-libm")
13710 (version "0.2.1")
13711 (source
13712 (origin
13713 (method url-fetch)
13714 (uri (crate-uri "libm" version))
13715 (file-name
13716 (string-append name "-" version ".tar.gz"))
13717 (sha256
13718 (base32
13719 "0akh56sh51adhagmk9l84dyrlz60gv8ri05xhr13i1b18czkpmy7"))))
13720 (build-system cargo-build-system)
13721 (arguments
13722 `(#:cargo-inputs
13723 (("rust-rand" ,rust-rand-0.6))
13724 #:cargo-development-inputs
13725 (("rust-no-panic" ,rust-no-panic-0.1))))
13726 (home-page "https://github.com/rust-lang/libm")
13727 (synopsis "Libm in pure Rust")
13728 (description "This package provides an implementation of libm in pure Rust.")
13729 (license (list license:expat license:asl2.0))))
13730
13731 (define-public rust-libm-0.1
13732 (package
13733 (inherit rust-libm-0.2)
13734 (name "rust-libm")
13735 (version "0.1.4")
13736 (source
13737 (origin
13738 (method url-fetch)
13739 (uri (crate-uri "libm" version))
13740 (file-name
13741 (string-append name "-" version ".tar.gz"))
13742 (sha256
13743 (base32
13744 "16pc0gx4gkg0q2s1ssq8268brn14j8344623vwhadmivc4lsmivz"))))))
13745
13746 (define-public rust-libmimalloc-sys-0.1
13747 (package
13748 (name "rust-libmimalloc-sys")
13749 (version "0.1.18")
13750 (source
13751 (origin
13752 (method url-fetch)
13753 (uri (crate-uri "libmimalloc-sys" version))
13754 (file-name (string-append name "-" version ".tar.gz"))
13755 (sha256
13756 (base32
13757 "0bbm03687j9fspvk6nqspmjlvchlvbxydl0mrc1x9i1k6kqiy5c2"))))
13758 (build-system cargo-build-system)
13759 (arguments
13760 `(#:cargo-inputs
13761 (("rust-cty" ,rust-cty-0.2)
13762 ("rust-cmake" ,rust-cmake-0.1))))
13763 (native-inputs
13764 `(("cmake" ,cmake-minimal)))
13765 (home-page "https://github.com/purpleprotocol/mimalloc_rust")
13766 (synopsis "Sys crate wrapping the mimalloc allocator")
13767 (description "This package provides a sys crate wrapping the mimalloc
13768 allocator.")
13769 (license license:expat)))
13770
13771 (define-public rust-libnghttp2-sys-0.1
13772 (package
13773 (name "rust-libnghttp2-sys")
13774 (version "0.1.4+1.41.0")
13775 (source
13776 (origin
13777 (method url-fetch)
13778 (uri (crate-uri "libnghttp2-sys" version))
13779 (file-name (string-append name "-" version ".tar.gz"))
13780 (sha256
13781 (base32
13782 "1wcd93a8cw1h9y25834160y6ng982fi0qcd277hpjvhnvz34wqh3"))
13783 (modules '((guix build utils)))
13784 (snippet
13785 '(begin
13786 (delete-file-recursively "nghttp2")
13787 (substitute* "Cargo.toml"
13788 (("false")
13789 "false\n[build-dependencies.pkg-config]\nversion = \"0.3\"\n"))
13790 (delete-file "build.rs")
13791 (with-output-to-file "build.rs"
13792 (lambda _
13793 (format #t "fn main() {~@
13794 println!(\"cargo:rustc-link-lib=nghttp2\");~@
13795 }~%")))
13796 #t))))
13797 (build-system cargo-build-system)
13798 (arguments
13799 `(#:cargo-inputs
13800 (("rust-libc" ,rust-libc-0.2)
13801 ("rust-cc" ,rust-cc-1)
13802 ("rust-pkg-config" ,rust-pkg-config-0.3))))
13803 (inputs
13804 `(("nghttp2" ,nghttp2 "lib")
13805 ("pkg-config" ,pkg-config)))
13806 (home-page "https://github.com/alexcrichton/nghttp2-rs")
13807 (synopsis "FFI bindings for libnghttp2 (nghttp2)")
13808 (description
13809 "This package provides FFI bindings for libnghttp2 (nghttp2).")
13810 (license (list license:asl2.0
13811 license:expat))))
13812
13813 (define-public rust-libpijul-0.12
13814 (package
13815 (name "rust-libpijul")
13816 (version "0.12.2")
13817 (source
13818 (origin
13819 (method url-fetch)
13820 (uri (crate-uri "libpijul" version))
13821 (file-name
13822 (string-append name "-" version ".tar.gz"))
13823 (sha256
13824 (base32
13825 "18d9n8xaq5ncq3375f0xrr96l8si1frczgzdlrz3fl1jby8vbl6f"))))
13826 (build-system cargo-build-system)
13827 (arguments
13828 `(#:tests? #f ; backend::file_header::test_fileheader_alignment fails
13829 #:cargo-inputs
13830 (("rust-base64" ,rust-base64-0.10)
13831 ("rust-bincode" ,rust-bincode-1)
13832 ("rust-bitflags" ,rust-bitflags-1)
13833 ("rust-bs58" ,rust-bs58-0.2)
13834 ("rust-byteorder" ,rust-byteorder-1)
13835 ("rust-chrono" ,rust-chrono-0.4)
13836 ("rust-diffs" ,rust-diffs-0.3)
13837 ("rust-failure" ,rust-failure-0.1)
13838 ("rust-flate2" ,rust-flate2-1)
13839 ("rust-hex" ,rust-hex-0.3)
13840 ("rust-ignore" ,rust-ignore-0.4)
13841 ("rust-log" ,rust-log-0.4)
13842 ("rust-openssl" ,rust-openssl-0.10)
13843 ("rust-rand" ,rust-rand-0.6)
13844 ("rust-sanakirja" ,rust-sanakirja-0.10)
13845 ("rust-sequoia-openpgp" ,rust-sequoia-openpgp-0.9)
13846 ("rust-serde" ,rust-serde-1)
13847 ("rust-serde-derive" ,rust-serde-derive-1)
13848 ("rust-serde-json" ,rust-serde-json-1)
13849 ("rust-tempdir" ,rust-tempdir-0.3)
13850 ("rust-toml" ,rust-toml-0.4))))
13851 (native-inputs
13852 `(("pkg-config" ,pkg-config)))
13853 (inputs
13854 `(("clang" ,clang)
13855 ("nettle" ,nettle)
13856 ("openssl" ,openssl)))
13857 (home-page "https://pijul.org/")
13858 (synopsis "Library component of the pijul version control system")
13859 (description
13860 "This crate contains the core API to access Pijul repositories.
13861
13862 The key object is a @code{Repository}, on which @code{Txn} (immutable
13863 transactions) and @code{MutTxn} (mutable transactions) can be started, to
13864 perform a variety of operations.
13865
13866 Another important object is a @code{Patch}, which encodes two different pieces
13867 of information:
13868
13869 @itemize
13870 @item Information about deleted and inserted lines between two versions of a
13871 file.
13872 @item Information about file moves, additions and deletions.
13873 @end itemize")
13874 (license license:gpl2+)))
13875
13876 (define-public rust-libsqlite3-sys-0.15
13877 (package
13878 (name "rust-libsqlite3-sys")
13879 (version "0.15.0")
13880 (source
13881 (origin
13882 (method url-fetch)
13883 (uri (crate-uri "libsqlite3-sys" version))
13884 (file-name (string-append name "-" version ".tar.gz"))
13885 (sha256
13886 (base32 "104n0s4f46zprppjq6y82y0wjh1r2cgwzw26w914yj30rizy1cbj"))))
13887 (build-system cargo-build-system)
13888 (inputs
13889 `(("sqlite" ,sqlite)))
13890 (arguments
13891 `(#:cargo-inputs
13892 ;; build dependencies
13893 (("rust-bindgen" ,rust-bindgen-0.49)
13894 ("rust-cc" ,rust-cc-1)
13895 ("rust-pkg-config" ,rust-pkg-config-0.3)
13896 ("rust-vcpkg" ,rust-vcpkg-0.2))))
13897 (home-page "https://github.com/rusqlite/rusqlite")
13898 (synopsis "Native bindings to the libsqlite3 library")
13899 (description "Native bindings to the libsqlite3 library")
13900 (license license:expat)))
13901
13902 (define-public rust-libz-sys-1
13903 (package
13904 (name "rust-libz-sys")
13905 (version "1.1.1")
13906 (source
13907 (origin
13908 (method url-fetch)
13909 (uri (crate-uri "libz-sys" version))
13910 (file-name (string-append name "-" version ".tar.gz"))
13911 (sha256
13912 (base32
13913 "1q25cb8vs113si7q2p0innhi8jk0wpq37hqi2wcc219hcmw43cr3"))
13914 (modules '((guix build utils)))
13915 (snippet
13916 '(begin (delete-file-recursively "src/zlib")
13917 (delete-file-recursively "src/zlib-ng")
13918 #t))))
13919 (build-system cargo-build-system)
13920 (arguments
13921 `(#:cargo-inputs
13922 (("rust-libc" ,rust-libc-0.2)
13923 ;; Build dependencies:
13924 ("rust-cc" ,rust-cc-1)
13925 ("rust-cmake" ,rust-cmake-0.1)
13926 ("rust-pkg-config" ,rust-pkg-config-0.3)
13927 ("rust-vcpkg" ,rust-vcpkg-0.2))))
13928 (native-inputs
13929 `(("pkg-config" ,pkg-config)
13930 ("zlib" ,zlib)))
13931 (home-page "https://github.com/rust-lang/libz-sys")
13932 (synopsis "Bindings to the system libz library")
13933 (description
13934 "This package provides bindings to the system @code{libz} library (also
13935 known as zlib).")
13936 (license (list license:asl2.0
13937 license:expat))))
13938
13939 (define-public rust-line-0.1
13940 (package
13941 (name "rust-line")
13942 (version "0.1.15")
13943 (source
13944 (origin
13945 (method url-fetch)
13946 (uri (crate-uri "line" version))
13947 (file-name
13948 (string-append name "-" version ".tar.gz"))
13949 (sha256
13950 (base32
13951 "0pissvrl5398701zlfd22w51ca32vhw83vbsl58a330hr4w5ra04"))))
13952 (build-system cargo-build-system)
13953 (arguments
13954 `(#:cargo-inputs
13955 (("rust-libc" ,rust-libc-0.2)
13956 ("rust-utf8parse" ,rust-utf8parse-0.1))))
13957 (home-page "https://crates.io/crates/line")
13958 (synopsis "Rust implementation of line editing in a terminal")
13959 (description
13960 "The main goals of this library are:
13961
13962 @itemize
13963 @item Portability: should work on any system (Unix or Windows).
13964 @item Support: was written for a real-world project (Pijul), so support is
13965 unlikely to stop soon.
13966 @item Output quality: avoid usual blinking terminal lines that older C
13967 libraries have.
13968 @end itemize")
13969 (license (list license:asl2.0 license:expat))))
13970
13971 (define-public rust-line-wrap-0.1
13972 (package
13973 (name "rust-line-wrap")
13974 (version "0.1.1")
13975 (source
13976 (origin
13977 (method url-fetch)
13978 (uri (crate-uri "line-wrap" version))
13979 (file-name
13980 (string-append name "-" version ".tar.gz"))
13981 (sha256
13982 (base32
13983 "1ffa2whkyh9mwvdlpk6v8pjkg8p8mlzyjfymq5adll9a18sl80zk"))))
13984 (build-system cargo-build-system)
13985 (arguments
13986 `(#:cargo-inputs
13987 (("rust-safemem" ,rust-safemem-0.3))
13988 #:cargo-development-inputs
13989 (("rust-rand" ,rust-rand-0.5))))
13990 (home-page "https://bitbucket.org/marshallpierce/line-wrap-rs/src")
13991 (synopsis "Efficiently insert line separators")
13992 (description
13993 "Efficiently insert line separators.")
13994 (license license:asl2.0)))
13995
13996 (define-public rust-linked-hash-map-0.5
13997 (package
13998 (name "rust-linked-hash-map")
13999 (version "0.5.3")
14000 (source
14001 (origin
14002 (method url-fetch)
14003 (uri (crate-uri "linked-hash-map" version))
14004 (file-name
14005 (string-append name "-" version ".tar.gz"))
14006 (sha256
14007 (base32
14008 "0jih3za0p1mywlnwcakc462q1byk6z8vnrzdm36hg6cxk7asdmcd"))))
14009 (build-system cargo-build-system)
14010 (arguments
14011 `(#:cargo-inputs
14012 (("rust-clippy" ,rust-clippy-0.0)
14013 ("rust-heapsize" ,rust-heapsize-0.4)
14014 ("rust-serde" ,rust-serde-1)
14015 ("rust-serde-test" ,rust-serde-test-1))))
14016 (home-page
14017 "https://github.com/contain-rs/linked-hash-map")
14018 (synopsis
14019 "HashMap wrapper that holds key-value pairs in insertion order")
14020 (description
14021 "This package provides a HashMap wrapper that holds key-value
14022 pairs in insertion order.")
14023 (license (list license:asl2.0
14024 license:expat))))
14025
14026 (define-public rust-linked-hash-map-0.4
14027 (package
14028 (inherit rust-linked-hash-map-0.5)
14029 (name "rust-linked-hash-map")
14030 (version "0.4.2")
14031 (source
14032 (origin
14033 (method url-fetch)
14034 (uri (crate-uri "linked-hash-map" version))
14035 (file-name
14036 (string-append name "-" version ".tar.gz"))
14037 (sha256
14038 (base32
14039 "0fd958y02ggwpa2246kmjky9xmnww7vxg0ik3rxgy23hgwlyqq3q"))))
14040 (arguments
14041 `(#:cargo-inputs
14042 (("rust-clippy" ,rust-clippy-0.0)
14043 ("rust-heapsize" ,rust-heapsize-0.3)
14044 ("rust-serde" ,rust-serde-0.9)
14045 ("rust-serde-test" ,rust-serde-test-0.9))))))
14046
14047 (define-public rust-linked-hash-map-0.3
14048 (package
14049 (inherit rust-linked-hash-map-0.5)
14050 (name "rust-linked-hash-map")
14051 (version "0.3.0")
14052 (source
14053 (origin
14054 (method url-fetch)
14055 (uri (crate-uri "linked-hash-map" version))
14056 (file-name (string-append name "-" version ".tar.gz"))
14057 (sha256
14058 (base32
14059 "1kaf95grvfqchxn8pl0854g8ab0fzl56217hndhhhz5qqm2j09kd"))))
14060 (arguments
14061 `(#:cargo-inputs
14062 (("rust-clippy" ,rust-clippy-0.0)
14063 ("rust-serde" ,rust-serde-0.8)
14064 ("rust-serde-test" ,rust-serde-test-0.8))))))
14065
14066 (define-public rust-libssh2-sys-0.2
14067 (package
14068 (name "rust-libssh2-sys")
14069 (version "0.2.19")
14070 (source
14071 (origin
14072 (method url-fetch)
14073 (uri (crate-uri "libssh2-sys" version))
14074 (file-name (string-append name "-" version ".tar.gz"))
14075 (sha256
14076 (base32
14077 "0mkhw4pksbz7gldj8hia7k6npc479n1x09i8r0pm275sac424ina"))
14078 (modules '((guix build utils)))
14079 (snippet
14080 '(begin (delete-file-recursively "libssh2") #t))))
14081 (build-system cargo-build-system)
14082 (arguments
14083 `(#:cargo-inputs
14084 (("rust-libc" ,rust-libc-0.2)
14085 ("rust-libz-sys" ,rust-libz-sys-1)
14086 ("rust-openssl-sys" ,rust-openssl-sys-0.9)
14087 ;; Build dependencies:
14088 ("rust-cc" ,rust-cc-1)
14089 ("rust-pkg-config" ,rust-pkg-config-0.3)
14090 ("rust-vcpkg" ,rust-vcpkg-0.2))))
14091 (native-inputs
14092 `(("pkg-config" ,pkg-config)))
14093 (inputs
14094 `(("libssh2" ,libssh2)
14095 ("openssl" ,openssl)
14096 ("zlib" ,zlib)))
14097 (home-page "https://github.com/alexcrichton/ssh2-rs")
14098 (synopsis "Native bindings to the libssh2 library")
14099 (description
14100 "This package provides native rust bindings to the @code{libssh2} library.")
14101 (license (list license:asl2.0
14102 license:expat))))
14103
14104 (define-public rust-locale-0.2
14105 (package
14106 (name "rust-locale")
14107 (version "0.2.2")
14108 (source
14109 (origin
14110 (method url-fetch)
14111 (uri (crate-uri "locale" version))
14112 (file-name
14113 (string-append name "-" version ".tar.gz"))
14114 (sha256
14115 (base32
14116 "1z87wc7z6889x1pqlrwjw8f1crshzi15q5m102lqs8y0m69f9nsz"))))
14117 (build-system cargo-build-system)
14118 (arguments
14119 `(#:cargo-inputs (("rust-libc" ,rust-libc-0.2))))
14120 (home-page "https://github.com/rust-locale/rust-locale")
14121 (synopsis "Library for basic localisation")
14122 (description
14123 "This package provides a library for basic localisation.")
14124 (license license:expat)))
14125
14126 (define-public rust-locale-config-0.3
14127 (package
14128 (name "rust-locale-config")
14129 (version "0.3.0")
14130 (source
14131 (origin
14132 (method url-fetch)
14133 (uri (crate-uri "locale_config" version))
14134 (file-name
14135 (string-append name "-" version ".tar.gz"))
14136 (sha256
14137 (base32
14138 "0d399alr1i7h7yji4vydbdbzd8hp0xaykr7h4rn3yj7l2rdw7lh8"))))
14139 (build-system cargo-build-system)
14140 (arguments
14141 `(#:cargo-inputs
14142 (("rust-lazy-static" ,rust-lazy-static-1)
14143 ("rust-objc" ,rust-objc-0.2)
14144 ("rust-objc-foundation" ,rust-objc-foundation-0.1)
14145 ("rust-regex" ,rust-regex-1)
14146 ("rust-winapi" ,rust-winapi-0.3))))
14147 (home-page "https://github.com/rust-locale/locale_config/")
14148 (synopsis "Maintains locale preferences for processes and threads")
14149 (description
14150 "Maintains locale preferences for process and thread and initialises them
14151 by inspecting the system for user preference.")
14152 (license license:expat)))
14153
14154 (define-public rust-locale-config-0.2
14155 (package
14156 (inherit rust-locale-config-0.3)
14157 (name "rust-locale-config")
14158 (version "0.2.3")
14159 (source
14160 (origin
14161 (method url-fetch)
14162 (uri (crate-uri "locale-config" version))
14163 (file-name
14164 (string-append name "-" version ".tar.gz"))
14165 (sha256
14166 (base32
14167 "0p2kdgc1c9cq5bi2rpszbhkh7pdk1fwxhij37gayb2alwkmikb3k"))))
14168 (arguments
14169 `(#:cargo-inputs
14170 (("rust-lazy-static" ,rust-lazy-static-1)
14171 ("rust-regex" ,rust-regex-1)
14172 ("rust-winapi" ,rust-winapi-0.3))))))
14173
14174 (define-public rust-lock-api-0.4
14175 (package
14176 (name "rust-lock-api")
14177 (version "0.4.1")
14178 (source
14179 (origin
14180 (method url-fetch)
14181 (uri (crate-uri "lock_api" version))
14182 (file-name (string-append name "-" version ".tar.gz"))
14183 (sha256
14184 (base32
14185 "0716z2rs0kydmd1818kqp4641dfkqzr0rpbnrpxhabxylp2pq918"))))
14186 (build-system cargo-build-system)
14187 (arguments
14188 `(#:cargo-inputs
14189 (("rust-owning-ref" ,rust-owning-ref-0.4)
14190 ("rust-scopeguard" ,rust-scopeguard-1)
14191 ("rust-serde" ,rust-serde-1))))
14192 (home-page "https://github.com/Amanieu/parking_lot")
14193 (synopsis "Wrappers to create fully-featured Mutex and RwLock types")
14194 (description "This package provides wrappers to create fully-featured
14195 @code{Mutex} and @code{RwLock} types. It is compatible with @code{no_std}.")
14196 (license (list license:asl2.0 license:expat))))
14197
14198 (define-public rust-lock-api-0.3
14199 (package
14200 (inherit rust-lock-api-0.4)
14201 (name "rust-lock-api")
14202 (version "0.3.4")
14203 (source
14204 (origin
14205 (method url-fetch)
14206 (uri (crate-uri "lock_api" version))
14207 (file-name
14208 (string-append name "-" version ".tar.gz"))
14209 (sha256
14210 (base32
14211 "0xgc5dzmajh0akbh5d6d7rj9mh5rzpk74pyrc946v2ixgakj9nn4"))))
14212 (build-system cargo-build-system)))
14213
14214 (define-public rust-lock-api-0.2
14215 (package
14216 (inherit rust-lock-api-0.3)
14217 (name "rust-lock-api")
14218 (version "0.2.0")
14219 (source
14220 (origin
14221 (method url-fetch)
14222 (uri (crate-uri "lock_api" version))
14223 (file-name
14224 (string-append name "-" version ".tar.gz"))
14225 (sha256
14226 (base32
14227 "1zx7pksmgyggpczgw4qrr4vj2nkdk5lipgiysvr20slm552nv57d"))))))
14228
14229 (define-public rust-lock-api-0.1
14230 (package
14231 (inherit rust-lock-api-0.2)
14232 (name "rust-lock-api")
14233 (version "0.1.5")
14234 (source
14235 (origin
14236 (method url-fetch)
14237 (uri (crate-uri "lock_api" version))
14238 (file-name (string-append name "-" version ".crate"))
14239 (sha256
14240 (base32
14241 "0b24q9mh258xa52ap636q1sxz0j5vrnp0hwbbh7ddjka3wwz3sv2"))))
14242 (arguments
14243 `(#:cargo-inputs
14244 (("rust-scopeguard" ,rust-scopeguard-0.3)
14245 ("rust-owning-ref" ,rust-owning-ref-0.4))))))
14246
14247 (define-public rust-log-0.4
14248 (package
14249 (name "rust-log")
14250 (version "0.4.8")
14251 (source
14252 (origin
14253 (method url-fetch)
14254 (uri (crate-uri "log" version))
14255 (file-name (string-append name "-" version ".crate"))
14256 (sha256
14257 (base32
14258 "1xz18ixccl5c6np4linv3ypc7hpmmgpc5zzd2ymp2ssfx0mhbdhl"))))
14259 (build-system cargo-build-system)
14260 (arguments
14261 `(#:skip-build? #t
14262 #:cargo-inputs
14263 (("rust-cfg-if" ,rust-cfg-if-0.1)
14264 ("rust-serde" ,rust-serde-1))
14265 #:cargo-development-inputs
14266 (("rust-serde-test" ,rust-serde-test-1))))
14267 (home-page "https://github.com/rust-lang/log")
14268 (synopsis "Lightweight logging facade for Rust")
14269 (description
14270 "This package provides a lightweight logging facade for Rust.")
14271 (license (list license:expat license:asl2.0))))
14272
14273 (define-public rust-log-0.3
14274 (package
14275 (inherit rust-log-0.4)
14276 (name "rust-log")
14277 (version "0.3.9")
14278 (source
14279 (origin
14280 (method url-fetch)
14281 (uri (crate-uri "log" version))
14282 (file-name (string-append name "-" version ".tar.gz"))
14283 (sha256
14284 (base32
14285 "0jq23hhn5h35k7pa8r7wqnsywji6x3wn1q5q7lif5q536if8v7p1"))))
14286 (arguments
14287 `(#:cargo-inputs
14288 (("rust-log" ,rust-log-0.4))))))
14289
14290 (define-public rust-loom-0.3
14291 (package
14292 (name "rust-loom")
14293 (version "0.3.2")
14294 (source
14295 (origin
14296 (method url-fetch)
14297 (uri (crate-uri "loom" version))
14298 (file-name (string-append name "-" version ".tar.gz"))
14299 (sha256
14300 (base32 "10z738ig6vgvwc2kxjhjdr5b29p3ribk5f6gg6ak0xjxhjb4cnkc"))))
14301 (build-system cargo-build-system)
14302 (arguments
14303 `(#:skip-build? #t ;; TODO fails due to unresolved import
14304 #:cargo-inputs
14305 (("rust-cfg-if" ,rust-cfg-if-0.1)
14306 ("rust-futures-util" ,rust-futures-util-0.3)
14307 ("rust-generator" ,rust-generator-0.6)
14308 ("rust-scoped-tls" ,rust-scoped-tls-0.1)
14309 ("rust-serde" ,rust-serde-1)
14310 ("rust-serde-json" ,rust-serde-json-1))))
14311 (home-page "https://github.com/tokio-rs/loom")
14312 (synopsis "Permutation testing for concurrent code")
14313 (description "Permutation testing for concurrent code")
14314 (license license:expat)))
14315
14316 (define-public rust-loom-0.2
14317 (package/inherit rust-loom-0.3
14318 (name "rust-loom")
14319 (version "0.2.13")
14320 (source
14321 (origin
14322 (method url-fetch)
14323 (uri (crate-uri "loom" version))
14324 (file-name (string-append name "-" version ".tar.gz"))
14325 (sha256
14326 (base32 "0qwvwbpnxff5m6647v9rc9i6ak8ral4jy0br5xx1s9a5zcd3xddh"))))
14327 (build-system cargo-build-system)
14328 (arguments
14329 `(#:cargo-inputs
14330 (("rust-cfg-if" ,rust-cfg-if-0.1)
14331 ("rust-futures-util" ,rust-futures-util-0.3)
14332 ("rust-generator" ,rust-generator-0.6)
14333 ("rust-scoped-tls" ,rust-scoped-tls-0.1)
14334 ("rust-serde" ,rust-serde-1)
14335 ("rust-serde-test" ,rust-serde-test-1)
14336 ("rust-serde-json" ,rust-serde-json-1))))))
14337
14338 (define-public rust-loom-0.1
14339 (package/inherit rust-loom-0.3
14340 (name "rust-loom")
14341 (version "0.1.1")
14342 (source
14343 (origin
14344 (method url-fetch)
14345 (uri (crate-uri "loom" version))
14346 (file-name
14347 (string-append name "-" version ".tar.gz"))
14348 (sha256
14349 (base32
14350 "1jmp5mffwwyqgp914cwz92ij2s6vk1hsnkvgndvzw74xrcfraibj"))))
14351 (arguments
14352 `(#:cargo-inputs
14353 (("rust-cfg-if" ,rust-cfg-if-0.1)
14354 ("rust-futures" ,rust-futures-0.1)
14355 ("rust-generator" ,rust-generator-0.6)
14356 ("rust-scoped-tls" ,rust-scoped-tls-0.1)
14357 ("rust-serde" ,rust-serde-1)
14358 ("rust-serde-derive" ,rust-serde-derive-1)
14359 ("rust-serde-json" ,rust-serde-json-1))))))
14360
14361 (define-public rust-lopdf-0.25
14362 (package
14363 (name "rust-lopdf")
14364 (version "0.25.0")
14365 (source
14366 (origin
14367 (method url-fetch)
14368 (uri (crate-uri "lopdf" version))
14369 (file-name
14370 (string-append name "-" version ".tar.gz"))
14371 (sha256
14372 (base32
14373 "1yb4yj1a8a88w78hz9msg65xbkyx5n4d9gm1xb2c67zaj1xvyw1i"))))
14374 (build-system cargo-build-system)
14375 (arguments
14376 `(#:cargo-inputs
14377 (("rust-chrono" ,rust-chrono-0.4)
14378 ("rust-dtoa" ,rust-dtoa-0.4)
14379 ("rust-encoding" ,rust-encoding-0.2)
14380 ("rust-flate2" ,rust-flate2-1)
14381 ("rust-image" ,rust-image-0.20)
14382 ("rust-itoa" ,rust-itoa-0.4)
14383 ("rust-linked-hash-map" ,rust-linked-hash-map-0.4)
14384 ("rust-log" ,rust-log-0.4)
14385 ("rust-lzw" ,rust-lzw-0.10)
14386 ("rust-nom" ,rust-nom-5)
14387 ("rust-pom" ,rust-pom-3)
14388 ("rust-rayon" ,rust-rayon-1)
14389 ("rust-time" ,rust-time-0.1))))
14390 (home-page "https://github.com/J-F-Liu/lopdf")
14391 (synopsis "Rust library for PDF document manipulation")
14392 (description
14393 "This package provides a Rust library for PDF document manipulation.")
14394 (license license:expat)))
14395
14396 (define-public rust-lru-cache-0.1
14397 (package
14398 (name "rust-lru-cache")
14399 (version "0.1.2")
14400 (source
14401 (origin
14402 (method url-fetch)
14403 (uri (crate-uri "lru-cache" version))
14404 (file-name (string-append name "-" version ".tar.gz"))
14405 (sha256
14406 (base32 "071viv6g2p3akwqmfb3c8vsycs5n7kr17b70l7la071jv0d4zqii"))))
14407 (build-system cargo-build-system)
14408 (arguments
14409 `(#:cargo-inputs
14410 (("rust-heapsize" ,rust-heapsize-0.4)
14411 ("rust-linked-hash-map" ,rust-linked-hash-map-0.5))))
14412 (home-page "https://github.com/contain-rs/lru-cache")
14413 (synopsis "Cache that holds a limited number of key-value pairs")
14414 (description "This package provides a cache that holds a limited number of
14415 key-value pairs.")
14416 (license (list license:expat license:asl2.0))))
14417
14418 (define-public rust-lscolors-0.7
14419 (package
14420 (name "rust-lscolors")
14421 (version "0.7.1")
14422 (source
14423 (origin
14424 (method url-fetch)
14425 (uri (crate-uri "lscolors" version))
14426 (file-name
14427 (string-append name "-" version ".tar.gz"))
14428 (sha256
14429 (base32
14430 "0vn1824lagf0xdv5rxyl7m9fbrcylyjibmnd4634dnn98m68jjyj"))))
14431 (build-system cargo-build-system)
14432 (arguments
14433 `(#:cargo-inputs
14434 (("rust-ansi-term" ,rust-ansi-term-0.12))
14435 #:cargo-development-inputs
14436 (("rust-tempfile" ,rust-tempfile-3))))
14437 (home-page "https://github.com/sharkdp/lscolors")
14438 (synopsis "Colorize paths using the LS_COLORS environment variable")
14439 (description
14440 "Colorize paths using the LS_COLORS environment variable.")
14441 (license (list license:expat license:asl2.0))))
14442
14443 (define-public rust-lscolors-0.6
14444 (package
14445 (inherit rust-lscolors-0.7)
14446 (name "rust-lscolors")
14447 (version "0.6.0")
14448 (source
14449 (origin
14450 (method url-fetch)
14451 (uri (crate-uri "lscolors" version))
14452 (file-name
14453 (string-append name "-" version ".tar.gz"))
14454 (sha256
14455 (base32
14456 "0jxsgkn378kxkiqdshdjdclw5wwp2xaz45cqd3yw85fhn8a38fza"))))))
14457
14458 (define-public rust-lzma-sys-0.1
14459 (package
14460 (name "rust-lzma-sys")
14461 (version "0.1.15")
14462 (source
14463 (origin
14464 (method url-fetch)
14465 (uri (crate-uri "lzma-sys" version))
14466 (file-name (string-append name "-" version ".tar.gz"))
14467 (sha256
14468 (base32
14469 "14gyj256yh0wm77jbvmlc39v7lfn0navpfrja4alczarzlc8ir2k"))
14470 (modules '((guix build utils)))
14471 (snippet
14472 '(begin (delete-file-recursively "xz-5.2") #t))))
14473 (build-system cargo-build-system)
14474 (arguments
14475 `(#:cargo-inputs
14476 (("rust-libc" ,rust-libc-0.2)
14477 ("rust-cc" ,rust-cc-1)
14478 ("rust-pkg-config" ,rust-pkg-config-0.3))))
14479 (native-inputs
14480 `(("pkg-config" ,pkg-config)
14481 ("xz" ,xz)))
14482 (home-page "https://github.com/alexcrichton/xz2-rs")
14483 (synopsis "Bindings to liblzma for lzma and xz stream encoding/decoding")
14484 (description
14485 "This package contains the raw bindings to liblzma which contains an
14486 implementation of LZMA and xz stream encoding/decoding.")
14487 (license (list license:asl2.0
14488 license:expat))))
14489
14490 (define-public rust-lzw-0.10
14491 (package
14492 (name "rust-lzw")
14493 (version "0.10.0")
14494 (source
14495 (origin
14496 (method url-fetch)
14497 (uri (crate-uri "lzw" version))
14498 (file-name
14499 (string-append name "-" version ".tar.gz"))
14500 (sha256
14501 (base32
14502 "1170dfskhzlh8h2bm333811hykjvpypgnvxyhhm1rllyi2xpr53x"))))
14503 (build-system cargo-build-system)
14504 (home-page "https://github.com/nwin/lzw.git")
14505 (synopsis "LZW compression and decompression")
14506 (description
14507 "This package provides LZW compression and decompression.")
14508 (license (list license:expat license:asl2.0))))
14509
14510 (define-public rust-mac-0.1
14511 (package
14512 (name "rust-mac")
14513 (version "0.1.1")
14514 (source
14515 (origin
14516 (method url-fetch)
14517 (uri (crate-uri "mac" version))
14518 (file-name
14519 (string-append name "-" version ".tar.gz"))
14520 (sha256
14521 (base32
14522 "194vc7vrshqff72rl56f9xgb0cazyl4jda7qsv31m5l6xx7hq7n4"))))
14523 (build-system cargo-build-system)
14524 (arguments `(#:skip-build? #t))
14525 (home-page "https://github.com/reem/rust-mac")
14526 (synopsis "Collection of great and ubiqutitous macros")
14527 (description
14528 "This package provides a collection of great and ubiqutitous macros.")
14529 (license (list license:asl2.0 license:expat))))
14530
14531 (define-public rust-mach-o-sys-0.1
14532 (package
14533 (name "rust-mach-o-sys")
14534 (version "0.1.1")
14535 (source
14536 (origin
14537 (method url-fetch)
14538 (uri (crate-uri "mach-o-sys" version))
14539 (file-name (string-append name "-" version ".tar.gz"))
14540 (sha256
14541 (base32 "09l8p7nmzq37450x2h6nb7dzg1sk6dk36a5rkcrcy81zm21lb19y"))))
14542 (build-system cargo-build-system)
14543 (home-page "https://github.com/fitzgen/mach_o_sys")
14544 (synopsis "Bindings to the OSX mach-o system library")
14545 (description "This package provides bindings to the OSX mach-o system
14546 library")
14547 (license (list license:asl2.0 license:expat))))
14548
14549 (define-public rust-make-cmd-0.1
14550 (package
14551 (name "rust-make-cmd")
14552 (version "0.1.0")
14553 (source
14554 (origin
14555 (method url-fetch)
14556 (uri (crate-uri "make-cmd" version))
14557 (file-name
14558 (string-append name "-" version ".tar.gz"))
14559 (sha256
14560 (base32
14561 "1ly0lc5p1a0qdiqnh19ly3snb9q83sjbbb1njvh8a5xgx3xqmjm8"))))
14562 (build-system cargo-build-system)
14563 (home-page "https://github.com/mneumann/make-cmd-rs")
14564 (synopsis "Enable build.rs scripts to invoke gnu_make")
14565 (description "This package enables build.rs scripts to invoke gnu_make
14566 platform-independently.")
14567 (license license:expat)))
14568
14569 (define-public rust-malloc-buf-0.0
14570 (package
14571 (name "rust-malloc-buf")
14572 (version "0.0.6")
14573 (source
14574 (origin
14575 (method url-fetch)
14576 (uri (crate-uri "malloc-buf" version))
14577 (file-name
14578 (string-append name "-" version ".tar.gz"))
14579 (sha256
14580 (base32
14581 "1jqr77j89pwszv51fmnknzvd53i1nkmcr8rjrvcxhm4dx1zr1fv2"))))
14582 (build-system cargo-build-system)
14583 (arguments
14584 `(#:cargo-inputs (("rust-libc" ,rust-libc-0.2))))
14585 (home-page "https://github.com/SSheldon/malloc_buf")
14586 (synopsis "Structs for handling malloc'd memory passed to Rust")
14587 (description
14588 "This package provides structs for handling malloc'd memory passed to Rust.")
14589 (license license:expat)))
14590
14591 (define-public rust-maplit-1.0
14592 (package
14593 (name "rust-maplit")
14594 (version "1.0.2")
14595 (source
14596 (origin
14597 (method url-fetch)
14598 (uri (crate-uri "maplit" version))
14599 (file-name (string-append name "-" version ".crate"))
14600 (sha256
14601 (base32
14602 "07b5kjnhrrmfhgqm9wprjw8adx6i225lqp49gasgqg74lahnabiy"))))
14603 (build-system cargo-build-system)
14604 (arguments '(#:skip-build? #t))
14605 (home-page "https://github.com/bluss/maplit")
14606 (synopsis "Collection of Map macros")
14607 (description "This crate provides a collection of @code{literal} macros for
14608 @code{HashMap}, @code{HashSet}, @code{BTreeMap}, and @code{BTreeSet.}")
14609 (license (list license:asl2.0
14610 license:expat))))
14611
14612 (define-public rust-markup5ever-0.10
14613 (package
14614 (name "rust-markup5ever")
14615 (version "0.10.0")
14616 (source
14617 (origin
14618 (method url-fetch)
14619 (uri (crate-uri "markup5ever" version))
14620 (file-name
14621 (string-append name "-" version ".tar.gz"))
14622 (sha256
14623 (base32
14624 "1aqxl1lsc8s6ycsw5ibwynadnb9qpiab4ggwgdq9pjlnjdk8vqxa"))))
14625 (build-system cargo-build-system)
14626 (arguments
14627 `(#:cargo-inputs
14628 (("rust-log" ,rust-log-0.4)
14629 ("rust-phf" ,rust-phf-0.8)
14630 ("rust-string-cache" ,rust-string-cache-0.8)
14631 ("rust-tendril" ,rust-tendril-0.4)
14632 ("rust-phf-codegen" ,rust-phf-codegen-0.8)
14633 ("rust-serde" ,rust-serde-1)
14634 ("rust-serde-derive" ,rust-serde-derive-1)
14635 ("rust-serde-json" ,rust-serde-json-1)
14636 ("rust-string-cache-codegen" ,rust-string-cache-codegen-0.5))))
14637 (home-page "https://github.com/servo/html5ever")
14638 (synopsis "Common code for xml5ever and html5ever")
14639 (description
14640 "Common code for xml5ever and html5ever.")
14641 (license (list license:asl2.0 license:expat))))
14642
14643 (define-public rust-markup5ever-0.9
14644 (package
14645 (inherit rust-markup5ever-0.10)
14646 (name "rust-markup5ever")
14647 (version "0.9.0")
14648 (source
14649 (origin
14650 (method url-fetch)
14651 (uri (crate-uri "markup5ever" version))
14652 (file-name
14653 (string-append name "-" version ".tar.gz"))
14654 (sha256
14655 (base32
14656 "00wxigkiw8f777pjp7q5kfq77xpwda9zskkwp698assh8yfisf35"))))
14657 (arguments
14658 `(#:cargo-inputs
14659 (("rust-log" ,rust-log-0.4)
14660 ("rust-phf" ,rust-phf-0.7)
14661 ("rust-string-cache" ,rust-string-cache-0.7)
14662 ("rust-tendril" ,rust-tendril-0.4)
14663 ("rust-phf-codegen" ,rust-phf-codegen-0.7)
14664 ("rust-serde" ,rust-serde-1)
14665 ("rust-serde-derive" ,rust-serde-derive-1)
14666 ("rust-serde-json" ,rust-serde-json-1)
14667 ("rust-string-cache-codegen" ,rust-string-cache-codegen-0.4))))))
14668
14669 (define-public rust-markup5ever-0.8
14670 (package
14671 (inherit rust-markup5ever-0.9)
14672 (name "rust-markup5ever")
14673 (version "0.8.1")
14674 (source
14675 (origin
14676 (method url-fetch)
14677 (uri (crate-uri "markup5ever" version))
14678 (file-name
14679 (string-append name "-" version ".tar.gz"))
14680 (sha256
14681 (base32
14682 "08ayl9aqjnmf7ly1ipy6dk3wjvyfn4w51l40jzh1fh984ykldbzi"))))))
14683
14684 (define-public rust-match-cfg-0.1
14685 (package
14686 (name "rust-match-cfg")
14687 (version "0.1.0")
14688 (source
14689 (origin
14690 (method url-fetch)
14691 (uri (crate-uri "match-cfg" version))
14692 (file-name
14693 (string-append name "-" version ".tar.gz"))
14694 (sha256
14695 (base32
14696 "1r5j3zqc3qr8ybcx95bk8q57mkizmgmffj5lmicd4i8d9riyigpz"))))
14697 (build-system cargo-build-system)
14698 (home-page "https://github.com/gnzlbg/match_cfg")
14699 (synopsis
14700 "Define an item depending on a large number of `#[cfg]` parameters")
14701 (description
14702 "This package provides a convenience macro to ergonomically define an item
14703 depending on a large number of @code{#[cfg]} parameters. Structured like match
14704 statement, the first matching branch is the item that gets emitted.")
14705 (license (list license:expat license:asl2.0))))
14706
14707 (define-public rust-matches-0.1
14708 (package
14709 (name "rust-matches")
14710 (version "0.1.8")
14711 (source
14712 (origin
14713 (method url-fetch)
14714 (uri (crate-uri "matches" version))
14715 (file-name (string-append name "-" version ".crate"))
14716 (sha256
14717 (base32
14718 "020axl4q7rk9vz90phs7f8jas4imxal9y9kxl4z4v7a6719mrz3z"))))
14719 (build-system cargo-build-system)
14720 (arguments '(#:skip-build? #t))
14721 (home-page "https://github.com/SimonSapin/rust-std-candidates")
14722 (synopsis "Macro to evaluate whether an expression matches a pattern")
14723 (description "This package provides a macro to evaluate, as a boolean,
14724 whether an expression matches a pattern.")
14725 (license license:expat)))
14726
14727 (define-public rust-matchers-0.0
14728 (package
14729 (name "rust-matchers")
14730 (version "0.0.1")
14731 (source
14732 (origin
14733 (method url-fetch)
14734 (uri (crate-uri "matchers" version))
14735 (file-name
14736 (string-append name "-" version ".tar.gz"))
14737 (sha256
14738 (base32
14739 "1q8ckqmkjqkznvdi9x0z769yz2bmvlqcwx51ad2lpk4mfmgpi6gh"))))
14740 (build-system cargo-build-system)
14741 (arguments
14742 `(#:cargo-inputs
14743 (("rust-regex-automata" ,rust-regex-automata-0.1))))
14744 (home-page "https://github.com/hawkw/matchers")
14745 (synopsis "Regex matching on character and byte streams")
14746 (description
14747 "Use this crate to match on character and byte streams using regular
14748 grammars. It provides the subset of the regex crate that only deals with
14749 matching, not parsing substrings.")
14750 (license license:expat)))
14751
14752 (define-public rust-matrixmultiply-0.2
14753 (package
14754 (name "rust-matrixmultiply")
14755 (version "0.2.3")
14756 (source
14757 (origin
14758 (method url-fetch)
14759 (uri (crate-uri "matrixmultiply" version))
14760 (file-name (string-append name "-" version ".crate"))
14761 (sha256
14762 (base32
14763 "13s7nfd3dfcsrixld2lk8c563ih5xzczl2w36hprfc016rkfrxyl"))))
14764 (build-system cargo-build-system)
14765 (arguments
14766 `(#:cargo-inputs
14767 (("rust-rawpointer" ,rust-rawpointer-0.2))
14768 #:cargo-development-inputs
14769 (("rust-bencher" ,rust-bencher-0.1)
14770 ("rust-itertools" ,rust-itertools-0.7))))
14771 (home-page "https://github.com/bluss/matrixmultiply/")
14772 (synopsis "General matrix multiplication for f32 and f64 matrices")
14773 (description "General matrix multiplication for f32 and f64 matrices.
14774 Operates on matrices with general layout (they can use arbitrary row and column
14775 stride). Detects and uses AVX or SSE2 on x86 platforms transparently for higher
14776 performance. Uses a microkernel strategy, so that the implementation is easy to
14777 parallelize and optimize.")
14778 (license (list license:asl2.0
14779 license:expat))))
14780
14781 (define-public rust-matrixmultiply-0.1
14782 (package
14783 (inherit rust-matrixmultiply-0.2)
14784 (name "rust-matrixmultiply")
14785 (version "0.1.15")
14786 (source
14787 (origin
14788 (method url-fetch)
14789 (uri (crate-uri "matrixmultiply" version))
14790 (file-name (string-append name "-" version ".crate"))
14791 (sha256
14792 (base32
14793 "00p0fpjhm45qdzi37mgv7ggsy8b9gqvq4999yrbgyn1dxkf6gbfw"))))
14794 (arguments
14795 `(#:cargo-inputs (("rust-rawpointer" ,rust-rawpointer-0.1))
14796 #:cargo-development-inputs (("rust-bencher" ,rust-bencher-0.1))))))
14797
14798 (define-public rust-maybe-uninit-2.0
14799 (package
14800 (name "rust-maybe-uninit")
14801 (version "2.0.0")
14802 (source
14803 (origin
14804 (method url-fetch)
14805 (uri (crate-uri "maybe-uninit" version))
14806 (file-name
14807 (string-append name "-" version ".tar.gz"))
14808 (sha256
14809 (base32
14810 "004y0nzmpfdrhz251278341z6ql34iv1k6dp1h6af7d6nd6jwc30"))))
14811 (build-system cargo-build-system)
14812 (home-page "https://github.com/est31/maybe-uninit")
14813 (synopsis "MaybeUninit for friends of backwards compatibility")
14814 (description
14815 "This package provides MaybeUninit for friends of backwards compatibility.")
14816 (license (list license:asl2.0 license:expat))))
14817
14818 (define-public rust-md-5-0.9
14819 (package
14820 (name "rust-md-5")
14821 (version "0.9.0")
14822 (source
14823 (origin
14824 (method url-fetch)
14825 (uri (crate-uri "md-5" version))
14826 (file-name
14827 (string-append name "-" version ".tar.gz"))
14828 (sha256
14829 (base32
14830 "14x7yxfi4pk4qy3zmn9dj69yc18fg3cyind346kribjd93077qij"))))
14831 (build-system cargo-build-system)
14832 (arguments
14833 `(#:cargo-inputs
14834 (("rust-block-buffer" ,rust-block-buffer-0.8)
14835 ("rust-digest" ,rust-digest-0.9)
14836 ("rust-md5-asm" ,rust-md5-asm-0.4)
14837 ("rust-opaque-debug" ,rust-opaque-debug-0.2))
14838 #:cargo-development-inputs
14839 (("rust-digest" ,rust-digest-0.9)
14840 ("rust-hex-literal" ,rust-hex-literal-0.2))))
14841 (home-page "https://github.com/RustCrypto/hashes")
14842 (synopsis "MD5 hash function")
14843 (description "MD5 hash function.")
14844 (license (list license:expat license:asl2.0))))
14845
14846 (define-public rust-md-5-0.8
14847 (package
14848 (inherit rust-md-5-0.9)
14849 (name "rust-md-5")
14850 (version "0.8.0")
14851 (source
14852 (origin
14853 (method url-fetch)
14854 (uri (crate-uri "md-5" version))
14855 (file-name
14856 (string-append name "-" version ".tar.gz"))
14857 (sha256
14858 (base32
14859 "1j5rfxy2p76xf5f1lgaw85xla0b1bbv2lknvdhv1j0ibmzfg72m1"))))
14860 (arguments
14861 `(#:cargo-inputs
14862 (("rust-block-buffer" ,rust-block-buffer-0.7)
14863 ("rust-digest" ,rust-digest-0.8)
14864 ("rust-md5-asm" ,rust-md5-asm-0.4)
14865 ("rust-opaque-debug" ,rust-opaque-debug-0.2))
14866 #:cargo-development-inputs
14867 (("rust-digest" ,rust-digest-0.8)
14868 ("rust-hex-literal" ,rust-hex-literal-0.1))))))
14869
14870 (define-public rust-md5-0.6
14871 (package
14872 (name "rust-md5")
14873 (version "0.6.1")
14874 (source
14875 (origin
14876 (method url-fetch)
14877 (uri (crate-uri "md5" version))
14878 (file-name (string-append name "-" version ".crate"))
14879 (sha256
14880 (base32
14881 "17b2xm4h4cvxsdjsf3kdrzqv2za60kak961xzi5kmw6g6djcssvy"))))
14882 (build-system cargo-build-system)
14883 (home-page "https://github.com/stainless-steel/md5")
14884 (synopsis "MD5 hash function in Rust")
14885 (description "The package provides the MD5 hash function.")
14886 (license (list license:asl2.0
14887 license:expat))))
14888
14889 (define-public rust-md5-0.3
14890 (package
14891 (inherit rust-md5-0.6)
14892 (name "rust-md5")
14893 (version "0.3.8")
14894 (source
14895 (origin
14896 (method url-fetch)
14897 (uri (crate-uri "md5" version))
14898 (file-name
14899 (string-append name "-" version ".tar.gz"))
14900 (sha256
14901 (base32
14902 "0j2s8aqdkhwhy7awga2bmv5n8qq8bgy8672iha9f3y871dm6vibr"))))))
14903
14904 (define-public rust-md5-asm-0.4
14905 (package
14906 (name "rust-md5-asm")
14907 (version "0.4.3")
14908 (source
14909 (origin
14910 (method url-fetch)
14911 (uri (crate-uri "md5-asm" version))
14912 (file-name
14913 (string-append name "-" version ".tar.gz"))
14914 (sha256
14915 (base32
14916 "0gpk5647js1k084jc7pg2gji0cvl6hjkkbfia6lnpk8y4shyairv"))))
14917 (build-system cargo-build-system)
14918 (arguments
14919 `(#:cargo-inputs
14920 (("rust-cc" ,rust-cc-1))))
14921 (home-page "https://github.com/RustCrypto/asm-hashes")
14922 (synopsis "Assembly implementation of MD5 compression function")
14923 (description "This package contains an assembly implementation of MD5
14924 compression function.")
14925 (supported-systems '("x86_64-linux" "i686-linux"))
14926 (license license:expat)))
14927
14928 (define-public rust-measureme-0.7
14929 (package
14930 (name "rust-measureme")
14931 (version "0.7.1")
14932 (source
14933 (origin
14934 (method url-fetch)
14935 (uri (crate-uri "measureme" version))
14936 (file-name
14937 (string-append name "-" version ".tar.gz"))
14938 (sha256
14939 (base32
14940 "0cmrrh86b3rvws6d7xp07wfn703yw02cakzirykvn4vh4p9hkxzy"))))
14941 (build-system cargo-build-system)
14942 (arguments
14943 `(#:cargo-inputs
14944 (("rust-byteorder" ,rust-byteorder-1)
14945 ("rust-memmap" ,rust-memmap-0.7)
14946 ("rust-parking-lot" ,rust-parking-lot-0.9)
14947 ("rust-rustc-hash" ,rust-rustc-hash-1))))
14948 (home-page "https://github.com/rust-lang/measureme")
14949 (synopsis "Support crate for rustc's self-profiling feature")
14950 (description
14951 "Record rustc compiler events and serializing them to a compact binary
14952 format with this support package. It is integrated into rustc via the
14953 unstable -Z self-profile flag.")
14954 (license (list license:expat license:asl2.0))))
14955
14956 (define-public rust-memchr-2
14957 (package
14958 (name "rust-memchr")
14959 (version "2.3.3")
14960 (source
14961 (origin
14962 (method url-fetch)
14963 (uri (crate-uri "memchr" version))
14964 (file-name
14965 (string-append name "-" version ".tar.gz"))
14966 (sha256
14967 (base32
14968 "0074pvsfl938ndl5js14ibc7i9q0k3zp390z843w8nlyv4bxha1p"))))
14969 (build-system cargo-build-system)
14970 (arguments
14971 `(#:skip-build? #t
14972 #:cargo-inputs
14973 (("rust-libc" ,rust-libc-0.2))))
14974 (home-page "https://github.com/BurntSushi/rust-memchr")
14975 (synopsis "Safe interface to memchr")
14976 (description "The @code{memchr} crate provides heavily optimized routines
14977 for searching bytes.")
14978 (license (list license:unlicense license:expat))))
14979
14980 (define-public rust-memchr-1.0
14981 (package
14982 (inherit rust-memchr-2)
14983 (name "rust-memchr")
14984 (version "1.0.2")
14985 (source
14986 (origin
14987 (method url-fetch)
14988 (uri (crate-uri "memchr" version))
14989 (file-name
14990 (string-append name "-" version ".tar.gz"))
14991 (sha256
14992 (base32
14993 "0yjyja34pzhipdl855q3m21w1lyih4lw79x2dp3czwdla4pap3ql"))))))
14994
14995 (define-public rust-memchr-0.1
14996 (package
14997 (inherit rust-memchr-1.0)
14998 (name "rust-memchr")
14999 (version "0.1.11")
15000 (source
15001 (origin
15002 (method url-fetch)
15003 (uri (crate-uri "memchr" version))
15004 (file-name
15005 (string-append name "-" version ".tar.gz"))
15006 (sha256
15007 (base32
15008 "084d85hjfa3xf5kwdms2mhbkh78m1gl2254cp5swcxj3a7xjkdnq"))))
15009 (build-system cargo-build-system)
15010 (arguments
15011 `(#:cargo-inputs
15012 (("rust-libc" ,rust-libc-0.2))
15013 #:cargo-development-inputs
15014 (("rust-quickcheck" ,rust-quickcheck-0.2))))))
15015
15016 (define-public rust-memmap-0.7
15017 (package
15018 (name "rust-memmap")
15019 (version "0.7.0")
15020 (source
15021 (origin
15022 (method url-fetch)
15023 (uri (crate-uri "memmap" version))
15024 (file-name (string-append name "-" version ".crate"))
15025 (sha256
15026 (base32
15027 "0ns7kkd1h4pijdkwfvw4qlbbmqmlmzwlq3g2676dcl5vwyazv1b5"))))
15028 (build-system cargo-build-system)
15029 (arguments
15030 `(#:skip-build? #t
15031 #:cargo-inputs
15032 (("rust-libc" ,rust-libc-0.2)
15033 ("rust-winapi" ,rust-winapi-0.3))
15034 #:cargo-development-inputs
15035 (("rust-tempdir" ,rust-tempdir-0.3))))
15036 (home-page "https://github.com/danburkert/memmap-rs")
15037 (synopsis "Rust library for cross-platform memory mapped IO")
15038 (description
15039 "This package provides a cross-platform Rust API for memory-mapped
15040 file IO.")
15041 (license (list license:asl2.0
15042 license:expat))))
15043
15044 (define-public rust-memmap-0.6
15045 (package
15046 (inherit rust-memmap-0.7)
15047 (name "rust-memmap")
15048 (version "0.6.2")
15049 (source
15050 (origin
15051 (method url-fetch)
15052 (uri (crate-uri "memmap" version))
15053 (file-name (string-append name "-" version ".crate"))
15054 (sha256
15055 (base32
15056 "1zy6s0ni0lx9rjzq3gq2zz9r8zgjmbp02332g3gsj4fyhv4s5zz2"))))))
15057
15058 (define-public rust-memmap-0.2
15059 (package
15060 (inherit rust-memmap-0.6)
15061 (name "rust-memmap")
15062 (version "0.2.3")
15063 (source
15064 (origin
15065 (method url-fetch)
15066 (uri (crate-uri "memmap" version))
15067 (file-name
15068 (string-append name "-" version ".tar.gz"))
15069 (sha256
15070 (base32
15071 "0li737lakqcbbgd87x7h8d4vp0r1fqcbn5lb5vi746i9jgnp43zj"))))
15072 (arguments
15073 `(#:cargo-inputs
15074 (("rust-fs2" ,rust-fs2-0.2)
15075 ("rust-kernel32-sys" ,rust-kernel32-sys-0.2)
15076 ("rust-libc" ,rust-libc-0.2)
15077 ("rust-winapi" ,rust-winapi-0.2))
15078 #:cargo-development-inputs
15079 (("rust-tempdir" ,rust-tempdir-0.3))))))
15080
15081 (define-public rust-memoffset-0.5
15082 (package
15083 (name "rust-memoffset")
15084 (version "0.5.3")
15085 (source
15086 (origin
15087 (method url-fetch)
15088 (uri (crate-uri "memoffset" version))
15089 (file-name
15090 (string-append name "-" version ".tar.gz"))
15091 (sha256
15092 (base32
15093 "1fblqzc25hfaym8m0pj112s66pqq87avvaqm5hp5rskib2w9w63m"))))
15094 (build-system cargo-build-system)
15095 (arguments
15096 `(#:skip-build? #t
15097 #:cargo-inputs
15098 (("rust-rustc-version" ,rust-rustc-version-0.2))
15099 #:cargo-development-inputs
15100 (("rust-doc-comment" ,rust-doc-comment-0.3))))
15101 (home-page "https://github.com/Gilnaa/memoffset")
15102 (synopsis
15103 "C-like offset_of functionality for Rust structs")
15104 (description "This package provides C-like @code{offset_of} functionality
15105 for Rust structs.")
15106 (license license:expat)))
15107
15108 (define-public rust-memoffset-0.2
15109 (package
15110 (inherit rust-memoffset-0.5)
15111 (name "rust-memoffset")
15112 (version "0.2.1")
15113 (source
15114 (origin
15115 (method url-fetch)
15116 (uri (crate-uri "memoffset" version))
15117 (file-name
15118 (string-append name "-" version ".tar.gz"))
15119 (sha256
15120 (base32
15121 "1cvm2z7dy138s302ii7wlzcxbka5a8yfl5pl5di7lbdnw9hw578g"))))
15122 (arguments `(#:skip-build? #t))))
15123
15124 (define-public rust-memsec-0.6
15125 (package
15126 (name "rust-memsec")
15127 (version "0.6.0")
15128 (source
15129 (origin
15130 (method url-fetch)
15131 (uri (crate-uri "memsec" version))
15132 (file-name (string-append name "-" version ".tar.gz"))
15133 (sha256
15134 (base32 "1pfbpl75586bjdkphnaa4j58d668rl1wgcqzpnpzzx1phxfzkx1a"))))
15135 (build-system cargo-build-system)
15136 (arguments
15137 `(#:skip-build? #t
15138 #:cargo-inputs
15139 (("rust-getrandom" ,rust-getrandom-0.1)
15140 ("rust-libc" ,rust-libc-0.2)
15141 ("rust-mach-o-sys" ,rust-mach-o-sys-0.1)
15142 ("rust-winapi" ,rust-winapi-0.3))))
15143 (home-page "https://github.com/quininer/memsec")
15144 (synopsis "Rust implementation of libsodium/utils")
15145 (description "This package provides a Rust implementation of
15146 @code{libsodium/utils}.")
15147 (license license:expat)))
15148
15149 (define-public rust-memsec-0.5
15150 (package
15151 (inherit rust-memsec-0.6)
15152 (name "rust-memsec")
15153 (version "0.5.7")
15154 (source
15155 (origin
15156 (method url-fetch)
15157 (uri (crate-uri "memsec" version))
15158 (file-name (string-append name "-" version ".tar.gz"))
15159 (sha256
15160 (base32 "13ir50j549gdz94pds1i7ljnk14d66q5x91s11hncm1pih7jif8c"))))))
15161
15162 (define-public rust-metadeps-1.1
15163 (package
15164 (name "rust-metadeps")
15165 (version "1.1.2")
15166 (source
15167 (origin
15168 (method url-fetch)
15169 (uri (crate-uri "metadeps" version))
15170 (file-name
15171 (string-append name "-" version ".tar.gz"))
15172 (sha256
15173 (base32
15174 "1hjla9ypycqw1snd2qf87cckcc0d5z5qvxpcijn5yrrs3f825cbk"))))
15175 (build-system cargo-build-system)
15176 (arguments
15177 `(#:skip-build? #t
15178 #:cargo-inputs
15179 (("rust-error-chain" ,rust-error-chain-0.10)
15180 ("rust-toml" ,rust-toml-0.2)
15181 ("rust-pkg-config" ,rust-pkg-config-0.3))))
15182 (home-page "https://github.com/joshtriplett/metadeps")
15183 (synopsis "Run pkg-config from declarative dependencies in Cargo.toml")
15184 (description "Run pkg-config from declarative dependencies in Cargo.toml.")
15185 (license (list license:expat license:asl2.0))))
15186
15187 (define-public rust-metal-0.14
15188 (package
15189 (name "rust-metal")
15190 (version "0.14.0")
15191 (source
15192 (origin
15193 (method url-fetch)
15194 (uri (crate-uri "metal" version))
15195 (file-name
15196 (string-append name "-" version ".tar.gz"))
15197 (sha256
15198 (base32
15199 "0my1xwlv562i80y3jbk0nygayi383j5skdwk48clb286b7922gyd"))))
15200 (build-system cargo-build-system)
15201 (arguments
15202 `(#:skip-build? #t
15203 #:cargo-inputs
15204 (("rust-bitflags" ,rust-bitflags-1)
15205 ("rust-block" ,rust-block-0.1)
15206 ("rust-cocoa" ,rust-cocoa-0.18)
15207 ("rust-core-graphics" ,rust-core-graphics-0.17)
15208 ("rust-foreign-types" ,rust-foreign-types-0.3)
15209 ("rust-libc" ,rust-libc-0.2)
15210 ("rust-log" ,rust-log-0.4)
15211 ("rust-objc" ,rust-objc-0.2)
15212 ("rust-objc-foundation" ,rust-objc-foundation-0.1)
15213 ("rust-objc-id" ,rust-objc-id-0.1))
15214 #:cargo-development-inputs
15215 (("rust-sema" ,rust-sema-0.1)
15216 ("rust-winit" ,rust-winit-0.19)))) ; 0.17?
15217 (home-page "https://github.com/gfx-rs/metal-rs")
15218 (synopsis "Rust bindings for Metal")
15219 (description "Rust bindings for Metal.")
15220 (license (list license:expat license:asl2.0))))
15221
15222 (define-public rust-mimalloc-0.1
15223 (package
15224 (name "rust-mimalloc")
15225 (version "0.1.20")
15226 (source
15227 (origin
15228 (method url-fetch)
15229 (uri (crate-uri "mimalloc" version))
15230 (file-name (string-append name "-" version ".tar.gz"))
15231 (sha256
15232 (base32
15233 "0x74b6jv6pxfl6bh44bnch6ajm3l5z3zq8w8mqlscbq8d77rnx80"))))
15234 (build-system cargo-build-system)
15235 (arguments
15236 `(#:cargo-inputs
15237 (("rust-libmimalloc-sys" ,rust-libmimalloc-sys-0.1))))
15238 (home-page "https://crates.io/crates/mimalloc")
15239 (synopsis "Performance and security oriented drop-in allocator")
15240 (description "This package provides a performance and security oriented
15241 drop-in allocator.")
15242 (license license:expat)))
15243
15244 (define-public rust-mime-0.3
15245 (package
15246 (name "rust-mime")
15247 (version "0.3.16")
15248 (source
15249 (origin
15250 (method url-fetch)
15251 (uri (crate-uri "mime" version))
15252 (file-name (string-append name "-" version ".crate"))
15253 (sha256
15254 (base32
15255 "13dcm9lh01hdwfjcg74ppljyjfj1c6w3a3cwkhxf0w8wa37cfq1a"))))
15256 (build-system cargo-build-system)
15257 (arguments '(#:skip-build? #t))
15258 (home-page "https://github.com/hyperium/mime")
15259 (synopsis "Strongly Typed Mimes")
15260 (description
15261 "Support MIME (HTTP Media Types) as strong types in Rust.")
15262 (license (list license:asl2.0
15263 license:expat))))
15264
15265 (define-public rust-mime-guess-2
15266 (package
15267 (name "rust-mime-guess")
15268 (version "2.0.3")
15269 (source
15270 (origin
15271 (method url-fetch)
15272 (uri (crate-uri "mime_guess" version))
15273 (file-name (string-append name "-" version ".tar.gz"))
15274 (sha256
15275 (base32
15276 "04pjpbl90z4yn0cmifvwgf4mqznciw6b095k626q96bxx71d9116"))))
15277 (build-system cargo-build-system)
15278 (arguments
15279 `(#:cargo-inputs
15280 (("rust-mime" ,rust-mime-0.3)
15281 ("rust-unicase" ,rust-unicase-2))
15282 #:cargo-development-inputs
15283 (("rust-criterion" ,rust-criterion-0.3)
15284 ("rust-unicase" ,rust-unicase-2))))
15285 (home-page "https://github.com/abonander/mime_guess")
15286 (synopsis "Detect a file's MIME type by its extension")
15287 (description "This package provides a simple crate for detection of a
15288 file's MIME type by its extension.")
15289 (license license:expat)))
15290
15291 (define-public rust-miniz-oxide-0.3
15292 (package
15293 (name "rust-miniz-oxide")
15294 (version "0.3.6")
15295 (source
15296 (origin
15297 (method url-fetch)
15298 (uri (crate-uri "miniz_oxide" version))
15299 (file-name (string-append name "-" version ".crate"))
15300 (sha256
15301 (base32
15302 "198n4hfpq0qcxf275l6fpzh7b9cl7ck2xs6pjgpds74bazv9yrxa"))))
15303 (build-system cargo-build-system)
15304 (arguments
15305 `(#:skip-build? #t
15306 #:cargo-inputs (("rust-adler32" ,rust-adler32-1))))
15307 (home-page "https://github.com/Frommi/miniz_oxide/tree/master/miniz_oxide")
15308 (synopsis "Pure rust replacement for the miniz DEFLATE/zlib encoder/decoder")
15309 (description
15310 "A pure rust replacement for the miniz DEFLATE/zlib encoder/decoder. Using
15311 @code{flate2} with the @code{rust_backend} feature provides an easy to use
15312 streaming API for miniz_oxide.")
15313 (license license:expat)))
15314
15315 (define-public rust-miniz-oxide-0.2
15316 (package
15317 (inherit rust-miniz-oxide-0.3)
15318 (name "rust-miniz-oxide")
15319 (version "0.2.2")
15320 (source
15321 (origin
15322 (method url-fetch)
15323 (uri (crate-uri "miniz_oxide" version))
15324 (file-name
15325 (string-append name "-" version ".tar.gz"))
15326 (sha256
15327 (base32
15328 "17f92krv9hhsyc38prpfyn99m2hqhr4fgszpsla66a6gcrnpbhxn"))))))
15329
15330 (define-public rust-miniz-oxide-c-api-0.2
15331 (package
15332 (name "rust-miniz-oxide-c-api")
15333 (version "0.2.2")
15334 (source
15335 (origin
15336 (method url-fetch)
15337 (uri (crate-uri "miniz_oxide_c_api" version))
15338 (file-name
15339 (string-append name "-" version ".tar.gz"))
15340 (sha256
15341 (base32
15342 "1514mvlj8vl723xqxnww5cfqr2mhnqqqf18fn3df17yx8racly2v"))))
15343 (build-system cargo-build-system)
15344 (arguments
15345 `(#:skip-build? #t
15346 #:cargo-inputs
15347 (("rust-crc32fast" ,rust-crc32fast-1)
15348 ("rust-libc" ,rust-libc-0.2)
15349 ("rust-miniz-oxide" ,rust-miniz-oxide-0.2))
15350 #:cargo-development-inputs
15351 (("rust-cc" ,rust-cc-1))))
15352 (home-page "https://github.com/Frommi/miniz_oxide/")
15353 (synopsis "DEFLATE compression and decompression API")
15354 (description
15355 "DEFLATE compression and decompression API designed to be Rust
15356 drop-in replacement for miniz.")
15357 (license license:expat)))
15358
15359 (define-public rust-miniz-sys-0.1
15360 (package
15361 (name "rust-miniz-sys")
15362 (version "0.1.12")
15363 (source
15364 (origin
15365 (method url-fetch)
15366 (uri (crate-uri "miniz-sys" version))
15367 (file-name (string-append name "-" version ".crate"))
15368 (sha256
15369 (base32
15370 "00l2r4anm8g35x0js2zfdnwfbrih9m43vphdpb77c5ga3kjkm7hy"))))
15371 (build-system cargo-build-system)
15372 (arguments
15373 `(#:cargo-inputs
15374 (("rust-libc" ,rust-libc-0.2)
15375 ;; Build dependencies:
15376 ("rust-cc" ,rust-cc-1))))
15377 (home-page "https://github.com/alexcrichton/flate2-rs")
15378 (synopsis "Bindings to the miniz.c library")
15379 (description
15380 "This package provides bindings to the @code{miniz.c} library.")
15381 (license (list license:asl2.0
15382 license:expat))))
15383
15384 (define-public rust-mint-0.5
15385 (package
15386 (name "rust-mint")
15387 (version "0.5.4")
15388 (source
15389 (origin
15390 (method url-fetch)
15391 (uri (crate-uri "mint" version))
15392 (file-name
15393 (string-append name "-" version ".tar.gz"))
15394 (sha256
15395 (base32
15396 "0c4190gr348fkfijij7vm19iagwl36mssj1irc9f6m448hbhgn68"))))
15397 (build-system cargo-build-system)
15398 (home-page "https://github.com/kvark/mint")
15399 (synopsis "Math interoperability standard types")
15400 (description
15401 "This package provides math interoperability standard types.")
15402 (license license:expat)))
15403
15404 (define-public rust-mio-0.6
15405 (package
15406 (name "rust-mio")
15407 (version "0.6.21")
15408 (source
15409 (origin
15410 (method url-fetch)
15411 (uri (crate-uri "mio" version))
15412 (file-name
15413 (string-append name "-" version ".tar.gz"))
15414 (sha256
15415 (base32
15416 "13q02a7cwc140aygf8amadpzpl5lyj3p2r4wnvgydfpnphifqb9h"))))
15417 (build-system cargo-build-system)
15418 (arguments
15419 `(#:tests? #f
15420 #:cargo-inputs
15421 (("rust-cfg-if" ,rust-cfg-if-0.1)
15422 ("rust-fuchsia-zircon" ,rust-fuchsia-zircon-0.3)
15423 ("rust-fuchsia-zircon-sys" ,rust-fuchsia-zircon-sys-0.3)
15424 ("rust-iovec" ,rust-iovec-0.1)
15425 ("rust-kernel32-sys" ,rust-kernel32-sys-0.2)
15426 ("rust-libc" ,rust-libc-0.2)
15427 ("rust-log" ,rust-log-0.4)
15428 ("rust-miow" ,rust-miow-0.2)
15429 ("rust-net2" ,rust-net2-0.2)
15430 ("rust-slab" ,rust-slab-0.4)
15431 ("rust-winapi" ,rust-winapi-0.2))
15432 #:cargo-development-inputs
15433 (("rust-bytes" ,rust-bytes-0.3)
15434 ("rust-env-logger" ,rust-env-logger-0.4)
15435 ("rust-tempdir" ,rust-tempdir-0.3))))
15436 (home-page "https://github.com/tokio-rs/mio")
15437 (synopsis "Lightweight non-blocking IO")
15438 (description "Lightweight non-blocking IO.")
15439 (license license:expat)))
15440
15441 (define-public rust-mio-anonymous-pipes-0.1
15442 (package
15443 (name "rust-mio-anonymous-pipes")
15444 (version "0.1.0")
15445 (source
15446 (origin
15447 (method url-fetch)
15448 (uri (crate-uri "mio-anonymous-pipes" version))
15449 (file-name
15450 (string-append name "-" version ".tar.gz"))
15451 (sha256
15452 (base32
15453 "1bqs8wncd73q4pnbiwskhgds57hyr8g89vfpqmw1vk9dqp1p9hpq"))))
15454 (build-system cargo-build-system)
15455 (arguments
15456 `(#:skip-build? #t
15457 #:cargo-inputs
15458 (("rust-mio" ,rust-mio-0.6)
15459 ("rust-miow" ,rust-miow-0.3)
15460 ("rust-spsc-buffer" ,rust-spsc-buffer-0.1)
15461 ("rust-winapi" ,rust-winapi-0.3))))
15462 (home-page "https://github.com/davidhewitt/mio-anonymous-pipes")
15463 (synopsis "Asynchronous wrapper for Windows synchronous pipes")
15464 (description
15465 "This package provides asynchronous wrapper for Windows synchronous pipes.")
15466 (license license:expat)))
15467
15468 (define-public rust-mio-extras-2
15469 (package
15470 (name "rust-mio-extras")
15471 (version "2.0.6")
15472 (source
15473 (origin
15474 (method url-fetch)
15475 (uri (crate-uri "mio-extras" version))
15476 (file-name
15477 (string-append name "-" version ".tar.gz"))
15478 (sha256
15479 (base32
15480 "069gfhlv0wlwfx1k2sriwfws490kjp490rv2qivyfb01j3i3yh2j"))))
15481 (build-system cargo-build-system)
15482 (arguments
15483 `(#:cargo-inputs
15484 (("rust-lazycell" ,rust-lazycell-1)
15485 ("rust-log" ,rust-log-0.4)
15486 ("rust-mio" ,rust-mio-0.6)
15487 ("rust-slab" ,rust-slab-0.4))))
15488 (home-page "https://github.com/dimbleby/mio-extras")
15489 (synopsis "Extra components for use with Mio")
15490 (description "Extra components for use with Mio.")
15491 (license (list license:expat license:asl2.0))))
15492
15493 (define-public rust-mio-named-pipes-0.1
15494 (package
15495 (name "rust-mio-named-pipes")
15496 (version "0.1.6")
15497 (source
15498 (origin
15499 (method url-fetch)
15500 (uri (crate-uri "mio-named-pipes" version))
15501 (file-name
15502 (string-append name "-" version ".tar.gz"))
15503 (sha256
15504 (base32
15505 "1cwwfx1yr9vws8x971x34ijnirs377vcxi47frdirki5yppp9qzm"))))
15506 (build-system cargo-build-system)
15507 (arguments
15508 `(#:skip-build? #t
15509 #:cargo-inputs
15510 (("rust-log" ,rust-log-0.4)
15511 ("rust-mio" ,rust-mio-0.6)
15512 ("rust-miow" ,rust-miow-0.3)
15513 ("rust-winapi" ,rust-winapi-0.3))
15514 #:cargo-development-inputs
15515 (("rust-env-logger" ,rust-env-logger-0.4)
15516 ("rust-rand" ,rust-rand-0.4))))
15517 (home-page "https://github.com/alexcrichton/mio-named-pipes")
15518 (synopsis "Windows named pipe bindings for mio")
15519 (description
15520 "A library for integrating Windows Named Pipes with mio.")
15521 (license `(,license:asl2.0 ,license:expat))))
15522
15523 (define-public rust-mio-uds-0.6
15524 (package
15525 (name "rust-mio-uds")
15526 (version "0.6.7")
15527 (source
15528 (origin
15529 (method url-fetch)
15530 (uri (crate-uri "mio-uds" version))
15531 (file-name
15532 (string-append name "-" version ".tar.gz"))
15533 (sha256
15534 (base32
15535 "09gimdbnj7b9yca99pk8lxh9jhl79msj795c8fxi2sqr9slmfqln"))))
15536 (build-system cargo-build-system)
15537 (arguments
15538 `(#:skip-build? #t
15539 #:cargo-inputs
15540 (("rust-iovec" ,rust-iovec-0.1)
15541 ("rust-libc" ,rust-libc-0.2)
15542 ("rust-mio" ,rust-mio-0.6))
15543 #:cargo-development-inputs
15544 (("rust-tempdir" ,rust-tempdir-0.3))))
15545 (home-page "https://github.com/alexcrichton/mio-uds")
15546 (synopsis "Unix domain socket bindings for mio")
15547 (description
15548 "Unix domain socket bindings for mio.")
15549 (license (list license:asl2.0 license:expat))))
15550
15551 (define-public rust-miow-0.3
15552 (package
15553 (name "rust-miow")
15554 (version "0.3.3")
15555 (source
15556 (origin
15557 (method url-fetch)
15558 (uri (crate-uri "miow" version))
15559 (file-name (string-append name "-" version ".crate"))
15560 (sha256
15561 (base32
15562 "09ljvx6wg30f2xlv7b7hhpkw7k312n3hjgmrbhwzhz9x03ra0sir"))))
15563 (build-system cargo-build-system)
15564 (arguments
15565 `(#:skip-build? #t
15566 #:cargo-inputs
15567 (("rust-socket2" ,rust-socket2-0.3)
15568 ("rust-winapi" ,rust-winapi-0.3))
15569 #:cargo-development-inputs
15570 (("rust-rand" ,rust-rand-0.4))))
15571 (home-page "https://github.com/alexcrichton/miow")
15572 (synopsis "Rust I/O library for Windows")
15573 (description
15574 "This package provides a zero overhead I/O library for Windows, focusing on
15575 IOCP and Async I/O abstractions.")
15576 (license (list license:asl2.0
15577 license:expat))))
15578
15579 (define-public rust-miow-0.2
15580 (package
15581 (inherit rust-miow-0.3)
15582 (name "rust-miow")
15583 (version "0.2.1")
15584 (source
15585 (origin
15586 (method url-fetch)
15587 (uri (crate-uri "miow" version))
15588 (file-name (string-append name "-" version ".crate"))
15589 (sha256
15590 (base32
15591 "06g9b8sqlh5gxakwqq4rrib07afwanfnxgxajrldwcgk3hxjy7wc"))))
15592 (arguments
15593 `(#:skip-build? #t
15594 #:cargo-inputs
15595 (("rust-kernel32-sys" ,rust-kernel32-sys-0.2)
15596 ("rust-net2" ,rust-net2-0.2)
15597 ("rust-winapi" ,rust-winapi-0.2)
15598 ("rust-ws2-32-sys" ,rust-ws2-32-sys-0.2))
15599 #:cargo-development-inputs
15600 (("rust-rand" ,rust-rand-0.3))))))
15601
15602 (define-public rust-model-0.1
15603 (package
15604 (name "rust-model")
15605 (version "0.1.2")
15606 (source
15607 (origin
15608 (method url-fetch)
15609 (uri (crate-uri "model" version))
15610 (file-name
15611 (string-append name "-" version ".tar.gz"))
15612 (sha256
15613 (base32
15614 "0kx6hy5i1fn2qs4x6hpng9jixpm68g83vm24z8bqqscr317yinb6"))))
15615 (build-system cargo-build-system)
15616 (arguments
15617 `(#:skip-build? #t
15618 #:cargo-inputs
15619 (("rust-permutohedron" ,rust-permutohedron-0.2)
15620 ("rust-proptest" ,rust-proptest-0.9))))
15621 (home-page "https://github.com/spacejam/model")
15622 (synopsis "Model-based testing for data structures")
15623 (description
15624 "Model-based testing for data structures, with linearizability
15625 checking.")
15626 (license (list license:expat license:asl2.0))))
15627
15628 (define-public rust-modifier-0.1
15629 (package
15630 (name "rust-modifier")
15631 (version "0.1.0")
15632 (source
15633 (origin
15634 (method url-fetch)
15635 (uri (crate-uri "modifier" version))
15636 (file-name (string-append name "-" version ".crate"))
15637 (sha256
15638 (base32
15639 "0n3fmgli1nsskl0whrfzm1gk0rmwwl6pw1q4nb9sqqmn5h8wkxa1"))))
15640 (build-system cargo-build-system)
15641 (home-page "https://github.com/reem/rust-modifier")
15642 (synopsis
15643 "Chaining APIs for both self -> Self and &mut self methods.")
15644 (description
15645 "Chaining APIs for both self -> Self and &mut self methods.")
15646 (license license:expat)))
15647
15648 (define-public rust-multi-default-trait-impl-0.1
15649 (package
15650 (name "rust-multi-default-trait-impl")
15651 (version "0.1.2")
15652 (source
15653 (origin
15654 (method url-fetch)
15655 (uri (crate-uri "multi-default-trait-impl" version))
15656 (file-name
15657 (string-append name "-" version ".tar.gz"))
15658 (sha256
15659 (base32
15660 "1r6y5zb6kg655zi02yk4amkwsgds5ay9ag1dk30cls7rn3dlvvqs"))))
15661 (build-system cargo-build-system)
15662 (arguments
15663 `(#:cargo-inputs
15664 (("rust-lazy-static" ,rust-lazy-static-1)
15665 ("rust-proc-macro2" ,rust-proc-macro2-1)
15666 ("rust-quote" ,rust-quote-1)
15667 ("rust-syn" ,rust-syn-1))))
15668 (home-page "https://github.com/hainish/multi-default-trait-impl")
15669 (synopsis "Define multiple implementations of trait")
15670 (description
15671 "This library contains two attribute macros: @code{default_trait_impl}
15672 which defines a default trait implementation, and @code{trait_impl} which uses
15673 a default trait implementation you've defined.")
15674 (license license:lgpl2.1+)))
15675
15676 (define-public rust-mysqlclient-sys-0.2
15677 (package
15678 (name "rust-mysqlclient-sys")
15679 (version "0.2.4")
15680 (source
15681 (origin
15682 (method url-fetch)
15683 (uri (crate-uri "mysqlclient-sys" version))
15684 (file-name (string-append name "-" version ".tar.gz"))
15685 (sha256
15686 (base32
15687 "11ggkcbfnmp81amc9g0j98dk17fnmqcp9smgm9w401286kckg5ky"))))
15688 (build-system cargo-build-system)
15689 (arguments
15690 `(#:cargo-inputs
15691 (("rust-pkg-config" ,rust-pkg-config-0.3)
15692 ("rust-vcpkg" ,rust-vcpkg-0.2))))
15693 (native-inputs
15694 `(("mariadb" ,mariadb "lib")))
15695 (home-page "https://github.com/sgrif/mysqlclient-sys")
15696 (synopsis "Auto-generated rust bindings for libmysqlclient")
15697 (description "This package provides auto-generated rust bindings for
15698 libmysqlclient.")
15699 (license (list license:expat license:asl2.0))))
15700
15701 (define-public rust-nasm-rs-0.1
15702 (package
15703 (name "rust-nasm-rs")
15704 (version "0.1.7")
15705 (source
15706 (origin
15707 (method url-fetch)
15708 (uri (crate-uri "nasm-rs" version))
15709 (file-name
15710 (string-append name "-" version ".tar.gz"))
15711 (sha256
15712 (base32
15713 "0r34hiy1pc0aksrfc02zsl0zyw33i9yi7kyx8l214l7nm0mzm97y"))))
15714 (build-system cargo-build-system)
15715 (arguments
15716 `(#:skip-build? #t
15717 #:cargo-inputs
15718 (("rust-rayon" ,rust-rayon-1))))
15719 (home-page "https://github.com/medek/nasm-rs")
15720 (synopsis "Run NASM during your Cargo build")
15721 (description "Run NASM during your Cargo build.")
15722 (license (list license:expat license:asl2.0))))
15723
15724 (define-public rust-nalgebra-0.21
15725 (package
15726 (name "rust-nalgebra")
15727 (version "0.21.1")
15728 (source
15729 (origin
15730 (method url-fetch)
15731 (uri (crate-uri "nalgebra" version))
15732 (file-name
15733 (string-append name "-" version ".tar.gz"))
15734 (sha256
15735 (base32
15736 "11ili22n4ffgcjbgvbjqmpbd67qrl2acqbpymg6z7d2h7my19dnn"))))
15737 (build-system cargo-build-system)
15738 (arguments
15739 `(#:cargo-inputs
15740 (("rust-abomonation" ,rust-abomonation-0.7)
15741 ("rust-alga" ,rust-alga-0.9)
15742 ("rust-approx" ,rust-approx-0.3)
15743 ("rust-generic-array" ,rust-generic-array-0.13)
15744 ("rust-matrixmultiply" ,rust-matrixmultiply-0.2)
15745 ("rust-mint" ,rust-mint-0.5)
15746 ("rust-num-complex" ,rust-num-complex-0.2)
15747 ("rust-num-rational" ,rust-num-rational-0.2)
15748 ("rust-num-traits" ,rust-num-traits-0.2)
15749 ("rust-pest" ,rust-pest-2)
15750 ("rust-pest-derive" ,rust-pest-derive-2)
15751 ("rust-quickcheck" ,rust-quickcheck-0.9)
15752 ("rust-rand" ,rust-rand-0.7)
15753 ("rust-rand-distr" ,rust-rand-distr-0.2)
15754 ("rust-serde" ,rust-serde-1)
15755 ("rust-serde-derive" ,rust-serde-derive-1)
15756 ("rust-simba" ,rust-simba-0.1)
15757 ("rust-typenum" ,rust-typenum-1))
15758 #:cargo-development-inputs
15759 (("rust-rand-isaac" ,rust-rand-isaac-0.2)
15760 ("rust-rand-xorshift" ,rust-rand-xorshift-0.2)
15761 ("rust-serde-json" ,rust-serde-json-1))))
15762 (home-page "https://nalgebra.org")
15763 (synopsis "Linear algebra library")
15764 (description
15765 "This package provides a linear algebra library with transformations and
15766 statically-sized or dynamically-sized matrices.")
15767 (license license:bsd-3)))
15768
15769 (define-public rust-nalgebra-0.19
15770 (package
15771 (inherit rust-nalgebra-0.21)
15772 (name "rust-nalgebra")
15773 (version "0.19.0")
15774 (source
15775 (origin
15776 (method url-fetch)
15777 (uri (crate-uri "nalgebra" version))
15778 (file-name
15779 (string-append name "-" version ".tar.gz"))
15780 (sha256
15781 (base32
15782 "0i87k57nav221lnr9z7ljlwxh8073qsx33bajdm146y00q805fqa"))))
15783 (arguments
15784 `(#:cargo-inputs
15785 (("rust-abomonation" ,rust-abomonation-0.7)
15786 ("rust-alga" ,rust-alga-0.9)
15787 ("rust-approx" ,rust-approx-0.3)
15788 ("rust-generic-array" ,rust-generic-array-0.13)
15789 ("rust-matrixmultiply" ,rust-matrixmultiply-0.2)
15790 ("rust-mint" ,rust-mint-0.5)
15791 ("rust-num-complex" ,rust-num-complex-0.2)
15792 ("rust-num-rational" ,rust-num-rational-0.2)
15793 ("rust-num-traits" ,rust-num-traits-0.2)
15794 ("rust-pest" ,rust-pest-2)
15795 ("rust-pest-derive" ,rust-pest-derive-2)
15796 ("rust-quickcheck" ,rust-quickcheck-0.9)
15797 ("rust-rand" ,rust-rand-0.7)
15798 ("rust-rand-distr" ,rust-rand-distr-0.2)
15799 ("rust-serde" ,rust-serde-1)
15800 ("rust-serde-derive" ,rust-serde-derive-1)
15801 ("rust-typenum" ,rust-typenum-1))
15802 #:cargo-development-inputs
15803 (("rust-rand-xorshift" ,rust-rand-xorshift-0.2)
15804 ("rust-serde-json" ,rust-serde-json-1))))))
15805
15806 (define-public rust-nalgebra-0.18
15807 (package
15808 (inherit rust-nalgebra-0.19)
15809 (name "rust-nalgebra")
15810 (version "0.18.1")
15811 (source
15812 (origin
15813 (method url-fetch)
15814 (uri (crate-uri "nalgebra" version))
15815 (file-name
15816 (string-append name "-" version ".tar.gz"))
15817 (sha256
15818 (base32
15819 "18i1npny8s45ff67p5qpdwwsn36fp23mal8847fkb32cqgdzvada"))))
15820 (arguments
15821 `(#:cargo-inputs
15822 (("rust-abomonation" ,rust-abomonation-0.7)
15823 ("rust-alga" ,rust-alga-0.9)
15824 ("rust-approx" ,rust-approx-0.3)
15825 ("rust-generic-array" ,rust-generic-array-0.12)
15826 ("rust-matrixmultiply" ,rust-matrixmultiply-0.2)
15827 ("rust-mint" ,rust-mint-0.5)
15828 ("rust-num-complex" ,rust-num-complex-0.2)
15829 ("rust-num-rational" ,rust-num-rational-0.2)
15830 ("rust-num-traits" ,rust-num-traits-0.2)
15831 ("rust-pest" ,rust-pest-2)
15832 ("rust-pest-derive" ,rust-pest-derive-2)
15833 ("rust-quickcheck" ,rust-quickcheck-0.8)
15834 ("rust-rand" ,rust-rand-0.6)
15835 ("rust-serde" ,rust-serde-1)
15836 ("rust-serde-derive" ,rust-serde-derive-1)
15837 ("rust-typenum" ,rust-typenum-1))
15838 #:cargo-development-inputs
15839 (("rust-rand-xorshift" ,rust-rand-xorshift-0.1)
15840 ("rust-serde-json" ,rust-serde-json-1))))))
15841
15842 (define-public rust-named-pipe-0.4
15843 (package
15844 (name "rust-named-pipe")
15845 (version "0.4.1")
15846 (source
15847 (origin
15848 (method url-fetch)
15849 (uri (crate-uri "named-pipe" version))
15850 (file-name
15851 (string-append name "-" version ".tar.gz"))
15852 (sha256
15853 (base32
15854 "0azby10wzmsrf66m1bysbil0sjfybnvhsa8py093xz4irqy4975d"))))
15855 (build-system cargo-build-system)
15856 (arguments
15857 `(#:skip-build? #t ; Only builds on Windows.
15858 #:cargo-inputs (("rust-winapi" ,rust-winapi-0.3))))
15859 (home-page "https://github.com/blackbeam/named_pipe")
15860 (synopsis "Wrapper for overlapped (asynchronous) IO of Windows's named pipes")
15861 (description "This package provides a wrapper for overlapped (asynchronous)
15862 IO of Windows's named pipes.")
15863 (license (list license:expat license:asl2.0))))
15864
15865 (define-public rust-napi-0.5
15866 (package
15867 (name "rust-napi")
15868 (version "0.5.1")
15869 (source
15870 (origin
15871 (method url-fetch)
15872 (uri (crate-uri "napi" version))
15873 (file-name (string-append name "-" version ".tar.gz"))
15874 (sha256
15875 (base32
15876 "0mp0di7zv1r9gn3r3pmqnyy6q94akd9d6bl1p7m76nm9hgj9rw56"))))
15877 (build-system cargo-build-system)
15878 (arguments
15879 `(#:cargo-inputs
15880 (("rust-encoding-rs" ,rust-encoding-rs-0.8)
15881 ("rust-futures" ,rust-futures-0.3)
15882 ("rust-napi-sys" ,rust-napi-sys-0.4)
15883 ("rust-once-cell" ,rust-once-cell-1)
15884 ("rust-serde" ,rust-serde-1)
15885 ("rust-serde-json" ,rust-serde-json-1)
15886 ("rust-tokio" ,rust-tokio-0.2))
15887 #:cargo-development-inputs
15888 (("rust-napi-build" ,rust-napi-build-0.2))))
15889 (home-page "https://github.com/napi-rs/napi-rs")
15890 (synopsis "N-API bindings")
15891 (description "This package provides N-API bindings.")
15892 (license license:expat)))
15893
15894 (define-public rust-napi-build-0.2
15895 (package
15896 (name "rust-napi-build")
15897 (version "0.2.1")
15898 (source
15899 (origin
15900 (method url-fetch)
15901 (uri (crate-uri "napi-build" version))
15902 (file-name (string-append name "-" version ".tar.gz"))
15903 (sha256
15904 (base32
15905 "1z02mlw1wa01fjpjnqns3f3vxacbg1jnk98hcg3pgwp5xy3zdyqq"))))
15906 (build-system cargo-build-system)
15907 (arguments
15908 `(#:cargo-inputs
15909 (("rust-cfg-if" ,rust-cfg-if-0.1)
15910 ("rust-reqwest" ,rust-reqwest-0.10))))
15911 (home-page "https://github.com/napi-rs/napi-rs")
15912 (synopsis "N-API build support")
15913 (description "This package provides N-API build support.")
15914 (license license:expat)))
15915
15916 (define-public rust-napi-derive-0.5
15917 (package
15918 (name "rust-napi-derive")
15919 (version "0.5.1")
15920 (source
15921 (origin
15922 (method url-fetch)
15923 (uri (crate-uri "napi-derive" version))
15924 (file-name (string-append name "-" version ".tar.gz"))
15925 (sha256
15926 (base32
15927 "0kkgpzw4i6f0zkg80v9vhr7y5rg25q3kv67029i1gcgsrxlqx4zi"))))
15928 (build-system cargo-build-system)
15929 (arguments
15930 `(#:cargo-inputs
15931 (("rust-proc-macro2" ,rust-proc-macro2-1)
15932 ("rust-quote" ,rust-quote-1)
15933 ("rust-syn" ,rust-syn-1))))
15934 (home-page "https://github.com/napi-rs/napi-rs")
15935 (synopsis "N-API procedural macros")
15936 (description "This package provides N-API procedural macros.")
15937 (license license:expat)))
15938
15939 (define-public rust-napi-sys-0.4
15940 (package
15941 (name "rust-napi-sys")
15942 (version "0.4.7")
15943 (source
15944 (origin
15945 (method url-fetch)
15946 (uri (crate-uri "napi-sys" version))
15947 (file-name (string-append name "-" version ".tar.gz"))
15948 (sha256
15949 (base32
15950 "0cjirf6n4i2lw65iaww8d4hahv3cbfm5ka9hlansvnbfgzwadzq9"))))
15951 (build-system cargo-build-system)
15952 (inputs
15953 `(("openssl" ,openssl)))
15954 (native-inputs
15955 `(("pkg-config" ,pkg-config)))
15956 (arguments
15957 `(#:cargo-inputs
15958 (("rust-bindgen" ,rust-bindgen-0.55)
15959 ("rust-semver" ,rust-semver-0.10)
15960 ("rust-tar" ,rust-tar-0.4))
15961 #:cargo-development-inputs
15962 (("rust-flate2" ,rust-flate2-1)
15963 ("rust-glob" ,rust-glob-0.3)
15964 ("rust-regex" ,rust-regex-1)
15965 ("rust-reqwest" ,rust-reqwest-0.10))))
15966 (home-page "https://github.com/napi-rs/napi-rs")
15967 (synopsis "NodeJS N-API raw binding")
15968 (description "This package provides a NodeJS N-API raw binding.")
15969 (license license:expat)))
15970
15971 (define-public rust-native-tls-0.2
15972 (package
15973 (name "rust-native-tls")
15974 (version "0.2.3")
15975 (source
15976 (origin
15977 (method url-fetch)
15978 (uri (crate-uri "native-tls" version))
15979 (file-name
15980 (string-append name "-" version ".tar.gz"))
15981 (sha256
15982 (base32
15983 "0ki7cj4wzyd2nach4qdjly69sp7rs0yz3n3z2ii4mm1gqajg2bab"))))
15984 (build-system cargo-build-system)
15985 (arguments
15986 `(#:tests? #f ; tests require network access
15987 #:cargo-inputs
15988 (("rust-lazy-static" ,rust-lazy-static-1)
15989 ("rust-libc" ,rust-libc-0.2)
15990 ("rust-log" ,rust-log-0.4)
15991 ("rust-openssl" ,rust-openssl-0.10)
15992 ("rust-openssl-probe" ,rust-openssl-probe-0.1)
15993 ("rust-openssl-sys" ,rust-openssl-sys-0.9)
15994 ("rust-schannel" ,rust-schannel-0.1)
15995 ("rust-security-framework" ,rust-security-framework-0.3)
15996 ("rust-security-framework-sys" ,rust-security-framework-sys-0.3)
15997 ("rust-tempfile" ,rust-tempfile-3))
15998 #:cargo-development-inputs
15999 (("rust-hex" ,rust-hex-0.3))))
16000 (native-inputs
16001 `(("pkg-config" ,pkg-config)))
16002 (inputs
16003 `(("openssl" ,openssl)))
16004 (home-page "https://github.com/sfackler/rust-native-tls")
16005 (synopsis
16006 "Wrapper over a platform's native TLS implementation")
16007 (description
16008 "This package provides a wrapper over a platform's native TLS implementation.")
16009 (license (list license:expat license:asl2.0))))
16010
16011 (define-public rust-natord-1.0
16012 (package
16013 (name "rust-natord")
16014 (version "1.0.9")
16015 (source
16016 (origin
16017 (method url-fetch)
16018 (uri (crate-uri "natord" version))
16019 (file-name
16020 (string-append name "-" version ".tar.gz"))
16021 (sha256
16022 (base32
16023 "0z75spwag3ch20841pvfwhh3892i2z2sli4pzp1jgizbipdrd39h"))))
16024 (build-system cargo-build-system)
16025 (home-page "https://github.com/lifthrasiir/rust-natord")
16026 (synopsis "Natural ordering for Rust")
16027 (description
16028 "This package provides a crate to perform natural ordering for Rust.")
16029 (license license:expat)))
16030
16031 (define-public rust-net2-0.2
16032 (package
16033 (name "rust-net2")
16034 (version "0.2.33")
16035 (source
16036 (origin
16037 (method url-fetch)
16038 (uri (crate-uri "net2" version))
16039 (file-name (string-append name "-" version ".crate"))
16040 (sha256
16041 (base32
16042 "126g3fgfxp06zimc1l9iyxnn9cif1hjsg7sd81nlls5nnyghsma2"))))
16043 (build-system cargo-build-system)
16044 (arguments
16045 `(#:skip-build? #t
16046 #:cargo-inputs
16047 (("rust-cfg-if" ,rust-cfg-if-0.1)
16048 ("rust-libc" ,rust-libc-0.2)
16049 ("rust-winapi" ,rust-winapi-0.3))))
16050 (home-page "https://github.com/rust-lang-nursery/net2-rs")
16051 (synopsis "Extensions to the standard library's networking types")
16052 (description
16053 "This library contains extensions to the standard library's networking
16054 types as proposed in RFC 1158.")
16055 (license (list license:asl2.0
16056 license:expat))))
16057
16058 (define-public rust-nettle-7
16059 (package
16060 (name "rust-nettle")
16061 (version "7.0.0")
16062 (source
16063 (origin
16064 (method url-fetch)
16065 (uri (crate-uri "nettle" version))
16066 (file-name (string-append name "-" version ".tar.gz"))
16067 (sha256
16068 (base32 "1n6dwy9zba8853bmxzhwaashd3np0wxpx0pj43brm0hb8n2sxbxi"))
16069 (patches (search-patches "rust-nettle-disable-vendor.patch"))))
16070 (build-system cargo-build-system)
16071 (native-inputs
16072 `(("pkg-config" ,pkg-config)))
16073 (inputs
16074 `(("clang" ,clang)
16075 ("gmp" ,gmp)
16076 ("nettle" ,nettle)))
16077 (arguments
16078 `(#:skip-build? #t ;; provides nothing, has no tests
16079 #:cargo-inputs
16080 (("rust-getrandom" ,rust-getrandom-0.1)
16081 ("rust-libc" ,rust-libc-0.2)
16082 ("rust-nettle-sys" ,rust-nettle-sys-2)
16083 ("rust-thiserror" ,rust-thiserror-1))
16084 #:cargo-development-inputs
16085 (("rust-bindgen" ,rust-bindgen-0.51)
16086 ("rust-pkg-config" ,rust-pkg-config-0.3))))
16087 (home-page "https://gitlab.com/sequoia-pgp/nettle-rs")
16088 (synopsis "Rust bindings for the Nettle cryptographic library")
16089 (description "This package provides Rust bindings for the Nettle
16090 cryptographic library.")
16091 (license (list license:lgpl3 license:gpl2 license:gpl3))))
16092
16093 (define-public rust-nettle-5
16094 (package
16095 (inherit rust-nettle-7)
16096 (version "5.0.3")
16097 (source
16098 (origin
16099 (method url-fetch)
16100 (uri (crate-uri "nettle" version))
16101 (file-name
16102 (string-append (package-name rust-nettle-7) "-" version ".tar.gz"))
16103 (sha256
16104 (base32 "0zfplqdf3mag8r7lc124hl24vri8yg711jmm8gl1mpwnlhass2n4"))
16105 (patches (search-patches "rust-nettle-disable-vendor.patch"))))))
16106
16107 (define-public rust-nettle-sys-2
16108 (package
16109 (name "rust-nettle-sys")
16110 (version "2.0.4")
16111 (source
16112 (origin
16113 (method url-fetch)
16114 (uri (crate-uri "nettle-sys" version))
16115 (file-name (string-append name "-" version ".tar.gz"))
16116 (sha256
16117 (base32 "1yq1w6dlcmg89x529i7s20j29afdhgim7qnsa7978fszzwrr6qmq"))
16118 (patches (search-patches "rust-nettle-sys-disable-vendor.patch"))))
16119 (build-system cargo-build-system)
16120 (native-inputs
16121 `(("clang" ,clang)
16122 ("pkg-config" ,pkg-config)))
16123 (inputs
16124 `(("nettle", nettle)))
16125 (arguments
16126 `(#:cargo-inputs
16127 (("rust-bindgen" ,rust-bindgen-0.51)
16128 ("rust-pkg-config" ,rust-pkg-config-0.3))))
16129 (home-page "https://gitlab.com/sequoia-pgp/nettle-sys")
16130 (synopsis "Low-level Rust bindings for the Nettle cryptographic library")
16131 (description "This package provides low-level Rust bindings for the Nettle
16132 cryptographic library.")
16133 (license ;; licensed under either of these, at your option
16134 (list license:lgpl3 license:gpl2 license:gpl3))))
16135
16136 (define-public rust-new-debug-unreachable-1
16137 (package
16138 (name "rust-new-debug-unreachable")
16139 (version "1.0.3")
16140 (source
16141 (origin
16142 (method url-fetch)
16143 (uri (crate-uri "new_debug_unreachable" version))
16144 (file-name
16145 (string-append name "-" version ".tar.gz"))
16146 (sha256
16147 (base32
16148 "0c1br326qa0rrzxrn2rd5ah7xaprig2i9r4rwsx06vnvc1f003zl"))))
16149 (build-system cargo-build-system)
16150 (arguments `(#:skip-build? #t))
16151 (home-page
16152 "https://github.com/mbrubeck/rust-debug-unreachable")
16153 (synopsis
16154 "Panic in debug, @code{intrinsics::unreachable()} in release")
16155 (description
16156 "Panic in debug, @code{intrinsics::unreachable()} in
16157 release (fork of debug_unreachable)")
16158 (license license:expat)))
16159
16160 (define-public rust-nix-0.17
16161 (package
16162 (name "rust-nix")
16163 (version "0.17.0")
16164 (source
16165 (origin
16166 (method url-fetch)
16167 (uri (crate-uri "nix" version))
16168 (file-name
16169 (string-append name "-" version ".tar.gz"))
16170 (sha256
16171 (base32
16172 "0qvk09kib3jpvpbaps0682nav20ibql61pf1s2h8jx9v5igpir2h"))))
16173 (build-system cargo-build-system)
16174 (arguments
16175 `(#:tests? #f ; test suite hangs
16176 #:cargo-inputs
16177 (("rust-bitflags" ,rust-bitflags-1)
16178 ("rust-cc" ,rust-cc-1)
16179 ("rust-cfg-if" ,rust-cfg-if-0.1)
16180 ("rust-libc" ,rust-libc-0.2)
16181 ("rust-void" ,rust-void-1))
16182 #:cargo-development-inputs
16183 (("rust-bytes" ,rust-bytes-0.4)
16184 ("rust-caps" ,rust-caps-0.3)
16185 ("rust-lazy-static" ,rust-lazy-static-1)
16186 ("rust-rand" ,rust-rand-0.6)
16187 ("rust-sysctl" ,rust-sysctl-0.1)
16188 ("rust-tempfile" ,rust-tempfile-3))))
16189 (home-page "https://github.com/nix-rust/nix")
16190 (synopsis "Rust friendly bindings to *nix APIs")
16191 (description "Rust friendly bindings to *nix APIs.")
16192 (license license:expat)))
16193
16194 (define-public rust-nix-0.15
16195 (package
16196 (inherit rust-nix-0.17)
16197 (name "rust-nix")
16198 (version "0.15.0")
16199 (source
16200 (origin
16201 (method url-fetch)
16202 (uri (crate-uri "nix" version))
16203 (file-name
16204 (string-append name "-" version ".tar.gz"))
16205 (sha256
16206 (base32
16207 "0aa2l7wg9pzx24ks4p97gdy09a4hhs1sr9drxnm75v906d7hnbiv"))
16208 (modules '((guix build utils)))
16209 (snippet
16210 '(begin
16211 ;; Unpin the dependency on tempfile, as it was withheld for MSRV
16212 ;; concerns, which don't matter for Guix:
16213 ;; https://github.com/nix-rust/nix/commit/98531c8f04bc23fb632c08e06dc4e56284b9c027
16214 (substitute* "Cargo.toml"
16215 (("version = \">= 3.0.5, < 3.0.9\"") "version = \"3.0.5\""))
16216 #t))))))
16217
16218 (define-public rust-nix-0.14
16219 (package
16220 (inherit rust-nix-0.15)
16221 (name "rust-nix")
16222 (version "0.14.1")
16223 (source
16224 (origin
16225 (method url-fetch)
16226 (uri (crate-uri "nix" version))
16227 (file-name
16228 (string-append name "-" version ".tar.gz"))
16229 (sha256
16230 (base32
16231 "1kmxdlmvnmq8cfpmr3g6wk37rwi2ybdvp1z6z3831m1p23p2nwkc"))))))
16232
16233 (define-public rust-no-panic-0.1
16234 (package
16235 (name "rust-no-panic")
16236 (version "0.1.12")
16237 (source
16238 (origin
16239 (method url-fetch)
16240 (uri (crate-uri "no-panic" version))
16241 (file-name
16242 (string-append name "-" version ".tar.gz"))
16243 (sha256
16244 (base32
16245 "0xan5v9ac1aklinc8aw16raq36pb4idjrl502np8gy32gfs6s751"))))
16246 (build-system cargo-build-system)
16247 (arguments
16248 `(#:cargo-inputs
16249 (("rust-proc-macro2" ,rust-proc-macro2-1)
16250 ("rust-quote" ,rust-quote-1)
16251 ("rust-syn" ,rust-syn-1))
16252 #:cargo-development-inputs
16253 (("rust-tempfile" ,rust-tempfile-3))))
16254 (home-page "https://github.com/dtolnay/no-panic")
16255 (synopsis "Prove a function can't ever panic")
16256 (description
16257 "This package provides a rust attribute macro to require that the compiler
16258 prove a function can't ever panic.")
16259 (license (list license:expat license:asl2.0))))
16260
16261 (define-public rust-nodrop-0.1
16262 (package
16263 (name "rust-nodrop")
16264 (version "0.1.14")
16265 (source
16266 (origin
16267 (method url-fetch)
16268 (uri (crate-uri "nodrop" version))
16269 (file-name (string-append name "-" version ".crate"))
16270 (sha256
16271 (base32
16272 "1fz1v9r8ijacf0hlq0pdv5l9mz8vgqg1snmhvpjmi9aci1b4mvvj"))))
16273 (build-system cargo-build-system)
16274 (arguments
16275 `(#:cargo-inputs
16276 (("rust-nodrop-union" ,rust-nodrop-union-0.1))))
16277 (home-page "https://github.com/bluss/arrayvec")
16278 (synopsis "Wrapper type to inhibit drop (destructor)")
16279 (description "This package provides a wrapper type to inhibit drop
16280 (destructor). Use @code{std::mem::ManuallyDrop} instead!")
16281 (license (list license:asl2.0
16282 license:expat))))
16283
16284 (define-public rust-nodrop-union-0.1
16285 (package
16286 (name "rust-nodrop-union")
16287 (version "0.1.11")
16288 (source
16289 (origin
16290 (method url-fetch)
16291 (uri (crate-uri "nodrop-union" version))
16292 (file-name (string-append name "-" version ".crate"))
16293 (sha256
16294 (base32
16295 "1h59pph19rxanyqcaid8pg73s7wmzdx3zhjv5snlim5qx606zxkc"))))
16296 (build-system cargo-build-system)
16297 (arguments '(#:skip-build? #t)) ; depends on features not in stable Rust
16298 (home-page "https://github.com/bluss/arrayvec")
16299 (synopsis "Wrapper type to inhibit drop (destructor)")
16300 (description "This package provides a wrapper type to inhibit drop
16301 (destructor). Implementation crate for @code{nodrop}, the untagged unions
16302 implementation (which is unstable / requires nightly).")
16303 (license (list license:asl2.0
16304 license:expat))))
16305
16306 (define-public rust-nom-5
16307 (package
16308 (name "rust-nom")
16309 (version "5.1.2")
16310 (source
16311 (origin
16312 (method url-fetch)
16313 (uri (crate-uri "nom" version))
16314 (file-name
16315 (string-append name "-" version ".tar.gz"))
16316 (sha256
16317 (base32
16318 "1br74rwdp3c2ddga03bphnf355spn4mzwf1slg0a30zd4qnjdd7z"))))
16319 (build-system cargo-build-system)
16320 (arguments
16321 `(#:tests? #f ; Tests require example directory, not included in tarball.
16322 #:cargo-inputs
16323 (("rust-lazy-static" ,rust-lazy-static-1)
16324 ("rust-lexical-core" ,rust-lexical-core-0.7)
16325 ("rust-memchr" ,rust-memchr-2)
16326 ("rust-regex" ,rust-regex-1)
16327 ("rust-version-check" ,rust-version-check-0.9))
16328 #:cargo-development-inputs
16329 (("rust-criterion" ,rust-criterion-0.2)
16330 ("rust-doc-comment" ,rust-doc-comment-0.3)
16331 ("rust-jemallocator" ,rust-jemallocator-0.1))
16332 #:phases
16333 (modify-phases %standard-phases
16334 (add-after 'configure 'override-jemalloc
16335 (lambda* (#:key inputs #:allow-other-keys)
16336 (let ((jemalloc (assoc-ref inputs "jemalloc")))
16337 (setenv "JEMALLOC_OVERRIDE"
16338 (string-append jemalloc "/lib/libjemalloc_pic.a")))
16339 #t)))))
16340 (native-inputs
16341 `(("jemalloc" ,jemalloc)))
16342 (home-page "https://github.com/Geal/nom")
16343 (synopsis
16344 "Byte-oriented, zero-copy, parser combinators library")
16345 (description
16346 "This package provides a byte-oriented, zero-copy, parser
16347 combinators library.")
16348 (license license:expat)))
16349
16350 (define-public rust-nom-4.2
16351 (package
16352 (inherit rust-nom-5)
16353 (name "rust-nom")
16354 (version "4.2.3")
16355 (source
16356 (origin
16357 (method url-fetch)
16358 (uri (crate-uri "nom" version))
16359 (file-name
16360 (string-append name "-" version ".tar.gz"))
16361 (sha256
16362 (base32
16363 "1mkvby8b4m61p4g1px0pwr58yfkphyp1jcfbp4qfp7l6iqdaklia"))))
16364 (arguments
16365 `(#:skip-build? #t
16366 #:cargo-inputs
16367 (("rust-lazy-static" ,rust-lazy-static-1)
16368 ("rust-memchr" ,rust-memchr-2)
16369 ("rust-regex" ,rust-regex-1)
16370 ("rust-version-check" ,rust-version-check-0.1))
16371 #:cargo-development-inputs
16372 (("rust-criterion" ,rust-criterion-0.2)
16373 ("rust-jemallocator" ,rust-jemallocator-0.1))))))
16374
16375 (define-public rust-nom-3
16376 (package
16377 (inherit rust-nom-4.2)
16378 (name "rust-nom")
16379 (version "3.2.1")
16380 (source
16381 (origin
16382 (method url-fetch)
16383 (uri (crate-uri "nom" version))
16384 (file-name
16385 (string-append name "-" version ".tar.gz"))
16386 (sha256
16387 (base32
16388 "0yr8fazcspgawl6s7wmx5llz61s68jl88cnrph18fa7xf06cbbh5"))))
16389 (build-system cargo-build-system)
16390 (arguments
16391 `(#:tests? #f ; stream::tests::seeking_consumer fails
16392 #:cargo-inputs
16393 (("rust-compiler-error" ,rust-compiler-error-0.1)
16394 ("rust-lazy-static" ,rust-lazy-static-0.2)
16395 ("rust-memchr" ,rust-memchr-1.0)
16396 ("rust-regex" ,rust-regex-0.2))))))
16397
16398 (define-public rust-nom-1.2
16399 (package
16400 (inherit rust-nom-4.2)
16401 (name "rust-nom")
16402 (version "1.2.4")
16403 (source
16404 (origin
16405 (method url-fetch)
16406 (uri (crate-uri "nom" version))
16407 (file-name
16408 (string-append name "-" version ".tar.gz"))
16409 (sha256
16410 (base32
16411 "1kjh42w67z1hh1dw3jrilgqrf54jk2xcvhw4rcdm4wclzmbc5f55"))))
16412 (arguments
16413 ;; This is an ancient version and all inputs are optional.
16414 `(#:skip-build? #t))))
16415
16416 (define-public rust-noop-proc-macro-0.2
16417 (package
16418 (name "rust-noop-proc-macro")
16419 (version "0.2.1")
16420 (source
16421 (origin
16422 (method url-fetch)
16423 (uri (crate-uri "noop_proc_macro" version))
16424 (file-name
16425 (string-append name "-" version ".tar.gz"))
16426 (sha256
16427 (base32
16428 "0in1l0rjxzs4fylb6zad484z1c58jxyzchhc12k0cjrvm0y6zwsz"))))
16429 (build-system cargo-build-system)
16430 (arguments `(#:skip-build? #t))
16431 (home-page
16432 "https://github.com/lu-zero/noop_proc_macro")
16433 (synopsis
16434 "No-op proc_macro, literally does nothing")
16435 (description
16436 "No-op proc_macro, literally does nothing")
16437 (license license:expat)))
16438
16439 (define-public rust-normalize-line-endings-0.3
16440 (package
16441 (name "rust-normalize-line-endings")
16442 (version "0.3.0")
16443 (source
16444 (origin
16445 (method url-fetch)
16446 (uri (crate-uri "normalize-line-endings" version))
16447 (file-name
16448 (string-append name "-" version ".tar.gz"))
16449 (sha256
16450 (base32
16451 "1gp52dfn2glz26a352zra8h04351icf0fkqzw1shkwrgh1vpz031"))))
16452 (build-system cargo-build-system)
16453 (home-page "https://github.com/derekdreery/normalize-line-endings")
16454 (synopsis
16455 "Iterate over chars and returns a new iterator with all line endings")
16456 (description
16457 "This package takes an iterator over characters and returns a new iterator
16458 with all line endings.")
16459 (license license:asl2.0)))
16460
16461 (define-public rust-notify-4
16462 (package
16463 (name "rust-notify")
16464 (version "4.0.15")
16465 (source
16466 (origin
16467 (method url-fetch)
16468 (uri (crate-uri "notify" version))
16469 (file-name
16470 (string-append name "-" version ".tar.gz"))
16471 (sha256
16472 (base32
16473 "1gadf8jf1vz7sip37rlwa66vw85ripy6977ibcfbiynii1v4mbl0"))))
16474 (build-system cargo-build-system)
16475 (arguments
16476 `(#:cargo-inputs
16477 (("rust-bitflags" ,rust-bitflags-1)
16478 ("rust-filetime" ,rust-filetime-0.2)
16479 ("rust-fsevent" ,rust-fsevent-0.4)
16480 ("rust-fsevent-sys" ,rust-fsevent-sys-2)
16481 ("rust-inotify" ,rust-inotify-0.7)
16482 ("rust-libc" ,rust-libc-0.2)
16483 ("rust-mio" ,rust-mio-0.6)
16484 ("rust-mio-extras" ,rust-mio-extras-2)
16485 ("rust-walkdir" ,rust-walkdir-2)
16486 ("rust-winapi" ,rust-winapi-0.3))
16487 #:cargo-development-inputs
16488 (("rust-tempfile" ,rust-tempfile-3))))
16489 (home-page "https://github.com/passcod/notify")
16490 (synopsis "Cross-platform file system notification library")
16491 (description
16492 "Cross-platform file system notification library.")
16493 (license license:cc0)))
16494
16495 (define-public rust-ntest-0.3
16496 (package
16497 (name "rust-ntest")
16498 (version "0.3.3")
16499 (source
16500 (origin
16501 (method url-fetch)
16502 (uri (crate-uri "ntest" version))
16503 (file-name (string-append name "-" version ".tar.gz"))
16504 (sha256
16505 (base32
16506 "04cljndihkcqqwj061bgpnxyv7wqbd3f91ag1b3ryrayn7rrclxv"))))
16507 (build-system cargo-build-system)
16508 (arguments
16509 `(#:cargo-inputs
16510 (("rust-ntest-test-cases" ,rust-ntest-test-cases-0.3)
16511 ("rust-ntest-timeout" ,rust-ntest-timeout-0.3)
16512 ("rust-timebomb" ,rust-timebomb-0.1))
16513 #:cargo-development-inputs
16514 (("rust-ntest-test-cases" ,rust-ntest-test-cases-0.3)
16515 ("rust-ntest-timeout" ,rust-ntest-timeout-0.3)
16516 ("rust-timebomb" ,rust-timebomb-0.1))))
16517 (home-page "https://github.com/becheran/ntest")
16518 (synopsis "Testing framework for Rust")
16519 (description "This package provides a testing framework for Rust which
16520 enhances the built-in library with some useful features.")
16521 (license license:expat)))
16522
16523 (define-public rust-ntest-test-cases-0.3
16524 (package
16525 (name "rust-ntest-test-cases")
16526 (version "0.3.4")
16527 (source
16528 (origin
16529 (method url-fetch)
16530 (uri (crate-uri "ntest_test_cases" version))
16531 (file-name (string-append name "-" version ".tar.gz"))
16532 (sha256
16533 (base32
16534 "0b67m368599b2zgwx19psqz6n3m9m5532h1257x6vz1pym3gd2na"))))
16535 (build-system cargo-build-system)
16536 (arguments
16537 `(#:cargo-inputs
16538 (("rust-proc-macro2" ,rust-proc-macro2-1)
16539 ("rust-quote" ,rust-quote-1)
16540 ("rust-syn" ,rust-syn-1))))
16541 (home-page "https://github.com/becheran/ntest")
16542 (synopsis "Test cases for ntest framework")
16543 (description "This package provides test cases for ntest framework.")
16544 (license license:expat)))
16545
16546 (define-public rust-ntest-timeout-0.3
16547 (package
16548 (name "rust-ntest-timeout")
16549 (version "0.3.3")
16550 (source
16551 (origin
16552 (method url-fetch)
16553 (uri (crate-uri "ntest_timeout" version))
16554 (file-name (string-append name "-" version ".tar.gz"))
16555 (sha256
16556 (base32
16557 "0klryn3rgjxnq3cv6j8bwcsr0b7zw3x216h63144v22aja18p0g0"))))
16558 (build-system cargo-build-system)
16559 (arguments
16560 `(#:cargo-inputs
16561 (("rust-proc-macro2" ,rust-proc-macro2-1)
16562 ("rust-quote" ,rust-quote-1)
16563 ("rust-syn" ,rust-syn-1)
16564 ("rust-timebomb" ,rust-timebomb-0.1))))
16565 (home-page "https://github.com/becheran/ntest")
16566 (synopsis "Timeout attribute for the ntest framework")
16567 (description "This package provides a timeout attribute for the ntest
16568 framework.")
16569 (license license:expat)))
16570
16571 (define-public rust-num-0.3
16572 (package
16573 (name "rust-num")
16574 (version "0.3.0")
16575 (source
16576 (origin
16577 (method url-fetch)
16578 (uri (crate-uri "num" version))
16579 (file-name
16580 (string-append name "-" version ".tar.gz"))
16581 (sha256
16582 (base32
16583 "0jng6s3i51k3227id2z8h348l2da8x3jq4p3az9slkxwj5hifgmb"))))
16584 (build-system cargo-build-system)
16585 (arguments
16586 `(#:cargo-inputs
16587 (("rust-num-bigint" ,rust-num-bigint-0.3)
16588 ("rust-num-complex" ,rust-num-complex-0.3)
16589 ("rust-num-integer" ,rust-num-integer-0.1)
16590 ("rust-num-iter" ,rust-num-iter-0.1)
16591 ("rust-num-rational" ,rust-num-rational-0.3)
16592 ("rust-num-traits" ,rust-num-traits-0.2))))
16593 (home-page "https://github.com/rust-num/num")
16594 (synopsis "Collection of numeric types and traits for Rust")
16595 (description
16596 "This package provides a collection of numeric types and traits for Rust,
16597 including bigint, complex, rational, range iterators, generic integers, and more.")
16598 (license (list license:expat license:asl2.0))))
16599
16600 (define-public rust-num-0.2
16601 (package
16602 (inherit rust-num-0.3)
16603 (name "rust-num")
16604 (version "0.2.1")
16605 (source
16606 (origin
16607 (method url-fetch)
16608 (uri (crate-uri "num" version))
16609 (file-name
16610 (string-append name "-" version ".tar.gz"))
16611 (sha256
16612 (base32
16613 "0dhcvhprvvx1iaaq7sxlgxw5awmj8dibni8vhizi59zyz4q60lxq"))))
16614 (arguments
16615 `(#:cargo-inputs
16616 (("rust-num-bigint" ,rust-num-bigint-0.2)
16617 ("rust-num-complex" ,rust-num-complex-0.2)
16618 ("rust-num-integer" ,rust-num-integer-0.1)
16619 ("rust-num-iter" ,rust-num-iter-0.1)
16620 ("rust-num-rational" ,rust-num-rational-0.2)
16621 ("rust-num-traits" ,rust-num-traits-0.2))))))
16622
16623 (define-public rust-num-0.1
16624 (package
16625 (inherit rust-num-0.2)
16626 (name "rust-num")
16627 (version "0.1.42")
16628 (source
16629 (origin
16630 (method url-fetch)
16631 (uri (crate-uri "num" version))
16632 (file-name
16633 (string-append name "-" version ".tar.gz"))
16634 (sha256
16635 (base32
16636 "0vhmyvfan380f86895z0f8rjscjc6qvwcmyvm15370ik2mjas0s7"))))
16637 (arguments
16638 `(#:cargo-inputs
16639 (("rust-num-bigint" ,rust-num-bigint-0.1)
16640 ("rust-num-complex" ,rust-num-complex-0.1)
16641 ("rust-num-integer" ,rust-num-integer-0.1)
16642 ("rust-num-iter" ,rust-num-iter-0.1)
16643 ("rust-num-rational" ,rust-num-rational-0.1)
16644 ("rust-num-traits" ,rust-num-traits-0.2))))))
16645
16646 (define-public rust-num-bigint-0.3
16647 (package
16648 (name "rust-num-bigint")
16649 (version "0.3.0")
16650 (source
16651 (origin
16652 (method url-fetch)
16653 (uri (crate-uri "num-bigint" version))
16654 (file-name
16655 (string-append name "-" version ".tar.gz"))
16656 (sha256
16657 (base32
16658 "186glgapg71zicah3wjld3sr5kx6rkcf6rf43gxmjw39wdszrwxp"))))
16659 (build-system cargo-build-system)
16660 (arguments
16661 `(#:cargo-inputs
16662 (("rust-num-integer" ,rust-num-integer-0.1)
16663 ("rust-num-traits" ,rust-num-traits-0.2)
16664 ("rust-quickcheck" ,rust-quickcheck-0.9)
16665 ("rust-rand" ,rust-rand-0.7)
16666 ("rust-serde" ,rust-serde-1)
16667 ("rust-autocfg" ,rust-autocfg-1.0))))
16668 (home-page "https://github.com/rust-num/num-bigint")
16669 (synopsis "Big integer implementation for Rust")
16670 (description
16671 "Big integer implementation for Rust.")
16672 (license (list license:expat license:asl2.0))))
16673
16674 (define-public rust-num-bigint-0.2
16675 (package
16676 (inherit rust-num-bigint-0.3)
16677 (name "rust-num-bigint")
16678 (version "0.2.6")
16679 (source
16680 (origin
16681 (method url-fetch)
16682 (uri (crate-uri "num-bigint" version))
16683 (file-name
16684 (string-append name "-" version ".tar.gz"))
16685 (sha256
16686 (base32
16687 "015k3wixdi4w698sappvy43pf8bvkw0f88xplmdgc3zfk2cpy309"))))
16688 (arguments
16689 `(#:cargo-inputs
16690 (("rust-num-integer" ,rust-num-integer-0.1)
16691 ("rust-num-traits" ,rust-num-traits-0.2)
16692 ("rust-quickcheck" ,rust-quickcheck-0.8)
16693 ("rust-quickcheck-macros" ,rust-quickcheck-macros-0.8)
16694 ("rust-rand" ,rust-rand-0.5)
16695 ("rust-serde" ,rust-serde-1)
16696 ("rust-autocfg" ,rust-autocfg-1.0))
16697 #:cargo-development-inputs
16698 (("rust-serde-test" ,rust-serde-test-1))))))
16699
16700 (define-public rust-num-bigint-0.1
16701 (package
16702 (inherit rust-num-bigint-0.2)
16703 (name "rust-num-bigint")
16704 (version "0.1.44")
16705 (source
16706 (origin
16707 (method url-fetch)
16708 (uri (crate-uri "num-bigint" version))
16709 (file-name
16710 (string-append name "-" version ".tar.gz"))
16711 (sha256
16712 (base32
16713 "1hg80xd7vd5yqzks1h0zk2fcgqnf84m2cdj9q4cffk581nnrjf76"))))
16714 (arguments
16715 `(#:cargo-inputs
16716 (("rust-num-integer" ,rust-num-integer-0.1)
16717 ("rust-num-traits" ,rust-num-traits-0.2)
16718 ("rust-rand" ,rust-rand-0.4)
16719 ("rust-rustc-serialize" ,rust-rustc-serialize-0.3)
16720 ("rust-serde" ,rust-serde-0.8))
16721 #:cargo-development-inputs
16722 (("rust-rand" ,rust-rand-0.4))))))
16723
16724 (define-public rust-num-bigint-dig-0.6
16725 (package
16726 (name "rust-num-bigint-dig")
16727 (version "0.6.0")
16728 (source
16729 (origin
16730 (method url-fetch)
16731 (uri (crate-uri "num-bigint-dig" version))
16732 (file-name (string-append name "-" version ".tar.gz"))
16733 (sha256
16734 (base32 "1aljx3bxfnzq35i9pkbqkj0d0hc1wjc2dd60wccjqylz1wrkrl5k"))))
16735 (build-system cargo-build-system)
16736 (arguments
16737 `(#:skip-build? #t
16738 #:cargo-inputs
16739 (("rust-autocfg" ,rust-autocfg-0.1)
16740 ("rust-byteorder" ,rust-byteorder-1)
16741 ("rust-lazy-static" ,rust-lazy-static-1)
16742 ("rust-libm" ,rust-libm-0.2)
16743 ("rust-num-integer" ,rust-num-integer-0.1)
16744 ("rust-num-iter" ,rust-num-iter-0.1)
16745 ("rust-num-traits" ,rust-num-traits-0.2)
16746 ("rust-rand" ,rust-rand-0.7)
16747 ("rust-serde" ,rust-serde-1)
16748 ("rust-smallvec" ,rust-smallvec-1)
16749 ("rust-zeroize" ,rust-zeroize-1))))
16750 (home-page
16751 "https://github.com/dignifiedquire/num-bigint")
16752 (synopsis "Big integer implementation for Rust")
16753 (description "This package provides a big integer implementation
16754 for Rust")
16755 (license (list license:expat license:asl2.0))))
16756
16757 (define-public rust-num-complex-0.3
16758 (package
16759 (name "rust-num-complex")
16760 (version "0.3.0")
16761 (source
16762 (origin
16763 (method url-fetch)
16764 (uri (crate-uri "num-complex" version))
16765 (file-name
16766 (string-append name "-" version ".tar.gz"))
16767 (sha256
16768 (base32
16769 "1dczd81f2xb092dhb0brbdbf19pyfn0v9xmkf6qm0w4pv1dx0nmh"))))
16770 (build-system cargo-build-system)
16771 (arguments
16772 `(#:cargo-inputs
16773 (("rust-num-traits" ,rust-num-traits-0.2)
16774 ("rust-rand" ,rust-rand-0.7)
16775 ("rust-serde" ,rust-serde-1))))
16776 (home-page
16777 "https://github.com/rust-num/num-complex")
16778 (synopsis
16779 "Complex numbers implementation for Rust")
16780 (description
16781 "Complex numbers implementation for Rust.")
16782 (license (list license:expat license:asl2.0))))
16783
16784 (define-public rust-num-complex-0.2
16785 (package
16786 (inherit rust-num-complex-0.3)
16787 (name "rust-num-complex")
16788 (version "0.2.4")
16789 (source
16790 (origin
16791 (method url-fetch)
16792 (uri (crate-uri "num-complex" version))
16793 (file-name
16794 (string-append name "-" version ".tar.gz"))
16795 (sha256
16796 (base32
16797 "15dwaksw729r3v14sgzc9723s3fnfixiir8jzwx7b7kim48r9cdn"))))
16798 (arguments
16799 `(#:cargo-inputs
16800 (("rust-num-traits" ,rust-num-traits-0.2)
16801 ("rust-rand" ,rust-rand-0.5)
16802 ("rust-serde" ,rust-serde-1)
16803 ("rust-autocfg" ,rust-autocfg-1.0))))))
16804
16805 (define-public rust-num-complex-0.1
16806 (package
16807 (inherit rust-num-complex-0.2)
16808 (name "rust-num-complex")
16809 (version "0.1.43")
16810 (source
16811 (origin
16812 (method url-fetch)
16813 (uri (crate-uri "num-complex" version))
16814 (file-name
16815 (string-append name "-" version ".tar.gz"))
16816 (sha256
16817 (base32
16818 "0mln3h018lar511hadjwfkbyq1561s8kdzfg8aagbakqg0fn725j"))))
16819 (build-system cargo-build-system)
16820 (arguments
16821 `(#:cargo-inputs
16822 (("rust-num-traits" ,rust-num-traits-0.2)
16823 ("rust-rustc-serialize" ,rust-rustc-serialize-0.3)
16824 ("rust-serde" ,rust-serde-0.8))))))
16825
16826 (define-public rust-num-cpus-1
16827 (package
16828 (name "rust-num-cpus")
16829 (version "1.13.0")
16830 (source
16831 (origin
16832 (method url-fetch)
16833 (uri (crate-uri "num_cpus" version))
16834 (file-name
16835 (string-append name "-" version ".tar.gz"))
16836 (sha256
16837 (base32
16838 "1cv6yxhz2zbnwn8pn1yn8grg7zsnd523947fby41a737aqvryj85"))))
16839 (build-system cargo-build-system)
16840 (arguments
16841 `(#:cargo-inputs
16842 (("rust-hermit-abi" ,rust-hermit-abi-0.1)
16843 ("rust-libc" ,rust-libc-0.2))))
16844 (home-page "https://github.com/seanmonstar/num_cpus")
16845 (synopsis "Get the number of CPUs on a machine")
16846 (description
16847 "Get the number of CPUs on a machine.")
16848 (license (list license:asl2.0
16849 license:expat))))
16850
16851 (define-public rust-num-derive-0.3
16852 (package
16853 (name "rust-num-derive")
16854 (version "0.3.2")
16855 (source
16856 (origin
16857 (method url-fetch)
16858 (uri (crate-uri "num-derive" version))
16859 (file-name
16860 (string-append name "-" version ".tar.gz"))
16861 (sha256
16862 (base32
16863 "1czs5215ypgbwg0qgy2i515xj3vfcgm8fw7gi4gmwsyv3a2bj2bg"))))
16864 (build-system cargo-build-system)
16865 (arguments
16866 `(#:cargo-inputs
16867 (("rust-proc-macro2" ,rust-proc-macro2-1)
16868 ("rust-syn" ,rust-syn-1)
16869 ("rust-quote" ,rust-quote-1))
16870 #:cargo-development-inputs
16871 (("rust-num" ,rust-num-0.3)
16872 ("rust-num-traits" ,rust-num-traits-0.2))))
16873 (home-page "https://github.com/rust-num/num-derive")
16874 (synopsis "Numeric syntax extensions")
16875 (description "This package provides numeric syntax extensions.")
16876 (license (list license:expat license:asl2.0))))
16877
16878 (define-public rust-num-derive-0.2
16879 (package
16880 (name "rust-num-derive")
16881 (version "0.2.5")
16882 (source
16883 (origin
16884 (method url-fetch)
16885 (uri (crate-uri "num-derive" version))
16886 (file-name
16887 (string-append name "-" version ".tar.gz"))
16888 (sha256
16889 (base32
16890 "1wnv7776fh4i40r3zfxcxcmm0dh029skx7gp4sjknz2kqm2hpzga"))))
16891 (build-system cargo-build-system)
16892 (arguments
16893 `(#:cargo-inputs
16894 (("rust-proc-macro2" ,rust-proc-macro2-0.4)
16895 ("rust-quote" ,rust-quote-0.6)
16896 ("rust-syn" ,rust-syn-0.15))
16897 #:cargo-development-inputs
16898 (("rust-num" ,rust-num-0.2)
16899 ("rust-num-traits" ,rust-num-traits-0.2))))
16900 (home-page "https://github.com/rust-num/num-derive")
16901 (synopsis "Numeric syntax extensions")
16902 (description "Numeric syntax extensions in Rust.")
16903 (license (list license:expat license:asl2.0))))
16904
16905 (define-public rust-num-integer-0.1
16906 (package
16907 (name "rust-num-integer")
16908 (version "0.1.43")
16909 (source
16910 (origin
16911 (method url-fetch)
16912 (uri (crate-uri "num-integer" version))
16913 (file-name
16914 (string-append name "-" version ".tar.gz"))
16915 (sha256
16916 (base32
16917 "0nw79ynfvw8br6yncv27pw65y2vw2z7m3kv9g2hinm1dcrz4ancd"))))
16918 (build-system cargo-build-system)
16919 (arguments
16920 `(#:cargo-inputs
16921 (("rust-num-traits" ,rust-num-traits-0.2)
16922 ("rust-autocfg" ,rust-autocfg-1.0))))
16923 (home-page "https://github.com/rust-num/num-integer")
16924 (synopsis "Integer traits and functions")
16925 (description "Integer traits and functions.")
16926 ;; Dual licensed.
16927 (license (list license:asl2.0
16928 license:expat))))
16929
16930 (define-public rust-num-iter-0.1
16931 (package
16932 (name "rust-num-iter")
16933 (version "0.1.41")
16934 (source
16935 (origin
16936 (method url-fetch)
16937 (uri (crate-uri "num-iter" version))
16938 (file-name (string-append name "-" version ".tar.gz"))
16939 (sha256
16940 (base32
16941 "17sb142lhmpsq17cf9wrffjh8vjk901axxf55565r6cgfiy6nvks"))))
16942 (build-system cargo-build-system)
16943 (arguments
16944 `(#:cargo-inputs
16945 (("rust-num-integer" ,rust-num-integer-0.1)
16946 ("rust-num-traits" ,rust-num-traits-0.2)
16947 ("rust-autocfg" ,rust-autocfg-1.0))))
16948 (home-page "https://github.com/rust-num/num-iter")
16949 (synopsis "External iterators for generic mathematics")
16950 (description
16951 "This crate provides external iterators for generic mathematics.")
16952 (license (list license:asl2.0
16953 license:expat))))
16954
16955 (define-public rust-num-rational-0.3
16956 (package
16957 (name "rust-num-rational")
16958 (version "0.3.0")
16959 (source
16960 (origin
16961 (method url-fetch)
16962 (uri (crate-uri "num-rational" version))
16963 (file-name
16964 (string-append name "-" version ".tar.gz"))
16965 (sha256
16966 (base32
16967 "0f41j1l1kn5jj36a8xdy8kv242wlwq0ka578vm8gnb1n1wvdgd55"))))
16968 (build-system cargo-build-system)
16969 (arguments
16970 `(#:cargo-inputs
16971 (("rust-num-bigint" ,rust-num-bigint-0.3)
16972 ("rust-num-integer" ,rust-num-integer-0.1)
16973 ("rust-num-traits" ,rust-num-traits-0.2)
16974 ("rust-serde" ,rust-serde-1)
16975 ("rust-autocfg" ,rust-autocfg-1.0))))
16976 (home-page "https://github.com/rust-num/num-rational")
16977 (synopsis "Rational numbers implementation for Rust")
16978 (description
16979 "Rational numbers implementation for Rust.")
16980 (license (list license:expat license:asl2.0))))
16981
16982 (define-public rust-num-rational-0.2
16983 (package
16984 (inherit rust-num-rational-0.3)
16985 (name "rust-num-rational")
16986 (version "0.2.3")
16987 (source
16988 (origin
16989 (method url-fetch)
16990 (uri (crate-uri "num-rational" version))
16991 (file-name
16992 (string-append name "-" version ".tar.gz"))
16993 (sha256
16994 (base32
16995 "18q3vq3xldhaj0z3f92am8f59m1awywgdj28c7wvx0bcksgwfkfs"))))
16996 (arguments
16997 `(#:cargo-inputs
16998 (("rust-num-bigint" ,rust-num-bigint-0.2)
16999 ("rust-num-integer" ,rust-num-integer-0.1)
17000 ("rust-num-traits" ,rust-num-traits-0.2)
17001 ("rust-serde" ,rust-serde-1)
17002 ("rust-autocfg" ,rust-autocfg-1.0))))))
17003
17004 (define-public rust-num-rational-0.1
17005 (package
17006 (inherit rust-num-rational-0.2)
17007 (name "rust-num-rational")
17008 (version "0.1.42")
17009 (source
17010 (origin
17011 (method url-fetch)
17012 (uri (crate-uri "num-rational" version))
17013 (file-name
17014 (string-append name "-" version ".tar.gz"))
17015 (sha256
17016 (base32
17017 "0kkqb8j3b3nis9hs4ww4hkrmb4a6v9sr9al08xmwhgvmpms4qcgf"))))
17018 (arguments
17019 `(#:cargo-inputs
17020 (("rust-num-bigint" ,rust-num-bigint-0.1)
17021 ("rust-num-integer" ,rust-num-integer-0.1)
17022 ("rust-num-traits" ,rust-num-traits-0.2)
17023 ("rust-rustc-serialize" ,rust-rustc-serialize-0.3)
17024 ("rust-serde" ,rust-serde-0.8))))))
17025
17026 (define-public rust-num-traits-0.2
17027 (package
17028 (name "rust-num-traits")
17029 (version "0.2.12")
17030 (source
17031 (origin
17032 (method url-fetch)
17033 (uri (crate-uri "num-traits" version))
17034 (file-name
17035 (string-append name "-" version ".crate"))
17036 (sha256
17037 (base32
17038 "04fnzwlnn6fcy09jjbi9l7bj5dvg657x5c2sjgwfb3pl0z67n9mc"))))
17039 (build-system cargo-build-system)
17040 (arguments
17041 `(#:cargo-inputs
17042 (("rust-autocfg" ,rust-autocfg-1.0)
17043 ("rust-libm" ,rust-libm-0.2))))
17044 (home-page "https://github.com/rust-num/num-traits")
17045 (synopsis "Numeric traits for generic mathematics")
17046 (description "Numeric traits for generic mathematics.")
17047 (license (list license:asl2.0
17048 license:expat))))
17049
17050 (define-public rust-num-traits-0.1
17051 (package
17052 (inherit rust-num-traits-0.2)
17053 (name "rust-num-traits")
17054 (version "0.1.43")
17055 (source
17056 (origin
17057 (method url-fetch)
17058 (uri (crate-uri "num-traits" version))
17059 (file-name (string-append name "-" version ".crate"))
17060 (sha256
17061 (base32
17062 "0c9whknf2dm74a3cqirafy6gj83a76gl56g4v3g19k6lkwz13rcj"))))
17063 (arguments
17064 `(#:cargo-inputs
17065 (("rust-num-traits" , rust-num-traits-0.2))))))
17066
17067 (define-public rust-number-prefix-0.3
17068 (package
17069 (name "rust-number-prefix")
17070 (version "0.3.0")
17071 (source
17072 (origin
17073 (method url-fetch)
17074 (uri (crate-uri "number_prefix" version))
17075 (file-name
17076 (string-append name "-" version ".tar.gz"))
17077 (sha256
17078 (base32
17079 "0slm4mqmpgs6hvz22ycny9lvyvl9ivs80a1lncslp7lszz02zc0p"))))
17080 (build-system cargo-build-system)
17081 (home-page "https://github.com/ogham/rust-number-prefix")
17082 (synopsis "Format numeric prefixes: kilo, giga, kibi")
17083 (description
17084 "This package provides a library for formatting numeric prefixes: kilo,
17085 giga, kibi.")
17086 (license license:expat)))
17087
17088 (define-public rust-numtoa-0.1
17089 (package
17090 (name "rust-numtoa")
17091 (version "0.1.0")
17092 (source
17093 (origin
17094 (method url-fetch)
17095 (uri (crate-uri "numtoa" version))
17096 (file-name (string-append name "-" version ".crate"))
17097 (sha256
17098 (base32
17099 "1vs9rhggqbql1p26x8nkha1j06wawwgb2jp5fs88b5gi7prvvy5q"))))
17100 (build-system cargo-build-system)
17101 (arguments '(#:tests? #f))
17102 (home-page "https://gitlab.com/mmstick/numtoa")
17103 (synopsis "Convert numbers into stack-allocated byte arrays")
17104 (description
17105 "This package can convert numbers into stack-allocated byte arrays.")
17106 (license (list license:expat license:asl2.0))))
17107
17108 (define-public rust-obj-0.9
17109 (package
17110 (name "rust-obj")
17111 (version "0.9.1")
17112 (source
17113 (origin
17114 (method url-fetch)
17115 (uri (crate-uri "obj" version))
17116 (file-name
17117 (string-append name "-" version ".tar.gz"))
17118 (sha256
17119 (base32
17120 "10z1r2r0xyhr4j1n07135kz4bc0zhqy98vabs99vz0x171bi8gy0"))))
17121 (build-system cargo-build-system)
17122 (arguments
17123 `(#:cargo-inputs (("rust-genmesh" ,rust-genmesh-0.6))))
17124 (home-page "https://github.com/kvark/obj")
17125 (synopsis "Package for loading Wavefront .obj files")
17126 (description
17127 "This package provides a package for loading Wavefront @code{.obj} files.")
17128 (license license:asl2.0)))
17129
17130 (define-public rust-objc-0.2
17131 (package
17132 (name "rust-objc")
17133 (version "0.2.7")
17134 (source
17135 (origin
17136 (method url-fetch)
17137 (uri (crate-uri "objc" version))
17138 (file-name
17139 (string-append name "-" version ".tar.gz"))
17140 (sha256
17141 (base32
17142 "1cbpf6kz8a244nn1qzl3xyhmp05gsg4n313c9m3567625d3innwi"))))
17143 (build-system cargo-build-system)
17144 (arguments
17145 `(#:tests? #f ; Tests require gcc-objc.
17146 #:cargo-inputs
17147 (("rust-malloc-buf" ,rust-malloc-buf-0.0)
17148 ("rust-objc-exception" ,rust-objc-exception-0.1))))
17149 (home-page "https://github.com/SSheldon/rust-objc")
17150 (synopsis "Objective-C Runtime bindings and wrapper for Rust")
17151 (description "This package provides an Objective-C Runtime bindings and
17152 wrapper for Rust.")
17153 (license license:expat)))
17154
17155 (define-public rust-objc-exception-0.1
17156 (package
17157 (name "rust-objc-exception")
17158 (version "0.1.2")
17159 (source
17160 (origin
17161 (method url-fetch)
17162 (uri (crate-uri "objc-exception" version))
17163 (file-name
17164 (string-append name "-" version ".tar.gz"))
17165 (sha256
17166 (base32
17167 "191cmdmlypp6piw67y4m8y5swlxf5w0ss8n1lk5xd2l1ans0z5xd"))))
17168 (build-system cargo-build-system)
17169 (arguments
17170 `(#:skip-build? #t
17171 #:cargo-inputs
17172 (("rust-cc" ,rust-cc-1))))
17173 (home-page "https://github.com/SSheldon/rust-objc-exception")
17174 (synopsis "Rust interface for Objective-C's throw and try/catch statements")
17175 (description
17176 "This package provides a Rust interface for Objective-C's throw and
17177 try/catch statements.")
17178 (license license:expat)))
17179
17180 (define-public rust-objc-foundation-0.1
17181 (package
17182 (name "rust-objc-foundation")
17183 (version "0.1.1")
17184 (source
17185 (origin
17186 (method url-fetch)
17187 (uri (crate-uri "objc-foundation" version))
17188 (file-name
17189 (string-append name "-" version ".tar.gz"))
17190 (sha256
17191 (base32
17192 "1y9bwb3m5fdq7w7i4bnds067dhm4qxv4m1mbg9y61j9nkrjipp8s"))))
17193 (build-system cargo-build-system)
17194 (arguments
17195 `(#:skip-build? #t ; Only available on macOS.
17196 #:cargo-inputs
17197 (("rust-block" ,rust-block-0.1)
17198 ("rust-objc" ,rust-objc-0.2)
17199 ("rust-objc-id" ,rust-objc-id-0.1))))
17200 (home-page "https://github.com/SSheldon/rust-objc-foundation")
17201 (synopsis "Rust wrapper for Objective-C's Foundation framework")
17202 (description "This package provides a rust wrapper for Objective-C's
17203 Foundation framework.")
17204 (license license:expat)))
17205
17206 (define-public rust-objc-id-0.1
17207 (package
17208 (name "rust-objc-id")
17209 (version "0.1.1")
17210 (source
17211 (origin
17212 (method url-fetch)
17213 (uri (crate-uri "objc_id" version))
17214 (file-name
17215 (string-append name "-" version ".tar.gz"))
17216 (sha256
17217 (base32
17218 "0fq71hnp2sdblaighjc82yrac3adfmqzhpr11irhvdfp9gdlsbf9"))))
17219 (build-system cargo-build-system)
17220 (arguments
17221 `(#:tests? #f ; Tests require gcc-objc.
17222 #:cargo-inputs (("rust-objc" ,rust-objc-0.2))))
17223 (home-page "https://github.com/SSheldon/rust-objc-id")
17224 (synopsis "Rust smart pointers for Objective-C reference counting")
17225 (description
17226 "This package provides Rust smart pointers for Objective-C reference counting.")
17227 (license license:expat)))
17228
17229 (define-public rust-objc-test-utils-0.0
17230 (package
17231 (name "rust-objc-test-utils")
17232 (version "0.0.2")
17233 (source
17234 (origin
17235 (method url-fetch)
17236 (uri (crate-uri "objc_test_utils" version))
17237 (file-name
17238 (string-append name "-" version ".tar.gz"))
17239 (sha256
17240 (base32
17241 "09rckmp5h9bbns08xzicdlk7y5lxj2ygbg3yqk1cszfnzd5n8kzx"))))
17242 (build-system cargo-build-system)
17243 (arguments
17244 `(#:skip-build? #t
17245 #:cargo-inputs
17246 (("rust-gcc" ,rust-gcc-0.3))))
17247 (home-page "https://github.com/SSheldon/rust-objc")
17248 (synopsis "Utilities for testing Objective-C interop")
17249 (description
17250 "This package provides utilities for testing Objective-C interop.")
17251 (license license:expat)))
17252
17253 (define-public rust-object-0.17
17254 (package
17255 (name "rust-object")
17256 (version "0.17.0")
17257 (source
17258 (origin
17259 (method url-fetch)
17260 (uri (crate-uri "object" version))
17261 (file-name
17262 (string-append name "-" version ".tar.gz"))
17263 (sha256
17264 (base32
17265 "1bmgbg4k0725lchfy9j1wnpfmywh5qhs0k4k6j2g7c0acvys8i7a"))))
17266 (build-system cargo-build-system)
17267 (arguments
17268 `(#:skip-build? #t
17269 #:cargo-inputs
17270 (("rust-goblin" ,rust-goblin-0.1)
17271 ("rust-target-lexicon" ,rust-target-lexicon-0.10)
17272 ("rust-scroll" ,rust-scroll-0.10)
17273 ("rust-parity-wasm" ,rust-parity-wasm-0.41)
17274 ("rust-uuid" ,rust-uuid-0.8)
17275 ("rust-flate2" ,rust-flate2-1)
17276 ("rust-crc32fast" ,rust-crc32fast-1)
17277 ("rust-indexmap" ,rust-indexmap-1))))
17278 (home-page "https://github.com/gimli-rs/object")
17279 (synopsis "Unified interface for reading and writing object file formats")
17280 (description "This package provides a unified interface for reading and
17281 writing object file formats.")
17282 (license (list license:asl2.0 license:expat))))
17283
17284 (define-public rust-object-0.12
17285 (package
17286 (name "rust-object")
17287 (version "0.12.0")
17288 (source
17289 (origin
17290 (method url-fetch)
17291 (uri (crate-uri "object" version))
17292 (file-name
17293 (string-append name "-" version ".tar.gz"))
17294 (sha256
17295 (base32
17296 "1dch1ajjp05d16lig1dnvisfis0hrlrvw9lcwy1hwgdcym3z6jnz"))))
17297 (build-system cargo-build-system)
17298 (arguments
17299 `(#:skip-build? #t
17300 #:cargo-inputs
17301 (("rust-flate2" ,rust-flate2-1)
17302 ("rust-goblin" ,rust-goblin-0.0)
17303 ("rust-parity-wasm" ,rust-parity-wasm-0.40)
17304 ("rust-scroll" ,rust-scroll-0.9)
17305 ("rust-uuid" ,rust-uuid-0.7))
17306 #:cargo-development-inputs
17307 (("rust-memmap" ,rust-memmap-0.7))))
17308 (home-page "https://github.com/gimli-rs/object")
17309 (synopsis "Parse object file formats")
17310 (description
17311 "This package provides a unified interface for parsing object file
17312 formats.")
17313 (license (list license:expat license:asl2.0))))
17314
17315 (define-public rust-odds-0.3
17316 (package
17317 (name "rust-odds")
17318 (version "0.3.1")
17319 (source
17320 (origin
17321 (method url-fetch)
17322 (uri (crate-uri "odds" version))
17323 (file-name
17324 (string-append name "-" version ".tar.gz"))
17325 (sha256
17326 (base32
17327 "0rdnxa0na4897yb0svb3figz35g4imxjv61yfm2j21gbh5q8v8d9"))))
17328 (build-system cargo-build-system)
17329 (arguments
17330 `(#:cargo-inputs
17331 (("rust-rawpointer" ,rust-rawpointer-0.1)
17332 ("rust-rawslice" ,rust-rawslice-0.1)
17333 ("rust-unchecked-index" ,rust-unchecked-index-0.2))
17334 #:cargo-development-inputs
17335 (("rust-itertools" ,rust-itertools-0.7)
17336 ("rust-lazy-static" ,rust-lazy-static-0.2)
17337 ("rust-memchr" ,rust-memchr-2)
17338 ("rust-quickcheck" ,rust-quickcheck-0.4))))
17339 (home-page "https://github.com/bluss/odds")
17340 (synopsis "Extra functionality for slices, strings and other things")
17341 (description
17342 "Odds and ends collection miscellania. Extra functionality for
17343 slices (@code{.find()}, @code{RevSlice}), strings and other things.
17344 Things in odds may move to more appropriate crates if we find them.")
17345 (license (list license:asl2.0 license:expat))))
17346
17347 (define-public rust-odds-0.2
17348 (package
17349 (inherit rust-odds-0.3)
17350 (name "rust-odds")
17351 (version "0.2.26")
17352 (source
17353 (origin
17354 (method url-fetch)
17355 (uri (crate-uri "odds" version))
17356 (file-name
17357 (string-append name "-" version ".tar.gz"))
17358 (sha256
17359 (base32
17360 "08pvngx0nf7yl9cgk4bahn1a0s8na5g9knbhq7y29kysp58h3bjf"))))
17361 (arguments
17362 `(#:tests? #f ; doc tests fail
17363 #:cargo-inputs
17364 (("rust-rawpointer" ,rust-rawpointer-0.1)
17365 ("rust-rawslice" ,rust-rawslice-0.1)
17366 ("rust-unchecked-index" ,rust-unchecked-index-0.2))
17367 #:cargo-development-inputs
17368 (("rust-itertools" ,rust-itertools-0.5)
17369 ("rust-lazy-static" ,rust-lazy-static-0.2)
17370 ("rust-memchr" ,rust-memchr-2)
17371 ("rust-quickcheck" ,rust-quickcheck-0.4))))))
17372
17373 (define-public rust-onig-5.0
17374 (package
17375 (name "rust-onig")
17376 (version "5.0.0")
17377 (source
17378 (origin
17379 (method url-fetch)
17380 (uri (crate-uri "onig" version))
17381 (file-name
17382 (string-append name "-" version ".tar.gz"))
17383 (sha256
17384 (base32
17385 "0ivr0wq1zlyjhhkxpsnmpncg92sjx3rha8pnp3m1mzvgk7y27rz4"))))
17386 (build-system cargo-build-system)
17387 (arguments
17388 `(#:skip-build? #t
17389 #:cargo-inputs
17390 (("rust-libc" ,rust-libc-0.2)
17391 ("rust-bitflags" ,rust-bitflags-1)
17392 ("rust-lazy-static" ,rust-lazy-static-1)
17393 ("rust-onig-sys" ,rust-onig-sys-69.2))))
17394 (home-page "https://github.com/rust-onig/rust-onig")
17395 (synopsis
17396 "Rust bindings for the Oniguruma regular expression library")
17397 (description
17398 "Rust-Onig is a set of Rust bindings for the Oniguruma regular expression
17399 library. Oniguruma is a modern regex library with support for multiple
17400 character encodings and regex syntaxes.")
17401 (license license:expat)))
17402
17403 (define-public rust-onig-sys-69.2
17404 (package
17405 (name "rust-onig-sys")
17406 (version "69.2.0")
17407 (source
17408 (origin
17409 (method url-fetch)
17410 (uri (crate-uri "onig_sys" version))
17411 (file-name
17412 (string-append name "-" version ".tar.gz"))
17413 (sha256
17414 (base32
17415 "0kjijq29yx05xxg9snvqnfn53dl52hchb4sk3zhfr77mypxlx38a"))))
17416 (build-system cargo-build-system)
17417 (arguments
17418 `(#:skip-build? #t
17419 #:cargo-inputs
17420 (("rust-pkg-config" ,rust-pkg-config-0.3)
17421 ("rust-bindgen" ,rust-bindgen-0.50)
17422 ("rust-cc" ,rust-cc-1))))
17423 (home-page "https://github.com/rust-onig/rust-onig")
17424 (synopsis
17425 "Rust bindings to the oniguruma library.")
17426 (description
17427 "The @code{onig_sys} crate contains raw rust bindings to the oniguruma
17428 library. This crate exposes a set of unsafe functions which can then be used by
17429 other crates to create safe wrappers around Oniguruma.
17430 You probably don't want to link to this crate directly; instead check out the
17431 @code{onig} crate.")
17432 (license license:expat)))
17433
17434 (define-public rust-once-cell-1
17435 (package
17436 (name "rust-once-cell")
17437 (version "1.4.1")
17438 (source
17439 (origin
17440 (method url-fetch)
17441 (uri (crate-uri "once-cell" version))
17442 (file-name
17443 (string-append name "-" version ".tar.gz"))
17444 (sha256
17445 (base32
17446 "1ba56vr8n85xgajnn78pg6iag4inwil3mqg90wi5jaz6xzkm23i6"))))
17447 (build-system cargo-build-system)
17448 (arguments
17449 `(#:cargo-inputs
17450 (("rust-parking-lot" ,rust-parking-lot-0.11))
17451 #:cargo-development-inputs
17452 (("rust-crossbeam-utils" ,rust-crossbeam-utils-0.7)
17453 ("rust-lazy-static" ,rust-lazy-static-1)
17454 ("rust-regex" ,rust-regex-1))))
17455 (home-page "https://github.com/matklad/once_cell")
17456 (synopsis "Single assignment cells and lazy values")
17457 (description
17458 "Single assignment cells and lazy values.")
17459 (license (list license:expat license:asl2.0))))
17460
17461 (define-public rust-once-cell-0.1
17462 (package
17463 (inherit rust-once-cell-1)
17464 (name "rust-once-cell")
17465 (version "0.1.8")
17466 (source
17467 (origin
17468 (method url-fetch)
17469 (uri (crate-uri "once-cell" version))
17470 (file-name
17471 (string-append name "-" version ".tar.gz"))
17472 (sha256
17473 (base32
17474 "0drcjs7si0hygc0v64y55hkxv9fpvlvrb3wl5374b2hnc6i2jb2k"))))
17475 (arguments
17476 `(#:cargo-inputs
17477 (("rust-parking-lot" ,rust-parking-lot-0.7))
17478 #:cargo-development-inputs
17479 (("rust-crossbeam-utils" ,rust-crossbeam-utils-0.6))))))
17480
17481 (define-public rust-oorandom-11.1
17482 (package
17483 (name "rust-oorandom")
17484 (version "11.1.0")
17485 (source
17486 (origin
17487 (method url-fetch)
17488 (uri (crate-uri "oorandom" version))
17489 (file-name
17490 (string-append name "-" version ".tar.gz"))
17491 (sha256
17492 (base32
17493 "01clxfnz1zwg4maynvbgj09wlkj5m3c8kjqfrp3sqp59qb4wgkpb"))))
17494 (build-system cargo-build-system)
17495 (arguments `(#:skip-build? #t))
17496 (home-page "https://hg.sr.ht/~icefox/oorandom")
17497 (synopsis "A tiny, robust PRNG implementation.")
17498 (description
17499 "This package provides a tiny, robust PRNG implementation.")
17500 (license license:expat)))
17501
17502 (define-public rust-opaque-debug-0.3
17503 (package
17504 (name "rust-opaque-debug")
17505 (version "0.3.0")
17506 (source
17507 (origin
17508 (method url-fetch)
17509 (uri (crate-uri "opaque-debug" version))
17510 (file-name
17511 (string-append name "-" version ".tar.gz"))
17512 (sha256
17513 (base32
17514 "1m8kzi4nd6shdqimn0mgb24f0hxslhnqd1whakyq06wcqd086jk2"))))
17515 (build-system cargo-build-system)
17516 (home-page "https://github.com/RustCrypto/utils")
17517 (synopsis "Macro for opaque debug trait implementation")
17518 (description
17519 "This package provides a macro for opaque debug trait implementation.")
17520 (license (list license:expat license:asl2.0))))
17521
17522 (define-public rust-opaque-debug-0.2
17523 (package
17524 (inherit rust-opaque-debug-0.3)
17525 (name "rust-opaque-debug")
17526 (version "0.2.2")
17527 (source
17528 (origin
17529 (method url-fetch)
17530 (uri (crate-uri "opaque-debug" version))
17531 (file-name
17532 (string-append name "-" version ".tar.gz"))
17533 (sha256
17534 (base32
17535 "02942l2gc7w5r4js7i9063x99szic5mzzk1055j83v4diqpbpxck"))))))
17536
17537 (define-public rust-openssl-0.10
17538 (package
17539 (name "rust-openssl")
17540 (version "0.10.26")
17541 (source
17542 (origin
17543 (method url-fetch)
17544 (uri (crate-uri "openssl" version))
17545 (file-name
17546 (string-append name "-" version ".tar.gz"))
17547 (sha256
17548 (base32
17549 "11d505lwlrh5a0jc2l6q36gvsaqic3vizq5q860hiqcqkmwwag1s"))))
17550 (build-system cargo-build-system)
17551 (arguments
17552 `(#:skip-build? #t
17553 #:cargo-inputs
17554 (("rust-bitflags" ,rust-bitflags-1)
17555 ("rust-cfg-if" ,rust-cfg-if-0.1)
17556 ("rust-foreign-types" ,rust-foreign-types-0.3)
17557 ("rust-lazy-static" ,rust-lazy-static-1)
17558 ("rust-libc" ,rust-libc-0.2)
17559 ("rust-openssl-sys" ,rust-openssl-sys-0.9))
17560 #:cargo-development-inputs
17561 (("rust-hex" ,rust-hex-0.3)
17562 ("rust-tempdir" ,rust-tempdir-0.3))))
17563 (home-page "https://github.com/sfackler/rust-openssl")
17564 (synopsis "OpenSSL bindings")
17565 (description "OpenSSL bindings.")
17566 (license license:asl2.0)))
17567
17568 (define-public rust-openssl-0.7
17569 (package
17570 (inherit rust-openssl-0.10)
17571 (name "rust-openssl")
17572 (version "0.7.14")
17573 (source
17574 (origin
17575 (method url-fetch)
17576 (uri (crate-uri "openssl" version))
17577 (file-name
17578 (string-append name "-" version ".tar.gz"))
17579 (sha256
17580 (base32
17581 "0cw767rbasg4dbsfcsnxqm3q5ljkv6s1jq0a2p82xi5a8ii7n4f4"))))
17582 (arguments
17583 `(#:tests? #f ; Test directory not included in release
17584 #:cargo-inputs
17585 (("rust-bitflags" ,rust-bitflags-0.7)
17586 ("rust-gcc" ,rust-gcc-0.3)
17587 ("rust-lazy-static" ,rust-lazy-static-0.2)
17588 ("rust-libc" ,rust-libc-0.2)
17589 ("rust-openssl-sys" ,rust-openssl-sys-0.7)
17590 ("rust-openssl-sys-extras" ,rust-openssl-sys-extras-0.7))
17591 #:cargo-development-inputs
17592 (("rust-net2" ,rust-net2-0.2)
17593 ("rust-rustc-serialize" ,rust-rustc-serialize-0.3)
17594 ("rust-winapi" ,rust-winapi-0.2)
17595 ("rust-ws2-32-sys" ,rust-ws2-32-sys-0.2))
17596 #:phases
17597 (modify-phases %standard-phases
17598 (add-after 'unpack 'fix-cargo-toml
17599 (lambda _
17600 (substitute* "Cargo.toml"
17601 ((", path =.*}") "}"))
17602 #t)))))
17603 (inputs
17604 `(("openssl" ,openssl-1.0))))) ; for openssl-sys-extras
17605
17606 (define-public rust-openssl-probe-0.1
17607 (package
17608 (name "rust-openssl-probe")
17609 (version "0.1.2")
17610 (source
17611 (origin
17612 (method url-fetch)
17613 (uri (crate-uri "openssl-probe" version))
17614 (file-name (string-append name "-" version ".crate"))
17615 (sha256
17616 (base32
17617 "1pijrdifgsdwd45b08c2g0dsmnhz7c3kmagb70839ngrd7d29bvp"))))
17618 (build-system cargo-build-system)
17619 (home-page "https://github.com/alexcrichton/openssl-probe")
17620 (synopsis "Find SSL certificate locations")
17621 (description
17622 "This package provides a tool to find SSL certificate locations on the
17623 system for OpenSSL.")
17624 (license (list license:asl2.0
17625 license:expat))))
17626
17627 (define-public rust-openssl-sys-0.9
17628 (package
17629 (name "rust-openssl-sys")
17630 (version "0.9.58")
17631 (source
17632 (origin
17633 (method url-fetch)
17634 (uri (crate-uri "openssl-sys" version))
17635 (file-name (string-append name "-" version ".tar.gz"))
17636 (sha256
17637 (base32 "1pkq3x8w16kqvkg75g4w7nny56w9clssww0ibpzg015n153xnhm8"))
17638 (patches (search-patches "rust-openssl-sys-no-vendor.patch"))))
17639 (build-system cargo-build-system)
17640 (arguments
17641 `(#:cargo-inputs
17642 (("rust-libc" ,rust-libc-0.2)
17643 ;; Build dependencies:
17644 ("rust-autocfg" ,rust-autocfg-1.0)
17645 ("rust-cc" ,rust-cc-1)
17646 ("rust-pkg-config" ,rust-pkg-config-0.3)
17647 ("rust-vcpkg" ,rust-vcpkg-0.2))))
17648 (native-inputs
17649 `(("pkg-config" ,pkg-config)))
17650 (inputs
17651 `(("openssl" ,openssl)))
17652 (home-page "https://github.com/sfackler/rust-openssl")
17653 (synopsis "FFI bindings to OpenSSL")
17654 (description
17655 "This package provides FFI bindings to OpenSSL for use in rust crates.")
17656 (license license:expat)))
17657
17658 (define-public rust-openssl-sys-0.7
17659 (package
17660 (inherit rust-openssl-sys-0.9)
17661 (name "rust-openssl-sys")
17662 (version "0.7.17")
17663 (source
17664 (origin
17665 (method url-fetch)
17666 (uri (crate-uri "openssl-sys" version))
17667 (file-name
17668 (string-append name "-" version ".tar.gz"))
17669 (sha256
17670 (base32
17671 "0gswbbfkhhj8f9jifwvdssv3p2lpgyz69qzqvafylbim9klpxi49"))
17672 (modules '((guix build utils)))
17673 (snippet
17674 '(begin
17675 ;; rust-libressl-pnacl-sys vendors libressl.
17676 (substitute* "Cargo.toml"
17677 ((".*nacl.*") ""))
17678 #t))))
17679 (build-system cargo-build-system)
17680 (arguments
17681 `(#:cargo-inputs
17682 (("rust-gdi32-sys" ,rust-gdi32-sys-0.2)
17683 ("rust-libc" ,rust-libc-0.2)
17684 ("rust-user32-sys" ,rust-user32-sys-0.2)
17685 ("rust-pkg-config" ,rust-pkg-config-0.3))))))
17686
17687 (define-public rust-openssl-sys-extras-0.7
17688 (package
17689 (name "rust-openssl-sys-extras")
17690 (version "0.7.14")
17691 (source
17692 (origin
17693 (method url-fetch)
17694 (uri (crate-uri "openssl-sys-extras" version))
17695 (file-name
17696 (string-append name "-" version ".tar.gz"))
17697 (sha256
17698 (base32
17699 "1ymrmfnknyjji74fflbnnq9r5ihx25h0vgs5y203vl6klzdy3i8i"))))
17700 (build-system cargo-build-system)
17701 (arguments
17702 `(#:cargo-inputs
17703 (("rust-libc" ,rust-libc-0.2)
17704 ("rust-openssl-sys" ,rust-openssl-sys-0.7)
17705 ("rust-gcc" ,rust-gcc-0.3))
17706 #:phases
17707 (modify-phases %standard-phases
17708 (add-after 'unpack 'fix-cargo-toml
17709 (lambda _
17710 (substitute* "Cargo.toml"
17711 ((", path =.*}") "}"))
17712 #t)))))
17713 (inputs
17714 `(("openssl" ,openssl-1.0))) ; openssl-1.0 specifically
17715 (home-page "https://github.com/sfackler/rust-openssl")
17716 (synopsis
17717 "Extra FFI bindings to OpenSSL that require a C shim")
17718 (description
17719 "Extra FFI bindings to OpenSSL that require a C shim.")
17720 (license license:expat)))
17721
17722 (define-public rust-ord-subset-3
17723 (package
17724 (name "rust-ord-subset")
17725 (version "3.1.1")
17726 (source
17727 (origin
17728 (method url-fetch)
17729 (uri (crate-uri "ord-subset" version))
17730 (file-name
17731 (string-append name "-" version ".tar.gz"))
17732 (sha256
17733 (base32
17734 "1vvb6zmz279nb59dki7kbsvixbk8zpg2gxvgcpsjfnxg9ik19knp"))))
17735 (build-system cargo-build-system)
17736 (home-page "https://github.com/emerentius/ord_subset")
17737 (synopsis "Tools for working with the Ord subset of certain PartialOrd types")
17738 (description
17739 "This package provides tools for working with the Ord subset of certain
17740 PartialOrd types, like floats.")
17741 (license (list license:expat license:asl2.0))))
17742
17743 (define-public rust-ordered-float-1.0
17744 (package
17745 (name "rust-ordered-float")
17746 (version "1.0.2")
17747 (source
17748 (origin
17749 (method url-fetch)
17750 (uri (crate-uri "ordered-float" version))
17751 (file-name
17752 (string-append name "-" version ".tar.gz"))
17753 (sha256
17754 (base32
17755 "0625x96987kspdxbikry5mb7hsf5pdc5bbanxd8wjwqlx0ar71hq"))))
17756 (build-system cargo-build-system)
17757 (arguments
17758 `(#:cargo-inputs
17759 (("rust-num-traits" ,rust-num-traits-0.2)
17760 ("rust-serde" ,rust-serde-1))
17761 #:cargo-development-inputs
17762 (("rust-serde-test" ,rust-serde-test-1))))
17763 (home-page "https://github.com/reem/rust-ordered-float")
17764 (synopsis "Wrappers for total ordering on floats")
17765 (description
17766 "This package provides wrappers for total ordering on floats in Rust.")
17767 (license license:expat)))
17768
17769 (define-public rust-ordermap-0.3
17770 (package
17771 (name "rust-ordermap")
17772 (version "0.3.5")
17773 (source
17774 (origin
17775 (method url-fetch)
17776 (uri (crate-uri "ordermap" version))
17777 (file-name
17778 (string-append name "-" version ".tar.gz"))
17779 (sha256
17780 (base32
17781 "0qr0a50l0qakbjcck93qdayd0xl8gzpp42x0n7b75cs4ybsx6vm8"))))
17782 (build-system cargo-build-system)
17783 (arguments
17784 `(#:skip-build? #t
17785 #:cargo-inputs
17786 (("rust-serde" ,rust-serde-1))
17787 #:cargo-development-inputs
17788 (("rust-fnv" ,rust-fnv-1)
17789 ("rust-itertools" ,rust-itertools-0.8)
17790 ("rust-lazy-static" ,rust-lazy-static-1)
17791 ("rust-quickcheck" ,rust-quickcheck-0.8)
17792 ("rust-rand" ,rust-rand-0.4)
17793 ("rust-serde-test" ,rust-serde-test-1))))
17794 (home-page "https://github.com/bluss/indexmap")
17795 (synopsis "Hash table with consistent order and fast iteration")
17796 (description
17797 "This package provides a hash table with consistent order and fast
17798 iteration. NOTE: This crate was renamed to @code{indexmap}. Please use it
17799 under its new name.")
17800 (license (list license:asl2.0 license:expat))))
17801
17802 (define-public rust-os-pipe-0.8
17803 (package
17804 (name "rust-os-pipe")
17805 (version "0.8.2")
17806 (source
17807 (origin
17808 (method url-fetch)
17809 (uri (crate-uri "os-pipe" version))
17810 (file-name
17811 (string-append name "-" version ".tar.gz"))
17812 (sha256
17813 (base32
17814 "049ax8shxik7mm68r2nf7xnrcq3z3p7hz54sbrcxwywxqsjdzs41"))))
17815 (build-system cargo-build-system)
17816 (arguments
17817 `(#:skip-build? #t
17818 #:cargo-inputs
17819 (("rust-nix" ,rust-nix-0.15)
17820 ("rust-winapi" ,rust-winapi-0.3))))
17821 (home-page
17822 "https://github.com/oconnor663/os_pipe.rs")
17823 (synopsis
17824 "Cross-platform library for opening OS pipes")
17825 (description
17826 "A cross-platform library for opening OS pipes.")
17827 (license license:expat)))
17828
17829 (define-public rust-output-vt100-0.1
17830 (package
17831 (name "rust-output-vt100")
17832 (version "0.1.2")
17833 (source
17834 (origin
17835 (method url-fetch)
17836 (uri (crate-uri "output_vt100" version))
17837 (file-name
17838 (string-append name "-" version ".tar.gz"))
17839 (sha256
17840 (base32
17841 "1ygqplpxz4gg3i8f3rkan2q69pqll7gv65l2mmd8r9dphnvwbkak"))))
17842 (build-system cargo-build-system)
17843 (arguments
17844 `(#:skip-build? #t
17845 #:cargo-inputs
17846 (("rust-winapi" ,rust-winapi-0.3))))
17847 (home-page "https://github.com/Phundrak/output-vt100-rs")
17848 (synopsis
17849 "Utility to activate escape codes in Windows' CMD and PowerShell")
17850 (description
17851 "Utility to activate escape codes in Windows' CMD and PowerShell.")
17852 (license license:expat)))
17853
17854 (define-public rust-owning-ref-0.4
17855 (package
17856 (name "rust-owning-ref")
17857 (version "0.4.1")
17858 (source
17859 (origin
17860 (method url-fetch)
17861 (uri (crate-uri "owning_ref" version))
17862 (file-name (string-append name "-" version ".crate"))
17863 (sha256
17864 (base32
17865 "1kjj9m28wjv452jw49p1mp3d8ql058x78v4bz00avr7rvsnmpxbg"))))
17866 (build-system cargo-build-system)
17867 (arguments
17868 `(#:cargo-inputs
17869 (("rust-stable-deref-trait" ,rust-stable-deref-trait-1))))
17870 (home-page "https://github.com/Kimundi/owning-ref-rs")
17871 (synopsis "Create references that carry their owner with them")
17872 (description
17873 "This package provides a library for creating references that carry their
17874 owner with them. This can sometimes be useful because Rust borrowing rules
17875 normally prevent moving a type that has been borrowed from.")
17876 (license license:expat)))
17877
17878 (define-public rust-packed-simd-0.3
17879 (package
17880 (name "rust-packed-simd")
17881 (version "0.3.3")
17882 (source
17883 (origin
17884 (method url-fetch)
17885 (uri (crate-uri "packed_simd" version))
17886 (file-name
17887 (string-append name "-" version ".tar.gz"))
17888 (sha256
17889 (base32
17890 "0822wqf6kzw4ig9ykndg348w2bxkhs3x64brzsvdxh2a1pyajpm8"))))
17891 (build-system cargo-build-system)
17892 (arguments
17893 `(#:skip-build? #t
17894 #:cargo-inputs
17895 (("rust-cfg-if" ,rust-cfg-if-0.1)
17896 ("rust-core-arch" ,rust-core-arch-0.1)
17897 ("rust-sleef-sys" ,rust-sleef-sys-0.1))
17898 #:cargo-development-inputs
17899 (("rust-arrayvec" ,rust-arrayvec-0.4)
17900 ("rust-paste" ,rust-paste-0.1)
17901 ("rust-wasm-bindgen" ,rust-wasm-bindgen-0.2)
17902 ("rust-wasm-bindgen-test" ,rust-wasm-bindgen-test-0.2))))
17903 (home-page "https://github.com/rust-lang/packed_simd")
17904 (synopsis "Portable Packed SIMD vectors")
17905 (description "Portable Packed SIMD vectors.")
17906 (license (list license:asl2.0 license:expat))))
17907
17908 (define-public rust-pad-0.1
17909 (package
17910 (name "rust-pad")
17911 (version "0.1.6")
17912 (source
17913 (origin
17914 (method url-fetch)
17915 (uri (crate-uri "pad" version))
17916 (file-name
17917 (string-append name "-" version ".tar.gz"))
17918 (sha256
17919 (base32
17920 "1qy0r26r52gp034fv252mmg0s599a55h9nr4xswy04hvky49pbfj"))))
17921 (build-system cargo-build-system)
17922 (arguments
17923 `(#:cargo-inputs
17924 (("rust-unicode-width" ,rust-unicode-width-0.1))))
17925 (home-page "https://github.com/ogham/rust-pad")
17926 (synopsis "Library for padding strings at runtime")
17927 (description
17928 "This package provides a library for padding strings at runtime.")
17929 (license license:expat)))
17930
17931 (define-public rust-palette-0.5
17932 (package
17933 (name "rust-palette")
17934 (version "0.5.0")
17935 (source
17936 (origin
17937 (method url-fetch)
17938 (uri (crate-uri "palette" version))
17939 (file-name
17940 (string-append name "-" version ".tar.gz"))
17941 (sha256
17942 (base32
17943 "0nfc4ycdsx2qgf2wkcpxqxc0vmx7188jjjx3ppgs8qlf8qs06p50"))))
17944 (build-system cargo-build-system)
17945 (arguments
17946 `(#:skip-build? #t
17947 #:cargo-inputs
17948 (("rust-num-traits" ,rust-num-traits-0.2)
17949 ("rust-approx" ,rust-approx-0.3)
17950 ("rust-palette-derive" ,rust-palette-derive-0.5)
17951 ("rust-phf" ,rust-phf-0.8)
17952 ("rust-phf-codegen" ,rust-phf-codegen-0.8)
17953 ("rust-serde" ,rust-serde-1))))
17954 (home-page "https://github.com/Ogeon/palette")
17955 (synopsis "Linear color calculations and conversion")
17956 (description
17957 "This package makes linear color calculations and conversion accessible.")
17958 (license (list license:expat license:asl2.0))))
17959
17960 (define-public rust-palette-derive-0.5
17961 (package
17962 (name "rust-palette-derive")
17963 (version "0.5.0")
17964 (source
17965 (origin
17966 (method url-fetch)
17967 (uri (crate-uri "palette_derive" version))
17968 (file-name
17969 (string-append name "-" version ".tar.gz"))
17970 (sha256
17971 (base32
17972 "1x5icddb877923rpl27bg4cjsf1x0d3layxmgwa3mpb01rh5yjqb"))))
17973 (build-system cargo-build-system)
17974 (arguments
17975 `(#:skip-build? #t
17976 #:cargo-inputs
17977 (("rust-proc-macro2" ,rust-proc-macro2-1)
17978 ("rust-syn" ,rust-syn-1)
17979 ("rust-quote" ,rust-quote-1))))
17980 (home-page "https://github.com/Ogeon/palette")
17981 (synopsis "Automatically implement traits from the palette crate")
17982 (description
17983 "Automatically implement traits from the palette crate.")
17984 (license (list license:expat license:asl2.0))))
17985
17986 (define-public rust-parity-tokio-ipc-0.4
17987 (package
17988 (name "rust-parity-tokio-ipc")
17989 (version "0.4.0")
17990 (source
17991 (origin
17992 (method url-fetch)
17993 (uri (crate-uri "parity-tokio-ipc" version))
17994 (file-name (string-append name "-" version ".tar.gz"))
17995 (sha256
17996 (base32 "1gzifrrpiw78p6dq9ax64vhffc4h6mwg6jazpfgkz8zy0jjzwmqy"))))
17997 (build-system cargo-build-system)
17998 (arguments
17999 `(#:cargo-inputs
18000 (("rust-bytes" ,rust-bytes-0.4)
18001 ("rust-futures" ,rust-futures-0.1)
18002 ("rust-libc" ,rust-libc-0.2)
18003 ("rust-log" ,rust-log-0.4)
18004 ("rust-mio-named-pipes" ,rust-mio-named-pipes-0.1)
18005 ("rust-miow" ,rust-miow-0.3)
18006 ("rust-rand" ,rust-rand-0.7)
18007 ("rust-tokio" ,rust-tokio-0.1)
18008 ("rust-tokio-named-pipes" ,rust-tokio-named-pipes-0.1)
18009 ("rust-tokio-uds" ,rust-tokio-uds-0.2)
18010 ("rust-winapi" ,rust-winapi-0.3))))
18011 (home-page "https://github.com/nikvolf/parity-tokio-ipc")
18012 (synopsis "Interprocess communication library for tokio")
18013 (description "Interprocess communication library for tokio.")
18014 (license (list license:expat license:asl2.0))))
18015
18016 (define-public rust-parity-wasm-0.41
18017 (package
18018 (name "rust-parity-wasm")
18019 (version "0.41.0")
18020 (source
18021 (origin
18022 (method url-fetch)
18023 (uri (crate-uri "parity-wasm" version))
18024 (file-name
18025 (string-append name "-" version ".tar.gz"))
18026 (sha256
18027 (base32
18028 "0rfqgjyxrxrfjq5r5n81mdklahl8g4az6yhyyvw25nh0mj6qgz6x"))))
18029 (build-system cargo-build-system)
18030 (arguments `(#:skip-build? #t))
18031 (home-page
18032 "https://github.com/paritytech/parity-wasm")
18033 (synopsis "WebAssembly low-level format library")
18034 (description
18035 "WebAssembly low-level format library")
18036 (license (list license:expat license:asl2.0))))
18037
18038 (define-public rust-parity-wasm-0.40
18039 (package
18040 (name "rust-parity-wasm")
18041 (version "0.40.3")
18042 (source
18043 (origin
18044 (method url-fetch)
18045 (uri (crate-uri "parity-wasm" version))
18046 (file-name (string-append name "-" version ".crate"))
18047 (sha256
18048 (base32
18049 "03qycy21avz4970zc7aj8rj5h4wvi4qsrc90a6hpws1a56mglf8y"))))
18050 (build-system cargo-build-system)
18051 (arguments
18052 `(#:tests? #f
18053 #:cargo-development-inputs
18054 (("rust-time" ,rust-time-0.1))))
18055 (home-page "https://github.com/paritytech/parity-wasm")
18056 (synopsis "Low-level WebAssembly format library")
18057 (description
18058 "This package provides a WebAssembly binary format serialization,
18059 deserialization, and interpreter in Rust.")
18060 (license (list license:asl2.0
18061 license:expat))))
18062
18063 (define-public rust-parking-lot-0.11
18064 (package
18065 (name "rust-parking-lot")
18066 (version "0.11.0")
18067 (source
18068 (origin
18069 (method url-fetch)
18070 (uri (crate-uri "parking_lot" version))
18071 (file-name (string-append name "-" version ".tar.gz"))
18072 (sha256
18073 (base32
18074 "0cw73942xhxb7a49mp9gkjnlwc8acr30wpfs8zk758icz92ki2d4"))))
18075 (build-system cargo-build-system)
18076 (arguments
18077 `(#:cargo-inputs
18078 (("rust-instant" ,rust-instant-0.1)
18079 ("rust-lock-api" ,rust-lock-api-0.4)
18080 ("rust-parking-lot-core" ,rust-parking-lot-core-0.8))
18081 #:cargo-development-inputs
18082 (("rust-bincode" ,rust-bincode-1)
18083 ("rust-rand" ,rust-rand-0.7))))
18084 (home-page "https://github.com/Amanieu/parking_lot")
18085 (synopsis "More compact and efficient implementations of the standard synchronization primitives")
18086 (description "This package provides more compact and efficient
18087 implementations of the standard synchronization primitives.")
18088 (license (list license:asl2.0 license:expat))))
18089
18090 (define-public rust-parking-lot-0.10
18091 (package
18092 (name "rust-parking-lot")
18093 (version "0.10.2")
18094 (source
18095 (origin
18096 (method url-fetch)
18097 (uri (crate-uri "parking_lot" version))
18098 (file-name (string-append name "-" version ".tar.gz"))
18099 (sha256
18100 (base32
18101 "0pjhcbyk6n0g6jsr6s9nf4x8wribm1b2yf8fgc8drbqa77mh99yk"))))
18102 (build-system cargo-build-system)
18103 (arguments
18104 `(#:cargo-inputs
18105 (("rust-lock-api" ,rust-lock-api-0.3)
18106 ("rust-parking-lot-core" ,rust-parking-lot-core-0.7))
18107 #:cargo-development-inputs
18108 (("rust-bincode" ,rust-bincode-1)
18109 ("rust-lazy-static" ,rust-lazy-static-1)
18110 ("rust-rand" ,rust-rand-0.7))))
18111 (home-page "https://github.com/Amanieu/parking_lot")
18112 (synopsis "Compact standard synchronization primitives")
18113 (description
18114 "More compact and efficient implementations of the standard
18115 synchronization primitives.")
18116 (license (list license:asl2.0 license:expat))))
18117
18118 (define-public rust-parking-lot-0.9
18119 (package
18120 (inherit rust-parking-lot-0.10)
18121 (name "rust-parking-lot")
18122 (version "0.9.0")
18123 (source
18124 (origin
18125 (method url-fetch)
18126 (uri (crate-uri "parking_lot" version))
18127 (file-name
18128 (string-append name "-" version ".tar.gz"))
18129 (sha256
18130 (base32
18131 "0lk2vq3hp88ygpgsrypdr3ss71fidnqbykva0csgxhmn5scb2hpq"))))
18132 (arguments
18133 `(#:skip-build? #t
18134 #:cargo-inputs
18135 (("rust-lock-api" ,rust-lock-api-0.3)
18136 ("rust-parking-lot-core" ,rust-parking-lot-core-0.6))
18137 #:cargo-development-inputs
18138 (("rust-bincode" ,rust-bincode-1)
18139 ("rust-lazy-static" ,rust-lazy-static-1)
18140 ("rust-rand" ,rust-rand-0.4)
18141 ("rust-rustc-version" ,rust-rustc-version-0.2))))))
18142
18143 (define-public rust-parking-lot-0.8
18144 (package
18145 (inherit rust-parking-lot-0.9)
18146 (name "rust-parking-lot")
18147 (version "0.8.0")
18148 (source
18149 (origin
18150 (method url-fetch)
18151 (uri (crate-uri "parking_lot" version))
18152 (file-name
18153 (string-append name "-" version ".tar.gz"))
18154 (sha256
18155 (base32
18156 "1rrcdalr8l5zx3bw28l376321l6dnd6rqnsqsl0ygk01fy0nfxzs"))))
18157 (arguments
18158 `(#:skip-build? #t
18159 #:cargo-inputs
18160 (("rust-lock-api" ,rust-lock-api-0.2)
18161 ("rust-parking-lot-core" ,rust-parking-lot-core-0.5))
18162 #:cargo-development-inputs
18163 (("rust-bincode" ,rust-bincode-1)
18164 ("rust-lazy-static" ,rust-lazy-static-1)
18165 ("rust-rand" ,rust-rand-0.4)
18166 ("rust-rustc-version" ,rust-rustc-version-0.2))))))
18167
18168 (define-public rust-parking-lot-0.7
18169 (package
18170 (inherit rust-parking-lot-0.9)
18171 (name "rust-parking-lot")
18172 (version "0.7.1")
18173 (source
18174 (origin
18175 (method url-fetch)
18176 (uri (crate-uri "parking_lot" version))
18177 (file-name
18178 (string-append name "-" version ".tar.gz"))
18179 (sha256
18180 (base32
18181 "0dz32cqx9200n1lk3kwyb599vabfid3f8sj1aq85sw42s2pb8hdb"))))
18182 (arguments
18183 `(#:skip-build? #t
18184 #:cargo-inputs
18185 (("rust-lock-api" ,rust-lock-api-0.1)
18186 ("rust-parking-lot-core" ,rust-parking-lot-core-0.4))
18187 #:cargo-development-inputs
18188 (("rust-bincode" ,rust-bincode-1)
18189 ("rust-lazy-static" ,rust-lazy-static-1)
18190 ("rust-rand" ,rust-rand-0.4)
18191 ("rust-rustc-version" ,rust-rustc-version-0.2))))))
18192
18193 (define-public rust-parking-lot-core-0.8
18194 (package
18195 (name "rust-parking-lot-core")
18196 (version "0.8.0")
18197 (source
18198 (origin
18199 (method url-fetch)
18200 (uri (crate-uri "parking_lot_core" version))
18201 (file-name (string-append name "-" version ".tar.gz"))
18202 (sha256
18203 (base32
18204 "16yazfg3sq9mz6cfdkhgbv8yvc1kkasyhys4y7r3g16hgmralqf3"))))
18205 (build-system cargo-build-system)
18206 (arguments
18207 `(#:cargo-inputs
18208 (("rust-backtrace" ,rust-backtrace-0.3)
18209 ("rust-cfg-if" ,rust-cfg-if-0.1)
18210 ("rust-cloudabi" ,rust-cloudabi-0.1)
18211 ("rust-instant" ,rust-instant-0.1)
18212 ("rust-libc" ,rust-libc-0.2)
18213 ("rust-petgraph" ,rust-petgraph-0.5)
18214 ("rust-redox-syscall" ,rust-redox-syscall-0.1)
18215 ("rust-smallvec" ,rust-smallvec-1)
18216 ("rust-thread-id" ,rust-thread-id-3)
18217 ("rust-winapi" ,rust-winapi-0.3))))
18218 (home-page "https://github.com/Amanieu/parking_lot")
18219 (synopsis "API for creating custom synchronization primitives")
18220 (description "This package provides an advanced API for creating custom
18221 synchronization primitives.")
18222 (license (list license:asl2.0 license:expat))))
18223
18224 (define-public rust-parking-lot-core-0.7
18225 (package
18226 (inherit rust-parking-lot-core-0.8)
18227 (name "rust-parking-lot-core")
18228 (version "0.7.2")
18229 (source
18230 (origin
18231 (method url-fetch)
18232 (uri (crate-uri "parking_lot_core" version))
18233 (file-name
18234 (string-append name "-" version ".tar.gz"))
18235 (sha256
18236 (base32
18237 "18s0cw5y32447c06fhg2mp3xfng22fn1h9fpx3il98sbimv7r36m"))))
18238 (arguments
18239 `(#:cargo-inputs
18240 (("rust-backtrace" ,rust-backtrace-0.3)
18241 ("rust-cfg-if" ,rust-cfg-if-0.1)
18242 ("rust-cloudabi" ,rust-cloudabi-0.0)
18243 ("rust-libc" ,rust-libc-0.2)
18244 ("rust-petgraph" ,rust-petgraph-0.5)
18245 ("rust-redox-syscall" ,rust-redox-syscall-0.1)
18246 ("rust-smallvec" ,rust-smallvec-1)
18247 ("rust-thread-id" ,rust-thread-id-3)
18248 ("rust-winapi" ,rust-winapi-0.3))))))
18249
18250 (define-public rust-parking-lot-core-0.6
18251 (package
18252 (inherit rust-parking-lot-core-0.7)
18253 (name "rust-parking-lot-core")
18254 (version "0.6.2")
18255 (source
18256 (origin
18257 (method url-fetch)
18258 (uri (crate-uri "parking_lot_core" version))
18259 (file-name
18260 (string-append name "-" version ".tar.gz"))
18261 (sha256
18262 (base32
18263 "0ay67dpnrn68ryyvp720m9i8hzp189fd4d6slrs1lvmcwywv2xmq"))))
18264 (arguments
18265 `(#:skip-build? #t
18266 #:cargo-inputs
18267 (("rust-backtrace" ,rust-backtrace-0.3)
18268 ("rust-cfg-if" ,rust-cfg-if-0.1)
18269 ("rust-cloudabi" ,rust-cloudabi-0.0)
18270 ("rust-libc" ,rust-libc-0.2)
18271 ("rust-petgraph" ,rust-petgraph-0.4)
18272 ("rust-rand" ,rust-rand-0.4)
18273 ("rust-redox-syscall" ,rust-redox-syscall-0.1)
18274 ("rust-smallvec" ,rust-smallvec-0.6)
18275 ("rust-thread-id" ,rust-thread-id-3)
18276 ("rust-winapi" ,rust-winapi-0.3))
18277 #:cargo-development-inputs
18278 (("rust-rustc-version" ,rust-rustc-version-0.2))))))
18279
18280 (define-public rust-parking-lot-core-0.5
18281 (package
18282 (inherit rust-parking-lot-core-0.6)
18283 (name "rust-parking-lot-core")
18284 (version "0.5.0")
18285 (source
18286 (origin
18287 (method url-fetch)
18288 (uri (crate-uri "parking_lot_core" version))
18289 (file-name
18290 (string-append name "-" version ".tar.gz"))
18291 (sha256
18292 (base32
18293 "1317j5a1yd03baza2kqqrxb4kr1vxa7rckw4frksl2vrncfcp26b"))))
18294 (arguments
18295 `(#:cargo-inputs
18296 (("rust-backtrace" ,rust-backtrace-0.3)
18297 ("rust-cfg-if" ,rust-cfg-if-0.1)
18298 ("rust-cloudabi" ,rust-cloudabi-0.0)
18299 ("rust-libc" ,rust-libc-0.2)
18300 ("rust-petgraph" ,rust-petgraph-0.4)
18301 ("rust-rand" ,rust-rand-0.6)
18302 ("rust-redox-syscall" ,rust-redox-syscall-0.1)
18303 ("rust-smallvec" ,rust-smallvec-0.6)
18304 ("rust-thread-id" ,rust-thread-id-3)
18305 ("rust-winapi" ,rust-winapi-0.3)
18306 ("rust-rustc-version" ,rust-rustc-version-0.2))))))
18307
18308 (define-public rust-parking-lot-core-0.4
18309 (package
18310 (inherit rust-parking-lot-core-0.6)
18311 (name "rust-parking-lot-core")
18312 (version "0.4.0")
18313 (source
18314 (origin
18315 (method url-fetch)
18316 (uri (crate-uri "parking_lot_core" version))
18317 (file-name
18318 (string-append name "-" version ".tar.gz"))
18319 (sha256
18320 (base32
18321 "1jcq8aq4wv9y5fip7jg12jdwjd5g5r3x857xdma8vcin769cgj4l"))))
18322 (arguments
18323 `(#:cargo-inputs
18324 (("rust-backtrace" ,rust-backtrace-0.3)
18325 ("rust-libc" ,rust-libc-0.2)
18326 ("rust-petgraph" ,rust-petgraph-0.4)
18327 ("rust-rand" ,rust-rand-0.6)
18328 ("rust-smallvec" ,rust-smallvec-0.6)
18329 ("rust-thread-id" ,rust-thread-id-3)
18330 ("rust-winapi" ,rust-winapi-0.3)
18331 ("rust-rustc-version" ,rust-rustc-version-0.2))))))
18332
18333 (define-public rust-partial-io-0.3
18334 (package
18335 (name "rust-partial-io")
18336 (version "0.3.1")
18337 (source
18338 (origin
18339 (method url-fetch)
18340 (uri (crate-uri "partial-io" version))
18341 (file-name (string-append name "-" version ".tar.gz"))
18342 (sha256
18343 (base32
18344 "0b9a2bvqmaj2r4rkbshjsg8zzvp23b67qfvj2y6jwjckrn6zhb38"))))
18345 (build-system cargo-build-system)
18346 (arguments
18347 `(#:cargo-inputs
18348 (("rust-futures" ,rust-futures-0.1)
18349 ("rust-quickcheck" ,rust-quickcheck-0.6)
18350 ("rust-tokio-io" ,rust-tokio-io-0.1))
18351 #:cargo-development-inputs
18352 (("rust-lazy-static" ,rust-lazy-static-1)
18353 ("rust-quickcheck" ,rust-quickcheck-0.6)
18354 ("rust-tokio-core" ,rust-tokio-core-0.1))))
18355 (home-page "https://github.com/facebookincubator/rust-partial-io")
18356 (synopsis "Helpers to test partial, interrupted and would-block I/O operations")
18357 (description "This package provides helpers to test partial, interrupted
18358 and would-block I/O operations.")
18359 (license license:expat)))
18360
18361 (define-public rust-partial-io-0.2
18362 (package
18363 (inherit rust-partial-io-0.3)
18364 (name "rust-partial-io")
18365 (version "0.2.5")
18366 (source
18367 (origin
18368 (method url-fetch)
18369 (uri (crate-uri "partial-io" version))
18370 (file-name
18371 (string-append name "-" version ".tar.gz"))
18372 (sha256
18373 (base32
18374 "03iynvayh11a4mckhwflm5y1qmnkw5m3b20gzi1crpasndy3h8xx"))))
18375 (arguments
18376 `(#:cargo-inputs
18377 (("rust-futures" ,rust-futures-0.1)
18378 ("rust-quickcheck" ,rust-quickcheck-0.4)
18379 ("rust-tokio-io" ,rust-tokio-io-0.1))
18380 #:cargo-development-inputs
18381 (("rust-lazy-static" ,rust-lazy-static-0.2)
18382 ("rust-quickcheck" ,rust-quickcheck-0.4)
18383 ("rust-tokio-core" ,rust-tokio-core-0.1))))
18384 (license license:bsd-3)))
18385
18386 (define-public rust-paste-0.1
18387 (package
18388 (name "rust-paste")
18389 (version "0.1.10")
18390 (source
18391 (origin
18392 (method url-fetch)
18393 (uri (crate-uri "paste" version))
18394 (file-name
18395 (string-append name "-" version ".tar.gz"))
18396 (sha256
18397 (base32
18398 "0yk4zbi7128dcrklsbwfa63d39x0dv8f7pdbrylvdlcj0s9v2kxb"))))
18399 (build-system cargo-build-system)
18400 (arguments
18401 `(#:cargo-inputs
18402 (("rust-paste-impl" ,rust-paste-impl-0.1)
18403 ("rust-proc-macro-hack" ,rust-proc-macro-hack-0.5))
18404 #:cargo-development-inputs
18405 (("rust-rustversion" ,rust-rustversion-1)
18406 ("rust-trybuild" ,rust-trybuild-1))))
18407 (home-page "https://github.com/dtolnay/paste")
18408 (synopsis "Macros for all your token pasting needs")
18409 (description
18410 "Macros for all your token pasting needs.")
18411 (license (list license:asl2.0 license:expat))))
18412
18413 (define-public rust-paste-impl-0.1
18414 (package
18415 (name "rust-paste-impl")
18416 (version "0.1.10")
18417 (source
18418 (origin
18419 (method url-fetch)
18420 (uri (crate-uri "paste-impl" version))
18421 (file-name
18422 (string-append name "-" version ".tar.gz"))
18423 (sha256
18424 (base32
18425 "12jsm83dnsqnrcabfacnwcxh3h4kykl622vi7glv2wg527hqc956"))))
18426 (build-system cargo-build-system)
18427 (arguments
18428 `(#:cargo-inputs
18429 (("rust-proc-macro-hack" ,rust-proc-macro-hack-0.5)
18430 ("rust-proc-macro2" ,rust-proc-macro2-1)
18431 ("rust-quote" ,rust-quote-1)
18432 ("rust-syn" ,rust-syn-1))))
18433 (home-page "https://github.com/dtolnay/paste")
18434 (synopsis "Implementation detail of the paste crate")
18435 (description
18436 "Implementation detail of the paste crate.")
18437 (license (list license:asl2.0 license:expat))))
18438
18439 (define-public rust-path-clean-0.1
18440 (package
18441 (name "rust-path-clean")
18442 (version "0.1.0")
18443 (source
18444 (origin
18445 (method url-fetch)
18446 (uri (crate-uri "path-clean" version))
18447 (file-name (string-append name "-" version ".tar.gz"))
18448 (sha256
18449 (base32
18450 "1pcgqxw0mgg3ha5hi5xkjhyjf488bw5rw1g3qlr9awbq4szh3fpc"))))
18451 (build-system cargo-build-system)
18452 (home-page "https://github.com/danreeves/path-clean")
18453 (synopsis "Rust implementation of cleanname or path.Clean")
18454 (description "This package provides a Rust implementation of cleanname or
18455 path.Clean.")
18456 (license (list license:expat license:asl2.0))))
18457
18458 (define-public rust-pathdiff-0.1
18459 (package
18460 (name "rust-pathdiff")
18461 (version "0.1.0")
18462 (source
18463 (origin
18464 (method url-fetch)
18465 (uri (crate-uri "pathdiff" version))
18466 (file-name
18467 (string-append name "-" version ".tar.gz"))
18468 (sha256
18469 (base32
18470 "0cfg3isnx6mf3wbi7rsg4nmvywby40sbcs589n20fgi09l4p1gx3"))))
18471 (build-system cargo-build-system)
18472 (home-page "https://github.com/Manishearth/pathdiff")
18473 (synopsis "Library for diffing paths to obtain relative paths")
18474 (description
18475 "Use diff_paths to construct a relative path from a provided base
18476 directory path to the provided path.")
18477 (license (list license:asl2.0 license:expat))))
18478
18479 (define-public rust-pbkdf2-0.4
18480 (package
18481 (name "rust-pbkdf2")
18482 (version "0.4.0")
18483 (source
18484 (origin
18485 (method url-fetch)
18486 (uri (crate-uri "pbkdf2" version))
18487 (file-name
18488 (string-append name "-" version ".tar.gz"))
18489 (sha256
18490 (base32
18491 "1g8cm3nwrsydazjc1gjs549hzafgxq8qb49gixrhl3qrd9calvi1"))))
18492 (build-system cargo-build-system)
18493 (arguments
18494 `(#:cargo-inputs
18495 (("rust-base64" ,rust-base64-0.12)
18496 ("rust-crypto-mac" ,rust-crypto-mac-0.8)
18497 ("rust-hmac" ,rust-hmac-0.8)
18498 ("rust-rand" ,rust-rand-0.7)
18499 ("rust-rand-core" ,rust-rand-core-0.5)
18500 ("rust-rayon" ,rust-rayon-1)
18501 ("rust-sha2" ,rust-sha2-0.9)
18502 ("rust-subtle" ,rust-subtle-2))
18503 #:cargo-development-inputs
18504 (("rust-hmac" ,rust-hmac-0.8)
18505 ("rust-sha-1" ,rust-sha-1-0.9)
18506 ("rust-sha2" ,rust-sha2-0.9))))
18507 (home-page "https://github.com/RustCrypto/password-hashing")
18508 (synopsis "Generic implementation of PBKDF2")
18509 (description "This package contains a collection of password hashing
18510 algorithms, otherwise known as password-based key derivation functions, written
18511 in pure Rust.")
18512 (license (list license:expat license:asl2.0))))
18513
18514 (define-public rust-pbkdf2-0.3
18515 (package
18516 (inherit rust-pbkdf2-0.4)
18517 (name "rust-pbkdf2")
18518 (version "0.3.0")
18519 (source
18520 (origin
18521 (method url-fetch)
18522 (uri (crate-uri "pbkdf2" version))
18523 (file-name
18524 (string-append name "-" version ".tar.gz"))
18525 (sha256
18526 (base32
18527 "1na2fmmfcmksz4xk7m0ihl778501c1krx88dcylrand48f506v00"))))
18528 (arguments
18529 `(#:cargo-inputs
18530 (("rust-base64" ,rust-base64-0.9)
18531 ("rust-byteorder" ,rust-byteorder-1)
18532 ("rust-crypto-mac" ,rust-crypto-mac-0.7)
18533 ("rust-hmac" ,rust-hmac-0.7)
18534 ("rust-rand" ,rust-rand-0.5)
18535 ("rust-rayon" ,rust-rayon-1)
18536 ("rust-sha2" ,rust-sha2-0.8)
18537 ("rust-subtle" ,rust-subtle-1.0))
18538 #:cargo-development-inputs
18539 (("rust-hmac" ,rust-hmac-0.7)
18540 ("rust-sha-1" ,rust-sha-1-0.8)
18541 ("rust-sha2" ,rust-sha2-0.8))))))
18542
18543 (define-public rust-pcre2-0.2
18544 (package
18545 (name "rust-pcre2")
18546 (version "0.2.3")
18547 (source
18548 (origin
18549 (method url-fetch)
18550 (uri (crate-uri "pcre2" version))
18551 (file-name
18552 (string-append name "-" version ".tar.gz"))
18553 (sha256
18554 (base32
18555 "1c8sn70h72llf26sya9v26zmaamq350q57nwv6fl6fwhd4phzcw5"))))
18556 (build-system cargo-build-system)
18557 (arguments
18558 `(#:cargo-inputs
18559 (("rust-libc" ,rust-libc-0.2)
18560 ("rust-log" ,rust-log-0.4)
18561 ("rust-pcre2-sys" ,rust-pcre2-sys-0.2)
18562 ("rust-thread-local" ,rust-thread-local-1.0))))
18563 (native-inputs
18564 `(("pcre2" ,pcre2)
18565 ("pkg-config" ,pkg-config)))
18566 (home-page "https://github.com/BurntSushi/rust-pcre2")
18567 (synopsis "High level wrapper library for PCRE2")
18568 (description
18569 "This package provides a high level wrapper library for PCRE2.")
18570 (license (list license:expat license:unlicense))))
18571
18572 (define-public rust-pcre2-sys-0.2
18573 (package
18574 (name "rust-pcre2-sys")
18575 (version "0.2.5")
18576 (source
18577 (origin
18578 (method url-fetch)
18579 (uri (crate-uri "pcre2-sys" version))
18580 (file-name
18581 (string-append name "-" version ".tar.gz"))
18582 (sha256
18583 (base32
18584 "08mp6yxrvadplwd0drdydzskvzapr6dri9fyy7xvhzn3krg0xhyy"))
18585 (modules '((guix build utils)))
18586 (snippet
18587 '(begin (delete-file-recursively "pcre2") #t))))
18588 (build-system cargo-build-system)
18589 (arguments
18590 `(#:cargo-inputs
18591 (("rust-libc" ,rust-libc-0.2)
18592 ("rust-pkg-config" ,rust-pkg-config-0.3)
18593 ("rust-cc" ,rust-cc-1))))
18594 (native-inputs
18595 `(("pcre2" ,pcre2)
18596 ("pkg-config" ,pkg-config)))
18597 (home-page
18598 "https://github.com/BurntSushi/rust-pcre2")
18599 (synopsis "Low level bindings to PCRE2")
18600 (description "Low level bindings to PCRE2.")
18601 (license (list license:expat license:unlicense))))
18602
18603 (define-public rust-peeking-take-while-0.1
18604 (package
18605 (name "rust-peeking-take-while")
18606 (version "0.1.2")
18607 (source
18608 (origin
18609 (method url-fetch)
18610 (uri (crate-uri "peeking_take_while" version))
18611 (file-name (string-append name "-" version ".crate"))
18612 (sha256
18613 (base32
18614 "16bhqr6rdyrp12zv381cxaaqqd0pwysvm1q8h2ygihvypvfprc8r"))))
18615 (build-system cargo-build-system)
18616 (home-page "https://github.com/fitzgen/peeking_take_while")
18617 (synopsis "Provides the peeking_take_while iterator adaptor method")
18618 (description
18619 "Like @code{Iterator::take_while}, but calls the predicate on a peeked
18620 value. This allows you to use @code{Iterator::by_ref} and
18621 @code{Iterator::take_while} together, and still get the first value for which
18622 the @code{take_while} predicate returned false after dropping the @code{by_ref}.")
18623 (license (list license:asl2.0
18624 license:expat))))
18625
18626 (define-public rust-peg-0.6
18627 (package
18628 (name "rust-peg")
18629 (version "0.6.2")
18630 (source
18631 (origin
18632 (method url-fetch)
18633 (uri (crate-uri "peg" version))
18634 (file-name
18635 (string-append name "-" version ".tar.gz"))
18636 (sha256
18637 (base32
18638 "15rfp12dgsynplphp443zfw47m2d5snvdm6a25gz48dv2if8fxch"))))
18639 (build-system cargo-build-system)
18640 (arguments
18641 `(#:tests? #f
18642 #:cargo-inputs
18643 (("rust-peg-macros" ,rust-peg-macros-0.6)
18644 ("rust-peg-runtime" ,rust-peg-runtime-0.6))
18645 #:cargo-development-inputs
18646 (("rust-trybuild" ,rust-trybuild-1))))
18647 (home-page "https://github.com/kevinmehall/rust-peg")
18648 (synopsis "Simple Parsing Expression Grammar (PEG) parser generator")
18649 (description
18650 "PEG provides a simple Parsing Expression Grammar (PEG) parser generator
18651 in Rust.")
18652 (license license:expat)))
18653
18654 (define-public rust-peg-0.5
18655 (package
18656 (inherit rust-peg-0.6)
18657 (name "rust-peg")
18658 (version "0.5.7")
18659 (source
18660 (origin
18661 (method url-fetch)
18662 (uri (crate-uri "peg" version))
18663 (file-name
18664 (string-append name "-" version ".tar.gz"))
18665 (sha256
18666 (base32
18667 "11az3bs3ngvfip920xfr0zwblfkyg6cjgz1v9hmfsdnqw7fi5ps0"))))
18668 (build-system cargo-build-system)
18669 (arguments
18670 `(#:cargo-inputs (("rust-quote" ,rust-quote-0.3))))))
18671
18672 (define-public rust-peg-macros-0.6
18673 (package
18674 (name "rust-peg-macros")
18675 (version "0.6.2")
18676 (source
18677 (origin
18678 (method url-fetch)
18679 (uri (crate-uri "peg-macros" version))
18680 (file-name
18681 (string-append name "-" version ".tar.gz"))
18682 (sha256
18683 (base32
18684 "0li8qrb8hyqr7v5mhrkym0xp7ijnbksqviqc2i3556cysdgick62"))))
18685 (build-system cargo-build-system)
18686 (arguments
18687 `(#:cargo-inputs
18688 (("rust-peg-runtime" ,rust-peg-runtime-0.6)
18689 ("rust-proc-macro2" ,rust-proc-macro2-1)
18690 ("rust-quote" ,rust-quote-1))))
18691 (home-page "https://github.com/kevinmehall/rust-peg")
18692 (synopsis "Procedural macros for rust-peg")
18693 (description
18694 "PEG provides a Parsing Expression Grammar. This package provides
18695 procedural macros for rust-peg. To use rust-peg, see the peg package.")
18696 (license license:expat)))
18697
18698 (define-public rust-peg-runtime-0.6
18699 (package
18700 (name "rust-peg-runtime")
18701 (version "0.6.2")
18702 (source
18703 (origin
18704 (method url-fetch)
18705 (uri (crate-uri "peg-runtime" version))
18706 (file-name
18707 (string-append name "-" version ".tar.gz"))
18708 (sha256
18709 (base32
18710 "0r583cq923v0narrpq73qmp780yg4pablzklhrwnr64xwsbjh6hc"))))
18711 (build-system cargo-build-system)
18712 (home-page "https://github.com/kevinmehall/rust-peg")
18713 (synopsis "Runtime support for rust-peg grammars")
18714 (description
18715 "PEG provides a Parsing Expression Grammar. This package provides
18716 runtime support for rust-peg grammars. To use rust-peg, see the peg crate.")
18717 (license license:expat)))
18718
18719 (define-public rust-percent-encoding-2
18720 (package
18721 (name "rust-percent-encoding")
18722 (version "2.1.0")
18723 (source
18724 (origin
18725 (method url-fetch)
18726 (uri (crate-uri "percent-encoding" version))
18727 (file-name (string-append name "-" version ".crate"))
18728 (sha256
18729 (base32
18730 "0bp3zrsk3kr47fbpipyczidbbx4g54lzxdm77ni1i3qws10mdzfl"))))
18731 (build-system cargo-build-system)
18732 (home-page "https://github.com/servo/rust-url/")
18733 (synopsis "Percent encoding and decoding")
18734 (description "This crate provides percent encoding and decoding.")
18735 (license (list license:asl2.0
18736 license:expat))))
18737
18738 (define-public rust-percent-encoding-1.0
18739 (package
18740 (inherit rust-percent-encoding-2)
18741 (name "rust-percent-encoding")
18742 (version "1.0.1")
18743 (source
18744 (origin
18745 (method url-fetch)
18746 (uri (crate-uri "percent-encoding" version))
18747 (file-name (string-append name "-" version ".crate"))
18748 (sha256
18749 (base32
18750 "0cgq08v1fvr6bs5fvy390cz830lq4fak8havdasdacxcw790s09i"))))))
18751
18752 (define-public rust-permutohedron-0.2
18753 (package
18754 (name "rust-permutohedron")
18755 (version "0.2.4")
18756 (source
18757 (origin
18758 (method url-fetch)
18759 (uri (crate-uri "permutohedron" version))
18760 (file-name (string-append name "-" version ".crate"))
18761 (sha256
18762 (base32
18763 "0b1pzh48j86v46wxngch6k1kx9cdw3jr3lwa86gd6jd4bmxzz1xn"))))
18764 (build-system cargo-build-system)
18765 (arguments '(#:skip-build? #t))
18766 (home-page "https://github.com/bluss/permutohedron")
18767 (synopsis "Generate permutations of sequences")
18768 (description
18769 "Generate permutations of sequences. Either lexicographical order
18770 permutations, or a minimal swaps permutation sequence implemented using Heap's
18771 algorithm.")
18772 (license (list license:asl2.0
18773 license:expat))))
18774
18775 (define-public rust-pest-2
18776 (package
18777 (name "rust-pest")
18778 (version "2.1.1")
18779 (source
18780 (origin
18781 (method url-fetch)
18782 (uri (crate-uri "pest" version))
18783 (file-name
18784 (string-append name "-" version ".tar.gz"))
18785 (sha256
18786 (base32
18787 "134686mwxm73asbiads53zfchqvvcrsrsyax2cghfcizmvg8ac4k"))))
18788 (build-system cargo-build-system)
18789 (arguments
18790 `(#:skip-build? #t
18791 #:cargo-inputs
18792 (("rust-serde" ,rust-serde-1)
18793 ("rust-serde-json" ,rust-serde-json-1)
18794 ("rust-ucd-trie" ,rust-ucd-trie-0.1))))
18795 (home-page "https://pest.rs/")
18796 (synopsis "The Elegant Parser")
18797 (description "The Elegant Parser.")
18798 (license (list license:asl2.0 license:expat))))
18799
18800 (define-public rust-pest-derive-2
18801 (package
18802 (name "rust-pest-derive")
18803 (version "2.1.0")
18804 (source
18805 (origin
18806 (method url-fetch)
18807 (uri (crate-uri "pest_derive" version))
18808 (file-name
18809 (string-append name "-" version ".tar.gz"))
18810 (sha256
18811 (base32
18812 "1l5jfa6ril71cw5nsiw0r45br54dd8cj2r1nc2d1wq6wb3jilgc3"))))
18813 (build-system cargo-build-system)
18814 (arguments
18815 `(#:skip-build? #t
18816 #:cargo-inputs
18817 (("rust-pest" ,rust-pest-2)
18818 ("rust-pest-generator" ,rust-pest-generator-2.1))))
18819 (home-page "https://pest.rs/")
18820 (synopsis "Pest's derive macro")
18821 (description "Pest's derive macro.")
18822 (license (list license:asl2.0 license:expat))))
18823
18824 (define-public rust-pest-generator-2.1
18825 (package
18826 (name "rust-pest-generator")
18827 (version "2.1.1")
18828 (source
18829 (origin
18830 (method url-fetch)
18831 (uri (crate-uri "pest_generator" version))
18832 (file-name
18833 (string-append name "-" version ".tar.gz"))
18834 (sha256
18835 (base32
18836 "1h3z8jccki87mn7gppy4292s1ah98z4md998w5pd04jpkclwz7vv"))))
18837 (build-system cargo-build-system)
18838 (arguments
18839 `(#:skip-build? #t
18840 #:cargo-inputs
18841 (("rust-pest" ,rust-pest-2)
18842 ("rust-pest-meta" ,rust-pest-meta-2.1)
18843 ("rust-proc-macro2" ,rust-proc-macro2-1)
18844 ("rust-quote" ,rust-quote-1)
18845 ("rust-syn" ,rust-syn-1))))
18846 (home-page "https://pest.rs/")
18847 (synopsis "Pest code generator")
18848 (description "Pest code generator.")
18849 (license (list license:asl2.0 license:expat))))
18850
18851 (define-public rust-pest-meta-2.1
18852 (package
18853 (name "rust-pest-meta")
18854 (version "2.1.2")
18855 (source
18856 (origin
18857 (method url-fetch)
18858 (uri (crate-uri "pest_meta" version))
18859 (file-name
18860 (string-append name "-" version ".tar.gz"))
18861 (sha256
18862 (base32
18863 "0iymvrh7lcfi8iarkgq0hwgarr00np3l4xg4bx42rmvgi6czshyz"))))
18864 (build-system cargo-build-system)
18865 (arguments
18866 `(#:skip-build? #t
18867 #:cargo-inputs
18868 (("rust-maplit" ,rust-maplit-1.0)
18869 ("rust-pest" ,rust-pest-2)
18870 ("rust-sha-1" ,rust-sha-1-0.8))))
18871 (home-page "https://pest.rs")
18872 (synopsis "Pest meta language parser and validator")
18873 (description
18874 "Pest meta language parser and validator.")
18875 (license (list license:asl2.0 license:expat))))
18876
18877 (define-public rust-petgraph-0.5
18878 (package
18879 (name "rust-petgraph")
18880 (version "0.5.1")
18881 (source
18882 (origin
18883 (method url-fetch)
18884 (uri (crate-uri "petgraph" version))
18885 (file-name
18886 (string-append name "-" version ".tar.gz"))
18887 (sha256
18888 (base32
18889 "1dzxda6z17sfxly11m8ja3iargh73pw0s1sdgjyp0qp5dm51cza6"))))
18890 (build-system cargo-build-system)
18891 (arguments
18892 `(#:cargo-inputs
18893 (("rust-fixedbitset" ,rust-fixedbitset-0.2)
18894 ("rust-ordermap" ,rust-ordermap-0.3)
18895 ("rust-quickcheck" ,rust-quickcheck-0.8)
18896 ("rust-serde" ,rust-serde-1)
18897 ("rust-serde-derive" ,rust-serde-derive-1))
18898 #:cargo-development-inputs
18899 (("rust-defmac" ,rust-defmac-0.1)
18900 ("rust-itertools" ,rust-itertools-0.8)
18901 ("rust-odds" ,rust-odds-0.2)
18902 ("rust-rand" ,rust-rand-0.5))))
18903 (home-page "https://github.com/petgraph/petgraph")
18904 (synopsis "Graph data structure library")
18905 (description
18906 "Graph data structure library. Provides graph types and graph
18907 algorithms.")
18908 (license (list license:expat license:asl2.0))))
18909
18910 (define-public rust-petgraph-0.4
18911 (package
18912 (inherit rust-petgraph-0.5)
18913 (name "rust-petgraph")
18914 (version "0.4.13")
18915 (source
18916 (origin
18917 (method url-fetch)
18918 (uri (crate-uri "petgraph" version))
18919 (file-name
18920 (string-append name "-" version ".tar.gz"))
18921 (sha256
18922 (base32
18923 "0kyfmca854s54jk26g2x1kjb04c3k7cjilaxyr0if8lhxv8mjdlw"))))
18924 (arguments
18925 `(#:cargo-inputs
18926 (("rust-fixedbitset" ,rust-fixedbitset-0.1)
18927 ("rust-odds" ,rust-odds-0.2)
18928 ("rust-ordermap" ,rust-ordermap-0.3)
18929 ("rust-quickcheck" ,rust-quickcheck-0.4)
18930 ("rust-serde" ,rust-serde-1)
18931 ("rust-serde-derive" ,rust-serde-derive-1))
18932 #:cargo-development-inputs
18933 (("rust-defmac" ,rust-defmac-0.1)
18934 ("rust-itertools" ,rust-itertools-0.7)
18935 ("rust-rand" ,rust-rand-0.4))
18936 #:phases
18937 (modify-phases %standard-phases
18938 (add-before 'check 'ignore-failing-test
18939 (lambda _
18940 (substitute* "tests/graph.rs"
18941 (("fn dot\\(\\) \\{" all)
18942 (string-append "#[ignore] " all))))))))))
18943
18944 (define-public rust-phf-0.8
18945 (package
18946 (name "rust-phf")
18947 (version "0.8.0")
18948 (source
18949 (origin
18950 (method url-fetch)
18951 (uri (crate-uri "phf" version))
18952 (file-name
18953 (string-append name "-" version ".tar.gz"))
18954 (sha256
18955 (base32
18956 "04pyv8bzqvw69rd5dynd5nb85py1hf7wa4ixyhrvdz1l5qin3yrx"))))
18957 (build-system cargo-build-system)
18958 (arguments
18959 `(#:skip-build? #t
18960 #:cargo-inputs
18961 (("rust-proc-macro-hack" ,rust-proc-macro-hack-0.5)
18962 ("rust-phf-shared" ,rust-phf-shared-0.8)
18963 ("rust-phf-macros" ,rust-phf-macros-0.8))))
18964 (home-page "https://github.com/sfackler/rust-phf")
18965 (synopsis "Runtime support for perfect hash function data structures")
18966 (description "This package provides runtime support for perfect hash
18967 function data structures.")
18968 (license license:expat)))
18969
18970 (define-public rust-phf-0.7
18971 (package
18972 (name "rust-phf")
18973 (version "0.7.24")
18974 (source
18975 (origin
18976 (method url-fetch)
18977 (uri (crate-uri "phf" version))
18978 (file-name
18979 (string-append name "-" version ".tar.gz"))
18980 (sha256
18981 (base32
18982 "066xwv4dr6056a9adlkarwp4n94kbpwngbmd47ngm3cfbyw49nmk"))))
18983 (build-system cargo-build-system)
18984 (arguments
18985 `(#:skip-build? #t
18986 #:cargo-inputs
18987 (("rust-phf-macros" ,rust-phf-macros-0.7)
18988 ("rust-phf-shared" ,rust-phf-shared-0.7))))
18989 (home-page "https://github.com/sfackler/rust-phf")
18990 (synopsis "Runtime support for perfect hash function data structures")
18991 (description
18992 "Runtime support for perfect hash function data structures.")
18993 (license license:expat)))
18994
18995 (define-public rust-phf-codegen-0.8
18996 (package
18997 (name "rust-phf-codegen")
18998 (version "0.8.0")
18999 (source
19000 (origin
19001 (method url-fetch)
19002 (uri (crate-uri "phf_codegen" version))
19003 (file-name
19004 (string-append name "-" version ".tar.gz"))
19005 (sha256
19006 (base32
19007 "05d8w7aqqjb6039pfm6404gk5dlwrrf97kiy1n21212vb1hyxzyb"))))
19008 (build-system cargo-build-system)
19009 (arguments
19010 `(#:skip-build? #t
19011 #:cargo-inputs
19012 (("rust-phf-generator" ,rust-phf-generator-0.8)
19013 ("rust-phf-shared" ,rust-phf-shared-0.8))))
19014 (home-page "https://github.com/sfackler/rust-phf")
19015 (synopsis "Codegen library for PHF types")
19016 (description "Codegen library for PHF types.")
19017 (license license:expat)))
19018
19019 (define-public rust-phf-codegen-0.7
19020 (package
19021 (name "rust-phf-codegen")
19022 (version "0.7.24")
19023 (source
19024 (origin
19025 (method url-fetch)
19026 (uri (crate-uri "phf-codegen" version))
19027 (file-name
19028 (string-append name "-" version ".tar.gz"))
19029 (sha256
19030 (base32
19031 "0zjiblicfm0nrmr2xxrs6pnf6zz2394wgch6dcbd8jijkq98agmh"))))
19032 (build-system cargo-build-system)
19033 (arguments
19034 `(#:cargo-inputs
19035 (("rust-phf-generator" ,rust-phf-generator-0.7)
19036 ("rust-phf-shared" ,rust-phf-shared-0.7))))
19037 (home-page
19038 "https://github.com/sfackler/rust-phf")
19039 (synopsis "Codegen library for PHF types")
19040 (description "Codegen library for PHF types.")
19041 (license license:expat)))
19042
19043 (define-public rust-phf-generator-0.8
19044 (package
19045 (name "rust-phf-generator")
19046 (version "0.8.0")
19047 (source
19048 (origin
19049 (method url-fetch)
19050 (uri (crate-uri "phf_generator" version))
19051 (file-name
19052 (string-append name "-" version ".tar.gz"))
19053 (sha256
19054 (base32
19055 "09i5338d1kixq6a60fcayz6awgxjlxcfw9ic5f02abbgr067ydhp"))))
19056 (build-system cargo-build-system)
19057 (arguments
19058 `(#:skip-build? #t
19059 #:cargo-inputs
19060 (("rust-criterion" ,rust-criterion-0.3)
19061 ("rust-rand" ,rust-rand-0.7)
19062 ("rust-phf-shared" ,rust-phf-shared-0.8))))
19063 (home-page "https://github.com/sfackler/rust-phf")
19064 (synopsis "PHF generation logic")
19065 (description "PHF generation logic.")
19066 (license license:expat)))
19067
19068 (define-public rust-phf-generator-0.7
19069 (package
19070 (name "rust-phf-generator")
19071 (version "0.7.24")
19072 (source
19073 (origin
19074 (method url-fetch)
19075 (uri (crate-uri "phf_generator" version))
19076 (file-name
19077 (string-append name "-" version ".tar.gz"))
19078 (sha256
19079 (base32
19080 "0qi62gxk3x3whrmw5c4i71406icqk11qmpgln438p6qm7k4lqdh9"))))
19081 (build-system cargo-build-system)
19082 (arguments
19083 `(#:cargo-inputs
19084 (("rust-phf-shared" ,rust-phf-shared-0.7)
19085 ("rust-rand" ,rust-rand-0.6))))
19086 (home-page "https://github.com/sfackler/rust-phf")
19087 (synopsis "PHF generation logic")
19088 (description "PHF generation logic")
19089 (license license:expat)))
19090
19091 (define-public rust-phf-macros-0.8
19092 (package
19093 (name "rust-phf-macros")
19094 (version "0.8.0")
19095 (source
19096 (origin
19097 (method url-fetch)
19098 (uri (crate-uri "phf_macros" version))
19099 (file-name
19100 (string-append name "-" version ".tar.gz"))
19101 (sha256
19102 (base32
19103 "170qm6yqn6b9mjlwb2xmm3iad9d5nzwgfawfwy7zr7s2zwcdwvvz"))))
19104 (build-system cargo-build-system)
19105 (arguments
19106 `(#:skip-build? #t
19107 #:cargo-inputs
19108 (("rust-proc-macro-hack" ,rust-proc-macro-hack-0.5)
19109 ("rust-phf-generator" ,rust-phf-generator-0.8)
19110 ("rust-phf-shared" ,rust-phf-shared-0.8)
19111 ("rust-proc-macro2" ,rust-proc-macro2-1)
19112 ("rust-syn" ,rust-syn-1)
19113 ("rust-quote" ,rust-quote-1))))
19114 (home-page "https://github.com/sfackler/rust-phf")
19115 (synopsis "Macros to generate types in the phf crate")
19116 (description
19117 "This package contains macros to generate types in the phf crate.")
19118 (license license:expat)))
19119
19120 (define-public rust-phf-macros-0.7
19121 (package
19122 (name "rust-phf-macros")
19123 (version "0.7.24")
19124 (source
19125 (origin
19126 (method url-fetch)
19127 (uri (crate-uri "phf_macros" version))
19128 (file-name
19129 (string-append name "-" version ".tar.gz"))
19130 (sha256
19131 (base32
19132 "0dzylcy14ksy60h265l433j9ra8xhg8xlq3pd5qk658m6f1mxd5x"))))
19133 (build-system cargo-build-system)
19134 (arguments
19135 `(#:tests? #f ; Depends on features not in Rust's stable release channel.
19136 #:cargo-inputs
19137 (("rust-phf-generator" ,rust-phf-generator-0.7)
19138 ("rust-phf-shared" ,rust-phf-shared-0.7)
19139 ("rust-proc-macro2" ,rust-proc-macro2-0.4)
19140 ("rust-quote" ,rust-quote-0.6)
19141 ("rust-syn" ,rust-syn-0.15))
19142 #:cargo-development-inputs
19143 (("rust-compiletest-rs" ,rust-compiletest-rs-0.3))))
19144 (home-page
19145 "https://github.com/sfackler/rust-phf")
19146 (synopsis
19147 "Macros to generate types in the phf crate")
19148 (description
19149 "Macros to generate types in the phf crate.")
19150 (license license:expat)))
19151
19152 (define-public rust-phf-shared-0.8
19153 (package
19154 (name "rust-phf-shared")
19155 (version "0.8.0")
19156 (source
19157 (origin
19158 (method url-fetch)
19159 (uri (crate-uri "phf_shared" version))
19160 (file-name
19161 (string-append name "-" version ".tar.gz"))
19162 (sha256
19163 (base32
19164 "1xssnqrrcn0nr9ayqrnm8xm37ac4xvwcx8pax7jxss7yxawzh360"))))
19165 (build-system cargo-build-system)
19166 (arguments
19167 `(#:skip-build? #t
19168 #:cargo-inputs
19169 (("rust-siphasher" ,rust-siphasher-0.3)
19170 ("rust-unicase" ,rust-unicase-2))))
19171 (home-page "https://github.com/sfackler/rust-phf")
19172 (synopsis "Support code shared by PHF libraries")
19173 (description
19174 "This package provides support code shared by PHF libraries.")
19175 (license license:expat)))
19176
19177 (define-public rust-phf-shared-0.7
19178 (package
19179 (name "rust-phf-shared")
19180 (version "0.7.24")
19181 (source
19182 (origin
19183 (method url-fetch)
19184 (uri (crate-uri "phf-shared" version))
19185 (file-name
19186 (string-append name "-" version ".tar.gz"))
19187 (sha256
19188 (base32
19189 "18371fla0vsj7d6d5rlfb747xbr2in11ar9vgv5qna72bnhp2kr3"))))
19190 (build-system cargo-build-system)
19191 (arguments
19192 `(#:cargo-inputs
19193 (("rust-siphasher" ,rust-siphasher-0.2)
19194 ("rust-unicase" ,rust-unicase-1))))
19195 (home-page "https://github.com/sfackler/rust-phf")
19196 (synopsis "Support code shared by PHF libraries")
19197 (description
19198 "Support code shared by PHF libraries.")
19199 (license license:expat)))
19200
19201 (define-public rust-pico-sys-0.0
19202 (package
19203 (name "rust-pico-sys")
19204 (version "0.0.1")
19205 (source
19206 (origin
19207 (method url-fetch)
19208 (uri (crate-uri "pico-sys" version))
19209 (file-name (string-append name "-" version ".crate"))
19210 (sha256
19211 (base32
19212 "1q5pg0ms6szz6b5h26h4k40zb76zbwwjgyigac4wly9qngdj4yl5"))))
19213 (build-system cargo-build-system)
19214 (arguments
19215 `(#:cargo-inputs
19216 (("rust-libc" ,rust-libc-0.2)
19217 ("rust-gcc" ,rust-gcc-0.3))))
19218 (home-page "https://github.com/reem/rust-pico-sys")
19219 (synopsis "Bindings to the PicoHTTPParser")
19220 (description
19221 "This package provides bindings to the PicoHTTPParser.")
19222 (license license:expat)))
19223
19224 (define-public rust-pin-utils-0.1
19225 (package
19226 (name "rust-pin-utils")
19227 (version "0.1.0-alpha.4")
19228 (source
19229 (origin
19230 (method url-fetch)
19231 (uri (crate-uri "pin-utils" version))
19232 (file-name (string-append name "-" version ".crate"))
19233 (sha256
19234 (base32
19235 "11xmyx00n4m37d546by2rxb8ryxs12v55cc172i3yak1rqccd52q"))))
19236 (build-system cargo-build-system)
19237 (home-page "https://github.com/rust-lang-nursery/pin-utils")
19238 (synopsis "Utilities for pinning")
19239 (description "This crate provides utilities for pinning values on the stack.")
19240 (license (list license:asl2.0
19241 license:expat))))
19242
19243 (define-public rust-pin-project-0.4
19244 (package
19245 (name "rust-pin-project")
19246 (version "0.4.22")
19247 (source
19248 (origin
19249 (method url-fetch)
19250 (uri (crate-uri "pin-project" version))
19251 (file-name (string-append name "-" version ".tar.gz"))
19252 (sha256
19253 (base32 "05wwxy46j9z27ibbiisjqk0rivf0z00h4al1f92mwjp9pz6sdqqj"))))
19254 (build-system cargo-build-system)
19255 (arguments
19256 `(#:tests? #f ; XXX: Fix-me.
19257 #:cargo-inputs
19258 (("rust-pin-project-internal" ,rust-pin-project-internal-0.4))))
19259 (home-page "https://crates.io/crates/pin-project")
19260 (synopsis "A crate for safe and ergonomic pin-projection")
19261 (description "A crate for safe and ergonomic pin-projection.")
19262 (license (list license:asl2.0 license:expat))))
19263
19264 (define-public rust-pin-project-internal-0.4
19265 (package
19266 (name "rust-pin-project-internal")
19267 (version "0.4.22")
19268 (source
19269 (origin
19270 (method url-fetch)
19271 (uri (crate-uri "pin-project-internal" version))
19272 (file-name (string-append name "-" version ".tar.gz"))
19273 (sha256
19274 (base32 "1xxac6f3ip45zqbfcmmk748ywjw9sbavz1fcswvqgn3rrx2zs3va"))))
19275 (build-system cargo-build-system)
19276 (arguments
19277 `(#:tests? #f ; XXX: Fix-me.
19278 #:cargo-inputs
19279 (("rust-proc-macro2" ,rust-proc-macro2-1)
19280 ("rust-quote" ,rust-quote-1)
19281 ("rust-syn" ,rust-syn-1))))
19282 (home-page "https://crates.io/crates/pin-project-internal")
19283 (synopsis "An internal crate to support pin_project")
19284 (description "An internal crate to support pin_project")
19285 (license (list license:asl2.0 license:expat))))
19286
19287 (define-public rust-pin-project-lite-0.1
19288 (package
19289 (name "rust-pin-project-lite")
19290 (version "0.1.4")
19291 (source
19292 (origin
19293 (method url-fetch)
19294 (uri (crate-uri "pin-project-lite" version))
19295 (file-name (string-append name "-" version ".tar.gz"))
19296 (sha256
19297 (base32 "1bljczwz9yyb6jskjhbkilcbdg7v1mhfwzp2mxknzf7v1isl8y13"))))
19298 (build-system cargo-build-system)
19299 (arguments
19300 `(#:cargo-development-inputs
19301 (("rust-rustversion" ,rust-rustversion-1)
19302 ("rust-trybuild" ,rust-trybuild-1))))
19303 (home-page "https://github.com/taiki-e/pin-project-lite")
19304 (synopsis "Lightweight version of pin-project written with declarative
19305 macros")
19306 (description "This package provides a lightweight version of pin-project
19307 written with declarative macros.")
19308 (license (list license:asl2.0 license:expat))))
19309
19310 (define-public rust-pkg-config-0.3
19311 (package
19312 (name "rust-pkg-config")
19313 (version "0.3.17")
19314 (source
19315 (origin
19316 (method url-fetch)
19317 (uri (crate-uri "pkg-config" version))
19318 (file-name (string-append name "-" version ".crate"))
19319 (sha256
19320 (base32
19321 "0xynnaxdv0gzadlw4h79j855k0q7rj4zb9xb1vk00nc6ss559nh5"))))
19322 (build-system cargo-build-system)
19323 (arguments
19324 `(#:cargo-development-inputs
19325 (("rust-lazy-static" ,rust-lazy-static-1))))
19326 (native-inputs
19327 `(("pkg-config" ,pkg-config)))
19328 (home-page "https://github.com/rust-lang/pkg-config-rs")
19329 (synopsis "Library to run the pkg-config system tool")
19330 (description
19331 "A library to run the pkg-config system tool at build time in order to be
19332 used in Cargo build scripts.")
19333 (license (list license:asl2.0
19334 license:expat))))
19335
19336 (define-public rust-plain-0.2
19337 (package
19338 (name "rust-plain")
19339 (version "0.2.3")
19340 (source
19341 (origin
19342 (method url-fetch)
19343 (uri (crate-uri "plain" version))
19344 (file-name (string-append name "-" version ".crate"))
19345 (sha256
19346 (base32
19347 "19n1xbxb4wa7w891268bzf6cbwq4qvdb86bik1z129qb0xnnnndl"))))
19348 (build-system cargo-build-system)
19349 (home-page "https://github.com/randomites/plain")
19350 (synopsis "Rust library that allows reinterpreting data safely")
19351 (description "This package provides a small Rust library that allows users
19352 to reinterpret data of certain types safely.")
19353 (license (list license:asl2.0
19354 license:expat))))
19355
19356 (define-public rust-plist-0.4
19357 (package
19358 (name "rust-plist")
19359 (version "0.4.2")
19360 (source
19361 (origin
19362 (method url-fetch)
19363 (uri (crate-uri "plist" version))
19364 (file-name
19365 (string-append name "-" version ".tar.gz"))
19366 (sha256
19367 (base32
19368 "0zqnxc5i4y6mj119vr0lzpb5j67vffpx2phhgh711533bw3ryajz"))))
19369 (build-system cargo-build-system)
19370 (arguments
19371 `(#:skip-build? #t
19372 #:cargo-inputs
19373 (("rust-line-wrap" ,rust-line-wrap-0.1)
19374 ("rust-base64" ,rust-base64-0.10)
19375 ("rust-xml-rs" ,rust-xml-rs-0.8)
19376 ("rust-serde" ,rust-serde-1)
19377 ("rust-humantime" ,rust-humantime-1)
19378 ("rust-byteorder" ,rust-byteorder-1))))
19379 (home-page "https://github.com/ebarnard/rust-plist/")
19380 (synopsis "Rusty plist parser")
19381 (description
19382 "This package provides a rusty plist parser. Supports Serde serialization.")
19383 (license license:expat)))
19384
19385 (define-public rust-plotters-0.2
19386 (package
19387 (name "rust-plotters")
19388 (version "0.2.12")
19389 (source
19390 (origin
19391 (method url-fetch)
19392 (uri (crate-uri "plotters" version))
19393 (file-name
19394 (string-append name "-" version ".tar.gz"))
19395 (sha256
19396 (base32
19397 "1ssycy9an23vs9hq098c7kl1dvp5ych20d994lhsw9vx4kdbhfsf"))))
19398 (build-system cargo-build-system)
19399 (arguments
19400 `(#:skip-build? #t
19401 #:cargo-inputs
19402 (("rust-gif" ,rust-gif-0.10)
19403 ("rust-piston-window" ,rust-piston-window-0.105)
19404 ("rust-num-traits" ,rust-num-traits-0.2)
19405 ("rust-wasm-bindgen" ,rust-wasm-bindgen-0.2)
19406 ("rust-image" ,rust-image-0.22)
19407 ("rust-js-sys" ,rust-js-sys-0.3)
19408 ("rust-web-sys" ,rust-web-sys-0.3)
19409 ("rust-font-kit" ,rust-font-kit-0.4)
19410 ("rust-chrono" ,rust-chrono-0.4)
19411 ("rust-palette" ,rust-palette-0.5)
19412 ("rust-cairo-rs" ,rust-cairo-rs-0.7)
19413 ("rust-rusttype" ,rust-rusttype-0.8)
19414 ("rust-lazy-static" ,rust-lazy-static-1))))
19415 (home-page "https://github.com/38/plotters")
19416 (synopsis "Rust drawing library focus on data plotting")
19417 (description
19418 "This package provides a Rust drawing library focus on data plotting for
19419 both WASM and native applications")
19420 (license license:expat)))
19421
19422 (define-public rust-plugin-0.2
19423 (package
19424 (name "rust-plugin")
19425 (version "0.2.6")
19426 (source
19427 (origin
19428 (method url-fetch)
19429 (uri (crate-uri "plugin" version))
19430 (file-name (string-append name "-" version ".crate"))
19431 (sha256
19432 (base32
19433 "1q7nghkpvxxr168y2jnzh3w7qc9vfrby9n7ygy3xpj0bj71hsshs"))))
19434 (build-system cargo-build-system)
19435 (arguments
19436 `(#:cargo-inputs
19437 (("rust-typemap" ,rust-typemap-0.3))
19438 #:cargo-development-inputs
19439 (("rust-void" ,rust-void-1))))
19440 (home-page "https://github.com/reem/rust-plugin")
19441 (synopsis "Lazily evaluated, order-independent plugins for extensible types")
19442 (description
19443 "Lazily evaluated, order-independent plugins for extensible types.")
19444 (license license:expat)))
19445
19446 (define-public rust-pmutil-0.5
19447 (package
19448 (name "rust-pmutil")
19449 (version "0.5.3")
19450 (source
19451 (origin
19452 (method url-fetch)
19453 (uri (crate-uri "pmutil" version))
19454 (file-name (string-append name "-" version ".tar.gz"))
19455 (sha256
19456 (base32
19457 "0170zgziivri4qsch682pga3qq3z4wpr4wngzr5f9jyc97ayb51q"))))
19458 (build-system cargo-build-system)
19459 (arguments
19460 `(#:cargo-inputs
19461 (("rust-proc-macro2" ,rust-proc-macro2-1)
19462 ("rust-quote" ,rust-quote-1)
19463 ("rust-syn" ,rust-syn-1))))
19464 (home-page "https://github.com/kdy1/rust-pmutil")
19465 (synopsis "Utils for proc-macro")
19466 (description "This package provides utils for proc-macro.")
19467 (license (list license:asl2.0 license:expat))))
19468
19469 (define-public rust-pnacl-build-helper-1.4
19470 (package
19471 (name "rust-pnacl-build-helper")
19472 (version "1.4.11")
19473 (source
19474 (origin
19475 (method url-fetch)
19476 (uri (crate-uri "pnacl-build-helper" version))
19477 (file-name
19478 (string-append name "-" version ".tar.gz"))
19479 (sha256
19480 (base32
19481 "145hxz3m3sg8mm9sfqqqaarnna43v65l6whwswrvcvy0fzp17gnz"))))
19482 (build-system cargo-build-system)
19483 (arguments
19484 `(#:cargo-inputs
19485 (("rust-tempdir" ,rust-tempdir-0.3)
19486 ("rust-walkdir" ,rust-walkdir-1))))
19487 (home-page "https://github.com/DiamondLovesYou/cargo-pnacl-helper")
19488 (synopsis
19489 "Build script helper for building PNaCl/NaCl C/CXX libraries from source")
19490 (description
19491 "Build script helper for building PNaCl/NaCl C/CXX libraries from source")
19492 (license license:mpl2.0)))
19493
19494 (define-public rust-pocket-resources-0.3
19495 (package
19496 (name "rust-pocket-resources")
19497 (version "0.3.2")
19498 (source
19499 (origin
19500 (method url-fetch)
19501 (uri (crate-uri "pocket-resources" version))
19502 (file-name (string-append name "-" version ".crate"))
19503 (sha256
19504 (base32
19505 "1n2i5vmi8fdbw89wm5nz1ws1z9f1qax911p6ksg4scmdg23z6df1"))))
19506 (build-system cargo-build-system)
19507 (home-page "https://github.com/tomaka/pocket-resources")
19508 (synopsis "Include resources in your applications")
19509 (description "This crate allows you to include resources in your
19510 applications.")
19511 (license license:expat)))
19512
19513 (define-public rust-podio-0.1
19514 (package
19515 (name "rust-podio")
19516 (version "0.1.7")
19517 (source
19518 (origin
19519 (method url-fetch)
19520 (uri (crate-uri "podio" version))
19521 (file-name
19522 (string-append name "-" version ".tar.gz"))
19523 (sha256
19524 (base32
19525 "06bzjxrl0h8rp5860n51dlr1g143grg2jmx4g6y1mdn2ignyz2xi"))))
19526 (build-system cargo-build-system)
19527 (home-page "https://github.com/mvdnes/podio.git")
19528 (synopsis "Additional trait to read and write Plain Old Data")
19529 (description
19530 "Additional trait for Read and Write to read and write Plain Old Data.")
19531 (license (list license:expat license:asl2.0))))
19532
19533 (define-public rust-polyval-0.4
19534 (package
19535 (name "rust-polyval")
19536 (version "0.4.0")
19537 (source
19538 (origin
19539 (method url-fetch)
19540 (uri (crate-uri "polyval" version))
19541 (file-name (string-append name "-" version ".tar.gz"))
19542 (sha256
19543 (base32
19544 "1p0765j30qxr50zh74aflafx540xkxqb7pv8kw7fvcssnm1039fr"))))
19545 (build-system cargo-build-system)
19546 (arguments
19547 `(#:cargo-inputs
19548 (("rust-cfg-if" ,rust-cfg-if-0.1)
19549 ("rust-universal-hash" ,rust-universal-hash-0.4)
19550 ("rust-zeroize" ,rust-zeroize-1))
19551 #:cargo-development-inputs
19552 (("rust-criterion" ,rust-criterion-0.3)
19553 ("rust-criterion-cycles-per-byte"
19554 ,rust-criterion-cycles-per-byte-0.1)
19555 ("rust-hex-literal" ,rust-hex-literal-0.1))))
19556 (home-page "https://github.com/RustCrypto/universal-hashes")
19557 (synopsis "GHASH-like universal hash")
19558 (description "POLYVAL is a GHASH-like universal hash over GF(2^128) useful
19559 for constructing a Message Authentication Code (MAC).")
19560 (license (list license:asl2.0 license:expat))))
19561
19562 (define-public rust-pom-3
19563 (package
19564 (name "rust-pom")
19565 (version "3.2.0")
19566 (source
19567 (origin
19568 (method url-fetch)
19569 (uri (crate-uri "pom" version))
19570 (file-name
19571 (string-append name "-" version ".tar.gz"))
19572 (sha256
19573 (base32
19574 "1v14c2p1irblagnljkw4n0f1w5r8mbybzycz0j1f5y79h0kikqh7"))))
19575 (build-system cargo-build-system)
19576 (home-page "https://github.com/J-F-Liu/pom")
19577 (synopsis "PEG parser combinators using operator overloading without macros")
19578 (description "This package provides a PEG parser combinators using operator
19579 overloading without macros in Rust.")
19580 (license license:expat)))
19581
19582 (define-public rust-ppv-lite86-0.2
19583 (package
19584 (name "rust-ppv-lite86")
19585 (version "0.2.8")
19586 (source
19587 (origin
19588 (method url-fetch)
19589 (uri (crate-uri "ppv-lite86" version))
19590 (file-name (string-append name "-" version ".crate"))
19591 (sha256
19592 (base32
19593 "1shj4q7jwj0azssr8cg51dk3kh7d4lg9rmbbz1kbqk971vc5wyi3"))))
19594 (build-system cargo-build-system)
19595 (home-page "https://github.com/cryptocorrosion/cryptocorrosion")
19596 (synopsis "Implementation of the crypto-simd API for x86")
19597 (description "This crate provides an implementation of the crypto-simd API
19598 for x86.")
19599 (license (list license:asl2.0
19600 license:expat))))
19601
19602 (define-public rust-pq-sys-0.4
19603 (package
19604 (name "rust-pq-sys")
19605 (version "0.4.6")
19606 (source
19607 (origin
19608 (method url-fetch)
19609 (uri (crate-uri "pq-sys" version))
19610 (file-name (string-append name "-" version ".tar.gz"))
19611 (sha256
19612 (base32
19613 "1npz9756283pjq3lcpwss8xh1rw4sx8f6dz8cxdg90h5bbp5xhka"))))
19614 (build-system cargo-build-system)
19615 (arguments
19616 `(#:cargo-inputs
19617 (("rust-pkg-config" ,rust-pkg-config-0.3)
19618 ("rust-vcpkg" ,rust-vcpkg-0.2))))
19619 (native-inputs
19620 `(("postgresql" ,postgresql)))
19621 (home-page "https://crates.io/crates/pq-sys")
19622 (synopsis "Auto-generated rust bindings for libpq")
19623 (description "This package provides auto-generated rust bindings for
19624 libpq.")
19625 (license (list license:expat license:asl2.0))))
19626
19627 (define-public rust-precomputed-hash-0.1
19628 (package
19629 (name "rust-precomputed-hash")
19630 (version "0.1.1")
19631 (source
19632 (origin
19633 (method url-fetch)
19634 (uri (crate-uri "precomputed-hash" version))
19635 (file-name
19636 (string-append name "-" version ".tar.gz"))
19637 (sha256
19638 (base32
19639 "075k9bfy39jhs53cb2fpb9klfakx2glxnf28zdw08ws6lgpq6lwj"))))
19640 (build-system cargo-build-system)
19641 (arguments `(#:skip-build? #t))
19642 (home-page
19643 "https://github.com/emilio/precomputed-hash")
19644 (synopsis
19645 "Base dependency to expose a precomputed hash")
19646 (description
19647 "This package provides a library intending to be a base
19648 dependency to expose a precomputed hash.")
19649 (license license:expat)))
19650
19651 (define-public rust-predicates-1
19652 (package
19653 (name "rust-predicates")
19654 (version "1.0.4")
19655 (source
19656 (origin
19657 (method url-fetch)
19658 (uri (crate-uri "predicates" version))
19659 (file-name
19660 (string-append name "-" version ".tar.gz"))
19661 (sha256
19662 (base32
19663 "0c0hafd7z7v97218na8nampmy64f7fw61yvjk2y3dri11dpinyil"))))
19664 (build-system cargo-build-system)
19665 (arguments
19666 `(#:cargo-inputs
19667 (("rust-difference" ,rust-difference-2)
19668 ("rust-float-cmp" ,rust-float-cmp-0.6)
19669 ("rust-normalize-line-endings" ,rust-normalize-line-endings-0.3)
19670 ("rust-predicates-core" ,rust-predicates-core-1)
19671 ("rust-regex" ,rust-regex-1))
19672 #:cargo-development-inputs
19673 (("rust-predicates-tree" ,rust-predicates-tree-1))))
19674 (home-page "https://github.com/assert-rs/predicates-rs")
19675 (synopsis
19676 "Implementation of boolean-valued predicate functions")
19677 (description
19678 "An implementation of boolean-valued predicate functions.")
19679 (license (list license:expat license:asl2.0))))
19680
19681 (define-public rust-predicates-core-1
19682 (package
19683 (name "rust-predicates-core")
19684 (version "1.0.0")
19685 (source
19686 (origin
19687 (method url-fetch)
19688 (uri (crate-uri "predicates-core" version))
19689 (file-name
19690 (string-append name "-" version ".tar.gz"))
19691 (sha256
19692 (base32
19693 "0y3ingf2i4xx7r61f1a8wizs57j8hh32hylyjbw9ymcj7qx5q1q6"))))
19694 (build-system cargo-build-system)
19695 (home-page
19696 "https://github.com/assert-rs/predicates-rs/tree/master/predicates-core")
19697 (synopsis "API for boolean-valued predicate functions")
19698 (description
19699 "An API for boolean-valued predicate functions.")
19700 (license (list license:expat license:asl2.0))))
19701
19702 (define-public rust-predicates-tree-1
19703 (package
19704 (name "rust-predicates-tree")
19705 (version "1.0.0")
19706 (source
19707 (origin
19708 (method url-fetch)
19709 (uri (crate-uri "predicates-tree" version))
19710 (file-name
19711 (string-append name "-" version ".tar.gz"))
19712 (sha256
19713 (base32
19714 "090148qjilm2c722l873z7g31fhzj5j4qhd2xiv8mcqkj22w8qwf"))))
19715 (build-system cargo-build-system)
19716 (arguments
19717 `(#:cargo-inputs
19718 (("rust-predicates-core" ,rust-predicates-core-1)
19719 ("rust-treeline" ,rust-treeline-0.1))))
19720 (home-page
19721 "https://github.com/assert-rs/predicates-rs/tree/master/predicates-tree")
19722 (synopsis
19723 "Render boolean-valued predicate functions results as a tree")
19724 (description
19725 "Render boolean-valued predicate functions results as a tree.")
19726 (license (list license:expat license:asl2.0))))
19727
19728 (define-public rust-pretty-assertions-0.6
19729 (package
19730 (name "rust-pretty-assertions")
19731 (version "0.6.1")
19732 (source
19733 (origin
19734 (method url-fetch)
19735 (uri (crate-uri "pretty_assertions" version))
19736 (file-name
19737 (string-append name "-" version ".tar.gz"))
19738 (sha256
19739 (base32
19740 "09yl14gnmpygiqrdlsa64lcl4w6ydjl9m8jri6kgam0v9rjf309z"))))
19741 (build-system cargo-build-system)
19742 (arguments
19743 `(#:skip-build? #t
19744 #:cargo-inputs
19745 (("rust-ctor" ,rust-ctor-0.1)
19746 ("rust-output-vt100" ,rust-output-vt100-0.1)
19747 ("rust-ansi-term" ,rust-ansi-term-0.11)
19748 ("rust-difference" ,rust-difference-2))))
19749 (home-page "https://github.com/colin-kiegel/rust-pretty-assertions")
19750 (synopsis "Drop-in replacements for assert_eq! and assert_ne!")
19751 (description
19752 "Overwrite @code{assert_eq!} and @code{assert_ne!} with drop-in
19753 replacements, adding colorful diffs.")
19754 (license (list license:expat license:asl2.0))))
19755
19756 (define-public rust-pretty-assertions-0.4
19757 (package
19758 (inherit rust-pretty-assertions-0.6)
19759 (name "rust-pretty-assertions")
19760 (version "0.4.1")
19761 (source
19762 (origin
19763 (method url-fetch)
19764 (uri (crate-uri "pretty_assertions" version))
19765 (file-name
19766 (string-append name "-" version ".tar.gz"))
19767 (sha256
19768 (base32
19769 "1llxlnhh4qz9kda27v6nllgzvgi1fv08i3djfk4zn6zlw8c53si8"))))
19770 (build-system cargo-build-system)
19771 (arguments
19772 `(#:tests? #f
19773 #:cargo-inputs
19774 (("rust-ansi-term" ,rust-ansi-term-0.9)
19775 ("rust-difference" ,rust-difference-1))))))
19776
19777 (define-public rust-pretty-assertions-0.2
19778 (package
19779 (name "rust-pretty-assertions")
19780 (version "0.2.1")
19781 (source
19782 (origin
19783 (method url-fetch)
19784 (uri (crate-uri "pretty-assertions" version))
19785 (file-name (string-append name "-" version ".tar.gz"))
19786 (sha256
19787 (base32 "1b3nv70i16737w3qkk1q5vqswwnb19znz8r9v2kcg1qyhh3h0l8x"))))
19788 (build-system cargo-build-system)
19789 (arguments
19790 `(#:cargo-inputs
19791 (("rust-difference" ,rust-difference-1))))
19792 (home-page "https://github.com/colin-kiegel/rust-pretty-assertions")
19793 (synopsis "Colorful diffs for `assert_eq!` and `assert_ne!`")
19794 (description "Overwrite `assert_eq!` and `assert_ne!` with drop-in
19795 replacements, adding colorful diffs.")
19796 (license (list license:expat license:asl2.0))))
19797
19798 (define-public rust-pretty-env-logger-0.4
19799 (package
19800 (name "rust-pretty-env-logger")
19801 (version "0.4.0")
19802 (source
19803 (origin
19804 (method url-fetch)
19805 (uri (crate-uri "pretty-env-logger" version))
19806 (file-name
19807 (string-append name "-" version ".tar.gz"))
19808 (sha256
19809 (base32
19810 "17gva1rlf9fhgr0jr19kv39f8bir3f4pa4jz02qbhl9qanwkcvcj"))))
19811 (build-system cargo-build-system)
19812 (arguments
19813 `(#:cargo-inputs
19814 (("rust-env-logger" ,rust-env-logger-0.7)
19815 ("rust-log" ,rust-log-0.4))))
19816 (home-page "https://github.com/seanmonstar/pretty-env-logger")
19817 (synopsis "Visually pretty env_logger")
19818 (description "This package provides a visually pretty env_logger.")
19819 (license (list license:expat license:asl2.0))))
19820
19821 (define-public rust-pretty-env-logger-0.3
19822 (package
19823 (inherit rust-pretty-env-logger-0.4)
19824 (name "rust-pretty-env-logger")
19825 (version "0.3.1")
19826 (source
19827 (origin
19828 (method url-fetch)
19829 (uri (crate-uri "pretty_env_logger" version))
19830 (file-name
19831 (string-append name "-" version ".tar.gz"))
19832 (sha256
19833 (base32
19834 "0x4hyjlnvvhyk9m74iypzybm22w3dl2k8img4b956239n5vf8zki"))))
19835 (arguments
19836 `(#:skip-build? #t
19837 #:cargo-inputs
19838 (("rust-log" ,rust-log-0.4)
19839 ("rust-chrono" ,rust-chrono-0.4)
19840 ("rust-env-logger" ,rust-env-logger-0.6))))))
19841
19842 (define-public rust-prettytable-rs-0.8
19843 (package
19844 (name "rust-prettytable-rs")
19845 (version "0.8.0")
19846 (source
19847 (origin
19848 (method url-fetch)
19849 (uri (crate-uri "prettytable-rs" version))
19850 (file-name (string-append name "-" version ".tar.gz"))
19851 (sha256
19852 (base32 "0bmcsxkcy94hi0jz5db0fz137w5aaf17z2j1ryn2vyh400blpl0g"))))
19853 (build-system cargo-build-system)
19854 (arguments
19855 `(#:cargo-inputs
19856 (("rust-atty" ,rust-atty-0.2)
19857 ("rust-csv" ,rust-csv-1.1)
19858 ("rust-encode-unicode" ,rust-encode-unicode-0.3)
19859 ("rust-lazy-static" ,rust-lazy-static-1)
19860 ("rust-term" ,rust-term-0.5)
19861 ("rust-unicode-width" ,rust-unicode-width-0.1))))
19862 (home-page "https://github.com/phsym/prettytable-rs")
19863 (synopsis "Library for printing pretty formatted tables in terminal")
19864 (description "This package provides a library for printing pretty
19865 formatted tables in terminal.")
19866 (license license:bsd-3)))
19867
19868 (define-public rust-proc-macro-error-0.4
19869 (package
19870 (name "rust-proc-macro-error")
19871 (version "0.4.12")
19872 (source
19873 (origin
19874 (method url-fetch)
19875 (uri (crate-uri "proc-macro-error" version))
19876 (file-name
19877 (string-append name "-" version ".tar.gz"))
19878 (sha256
19879 (base32
19880 "1rvpaadwv7vmsp142qqh2axqrr9v78f1nvdsi9nhmfhy10kk1wqq"))))
19881 (build-system cargo-build-system)
19882 (arguments
19883 `(#:skip-build? #t
19884 #:cargo-inputs
19885 (("rust-proc-macro-error-attr" ,rust-proc-macro-error-attr-0.4)
19886 ("rust-version-check" ,rust-version-check-0.9)
19887 ("rust-proc-macro2" ,rust-proc-macro2-1)
19888 ("rust-syn" ,rust-syn-1)
19889 ("rust-quote" ,rust-quote-1))))
19890 (home-page "https://gitlab.com/CreepySkeleton/proc-macro-error")
19891 (synopsis "Almost drop-in replacement to panics in proc-macros")
19892 (description
19893 "Almost drop-in replacement to panics in proc-macros.")
19894 (license (list license:expat license:asl2.0))))
19895
19896 (define-public rust-proc-macro-error-attr-0.4
19897 (package
19898 (name "rust-proc-macro-error-attr")
19899 (version "0.4.12")
19900 (source
19901 (origin
19902 (method url-fetch)
19903 (uri (crate-uri "proc-macro-error-attr" version))
19904 (file-name
19905 (string-append name "-" version ".tar.gz"))
19906 (sha256
19907 (base32
19908 "1pk9mwcfnpf8favgc2cl4sqlmi818p96hg8pfb51wg5nzmvlnnwa"))))
19909 (build-system cargo-build-system)
19910 (arguments
19911 `(#:skip-build? #t
19912 #:cargo-inputs
19913 (("rust-syn-mid" ,rust-syn-mid-0.5)
19914 ("rust-version-check" ,rust-version-check-0.9)
19915 ("rust-proc-macro2" ,rust-proc-macro2-1)
19916 ("rust-syn" ,rust-syn-1)
19917 ("rust-quote" ,rust-quote-1))))
19918 (home-page "https://gitlab.com/CreepySkeleton/proc-macro-error")
19919 (synopsis "Attribute macro for proc-macro-error crate")
19920 (description
19921 "Attribute macro for proc-macro-error crate.")
19922 (license (list license:expat license:asl2.0))))
19923
19924 (define-public rust-proc-macro-hack-0.5
19925 (package
19926 (name "rust-proc-macro-hack")
19927 (version "0.5.16")
19928 (source
19929 (origin
19930 (method url-fetch)
19931 (uri (crate-uri "proc-macro-hack" version))
19932 (file-name
19933 (string-append name "-" version ".tar.gz"))
19934 (sha256
19935 (base32
19936 "1r657v7d9vh1ivrvq65rvg9gjb29dpa0l3zg2fgrn5j8znz5c13y"))))
19937 (build-system cargo-build-system)
19938 (arguments
19939 `(#:cargo-development-inputs
19940 (("rust-quote" ,rust-quote-1)
19941 ("rust-rustversion" ,rust-rustversion-1)
19942 ("rust-syn" ,rust-syn-1)
19943 ("rust-trybuild" ,rust-trybuild-1)
19944 ("rust-demo-hack" ,rust-demo-hack-0.0)
19945 ("rust-demo-hack-impl" ,rust-demo-hack-impl-0.0))))
19946 (home-page "https://github.com/dtolnay/proc-macro-hack")
19947 (synopsis
19948 "Procedural macros in expression position")
19949 (description
19950 "Procedural macros in expression position.")
19951 (license (list license:expat license:asl2.0))))
19952
19953 (define-public rust-proc-macro-hack-0.4
19954 (package
19955 (inherit rust-proc-macro-hack-0.5)
19956 (name "rust-proc-macro-hack")
19957 (version "0.4.2")
19958 (source
19959 (origin
19960 (method url-fetch)
19961 (uri (crate-uri "proc-macro-hack" version))
19962 (file-name
19963 (string-append name "-" version ".tar.gz"))
19964 (sha256
19965 (base32
19966 "0fxn3qfhw76c518dfal2qqjwj5dbf0a1f7z0r5c4wd0igygg4fs6"))))
19967 (arguments
19968 `(#:skip-build? #t
19969 #:cargo-inputs
19970 (("rust-proc-macro-hack-impl" ,rust-proc-macro-hack-impl-0.4))
19971 #:cargo-development-inputs
19972 (("rust-demo-hack" ,rust-demo-hack-0.0)
19973 ("rust-demo-hack-impl" ,rust-demo-hack-impl-0.0))))))
19974
19975 (define-public rust-proc-macro-hack-impl-0.4
19976 (package
19977 (name "rust-proc-macro-hack-impl")
19978 (version "0.4.2")
19979 (source
19980 (origin
19981 (method url-fetch)
19982 (uri (crate-uri "proc-macro-hack-impl" version))
19983 (file-name
19984 (string-append name "-" version ".tar.gz"))
19985 (sha256
19986 (base32
19987 "0hk8g6s0zsi1ps0w48la2s8q5iqq42g8jfrgq3l2v04l2p5pvi1q"))))
19988 (build-system cargo-build-system)
19989 (home-page "https://github.com/dtolnay/proc-macro-hack")
19990 (synopsis "Procedural functionlike!() macros using only Macros 1.1")
19991 (description
19992 "Procedural functionlike!() macros using only Macros 1.1.")
19993 (license (list license:expat license:asl2.0))))
19994
19995 (define-public rust-proc-macro-nested-0.1
19996 (package
19997 (name "rust-proc-macro-nested")
19998 (version "0.1.6")
19999 (source
20000 (origin
20001 (method url-fetch)
20002 (uri (crate-uri "proc-macro-nested" version))
20003 (file-name
20004 (string-append name "-" version ".tar.gz"))
20005 (sha256
20006 (base32
20007 "0nnwm9bvp1fmr8nqjp8ynrkj97yzpsdh3062li8b0f4hzgd818gb"))))
20008 (build-system cargo-build-system)
20009 (home-page "https://github.com/dtolnay/proc-macro-hack")
20010 (synopsis
20011 "Support for nested proc-macro-hack invocations")
20012 (description
20013 "Support for nested proc-macro-hack invocations.")
20014 (license (list license:expat license:asl2.0))))
20015
20016 (define-public rust-proc-macro2-1
20017 (package
20018 (name "rust-proc-macro2")
20019 (version "1.0.24")
20020 (source
20021 (origin
20022 (method url-fetch)
20023 (uri (crate-uri "proc-macro2" version))
20024 (file-name (string-append name "-" version ".crate"))
20025 (sha256
20026 (base32
20027 "0wcabxzrddcjmryndw8fpyxcq6rw63m701vx86xxf03y3bp081qy"))))
20028 (build-system cargo-build-system)
20029 (arguments
20030 `(#:cargo-test-flags '("--lib")
20031 #:cargo-inputs
20032 (("rust-unicode-xid" ,rust-unicode-xid-0.2))
20033 #:cargo-development-inputs
20034 (("rust-quote" ,rust-quote-1))))
20035 (home-page "https://github.com/alexcrichton/proc-macro2")
20036 (synopsis "Stable implementation of the upcoming new `proc_macro` API")
20037 (description "This package provides a stable implementation of the upcoming new
20038 `proc_macro` API. Comes with an option, off by default, to also reimplement itself
20039 in terms of the upstream unstable API.")
20040 (license (list license:asl2.0 license:expat))))
20041
20042 (define-public rust-proc-macro2-0.4
20043 (package
20044 (inherit rust-proc-macro2-1)
20045 (name "rust-proc-macro2")
20046 (version "0.4.30")
20047 (source
20048 (origin
20049 (method url-fetch)
20050 (uri (crate-uri "proc-macro2" version))
20051 (file-name (string-append name "-" version ".tar.gz"))
20052 (sha256
20053 (base32
20054 "0nd71fl24sys066jrha6j7i34nfkjv44yzw8yww9742wmc8j0gfg"))))
20055 (arguments
20056 `(#:tests? #f ; doc tests fail
20057 #:cargo-inputs
20058 (("rust-unicode-xid" ,rust-unicode-xid-0.1))
20059 #:cargo-development-inputs
20060 (("rust-quote" ,rust-quote-0.6))))))
20061
20062 (define-public rust-proc-macro2-0.3
20063 (package
20064 (name "rust-proc-macro2")
20065 (version "0.3.8")
20066 (source
20067 (origin
20068 (method url-fetch)
20069 (uri (crate-uri "proc-macro2" version))
20070 (file-name
20071 (string-append name "-" version ".tar.gz"))
20072 (sha256
20073 (base32
20074 "1ryaynnaj39l4zphcg5w8wszndd80vsrv89m5d2293gl6pry41hv"))))
20075 (build-system cargo-build-system)
20076 (arguments
20077 `(#:skip-build? #t
20078 #:cargo-inputs
20079 (("rust-unicode-xid" ,rust-unicode-xid-0.1))))
20080 (home-page "https://github.com/alexcrichton/proc-macro2")
20081 (synopsis
20082 "Substitute implementation of the compiler's `proc_macro` API")
20083 (description
20084 "This package provides a substitute implementation of the compiler's
20085 @code{proc_macro} API to decouple token-based libraries from the procedural
20086 macro use case.")
20087 (license (list license:expat license:asl2.0))))
20088
20089 (define-public rust-procedural-masquerade-0.1
20090 (package
20091 (name "rust-procedural-masquerade")
20092 (version "0.1.7")
20093 (source
20094 (origin
20095 (method url-fetch)
20096 (uri (crate-uri "procedural-masquerade" version))
20097 (file-name
20098 (string-append name "-" version ".tar.gz"))
20099 (sha256
20100 (base32
20101 "17dnfdk0qadh2h38bkwcy14cq8a1ild3j3hqmh1yjbq9ykgq64wg"))))
20102 (build-system cargo-build-system)
20103 (home-page "https://github.com/servo/rust-cssparser")
20104 (synopsis "Macro rules for proc-macro-derive")
20105 (description
20106 "This package provides @code{macro_rules} for making
20107 @code{proc_macro_derive} pretend to be @code{proc_macro}.")
20108 (license (list license:expat license:asl2.0))))
20109
20110 (define-public rust-progrs-0.1
20111 (package
20112 (name "rust-progrs")
20113 (version "0.1.1")
20114 (source
20115 (origin
20116 (method url-fetch)
20117 (uri (crate-uri "progrs" version))
20118 (file-name
20119 (string-append name "-" version ".tar.gz"))
20120 (sha256
20121 (base32
20122 "108jx8jrv2r1brhvbqfw6fwx298k5fnw3m46kn7lv0jx2wmf0ifz"))))
20123 (build-system cargo-build-system)
20124 (arguments '(#:tests? #f))
20125 (home-page "https://nest.pijul.com/laumann/progrs")
20126 (synopsis "Small library for displaying compact progress bars")
20127 (description
20128 "There are a number of libraries out there that can be used for progress
20129 display, but in the author's opinion these libraries do it almost right -
20130 either they eat up too much screen real estate (by not sticking to one line
20131 per thing that should use progress) or they try to align stuff left and right.
20132
20133 In the author's humble opinion, the best example of just the right amount of
20134 information vs screen real-estate is in the Git progress output (when cloning,
20135 pulling, etc). It uses one line per thing, and may display both percentage
20136 complete (in cases where it's known) and even throughput (for network
20137 transfer).
20138
20139 This library mimics the Git way of showing progress.")
20140 (license license:gpl2+)))
20141
20142 (define-public rust-proptest-0.9
20143 (package
20144 (name "rust-proptest")
20145 (version "0.9.6")
20146 (source
20147 (origin
20148 (method url-fetch)
20149 (uri (crate-uri "proptest" version))
20150 (file-name
20151 (string-append name "-" version ".tar.gz"))
20152 (sha256
20153 (base32
20154 "0nsslp46lvf3ll5rd83rin652qlz1kqyp0rmsciy0pw4kf0pgi01"))))
20155 (build-system cargo-build-system)
20156 (arguments
20157 `(#:cargo-inputs
20158 (("rust-bit-set" ,rust-bit-set-0.5)
20159 ("rust-bitflags" ,rust-bitflags-1)
20160 ("rust-byteorder" ,rust-byteorder-1)
20161 ("rust-lazy-static" ,rust-lazy-static-1)
20162 ("rust-num-traits" ,rust-num-traits-0.2)
20163 ("rust-quick-error" ,rust-quick-error-1.2)
20164 ("rust-rand" ,rust-rand-0.6)
20165 ("rust-rand-chacha" ,rust-rand-chacha-0.1)
20166 ("rust-rand-xorshift" ,rust-rand-xorshift-0.1)
20167 ("rust-regex-syntax" ,rust-regex-syntax-0.6)
20168 ("rust-rusty-fork" ,rust-rusty-fork-0.2)
20169 ("rust-tempfile" ,rust-tempfile-3))
20170 #:cargo-development-inputs
20171 (("rust-regex" ,rust-regex-1))))
20172 (home-page
20173 "https://altsysrq.github.io/proptest-book/proptest/index.html")
20174 (synopsis
20175 "Hypothesis-like property-based testing and shrinking")
20176 (description
20177 "Hypothesis-like property-based testing and shrinking.")
20178 (license (list license:asl2.0 license:expat))))
20179
20180 (define-public rust-proptest-0.8
20181 (package
20182 (inherit rust-proptest-0.9)
20183 (name "rust-proptest")
20184 (version "0.8.7")
20185 (source
20186 (origin
20187 (method url-fetch)
20188 (uri (crate-uri "proptest" version))
20189 (file-name
20190 (string-append name "-" version ".tar.gz"))
20191 (sha256
20192 (base32
20193 "07qrxwsd72wr1cqs0b5b159lnagjffp0l4s4zriz8jak8w20cvcj"))))
20194 (build-system cargo-build-system)
20195 (arguments
20196 `(#:tests? #f ; 1 doc test fails
20197 #:cargo-inputs
20198 (("rust-bit-set" ,rust-bit-set-0.5)
20199 ("rust-bitflags" ,rust-bitflags-1)
20200 ("rust-byteorder" ,rust-byteorder-1)
20201 ("rust-lazy-static" ,rust-lazy-static-1)
20202 ("rust-num-traits" ,rust-num-traits-0.2)
20203 ("rust-quick-error" ,rust-quick-error-1.2)
20204 ("rust-rand" ,rust-rand-0.5)
20205 ("rust-regex-syntax" ,rust-regex-syntax-0.6)
20206 ("rust-rusty-fork" ,rust-rusty-fork-0.2)
20207 ("rust-tempfile" ,rust-tempfile-3))
20208 #:cargo-development-inputs
20209 (("rust-regex" ,rust-regex-1))))))
20210
20211 (define-public rust-proptest-0.7
20212 (package
20213 (inherit rust-proptest-0.9)
20214 (name "rust-proptest")
20215 (version "0.7.2")
20216 (source
20217 (origin
20218 (method url-fetch)
20219 (uri (crate-uri "proptest" version))
20220 (file-name
20221 (string-append name "-" version ".tar.gz"))
20222 (sha256
20223 (base32
20224 "13giz85f7jkjc8miplzj4zh3fr704c1y1cg0dh218iw2dfkpbwi7"))))
20225 (arguments
20226 `(#:cargo-inputs
20227 (("rust-bit-set" ,rust-bit-set-0.5)
20228 ("rust-bitflags" ,rust-bitflags-1)
20229 ("rust-lazy-static" ,rust-lazy-static-1)
20230 ("rust-num-traits" ,rust-num-traits-0.2)
20231 ("rust-quick-error" ,rust-quick-error-1.2)
20232 ("rust-rand" ,rust-rand-0.4)
20233 ("rust-regex-syntax" ,rust-regex-syntax-0.4)
20234 ("rust-rusty-fork" ,rust-rusty-fork-0.2)
20235 ("rust-tempfile" ,rust-tempfile-3))
20236 #:cargo-development-inputs
20237 (("rust-regex" ,rust-regex-0.2))))))
20238
20239 (define-public rust-proptest-0.3
20240 (package
20241 (inherit rust-proptest-0.7)
20242 (name "rust-proptest")
20243 (version "0.3.4")
20244 (source
20245 (origin
20246 (method url-fetch)
20247 (uri (crate-uri "proptest" version))
20248 (file-name
20249 (string-append name "-" version ".tar.gz"))
20250 (sha256
20251 (base32
20252 "15633iq8x3x0im5vyij2gr8ncpflv4fa9w63rh94k20xhzv4m308"))))
20253 (arguments
20254 `(#:cargo-inputs
20255 (("rust-bit-set" ,rust-bit-set-0.4)
20256 ("rust-lazy-static" ,rust-lazy-static-0.2)
20257 ("rust-quick-error" ,rust-quick-error-1.2)
20258 ("rust-rand" ,rust-rand-0.3)
20259 ("rust-regex-syntax" ,rust-regex-syntax-0.4))
20260 #:cargo-development-inputs
20261 (("rust-regex" ,rust-regex-0.2))))))
20262
20263 (define-public rust-proptest-derive-0.1
20264 (package
20265 (name "rust-proptest-derive")
20266 (version "0.1.2")
20267 (source
20268 (origin
20269 (method url-fetch)
20270 (uri (crate-uri "proptest-derive" version))
20271 (file-name (string-append name "-" version ".tar.gz"))
20272 (sha256
20273 (base32
20274 "0nziczbm7w0jisjrd216hh2j45fs5m363ga7r6nawwxcxlbxn7nk"))))
20275 (build-system cargo-build-system)
20276 (arguments
20277 `(#:cargo-inputs
20278 (("rust-proc-macro2" ,rust-proc-macro2-0.4)
20279 ("rust-quote" ,rust-quote-0.6)
20280 ("rust-syn" ,rust-syn-0.15))
20281 #:cargo-development-inputs
20282 (("rust-compiletest-rs" ,rust-compiletest-rs-0.3)
20283 ("rust-criterion" ,rust-criterion-0.2)
20284 ("rust-proptest" ,rust-proptest-0.9))))
20285 (home-page
20286 "https://altsysrq.github.io/proptest-book/proptest-derive/index.html")
20287 (synopsis "Custom-derive for the Arbitrary trait of proptest")
20288 (description "This package provides a Custom-derive for the Arbitrary
20289 trait of proptest.")
20290 (license (list license:expat license:asl2.0))))
20291
20292 (define-public rust-psm-0.1
20293 (package
20294 (name "rust-psm")
20295 (version "0.1.10")
20296 (source
20297 (origin
20298 (method url-fetch)
20299 (uri (crate-uri "psm" version))
20300 (file-name
20301 (string-append name "-" version ".tar.gz"))
20302 (sha256
20303 (base32
20304 "1kr9sal8g9zil4ch8ra0ry96d5cl15xslk1p0wnqk1504ib3hb89"))))
20305 (build-system cargo-build-system)
20306 (arguments
20307 `(#:cargo-development-inputs
20308 (("rust-cc" ,rust-cc-1))))
20309 (home-page "https://github.com/rust-lang/stacker/")
20310 (synopsis "Stack manipulation and introspection routines")
20311 (description "This crate provides very portable functions to control the
20312 stack pointer and inspect the properties of the stack.")
20313 (license (list license:isc license:asl2.0))))
20314
20315 (define-public rust-publicsuffix-1
20316 (package
20317 (name "rust-publicsuffix")
20318 (version "1.5.4")
20319 (source
20320 (origin
20321 (method url-fetch)
20322 (uri (crate-uri "publicsuffix" version))
20323 (file-name (string-append name "-" version ".tar.gz"))
20324 (sha256
20325 (base32
20326 "0yvmjpywfyypfr17kxiwy6ssykgv8nmcdhfakas6548pfn8a9fiv"))))
20327 (build-system cargo-build-system)
20328 (arguments
20329 `(#:cargo-inputs
20330 (("rust-error-chain" ,rust-error-chain-0.12)
20331 ("rust-idna" ,rust-idna-0.2)
20332 ("rust-lazy-static" ,rust-lazy-static-1)
20333 ("rust-native-tls" ,rust-native-tls-0.2)
20334 ("rust-regex" ,rust-regex-1)
20335 ("rust-url" ,rust-url-2))
20336 #:cargo-development-inputs
20337 (("rust-rspec" ,rust-rspec-1))))
20338 (home-page "https://github.com/rushmorem/publicsuffix")
20339 (synopsis "Domain name parsing and email address validation")
20340 (description "This package provides robust domain name parsing and RFC
20341 compliant email address validation.")
20342 (license (list license:expat license:asl2.0))))
20343
20344 (define-public rust-pulldown-cmark-0.4
20345 (package
20346 (name "rust-pulldown-cmark")
20347 (version "0.4.1")
20348 (source
20349 (origin
20350 (method url-fetch)
20351 (uri (crate-uri "pulldown-cmark" version))
20352 (file-name
20353 (string-append name "-" version ".tar.gz"))
20354 (sha256
20355 (base32
20356 "1db8vlhm3n72051bkq4am80q28rfrh88796i3y9ajf5hhk3lrdyi"))))
20357 (build-system cargo-build-system)
20358 (arguments
20359 `(#:skip-build? #t
20360 #:cargo-inputs
20361 (("rust-bitflags" ,rust-bitflags-1)
20362 ("rust-getopts" ,rust-getopts-0.2)
20363 ("rust-memchr" ,rust-memchr-2)
20364 ("rust-unicase" ,rust-unicase-2))
20365 #:cargo-development-inputs
20366 (("rust-criterion" ,rust-criterion-0.2)
20367 ("rust-html5ever" ,rust-html5ever-0.23)
20368 ("rust-lazy-static" ,rust-lazy-static-1)
20369 ("rust-regex" ,rust-regex-1)
20370 ("rust-tendril" ,rust-tendril-0.4))))
20371 (home-page "https://github.com/raphlinus/pulldown-cmark")
20372 (synopsis "Pull parser for CommonMark")
20373 (description
20374 "This package provides a pull parser for CommonMark.")
20375 (license license:expat)))
20376
20377 (define-public rust-pulldown-cmark-0.2
20378 (package
20379 (name "rust-pulldown-cmark")
20380 (version "0.2.0")
20381 (source
20382 (origin
20383 (method url-fetch)
20384 (uri (crate-uri "pulldown-cmark" version))
20385 (file-name
20386 (string-append name "-" version ".tar.gz"))
20387 (sha256
20388 (base32
20389 "05gfnqa0wzix5m17jrmgj0yyr9sflqm0knn79ndppsnhcan2zxgf"))))
20390 (build-system cargo-build-system)
20391 (arguments
20392 `(#:skip-build? #t
20393 #:cargo-inputs
20394 (("rust-getopts" ,rust-getopts-0.2)
20395 ("rust-bitflags" ,rust-bitflags-1))))
20396 (home-page "https://github.com/raphlinus/pulldown-cmark")
20397 (synopsis "Pull parser for CommonMark")
20398 (description
20399 "This package provides a pull parser for CommonMark.")
20400 (license license:expat)))
20401
20402 (define-public rust-pulldown-cmark-0.1
20403 (package
20404 (inherit rust-pulldown-cmark-0.2)
20405 (name "rust-pulldown-cmark")
20406 (version "0.1.2")
20407 (source
20408 (origin
20409 (method url-fetch)
20410 (uri (crate-uri "pulldown-cmark" version))
20411 (file-name
20412 (string-append name "-" version ".tar.gz"))
20413 (sha256
20414 (base32
20415 "0ckflr6w5vfvgb2xnzbnph9b6c0k8cfncm4a8bjzmbbcv9fgizfn"))))
20416 (arguments
20417 `(#:tests? #f
20418 #:cargo-inputs
20419 (("rust-bitflags" ,rust-bitflags-0.9)
20420 ("rust-getopts" ,rust-getopts-0.2))))))
20421
20422 (define-public rust-pulldown-cmark-0.0.8
20423 (package/inherit rust-pulldown-cmark-0.4
20424 (name "rust-pulldown-cmark")
20425 (version "0.0.8")
20426 (source
20427 (origin
20428 (method url-fetch)
20429 (uri (crate-uri "pulldown-cmark" version))
20430 (file-name (string-append name "-" version ".tar.gz"))
20431 (sha256
20432 (base32 "0hbg68h1w48cp72n95hjmbm70jrb5khc9vipcmjng83wjaxxfn0h"))))
20433 (build-system cargo-build-system)
20434 (arguments
20435 `(#:cargo-inputs
20436 (("rust-bitflags" ,rust-bitflags-0.5)
20437 ("rust-getopts" ,rust-getopts-0.2))))))
20438
20439 (define-public rust-pulse-0.5
20440 (package
20441 (name "rust-pulse")
20442 (version "0.5.3")
20443 (source
20444 (origin
20445 (method url-fetch)
20446 (uri (crate-uri "pulse" version))
20447 (file-name (string-append name "-" version ".tar.gz"))
20448 (sha256
20449 (base32
20450 "1w4skcnwmavm8ra9blf1hy7bc9grnin2kziiyc18lsnrr2v14mk5"))))
20451 (build-system cargo-build-system)
20452 (arguments
20453 `(#:cargo-inputs
20454 (("rust-atom" ,rust-atom-0.3)
20455 ("rust-time" ,rust-time-0.1))))
20456 (home-page "https://github.com/csherratt/pulse")
20457 (synopsis "Async wake signals library")
20458 (description "This package provides a library for async wake signals.")
20459 (license license:asl2.0)))
20460
20461 (define-public rust-quantiles-0.7
20462 (package
20463 (name "rust-quantiles")
20464 (version "0.7.1")
20465 (source
20466 (origin
20467 (method url-fetch)
20468 (uri (crate-uri "quantiles" version))
20469 (file-name
20470 (string-append name "-" version ".tar.gz"))
20471 (sha256
20472 (base32
20473 "1wjp16a3d4bmldq9w2wds0q4gjz4mnsqac3g38r6ryr6zc9sh3y1"))))
20474 (build-system cargo-build-system)
20475 (arguments
20476 `(#:cargo-inputs
20477 (("rust-serde" ,rust-serde-1)
20478 ("rust-serde-derive" ,rust-serde-derive-1))
20479 #:cargo-development-inputs
20480 (("rust-quickcheck" ,rust-quickcheck-0.5))))
20481 (home-page "https://github.com/postmates/quantiles")
20482 (synopsis "Collection of approximate quantile algorithms")
20483 (description
20484 "This package provides a collection of approximate quantile algorithms.")
20485 (license license:expat)))
20486
20487 (define-public rust-quasi-0.32
20488 (package
20489 (name "rust-quasi")
20490 (version "0.32.0")
20491 (source
20492 (origin
20493 (method url-fetch)
20494 (uri (crate-uri "quasi" version))
20495 (file-name
20496 (string-append name "-" version ".tar.gz"))
20497 (sha256
20498 (base32
20499 "1csqqgz3aw85q570ywmhb34r3sqgi1sprf8xadfwzlfnai45ri0q"))))
20500 (build-system cargo-build-system)
20501 (arguments
20502 `(#:skip-build? #t
20503 #:cargo-inputs
20504 (("rust-clippy" ,rust-clippy-0.0)
20505 ("rust-syntex-errors" ,rust-syntex-errors-0.58)
20506 ("rust-syntex-syntax" ,rust-syntex-syntax-0.58))))
20507 (home-page "https://github.com/serde-rs/quasi")
20508 (synopsis "Quasi-quoting macro system")
20509 (description
20510 "This package provides a quasi-quoting macro system.")
20511 (license (list license:expat license:asl2.0))))
20512
20513 (define-public rust-quasi-codegen-0.32
20514 (package
20515 (name "rust-quasi-codegen")
20516 (version "0.32.0")
20517 (source
20518 (origin
20519 (method url-fetch)
20520 (uri (crate-uri "quasi_codegen" version))
20521 (file-name
20522 (string-append name "-" version ".tar.gz"))
20523 (sha256
20524 (base32
20525 "1m3nwzn5ip8y86cyfk6hdnbhiinsk2faag7l0cc4q11wl9gy5fai"))))
20526 (build-system cargo-build-system)
20527 (arguments
20528 `(#:cargo-inputs
20529 (("rust-aster" ,rust-aster-0.41)
20530 ("rust-clippy" ,rust-clippy-0.0)
20531 ("rust-syntex" ,rust-syntex-0.58)
20532 ("rust-syntex-errors" ,rust-syntex-errors-0.58)
20533 ("rust-syntex-syntax" ,rust-syntex-syntax-0.58))))
20534 (home-page "https://github.com/serde-rs/quasi")
20535 (synopsis "Quasi-quoting macro system")
20536 (description "This package provides a quasi-quoting macro system.")
20537 (license (list license:expat license:asl2.0))))
20538
20539 (define-public rust-quasi-macros-0.32
20540 (package
20541 (name "rust-quasi-macros")
20542 (version "0.32.0")
20543 (source
20544 (origin
20545 (method url-fetch)
20546 (uri (crate-uri "quasi_macros" version))
20547 (file-name
20548 (string-append name "-" version ".tar.gz"))
20549 (sha256
20550 (base32
20551 "1p825s96wa9xcc01pm5f4nlb01nx0pah50qnwkbncrw1q9xwiki9"))))
20552 (build-system cargo-build-system)
20553 (arguments
20554 `(#:skip-build? #t
20555 #:cargo-inputs
20556 (("rust-clippy" ,rust-clippy-0.0)
20557 ("rust-quasi-codegen" ,rust-quasi-codegen-0.32))
20558 #:cargo-development-inputs
20559 (("rust-aster" ,rust-aster-0.41)
20560 ("rust-quasi" ,rust-quasi-0.32))))
20561 (home-page "https://github.com/serde-rs/quasi")
20562 (synopsis "Quasi-quoting macro system")
20563 (description "This package provides a quasi-quoting macro system.")
20564 (license (list license:expat license:asl2.0))))
20565
20566 (define-public rust-quick-error-1.2
20567 (package
20568 (name "rust-quick-error")
20569 (version "1.2.3")
20570 (source
20571 (origin
20572 (method url-fetch)
20573 (uri (crate-uri "quick-error" version))
20574 (file-name (string-append name "-" version ".crate"))
20575 (sha256
20576 (base32
20577 "1q6za3v78hsspisc197bg3g7rpc989qycy8ypr8ap8igv10ikl51"))))
20578 (build-system cargo-build-system)
20579 (home-page "https://github.com/tailhook/quick-error")
20580 (synopsis "Macro which makes error types pleasant to write")
20581 (description "This crate provides a macro which makes error types pleasant
20582 to write.")
20583 (license (list license:asl2.0
20584 license:expat))))
20585
20586 (define-public rust-quickcheck-0.9
20587 (package
20588 (name "rust-quickcheck")
20589 (version "0.9.2")
20590 (source
20591 (origin
20592 (method url-fetch)
20593 (uri (crate-uri "quickcheck" version))
20594 (file-name
20595 (string-append name "-" version ".tar.gz"))
20596 (sha256
20597 (base32
20598 "0pwl7j21wmf843kpa9gr0byb40hg975ghjrwp0yxcym99bkq6j54"))))
20599 (build-system cargo-build-system)
20600 (arguments
20601 `(#:cargo-inputs
20602 (("rust-env-logger" ,rust-env-logger-0.7)
20603 ("rust-log" ,rust-log-0.4)
20604 ("rust-rand" ,rust-rand-0.7)
20605 ("rust-rand-core" ,rust-rand-core-0.5))))
20606 (home-page "https://github.com/BurntSushi/quickcheck")
20607 (synopsis "Automatic property based testing with shrinking")
20608 (description
20609 "QuickCheck is a way to do property based testing using randomly generated
20610 input. This crate comes with the ability to randomly generate and shrink
20611 integers, floats, tuples, booleans, lists, strings, options and results.")
20612 (license (list license:unlicense license:expat))))
20613
20614 (define-public rust-quickcheck-0.8
20615 (package
20616 (inherit rust-quickcheck-0.9)
20617 (name "rust-quickcheck")
20618 (version "0.8.5")
20619 (source
20620 (origin
20621 (method url-fetch)
20622 (uri (crate-uri "quickcheck" version))
20623 (file-name
20624 (string-append name "-" version ".tar.gz"))
20625 (sha256
20626 (base32
20627 "0mkl4wnvvjk4m32aq3an4ayfyvnmbxnzcybfm7n3fbsndb1xjdcw"))))
20628 (arguments
20629 `(#:cargo-inputs
20630 (("rust-env-logger" ,rust-env-logger-0.6)
20631 ("rust-log" ,rust-log-0.4)
20632 ("rust-rand" ,rust-rand-0.6)
20633 ("rust-rand-core" ,rust-rand-core-0.4))))))
20634
20635 (define-public rust-quickcheck-0.7
20636 (package
20637 (inherit rust-quickcheck-0.9)
20638 (name "rust-quickcheck")
20639 (version "0.7.2")
20640 (source
20641 (origin
20642 (method url-fetch)
20643 (uri (crate-uri "quickcheck" version))
20644 (file-name
20645 (string-append name "-" version ".tar.gz"))
20646 (sha256
20647 (base32
20648 "05pqzja6fwdyrs1za5vmxb9ifb993knmpdsrs1fs2wyz9qz7slyl"))))
20649 (arguments
20650 `(#:cargo-inputs
20651 (("rust-env-logger" ,rust-env-logger-0.5)
20652 ("rust-log" ,rust-log-0.4)
20653 ("rust-rand" ,rust-rand-0.5)
20654 ("rust-rand-core" ,rust-rand-core-0.2))))))
20655
20656 (define-public rust-quickcheck-0.6
20657 (package
20658 (inherit rust-quickcheck-0.9)
20659 (name "rust-quickcheck")
20660 (version "0.6.2")
20661 (source
20662 (origin
20663 (method url-fetch)
20664 (uri (crate-uri "quickcheck" version))
20665 (file-name
20666 (string-append name "-" version ".tar.gz"))
20667 (sha256
20668 (base32
20669 "1dyazm2fcq0v9fscq1a7597zsvdl9f0j8c2bfj1jm2nlzz2sn6y0"))))
20670 (arguments
20671 `(#:cargo-inputs
20672 (("rust-env-logger" ,rust-env-logger-0.5)
20673 ("rust-log" ,rust-log-0.4)
20674 ("rust-rand" ,rust-rand-0.4))))))
20675
20676 (define-public rust-quickcheck-0.5
20677 (package
20678 (inherit rust-quickcheck-0.9)
20679 (name "rust-quickcheck")
20680 (version "0.5.0")
20681 (source
20682 (origin
20683 (method url-fetch)
20684 (uri (crate-uri "quickcheck" version))
20685 (file-name (string-append name "-" version ".tar.gz"))
20686 (sha256
20687 (base32
20688 "1jzm1ygfbn4igaq14b9nipc8yvsn6c8panpgd1qiy5r2insjllyd"))))
20689 (arguments
20690 `(#:cargo-inputs
20691 (("rust-env-logger" ,rust-env-logger-0.4)
20692 ("rust-log" ,rust-log-0.3)
20693 ("rust-rand" ,rust-rand-0.3))))))
20694
20695 (define-public rust-quickcheck-0.4
20696 (package
20697 (inherit rust-quickcheck-0.5)
20698 (name "rust-quickcheck")
20699 (version "0.4.1")
20700 (source
20701 (origin
20702 (method url-fetch)
20703 (uri (crate-uri "quickcheck" version))
20704 (file-name
20705 (string-append name "-" version ".tar.gz"))
20706 (sha256
20707 (base32
20708 "01hligcv1h4pvc8ykch65qjzi7jgcq2s462v69j27slc84fl3hh2"))))
20709 (arguments
20710 `(#:cargo-inputs
20711 (("rust-env-logger" ,rust-env-logger-0.3)
20712 ("rust-log" ,rust-log-0.3)
20713 ("rust-rand" ,rust-rand-0.3))))))
20714
20715 (define-public rust-quickcheck-0.2
20716 (package
20717 (inherit rust-quickcheck-0.4)
20718 (name "rust-quickcheck")
20719 (version "0.2.27")
20720 (source
20721 (origin
20722 (method url-fetch)
20723 (uri (crate-uri "quickcheck" version))
20724 (file-name (string-append name "-" version ".tar.gz"))
20725 (sha256
20726 (base32
20727 "1vb4acppaavlnchzc1jmn5wlkgir9x9gmhgp97bavyxxqxgsg1nh"))))))
20728
20729 (define-public rust-quickcheck-macros-0.9
20730 (package
20731 (name "rust-quickcheck-macros")
20732 (version "0.9.1")
20733 (source
20734 (origin
20735 (method url-fetch)
20736 (uri (crate-uri "quickcheck_macros" version))
20737 (file-name
20738 (string-append name "-" version ".tar.gz"))
20739 (sha256
20740 (base32
20741 "0zsb9b4jpg7qvbiym4v8y9pgqk7p1g4f5hn9gp0fnzz9v1pib330"))))
20742 (build-system cargo-build-system)
20743 (arguments
20744 `(#:cargo-inputs
20745 (("rust-proc-macro2" ,rust-proc-macro2-1)
20746 ("rust-quote" ,rust-quote-1)
20747 ("rust-syn" ,rust-syn-1))
20748 #:cargo-development-inputs
20749 (("rust-quickcheck" ,rust-quickcheck-0.9))))
20750 (home-page "https://github.com/BurntSushi/quickcheck")
20751 (synopsis "Macro attribute for quickcheck")
20752 (description
20753 "This package provides a macro attribute for quickcheck.")
20754 (license (list license:unlicense license:expat))))
20755
20756 (define-public rust-quickcheck-macros-0.8
20757 (package
20758 (inherit rust-quickcheck-macros-0.9)
20759 (name "rust-quickcheck-macros")
20760 (version "0.8.0")
20761 (source
20762 (origin
20763 (method url-fetch)
20764 (uri (crate-uri "quickcheck_macros" version))
20765 (file-name
20766 (string-append name "-" version ".tar.gz"))
20767 (sha256
20768 (base32
20769 "0b3mhn0xcrdd3fkbkx3rghhivwzwil8w991ngp6gaj70l72c3pyp"))))
20770 (arguments
20771 `(#:cargo-inputs
20772 (("rust-proc-macro2" ,rust-proc-macro2-0.4)
20773 ("rust-quote" ,rust-quote-0.6)
20774 ("rust-syn" ,rust-syn-0.15))
20775 #:cargo-development-inputs
20776 (("rust-quickcheck" ,rust-quickcheck-0.8))))))
20777
20778 (define-public rust-quote-1
20779 (package
20780 (name "rust-quote")
20781 (version "1.0.3")
20782 (source
20783 (origin
20784 (method url-fetch)
20785 (uri (crate-uri "quote" version))
20786 (file-name (string-append name "-" version ".crate"))
20787 (sha256
20788 (base32
20789 "0zwd6fp74xfg4jnnnwj4v84lkzif2giwj4ch1hka9g35ghc6rp1b"))))
20790 (build-system cargo-build-system)
20791 (arguments
20792 `(#:cargo-inputs
20793 (("rust-proc-macro2" ,rust-proc-macro2-1))
20794 #:cargo-development-inputs
20795 (("rust-rustversion" ,rust-rustversion-1)
20796 ("rust-trybuild" ,rust-trybuild-1))))
20797 (home-page "https://github.com/dtolnay/quote")
20798 (synopsis "Quasi-quoting macro quote!(...)")
20799 (description "Quasi-quoting macro quote!(...)")
20800 (license (list license:asl2.0 license:expat))))
20801
20802 (define-public rust-quote-0.6
20803 (package
20804 (inherit rust-quote-1)
20805 (name "rust-quote")
20806 (version "0.6.13")
20807 (source
20808 (origin
20809 (method url-fetch)
20810 (uri (crate-uri "quote" version))
20811 (file-name (string-append name "-" version ".tar.gz"))
20812 (sha256
20813 (base32
20814 "1qgqq48jymp5h4y082aanf25hrw6bpb678xh3zw993qfhxmkpqkc"))))
20815 (arguments
20816 `(#:cargo-inputs (("rust-proc-macro2" ,rust-proc-macro2-0.4))))))
20817
20818 (define-public rust-quote-0.5
20819 (package
20820 (inherit rust-quote-0.6)
20821 (name "rust-quote")
20822 (version "0.5.2")
20823 (source
20824 (origin
20825 (method url-fetch)
20826 (uri (crate-uri "quote" version))
20827 (file-name
20828 (string-append name "-" version ".tar.gz"))
20829 (sha256
20830 (base32
20831 "1s01fh0jl8qv4xggs85yahw0h507nzrxkjbf7vay3zw8d3kcyjcr"))))
20832 (arguments
20833 `(#:cargo-inputs
20834 (("rust-proc-macro2" ,rust-proc-macro2-0.3))))))
20835
20836 (define-public rust-quote-0.3
20837 (package
20838 (inherit rust-quote-0.6)
20839 (name "rust-quote")
20840 (version "0.3.15")
20841 (source
20842 (origin
20843 (method url-fetch)
20844 (uri (crate-uri "quote" version))
20845 (file-name
20846 (string-append name "-" version ".tar.gz"))
20847 (sha256
20848 (base32
20849 "0yhnnix4dzsv8y4wwz4csbnqjfh73al33j35msr10py6cl5r4vks"))))
20850 (arguments '())))
20851
20852 (define-public rust-r2d2
20853 (package
20854 (name "rust-r2d2")
20855 (version "0.8.9")
20856 (source
20857 (origin
20858 (method url-fetch)
20859 (uri (crate-uri "r2d2" version))
20860 (file-name (string-append name "-" version ".tar.gz"))
20861 (sha256
20862 (base32
20863 "0vxjgh83bss63mkx308p16iwl33s80c781p422f3r5w0p315np2l"))))
20864 (build-system cargo-build-system)
20865 (arguments
20866 `(#:cargo-inputs
20867 (("rust-log" ,rust-log-0.4)
20868 ("rust-parking-lot" ,rust-parking-lot-0.11)
20869 ("rust-scheduled-thread-pool" ,rust-scheduled-thread-pool-0.2))))
20870 (home-page "https://github.com/sfackler/r2d2")
20871 (synopsis "A generic connection pool")
20872 (description "This package provides a generic connection pool.")
20873 (license (list license:expat license:asl2.0))))
20874
20875 (define-public rust-racer-cargo-metadata-0.1
20876 (package
20877 (name "rust-racer-cargo-metadata")
20878 (version "0.1.1")
20879 (source
20880 (origin
20881 (method url-fetch)
20882 (uri (crate-uri "racer-cargo-metadata" version))
20883 (file-name
20884 (string-append name "-" version ".tar.gz"))
20885 (sha256
20886 (base32
20887 "0vvwbfi991gjbk2k9a7yl7fqc8amvwlf7sa9lsx1sr0s55rcsq1b"))))
20888 (build-system cargo-build-system)
20889 (arguments
20890 `(#:tests? #f
20891 #:cargo-inputs
20892 (("rust-racer-interner" ,rust-racer-interner-0.1)
20893 ("rust-serde" ,rust-serde-1)
20894 ("rust-serde-json" ,rust-serde-json-1))))
20895 (home-page "https://github.com/racer-rust/racer")
20896 (synopsis "Lightweight cargo metadata parser for racer")
20897 (description
20898 "This crate provides parsing for cargo metadata. It is used mostly in
20899 Racer.")
20900 (license license:expat)))
20901
20902 (define-public rust-racer-interner-0.1
20903 (package
20904 (name "rust-racer-interner")
20905 (version "0.1.0")
20906 (source
20907 (origin
20908 (method url-fetch)
20909 (uri (crate-uri "racer-interner" version))
20910 (file-name
20911 (string-append name "-" version ".tar.gz"))
20912 (sha256
20913 (base32
20914 "0k7ssjjcr4kr9r1jbz93rglisfsx1m6fkx3wz6yng5rizm528si0"))))
20915 (build-system cargo-build-system)
20916 (arguments
20917 `(#:cargo-inputs (("rust-serde" ,rust-serde-1))))
20918 (home-page "https://github.com/racer-rust/racer")
20919 (synopsis "Thread-local string interner for Racer")
20920 (description
20921 "This package allows one to intern strings in Rust in a thread-local
20922 fashion. It is mostly used in Racer.")
20923 (license license:expat)))
20924
20925 (define-public rust-radix-fmt-1
20926 (package
20927 (name "rust-radix-fmt")
20928 (version "1.0.0")
20929 (source
20930 (origin
20931 (method url-fetch)
20932 (uri (crate-uri "radix_fmt" version))
20933 (file-name (string-append name "-" version ".tar.gz"))
20934 (sha256
20935 (base32
20936 "09jlq152iwn56215kghqby4pi8vamhg0nzcb9any5b5782cjl26f"))))
20937 (build-system cargo-build-system)
20938 (arguments
20939 `(#:cargo-development-inputs
20940 (("rust-fluid" ,rust-fluid-0.4))))
20941 (home-page "https://gitlab.com/Boiethios/radix_fmt_rs")
20942 (synopsis "Format a number in an arbitrary radix")
20943 (description "This package lets you format a number in an arbitrary
20944 radix.")
20945 (license license:asl2.0)))
20946
20947 (define-public rust-rand-0.7
20948 (package
20949 (name "rust-rand")
20950 (version "0.7.3")
20951 (source
20952 (origin
20953 (method url-fetch)
20954 (uri (crate-uri "rand" version))
20955 (file-name (string-append name "-" version ".crate"))
20956 (sha256
20957 (base32
20958 "00sdaimkbz491qgi6qxkv582yivl32m2jd401kzbn94vsiwicsva"))))
20959 (build-system cargo-build-system)
20960 (arguments
20961 `(#:cargo-inputs
20962 (("rust-getrandom" ,rust-getrandom-0.1)
20963 ("rust-libc" ,rust-libc-0.2)
20964 ("rust-log" ,rust-log-0.4)
20965 ("rust-packed-simd" ,rust-packed-simd-0.3)
20966 ("rust-rand-chacha" ,rust-rand-chacha-0.2)
20967 ("rust-rand-core" ,rust-rand-core-0.5)
20968 ("rust-rand-hc" ,rust-rand-hc-0.2)
20969 ("rust-rand-pcg" ,rust-rand-pcg-0.2))
20970 #:cargo-development-inputs
20971 (("rust-rand-hc" ,rust-rand-hc-0.2)
20972 ("rust-rand-pcg" ,rust-rand-pcg-0.2))))
20973 (home-page "https://crates.io/crates/rand")
20974 (synopsis "Random number generators and other randomness functionality")
20975 (description
20976 "Rand provides utilities to generate random numbers, to convert them to
20977 useful types and distributions, and some randomness-related algorithms.")
20978 (license (list license:asl2.0
20979 license:expat))))
20980
20981 (define-public rust-rand-0.6
20982 (package
20983 (inherit rust-rand-0.7)
20984 (name "rust-rand")
20985 (version "0.6.5")
20986 (source
20987 (origin
20988 (method url-fetch)
20989 (uri (crate-uri "rand" version))
20990 (file-name (string-append name "-" version ".crate"))
20991 (sha256
20992 (base32
20993 "1jl4449jcl4wgmzld6ffwqj5gwxrp8zvx8w573g1z368qg6xlwbd"))))
20994 (arguments
20995 `(#:cargo-inputs
20996 (("rust-libc" ,rust-libc-0.2)
20997 ("rust-log" ,rust-log-0.4)
20998 ("rust-packed-simd" ,rust-packed-simd-0.3)
20999 ("rust-rand-chacha" ,rust-rand-chacha-0.1)
21000 ("rust-rand-core" ,rust-rand-core-0.4)
21001 ("rust-rand-hc" ,rust-rand-hc-0.1)
21002 ("rust-rand-isaac" ,rust-rand-isaac-0.1)
21003 ("rust-rand-jitter" ,rust-rand-jitter-0.1)
21004 ("rust-rand-os" ,rust-rand-os-0.1)
21005 ("rust-rand-pcg" ,rust-rand-pcg-0.1)
21006 ("rust-rand-xorshift" ,rust-rand-xorshift-0.1)
21007 ("rust-winapi" ,rust-winapi-0.3)
21008 ("rust-autocfg" ,rust-autocfg-0.1)) ; build-dependency
21009 #:cargo-development-inputs
21010 (("rust-average" ,rust-average-0.9)
21011 ("rust-rand-xoshiro" ,rust-rand-xoshiro-0.1))))))
21012
21013 (define-public rust-rand-0.5
21014 (package
21015 (inherit rust-rand-0.7)
21016 (name "rust-rand")
21017 (version "0.5.6")
21018 (source
21019 (origin
21020 (method url-fetch)
21021 (uri (crate-uri "rand" version))
21022 (file-name
21023 (string-append name "-" version ".tar.gz"))
21024 (sha256
21025 (base32
21026 "1fdcgja9167hlzkf4g5daqwp498lwiyq7aqm05whklpbsdyc8666"))))
21027 (arguments
21028 `(#:skip-build? #t
21029 #:cargo-inputs
21030 (("rust-cloudabi" ,rust-cloudabi-0.0)
21031 ("rust-fuchsia-cprng" ,rust-fuchsia-cprng-0.1)
21032 ("rust-libc" ,rust-libc-0.2)
21033 ("rust-log" ,rust-log-0.4)
21034 ("rust-rand-core" ,rust-rand-core-0.3)
21035 ("rust-serde" ,rust-serde-1)
21036 ("rust-serde-derive" ,rust-serde-derive-1)
21037 ("rust-stdweb" ,rust-stdweb-0.4)
21038 ("rust-winapi" ,rust-winapi-0.3))
21039 #:cargo-development-inputs
21040 (("rust-bincode" ,rust-bincode-1))))))
21041
21042 (define-public rust-rand-0.4
21043 (package
21044 (inherit rust-rand-0.6)
21045 (name "rust-rand")
21046 (version "0.4.6")
21047 (source
21048 (origin
21049 (method url-fetch)
21050 (uri (crate-uri "rand" version))
21051 (file-name (string-append name "-" version ".tar.gz"))
21052 (sha256
21053 (base32
21054 "14qjfv3gggzhnma20k0sc1jf8y6pplsaq7n1j9ls5c8kf2wl0a2m"))))
21055 (arguments
21056 `(#:cargo-inputs
21057 (("rust-fuchsia-cprng" ,rust-fuchsia-cprng-0.1)
21058 ("rust-rand-core" ,rust-rand-core-0.3)
21059 ("rust-rdrand" ,rust-rdrand-0.4)
21060 ("rust-libc" ,rust-libc-0.2)
21061 ("rust-winapi" ,rust-winapi-0.3))))))
21062
21063 (define-public rust-rand-0.3
21064 (package
21065 (inherit rust-rand-0.6)
21066 (name "rust-rand")
21067 (version "0.3.23")
21068 (source
21069 (origin
21070 (method url-fetch)
21071 (uri (crate-uri "rand" version))
21072 (file-name (string-append name "-" version ".crate"))
21073 (sha256
21074 (base32
21075 "0v679h38pjjqj5h4md7v2slsvj6686qgcn7p9fbw3h43iwnk1b34"))))
21076 (arguments
21077 `(#:cargo-inputs
21078 (("rust-libc" ,rust-libc-0.2)
21079 ("rust-rand" ,rust-rand-0.4))))))
21080
21081 (define-public rust-rand-chacha-0.2
21082 (package
21083 (name "rust-rand-chacha")
21084 (version "0.2.2")
21085 (source
21086 (origin
21087 (method url-fetch)
21088 (uri (crate-uri "rand_chacha" version))
21089 (file-name
21090 (string-append name "-" version ".tar.gz"))
21091 (sha256
21092 (base32
21093 "00il36fkdbsmpr99p9ksmmp6dn1md7rmnwmz0rr77jbrca2yvj7l"))))
21094 (build-system cargo-build-system)
21095 (arguments
21096 `(#:cargo-inputs
21097 (("rust-c2-chacha" ,rust-c2-chacha-0.2)
21098 ("rust-rand-core" ,rust-rand-core-0.5))))
21099 (home-page "https://crates.io/crates/rand-chacha")
21100 (synopsis "ChaCha random number generator")
21101 (description "ChaCha random number generator.")
21102 (license (list license:asl2.0 license:expat))))
21103
21104 (define-public rust-rand-chacha-0.1
21105 (package
21106 (inherit rust-rand-chacha-0.2)
21107 (name "rust-rand-chacha")
21108 (version "0.1.1")
21109 (source
21110 (origin
21111 (method url-fetch)
21112 (uri (crate-uri "rand_chacha" version))
21113 (file-name (string-append name "-" version ".crate"))
21114 (sha256
21115 (base32
21116 "1vxwyzs4fy1ffjc8l00fsyygpiss135irjf7nyxgq2v0lqf3lvam"))))
21117 (arguments
21118 `(#:cargo-inputs
21119 (("rust-rand-core" ,rust-rand-core-0.3))
21120 #:cargo-development-inputs
21121 (("rust-autocfg" ,rust-autocfg-0.1))))))
21122
21123 (define-public rust-rand-core-0.5
21124 (package
21125 (name "rust-rand-core")
21126 (version "0.5.1")
21127 (source
21128 (origin
21129 (method url-fetch)
21130 (uri (crate-uri "rand_core" version))
21131 (file-name
21132 (string-append name "-" version ".tar.gz"))
21133 (sha256
21134 (base32
21135 "06bdvx08v3rkz451cm7z59xwwqn1rkfh6v9ay77b14f8dwlybgch"))))
21136 (build-system cargo-build-system)
21137 (arguments
21138 `(#:cargo-inputs
21139 (("rust-getrandom" ,rust-getrandom-0.1)
21140 ("rust-serde" ,rust-serde-1))))
21141 (home-page "https://crates.io/crates/rand-core")
21142 (synopsis
21143 "Core random number generator traits and tools for implementation")
21144 (description
21145 "Core random number generator traits and tools for implementation.")
21146 (license (list license:expat license:asl2.0))))
21147
21148 (define-public rust-rand-core-0.4
21149 (package
21150 (inherit rust-rand-core-0.5)
21151 (name "rust-rand-core")
21152 (version "0.4.2")
21153 (source
21154 (origin
21155 (method url-fetch)
21156 (uri (crate-uri "rand_core" version))
21157 (file-name (string-append name "-" version ".crate"))
21158 (sha256
21159 (base32
21160 "1p09ynysrq1vcdlmcqnapq4qakl2yd1ng3kxh3qscpx09k2a6cww"))))
21161 (arguments
21162 `(#:cargo-inputs
21163 (("rust-serde" ,rust-serde-1)
21164 ("rust-serde-derive" ,rust-serde-derive-1))))))
21165
21166 (define-public rust-rand-core-0.3
21167 (package
21168 (inherit rust-rand-core-0.4)
21169 (name "rust-rand-core")
21170 (version "0.3.1")
21171 (source
21172 (origin
21173 (method url-fetch)
21174 (uri (crate-uri "rand_core" version))
21175 (file-name (string-append name "-" version ".crate"))
21176 (sha256
21177 (base32
21178 "0jzdgszfa4bliigiy4hi66k7fs3gfwi2qxn8vik84ph77fwdwvvs"))))
21179 ;; This version is a 0.3 API wrapper around the 0.4 version.
21180 (arguments
21181 `(#:skip-build? #t
21182 #:cargo-inputs (("rand-core" ,rust-rand-core-0.4))))))
21183
21184 (define-public rust-rand-core-0.2
21185 (package
21186 (inherit rust-rand-core-0.5)
21187 (name "rust-rand-core")
21188 (version "0.2.2")
21189 (source
21190 (origin
21191 (method url-fetch)
21192 (uri (crate-uri "rand-core" version))
21193 (file-name
21194 (string-append name "-" version ".tar.gz"))
21195 (sha256
21196 (base32
21197 "0wikbw2a36bz8ywjyycjrd7db6ra3yzj14zs1ysxz2fiqhia8q8r"))))
21198 (arguments
21199 `(#:skip-build? #t
21200 #:cargo-inputs
21201 (("rust-rand-core" ,rust-rand-core-0.3))))))
21202
21203 (define-public rust-rand-distr-0.2
21204 (package
21205 (name "rust-rand-distr")
21206 (version "0.2.2")
21207 (source
21208 (origin
21209 (method url-fetch)
21210 (uri (crate-uri "rand-distr" version))
21211 (file-name
21212 (string-append name "-" version ".tar.gz"))
21213 (sha256
21214 (base32
21215 "1cpz577qid09lirjjhhn98yqdwsv0c01jf973pxpcr9svp5pm5wn"))))
21216 (build-system cargo-build-system)
21217 (arguments
21218 `(#:cargo-inputs
21219 (("rust-rand" ,rust-rand-0.7))
21220 #:cargo-development-inputs
21221 (("rust-average" ,rust-average-0.10)
21222 ("rust-rand-pcg" ,rust-rand-pcg-0.2))))
21223 (home-page "https://crates.io/crates/rand_distr")
21224 (synopsis "Sampling from random number distributions")
21225 (description
21226 "Sampling from random number distributions.")
21227 (license (list license:expat license:asl2.0))))
21228
21229 (define-public rust-rand-hc-0.2
21230 (package
21231 (name "rust-rand-hc")
21232 (version "0.2.0")
21233 (source
21234 (origin
21235 (method url-fetch)
21236 (uri (crate-uri "rand_hc" version))
21237 (file-name (string-append name "-" version ".crate"))
21238 (sha256
21239 (base32
21240 "0g31sqwpmsirdlwr0svnacr4dbqyz339im4ssl9738cjgfpjjcfa"))))
21241 (build-system cargo-build-system)
21242 (arguments
21243 `(#:cargo-inputs
21244 (("rust-rand-hc" ,rust-rand-core-0.5))))
21245 (home-page "https://crates.io/crates/rand_hc")
21246 (synopsis "HC128 random number generator")
21247 (description "This package provides a cryptographically secure random number
21248 generator that uses the HC-128 algorithm.")
21249 (license (list license:asl2.0
21250 license:expat))))
21251
21252 (define-public rust-rand-hc-0.1
21253 (package
21254 (inherit rust-rand-hc-0.2)
21255 (name "rust-rand-hc")
21256 (version "0.1.0")
21257 (source
21258 (origin
21259 (method url-fetch)
21260 (uri (crate-uri "rand_hc" version))
21261 (file-name (string-append name "-" version ".crate"))
21262 (sha256
21263 (base32
21264 "1i0vl8q5ddvvy0x8hf1zxny393miyzxkwqnw31ifg6p0gdy6fh3v"))))
21265 (arguments
21266 `(#:cargo-inputs (("rust-rand-core" ,rust-rand-core-0.3))))))
21267
21268 (define-public rust-rand-isaac-0.2
21269 (package
21270 (name "rust-rand-isaac")
21271 (version "0.2.0")
21272 (source
21273 (origin
21274 (method url-fetch)
21275 (uri (crate-uri "rand_isaac" version))
21276 (file-name
21277 (string-append name "-" version ".tar.gz"))
21278 (sha256
21279 (base32
21280 "0xlb9415x518ffkazxhvk8b04i9i548nva4i5l5s34crvjrv1xld"))))
21281 (build-system cargo-build-system)
21282 (arguments
21283 `(#:cargo-inputs
21284 (("rust-rand-core" ,rust-rand-core-0.5)
21285 ("rust-serde" ,rust-serde-1))
21286 #:cargo-development-inputs
21287 (("rust-bincode" ,rust-bincode-1))))
21288 (home-page "https://crates.io/crates/rand_isaac")
21289 (synopsis "ISAAC random number generator")
21290 (description "This package implements the @code{ISAAC} and @code{ISAAC-64}
21291 random number generators. ISAAC stands for \"Indirection, Shift, Accumulate,
21292 Add, and Count\" which are the principal bitwise operations employed.")
21293 (license (list license:expat license:asl2.0))))
21294
21295 (define-public rust-rand-isaac-0.1
21296 (package
21297 (inherit rust-rand-isaac-0.2)
21298 (name "rust-rand-isaac")
21299 (version "0.1.1")
21300 (source
21301 (origin
21302 (method url-fetch)
21303 (uri (crate-uri "rand_isaac" version))
21304 (file-name (string-append name "-" version ".crate"))
21305 (sha256
21306 (base32
21307 "027flpjr4znx2csxk7gxb7vrf9c7y5mydmvg5az2afgisp4rgnfy"))))
21308 (arguments
21309 `(#:cargo-inputs
21310 (("rust-rand-core" ,rust-rand-core-0.3)
21311 ("rust-serde" ,rust-serde-1)
21312 ("rust-serde-derive" ,rust-serde-derive-1))
21313 #:cargo-development-inputs
21314 (("rust-bincode" ,rust-bincode-1))))))
21315
21316 (define-public rust-rand-jitter-0.1
21317 (package
21318 (name "rust-rand-jitter")
21319 (version "0.1.4")
21320 (source
21321 (origin
21322 (method url-fetch)
21323 (uri (crate-uri "rand_jitter" version))
21324 (file-name (string-append name "-" version ".crate"))
21325 (sha256
21326 (base32
21327 "16z387y46bfz3csc42zxbjq89vcr1axqacncvv8qhyy93p4xarhi"))))
21328 (build-system cargo-build-system)
21329 (arguments
21330 `(#:cargo-inputs
21331 (("rust-libc" ,rust-libc-0.2)
21332 ("rust-rand-core" ,rust-rand-core-0.4)
21333 ("rust-winapi" ,rust-winapi-0.3)
21334 ("rust-log" ,rust-log-0.4))))
21335 (home-page "https://github.com/rust-random/rand")
21336 (synopsis "Random number generator based on timing jitter")
21337 (description "This package provides a non-physical true random number
21338 generator based on timing jitter.")
21339 (license (list license:asl2.0
21340 license:expat))))
21341
21342 (define-public rust-rand-os-0.2
21343 (package
21344 (name "rust-rand-os")
21345 (version "0.2.2")
21346 (source
21347 (origin
21348 (method url-fetch)
21349 (uri (crate-uri "rand_os" version))
21350 (file-name
21351 (string-append name "-" version ".tar.gz"))
21352 (sha256
21353 (base32
21354 "12m59l42aa07khcjnhq8lkw2332brj4d7gqr3jxgqv39vczax257"))))
21355 (build-system cargo-build-system)
21356 (arguments
21357 `(#:cargo-inputs
21358 (("rust-getrandom" ,rust-getrandom-0.1)
21359 ("rust-rand-core" ,rust-rand-core-0.5))))
21360 (home-page "https://crates.io/crates/rand-os")
21361 (synopsis "OS backed Random Number Generator")
21362 (description "OS backed Random Number Generator.")
21363 (license (list license:asl2.0
21364 license:expat))))
21365
21366 (define-public rust-rand-os-0.1
21367 (package
21368 (inherit rust-rand-os-0.2)
21369 (name "rust-rand-os")
21370 (version "0.1.3")
21371 (source
21372 (origin
21373 (method url-fetch)
21374 (uri (crate-uri "rand_os" version))
21375 (file-name (string-append name "-" version ".crate"))
21376 (sha256
21377 (base32
21378 "0wahppm0s64gkr2vmhcgwc0lij37in1lgfxg5rbgqlz0l5vgcxbv"))))
21379 (arguments
21380 `(#:cargo-inputs
21381 (("rust-cloudabi" ,rust-cloudabi-0.0)
21382 ("rust-fuchsia-cprng" ,rust-fuchsia-cprng-0.1)
21383 ("rust-libc" ,rust-libc-0.2)
21384 ("rust-log" ,rust-log-0.4)
21385 ("rust-rand-core" ,rust-rand-core-0.4)
21386 ("rust-rdrand" ,rust-rdrand-0.4)
21387 ("rust-stdweb" ,rust-stdweb-0.4)
21388 ("rust-wasm-bindgen" ,rust-wasm-bindgen-0.2)
21389 ("rust-winapi" ,rust-winapi-0.3))))))
21390
21391 (define-public rust-rand-pcg-0.2
21392 (package
21393 (name "rust-rand-pcg")
21394 (version "0.2.1")
21395 (source
21396 (origin
21397 (method url-fetch)
21398 (uri (crate-uri "rand_pcg" version))
21399 (file-name (string-append name "-" version ".crate"))
21400 (sha256
21401 (base32
21402 "0ab4h6s6x3py833jk61lwadq83qd1c8bih2hgi6yps9rnv0x1aqn"))))
21403 (build-system cargo-build-system)
21404 (arguments
21405 `(#:cargo-inputs
21406 (("rust-rand-core" ,rust-rand-core-0.5)
21407 ("rust-serde" ,rust-serde-1))
21408 #:cargo-development-inputs
21409 (("rust-bincode" ,rust-bincode-1))))
21410 (home-page "https://crates.io/crates/rand_pcg")
21411 (synopsis
21412 "Selected PCG random number generators")
21413 (description
21414 "Implements a selection of PCG random number generators.")
21415 (license (list license:asl2.0
21416 license:expat))))
21417
21418 (define-public rust-rand-pcg-0.1
21419 (package
21420 (inherit rust-rand-pcg-0.2)
21421 (name "rust-rand-pcg")
21422 (version "0.1.2")
21423 (source
21424 (origin
21425 (method url-fetch)
21426 (uri (crate-uri "rand_pcg" version))
21427 (file-name (string-append name "-" version ".crate"))
21428 (sha256
21429 (base32
21430 "0i0bdla18a8x4jn1w0fxsbs3jg7ajllz6azmch1zw33r06dv1ydb"))))
21431 (arguments
21432 `(#:cargo-inputs
21433 (("rust-autocfg" ,rust-autocfg-0.1)
21434 ("rust-rand-core" ,rust-rand-core-0.4)
21435 ("rust-serde" ,rust-serde-1)
21436 ("rust-serde-derive" ,rust-serde-derive-1))
21437 #:cargo-development-inputs
21438 (("rust-bincode" ,rust-bincode-1))))))
21439
21440 (define-public rust-rand-xorshift-0.2
21441 (package
21442 (name "rust-rand-xorshift")
21443 (version "0.2.0")
21444 (source
21445 (origin
21446 (method url-fetch)
21447 (uri (crate-uri "rand_xorshift" version))
21448 (file-name
21449 (string-append name "-" version ".tar.gz"))
21450 (sha256
21451 (base32
21452 "1a6wy76lc5fimm1n9n8fzhp4cfjwfwxh4hx63bg3vlh1d2w1dm3p"))))
21453 (build-system cargo-build-system)
21454 (arguments
21455 `(#:cargo-inputs
21456 (("rust-rand-core" ,rust-rand-core-0.5)
21457 ("rust-serde" ,rust-serde-1))
21458 #:cargo-development-inputs
21459 (("rust-bincode" ,rust-bincode-1))))
21460 (home-page "https://crates.io/crates/rand-xorshift")
21461 (synopsis "Xorshift random number generator")
21462 (description
21463 "Xorshift random number generator.")
21464 (license (list license:expat license:asl2.0))))
21465
21466 (define-public rust-rand-xorshift-0.1
21467 (package
21468 (name "rust-rand-xorshift")
21469 (version "0.1.1")
21470 (source
21471 (origin
21472 (method url-fetch)
21473 (uri (crate-uri "rand_xorshift" version))
21474 (file-name (string-append name "-" version ".crate"))
21475 (sha256
21476 (base32
21477 "0p2x8nr00hricpi2m6ca5vysiha7ybnghz79yqhhx6sl4gkfkxyb"))))
21478 (build-system cargo-build-system)
21479 (arguments
21480 `(#:cargo-inputs
21481 (("rust-rand-core" ,rust-rand-core-0.3)
21482 ("rust-serde" ,rust-serde-1)
21483 ("rust-serde-derive" ,rust-serde-derive-1))
21484 #:cargo-development-inputs
21485 (("rust-bincode" ,rust-bincode-1))))
21486 (home-page "https://crates.io/crates/rand-xorshift")
21487 (synopsis "Xorshift random number generator")
21488 (description
21489 "Xorshift random number generator")
21490 (license (list license:asl2.0
21491 license:expat))))
21492
21493 (define-public rust-rand-xoshiro-0.4
21494 (package
21495 (name "rust-rand-xoshiro")
21496 (version "0.4.0")
21497 (source
21498 (origin
21499 (method url-fetch)
21500 (uri (crate-uri "rand-xoshiro" version))
21501 (file-name
21502 (string-append name "-" version ".tar.gz"))
21503 (sha256
21504 (base32
21505 "013h45rikipv5bda2ixmwx5rwsk9wpc7mr0a77cz20hxi0pdvz59"))))
21506 (build-system cargo-build-system)
21507 (arguments
21508 `(#:cargo-inputs
21509 (("rust-rand-core" ,rust-rand-core-0.5)
21510 ("rust-serde" ,rust-serde-1))
21511 #:cargo-development-inputs
21512 (("rust-bincode" ,rust-bincode-1))))
21513 (home-page "https://crates.io/crates/rand_xoshiro")
21514 (synopsis "Xoshiro, xoroshiro and splitmix64 random number generators")
21515 (description "This package provides the xoshiro, xoroshiro and splitmix64
21516 random number generators.")
21517 (license (list license:expat license:asl2.0))))
21518
21519 (define-public rust-rand-xoshiro-0.3
21520 (package
21521 (inherit rust-rand-xoshiro-0.4)
21522 (name "rust-rand-xoshiro")
21523 (version "0.3.0")
21524 (source
21525 (origin
21526 (method url-fetch)
21527 (uri (crate-uri "rand_xoshiro" version))
21528 (file-name
21529 (string-append name "-" version ".tar.gz"))
21530 (sha256
21531 (base32
21532 "07w3qgrac8r356lz5vqff42rly6yd9vs3g5lx5pbn13rcmb05rqb"))))
21533 (arguments
21534 `(#:cargo-inputs
21535 (("rust-byteorder" ,rust-byteorder-1)
21536 ("rust-rand-core" ,rust-rand-core-0.5)
21537 ("rust-serde" ,rust-serde-1))
21538 #:cargo-development-inputs
21539 (("rust-bincode" ,rust-bincode-1))))))
21540
21541 (define-public rust-rand-xoshiro-0.1
21542 (package
21543 (inherit rust-rand-xoshiro-0.4)
21544 (name "rust-rand-xoshiro")
21545 (version "0.1.0")
21546 (source
21547 (origin
21548 (method url-fetch)
21549 (uri (crate-uri "rand_xoshiro" version))
21550 (file-name
21551 (string-append name "-" version ".tar.gz"))
21552 (sha256
21553 (base32
21554 "0ac9ha6ll8b6l1930bd99k29jrjpsbpddvr6ycrnbi5rkwb1id03"))))
21555 (build-system cargo-build-system)
21556 (arguments
21557 `(#:cargo-inputs
21558 (("rust-byteorder" ,rust-byteorder-1)
21559 ("rust-rand-core" ,rust-rand-core-0.3))
21560 #:cargo-development-inputs
21561 (("rust-rand" ,rust-rand-0.6))))))
21562
21563 (define-public rust-rawpointer-0.2
21564 (package
21565 (name "rust-rawpointer")
21566 (version "0.2.1")
21567 (source
21568 (origin
21569 (method url-fetch)
21570 (uri (crate-uri "rawpointer" version))
21571 (file-name (string-append name "-" version ".crate"))
21572 (sha256
21573 (base32
21574 "1qy1qvj17yh957vhffnq6agq0brvylw27xgks171qrah75wmg8v0"))))
21575 (build-system cargo-build-system)
21576 (home-page "https://github.com/bluss/rawpointer/")
21577 (synopsis "Extra methods for raw pointers")
21578 (description "Extra methods for raw pointers. For example
21579 @code{.post_inc()} and @code{.pre_dec()} (c.f. @code{ptr++} and @code{--ptr})
21580 and @code{ptrdistance}.")
21581 (license (list license:asl2.0
21582 license:expat))))
21583
21584 (define-public rust-rawpointer-0.1
21585 (package
21586 (inherit rust-rawpointer-0.2)
21587 (name "rust-rawpointer")
21588 (version "0.1.0")
21589 (source
21590 (origin
21591 (method url-fetch)
21592 (uri (crate-uri "rawpointer" version))
21593 (file-name (string-append name "-" version ".crate"))
21594 (sha256
21595 (base32
21596 "06ghpm9y7gacks78s3maakha07kbnwrxif5q37r2l7z1sali3b7b"))))))
21597
21598 (define-public rust-rawslice-0.1
21599 (package
21600 (name "rust-rawslice")
21601 (version "0.1.1")
21602 (source
21603 (origin
21604 (method url-fetch)
21605 (uri (crate-uri "rawslice" version))
21606 (file-name
21607 (string-append name "-" version ".tar.gz"))
21608 (sha256
21609 (base32
21610 "1kfidydpw770wfzp2c4y7jfq1vr5jbql5sk86xg2wx3an84cj8wf"))))
21611 (build-system cargo-build-system)
21612 (arguments
21613 `(#:cargo-inputs
21614 (("rust-rawpointer" ,rust-rawpointer-0.2))
21615 #:cargo-development-inputs
21616 (("rust-quickcheck" ,rust-quickcheck-0.4))))
21617 (home-page "https://github.com/bluss/rawslice/")
21618 (synopsis "Reimplementation of the slice iterators, with extra features")
21619 (description
21620 "Reimplementation of the slice iterators, with extra features.
21621 For example creation from raw pointers and start, end pointer
21622 accessors.")
21623 (license (list license:asl2.0 license:expat))))
21624
21625 (define-public rust-rayon-1
21626 (package
21627 (name "rust-rayon")
21628 (version "1.3.1")
21629 (source
21630 (origin
21631 (method url-fetch)
21632 (uri (crate-uri "rayon" version))
21633 (file-name
21634 (string-append name "-" version ".tar.gz"))
21635 (sha256
21636 (base32
21637 "104h6i5lcp9kx8g80jgqf6z7wcqa186q57wj4qzf011xfmb2iw32"))))
21638 (build-system cargo-build-system)
21639 (arguments
21640 `(#:cargo-inputs
21641 (("rust-autocfg" ,rust-autocfg-1.0)
21642 ("rust-crossbeam-deque" ,rust-crossbeam-deque-0.7)
21643 ("rust-either" ,rust-either-1)
21644 ("rust-rayon-core" ,rust-rayon-core-1))
21645 #:cargo-development-inputs
21646 (("rust-docopt" ,rust-docopt-1.1)
21647 ("rust-lazy-static" ,rust-lazy-static-1)
21648 ("rust-rand" ,rust-rand-0.7)
21649 ("rust-rand-xorshift" ,rust-rand-xorshift-0.2)
21650 ("rust-serde" ,rust-serde-1))))
21651 (home-page "https://github.com/rayon-rs/rayon")
21652 (synopsis "Simple work-stealing parallelism for Rust")
21653 (description
21654 "Simple work-stealing parallelism for Rust.")
21655 (license (list license:asl2.0 license:expat))))
21656
21657 (define-public rust-rayon-0.8
21658 (package
21659 (inherit rust-rayon-1)
21660 (name "rust-rayon")
21661 (version "0.8.2")
21662 (source
21663 (origin
21664 (method url-fetch)
21665 (uri (crate-uri "rayon" version))
21666 (file-name (string-append name "-" version ".tar.gz"))
21667 (sha256
21668 (base32 "1j2l9x98ma63qkh9w8zik0vcpwqf9cvc2ynh66ibjp36nq4gw55n"))))
21669 (arguments
21670 `(#:skip-build? #t
21671 #:cargo-inputs
21672 (("rust-rayon-core" ,rust-rayon-core-1))
21673 #:cargo-development-inputs
21674 (("rust-compiletest-rs" ,rust-compiletest-rs-0.2)
21675 ("rust-docopt" ,rust-docopt-0.7)
21676 ("rust-futures" ,rust-futures-0.1)
21677 ("rust-rand" ,rust-rand-0.3)
21678 ("rust-rustc-serialize" ,rust-rustc-serialize-0.3))))))
21679
21680 (define-public rust-rayon-core-1
21681 (package
21682 (name "rust-rayon-core")
21683 (version "1.7.1")
21684 (source
21685 (origin
21686 (method url-fetch)
21687 (uri (crate-uri "rayon-core" version))
21688 (file-name
21689 (string-append name "-" version ".tar.gz"))
21690 (sha256
21691 (base32
21692 "101jjwkcfw5jk31695gbdm163iicc2pz349q6l8lwj43j3c1abp9"))))
21693 (build-system cargo-build-system)
21694 (arguments
21695 `(;; One of the tests attempts to overflow the stack, but the compiler
21696 ;; has since gotten smarter and the test became defective.
21697 #:tests? #f
21698 #:cargo-inputs
21699 (("rust-crossbeam-deque" ,rust-crossbeam-deque-0.7)
21700 ("rust-crossbeam-queue" ,rust-crossbeam-queue-0.2)
21701 ("rust-crossbeam-utils" ,rust-crossbeam-utils-0.7)
21702 ("rust-lazy-static" ,rust-lazy-static-1)
21703 ("rust-num-cpus" ,rust-num-cpus-1))
21704 #:cargo-development-inputs
21705 (("rust-libc" ,rust-libc-0.2)
21706 ("rust-rand" ,rust-rand-0.7)
21707 ("rust-rand-xorshift" ,rust-rand-xorshift-0.2)
21708 ("rust-scoped-tls" ,rust-scoped-tls-1.0))))
21709 (home-page "https://github.com/rayon-rs/rayon")
21710 (synopsis "Core APIs for Rayon")
21711 (description "Core APIs for Rayon.")
21712 (license (list license:expat license:asl2.0))))
21713
21714 (define-public rust-rctree-0.3
21715 (package
21716 (name "rust-rctree")
21717 (version "0.3.3")
21718 (source
21719 (origin
21720 (method url-fetch)
21721 (uri (crate-uri "rctree" version))
21722 (file-name
21723 (string-append name "-" version ".tar.gz"))
21724 (sha256
21725 (base32
21726 "1a54z2b850albiqx9vw009p9xg363vqzh1ybkwb89zn8375jk7my"))))
21727 (build-system cargo-build-system)
21728 (home-page "https://github.com/RazrFalcon/rctree")
21729 (synopsis "DOM-like tree implemented using reference counting")
21730 (description "This package provides a @code{DOM-like} tree implemented using
21731 reference counting.")
21732 (license license:expat)))
21733
21734 (define-public rust-rdrand-0.4
21735 (package
21736 (name "rust-rdrand")
21737 (version "0.4.0")
21738 (source
21739 (origin
21740 (method url-fetch)
21741 (uri (crate-uri "rdrand" version))
21742 (file-name (string-append name "-" version ".crate"))
21743 (sha256
21744 (base32
21745 "1cjq0kwx1bk7jx3kzyciiish5gqsj7620dm43dc52sr8fzmm9037"))))
21746 (build-system cargo-build-system)
21747 (arguments
21748 `(#:skip-build? #t
21749 #:cargo-inputs
21750 (("rust-rand-core" ,rust-rand-core-0.3))))
21751 (home-page "https://github.com/nagisa/rust_rdrand/")
21752 (synopsis "Random number generator")
21753 (description
21754 "This package is an implementation of random number generator based on
21755 @code{rdrand} and @code{rdseed} instructions")
21756 (license license:isc)))
21757
21758 (define-public rust-read-color-1.0
21759 (package
21760 (name "rust-read-color")
21761 (version "1.0.0")
21762 (source
21763 (origin
21764 (method url-fetch)
21765 (uri (crate-uri "read_color" version))
21766 (file-name
21767 (string-append name "-" version ".tar.gz"))
21768 (sha256
21769 (base32
21770 "1np0pk31ak7hni4hri3m75mbf8py1wdfjshmrj5krbd4p9c8hk4z"))))
21771 (build-system cargo-build-system)
21772 (arguments `(#:skip-build? #t))
21773 (home-page
21774 "https://github.com/pistondevelopers/read_color")
21775 (synopsis
21776 "A simple library for reading hex colors")
21777 (description
21778 "This package provides a simple library for reading hex colors")
21779 (license (list license:expat license:asl2.0))))
21780
21781 (define-public rust-recycler-0.1
21782 (package
21783 (name "rust-recycler")
21784 (version "0.1.4")
21785 (source
21786 (origin
21787 (method url-fetch)
21788 (uri (crate-uri "recycler" version))
21789 (file-name
21790 (string-append name "-" version ".tar.gz"))
21791 (sha256
21792 (base32
21793 "1yll0sqswy6afk9ik7r22djqafa3wfgvgdzqqh7jbczyiqr2gp4q"))))
21794 (build-system cargo-build-system)
21795 (home-page "https://github.com/frankmcsherry/recycler")
21796 (synopsis "Rust library for recycling types containing owned memory")
21797 (description
21798 "This package provides a small Rust library for recycling types containing
21799 owned memory.")
21800 (license license:expat)))
21801
21802 ;; This package requires features which are unavailable
21803 ;; on the stable releases of Rust.
21804 (define-public rust-redox-syscall-0.1
21805 (package
21806 (name "rust-redox-syscall")
21807 (version "0.1.57")
21808 (source
21809 (origin
21810 (method url-fetch)
21811 (uri (crate-uri "redox_syscall" version))
21812 (file-name (string-append name "-" version ".crate"))
21813 (sha256
21814 (base32
21815 "1kh59fpwy33w9nwd5iyc283yglq8pf2s41hnhvl48iax9mz0zk21"))))
21816 (build-system cargo-build-system)
21817 (arguments '(#:skip-build? #t))
21818 (home-page "https://gitlab.redox-os.org/redox-os/syscall")
21819 (synopsis "Rust library to access raw Redox system calls")
21820 (description "This package provides a Rust library to access raw Redox
21821 system calls.")
21822 (license license:expat)))
21823
21824 (define-public rust-redox-termios-0.1
21825 (package
21826 (name "rust-redox-termios")
21827 (version "0.1.1")
21828 (source
21829 (origin
21830 (method url-fetch)
21831 (uri (crate-uri "redox-termios" version))
21832 (file-name (string-append name "-" version ".crate"))
21833 (sha256
21834 (base32
21835 "0xhgvdh62mymgdl3jqrngl8hr4i8xwpnbsxnldq0l47993z1r2by"))))
21836 (build-system cargo-build-system)
21837 (arguments
21838 `(#:skip-build? #t
21839 #:cargo-inputs
21840 (("rust-redox-syscall" ,rust-redox-syscall-0.1))))
21841 (home-page "https://github.com/redox-os/termios")
21842 (synopsis "Rust library to access Redox termios functions")
21843 (description
21844 "This package provides a Rust library to access Redox termios functions.")
21845 (license license:expat)))
21846
21847 (define-public rust-redox-users-0.3
21848 (package
21849 (name "rust-redox-users")
21850 (version "0.3.4")
21851 (source
21852 (origin
21853 (method url-fetch)
21854 (uri (crate-uri "redox_users" version))
21855 (file-name
21856 (string-append name "-" version ".tar.gz"))
21857 (sha256
21858 (base32
21859 "0cbl5w16l3bqm22i4vszclf6hzpljxicghmllw7j13az4s9k1ch9"))))
21860 (build-system cargo-build-system)
21861 (arguments
21862 `(#:skip-build? #t
21863 #:cargo-inputs
21864 (("rust-getrandom" ,rust-getrandom-0.1)
21865 ("rust-redox-syscall" ,rust-redox-syscall-0.1)
21866 ("rust-rust-argon2" ,rust-rust-argon2-0.7))))
21867 (home-page "https://gitlab.redox-os.org/redox-os/users")
21868 (synopsis "Access Redox users and groups")
21869 (description
21870 "This package provides a Rust library to access Redox users and groups
21871 functionality.")
21872 (license license:expat)))
21873
21874 (define-public rust-ref-cast-1.0
21875 (package
21876 (name "rust-ref-cast")
21877 (version "1.0.2")
21878 (source
21879 (origin
21880 (method url-fetch)
21881 (uri (crate-uri "ref-cast" version))
21882 (file-name
21883 (string-append name "-" version ".tar.gz"))
21884 (sha256
21885 (base32
21886 "08r6qz7228k55nlyl5v7ykdzxrasnawgzmb1jrbfbnkx2s3ifp3l"))))
21887 (build-system cargo-build-system)
21888 (arguments
21889 `(#:cargo-inputs
21890 (("rust-ref-cast-impl" ,rust-ref-cast-impl-1.0))
21891 #:cargo-development-inputs
21892 (("rust-rustversion" ,rust-rustversion-1)
21893 ("rust-trybuild" ,rust-trybuild-1))))
21894 (home-page "https://github.com/dtolnay/ref-cast")
21895 (synopsis "Safely cast &T to &U")
21896 (description
21897 "Safely cast &T to &U where the struct U contains a single field of type T.")
21898 (license (list license:expat license:asl2.0))))
21899
21900 (define-public rust-ref-cast-0.2
21901 (package
21902 (name "rust-ref-cast")
21903 (version "0.2.7")
21904 (source
21905 (origin
21906 (method url-fetch)
21907 (uri (crate-uri "ref-cast" version))
21908 (file-name
21909 (string-append name "-" version ".tar.gz"))
21910 (sha256
21911 (base32
21912 "1fcbpfb7xhr992qvyfg9hr5p63xqykjp48pm3f7a1q21vmhzksvv"))))
21913 (build-system cargo-build-system)
21914 (arguments
21915 `(#:cargo-inputs
21916 (("rust-ref-cast-impl" ,rust-ref-cast-impl-0.2))
21917 #:cargo-development-inputs
21918 (("rust-rustversion" ,rust-rustversion-0.1)
21919 ("rust-trybuild" ,rust-trybuild-1))))
21920 (home-page "https://github.com/dtolnay/ref-cast")
21921 (synopsis "Safely cast &T to &U")
21922 (description
21923 "Safely cast &T to &U where the struct U contains a single field of type T.")
21924 (license (list license:asl2.0 license:expat))))
21925
21926 (define-public rust-ref-cast-impl-1.0
21927 (package
21928 (name "rust-ref-cast-impl")
21929 (version "1.0.2")
21930 (source
21931 (origin
21932 (method url-fetch)
21933 (uri (crate-uri "ref-cast-impl" version))
21934 (file-name
21935 (string-append name "-" version ".tar.gz"))
21936 (sha256
21937 (base32
21938 "0i1i3an8si070aqg2mvz6yqc6y2pl9zhd6dd2piz17l7mdsv88bx"))))
21939 (build-system cargo-build-system)
21940 (arguments
21941 `(#:cargo-inputs
21942 (("rust-proc-macro2" ,rust-proc-macro2-1)
21943 ("rust-quote" ,rust-quote-1)
21944 ("rust-syn" ,rust-syn-1))))
21945 (home-page "https://github.com/dtolnay/ref-cast")
21946 (synopsis "Derive implementation for @code{ref_cast::RefCast}")
21947 (description
21948 "Derive implementation for @code{ref_cast::RefCast}.")
21949 (license (list license:expat license:asl2.0))))
21950
21951 (define-public rust-ref-cast-impl-0.2
21952 (package
21953 (inherit rust-ref-cast-impl-1.0)
21954 (name "rust-ref-cast-impl")
21955 (version "0.2.7")
21956 (source
21957 (origin
21958 (method url-fetch)
21959 (uri (crate-uri "ref-cast-impl" version))
21960 (file-name
21961 (string-append name "-" version ".tar.gz"))
21962 (sha256
21963 (base32
21964 "0av43xxjlinfqklb67rpj217cmaxfjsf8151gs0hbs4hnr5664ck"))))))
21965
21966 (define-public rust-regex-1
21967 (package
21968 (name "rust-regex")
21969 (version "1.3.9")
21970 (source
21971 (origin
21972 (method url-fetch)
21973 (uri (crate-uri "regex" version))
21974 (file-name
21975 (string-append name "-" version ".tar.gz"))
21976 (sha256
21977 (base32
21978 "1rnqga94ypykl2apgj26l2j1s9bvr2ix4dlzs323n6abyky80dww"))))
21979 (build-system cargo-build-system)
21980 (arguments
21981 `(#:cargo-inputs
21982 (("rust-aho-corasick" ,rust-aho-corasick-0.7)
21983 ("rust-memchr" ,rust-memchr-2)
21984 ("rust-regex-syntax" ,rust-regex-syntax-0.6)
21985 ("rust-thread-local" ,rust-thread-local-1.0))
21986 #:cargo-development-inputs
21987 (("rust-lazy-static" ,rust-lazy-static-1)
21988 ("rust-quickcheck" ,rust-quickcheck-0.8)
21989 ("rust-rand" ,rust-rand-0.6))))
21990 (home-page "https://github.com/rust-lang/regex")
21991 (synopsis "Regular expressions for Rust")
21992 (description
21993 "An implementation of regular expressions for Rust. This implementation
21994 uses finite automata and guarantees linear time matching on all inputs.")
21995 (license (list license:expat license:asl2.0))))
21996
21997 (define-public rust-regex-0.2
21998 (package
21999 (inherit rust-regex-1)
22000 (name "rust-regex")
22001 (version "0.2.11")
22002 (source
22003 (origin
22004 (method url-fetch)
22005 (uri (crate-uri "regex" version))
22006 (file-name
22007 (string-append name "-" version ".tar.gz"))
22008 (sha256
22009 (base32
22010 "1163ir1k5zjspirfjl4wqbviwrxlhmfwy95xxb69y4irkv4snack"))))
22011 (build-system cargo-build-system)
22012 (arguments
22013 `(#:skip-build? #t
22014 #:cargo-inputs
22015 (("rust-aho-corasick" ,rust-aho-corasick-0.6)
22016 ("rust-memchr" ,rust-memchr-2)
22017 ("rust-regex-syntax" ,rust-regex-syntax-0.5)
22018 ("rust-thread-local" ,rust-thread-local-0.3)
22019 ("rust-utf8-ranges" ,rust-utf8-ranges-1.0))
22020 #:cargo-development-inputs
22021 (("rust-lazy-static" ,rust-lazy-static-1)
22022 ("rust-quickcheck" ,rust-quickcheck-0.6)
22023 ("rust-rand" ,rust-rand-0.4))))))
22024
22025 (define-public rust-regex-0.1
22026 (package
22027 (inherit rust-regex-0.2)
22028 (name "rust-regex")
22029 (version "0.1.80")
22030 (source
22031 (origin
22032 (method url-fetch)
22033 (uri (crate-uri "regex" version))
22034 (file-name
22035 (string-append name "-" version ".tar.gz"))
22036 (sha256
22037 (base32
22038 "0bs036h3vzc6pj5jj4vc909s9rppq7b808ic99qn0y6gm3karm2g"))))
22039 (arguments
22040 `(#:skip-build? #t ; Can't find dependent crates.
22041 #:cargo-inputs
22042 (("rust-aho-corasick" ,rust-aho-corasick-0.5)
22043 ("rust-memchr" ,rust-memchr-0.1)
22044 ("rust-regex-syntax" ,rust-regex-syntax-0.3)
22045 ("rust-simd" ,rust-simd-0.2) ; 0.1?
22046 ("rust-thread-local" ,rust-thread-local-0.2)
22047 ("rust-utf8-ranges" ,rust-utf8-ranges-0.1))
22048 #:cargo-development-inputs
22049 (("rust-lazy-static" ,rust-lazy-static-0.1)
22050 ("rust-quickcheck" ,rust-quickcheck-0.2)
22051 ("rust-rand" ,rust-rand-0.3))))))
22052
22053 (define-public rust-regex-automata-0.1
22054 (package
22055 (name "rust-regex-automata")
22056 (version "0.1.9")
22057 (source
22058 (origin
22059 (method url-fetch)
22060 (uri (crate-uri "regex-automata" version))
22061 (file-name
22062 (string-append name "-" version ".tar.gz"))
22063 (sha256
22064 (base32
22065 "1r3aqa9c0s9sfrmd2w0mli16ldjzbar0rzb1x7srfjkasrqys7df"))))
22066 (build-system cargo-build-system)
22067 (arguments
22068 `(#:skip-build? #t
22069 #:cargo-inputs
22070 (("rust-fst" ,rust-fst-0.4)
22071 ("rust-byteorder" ,rust-byteorder-1)
22072 ("rust-regex-syntax" ,rust-regex-syntax-0.6))
22073 #:cargo-development-inputs
22074 (("rust-bstr" ,rust-bstr-0.2)
22075 ("rust-lazy-static" ,rust-lazy-static-1)
22076 ("rust-regex" ,rust-regex-1)
22077 ("rust-serde" ,rust-serde-1)
22078 ("rust-serde-bytes" ,rust-serde-bytes-0.11)
22079 ("rust-serde-derive" ,rust-serde-derive-1)
22080 ("rust-toml" ,rust-toml-0.5)))) ; 0.4
22081 (home-page "https://github.com/BurntSushi/regex-automata")
22082 (synopsis
22083 "Automata construction and matching using regular expressions")
22084 (description
22085 "Automata construction and matching using regular expressions.")
22086 (license (list license:expat license:unlicense))))
22087
22088 (define-public rust-regex-syntax-0.6
22089 (package
22090 (name "rust-regex-syntax")
22091 (version "0.6.18")
22092 (source
22093 (origin
22094 (method url-fetch)
22095 (uri (crate-uri "regex-syntax" version))
22096 (file-name (string-append name "-" version ".crate"))
22097 (sha256
22098 (base32
22099 "1s648w7rwpxnq9iqwbyy43ar4al07906jpz0jxlql23bgjwjwh96"))))
22100 (build-system cargo-build-system)
22101 (home-page "https://github.com/rust-lang/regex")
22102 (synopsis "Regular expression parser")
22103 (description
22104 "This package provides a regular expression parser.")
22105 (license (list license:asl2.0
22106 license:expat))))
22107
22108 (define-public rust-regex-syntax-0.5
22109 (package
22110 (inherit rust-regex-syntax-0.6)
22111 (name "rust-regex-syntax")
22112 (version "0.5.6")
22113 (source
22114 (origin
22115 (method url-fetch)
22116 (uri (crate-uri "regex-syntax" version))
22117 (file-name
22118 (string-append name "-" version ".tar.gz"))
22119 (sha256
22120 (base32
22121 "19zp25jr3dhmclg3qqjk3bh1yrn7bqi05zgr5v52szv3l97plw3x"))))
22122 (arguments
22123 `(#:skip-build? #t
22124 #:cargo-inputs
22125 (("rust-ucd-util" ,rust-ucd-util-0.1))))))
22126
22127 (define-public rust-regex-syntax-0.4
22128 (package
22129 (inherit rust-regex-syntax-0.6)
22130 (name "rust-regex-syntax")
22131 (version "0.4.2")
22132 (source
22133 (origin
22134 (method url-fetch)
22135 (uri (crate-uri "regex-syntax" version))
22136 (file-name
22137 (string-append name "-" version ".tar.gz"))
22138 (sha256
22139 (base32
22140 "03p24bsfg2rw2cc5h8ri4fp7j06xwyyd5grlqy0g11ixp5c1r4wf"))))
22141 (arguments
22142 `(#:cargo-development-inputs
22143 (("rust-quickcheck" ,rust-quickcheck-0.6)
22144 ("rust-rand" ,rust-rand-0.4))))))
22145
22146 (define-public rust-regex-syntax-0.3
22147 (package
22148 (inherit rust-regex-syntax-0.6)
22149 (name "rust-regex-syntax")
22150 (version "0.3.9")
22151 (source
22152 (origin
22153 (method url-fetch)
22154 (uri (crate-uri "regex-syntax" version))
22155 (file-name (string-append name "-" version ".tar.gz"))
22156 (sha256
22157 (base32
22158 "0ms9hgdhhsxw9w920i7gipydvagf100bb56jbs192rz86ln01v7r"))))
22159 (arguments
22160 `(#:cargo-development-inputs
22161 (("rust-quickcheck" ,rust-quickcheck-0.2)
22162 ("rust-rand" ,rust-rand-0.3))))))
22163
22164 (define-public rust-relative-path-1
22165 (package
22166 (name "rust-relative-path")
22167 (version "1.3.2")
22168 (source
22169 (origin
22170 (method url-fetch)
22171 (uri (crate-uri "relative_path" version))
22172 (file-name (string-append name "-" version ".tar.gz"))
22173 (sha256
22174 (base32
22175 "152zdks8chgsq4vmp562bx6whvixm7gzivab1cf8rs1r634ggbv5"))))
22176 (build-system cargo-build-system)
22177 (arguments
22178 `(#:cargo-inputs
22179 (("rust-serde" ,rust-serde-1))
22180 #:cargo-development-inputs
22181 (("rust-serde" ,rust-serde-1))))
22182 (home-page "https://docs.rs/crate/relative-path/")
22183 (synopsis "Portable, relative paths for Rust")
22184 (description "This package provides portable, relative paths for Rust.")
22185 (license (list license:expat license:asl2.0))))
22186
22187 (define-public rust-remove-dir-all-0.5
22188 (package
22189 (name "rust-remove-dir-all")
22190 (version "0.5.3")
22191 (source
22192 (origin
22193 (method url-fetch)
22194 (uri (crate-uri "remove_dir_all" version))
22195 (file-name (string-append name "-" version ".tar.gz"))
22196 (sha256
22197 (base32
22198 "1rzqbsgkmr053bxxl04vmvsd1njyz0nxvly97aip6aa2cmb15k9s"))
22199 (modules '((guix build utils)))
22200 (snippet
22201 '(begin
22202 ;; 'doctest' isn't stable until rust-1.40
22203 (substitute* "src/lib.rs"
22204 (("\\(doctest") "(test"))
22205 #t))))
22206 (build-system cargo-build-system)
22207 (arguments
22208 `(#:cargo-inputs
22209 (("rust-winapi" ,rust-winapi-0.3))
22210 #:cargo-development-inputs
22211 (("rust-doc-comment" ,rust-doc-comment-0.3))))
22212 (home-page "https://github.com/XAMPPRocky/remove_dir_all")
22213 (synopsis "Implementation of remove_dir_all for Windows")
22214 (description
22215 "This package provides a safe, reliable implementation of
22216 @code{remove_dir_all} for Windows")
22217 (license (list license:asl2.0
22218 license:expat))))
22219
22220 (define-public rust-reopen-0.3
22221 (package
22222 (name "rust-reopen")
22223 (version "0.3.0")
22224 (source
22225 (origin
22226 (method url-fetch)
22227 (uri (crate-uri "reopen" version))
22228 (file-name
22229 (string-append name "-" version ".tar.gz"))
22230 (sha256
22231 (base32
22232 "12b3mfxkwb8akdfa701nzvqr6lsc6n84vrq088gmjy8lxlmr4an6"))))
22233 (build-system cargo-build-system)
22234 (arguments
22235 `(#:skip-build? #t
22236 #:cargo-inputs
22237 (("rust-signal-hook" ,rust-signal-hook-0.1)
22238 ("rust-libc" ,rust-libc-0.2))))
22239 (home-page "https://github.com/vorner/reopen")
22240 (synopsis "File reopening utility")
22241 (description "File reopening utility.")
22242 (license (list license:asl2.0 license:expat))))
22243
22244 (define-public rust-reqwest-0.10
22245 (package
22246 (name "rust-reqwest")
22247 (version "0.10.8")
22248 (source
22249 (origin
22250 (method url-fetch)
22251 (uri (crate-uri "reqwest" version))
22252 (file-name (string-append name "-" version ".tar.gz"))
22253 (sha256
22254 (base32
22255 "07nnj0qzj8g64iagx7xzk02493yqdahqy49xa2vkif6pqmxa3sp9"))))
22256 (build-system cargo-build-system)
22257 (arguments
22258 `(#:cargo-inputs
22259 (("rust-async-compression" ,rust-async-compression-0.3)
22260 ("rust-base64" ,rust-base64-0.12)
22261 ("rust-bytes" ,rust-bytes-0.5)
22262 ("rust-cookie" ,rust-cookie-0.14)
22263 ("rust-cookie-store" ,rust-cookie-store-0.12)
22264 ("rust-encoding-rs" ,rust-encoding-rs-0.8)
22265 ("rust-futures-core" ,rust-futures-core-0.3)
22266 ("rust-futures-util" ,rust-futures-util-0.3)
22267 ("rust-http" ,rust-http-0.2)
22268 ("rust-http-body" ,rust-http-body-0.3)
22269 ("rust-hyper" ,rust-hyper-0.13)
22270 ("rust-hyper-rustls" ,rust-hyper-rustls-0.21)
22271 ("rust-hyper-tls" ,rust-hyper-tls-0.4)
22272 ("rust-ipnet" ,rust-ipnet-2)
22273 ("rust-js-sys" ,rust-js-sys-0.3)
22274 ("rust-lazy-static" ,rust-lazy-static-1)
22275 ("rust-log" ,rust-log-0.4)
22276 ("rust-mime" ,rust-mime-0.3)
22277 ("rust-mime-guess" ,rust-mime-guess-2)
22278 ("rust-native-tls" ,rust-native-tls-0.2)
22279 ("rust-percent-encoding" ,rust-percent-encoding-2)
22280 ("rust-pin-project-lite" ,rust-pin-project-lite-0.1)
22281 ("rust-rustls" ,rust-rustls-0.18)
22282 ("rust-serde" ,rust-serde-1)
22283 ("rust-serde-json" ,rust-serde-json-1)
22284 ("rust-serde-urlencoded" ,rust-serde-urlencoded-0.6)
22285 ("rust-time" ,rust-time-0.2)
22286 ("rust-tokio" ,rust-tokio-0.2)
22287 ("rust-tokio-rustls" ,rust-tokio-rustls-0.14)
22288 ("rust-tokio-socks" ,rust-tokio-socks-0.2)
22289 ("rust-tokio-tls" ,rust-tokio-tls-0.3)
22290 ("rust-trust-dns-resolver" ,rust-trust-dns-resolver-0.19)
22291 ("rust-url" ,rust-url-2)
22292 ("rust-wasm-bindgen" ,rust-wasm-bindgen-0.2)
22293 ("rust-wasm-bindgen-futures" ,rust-wasm-bindgen-futures-0.4)
22294 ("rust-web-sys" ,rust-web-sys-0.3)
22295 ("rust-webpki-roots" ,rust-webpki-roots-0.19)
22296 ("rust-winreg" ,rust-winreg-0.7))
22297 #:cargo-development-inputs
22298 (("rust-brotli" ,rust-brotli-3)
22299 ("rust-doc-comment" ,rust-doc-comment-0.3)
22300 ("rust-env-logger" ,rust-env-logger-0.7)
22301 ("rust-hyper" ,rust-hyper-0.13)
22302 ("rust-libflate" ,rust-libflate-1)
22303 ("rust-serde" ,rust-serde-1)
22304 ("rust-tokio" ,rust-tokio-0.2))))
22305 (home-page "https://github.com/seanmonstar/reqwest")
22306 (synopsis "High level HTTP client library")
22307 (description "This package provides a high level HTTP client library.")
22308 (license (list license:expat license:asl2.0))))
22309
22310 (define-public rust-resolv-conf-0.6
22311 (package
22312 (name "rust-resolv-conf")
22313 (version "0.6.3")
22314 (source
22315 (origin
22316 (method url-fetch)
22317 (uri (crate-uri "resolv-conf" version))
22318 (file-name (string-append name "-" version ".crate"))
22319 (sha256
22320 (base32
22321 "0jlzifww1h7j23jnjj49xz8q0fpd9rqpd0ks8c4y651vgw9lx0qi"))))
22322 (build-system cargo-build-system)
22323 (arguments
22324 `(#:tests? #f ; Not all test files included.
22325 #:cargo-inputs
22326 (("rust-quick-error" ,rust-quick-error-1.2)
22327 ("rust-hostname" ,rust-hostname-0.3))))
22328 (home-page "https://github.com/tailhook/resolv-conf")
22329 (synopsis "Parser for /etc/resolv.conf")
22330 (description
22331 "An /etc/resolv.conf parser crate for Rust.")
22332 (license (list license:asl2.0
22333 license:expat))))
22334
22335 (define-public rust-retain-mut-0.1
22336 (package
22337 (name "rust-retain-mut")
22338 (version "0.1.1")
22339 (source
22340 (origin
22341 (method url-fetch)
22342 (uri (crate-uri "retain_mut" version))
22343 (file-name (string-append name "-" version ".tar.gz"))
22344 (sha256
22345 (base32
22346 "0cgmm1q7sr31r9wk7syh53ipgqpl37jzsvahdhmwrsi6mmcdc1g0"))))
22347 (build-system cargo-build-system)
22348 (home-page "https://github.com/upsuper/retain_mut")
22349 (synopsis "Mutable borrow for the retain predicate")
22350 (description "This package provides retain_mut method that has the same
22351 functionality as retain but gives mutable borrow to the predicate.")
22352 (license license:expat)))
22353
22354 (define-public rust-ring-0.16
22355 (package
22356 (name "rust-ring")
22357 (version "0.16.12")
22358 (source
22359 (origin
22360 (method url-fetch)
22361 (uri (crate-uri "ring" version))
22362 (file-name (string-append name "-" version ".tar.gz"))
22363 (sha256
22364 (base32 "033sb54dlmiqdivc8v9ykkq3v08lzy0syjf5k1nag2gfcknai98v"))))
22365 (build-system cargo-build-system)
22366 (arguments
22367 `(#:cargo-inputs
22368 (("rust-lazy-static" ,rust-lazy-static-1.3)
22369 ("rust-libc" ,rust-libc-0.2)
22370 ("rust-spin" ,rust-spin-0.5)
22371 ("rust-untrusted" ,rust-untrusted-0.7)
22372 ("rust-web-sys" ,rust-web-sys-0.3)
22373 ("rust-winapi" ,rust-winapi-0.3)
22374 ;; build dependencies
22375 ("rust-cc" ,rust-cc-1))
22376 #:cargo-development-inputs
22377 (("rust-libc" ,rust-libc-0.2)
22378 ("rust-wasm-bindgen-test" ,rust-wasm-bindgen-test-0.2))))
22379 (home-page "https://github.com/briansmith/ring")
22380 (synopsis "Safe, fast, small crypto using Rust")
22381 (description "This package provided safe, fast, small crypto using Rust.")
22382 (license (list license:isc license:openssl))))
22383
22384 (define-public rust-ring-0.14
22385 (package
22386 (inherit rust-ring-0.16)
22387 (name "rust-ring")
22388 (version "0.14.6")
22389 (source
22390 (origin
22391 (method url-fetch)
22392 (uri (crate-uri "ring" version))
22393 (file-name
22394 (string-append name "-" version ".tar.gz"))
22395 (sha256
22396 (base32
22397 "0g091akf4dpg9qj05z3gc4nlrs57mjj2bqab98gaqp79wf3c2ss2"))))
22398 (arguments
22399 `(#:cargo-inputs
22400 (("rust-lazy-static" ,rust-lazy-static-1)
22401 ("rust-libc" ,rust-libc-0.2)
22402 ("rust-spin" ,rust-spin-0.5)
22403 ("rust-untrusted" ,rust-untrusted-0.6)
22404 ("rust-winapi" ,rust-winapi-0.3)
22405 ("rust-cc" ,rust-cc-1))))))
22406
22407 (define-public rust-ring-0.13
22408 (package/inherit rust-ring-0.16
22409 (name "rust-ring")
22410 (version "0.13.5")
22411 (source
22412 (origin
22413 (method url-fetch)
22414 (uri (crate-uri "ring" version))
22415 (file-name (string-append name "-" version ".tar.gz"))
22416 (sha256
22417 (base32 "12j580by6a438i5mw3136cj3lxylywymdr5p8rqlkwrm5s5bck9c"))))
22418 (build-system cargo-build-system)
22419 (arguments
22420 `(#:cargo-inputs
22421 (("rust-lazy-static" ,rust-lazy-static-1)
22422 ("rust-libc" ,rust-libc-0.2)
22423 ("rust-untrusted" ,rust-untrusted-0.6)
22424 ;; build dependencies
22425 ("rust-cc" ,rust-cc-1))))))
22426
22427 (define-public rust-rle-decode-fast-1
22428 (package
22429 (name "rust-rle-decode-fast")
22430 (version "1.0.1")
22431 (source
22432 (origin
22433 (method url-fetch)
22434 (uri (crate-uri "rle-decode-fast" version))
22435 (file-name (string-append name "-" version ".tar.gz"))
22436 (sha256
22437 (base32 "1b4h7qs4mssc5dnlhs3f91ya8pb40bv72zzshl18gify2jllzgna"))))
22438 (build-system cargo-build-system)
22439 (arguments
22440 `(#:cargo-inputs
22441 (("rust-criterion" ,rust-criterion-0.2))))
22442 (home-page "https://github.com/WanzenBug/rle-decode-helper")
22443 (synopsis "Implement decoding for Run Length Encoded data in Rust")
22444 (description
22445 "This crate provides a fast way to implement any kind of decoding
22446 for Run Length Encoded data in Rust.
22447
22448 Writing a fast decoder that is also safe can be quite challenging, so
22449 this crate is here to save you the hassle of maintaining and testing
22450 your own implementation.")
22451 (license (list license:expat license:asl2.0))))
22452
22453 (define-public rust-rls-span-0.5
22454 (package
22455 (name "rust-rls-span")
22456 (version "0.5.2")
22457 (source
22458 (origin
22459 (method url-fetch)
22460 (uri (crate-uri "rls-span" version))
22461 (file-name
22462 (string-append name "-" version ".tar.gz"))
22463 (sha256
22464 (base32
22465 "0d6rwya5zsyw6vmrj8d8g3fgvic0xyp1lvfhv62vswk2dzavxsgj"))))
22466 (build-system cargo-build-system)
22467 (arguments
22468 `(#:cargo-inputs
22469 (("rust-rustc-serialize" ,rust-rustc-serialize-0.3)
22470 ("rust-serde" ,rust-serde-1)
22471 ("rust-serde-derive" ,rust-serde-derive-1))))
22472 (home-page "https://github.com/rust-lang/rls")
22473 (synopsis "Types for identifying code spans/ranges")
22474 (description
22475 "Identify Rust code spans and ranges using these types - for use with the
22476 Rust Language Server.")
22477 (license (list license:expat license:asl2.0))))
22478
22479 (define-public rust-ron-0.5
22480 (package
22481 (name "rust-ron")
22482 (version "0.5.1")
22483 (source
22484 (origin
22485 (method url-fetch)
22486 (uri (crate-uri "ron" version))
22487 (file-name (string-append name "-" version ".tar.gz"))
22488 (sha256 (base32 "1mb2bavvp8jg5wx0kx9n45anrsbjwhjzddim987bjaa11hg45kif"))))
22489 (build-system cargo-build-system)
22490 (arguments
22491 `(#:cargo-inputs
22492 (("rust-base64" ,rust-base64-0.10)
22493 ("rust-bitflags" ,rust-bitflags-1)
22494 ("rust-serde" ,rust-serde-1))
22495 #:cargo-development-inputs
22496 (("rust-serde-bytes" ,rust-serde-bytes-0.10)
22497 ("rust-serde-json" ,rust-serde-json-1))))
22498 (home-page "https://github.com/ron-rs/ron")
22499 (synopsis "Rusty Object Notation")
22500 (description "This package provides Rusty Object Notation (RON).")
22501 (license (list license:expat license:asl2.0))))
22502
22503 (define-public rust-ron-0.4
22504 (package
22505 (inherit rust-ron-0.5)
22506 (name "rust-ron")
22507 (version "0.4.2")
22508 (source
22509 (origin
22510 (method url-fetch)
22511 (uri (crate-uri "ron" version))
22512 (file-name
22513 (string-append name "-" version ".tar.gz"))
22514 (sha256
22515 (base32
22516 "13ypx80ac1minrmn9w9sgnbxlknwiv7qhx5n50azh0s484j2mx8p"))))
22517 (arguments
22518 `(#:skip-build? #t
22519 #:cargo-inputs
22520 (("rust-base64" ,rust-base64-0.10)
22521 ("rust-bitflags" ,rust-bitflags-1)
22522 ("rust-serde" ,rust-serde-1))
22523 #:cargo-development-inputs
22524 (;("rust-serde-bytes" ,rust-serde-bytes-0.10)
22525 ("rust-serde-json" ,rust-serde-json-1))))))
22526
22527 (define-public rust-rspec-1
22528 (package
22529 (name "rust-rspec")
22530 (version "1.0.0-beta.4")
22531 (source
22532 (origin
22533 (method url-fetch)
22534 (uri (crate-uri "rspec" version))
22535 (file-name (string-append name "-" version ".tar.gz"))
22536 (sha256
22537 (base32 "1abfzwkbxlwahb243k8d3fp6i135lx1aqmbfl79w9zlpng182ndk"))))
22538 (build-system cargo-build-system)
22539 (arguments
22540 `(#:skip-build? #t ;; TODO unpackaged dev-dependencies
22541 #:cargo-inputs
22542 (("rust-colored" ,rust-colored-1)
22543 ("rust-derive-new" ,rust-derive-new-0.5)
22544 ("rust-derive-builder" ,rust-derive-builder-0.5)
22545 ("rust-expectest" ,rust-expectest-0.9)
22546 ("rust-rayon" ,rust-rayon-0.8))
22547 #:cargo-development-inputs
22548 (("rust-clippy" ,rust-clippy-0.0)))) ;; requires 0.0.153
22549 (home-page "https://github.com/rust-rspec/rspec")
22550 (synopsis "Write Rspec-like tests with stable rust")
22551 (description "This package helps writing Rspec-like tests with stable
22552 rust.")
22553 (license license:mpl2.0)))
22554
22555 (define-public rust-rpassword-5
22556 (package
22557 (name "rust-rpassword")
22558 (version "5.0.0")
22559 (source
22560 (origin
22561 (method url-fetch)
22562 (uri (crate-uri "rpassword" version))
22563 (file-name (string-append name "-" version ".tar.gz"))
22564 (sha256
22565 (base32 "1j96nc3dmqhxwb4ql50r5xjs0imwr2x6mrj02mj9i7grq1zj6mfp"))))
22566 (build-system cargo-build-system)
22567 (arguments
22568 `(#:skip-build? #t
22569 #:cargo-inputs
22570 (("rust-libc" ,rust-libc-0.2)
22571 ("rust-winapi" ,rust-winapi-0.3))))
22572 (home-page "https://github.com/conradkleinespel/rpassword")
22573 (synopsis "Read passwords in Rust console applications")
22574 (description "This package provides a crate for reading passwords in
22575 console applications.")
22576 (license license:asl2.0)))
22577
22578 (define-public rust-rpassword-4
22579 (package
22580 (inherit rust-rpassword-5)
22581 (name "rust-rpassword")
22582 (version "4.0.5")
22583 (source
22584 (origin
22585 (method url-fetch)
22586 (uri (crate-uri "rpassword" version))
22587 (file-name (string-append name "-" version ".tar.gz"))
22588 (sha256
22589 (base32 "17z99xazhhbaczw0ib1vnnq450j0zacdn8b2zcbdir68sdbicdwr"))))))
22590
22591 (define-public rust-rpassword-3
22592 (package
22593 (inherit rust-rpassword-4)
22594 (name "rust-rpassword")
22595 (version "3.0.2")
22596 (source
22597 (origin
22598 (method url-fetch)
22599 (uri (crate-uri "rpassword" version))
22600 (file-name
22601 (string-append name "-" version ".tar.gz"))
22602 (sha256
22603 (base32
22604 "0vkifbbs160d7i7wy3kb0vw9mbf3pf470hg8f623rjkzmsyafky3"))))
22605 (arguments
22606 `(#:cargo-inputs
22607 (("rust-kernel32-sys" ,rust-kernel32-sys-0.2)
22608 ("rust-libc" ,rust-libc-0.2)
22609 ("rust-winapi" ,rust-winapi-0.2))))))
22610
22611 (define-public rust-rpassword-2
22612 (package
22613 (inherit rust-rpassword-3)
22614 (name "rust-rpassword")
22615 (version "2.1.0")
22616 (source
22617 (origin
22618 (method url-fetch)
22619 (uri (crate-uri "rpassword" version))
22620 (file-name
22621 (string-append name "-" version ".tar.gz"))
22622 (sha256
22623 (base32
22624 "1v255xqkig5lwnczvm3achydhxx6kf9jcdxdlgzndgpd18bp6x6k"))))))
22625
22626 (define-public rust-rusqlite-0.19
22627 (package
22628 (name "rust-rusqlite")
22629 (version "0.19.0")
22630 (source
22631 (origin
22632 (method url-fetch)
22633 (uri (crate-uri "rusqlite" version))
22634 (file-name (string-append name "-" version ".tar.gz"))
22635 (sha256
22636 (base32 "19xq7s0kzhlljm3hqx0vidr91ia8hl49r4m5gwdj9dyywgks5g3f"))))
22637 (build-system cargo-build-system)
22638 (inputs
22639 `(("sqlite" ,sqlite)))
22640 (arguments
22641 `(#:cargo-inputs
22642 (("rust-bitflags" ,rust-bitflags-1)
22643 ("rust-byteorder" ,rust-byteorder-1)
22644 ("rust-chrono" ,rust-chrono-0.4)
22645 ("rust-csv" ,rust-csv-1.1)
22646 ("rust-fallible-iterator" ,rust-fallible-iterator-0.2)
22647 ("rust-fallible-streaming-iterator"
22648 ,rust-fallible-streaming-iterator-0.1)
22649 ("rust-lazy-static" ,rust-lazy-static-1)
22650 ("rust-libsqlite3-sys" ,rust-libsqlite3-sys-0.15)
22651 ("rust-lru-cache" ,rust-lru-cache-0.1)
22652 ("rust-memchr" ,rust-memchr-2)
22653 ("rust-serde-json" ,rust-serde-json-1)
22654 ("rust-time" ,rust-time-0.1)
22655 ("rust-url" ,rust-url-1)
22656 ("rust-uuid" ,rust-uuid-0.7))
22657 #:cargo-development-inputs
22658 (("rust-lazy-static" ,rust-lazy-static-1)
22659 ("rust-regex" ,rust-regex-1)
22660 ("rust-tempdir" ,rust-tempdir-0.3)
22661 ("rust-unicase" ,rust-unicase-2)
22662 ("rust-uuid" ,rust-uuid-0.7))))
22663 (home-page "https://github.com/rusqlite/rusqlite")
22664 (synopsis "Wrapper for SQLite")
22665 (description "This prackage provides a wrapper for SQLite.")
22666 (license license:expat)))
22667
22668 (define-public rust-rust-argon2-0.7
22669 (package
22670 (name "rust-rust-argon2")
22671 (version "0.7.0")
22672 (source
22673 (origin
22674 (method url-fetch)
22675 (uri (crate-uri "rust-argon2" version))
22676 (file-name
22677 (string-append name "-" version ".tar.gz"))
22678 (sha256
22679 (base32
22680 "05xh5wfxgzq3b6jys8r34f3hmqqfs8ylvf934n9z87wfv95szj1b"))))
22681 (build-system cargo-build-system)
22682 (arguments
22683 `(#:skip-build? #t
22684 #:cargo-inputs
22685 (("rust-constant-time-eq" ,rust-constant-time-eq-0.1)
22686 ("rust-base64" ,rust-base64-0.11)
22687 ("rust-blake2b-simd" ,rust-blake2b-simd-0.5)
22688 ("rust-crossbeam-utils" ,rust-crossbeam-utils-0.7))))
22689 (home-page "https://github.com/sru-systems/rust-argon2")
22690 (synopsis
22691 "Rust implementation of the Argon2 password hashing function")
22692 (description
22693 "This package provides a Rust implementation of the Argon2 password
22694 hashing function.")
22695 (license (list license:expat license:asl2.0))))
22696
22697 (define-public rust-rust-argon2-0.5
22698 (package
22699 (name "rust-rust-argon2")
22700 (version "0.5.1")
22701 (source
22702 (origin
22703 (method url-fetch)
22704 (uri (crate-uri "rust-argon2" version))
22705 (file-name
22706 (string-append name "-" version ".tar.gz"))
22707 (sha256
22708 (base32
22709 "1krjkmyfn37hy7sfs6lqia0fsvw130nn1z2850glsjcva7pym92c"))))
22710 (build-system cargo-build-system)
22711 (arguments
22712 `(#:skip-build? #t
22713 #:cargo-inputs
22714 (("rust-base64" ,rust-base64-0.10)
22715 ("rust-blake2b-simd" ,rust-blake2b-simd-0.5)
22716 ("rust-crossbeam-utils" ,rust-crossbeam-utils-0.6))
22717 #:cargo-development-inputs
22718 (("rust-hex" ,rust-hex-0.3))))
22719 (home-page "https://github.com/sru-systems/rust-argon2")
22720 (synopsis "Rust implementation of the Argon2 password hashing function")
22721 (description "This package contains a rust implementation of the Argon2
22722 password hashing function.")
22723 (license (list license:expat license:asl2.0))))
22724
22725 (define-public rust-rust-base58-0.0
22726 (package
22727 (name "rust-rust-base58")
22728 (version "0.0.4")
22729 (source
22730 (origin
22731 (method url-fetch)
22732 (uri (crate-uri "rust-base58" version))
22733 (file-name
22734 (string-append name "-" version ".tar.gz"))
22735 (sha256
22736 (base32
22737 "0fa4y2jjjmg1a0cr3gz4z8rkic0hx2vx5nm23za9lwf6rlgvj4xk"))
22738 (modules '((guix build utils)))
22739 (snippet
22740 '(begin
22741 ;; Otherwise we get an error: no method named `gen_iter` found
22742 ;; for type `rand::prelude::ThreadRng`
22743 (substitute* "Cargo.toml"
22744 (("rand.*") "rand = \"<0.6\"\n"))
22745 #t))))
22746 (build-system cargo-build-system)
22747 (arguments
22748 `(#:cargo-inputs
22749 (("rust-num" ,rust-num-0.1))
22750 #:cargo-development-inputs
22751 (("rust-rand" ,rust-rand-0.4))))
22752 (home-page "https://github.com/nham/rust-base58")
22753 (synopsis
22754 "Simple library for converting to and from base-58 strings")
22755 (description
22756 "Convert to and from base-58 strings with a simple Rust api.
22757 Currently the conversion uses the Bitcoin base58 alphabet.")
22758 (license (list license:asl2.0 license:expat))))
22759
22760 (define-public rust-rust-hawktracer-0.7
22761 (package
22762 (name "rust-rust-hawktracer")
22763 (version "0.7.0")
22764 (source
22765 (origin
22766 (method url-fetch)
22767 (uri (crate-uri "rust_hawktracer" version))
22768 (file-name
22769 (string-append name "-" version ".tar.gz"))
22770 (sha256
22771 (base32
22772 "1h9an3b73pmhhpzc2kk93nh93lplkvsffysj0rp6rxi7p4lhlj73"))))
22773 (build-system cargo-build-system)
22774 (arguments
22775 `(#:skip-build? #t
22776 #:cargo-inputs
22777 (("rust-rust-hawktracer-normal-macro"
22778 ,rust-rust-hawktracer-normal-macro-0.4)
22779 ("rust-rust-hawktracer-proc-macro"
22780 ,rust-rust-hawktracer-proc-macro-0.4))))
22781 (home-page "https://github.com/AlexEne/rust_hawktracer")
22782 (synopsis "Rust bindings for hawktracer profiling library")
22783 (description
22784 "Rust bindings for hawktracer profiling library.")
22785 (license (list license:expat license:asl2.0))))
22786
22787 (define-public rust-rust-hawktracer-proc-macro-0.4
22788 (package
22789 (name "rust-rust-hawktracer-proc-macro")
22790 (version "0.4.1")
22791 (source
22792 (origin
22793 (method url-fetch)
22794 (uri (crate-uri "rust_hawktracer_proc_macro" version))
22795 (file-name
22796 (string-append name "-" version ".tar.gz"))
22797 (sha256
22798 (base32
22799 "1qfksscfv8rbbzv2zb0i9sbbqmig0dr0vrma3c1kzsfmpsynlqnb"))))
22800 (build-system cargo-build-system)
22801 (arguments
22802 `(#:skip-build? #t
22803 #:cargo-inputs
22804 (("rust-rust-hawktracer-sys" ,rust-rust-hawktracer-sys-0.4))))
22805 (home-page "https://github.com/AlexEne/rust_hawktracer_proc_macro")
22806 (synopsis
22807 "Helper crate for hawktracer profiling library")
22808 (description
22809 "This package is a helper crate for hawktracer profiling library.")
22810 (license (list license:expat license:asl2.0))))
22811
22812 (define-public rust-rust-hawktracer-normal-macro-0.4
22813 (package
22814 (name "rust-rust-hawktracer-normal-macro")
22815 (version "0.4.1")
22816 (source
22817 (origin
22818 (method url-fetch)
22819 (uri (crate-uri
22820 "rust_hawktracer_normal_macro"
22821 version))
22822 (file-name
22823 (string-append name "-" version ".tar.gz"))
22824 (sha256
22825 (base32
22826 "1sfjmipdbb5s498c150czr6wihjlkwwgla2jyg3cs7cyjich0mwa"))))
22827 (build-system cargo-build-system)
22828 (arguments
22829 `(#:skip-build? #t
22830 #:cargo-inputs
22831 (("rust-rust-hawktracer-sys" ,rust-rust-hawktracer-sys-0.4))))
22832 (home-page "https://github.com/AlexEne/rust_hawktracer_normal_macro")
22833 (synopsis "Helper crate for hawktracer profiling library")
22834 (description
22835 "This package provides a helper crate for hawktracer profiling library.")
22836 (license (list license:expat license:asl2.0))))
22837
22838 (define-public rust-rust-hawktracer-sys-0.4
22839 (package
22840 (name "rust-rust-hawktracer-sys")
22841 (version "0.4.2")
22842 (source
22843 (origin
22844 (method url-fetch)
22845 (uri (crate-uri "rust_hawktracer_sys" version))
22846 (file-name
22847 (string-append name "-" version ".tar.gz"))
22848 (sha256
22849 (base32
22850 "15acrj881y2g7cwsgf1nr22cixrknp8m4x08dkx1an6zf4q8bk37"))))
22851 (build-system cargo-build-system)
22852 (arguments
22853 `(#:skip-build? #t
22854 #:cargo-inputs
22855 (("rust-cmake" ,rust-cmake-0.1)
22856 ("rust-pkg-config" ,rust-pkg-config-0.3)
22857 ("rust-bindgen" ,rust-bindgen-0.37)
22858 ("rust-itertools" ,rust-itertools-0.8))))
22859 (home-page "https://github.com/AlexEne/rust_hawktracer_sys")
22860 (synopsis
22861 "Sys crate for the rust_hawktracer library")
22862 (description
22863 "This package provides a sys crate for the rust_hawktracer library.")
22864 (license (list license:expat license:asl2.0))))
22865
22866 (define-public rust-rustc-ap-arena-654
22867 (package
22868 (name "rust-rustc-ap-arena")
22869 (version "654.0.0")
22870 (source
22871 (origin
22872 (method url-fetch)
22873 (uri (crate-uri "rustc-ap-arena" version))
22874 (file-name
22875 (string-append name "-" version ".tar.gz"))
22876 (sha256
22877 (base32
22878 "18yc4i5m2vf6w8na29i5jv8l4l0yknsf6xn0z2mk7mfz1nxwzpw1"))))
22879 (build-system cargo-build-system)
22880 (arguments
22881 `(#:skip-build? #t
22882 #:cargo-inputs
22883 (("rust-rustc-ap-rustc-data-structures"
22884 ,rust-rustc-ap-rustc-data-structures-654)
22885 ("rust-smallvec" ,rust-smallvec-1))))
22886 (home-page "https://github.com/alexcrichton/rustc-auto-publish")
22887 (synopsis
22888 "Automatically published version of the arena package used in rustc")
22889 (description
22890 "Use the arena library used in the Rust compiler with this crate.
22891 It is automatically published using the compiler repository at
22892 @url{https://www.github.com/rust-lang/rust}")
22893 (license (list license:expat license:asl2.0))))
22894
22895 (define-public rust-rustc-ap-graphviz-654
22896 (package
22897 (name "rust-rustc-ap-graphviz")
22898 (version "654.0.0")
22899 (source
22900 (origin
22901 (method url-fetch)
22902 (uri (crate-uri "rustc-ap-graphviz" version))
22903 (file-name
22904 (string-append name "-" version ".tar.gz"))
22905 (sha256
22906 (base32
22907 "1z8rs3k9zcd1i2clrnzgvfaq1q05m02wjcyy3d9zk9qln03vp43l"))))
22908 (build-system cargo-build-system)
22909 (home-page "https://github.com/alexcrichton/rustc-auto-publish")
22910 (synopsis
22911 "Automatically published versions of the graphviz crate used in rustc")
22912 (description
22913 "Use the graphviz library used in the Rust compiler with this crate.
22914 It is automatically published using the compiler repository at
22915 @url{https://www.github.com/rust-lang/rust}")
22916 (license (list license:expat license:asl2.0))))
22917
22918 (define-public rust-rustc-ap-rustc-ast-654
22919 (package
22920 (name "rust-rustc-ap-rustc-ast")
22921 (version "654.0.0")
22922 (source
22923 (origin
22924 (method url-fetch)
22925 (uri (crate-uri "rustc-ap-rustc_ast" version))
22926 (file-name
22927 (string-append name "-" version ".tar.gz"))
22928 (sha256
22929 (base32
22930 "0n4yhkd7x0c3nqyqz99lwjiix7mf1j5xbkn9fj90h4fxp3did7qq"))))
22931 (build-system cargo-build-system)
22932 (arguments
22933 `(#:skip-build? #t
22934 #:cargo-inputs
22935 (("rust-bitflags" ,rust-bitflags-1)
22936 ("rust-log" ,rust-log-0.4)
22937 ("rust-rustc-ap-rustc-data-structures"
22938 ,rust-rustc-ap-rustc-data-structures-654)
22939 ("rust-rustc-ap-rustc-index" ,rust-rustc-ap-rustc-index-654)
22940 ("rust-rustc-ap-rustc-lexer" ,rust-rustc-ap-rustc-lexer-654)
22941 ("rust-rustc-ap-rustc-macros" ,rust-rustc-ap-rustc-macros-654)
22942 ("rust-rustc-ap-serialize" ,rust-rustc-ap-serialize-654)
22943 ("rust-rustc-ap-rustc-span" ,rust-rustc-ap-rustc-span-654)
22944 ("rust-scoped-tls" ,rust-scoped-tls-1.0)
22945 ("rust-smallvec" ,rust-smallvec-1))))
22946 (home-page "https://github.com/alexcrichton/rustc-auto-publish")
22947 (synopsis
22948 "Automatically published version of the Rust ast used in rustc")
22949 (description
22950 "Use the Rust ast used in the Rust compiler with this crate.
22951 It is automatically published using the compiler repository at
22952 @url{https://www.github.com/rust-lang/rust}")
22953 (license (list license:expat license:asl2.0))))
22954
22955 (define-public rust-rustc-ap-rustc-data-structures-654
22956 (package
22957 (name "rust-rustc-ap-rustc-data-structures")
22958 (version "654.0.0")
22959 (source
22960 (origin
22961 (method url-fetch)
22962 (uri (crate-uri "rustc-ap-rustc_data_structures" version))
22963 (file-name
22964 (string-append name "-" version ".tar.gz"))
22965 (sha256
22966 (base32
22967 "0fhppy18n1i2iykdihfs05d6s1ivwz882ipc9cpnjcvqcsbhj4yj"))))
22968 (build-system cargo-build-system)
22969 (arguments
22970 `(#:skip-build? #t
22971 #:cargo-inputs
22972 (("rust-bitflags" ,rust-bitflags-1)
22973 ("rust-cfg-if" ,rust-cfg-if-0.1)
22974 ("rust-crossbeam-utils" ,rust-crossbeam-utils-0.7)
22975 ("rust-ena" ,rust-ena-0.13)
22976 ("rust-indexmap" ,rust-indexmap-1)
22977 ("rust-jobserver" ,rust-jobserver-0.1)
22978 ("rust-lazy-static" ,rust-lazy-static-1)
22979 ("rust-libc" ,rust-libc-0.2)
22980 ("rust-log" ,rust-log-0.4)
22981 ("rust-measureme" ,rust-measureme-0.7)
22982 ("rust-parking-lot" ,rust-parking-lot-0.10)
22983 ("rust-rustc-ap-graphviz" ,rust-rustc-ap-graphviz-654)
22984 ("rust-rustc-ap-rustc-index" ,rust-rustc-ap-rustc-index-654)
22985 ("rust-rustc-ap-serialize" ,rust-rustc-ap-serialize-654)
22986 ("rust-rustc-hash" ,rust-rustc-hash-1)
22987 ("rust-rustc-rayon" ,rust-rustc-rayon-0.3)
22988 ("rust-rustc-rayon-core" ,rust-rustc-rayon-core-0.3)
22989 ("rust-smallvec" ,rust-smallvec-1)
22990 ("rust-stable-deref-trait" ,rust-stable-deref-trait-1)
22991 ("rust-winapi" ,rust-winapi-0.3))))
22992 (home-page "https://github.com/alexcrichton/rustc-auto-publish")
22993 (synopsis "Automatically published versions of rustc data structures")
22994 (description
22995 "Use data structures used in the Rust compiler with this crate.
22996 It is automatically published using the compiler repository at
22997 @url{https://www.github.com/rust-lang/rust}.")
22998 (license (list license:expat license:asl2.0))))
22999
23000 (define-public rust-rustc-ap-rustc-index-654
23001 (package
23002 (name "rust-rustc-ap-rustc-index")
23003 (version "654.0.0")
23004 (source
23005 (origin
23006 (method url-fetch)
23007 (uri (crate-uri "rustc-ap-rustc_index" version))
23008 (file-name
23009 (string-append name "-" version ".tar.gz"))
23010 (sha256
23011 (base32
23012 "0qqnvdn3zbwrn884ziw0nrmi1wqmr9yp8js7whw6y8nzdhz0q8ij"))))
23013 (build-system cargo-build-system)
23014 (arguments
23015 `(#:skip-build? #t
23016 #:cargo-inputs
23017 (("rust-rustc-ap-serialize" ,rust-rustc-ap-serialize-654)
23018 ("rust-smallvec" ,rust-smallvec-1))))
23019 (home-page "https://github.com/alexcrichton/rustc-auto-publish")
23020 (synopsis
23021 "Automatically published version of the types of indexes in rustc")
23022 (description
23023 "Use the types of index used in the Rust compiler with this crate.
23024 It is automatically published using the compiler repository at
23025 @url{https://www.github.com/rust-lang/rust}")
23026 (license (list license:expat license:asl2.0))))
23027
23028 (define-public rust-rustc-ap-rustc-lexer-654
23029 (package
23030 (name "rust-rustc-ap-rustc-lexer")
23031 (version "654.0.0")
23032 (source
23033 (origin
23034 (method url-fetch)
23035 (uri (crate-uri "rustc-ap-rustc_lexer" version))
23036 (file-name
23037 (string-append name "-" version ".tar.gz"))
23038 (sha256
23039 (base32
23040 "19bx2z4gxxzqfjh9m11jp52lgdzz0k5fb0p1ad739bdc5cm4sciv"))))
23041 (build-system cargo-build-system)
23042 (arguments
23043 `(#:cargo-inputs
23044 (("rust-unicode-xid" ,rust-unicode-xid-0.2))))
23045 (home-page "https://github.com/alexcrichton/rustc-auto-publish")
23046 (synopsis "Automatically published versions of rustc macros")
23047 (description
23048 "Use the lexer used in the Rust compiler with this crate.
23049 It is automatically published using the compiler repository at
23050 @url{https://www.github.com/rust-lang/rust}.")
23051 (license (list license:expat license:asl2.0))))
23052
23053 (define-public rust-rustc-ap-rustc-macros-654
23054 (package
23055 (name "rust-rustc-ap-rustc-macros")
23056 (version "654.0.0")
23057 (source
23058 (origin
23059 (method url-fetch)
23060 (uri (crate-uri "rustc-ap-rustc_macros" version))
23061 (file-name
23062 (string-append name "-" version ".tar.gz"))
23063 (sha256
23064 (base32
23065 "03zfp8a10jz43z8lsx1drx7g5jimxmbw4w7hs13yvczismb6qs2r"))))
23066 (build-system cargo-build-system)
23067 (arguments
23068 `(#:skip-build? #t
23069 #:cargo-inputs
23070 (("rust-proc-macro2" ,rust-proc-macro2-1)
23071 ("rust-quote" ,rust-quote-1)
23072 ("rust-syn" ,rust-syn-1)
23073 ("rust-synstructure" ,rust-synstructure-0.12))))
23074 (home-page "https://github.com/alexcrichton/rustc-auto-publish")
23075 (synopsis "Automatically published versions of rustc macros")
23076 (description
23077 "Use macros used in the Rust compiler with this crate.
23078 It is automatically published using the compiler repository at
23079 @url{https://www.github.com/rust-lang/rust}.")
23080 (license (list license:expat license:asl2.0))))
23081
23082 (define-public rust-rustc-ap-rustc-span-654
23083 (package
23084 (name "rust-rustc-ap-rustc-span")
23085 (version "654.0.0")
23086 (source
23087 (origin
23088 (method url-fetch)
23089 (uri (crate-uri "rustc-ap-rustc_span" version))
23090 (file-name
23091 (string-append name "-" version ".tar.gz"))
23092 (sha256
23093 (base32
23094 "0hj23syxxqqmk1y4kdvb0cb0xxi8wy429hhyd27bbmpya1h18j56"))))
23095 (build-system cargo-build-system)
23096 (arguments
23097 `(#:skip-build? #t
23098 #:cargo-inputs
23099 (("rust-cfg-if" ,rust-cfg-if-0.1)
23100 ("rust-log" ,rust-log-0.4)
23101 ("rust-md-5" ,rust-md-5-0.8)
23102 ("rust-rustc-ap-arena" ,rust-rustc-ap-arena-654)
23103 ("rust-rustc-ap-rustc-data-structures"
23104 ,rust-rustc-ap-rustc-data-structures-654)
23105 ("rust-rustc-ap-rustc-index" ,rust-rustc-ap-rustc-index-654)
23106 ("rust-rustc-ap-rustc-macros" ,rust-rustc-ap-rustc-macros-654)
23107 ("rust-rustc-ap-serialize" ,rust-rustc-ap-serialize-654)
23108 ("rust-scoped-tls" ,rust-scoped-tls-1.0)
23109 ("rust-sha-1" ,rust-sha-1-0.8)
23110 ("rust-unicode-width" ,rust-unicode-width-0.1))))
23111 (home-page "https://github.com/alexcrichton/rustc-auto-publish")
23112 (synopsis
23113 "Automatically published version of the source code spans used in rustc")
23114 (description
23115 "Use the spans used in the Rust compiler to represent source code with
23116 this crate. It is automatically published using the compiler repository at
23117 @url{https://www.github.com/rust-lang/rust}")
23118 (license (list license:expat license:asl2.0))))
23119
23120 (define-public rust-rustc-ap-rustc-target-654
23121 (package
23122 (name "rust-rustc-ap-rustc-target")
23123 (version "654.0.0")
23124 (source
23125 (origin
23126 (method url-fetch)
23127 (uri (crate-uri "rustc-ap-rustc_target" version))
23128 (file-name
23129 (string-append name "-" version ".tar.gz"))
23130 (sha256
23131 (base32
23132 "0i579l4jx4ky5wm0ah8zdy6dd6201rii6rv1wc4bi209ixwjikr8"))))
23133 (build-system cargo-build-system)
23134 (arguments
23135 `(#:skip-build? #t
23136 #:cargo-inputs
23137 (("rust-bitflags" ,rust-bitflags-1)
23138 ("rust-log" ,rust-log-0.4)
23139 ("rust-rustc-ap-rustc-data-structures"
23140 ,rust-rustc-ap-rustc-data-structures-654)
23141 ("rust-rustc-ap-rustc-index" ,rust-rustc-ap-rustc-index-654)
23142 ("rust-rustc-ap-rustc-macros" ,rust-rustc-ap-rustc-macros-654)
23143 ("rust-rustc-ap-serialize" ,rust-rustc-ap-serialize-654)
23144 ("rust-rustc-ap-rustc-span" ,rust-rustc-ap-rustc-span-654))))
23145 (home-page "https://github.com/alexcrichton/rustc-auto-publish")
23146 (synopsis
23147 "Automatically published version of the compile targets used in rustc")
23148 (description
23149 "Use the compile targets as expressed in the Rust compiler with this
23150 crate. It is automatically published using the compiler repository at
23151 @url{https://www.github.com/rust-lang/rust}")
23152 (license (list license:expat license:asl2.0))))
23153
23154 (define-public rust-rustc-ap-serialize-654
23155 (package
23156 (name "rust-rustc-ap-serialize")
23157 (version "654.0.0")
23158 (source
23159 (origin
23160 (method url-fetch)
23161 (uri (crate-uri "rustc-ap-serialize" version))
23162 (file-name
23163 (string-append name "-" version ".tar.gz"))
23164 (sha256
23165 (base32
23166 "1vwfa3q4f9k0nfryr53jnwmf8vhaq7ijbgw8449nx467dr98yvkm"))))
23167 (build-system cargo-build-system)
23168 (arguments
23169 `(#:skip-build? #t
23170 #:cargo-inputs
23171 (("rust-indexmap" ,rust-indexmap-1)
23172 ("rust-smallvec" ,rust-smallvec-1))))
23173 (home-page "https://github.com/alexcrichton/rustc-auto-publish")
23174 (synopsis
23175 "Automatically published versions of the serialize crate used in rustc")
23176 (description
23177 "Use the serialize library used in the Rust compiler with this crate.
23178 It is automatically published using the compiler repository at
23179 @url{https://www.github.com/rust-lang/rust}")
23180 (license (list license:expat license:asl2.0))))
23181
23182 (define-public rust-rustc-demangle-0.1
23183 (package
23184 (name "rust-rustc-demangle")
23185 (version "0.1.16")
23186 (source
23187 (origin
23188 (method url-fetch)
23189 (uri (crate-uri "rustc-demangle" version))
23190 (file-name (string-append name "-" version ".crate"))
23191 (sha256
23192 (base32
23193 "10qp42sl1wrdbgbbh8rnay2grm976z7hqgz32c4y09l1c071qsac"))))
23194 (build-system cargo-build-system)
23195 (arguments
23196 `(#:skip-build? #t
23197 #:cargo-inputs
23198 (("rust-compiler-builtins" ,rust-compiler-builtins-0.1)
23199 ("rust-rustc-std-workspace-core" ,rust-rustc-std-workspace-core-1))))
23200 (home-page "https://github.com/alexcrichton/rustc-demangle")
23201 (synopsis "Rust compiler symbol demangling")
23202 (description
23203 "This package demanges the symbols from the Rust compiler.")
23204 (license (list license:asl2.0
23205 license:expat))))
23206
23207 (define-public rust-rustc-hash-1
23208 (package
23209 (name "rust-rustc-hash")
23210 (version "1.1.0")
23211 (source
23212 (origin
23213 (method url-fetch)
23214 (uri (crate-uri "rustc-hash" version))
23215 (file-name
23216 (string-append name "-" version ".tar.gz"))
23217 (sha256
23218 (base32
23219 "1qkc5khrmv5pqi5l5ca9p5nl5hs742cagrndhbrlk3dhlrx3zm08"))))
23220 (build-system cargo-build-system)
23221 (arguments `(#:skip-build? #t))
23222 (home-page "https://github.com/rust-lang/rustc-hash")
23223 (synopsis "Speedy, non-cryptographic hash used in rustc")
23224 (description
23225 "This package provides a speedy, non-cryptographic hash used in rustc.")
23226 (license (list license:asl2.0 license:expat))))
23227
23228 (define-public rust-rustc-hash-1.0
23229 (package
23230 (inherit rust-rustc-hash-1)
23231 (name "rust-rustc-hash")
23232 (version "1.0.1")
23233 (source
23234 (origin
23235 (method url-fetch)
23236 (uri (crate-uri "rustc-hash" version))
23237 (file-name (string-append name "-" version ".tar.gz"))
23238 (sha256
23239 (base32
23240 "1f4cnbcmz2c3zjidqszc9c4fip37ch4xl74nkkp9dw291j5zqh3m"))))))
23241
23242 (define-public rust-rustc-rayon-0.3
23243 (package
23244 (name "rust-rustc-rayon")
23245 (version "0.3.0")
23246 (source
23247 (origin
23248 (method url-fetch)
23249 (uri (crate-uri "rustc-rayon" version))
23250 (file-name
23251 (string-append name "-" version ".tar.gz"))
23252 (sha256
23253 (base32
23254 "0fjvy8bf0hd1zq9d3fdxbdp4z4p1k8jfyx51k5qip3wk1pwnf9zk"))))
23255 (build-system cargo-build-system)
23256 (arguments
23257 `(#:tests? #f
23258 #:cargo-inputs
23259 (("rust-crossbeam-deque" ,rust-crossbeam-deque-0.7)
23260 ("rust-either" ,rust-either-1)
23261 ("rust-rustc-rayon-core" ,rust-rustc-rayon-core-0.3))
23262 #:cargo-development-inputs
23263 (("rust-doc-comment" ,rust-doc-comment-0.3)
23264 ("rust-docopt" ,rust-docopt-1.1)
23265 ("rust-lazy-static" ,rust-lazy-static-1)
23266 ("rust-rand" ,rust-rand-0.6)
23267 ("rust-rand-xorshift" ,rust-rand-xorshift-0.1)
23268 ("rust-serde" ,rust-serde-1)
23269 ("rust-serde-derive" ,rust-serde-derive-1))))
23270 (home-page "https://github.com/rust-lang/rustc-rayon")
23271 (synopsis
23272 "Simple work-stealing parallelism for Rust - fork for rustc")
23273 (description
23274 "Rustc-rayon is a fork of the Rayon crate. It adds a few \"in progress\"
23275 features that rustc is using, mostly around deadlock detection. These features
23276 are not stable and should not be used by others -- though they may find their
23277 way into rayon proper at some point. In general, if you are not rustc, you
23278 should be using the real rayon crate, not rustc-rayon.")
23279 (license (list license:asl2.0 license:expat))))
23280
23281 (define-public rust-rustc-rayon-core-0.3
23282 (package
23283 (name "rust-rustc-rayon-core")
23284 (version "0.3.0")
23285 (source
23286 (origin
23287 (method url-fetch)
23288 (uri (crate-uri "rustc-rayon-core" version))
23289 (file-name
23290 (string-append name "-" version ".tar.gz"))
23291 (sha256
23292 (base32
23293 "1cwc50mcclzfmhmi87953fjk6cc9ppmchn9mlwzfllq03y1jf97a"))))
23294 (build-system cargo-build-system)
23295 (arguments
23296 `(#:tests? #f
23297 #:cargo-inputs
23298 (("rust-crossbeam-deque" ,rust-crossbeam-deque-0.7)
23299 ("rust-crossbeam-queue" ,rust-crossbeam-queue-0.1)
23300 ("rust-crossbeam-utils" ,rust-crossbeam-utils-0.6)
23301 ("rust-lazy-static" ,rust-lazy-static-1)
23302 ("rust-num-cpus" ,rust-num-cpus-1))
23303 #:cargo-development-inputs
23304 (("rust-libc" ,rust-libc-0.2)
23305 ("rust-rand" ,rust-rand-0.6)
23306 ("rust-rand-xorshift" ,rust-rand-xorshift-0.1)
23307 ("rust-scoped-tls" ,rust-scoped-tls-1.0))))
23308 (home-page "https://github.com/rust-lang/rustc-rayon")
23309 (synopsis "Core APIs for Rayon - fork for rustc")
23310 (description
23311 "Note: This package is an unstable fork made for use in rustc
23312
23313 Rayon-core represents the \"core, stable\" APIs of Rayon: join, scope, and so
23314 forth, as well as the ability to create custom thread-pools with ThreadPool.")
23315 (license (list license:asl2.0 license:expat))))
23316
23317 (define-public rust-rustc-serialize-0.3
23318 (package
23319 (name "rust-rustc-serialize")
23320 (version "0.3.24")
23321 (source
23322 (origin
23323 (method url-fetch)
23324 (uri (crate-uri "rustc-serialize" version))
23325 (file-name (string-append name "-" version ".crate"))
23326 (sha256
23327 (base32
23328 "1nkg3vasg7nk80ffkazizgiyv3hb1l9g3d8h17cajbkx538jiwfw"))))
23329 (build-system cargo-build-system)
23330 (arguments
23331 `(#:skip-build? #t
23332 #:cargo-inputs
23333 (("rust-rand" ,rust-rand-0.3))))
23334 (home-page "https://github.com/rust-lang-deprecated/rustc-serialize")
23335 (synopsis "Generic serialization/deserialization support")
23336 (description
23337 "This package provides generic serialization/deserialization support
23338 corresponding to the @code{derive(RustcEncodable, RustcDecodable)} mode in the
23339 compiler. Also includes support for hex, base64, and json encoding and
23340 decoding.")
23341 (license (list license:asl2.0
23342 license:expat))))
23343
23344 (define-public rust-rustc-std-workspace-alloc-1
23345 (package
23346 (name "rust-rustc-std-workspace-alloc")
23347 (version "1.0.0")
23348 (source
23349 (origin
23350 (method url-fetch)
23351 (uri (crate-uri "rustc-std-workspace-alloc" version))
23352 (file-name
23353 (string-append name "-" version ".tar.gz"))
23354 (sha256
23355 (base32
23356 "11psmqk6glglxl3zwh8slz6iynfxaifh4spd2wcnws552dqdarpz"))))
23357 (build-system cargo-build-system)
23358 (arguments `(#:skip-build? #t))
23359 (home-page "https://crates.io/crates/rustc-std-workspace-alloc")
23360 (synopsis "Rust workspace hack")
23361 (description "This package is a Rust workspace hack.")
23362 (license (list license:asl2.0 license:expat))))
23363
23364 (define-public rust-rustc-std-workspace-core-1
23365 (package
23366 (name "rust-rustc-std-workspace-core")
23367 (version "1.0.0")
23368 (source
23369 (origin
23370 (method url-fetch)
23371 (uri (crate-uri "rustc-std-workspace-core" version))
23372 (file-name (string-append name "-" version ".crate"))
23373 (sha256
23374 (base32
23375 "1309xhwyai9xpz128xrfjqkmnkvgjwddznmj7brbd8i8f58zamhr"))))
23376 (build-system cargo-build-system)
23377 (arguments '(#:skip-build? #t))
23378 (home-page "https://crates.io/crates/rustc-std-workspace-core")
23379 (synopsis "Explicitly empty crate for rust-lang/rust integration")
23380 (description "This crate provides an explicitly empty crate for
23381 rust-lang/rust integration.")
23382 (license (list license:asl2.0
23383 license:expat))))
23384
23385 (define-public rust-rustc-std-workspace-std-1.0
23386 (package
23387 (name "rust-rustc-std-workspace-std")
23388 (version "1.0.1")
23389 (source
23390 (origin
23391 (method url-fetch)
23392 (uri (crate-uri "rustc-std-workspace-std" version))
23393 (file-name
23394 (string-append name "-" version ".tar.gz"))
23395 (sha256
23396 (base32
23397 "1vq4vaclamwhk0alf4f7wq3i9wxa993sxpmhy6qfaimy1ai7d9mb"))))
23398 (build-system cargo-build-system)
23399 (arguments '(#:skip-build? #t))
23400 (home-page "https://crates.io/crates/rustc-std-workspace-std")
23401 (synopsis "Workaround for rustbuild")
23402 (description "This package provides a workaround for rustbuild.")
23403 (license (list license:expat license:asl2.0))))
23404
23405 (define-public rust-rustc-test-0.3
23406 (package
23407 (name "rust-rustc-test")
23408 (version "0.3.0")
23409 (source
23410 (origin
23411 (method url-fetch)
23412 (uri (crate-uri "rustc-test" version))
23413 (file-name
23414 (string-append name "-" version ".tar.gz"))
23415 (sha256
23416 (base32
23417 "0a27mlcg0ck0hgsdvwk792x9z1k1qq1wj091f1l5yggbdbcsnx5w"))))
23418 (build-system cargo-build-system)
23419 (arguments
23420 `(#:skip-build? #t
23421 #:cargo-inputs
23422 (("rust-getopts" ,rust-getopts-0.2)
23423 ("rust-libc" ,rust-libc-0.2)
23424 ("rust-rustc-serialize" ,rust-rustc-serialize-0.3)
23425 ("rust-term" ,rust-term-0.4)
23426 ("rust-time" ,rust-time-0.1)
23427 ("rust-rustc-version" ,rust-rustc-version-0.2))))
23428 (home-page "https://github.com/servo/rustc-test")
23429 (synopsis "Fork of Rust's test crate")
23430 (description
23431 "This package provides a fork of Rust's test crate that doesn't
23432 require unstable language features.")
23433 (license (list license:asl2.0 license:expat))))
23434
23435 (define-public rust-rustc-tools-util-0.2
23436 (package
23437 (name "rust-rustc-tools-util")
23438 (version "0.2.0")
23439 (source
23440 (origin
23441 (method url-fetch)
23442 (uri (crate-uri "rustc_tools_util" version))
23443 (file-name
23444 (string-append name "-" version ".tar.gz"))
23445 (sha256
23446 (base32
23447 "1vj4ymv29igs7n52m12k138zbsn5k5d7ya4sys6lig7sx7ddl9dp"))))
23448 (build-system cargo-build-system)
23449 (arguments '(#:skip-build? #t))
23450 (home-page
23451 "https://github.com/rust-lang/rust-clippy")
23452 (synopsis
23453 "small helper to generate version information for git packages")
23454 (description
23455 "small helper to generate version information for git packages")
23456 (license (list license:expat license:asl2.0))))
23457
23458 (define-public rust-rustc-version-0.2
23459 (package
23460 (name "rust-rustc-version")
23461 (version "0.2.3")
23462 (source
23463 (origin
23464 (method url-fetch)
23465 (uri (crate-uri "rustc_version" version))
23466 (file-name
23467 (string-append name "-" version ".tar.gz"))
23468 (sha256
23469 (base32
23470 "02h3x57lcr8l2pm0a645s9whdh33pn5cnrwvn5cb57vcrc53x3hk"))))
23471 (build-system cargo-build-system)
23472 (arguments
23473 `(#:skip-build? #t
23474 #:cargo-inputs (("rust-semver" ,rust-semver-0.9))))
23475 (home-page "https://github.com/Kimundi/rustc-version-rs")
23476 (synopsis
23477 "Library for querying the version of a installed rustc compiler")
23478 (description
23479 "This package provides a library for querying the version of a installed
23480 rustc compiler.")
23481 (license (list license:expat license:asl2.0))))
23482
23483 (define-public rust-rustdoc-stripper-0.1
23484 (package
23485 (name "rust-rustdoc-stripper")
23486 (version "0.1.9")
23487 (source
23488 (origin
23489 (method url-fetch)
23490 (uri (crate-uri "rustdoc-stripper" version))
23491 (file-name
23492 (string-append name "-" version ".tar.gz"))
23493 (sha256
23494 (base32
23495 "13rf65a0xk1zyb92jd8p12x529rsbfchwk9zvjr0snr9savpxw19"))))
23496 (build-system cargo-build-system)
23497 (arguments
23498 `(#:cargo-development-inputs
23499 (("rust-tempfile" ,rust-tempfile-3))))
23500 (home-page "https://github.com/GuillaumeGomez/rustdoc-stripper")
23501 (synopsis "Nanipulate rustdoc comments")
23502 (description
23503 "This package provides a tool to manipulate rustdoc comments.")
23504 (license license:asl2.0)))
23505
23506 (define-public rust-rustfix-0.4
23507 (package
23508 (name "rust-rustfix")
23509 (version "0.4.6")
23510 (source
23511 (origin
23512 (method url-fetch)
23513 (uri (crate-uri "rustfix" version))
23514 (file-name
23515 (string-append name "-" version ".tar.gz"))
23516 (sha256
23517 (base32
23518 "01zn0ysnass3mmrhxk90584y713vjfq1x97mi4saac99g9vsql3i"))))
23519 (build-system cargo-build-system)
23520 (arguments
23521 `(#:skip-build? #t
23522 #:cargo-inputs
23523 (("rust-failure" ,rust-failure-0.1)
23524 ("rust-log" ,rust-log-0.4)
23525 ("rust-serde" ,rust-serde-1)
23526 ("rust-serde-json" ,rust-serde-json-1))
23527 #:cargo-development-inputs
23528 (("rust-difference" ,rust-difference-2)
23529 ("rust-duct" ,rust-duct-0.13)
23530 ("rust-env-logger" ,rust-env-logger-0.6)
23531 ("rust-log" ,rust-log-0.4)
23532 ("rust-proptest" ,rust-proptest-0.9)
23533 ("rust-tempdir" ,rust-tempdir-0.3))))
23534 (home-page "https://github.com/rust-lang/rustfix")
23535 (synopsis "Automatically apply the suggestions made by rustc")
23536 (description
23537 "Automatically apply the suggestions made by rustc.")
23538 (license (list license:expat license:asl2.0))))
23539
23540 (define-public rust-rustls-0.18
23541 (package
23542 (name "rust-rustls")
23543 (version "0.18.1")
23544 (source
23545 (origin
23546 (method url-fetch)
23547 (uri (crate-uri "rustls" version))
23548 (file-name
23549 (string-append name "-" version ".tar.gz"))
23550 (sha256
23551 (base32
23552 "108cf3bfw5high066shz9xrfv4jz7djdmnwqs3kwx4wfypf2c4ax"))))
23553 (build-system cargo-build-system)
23554 (arguments
23555 `(#:cargo-inputs
23556 (("rust-base64" ,rust-base64-0.12)
23557 ("rust-log" ,rust-log-0.4)
23558 ("rust-ring" ,rust-ring-0.16)
23559 ("rust-sct" ,rust-sct-0.6)
23560 ("rust-webpki" ,rust-webpki-0.21))
23561 #:cargo-development-inputs
23562 (("rust-criterion" ,rust-criterion-0.3)
23563 ("rust-env-logger" ,rust-env-logger-0.7)
23564 ("rust-log" ,rust-log-0.4)
23565 ("rust-webpki-roots" ,rust-webpki-roots-0.20))))
23566 (home-page "https://github.com/ctz/rustls")
23567 (synopsis "Modern TLS library written in Rust.")
23568 (description "This package provides a modern TLS library written in
23569 Rust.")
23570 (license
23571 (list license:asl2.0 license:isc license:expat))))
23572
23573 (define-public rust-rustls-0.17
23574 (package
23575 (inherit rust-rustls-0.18)
23576 (name "rust-rustls")
23577 (version "0.17.0")
23578 (source
23579 (origin
23580 (method url-fetch)
23581 (uri (crate-uri "rustls" version))
23582 (file-name
23583 (string-append name "-" version ".tar.gz"))
23584 (sha256
23585 (base32
23586 "1q8m835viqrf4bbd2fa8rnmaj48fkd984saxf0238hb8blgs7m60"))))
23587 (arguments
23588 `(#:cargo-inputs
23589 (("rust-base64" ,rust-base64-0.11)
23590 ("rust-log" ,rust-log-0.4)
23591 ("rust-ring" ,rust-ring-0.16)
23592 ("rust-sct" ,rust-sct-0.6)
23593 ("rust-webpki" ,rust-webpki-0.21))
23594 #:cargo-development-inputs
23595 (("rust-criterion" ,rust-criterion-0.3)
23596 ("rust-env-logger" ,rust-env-logger-0.7)
23597 ("rust-log" ,rust-log-0.4)
23598 ("rust-tempfile" ,rust-tempfile-3)
23599 ("rust-webpki-roots" ,rust-webpki-roots-0.19))))))
23600
23601 (define-public rust-rustls-0.16
23602 (package
23603 (inherit rust-rustls-0.17)
23604 (name "rust-rustls")
23605 (version "0.16.0")
23606 (source
23607 (origin
23608 (method url-fetch)
23609 (uri (crate-uri "rustls" version))
23610 (file-name (string-append name "-" version ".tar.gz"))
23611 (sha256
23612 (base32 "17n0fx3fpkg4fhpdplrdhkissnl003kj90vzbqag11vkpyqihnmj"))))
23613 (arguments
23614 `(#:tests? #f ;; 1/114 tests fail (test file not found)
23615 #:cargo-inputs
23616 (("rust-base64" ,rust-base64-0.10)
23617 ("rust-log" ,rust-log-0.4)
23618 ("rust-ring" ,rust-ring-0.16)
23619 ("rust-sct" ,rust-sct-0.6)
23620 ("rust-webpki" ,rust-webpki-0.21))
23621 #:cargo-development-inputs
23622 (("rust-criterion" ,rust-criterion-0.2)
23623 ("rust-env-logger" ,rust-env-logger-0.6)
23624 ("rust-log" ,rust-log-0.4)
23625 ("rust-tempfile" ,rust-tempfile-3)
23626 ("rust-webpki-roots" ,rust-webpki-roots-0.17))))))
23627
23628 (define-public rust-rustls-0.15
23629 (package
23630 (inherit rust-rustls-0.16)
23631 (name "rust-rustls")
23632 (version "0.15.2")
23633 (source
23634 (origin
23635 (method url-fetch)
23636 (uri (crate-uri "rustls" version))
23637 (file-name
23638 (string-append name "-" version ".tar.gz"))
23639 (sha256
23640 (base32
23641 "0vh93fhqfbn4ysw4xzkpkpqdz36xixz4mhs1qllgldfq5iay6wgj"))))
23642 (arguments
23643 `(#:tests? #f ;; 1/111 tests fail (test file not found)
23644 #:cargo-inputs
23645 (("rust-base64" ,rust-base64-0.10)
23646 ("rust-log" ,rust-log-0.4)
23647 ("rust-ring" ,rust-ring-0.14)
23648 ("rust-sct" ,rust-sct-0.5)
23649 ("rust-untrusted" ,rust-untrusted-0.6)
23650 ("rust-webpki" ,rust-webpki-0.19))
23651 #:cargo-development-inputs
23652 (("rust-env-logger" ,rust-env-logger-0.6)
23653 ("rust-log" ,rust-log-0.4)
23654 ("rust-tempfile" ,rust-tempfile-3)
23655 ("rust-webpki-roots" ,rust-webpki-roots-0.16))))))
23656
23657 (define-public rust-rustls-0.12
23658 (package/inherit rust-rustls-0.16
23659 (name "rust-rustls")
23660 (version "0.12.0")
23661 (source
23662 (origin
23663 (method url-fetch)
23664 (uri (crate-uri "rustls" version))
23665 (file-name (string-append name "-" version ".tar.gz"))
23666 (sha256
23667 (base32 "1k8b8cc0pjkv5cxdgs43jif7nslzsxair9b2sifgvjag7a4f8wmb"))))
23668 (build-system cargo-build-system)
23669 (arguments
23670 `(#:tests? #f ;; 1/45 tests fails due to some missing file
23671 #:cargo-inputs
23672 (("rust-base64" ,rust-base64-0.9)
23673 ("rust-log" ,rust-log-0.4)
23674 ("rust-ring" ,rust-ring-0.13)
23675 ("rust-sct" ,rust-sct-0.3)
23676 ("rust-untrusted" ,rust-untrusted-0.6)
23677 ("rust-webpki" ,rust-webpki-0.18))
23678 #:cargo-development-inputs
23679 (("rust-ct-logs" ,rust-ct-logs-0.3)
23680 ("rust-docopt" ,rust-docopt-0.8)
23681 ("rust-env-logger" ,rust-env-logger-0.4)
23682 ("rust-log" ,rust-log-0.4)
23683 ("rust-mio" ,rust-mio-0.6)
23684 ("rust-regex" ,rust-regex-0.2)
23685 ("rust-serde" ,rust-serde-1)
23686 ("rust-serde-derive" ,rust-serde-derive-1)
23687 ("rust-webpki-roots" ,rust-webpki-roots-0.14))))))
23688
23689 (define-public rust-rustls-native-certs-0.4
23690 (package
23691 (name "rust-rustls-native-certs")
23692 (version "0.4.0")
23693 (source
23694 (origin
23695 (method url-fetch)
23696 (uri (crate-uri "rustls-native-certs" version))
23697 (file-name (string-append name "-" version ".tar.gz"))
23698 (sha256
23699 (base32
23700 "1f2rkvdkz92qcmwryyqiw9phkqkf95g4962ljpfq5nkjfsd477b2"))))
23701 (build-system cargo-build-system)
23702 (arguments
23703 `(#:cargo-inputs
23704 (("rust-openssl-probe" ,rust-openssl-probe-0.1)
23705 ("rust-rustls" ,rust-rustls-0.18)
23706 ("rust-schannel" ,rust-schannel-0.1)
23707 ("rust-security-framework"
23708 ,rust-security-framework-1))
23709 #:cargo-development-inputs
23710 (("rust-ring" ,rust-ring-0.16)
23711 ("rust-untrusted" ,rust-untrusted-0.7)
23712 ("rust-webpki" ,rust-webpki-0.21)
23713 ("rust-webpki-roots" ,rust-webpki-roots-0.20))))
23714 (home-page "https://github.com/ctz/rustls-native-certs")
23715 (synopsis "Use the platform native certificate store with rustls")
23716 (description "@code{rustls-native-certs} allows rustls to use the platform
23717 native certificate store.")
23718 (license
23719 (list license:asl2.0 license:isc license:expat))))
23720
23721 (define-public rust-rusttype-0.8
23722 (package
23723 (name "rust-rusttype")
23724 (version "0.8.2")
23725 (source
23726 (origin
23727 (method url-fetch)
23728 (uri (crate-uri "rusttype" version))
23729 (file-name
23730 (string-append name "-" version ".tar.gz"))
23731 (sha256
23732 (base32
23733 "12hwfg85iii7sbgsyyr23yw862dzp7f8zwn9xv5iqydm5w1i3a8l"))))
23734 (build-system cargo-build-system)
23735 (arguments
23736 `(#:tests? #f ; Artifacts for tests not included.
23737 #:cargo-inputs
23738 (("rust-approx" ,rust-approx-0.3)
23739 ("rust-arrayvec" ,rust-arrayvec-0.5)
23740 ("rust-crossbeam-deque" ,rust-crossbeam-deque-0.7)
23741 ("rust-crossbeam-utils" ,rust-crossbeam-utils-0.7)
23742 ("rust-libm" ,rust-libm-0.2)
23743 ("rust-linked-hash-map" ,rust-linked-hash-map-0.5)
23744 ("rust-num-cpus" ,rust-num-cpus-1)
23745 ("rust-ordered-float" ,rust-ordered-float-1.0)
23746 ("rust-rustc-hash" ,rust-rustc-hash-1)
23747 ("rust-stb-truetype" ,rust-stb-truetype-0.3))))
23748 (home-page "https://gitlab.redox-os.org/redox-os/rusttype")
23749 (synopsis "Pure Rust alternative to libraries like FreeType")
23750 (description
23751 "This package provides a pure Rust alternative to libraries like FreeType.
23752 RustType provides an API for loading, querying and rasterising TrueType fonts.
23753 It also provides an implementation of a dynamic GPU glyph cache for hardware
23754 font rendering.")
23755 (license (list license:expat license:asl2.0))))
23756
23757 (define-public rust-rusttype-0.7
23758 (package
23759 (inherit rust-rusttype-0.8)
23760 (name "rust-rusttype")
23761 (version "0.7.9")
23762 (source
23763 (origin
23764 (method url-fetch)
23765 (uri (crate-uri "rusttype" version))
23766 (file-name
23767 (string-append name "-" version ".tar.gz"))
23768 (sha256
23769 (base32
23770 "1m9ms4p94cgif74y1rzkj04rx8i1la193c0jgvnip61rd904429i"))))
23771 (arguments
23772 `(#:tests? #f ; Artifacts for tests not included.
23773 #:cargo-inputs
23774 (("rust-rusttype" ,rust-rusttype-0.8))
23775 #:cargo-development-inputs
23776 (("rust-arrayvec" ,rust-arrayvec-0.4)
23777 ("rust-blake2" ,rust-blake2-0.8)
23778 ("rust-glium" ,rust-glium-0.25)
23779 ("rust-image" ,rust-image-0.21)
23780 ("rust-lazy-static" ,rust-lazy-static-1)
23781 ("rust-unicode-normalization" ,rust-unicode-normalization-0.1))))))
23782
23783 (define-public rust-rustversion-1
23784 (package
23785 (name "rust-rustversion")
23786 (version "1.0.2")
23787 (source
23788 (origin
23789 (method url-fetch)
23790 (uri (crate-uri "rustversion" version))
23791 (file-name
23792 (string-append name "-" version ".tar.gz"))
23793 (sha256
23794 (base32
23795 "1xkr1g792w728py2qpg2zj0vfviv2xzmxkkd9w6035l9d5ss3fxk"))))
23796 (build-system cargo-build-system)
23797 (arguments
23798 `(#:cargo-inputs
23799 (("rust-proc-macro2" ,rust-proc-macro2-1)
23800 ("rust-quote" ,rust-quote-1)
23801 ("rust-syn" ,rust-syn-1))))
23802 (home-page "https://github.com/dtolnay/rustversion")
23803 (synopsis "Conditional compilation according to rustc compiler version")
23804 (description
23805 "This package provides conditional compilation according to the
23806 @code{rustc} compiler version.")
23807 (license (list license:expat license:asl2.0))))
23808
23809 (define-public rust-rustversion-0.1
23810 (package
23811 (name "rust-rustversion")
23812 (version "0.1.4")
23813 (source
23814 (origin
23815 (method url-fetch)
23816 (uri (crate-uri "rustversion" version))
23817 (file-name
23818 (string-append name "-" version ".tar.gz"))
23819 (sha256
23820 (base32
23821 "1s3ib2paa5gq17x4qsmjmnsw68z7b5d5av1wsiqcrihmqb7kk0dl"))))
23822 (build-system cargo-build-system)
23823 (arguments
23824 `(#:cargo-inputs
23825 (("rust-proc-macro2" ,rust-proc-macro2-1)
23826 ("rust-quote" ,rust-quote-1)
23827 ("rust-syn" ,rust-syn-1))))
23828 (home-page "https://github.com/dtolnay/rustversion")
23829 (synopsis "Conditional compilation according to rustc compiler version")
23830 (description "This package provides conditional compilation according to
23831 rustc compiler version.")
23832 (license (list license:expat license:asl2.0))))
23833
23834 (define-public rust-rusty-fork-0.2
23835 (package
23836 (name "rust-rusty-fork")
23837 (version "0.2.2")
23838 (source
23839 (origin
23840 (method url-fetch)
23841 (uri (crate-uri "rusty-fork" version))
23842 (file-name
23843 (string-append name "-" version ".tar.gz"))
23844 (sha256
23845 (base32
23846 "1bjg8adk0i921088j52rn0hmvsry34q19g96x41pamqcw5j35n9x"))))
23847 (build-system cargo-build-system)
23848 (arguments
23849 `(#:skip-build? #t
23850 #:cargo-inputs
23851 (("rust-fnv" ,rust-fnv-1)
23852 ("rust-quick-error" ,rust-quick-error-1.2)
23853 ("rust-tempfile" ,rust-tempfile-3)
23854 ("rust-wait-timeout" ,rust-wait-timeout-0.2))))
23855 (home-page "https://github.com/altsysrq/rusty-fork")
23856 (synopsis "Library for running Rust tests in sub-processes")
23857 (description
23858 "Cross-platform library for running Rust tests in sub-processes
23859 using a fork-like interface.")
23860 (license (list license:asl2.0 license:expat))))
23861
23862 (define-public rust-ryu-1.0
23863 (package
23864 (name "rust-ryu")
23865 (version "1.0.3")
23866 (source
23867 (origin
23868 (method url-fetch)
23869 (uri (crate-uri "ryu" version))
23870 (file-name (string-append name "-" version ".crate"))
23871 (sha256
23872 (base32
23873 "0xlx9ybzncrb7d6r9533g8ydlg6mr252pfzl4g9cqaqkpvk24mjk"))))
23874 (build-system cargo-build-system)
23875 (arguments
23876 `(#:cargo-inputs
23877 (("rust-no-panic" ,rust-no-panic-0.1))
23878 #:cargo-development-inputs
23879 (("rust-num-cpus" ,rust-num-cpus-1)
23880 ("rust-rand" ,rust-rand-0.7)
23881 ("rust-rand-xorshift" ,rust-rand-xorshift-0.2))))
23882 (home-page "https://github.com/dtolnay/ryu")
23883 (synopsis "Fast floating point to string conversion")
23884 (description
23885 "This package provides a pure Rust implementation of Ryū, an algorithm to
23886 quickly convert floating point numbers to decimal strings.")
23887 (license (list license:asl2.0 license:boost1.0))))
23888
23889 (define-public rust-safemem-0.3
23890 (package
23891 (name "rust-safemem")
23892 (version "0.3.3")
23893 (source
23894 (origin
23895 (method url-fetch)
23896 (uri (crate-uri "safemem" version))
23897 (file-name (string-append name "-" version ".crate"))
23898 (sha256
23899 (base32
23900 "0wp0d2b2284lw11xhybhaszsczpbq1jbdklkxgifldcknmy3nw7g"))))
23901 (build-system cargo-build-system)
23902 (arguments '(#:skip-build? #t))
23903 (home-page "https://github.com/abonander/safemem")
23904 (synopsis "Safe wrappers for memory-accessing functions")
23905 (description
23906 "Safe wrappers for memory-accessing functions, like @code{std::ptr::copy()}.")
23907 (license (list license:asl2.0
23908 license:expat))))
23909
23910 (define-public rust-same-file-1.0
23911 (package
23912 (name "rust-same-file")
23913 (version "1.0.6")
23914 (source
23915 (origin
23916 (method url-fetch)
23917 (uri (crate-uri "same-file" version))
23918 (file-name (string-append name "-" version ".crate"))
23919 (sha256
23920 (base32
23921 "00h5j1w87dmhnvbv9l8bic3y7xxsnjmssvifw2ayvgx9mb1ivz4k"))))
23922 (build-system cargo-build-system)
23923 (arguments
23924 `(#:cargo-inputs
23925 (("rust-winapi-util" ,rust-winapi-util-0.1))
23926 #:cargo-development-inputs
23927 (("rust-doc-comment" ,rust-doc-comment-0.3))))
23928 (home-page "https://github.com/BurntSushi/same-file")
23929 (synopsis "Determine whether two file paths point to the same file")
23930 (description
23931 "This package provides a simple crate for determining whether two file
23932 paths point to the same file.")
23933 (license (list license:unlicense
23934 license:expat))))
23935
23936 (define-public rust-same-file-0.1
23937 (package
23938 (inherit rust-same-file-1.0)
23939 (name "rust-same-file")
23940 (version "0.1.3")
23941 (source
23942 (origin
23943 (method url-fetch)
23944 (uri (crate-uri "same-file" version))
23945 (file-name
23946 (string-append name "-" version ".tar.gz"))
23947 (sha256
23948 (base32
23949 "19qpl6j8s3ph9jm8rh1k0wp2nkyw5ah34xly00vqcfx4v97s8cfr"))))
23950 (build-system cargo-build-system)
23951 (arguments
23952 `(#:cargo-inputs
23953 (("rust-kernel32-sys" ,rust-kernel32-sys-0.2)
23954 ("rust-winapi" ,rust-winapi-0.2))
23955 #:cargo-development-inputs
23956 (("rust-rand" ,rust-rand-0.3))))))
23957
23958 (define-public rust-sanakirja-0.10
23959 (package
23960 (name "rust-sanakirja")
23961 (version "0.10.3")
23962 (source
23963 (origin
23964 (method url-fetch)
23965 (uri (crate-uri "sanakirja" version))
23966 (file-name
23967 (string-append name "-" version ".tar.gz"))
23968 (sha256
23969 (base32
23970 "1fhn5lb6jn0pimnk0nbf5h4xvp28xdkdh33d57gq1ixy8b2y091y"))))
23971 (build-system cargo-build-system)
23972 (arguments
23973 `(#:tests? #f ; tests::test_del_medium_fork fails
23974 #:cargo-inputs
23975 (("rust-fs2" ,rust-fs2-0.4)
23976 ("rust-log" ,rust-log-0.4)
23977 ("rust-memmap" ,rust-memmap-0.7)
23978 ("rust-rand" ,rust-rand-0.6)
23979 ("rust-uuid" ,rust-uuid-0.7))
23980 #:cargo-development-inputs
23981 (("rust-env-logger" ,rust-env-logger-0.6)
23982 ("rust-hex" ,rust-hex-0.3)
23983 ("rust-tempdir" ,rust-tempdir-0.3))))
23984 (home-page "https://nest.pijul.com/pijul_org/sanakirja")
23985 (synopsis "Key-value dictionary, using copy-on-write and B-trees")
23986 (description
23987 "This package provides a key-value dictionary, using copy-on-write and B
23988 trees. It features:
23989 @itemize
23990 @item ACID semantics.
23991 @item B trees with copy-on-write.
23992 @item Support for referential transparency: databases can be cloned in time
23993 O(log n) (where n is the size of the database). This was the original
23994 motivation for writing this library.
23995 @end itemize")
23996 (license (list license:asl2.0 license:expat))))
23997
23998 (define-public rust-scan-fmt-0.2
23999 (package
24000 (name "rust-scan-fmt")
24001 (version "0.2.5")
24002 (source
24003 (origin
24004 (method url-fetch)
24005 (uri (crate-uri "scan_fmt" version))
24006 (file-name
24007 (string-append name "-" version ".tar.gz"))
24008 (sha256
24009 (base32
24010 "1gmaa07z8bkkdv5xhq2lrgml6ri7fqyyrjpiks3phmpmq3p8d0i4"))))
24011 (build-system cargo-build-system)
24012 (arguments
24013 `(#:skip-build? #t
24014 #:cargo-inputs
24015 (("rust-regex" ,rust-regex-1))))
24016 (home-page "https://github.com/wlentz/scan_fmt")
24017 (synopsis "Simple scanf()-like input for Rust")
24018 (description
24019 "This package provides a simple scanf()-like input for Rust")
24020 (license license:expat)))
24021
24022 (define-public rust-schannel-0.1
24023 (package
24024 (name "rust-schannel")
24025 (version "0.1.16")
24026 (source
24027 (origin
24028 (method url-fetch)
24029 (uri (crate-uri "schannel" version))
24030 (file-name (string-append name "-" version ".crate"))
24031 (sha256
24032 (base32
24033 "08d0p5iy574vdrax4l3laazic0crj7rp7vp3if5rrfkcdfq51xc7"))))
24034 (build-system cargo-build-system)
24035 (arguments
24036 `(#:skip-build? #t
24037 #:cargo-inputs
24038 (("rust-lazy-static" ,rust-lazy-static-1)
24039 ("rust-winapi" ,rust-winapi-0.3))))
24040 (home-page "https://github.com/steffengy/schannel-rs")
24041 (synopsis "Rust bindings to the Windows SChannel APIs")
24042 (description
24043 "Rust bindings to the Windows SChannel APIs providing TLS client and
24044 server functionality.")
24045 (license license:expat)))
24046
24047 (define-public rust-scheduled-thread-pool-0.2
24048 (package
24049 (name "rust-scheduled-thread-pool")
24050 (version "0.2.5")
24051 (source
24052 (origin
24053 (method url-fetch)
24054 (uri (crate-uri "scheduled-thread-pool" version))
24055 (file-name (string-append name "-" version ".tar.gz"))
24056 (sha256
24057 (base32
24058 "1mz7s21q1d7xn9j15dlhhv1y86q2r2z6hpax5nh3y1q42byp8vyw"))))
24059 (build-system cargo-build-system)
24060 (arguments
24061 `(#:cargo-inputs
24062 (("rust-parking-lot" ,rust-parking-lot-0.11))))
24063 (home-page "https://github.com/sfackler/scheduled-thread-pool")
24064 (synopsis "A scheduled thread pool")
24065 (description "This package provides a scheduled thread pool.")
24066 (license (list license:expat license:asl2.0))))
24067
24068 (define-public rust-scoped-threadpool-0.1
24069 (package
24070 (name "rust-scoped-threadpool")
24071 (version "0.1.9")
24072 (source
24073 (origin
24074 (method url-fetch)
24075 (uri (crate-uri "scoped_threadpool" version))
24076 (file-name (string-append name "-" version ".crate"))
24077 (sha256
24078 (base32
24079 "1a26d3lk40s9mrf4imhbik7caahmw2jryhhb6vqv6fplbbgzal8x"))))
24080 (build-system cargo-build-system)
24081 (arguments
24082 `(#:skip-build? #t
24083 #:cargo-development-inputs
24084 (("rust-lazy-static" ,rust-lazy-static-1))))
24085 (home-page "https://github.com/Kimundi/scoped-threadpool-rs")
24086 (synopsis "Library for scoped and cached threadpools")
24087 (description
24088 "This crate provides a stable, safe and scoped threadpool. It can be used
24089 to execute a number of short-lived jobs in parallel without the need to respawn
24090 the underlying threads. Jobs are runnable by borrowing the pool for a given
24091 scope, during which an arbitrary number of them can be executed. These jobs can
24092 access data of any lifetime outside of the pools scope, which allows working on
24093 non-'static references in parallel.")
24094 (license (list license:asl2.0
24095 license:expat))))
24096
24097 (define-public rust-scoped-tls-1.0
24098 (package
24099 (name "rust-scoped-tls")
24100 (version "1.0.0")
24101 (source
24102 (origin
24103 (method url-fetch)
24104 (uri (crate-uri "scoped-tls" version))
24105 (file-name (string-append name "-" version ".crate"))
24106 (sha256
24107 (base32
24108 "1hj8lifzvivdb1z02lfnzkshpvk85nkgzxsy2hc0zky9wf894spa"))))
24109 (build-system cargo-build-system)
24110 (arguments '(#:skip-build? #t))
24111 (home-page "https://github.com/alexcrichton/scoped-tls")
24112 (synopsis "Rust library providing the old standard library's scoped_thread_local")
24113 (description "This crate provides a library implementation of the standard
24114 library's old @code{scoped_thread_local!} macro for providing scoped access to
24115 @dfn{thread local storage} (TLS) so any type can be stored into TLS.")
24116 (license (list license:asl2.0
24117 license:expat))))
24118
24119 (define-public rust-scoped-tls-0.1
24120 (package
24121 (inherit rust-scoped-tls-1.0)
24122 (name "rust-scoped-tls")
24123 (version "0.1.2")
24124 (source
24125 (origin
24126 (method url-fetch)
24127 (uri (crate-uri "scoped-tls" version))
24128 (file-name (string-append name "-" version ".crate"))
24129 (sha256
24130 (base32
24131 "0a2bn9d2mb07c6l16sadijy4p540g498zddfxyiq4rsqpwrglbrk"))))))
24132
24133 (define-public rust-scopeguard-1
24134 (package
24135 (name "rust-scopeguard")
24136 (version "1.1.0")
24137 (source
24138 (origin
24139 (method url-fetch)
24140 (uri (crate-uri "scopeguard" version))
24141 (file-name (string-append name "-" version ".crate"))
24142 (sha256
24143 (base32
24144 "1kbqm85v43rq92vx7hfiay6pmcga03vrjbbfwqpyj3pwsg3b16nj"))))
24145 (build-system cargo-build-system)
24146 (home-page "https://github.com/bluss/scopeguard")
24147 (synopsis "Scope guard which will run a closure even out of scope")
24148 (description "This package provides a RAII scope guard that will run a
24149 given closure when it goes out of scope, even if the code between panics
24150 (assuming unwinding panic). Defines the macros @code{defer!},
24151 @code{defer_on_unwind!}, @code{defer_on_success!} as shorthands for guards
24152 with one of the implemented strategies.")
24153 (license (list license:asl2.0
24154 license:expat))))
24155
24156 (define-public rust-scopeguard-1.0
24157 (package
24158 (inherit rust-scopeguard-1)
24159 (name "rust-scopeguard")
24160 (version "1.0.0")
24161 (source
24162 (origin
24163 (method url-fetch)
24164 (uri (crate-uri "scopeguard" version))
24165 (file-name (string-append name "-" version ".crate"))
24166 (sha256
24167 (base32
24168 "03aay84r1f6w87ckbpj6cc4rnsxkxcfs13n5ynxjia0qkgjiabml"))))
24169 (arguments '(#:skip-build? #t))))
24170
24171 (define-public rust-scopeguard-0.3
24172 (package
24173 (inherit rust-scopeguard-1)
24174 (name "rust-scopeguard")
24175 (version "0.3.3")
24176 (source
24177 (origin
24178 (method url-fetch)
24179 (uri (crate-uri "scopeguard" version))
24180 (file-name
24181 (string-append name "-" version ".crate"))
24182 (sha256
24183 (base32
24184 "09sy9wbqp409pkwmqni40qmwa99ldqpl48pp95m1xw8sc19qy9cl"))))))
24185
24186 (define-public rust-scrypt-0.3
24187 (package
24188 (name "rust-scrypt")
24189 (version "0.3.0")
24190 (source
24191 (origin
24192 (method url-fetch)
24193 (uri (crate-uri "scrypt" version))
24194 (file-name
24195 (string-append name "-" version ".tar.gz"))
24196 (sha256
24197 (base32
24198 "1apicbvp7cgc1z2nl5l48g8h3kp7p592r4zbkx9vsri2ivnvgv43"))))
24199 (build-system cargo-build-system)
24200 (arguments
24201 `(#:cargo-inputs
24202 (("rust-base64" ,rust-base64-0.12)
24203 ("rust-hmac" ,rust-hmac-0.8)
24204 ("rust-pbkdf2" ,rust-pbkdf2-0.4)
24205 ("rust-rand" ,rust-rand-0.7)
24206 ("rust-rand-core" ,rust-rand-core-0.5)
24207 ("rust-sha2" ,rust-sha2-0.9)
24208 ("rust-subtle" ,rust-subtle-2))))
24209 (home-page "https://github.com/RustCrypto/password-hashes")
24210 (synopsis "Scrypt password-based key derivation function")
24211 (description
24212 "Scrypt password-based key derivation function.")
24213 (license (list license:expat license:asl2.0))))
24214
24215 (define-public rust-scrypt-0.2
24216 (package
24217 (inherit rust-scrypt-0.3)
24218 (name "rust-scrypt")
24219 (version "0.2.0")
24220 (source
24221 (origin
24222 (method url-fetch)
24223 (uri (crate-uri "scrypt" version))
24224 (file-name
24225 (string-append name "-" version ".tar.gz"))
24226 (sha256
24227 (base32
24228 "1pfgqgzdjxjf7c8r1wfka0ackfpv1g8w7wvbr25b42hdx787jv35"))))
24229 (arguments
24230 `(#:cargo-inputs
24231 (("rust-base64" ,rust-base64-0.9)
24232 ("rust-byte-tools" ,rust-byte-tools-0.3)
24233 ("rust-byteorder" ,rust-byteorder-1)
24234 ("rust-hmac" ,rust-hmac-0.7)
24235 ("rust-pbkdf2" ,rust-pbkdf2-0.3)
24236 ("rust-rand" ,rust-rand-0.5)
24237 ("rust-sha2" ,rust-sha2-0.8)
24238 ("rust-subtle" ,rust-subtle-1.0))))))
24239
24240 (define-public rust-scroll-0.10
24241 (package
24242 (name "rust-scroll")
24243 (version "0.10.1")
24244 (source
24245 (origin
24246 (method url-fetch)
24247 (uri (crate-uri "scroll" version))
24248 (file-name
24249 (string-append name "-" version ".tar.gz"))
24250 (sha256
24251 (base32
24252 "1cbcns8538sqmfnmdbphqy0fd4j8z75z802pvmz3zlwmnln37cmb"))))
24253 (build-system cargo-build-system)
24254 (arguments
24255 `(#:skip-build? #t
24256 #:cargo-inputs
24257 (("rust-scroll-derive" ,rust-scroll-derive-0.10))))
24258 (home-page "https://github.com/m4b/scroll")
24259 (synopsis "Endian-aware Read/Write traits for byte buffers")
24260 (description
24261 "This package provides a suite of powerful, extensible, generic,
24262 endian-aware Read/Write traits for byte buffers.")
24263 (license license:expat)))
24264
24265 (define-public rust-scroll-0.9
24266 (package
24267 (name "rust-scroll")
24268 (version "0.9.2")
24269 (source
24270 (origin
24271 (method url-fetch)
24272 (uri (crate-uri "scroll" version))
24273 (file-name
24274 (string-append name "-" version ".tar.gz"))
24275 (sha256
24276 (base32
24277 "10q3w86bn22xrjlfg1c90dfi9c26qjkzn26nad0i9z8pxwad311g"))))
24278 (build-system cargo-build-system)
24279 (arguments
24280 `(#:skip-build? #t
24281 #:cargo-inputs
24282 (("rust-scroll-derive" ,rust-scroll-derive-0.9)
24283 ("rust-rustc-version" ,rust-rustc-version-0.2))
24284 #:cargo-development-inputs
24285 (("rust-byteorder" ,rust-byteorder-1)
24286 ("rust-rayon" ,rust-rayon-1))))
24287 (home-page "https://github.com/m4b/scroll")
24288 (synopsis "Read/Write traits for byte buffers")
24289 (description
24290 "This package provides a suite of powerful, extensible, generic,
24291 endian-aware Read/Write traits for byte buffers.")
24292 (license license:expat)))
24293
24294 (define-public rust-scroll-derive-0.10
24295 (package
24296 (name "rust-scroll-derive")
24297 (version "0.10.1")
24298 (source
24299 (origin
24300 (method url-fetch)
24301 (uri (crate-uri "scroll_derive" version))
24302 (file-name
24303 (string-append name "-" version ".tar.gz"))
24304 (sha256
24305 (base32
24306 "0a7f0xybi27p1njs4bqmxh9zyb2dqal4dbvgnhjjix4zkgm4wn7q"))))
24307 (build-system cargo-build-system)
24308 (arguments
24309 `(#:skip-build? #t
24310 #:cargo-inputs
24311 (("rust-proc-macro2" ,rust-proc-macro2-1)
24312 ("rust-syn" ,rust-syn-1)
24313 ("rust-quote" ,rust-quote-1))))
24314 (home-page "https://github.com/m4b/scroll")
24315 (synopsis "Pread and Pwrite traits from the scroll crate")
24316 (description
24317 "This package provides a macros 1.1 derive implementation for Pread and
24318 Pwrite traits from the scroll crate.")
24319 (license license:expat)))
24320
24321 (define-public rust-scroll-derive-0.9
24322 (package
24323 (name "rust-scroll-derive")
24324 (version "0.9.5")
24325 (source
24326 (origin
24327 (method url-fetch)
24328 (uri (crate-uri "scroll_derive" version))
24329 (file-name
24330 (string-append name "-" version ".tar.gz"))
24331 (sha256
24332 (base32
24333 "1jqg5mm8nvii6avl1z1rc89agzh2kwkppgpsnwfakxg78mnaj6lg"))))
24334 (build-system cargo-build-system)
24335 (arguments
24336 `(#:cargo-inputs
24337 (("rust-proc-macro2" ,rust-proc-macro2-0.4)
24338 ("rust-quote" ,rust-quote-0.6)
24339 ("rust-syn" ,rust-syn-0.15))
24340 #:cargo-development-inputs
24341 (("rust-scroll" ,rust-scroll-0.9))))
24342 (home-page "https://github.com/m4b/scroll_derive")
24343 (synopsis "Derive Pread and Pwrite traits from the scroll crate")
24344 (description
24345 "This package provides a macros 1.1 derive implementation for Pread and
24346 Pwrite traits from the scroll crate.")
24347 (license license:expat)))
24348
24349 (define-public rust-sct-0.6
24350 (package
24351 (name "rust-sct")
24352 (version "0.6.0")
24353 (source
24354 (origin
24355 (method url-fetch)
24356 (uri (crate-uri "sct" version))
24357 (file-name (string-append name "-" version ".tar.gz"))
24358 (sha256
24359 (base32 "0g4dz7las43kcpi9vqv9c6l1afjkdv3g3w3s7d2w7a7w77wjl173"))))
24360 (build-system cargo-build-system)
24361 (arguments
24362 `(#:cargo-inputs
24363 (("rust-ring" ,rust-ring-0.16)
24364 ("rust-untrusted" ,rust-untrusted-0.7))
24365 #:cargo-development-inputs
24366 (("rust-cc" ,rust-cc-1))))
24367 (home-page "https://github.com/ctz/sct.rs")
24368 (synopsis "Certificate transparency SCT verification library")
24369 (description "Certificate transparency SCT verification library")
24370 (license (list license:asl2.0 license:isc license:expat))))
24371
24372 (define-public rust-sct-0.5
24373 (package
24374 (inherit rust-sct-0.6)
24375 (name "rust-sct")
24376 (version "0.5.0")
24377 (source
24378 (origin
24379 (method url-fetch)
24380 (uri (crate-uri "sct" version))
24381 (file-name
24382 (string-append name "-" version ".tar.gz"))
24383 (sha256
24384 (base32
24385 "1fb9ym5bwswx01yyggn7v2vfryih4vnqpp4r4ssv3qaqpn7xynig"))))
24386 (arguments
24387 `(#:cargo-inputs
24388 (("rust-ring" ,rust-ring-0.14)
24389 ("rust-untrusted" ,rust-untrusted-0.6))))))
24390
24391 (define-public rust-sct-0.3
24392 (package/inherit rust-sct-0.6
24393 (name "rust-sct")
24394 (version "0.3.0")
24395 (source
24396 (origin
24397 (method url-fetch)
24398 (uri (crate-uri "sct" version))
24399 (file-name (string-append name "-" version ".tar.gz"))
24400 (sha256
24401 (base32 "0z090j3lvy0lqbhmpswm4vb2n4i8dqswy0l93abdx9biipnhlm5l"))))
24402 (build-system cargo-build-system)
24403 (arguments
24404 `(#:cargo-inputs
24405 (("rust-ring" ,rust-ring-0.13)
24406 ("rust-untrusted" ,rust-untrusted-0.6))
24407 #:cargo-development-inputs
24408 (("rust-cc" ,rust-cc-1))))))
24409
24410
24411 (define-public rust-seahash-3
24412 (package
24413 (name "rust-seahash")
24414 (version "3.0.7")
24415 (source
24416 (origin
24417 (method url-fetch)
24418 (uri (crate-uri "seahash" version))
24419 (file-name
24420 (string-append name "-" version ".tar.gz"))
24421 (sha256
24422 (base32
24423 "0iqg12lxkn0ivsfa1gkylcwj5wmi6zl87mbizlrkg918s6hprxaq"))))
24424 (build-system cargo-build-system)
24425 (home-page
24426 "https://gitlab.redox-os.org/redox-os/seahash")
24427 (synopsis
24428 "Hash function with proven statistical guarantees")
24429 (description
24430 "This package provides a blazingly fast, portable hash function with
24431 proven statistical guarantees.")
24432 (license license:expat)))
24433
24434 (define-public rust-section-testing-0.0
24435 (package
24436 (name "rust-section-testing")
24437 (version "0.0.4")
24438 (source
24439 (origin
24440 (method url-fetch)
24441 (uri (crate-uri "section-testing" version))
24442 (file-name
24443 (string-append name "-" version ".tar.gz"))
24444 (sha256
24445 (base32
24446 "0a1zwpcs2dqhky2wd8y82cm25l3s9i5dbyn4ypgmvdysizcxgr7c"))))
24447 (build-system cargo-build-system)
24448 (home-page "https://github.com/evanw/section_testing")
24449 (synopsis "Library for section-style testing")
24450 (description
24451 "This package provides a library for section-style testing.")
24452 (license license:expat)))
24453
24454 (define-public rust-security-framework-1
24455 (package
24456 (name "rust-security-framework")
24457 (version "1.0.0")
24458 (source
24459 (origin
24460 (method url-fetch)
24461 (uri (crate-uri "security-framework" version))
24462 (file-name (string-append name "-" version ".tar.gz"))
24463 (sha256
24464 (base32
24465 "0axwlax65j1f79rsm4ylc8rc6p2knbi3dgnpbdq7a1bzh5k2hl5d"))))
24466 (build-system cargo-build-system)
24467 (arguments
24468 `(#:cargo-inputs
24469 (("rust-bitflags" ,rust-bitflags-1)
24470 ("rust-core-foundation" ,rust-core-foundation-0.7)
24471 ("rust-core-foundation-sys" ,rust-core-foundation-sys-0.7)
24472 ("rust-libc" ,rust-libc-0.2)
24473 ("rust-security-framework-sys" ,rust-security-framework-sys-1))
24474 #:cargo-development-inputs
24475 (("rust-hex" ,rust-hex-0.4)
24476 ("rust-tempdir" ,rust-tempdir-0.3))))
24477 (home-page "https://lib.rs/crates/security_framework")
24478 (synopsis "@code{Security.framework} bindings for macOS and iOS")
24479 (description "This package provides @code{Security.framework} bindings for
24480 macOS and iOS.")
24481 (license (list license:expat license:asl2.0))))
24482
24483 (define-public rust-security-framework-0.3
24484 (package
24485 (inherit rust-security-framework-1)
24486 (name "rust-security-framework")
24487 (version "0.3.4")
24488 (source
24489 (origin
24490 (method url-fetch)
24491 (uri (crate-uri "security-framework" version))
24492 (file-name
24493 (string-append name "-" version ".tar.gz"))
24494 (sha256
24495 (base32
24496 "1pqn79cl9njnnhsmjvvphkzx8is5jhfd8bhxpllgvrgggjfl5wlf"))))
24497 (arguments
24498 `(#:tests? #f ; Some test files not included in release.
24499 #:cargo-inputs
24500 (("rust-core-foundation" ,rust-core-foundation-0.6)
24501 ("rust-core-foundation-sys" ,rust-core-foundation-sys-0.6)
24502 ("rust-libc" ,rust-libc-0.2)
24503 ("rust-security-framework-sys" ,rust-security-framework-sys-0.3))
24504 #:cargo-development-inputs
24505 (("rust-hex" ,rust-hex-0.4)
24506 ("rust-tempdir" ,rust-tempdir-0.3))))))
24507
24508 (define-public rust-security-framework-0.2
24509 (package
24510 (inherit rust-security-framework-0.3)
24511 (name "rust-security-framework")
24512 (version "0.2.4")
24513 (source
24514 (origin
24515 (method url-fetch)
24516 (uri (crate-uri "security-framework" version))
24517 (file-name
24518 (string-append name "-" version ".tar.gz"))
24519 (sha256
24520 (base32
24521 "0gw3xxg8yzbjb4ny5cy07gky177c1nbgpxqjsw3hfzpfgrxji9bz"))))
24522 (arguments
24523 `(#:cargo-inputs
24524 (("rust-core-foundation"
24525 ,rust-core-foundation-0.6)
24526 ("rust-core-foundation-sys"
24527 ,rust-core-foundation-sys-0.6)
24528 ("rust-libc" ,rust-libc-0.2)
24529 ("rust-security-framework-sys"
24530 ,rust-security-framework-sys-0.2))
24531 #:cargo-development-inputs
24532 (("rust-hex" ,rust-hex-0.3)
24533 ("rust-tempdir" ,rust-tempdir-0.3))))))
24534
24535 (define-public rust-security-framework-sys-1
24536 (package
24537 (name "rust-security-framework-sys")
24538 (version "1.0.0")
24539 (source
24540 (origin
24541 (method url-fetch)
24542 (uri (crate-uri "security-framework-sys" version))
24543 (file-name (string-append name "-" version ".tar.gz"))
24544 (sha256
24545 (base32
24546 "1iynsjz53lqkkw4zbq8l99xn799chbx90lsmrlfnsyxii14v1kji"))))
24547 (build-system cargo-build-system)
24548 (arguments
24549 `(#:cargo-inputs
24550 (("rust-core-foundation-sys" ,rust-core-foundation-sys-0.7)
24551 ("rust-libc" ,rust-libc-0.2))))
24552 (home-page "https://lib.rs/crates/security-framework-sys")
24553 (synopsis "Low-level FFI bindings to Apple @code{Security.framework}")
24554 (description "This package provides low level FFI bindings to Apple
24555 @code{Security.framework}.")
24556 (license (list license:expat license:asl2.0))))
24557
24558 (define-public rust-security-framework-sys-0.3
24559 (package
24560 (inherit rust-security-framework-sys-1)
24561 (name "rust-security-framework-sys")
24562 (version "0.3.3")
24563 (source
24564 (origin
24565 (method url-fetch)
24566 (uri (crate-uri "security-framework-sys" version))
24567 (file-name (string-append name "-" version ".crate"))
24568 (sha256
24569 (base32
24570 "15gqhhi206lzynd0pcbswxhvqc4p9bmpl2h9qnwfnpb16zy96573"))))
24571 (build-system cargo-build-system)
24572 (arguments
24573 `(#:cargo-inputs
24574 (("rust-core-foundation-sys" ,rust-core-foundation-sys-0.6))))))
24575
24576 (define-public rust-security-framework-sys-0.2
24577 (package
24578 (inherit rust-security-framework-sys-0.3)
24579 (name "rust-security-framework-sys")
24580 (version "0.2.4")
24581 (source
24582 (origin
24583 (method url-fetch)
24584 (uri (crate-uri "security-framework-sys" version))
24585 (file-name (string-append name "-" version ".tar.gz"))
24586 (sha256
24587 (base32
24588 "07zv0szz2kfy1hn251h0qsq0q9i1zia768d8vzril1g6xarj7mcj"))))
24589 (arguments
24590 `(#:cargo-inputs
24591 (("rust-core-foundation-sys" ,rust-core-foundation-sys-0.6)
24592 ("rust-libc" ,rust-libc-0.2))))))
24593
24594 (define-public rust-selectors-0.22
24595 (package
24596 (name "rust-selectors")
24597 (version "0.22.0")
24598 (source
24599 (origin
24600 (method url-fetch)
24601 (uri (crate-uri "selectors" version))
24602 (file-name
24603 (string-append name "-" version ".tar.gz"))
24604 (sha256
24605 (base32
24606 "1zhjpvww238lh4nz7kdw4ywlpmjbmzvrm76w1jyacjxci4c0ycnz"))))
24607 (build-system cargo-build-system)
24608 (arguments
24609 `(#:cargo-inputs
24610 (("rust-bitflags" ,rust-bitflags-1)
24611 ("rust-cssparser" ,rust-cssparser-0.27)
24612 ("rust-derive-more" ,rust-derive-more-0.99)
24613 ("rust-fxhash" ,rust-fxhash-0.2)
24614 ("rust-log" ,rust-log-0.4)
24615 ("rust-matches" ,rust-matches-0.1)
24616 ("rust-phf" ,rust-phf-0.8)
24617 ("rust-precomputed-hash" ,rust-precomputed-hash-0.1)
24618 ("rust-servo-arc" ,rust-servo-arc-0.1)
24619 ("rust-smallvec" ,rust-smallvec-1)
24620 ("rust-thin-slice" ,rust-thin-slice-0.1))
24621 #:cargo-development-inputs
24622 (("rust-phf-codegen" ,rust-phf-codegen-0.8))))
24623 (home-page "https://github.com/servo/servo")
24624 (synopsis "CSS Selectors matching for Rust")
24625 (description "This package provides CSS Selectors matching for Rust.")
24626 (license license:mpl2.0)))
24627
24628 (define-public rust-sema-0.1
24629 (package
24630 (name "rust-sema")
24631 (version "0.1.4")
24632 (source
24633 (origin
24634 (method url-fetch)
24635 (uri (crate-uri "sema" version))
24636 (file-name
24637 (string-append name "-" version ".tar.gz"))
24638 (sha256
24639 (base32
24640 "0ckq33sg84785p195m54h03jcn7fai8w08hjnb94nzaakgzibbz3"))
24641 (modules '((guix build utils)))
24642 (snippet
24643 '(begin (substitute* "Cargo.toml"
24644 (("libc.*") "libc = \"0.2\"\n"))
24645 #t))))
24646 (build-system cargo-build-system)
24647 (arguments
24648 `( #:cargo-inputs
24649 (("rust-libc" ,rust-libc-0.2)
24650 ("rust-rand" ,rust-rand-0.3)
24651 ("rust-time" ,rust-time-0.1))
24652 #:cargo-development-inputs
24653 (("rust-lazy-static" ,rust-lazy-static-1)
24654 ("rust-nix" ,rust-nix-0.15))))
24655 (home-page "https://github.com/cpjreynolds/sema")
24656 (synopsis "Rust semaphore library")
24657 (description "Rust semaphore library.")
24658 (license license:expat)))
24659
24660 (define-public rust-semver-0.10
24661 (package
24662 (name "rust-semver")
24663 (version "0.10.0")
24664 (source
24665 (origin
24666 (method url-fetch)
24667 (uri (crate-uri "semver" version))
24668 (file-name (string-append name "-" version ".tar.gz"))
24669 (sha256
24670 (base32
24671 "1401i88135h2paxwvf0b51hf585rdzxa8yxg7j800gk2z8lfqk1r"))))
24672 (build-system cargo-build-system)
24673 (arguments
24674 `(#:cargo-inputs
24675 (("rust-diesel" ,rust-diesel-1)
24676 ("rust-semver-parser" ,rust-semver-parser-0.7)
24677 ("rust-serde" ,rust-serde-1))
24678 #:cargo-development-inputs
24679 (("rust-serde-derive" ,rust-serde-derive-1)
24680 ("rust-serde-json" ,rust-serde-json-1))))
24681 (home-page "https://docs.rs/crate/semver/")
24682 (synopsis "Semantic version parsing and comparison")
24683 (description "This package provides semantic version parsing and
24684 comparison.")
24685 (license (list license:expat license:asl2.0))))
24686
24687 (define-public rust-semver-0.9
24688 (package
24689 (name "rust-semver")
24690 (version "0.9.0")
24691 (source
24692 (origin
24693 (method url-fetch)
24694 (uri (crate-uri "semver" version))
24695 (file-name
24696 (string-append name "-" version ".tar.gz"))
24697 (sha256
24698 (base32
24699 "00q4lkcj0rrgbhviv9sd4p6qmdsipkwkbra7rh11jrhq5kpvjzhx"))))
24700 (build-system cargo-build-system)
24701 (arguments
24702 `(#:skip-build? #t
24703 #:cargo-inputs
24704 (("rust-semver-parser" ,rust-semver-parser-0.7)
24705 ("rust-serde" ,rust-serde-1))
24706 #:cargo-development-inputs
24707 (("rust-crates-index" ,rust-crates-index-0.13)
24708 ("rust-serde-derive" ,rust-serde-derive-1)
24709 ("rust-serde-json" ,rust-serde-json-1)
24710 ("rust-tempdir" ,rust-tempdir-0.3))))
24711 (home-page "https://docs.rs/crate/semver")
24712 (synopsis
24713 "Semantic version parsing and comparison")
24714 (description
24715 "Semantic version parsing and comparison.")
24716 (license (list license:expat license:asl2.0))))
24717
24718 (define-public rust-semver-parser-0.9
24719 (package
24720 (name "rust-semver-parser")
24721 (version "0.9.0")
24722 (source
24723 (origin
24724 (method url-fetch)
24725 (uri (crate-uri "semver-parser" version))
24726 (file-name (string-append name "-" version ".crate"))
24727 (sha256
24728 (base32
24729 "1ahqhvgpzhcsd28id7xnrjv4419i9yyalhm7d7zi430qx0hi2vml"))))
24730 (build-system cargo-build-system)
24731 (home-page "https://github.com/steveklabnik/semver-parser")
24732 (synopsis "Parsing of the semver spec")
24733 (description "This package provides for parsing of the semver spec.")
24734 (license (list license:asl2.0
24735 license:expat))))
24736
24737 (define-public rust-semver-parser-0.7
24738 (package
24739 (inherit rust-semver-parser-0.9)
24740 (name "rust-semver-parser")
24741 (version "0.7.0")
24742 (source
24743 (origin
24744 (method url-fetch)
24745 (uri (crate-uri "semver-parser" version))
24746 (file-name (string-append name "-" version ".crate"))
24747 (sha256
24748 (base32
24749 "18vhypw6zgccnrlm5ps1pwa0khz7ry927iznpr88b87cagr1v2iq"))))))
24750
24751 (define-public rust-sequoia-openpgp-0.9
24752 (package
24753 (name "rust-sequoia-openpgp")
24754 (version "0.9.0")
24755 (source
24756 (origin
24757 (method url-fetch)
24758 (uri (crate-uri "sequoia-openpgp" version))
24759 (file-name
24760 (string-append name "-" version ".tar.gz"))
24761 (sha256
24762 (base32
24763 "007h2pi7lcph5jf5bxjydm7hjwjai33yk6dic3cxknki22lxlkfw"))))
24764 (build-system cargo-build-system)
24765 (arguments
24766 `(#:cargo-inputs
24767 (("rust-base64" ,rust-base64-0.9)
24768 ("rust-buffered-reader" ,rust-buffered-reader-0.9)
24769 ("rust-bzip2" ,rust-bzip2-0.3)
24770 ("rust-failure" ,rust-failure-0.1)
24771 ("rust-flate2" ,rust-flate2-1)
24772 ("rust-idna" ,rust-idna-0.1)
24773 ("rust-lalrpop" ,rust-lalrpop-0.17)
24774 ("rust-lalrpop-util" ,rust-lalrpop-util-0.17)
24775 ("rust-lazy-static" ,rust-lazy-static-1)
24776 ("rust-memsec" ,rust-memsec-0.5)
24777 ("rust-nettle" ,rust-nettle-5)
24778 ("rust-quickcheck" ,rust-quickcheck-0.8)
24779 ("rust-rand" ,rust-rand-0.6)
24780 ("rust-sequoia-rfc2822" ,rust-sequoia-rfc2822-0.9)
24781 ("rust-time" ,rust-time-0.1))
24782 #:cargo-development-inputs
24783 (("rust-rpassword" ,rust-rpassword-3))))
24784 (native-inputs
24785 `(("pkg-config" ,pkg-config)))
24786 (inputs
24787 `(("clang" ,clang)
24788 ("nettle" ,nettle)))
24789 (home-page "https://sequoia-pgp.org/")
24790 (synopsis "OpenPGP data types and associated machinery")
24791 (description
24792 "This crate aims to provide a complete implementation of OpenPGP as
24793 defined by RFC 4880 as well as some extensions (e.g., RFC 6637, which
24794 describes ECC cryptography) for OpenPGP. This includes support for unbuffered
24795 message processing.
24796
24797 A few features that the OpenPGP community considers to be deprecated (e.g.,
24798 version 3 compatibility) have been left out. We have also updated some
24799 OpenPGP defaults to avoid foot guns (e.g., we selected modern algorithm
24800 defaults). If some functionality is missing, please file a bug report.")
24801 (license license:gpl3)))
24802
24803 (define-public rust-sequoia-rfc2822-0.9
24804 (package
24805 (name "rust-sequoia-rfc2822")
24806 (version "0.9.0")
24807 (source
24808 (origin
24809 (method url-fetch)
24810 (uri (crate-uri "sequoia-rfc2822" version))
24811 (file-name
24812 (string-append name "-" version ".tar.gz"))
24813 (sha256
24814 (base32
24815 "1aj34i6862718m162rqfv69fkmvdw063s6ws7hbp42n73gb08p5c"))))
24816 (build-system cargo-build-system)
24817 (arguments
24818 `(#:cargo-inputs
24819 (("rust-failure" ,rust-failure-0.1)
24820 ("rust-lalrpop" ,rust-lalrpop-0.17)
24821 ("rust-lalrpop-util" ,rust-lalrpop-util-0.17))
24822 #:cargo-development-inputs
24823 (("rust-lazy-static" ,rust-lazy-static-1)
24824 ("rust-quickcheck" ,rust-quickcheck-0.8)
24825 ("rust-rand" ,rust-rand-0.6))))
24826 (home-page "https://sequoia-pgp.org/")
24827 (synopsis "RFC 2822 name-addr parser")
24828 (description
24829 "Currently, this crate only recognizes the RFC 2822 name-addr and
24830 addr-spec productions, i.e., things of the form:
24831
24832 Name (Comment) <email@@example.org>
24833
24834 and
24835
24836 email@@example.org
24837
24838 Although the above appear simple to parse, RFC 2822's whitespace and comment
24839 rules are rather complex. This crate implements the whole grammar." )
24840 (license license:gpl3)))
24841
24842 (define-public rust-serde-1
24843 (package
24844 (name "rust-serde")
24845 (version "1.0.117")
24846 (source
24847 (origin
24848 (method url-fetch)
24849 (uri (crate-uri "serde" version))
24850 (file-name (string-append name "-" version ".crate"))
24851 (sha256
24852 (base32
24853 "06nwyyma9hch1abjqj0y9cb09m1y6lbzbsc7jff6483pvs1sk3xq"))))
24854 (build-system cargo-build-system)
24855 (arguments
24856 `(#:cargo-inputs
24857 (("rust-serde-derive" ,rust-serde-derive-1))
24858 #:cargo-development-inputs
24859 (("rust-serde-derive" ,rust-serde-derive-1))))
24860 (home-page "https://serde.rs")
24861 (synopsis "Generic serialization/deserialization framework")
24862 (description
24863 "This package provides a generic serialization/deserialization framework.")
24864 (license (list license:expat license:asl2.0))))
24865
24866 (define-public rust-serde-0.9
24867 (package
24868 (inherit rust-serde-1)
24869 (name "rust-serde")
24870 (version "0.9.15")
24871 (source
24872 (origin
24873 (method url-fetch)
24874 (uri (crate-uri "serde" version))
24875 (file-name
24876 (string-append name "-" version ".tar.gz"))
24877 (sha256
24878 (base32
24879 "1bsla8l5xr9pp5sirkal6mngxcq6q961km88jvf339j5ff8j7dil"))))
24880 (arguments
24881 `(#:phases
24882 (modify-phases %standard-phases
24883 (add-after 'unpack 'fix-cargo-toml
24884 (lambda _
24885 (substitute* "Cargo.toml"
24886 ((", path =.*}") "}"))
24887 #t)))
24888 #:cargo-inputs
24889 (("rust-serde-derive" ,rust-serde-derive-0.9))
24890 #:cargo-development-inputs
24891 (("rust-serde-derive" ,rust-serde-derive-0.9))))))
24892
24893 (define-public rust-serde-0.8
24894 (package
24895 (inherit rust-serde-1)
24896 (name "rust-serde")
24897 (version "0.8.23")
24898 (source
24899 (origin
24900 (method url-fetch)
24901 (uri (crate-uri "serde" version))
24902 (file-name (string-append name "-" version ".tar.gz"))
24903 (sha256
24904 (base32
24905 "1j4ajipn0sf4ya0crgcb94s848qp7mfc35n6d0q2rf8rk5skzbcx"))))
24906 (arguments
24907 `(#:cargo-development-inputs
24908 (("rust-clippy" ,rust-clippy-0.0))
24909 #:tests? #f))))
24910
24911 (define-public rust-serde-0.4
24912 (package
24913 (inherit rust-serde-0.9)
24914 (name "rust-serde")
24915 (version "0.4.3")
24916 (source
24917 (origin
24918 (method url-fetch)
24919 (uri (crate-uri "serde" version))
24920 (file-name
24921 (string-append name "-" version ".tar.gz"))
24922 (sha256
24923 (base32
24924 "06s2ayx1p5zzj4q7bfld60c9iprsk1256pnh8qj6h794mjinw11b"))))
24925 (arguments
24926 `(#:skip-build? #t
24927 #:cargo-inputs (("rust-num" ,rust-num-0.2))))))
24928
24929 (define-public rust-serde-big-array-0.2
24930 (package
24931 (name "rust-serde-big-array")
24932 (version "0.2.0")
24933 (source
24934 (origin
24935 (method url-fetch)
24936 (uri (crate-uri "serde-big-array" version))
24937 (file-name
24938 (string-append name "-" version ".tar.gz"))
24939 (sha256
24940 (base32
24941 "0kj0h99y7ma9nsayv87fj2n680bcrwv2mrcbmc774lgak18ywgl8"))))
24942 (build-system cargo-build-system)
24943 (arguments
24944 `(#:cargo-inputs
24945 (("rust-serde" ,rust-serde-1)
24946 ("rust-serde-derive" ,rust-serde-derive-1))
24947 #:cargo-development-inputs
24948 (("rust-serde-json" ,rust-serde-json-1))))
24949 (home-page "https://github.com/est31/serde-big-array")
24950 (synopsis "Big array helper for serde")
24951 (description "This package provides a big array helper for serde.")
24952 (license (list license:asl2.0 license:expat))))
24953
24954 (define-public rust-serde-big-array-0.1
24955 (package
24956 (inherit rust-serde-big-array-0.2)
24957 (name "rust-serde-big-array")
24958 (version "0.1.5")
24959 (source
24960 (origin
24961 (method url-fetch)
24962 (uri (crate-uri "serde-big-array" version))
24963 (file-name
24964 (string-append name "-" version ".tar.gz"))
24965 (sha256
24966 (base32
24967 "0gkyqxk760mp1lfcg6lhjk95ajc89nr0qdd0vl4ic0g8pyxcy9mr"))))))
24968
24969 (define-public rust-serde-bytes-0.11
24970 (package
24971 (name "rust-serde-bytes")
24972 (version "0.11.5")
24973 (source
24974 (origin
24975 (method url-fetch)
24976 (uri (crate-uri "serde_bytes" version))
24977 (file-name
24978 (string-append name "-" version ".tar.gz"))
24979 (sha256
24980 (base32 "1fcb6sw8wkrj4ylm118wkb31hw124nkjnqyhbgqnd8w85zfhgbhn"))))
24981 (build-system cargo-build-system)
24982 (arguments
24983 `(#:skip-build? #t
24984 #:cargo-inputs
24985 (("rust-serde" ,rust-serde-1))
24986 #:cargo-development-inputs
24987 (("rust-bincode" ,rust-bincode-1)
24988 ("rust-serde-derive" ,rust-serde-derive-1)
24989 ("rust-serde-test" ,rust-serde-test-1))))
24990 (home-page "https://github.com/serde-rs/bytes")
24991 (synopsis "Handle integer arrays and vectors for Serde")
24992 (description
24993 "Optimized handling of @code{&[u8]} and @code{Vec<u8>} for Serde.")
24994 (license (list license:expat license:asl2.0))))
24995
24996 (define-public rust-serde-bytes-0.10
24997 (package
24998 (inherit rust-serde-bytes-0.11)
24999 (name "rust-serde-bytes")
25000 (version "0.10.5")
25001 (source
25002 (origin
25003 (method url-fetch)
25004 (uri (crate-uri "serde_bytes" version))
25005 (file-name
25006 (string-append name "-" version ".tar.gz"))
25007 (sha256
25008 (base32
25009 "127c9br02ygajs4z3bw850i48nc25f4yn7kmh21wqd3z7nlbiyyy"))))))
25010
25011 (define-public rust-serde-cbor-0.11
25012 (package
25013 (name "rust-serde-cbor")
25014 (version "0.11.1")
25015 (source
25016 (origin
25017 (method url-fetch)
25018 (uri (crate-uri "serde-cbor" version))
25019 (file-name
25020 (string-append name "-" version ".tar.gz"))
25021 (sha256
25022 (base32
25023 "08m62mfqjnpa543kd9r9cyxlqc6y73avhsl3n8svgs4h5zxaq60y"))))
25024 (build-system cargo-build-system)
25025 (arguments
25026 `(#:cargo-inputs
25027 (("rust-half" ,rust-half-1)
25028 ("rust-serde" ,rust-serde-1))
25029 #:cargo-development-inputs
25030 (("rust-serde-derive" ,rust-serde-derive-1))))
25031 (home-page "https://github.com/pyfisch/cbor")
25032 (synopsis "CBOR support for serde")
25033 (description "CBOR support for serde.")
25034 (license (list license:expat license:asl2.0))))
25035
25036 (define-public rust-serde-cbor-0.10
25037 (package
25038 (inherit rust-serde-cbor-0.11)
25039 (name "rust-serde-cbor")
25040 (version "0.10.2")
25041 (source
25042 (origin
25043 (method url-fetch)
25044 (uri (crate-uri "serde_cbor" version))
25045 (file-name
25046 (string-append name "-" version ".tar.gz"))
25047 (sha256
25048 (base32
25049 "0kyizacjabsa78p9f7qvj31zirpnsgsr4zpfv1p6lwpcb3biw27p"))))
25050 (arguments
25051 `(#:skip-build? #t
25052 #:cargo-inputs
25053 (("rust-byteorder" ,rust-byteorder-1)
25054 ("rust-half" ,rust-half-1)
25055 ("rust-serde" ,rust-serde-1))
25056 #:cargo-development-inputs
25057 (("rust-serde-derive" ,rust-serde-derive-1))))))
25058
25059 (define-public rust-serde-codegen-0.4
25060 (package
25061 (name "rust-serde-codegen")
25062 (version "0.4.3")
25063 (source
25064 (origin
25065 (method url-fetch)
25066 (uri (crate-uri "serde_codegen" version))
25067 (file-name
25068 (string-append name "-" version ".tar.gz"))
25069 (sha256
25070 (base32
25071 "0167ghvqs0n8qin8fjx2ihn3gx92m55685qpv4nzihw48h4rq0vq"))))
25072 (build-system cargo-build-system)
25073 (arguments
25074 `(#:skip-build? #t
25075 #:cargo-inputs
25076 (("rust-aster" ,rust-aster-0.41)
25077 ("rust-quasi" ,rust-quasi-0.32)
25078 ("rust-quasi-macros" ,rust-quasi-macros-0.32)
25079 ("rust-syntex" ,rust-syntex-0.58)
25080 ("rust-syntex-syntax" ,rust-syntex-syntax-0.58))
25081 #:cargo-development-inputs
25082 (("rust-quasi-codegen" ,rust-quasi-codegen-0.32)
25083 ("rust-syntex" ,rust-syntex-0.58))))
25084 (home-page "https://serde.rs")
25085 (synopsis "Macros for the serde framework")
25086 (description "This package provides macros to auto-generate implementations
25087 for the serde framework.")
25088 (license (list license:expat license:asl2.0))))
25089
25090 (define-public rust-serde-codegen-internals-0.14
25091 (package
25092 (name "rust-serde-codegen-internals")
25093 (version "0.14.2")
25094 (source
25095 (origin
25096 (method url-fetch)
25097 (uri (crate-uri "serde_codegen_internals" version))
25098 (file-name
25099 (string-append name "-" version ".tar.gz"))
25100 (sha256
25101 (base32
25102 "0004s3wlc85vi6hq62hq84cv5b6qbbin1n6hdaqj095xhg98p25w"))))
25103 (build-system cargo-build-system)
25104 (arguments
25105 `(#:cargo-inputs (("rust-syn" ,rust-syn-0.11))))
25106 (home-page "https://serde.rs")
25107 (synopsis "AST representation used by Serde codegen")
25108 (description
25109 "Unstable AST representation used by Serde codegen.")
25110 (license (list license:expat license:asl2.0))))
25111
25112 (define-public rust-serde-derive-1
25113 (package
25114 (name "rust-serde-derive")
25115 (version "1.0.117")
25116 (source
25117 (origin
25118 (method url-fetch)
25119 (uri (crate-uri "serde-derive" version))
25120 (file-name (string-append name "-" version ".crate"))
25121 (sha256
25122 (base32
25123 "0kn7ais3zv9ajbyc216qm14r61zwlm229815yd4anjmlmmraxlfb"))))
25124 (build-system cargo-build-system)
25125 (arguments
25126 `(#:cargo-inputs
25127 (("rust-proc-macro2" ,rust-proc-macro2-1)
25128 ("rust-quote" ,rust-quote-1)
25129 ("rust-syn" ,rust-syn-1))
25130 #:cargo-development-inputs
25131 (("rust-serde" ,rust-serde-1))))
25132 (home-page "https://serde.rs")
25133 (synopsis
25134 "Macros 1.1 implementation of #[derive(Serialize, Deserialize)]")
25135 (description
25136 "Macros 1.1 implementation of #[derive(Serialize, Deserialize)]")
25137 (license (list license:expat license:asl2.0))))
25138
25139 (define-public rust-serde-derive-0.9
25140 (package
25141 (inherit rust-serde-derive-1)
25142 (name "rust-serde-derive")
25143 (version "0.9.15")
25144 (source
25145 (origin
25146 (method url-fetch)
25147 (uri (crate-uri "serde-derive" version))
25148 (file-name
25149 (string-append name "-" version ".tar.gz"))
25150 (sha256
25151 (base32
25152 "1fkldf0lnl6pwxs00qpyp79m30qmfpi3bk0wm22211ylyikdi3wp"))))
25153 (arguments
25154 `(#:phases
25155 (modify-phases %standard-phases
25156 (add-after 'unpack 'fix-cargo-toml
25157 (lambda _
25158 (substitute* "Cargo.toml"
25159 ((", path =.*}") "}"))
25160 #t)))
25161 #:cargo-inputs
25162 (("rust-quote" ,rust-quote-0.3)
25163 ("rust-serde-codegen-internals" ,rust-serde-codegen-internals-0.14)
25164 ("rust-syn" ,rust-syn-0.11))))))
25165
25166 (define-public rust-serde-json-1
25167 (package
25168 (name "rust-serde-json")
25169 (version "1.0.50")
25170 (source
25171 (origin
25172 (method url-fetch)
25173 (uri (crate-uri "serde-json" version))
25174 (file-name (string-append name "-" version ".crate"))
25175 (sha256
25176 (base32
25177 "0rs8rsk59kgkgsrw8hyyjrlhas9k1by2jwxxqcz3c2bq2qna39vq"))))
25178 (build-system cargo-build-system)
25179 (arguments
25180 `(#:skip-build? #t
25181 #:cargo-inputs
25182 (("rust-indexmap" ,rust-indexmap-1)
25183 ("rust-itoa" ,rust-itoa-0.4)
25184 ("rust-ryu" ,rust-ryu-1.0)
25185 ("rust-serde" ,rust-serde-1))
25186 #:cargo-development-inputs
25187 (;("rust-automod" ,rust-automod-0.1)
25188 ("rust-rustversion" ,rust-rustversion-1)
25189 ("rust-serde-bytes" ,rust-serde-bytes-0.11)
25190 ("rust-serde-derive" ,rust-serde-derive-1)
25191 ;("rust-serde-stacker" ,rust-serde-stacker-0.1)
25192 ("rust-trybuild" ,rust-trybuild-1))))
25193 (home-page "https://github.com/serde-rs/json")
25194 (synopsis "JSON serialization file format")
25195 (description
25196 "This package provides a JSON serialization file format.")
25197 (license (list license:expat license:asl2.0))))
25198
25199 (define-public rust-serde-json-0.9
25200 (package
25201 (inherit rust-serde-json-1)
25202 (name "rust-serde-json")
25203 (version "0.9.10")
25204 (source
25205 (origin
25206 (method url-fetch)
25207 (uri (crate-uri "serde_json" version))
25208 (file-name
25209 (string-append name "-" version ".tar.gz"))
25210 (sha256
25211 (base32
25212 "188nbf56m7p6mnh3xd71rwqxd4g95lqh8gsl7mfy3lp7gd4cz2xd"))))
25213 (build-system cargo-build-system)
25214 (arguments
25215 `(#:cargo-inputs
25216 (("rust-dtoa" ,rust-dtoa-0.4)
25217 ("rust-itoa" ,rust-itoa-0.3)
25218 ("rust-linked-hash-map" ,rust-linked-hash-map-0.4)
25219 ("rust-num-traits" ,rust-num-traits-0.1)
25220 ("rust-serde" ,rust-serde-0.9))
25221 #:cargo-development-inputs
25222 (("rust-serde-derive" ,rust-serde-derive-0.9))))))
25223
25224 (define-public rust-serde-macros-0.4
25225 (package
25226 (name "rust-serde-macros")
25227 (version "0.4.4")
25228 (source
25229 (origin
25230 (method url-fetch)
25231 (uri (crate-uri "serde_macros" version))
25232 (file-name
25233 (string-append name "-" version ".tar.gz"))
25234 (sha256
25235 (base32
25236 "1717rpncvvyvyrpb7hdjgxpiki9vdgygwv2r3d9aal5n8cm8xi8i"))))
25237 (build-system cargo-build-system)
25238 (arguments
25239 `(#:skip-build? #t
25240 #:phases
25241 (modify-phases %standard-phases
25242 (add-after 'unpack 'fix-cargo-toml
25243 (lambda _
25244 (substitute* "Cargo.toml"
25245 ((", path =.*}") "}"))
25246 #t)))
25247 #:cargo-inputs
25248 (("rust-serde-codegen" ,rust-serde-codegen-0.4))
25249 #:cargo-development-inputs
25250 (("rust-num" ,rust-num-0.2)
25251 ("rust-rustc-serialize" ,rust-rustc-serialize-0.3)
25252 ("rust-serde" ,rust-serde-0.4))))
25253 (home-page "https://serde.rs")
25254 (synopsis
25255 "Macros to auto-generate implementations for the serde framework")
25256 (description
25257 "Macros to auto-generate implementations for the serde framework.")
25258 (license (list license:expat license:asl2.0))))
25259
25260 (define-public rust-serde-test-1
25261 (package
25262 (name "rust-serde-test")
25263 (version "1.0.113")
25264 (source
25265 (origin
25266 (method url-fetch)
25267 (uri (crate-uri "serde_test" version))
25268 (file-name
25269 (string-append name "-" version ".tar.gz"))
25270 (sha256
25271 (base32
25272 "02s7zjs12m5abk13j5farc00rzissk1anpl015vawpzz914jsan3"))))
25273 (build-system cargo-build-system)
25274 (arguments
25275 `(#:cargo-inputs
25276 (("rust-serde" ,rust-serde-1))
25277 #:cargo-development-inputs
25278 (("rust-serde" ,rust-serde-1)
25279 ("rust-serde-derive" ,rust-serde-derive-1))))
25280 (home-page "https://serde.rs")
25281 (synopsis
25282 "Token De/Serializer for testing De/Serialize implementations")
25283 (description
25284 "Token De/Serializer for testing De/Serialize implementations.")
25285 (license (list license:expat license:asl2.0))))
25286
25287 (define-public rust-serde-test-0.9
25288 (package
25289 (inherit rust-serde-test-1)
25290 (name "rust-serde-test")
25291 (version "0.9.15")
25292 (source
25293 (origin
25294 (method url-fetch)
25295 (uri (crate-uri "serde_test" version))
25296 (file-name
25297 (string-append name "-" version ".tar.gz"))
25298 (sha256
25299 (base32
25300 "193mf0qkhvjywd06x6hhmkixlqcyfbpfwfmr75dp2b8xwzpsvxwf"))))
25301 (arguments
25302 `(#:phases
25303 (modify-phases %standard-phases
25304 (add-after 'unpack 'fix-cargo-toml
25305 (lambda _
25306 (substitute* "Cargo.toml"
25307 ((", path =.*}") "}"))
25308 #t)))
25309 #:cargo-inputs (("rust-serde" ,rust-serde-0.9))))))
25310
25311 (define-public rust-serde-test-0.8
25312 (package
25313 (inherit rust-serde-test-1)
25314 (name "rust-serde-test")
25315 (version "0.8.23")
25316 (source
25317 (origin
25318 (method url-fetch)
25319 (uri (crate-uri "serde-test" version))
25320 (file-name (string-append name "-" version ".tar.gz"))
25321 (sha256
25322 (base32
25323 "1m939j7cgs7i58r6vxf0ffp3nbr8advr8p9dqa9w8zk0z2yks2qi"))))
25324 (arguments
25325 `(#:cargo-inputs (("rust-serde" ,rust-serde-0.8))
25326 #:phases
25327 (modify-phases %standard-phases
25328 (add-after 'unpack 'fix-Cargo-toml
25329 (lambda _
25330 (substitute* "Cargo.toml"
25331 ((", path = \"../serde\"") ""))
25332 #t)))))))
25333
25334 (define-public rust-serde-urlencoded-0.6
25335 (package
25336 (name "rust-serde-urlencoded")
25337 (version "0.6.1")
25338 (source
25339 (origin
25340 (method url-fetch)
25341 (uri (crate-uri "serde_urlencoded" version))
25342 (file-name (string-append name "-" version ".tar.gz"))
25343 (sha256
25344 (base32
25345 "15rcwfkff0md5i231m2ym5756ksw1mkh5b5g2rw72wsc5mzdgicy"))))
25346 (build-system cargo-build-system)
25347 (arguments
25348 `(#:cargo-inputs
25349 (("rust-dtoa" ,rust-dtoa-0.4)
25350 ("rust-itoa" ,rust-itoa-0.4)
25351 ("rust-serde" ,rust-serde-1)
25352 ("rust-url" ,rust-url-2))
25353 #:cargo-development-inputs
25354 (("rust-serde-derive" ,rust-serde-derive-1))))
25355 (home-page "https://github.com/nox/serde_urlencoded")
25356 (synopsis "x-www-form-urlencoded meets serde")
25357 (description "x-www-form-urlencoded meets serde.")
25358 (license (list license:expat license:asl2.0))))
25359
25360 (define-public rust-serde-yaml-0.8
25361 (package
25362 (name "rust-serde-yaml")
25363 (version "0.8.11")
25364 (source
25365 (origin
25366 (method url-fetch)
25367 (uri (crate-uri "serde_yaml" version))
25368 (file-name
25369 (string-append name "-" version ".tar.gz"))
25370 (sha256
25371 (base32
25372 "0d9wdjrlx9gxg80kzc6pvdwz5pwhja2n8n0bxja9vv61kzqif6v9"))))
25373 (build-system cargo-build-system)
25374 (arguments
25375 `(#:skip-build? #t
25376 #:cargo-inputs
25377 (("rust-dtoa" ,rust-dtoa-0.4)
25378 ("rust-linked-hash-map" ,rust-linked-hash-map-0.5)
25379 ("rust-serde" ,rust-serde-1)
25380 ("rust-yaml-rust" ,rust-yaml-rust-0.4))
25381 #:cargo-development-inputs
25382 (("rust-serde-derive" ,rust-serde-derive-1)
25383 ("rust-unindent" ,rust-unindent-0.1))))
25384 (home-page
25385 "https://github.com/dtolnay/serde-yaml")
25386 (synopsis "YAML support for Serde")
25387 (description "YAML support for Serde.")
25388 (license (list license:asl2.0 license:expat))))
25389
25390 (define-public rust-serial-test-0.1
25391 (package
25392 (name "rust-serial-test")
25393 (version "0.1.0")
25394 (source
25395 (origin
25396 (method url-fetch)
25397 (uri (crate-uri "serial-test" version))
25398 (file-name
25399 (string-append name "-" version ".tar.gz"))
25400 (sha256
25401 (base32
25402 "0qywhzjc4jh6dqqng90maai0mjlmafk9aa5rrl9g3d2g01wdn8ms"))))
25403 (build-system cargo-build-system)
25404 (arguments
25405 `(#:cargo-inputs
25406 (("rust-lazy-static" ,rust-lazy-static-1))))
25407 (home-page "https://github.com/palfrey/serial_test/")
25408 (synopsis "Serialised Rust tests")
25409 (description
25410 "Allows for the creation of serialised Rust tests.")
25411 (license license:expat)))
25412
25413 (define-public rust-serial-test-derive-0.1
25414 (package
25415 (name "rust-serial-test-derive")
25416 (version "0.1.0")
25417 (source
25418 (origin
25419 (method url-fetch)
25420 (uri (crate-uri "serial-test-derive" version))
25421 (file-name
25422 (string-append name "-" version ".tar.gz"))
25423 (sha256
25424 (base32
25425 "17fkqrba233sjhdak986y4w3z4yjxa4idjkh46l7zxgcgjlvrnic"))))
25426 (build-system cargo-build-system)
25427 (arguments
25428 `(#:cargo-inputs
25429 (("rust-quote" ,rust-quote-0.6)
25430 ("rust-syn" ,rust-syn-0.15))))
25431 (home-page "https://github.com/palfrey/serial_test/")
25432 (synopsis "Helper crate for serial_test")
25433 (description "This package provides a helper crate for @code{serial_test}.")
25434 (license license:expat)))
25435
25436 (define-public rust-servo-arc-0.1
25437 (package
25438 (name "rust-servo-arc")
25439 (version "0.1.1")
25440 (source
25441 (origin
25442 (method url-fetch)
25443 (uri (crate-uri "servo-arc" version))
25444 (file-name
25445 (string-append name "-" version ".tar.gz"))
25446 (sha256
25447 (base32
25448 "0cjljr9znwahry6p95xvd3p4pmy24wlf6gbfidnmglg002w3i0nr"))))
25449 (build-system cargo-build-system)
25450 (arguments
25451 `(#:cargo-inputs
25452 (("rust-nodrop" ,rust-nodrop-0.1)
25453 ("rust-serde" ,rust-serde-1)
25454 ("rust-stable-deref-trait" ,rust-stable-deref-trait-1))))
25455 (home-page "https://github.com/servo/servo")
25456 (synopsis "Fork of std::sync::Arc with some extra functionality")
25457 (description
25458 "This package provides a fork of @code{std::sync::Arc} with some extra
25459 functionality and without weak references.")
25460 (license (list license:expat license:asl2.0))))
25461
25462 (define-public rust-serial-test-derive-0.4
25463 (package
25464 (name "rust-serial-test-derive")
25465 (version "0.4.0")
25466 (source
25467 (origin
25468 (method url-fetch)
25469 (uri (crate-uri "serial_test_derive" version))
25470 (file-name
25471 (string-append name "-" version ".tar.gz"))
25472 (sha256
25473 (base32
25474 "05b5xr36zi8damfg3bmbh1kwdxc3k1y2r8b8pmi7q8jb0bc3i0yh"))))
25475 (build-system cargo-build-system)
25476 (arguments
25477 `(#:cargo-inputs
25478 (("rust-env-logger" ,rust-env-logger-0.7)
25479 ("rust-proc-macro2" ,rust-proc-macro2-1)
25480 ("rust-quote" ,rust-quote-1)
25481 ("rust-syn" ,rust-syn-1))))
25482 (home-page
25483 "https://github.com/palfrey/serial_test_derive/")
25484 (synopsis "Serialising Rust tests")
25485 (description "Serialising Rust tests")
25486 (license license:expat)))
25487
25488 (define-public rust-serial-test-0.4
25489 (package
25490 (name "rust-serial-test")
25491 (version "0.4.0")
25492 (source
25493 (origin
25494 (method url-fetch)
25495 (uri (crate-uri "serial_test" version))
25496 (file-name
25497 (string-append name "-" version ".tar.gz"))
25498 (sha256
25499 (base32
25500 "1mkz246ax07nar0bmh3m98kl27lacja98vywi9cjqbsb8g3zgxgy"))))
25501 (build-system cargo-build-system)
25502 (arguments
25503 `(#:cargo-inputs
25504 (("rust-lazy-static" ,rust-lazy-static-1)
25505 ("rust-parking-lot" ,rust-parking-lot-0.10)
25506 ("rust-serial-test-derive" ,rust-serial-test-derive-0.4))))
25507 (home-page
25508 "https://github.com/palfrey/serial_test/")
25509 (synopsis "Serialising Rust tests")
25510 (description "Serialising Rust tests")
25511 (license license:expat)))
25512
25513 (define-public rust-servo-fontconfig-0.4
25514 (package
25515 (name "rust-servo-fontconfig")
25516 (version "0.4.0")
25517 (source
25518 (origin
25519 (method url-fetch)
25520 (uri (crate-uri "servo-fontconfig" version))
25521 (file-name
25522 (string-append name "-" version ".tar.gz"))
25523 (sha256
25524 (base32
25525 "1nach6s4hdf86jz5hlm4p5r7vin91cs7gg89mr533id5fpbzi250"))))
25526 (build-system cargo-build-system)
25527 (arguments
25528 `(#:cargo-inputs
25529 (("rust-libc" ,rust-libc-0.2)
25530 ("rust-servo-fontconfig-sys" ,rust-servo-fontconfig-sys-4))))
25531 (native-inputs
25532 `(("pkg-config" ,pkg-config)))
25533 (inputs
25534 `(("fontconfig" ,fontconfig)))
25535 (home-page "https://github.com/servo/rust-fontconfig/")
25536 (synopsis "Rust bindings for fontconfig")
25537 (description "This package provides Rust bindings for fontconfig.")
25538 (license (list license:expat license:asl2.0))))
25539
25540 (define-public rust-servo-fontconfig-sys-4
25541 (package
25542 (name "rust-servo-fontconfig-sys")
25543 (version "4.0.9")
25544 (source
25545 (origin
25546 (method url-fetch)
25547 (uri (crate-uri "servo-fontconfig-sys" version))
25548 (file-name
25549 (string-append name "-" version ".tar.gz"))
25550 (sha256
25551 (base32
25552 "0v0mbicy74wd6cjd5jyqnm4nvrrr5lmg053cn16kylhg8mkf3cv2"))
25553 (modules '((guix build utils)))
25554 (snippet
25555 '(begin
25556 (for-each delete-file-recursively
25557 (find-files "." "[^Cargo.toml,^build\\.rs]"))
25558 #t))))
25559 (build-system cargo-build-system)
25560 (arguments
25561 `(#:cargo-inputs
25562 (("rust-expat-sys" ,rust-expat-sys-2.1)
25563 ("rust-servo-freetype-sys" ,rust-servo-freetype-sys-4)
25564 ("rust-pkg-config" ,rust-pkg-config-0.3))))
25565 (native-inputs
25566 `(("pkg-config" ,pkg-config)))
25567 (inputs
25568 `(("fontconfig" ,fontconfig)))
25569 (home-page "https://crates.io/crates/servo-fontconfig-sys")
25570 (synopsis "Rust wrapper around Fontconfig")
25571 (description
25572 "This package provides a Rust wrapper around Fontxonfig.")
25573 (license license:mpl2.0))) ; build.rs is mpl2.0
25574
25575 (define-public rust-servo-freetype-sys-4
25576 (package
25577 (name "rust-servo-freetype-sys")
25578 (version "4.0.5")
25579 (source
25580 (origin
25581 (method url-fetch)
25582 (uri (crate-uri "servo-freetype-sys" version))
25583 (file-name
25584 (string-append name "-" version ".tar.gz"))
25585 (sha256
25586 (base32
25587 "1z0dvnakans4vn4vlpx4nxg984427lh8dskxxz9pglij1mnwnk1c"))
25588 (modules '((guix build utils)))
25589 (snippet
25590 '(begin (delete-file-recursively "freetype2") #t))))
25591 (build-system cargo-build-system)
25592 (arguments
25593 `(#:cargo-inputs
25594 (("rust-cmake" ,rust-cmake-0.1)
25595 ("rust-pkg-config" ,rust-pkg-config-0.3))))
25596 (native-inputs
25597 `(("pkg-config" ,pkg-config)))
25598 (inputs
25599 `(("freetype" ,freetype)))
25600 (home-page "http://www.freetype.org/")
25601 (synopsis "Rust wrapper around freetype")
25602 (description
25603 "This package provides a Rust wrapper around the FreeType library.")
25604 (license license:mpl2.0))) ; build.rs is mpl2.0
25605
25606 (define-public rust-sha-1-0.9
25607 (package
25608 (name "rust-sha-1")
25609 (version "0.9.1")
25610 (source
25611 (origin
25612 (method url-fetch)
25613 (uri (crate-uri "sha-1" version))
25614 (file-name
25615 (string-append name "-" version ".tar.gz"))
25616 (sha256
25617 (base32
25618 "0w37j7swjkbzgi9mf7ihkw0zfik6vl97fs6jdpqs6r68hvm3c2hp"))))
25619 (build-system cargo-build-system)
25620 (arguments
25621 `(#:cargo-inputs
25622 (("rust-block-buffer" ,rust-block-buffer-0.9)
25623 ("rust-cfg-if" ,rust-cfg-if-0.1)
25624 ("rust-cpuid-bool" ,rust-cpuid-bool-0.1)
25625 ("rust-digest" ,rust-digest-0.9)
25626 ("rust-libc" ,rust-libc-0.2)
25627 ("rust-opaque-debug" ,rust-opaque-debug-0.3)
25628 ("rust-sha1-asm" ,rust-sha1-asm-0.4))
25629 #:cargo-development-inputs
25630 (("rust-digest" ,rust-digest-0.9)
25631 ("rust-hex-literal" ,rust-hex-literal-0.2))))
25632 (home-page "https://github.com/RustCrypto/hashes")
25633 (synopsis "SHA-1 hash function")
25634 (description "SHA-1 hash function.")
25635 (license (list license:expat license:asl2.0))))
25636
25637 (define-public rust-sha-1-0.8
25638 (package
25639 (inherit rust-sha-1-0.9)
25640 (name "rust-sha-1")
25641 (version "0.8.2")
25642 (source
25643 (origin
25644 (method url-fetch)
25645 (uri (crate-uri "sha-1" version))
25646 (file-name
25647 (string-append name "-" version ".tar.gz"))
25648 (sha256
25649 (base32
25650 "1pv387q0r7llk2cqzyq0nivzvkgqgzsiygqzlv7b68z9xl5lvngp"))))
25651 (arguments
25652 `(#:cargo-inputs
25653 (("rust-block-buffer" ,rust-block-buffer-0.7)
25654 ("rust-digest" ,rust-digest-0.8)
25655 ("rust-fake-simd" ,rust-fake-simd-0.1)
25656 ("rust-opaque-debug" ,rust-opaque-debug-0.2)
25657 ("rust-libc" ,rust-libc-0.2)
25658 ("rust-sha1-asm" ,rust-sha1-asm-0.4))
25659 #:cargo-development-inputs
25660 (("rust-digest" ,rust-digest-0.8)
25661 ("rust-hex-literal" ,rust-hex-literal-0.1))))))
25662
25663 (define-public rust-sha1-0.6
25664 (package
25665 (name "rust-sha1")
25666 (version "0.6.0")
25667 (source
25668 (origin
25669 (method url-fetch)
25670 (uri (crate-uri "sha1" version))
25671 (file-name
25672 (string-append name "-" version ".tar.gz"))
25673 (sha256
25674 (base32
25675 "03gs2q4m67rn2p8xcdfxhip6mpgahdwm12bnb3vh90ahv9grhy95"))))
25676 (build-system cargo-build-system)
25677 (arguments
25678 `(#:skip-build? #t
25679 #:cargo-inputs
25680 (("rust-serde" ,rust-serde-1))
25681 #:cargo-development-inputs
25682 (("rust-openssl" ,rust-openssl-0.10)
25683 ("rust-rand" ,rust-rand-0.4)
25684 ("rust-serde-json" ,rust-serde-json-1))))
25685 (home-page "https://github.com/mitsuhiko/rust-sha1")
25686 (synopsis "Minimal implementation of SHA1 for Rust")
25687 (description
25688 "Minimal implementation of SHA1 for Rust.")
25689 (license license:bsd-3)))
25690
25691 (define-public rust-sha1-0.2
25692 (package
25693 (inherit rust-sha1-0.6)
25694 (name "rust-sha1")
25695 (version "0.2.0")
25696 (source
25697 (origin
25698 (method url-fetch)
25699 (uri (crate-uri "sha1" version))
25700 (file-name
25701 (string-append name "-" version ".tar.gz"))
25702 (sha256
25703 (base32
25704 "0p09zfhd27z6yr5in07gfjcx345010rw51ivlcf14364x3hv2c6c"))))
25705 (arguments
25706 `(#:cargo-development-inputs
25707 (("rust-openssl" ,rust-openssl-0.7)
25708 ("rust-rand" ,rust-rand-0.3))
25709 #:phases
25710 (modify-phases %standard-phases
25711 (add-after 'unpack 'fix-cargo-toml
25712 (lambda _
25713 (substitute* "Cargo.toml"
25714 ((", path =.*}") "}"))
25715 #t)))))
25716 (inputs
25717 `(("openssl" ,openssl-1.0))))) ; for openssl-sys-extras
25718
25719 (define-public rust-sha1-asm-0.4
25720 (package
25721 (name "rust-sha1-asm")
25722 (version "0.4.3")
25723 (source
25724 (origin
25725 (method url-fetch)
25726 (uri (crate-uri "sha1-asm" version))
25727 (file-name
25728 (string-append name "-" version ".tar.gz"))
25729 (sha256
25730 (base32
25731 "1i1i8viy6y30mv9v5hwhg9w6b722qkyh9c6n8bn4d27jpv14pg0s"))))
25732 (build-system cargo-build-system)
25733 (arguments
25734 `(#:cargo-inputs
25735 (("rust-cc" ,rust-cc-1))))
25736 (home-page "https://github.com/RustCrypto/asm-hashes")
25737 (synopsis "Assembly implementation of SHA-1 compression function")
25738 (description
25739 "Assembly implementation of SHA-1 compression function.")
25740 (license license:expat)))
25741
25742 (define-public rust-sha2-0.9
25743 (package
25744 (name "rust-sha2")
25745 (version "0.9.1")
25746 (source
25747 (origin
25748 (method url-fetch)
25749 (uri (crate-uri "sha2" version))
25750 (file-name
25751 (string-append name "-" version ".tar.gz"))
25752 (sha256
25753 (base32
25754 "1hdqrx2d9073hgf34y6ilgw6ni5vv3d5nmccyhkfm9zdvy6kfcr9"))))
25755 (build-system cargo-build-system)
25756 (arguments
25757 `(#:cargo-inputs
25758 (("rust-block-buffer" ,rust-block-buffer-0.9)
25759 ("rust-cfg-if" ,rust-cfg-if-0.1)
25760 ("rust-cpuid-bool" ,rust-cpuid-bool-0.1)
25761 ("rust-digest" ,rust-digest-0.9)
25762 ("rust-libc" ,rust-libc-0.2)
25763 ("rust-opaque-debug" ,rust-opaque-debug-0.3)
25764 ("rust-sha2-asm" ,rust-sha2-asm-0.5))
25765 #:cargo-development-inputs
25766 (("rust-digest" ,rust-digest-0.9)
25767 ("rust-hex-literal" ,rust-hex-literal-0.2))))
25768 (home-page "https://github.com/RustCrypto/hashes")
25769 (synopsis "SHA-2 hash functions")
25770 (description
25771 "This package provides a pure Rust implementation of the SHA-2 hash
25772 function family including SHA-224, SHA-256, SHA-384, and SHA-512.")
25773 (license (list license:expat license:asl2.0))))
25774
25775 (define-public rust-sha2-0.8
25776 (package
25777 (inherit rust-sha2-0.9)
25778 (name "rust-sha2")
25779 (version "0.8.2")
25780 (source
25781 (origin
25782 (method url-fetch)
25783 (uri (crate-uri "sha2" version))
25784 (file-name (string-append name "-" version ".tar.gz"))
25785 (sha256
25786 (base32 "0s9yddvyg6anaikdl86wmwfim25c0d4m0xq0y2ghs34alxpg8mm2"))))
25787 (arguments
25788 `(#:cargo-inputs
25789 (("rust-block-buffer" ,rust-block-buffer-0.7)
25790 ("rust-digest" ,rust-digest-0.8)
25791 ("rust-fake-simd" ,rust-fake-simd-0.1)
25792 ("rust-libc" ,rust-libc-0.2)
25793 ("rust-opaque-debug" ,rust-opaque-debug-0.2)
25794 ("rust-sha2-asm" ,rust-sha2-asm-0.5))
25795 #:cargo-development-inputs
25796 (("rust-digest" ,rust-digest-0.8)
25797 ("rust-hex-literal" ,rust-hex-literal-0.1))))))
25798
25799 (define-public rust-sha2-asm-0.5
25800 (package
25801 (name "rust-sha2-asm")
25802 (version "0.5.4")
25803 (source
25804 (origin
25805 (method url-fetch)
25806 (uri (crate-uri "sha2-asm" version))
25807 (file-name (string-append name "-" version ".tar.gz"))
25808 (sha256
25809 (base32 "0y4n8r4362y2fa6p2j0dgny4zfi194gdf01l6j850n9vf8ha3kwj"))))
25810 (build-system cargo-build-system)
25811 (arguments
25812 `(#:cargo-inputs
25813 (("rust-cc" ,rust-cc-1)))) ;; build dependency
25814 (home-page "https://github.com/RustCrypto/asm-hashes")
25815 (synopsis "Assembly implementation of SHA-2")
25816 (description "This package provides an assembly implementations of hash
25817 functions core functionality.")
25818 (license license:expat)))
25819
25820 (define-public rust-shader-version-0.6
25821 (package
25822 (name "rust-shader-version")
25823 (version "0.6.0")
25824 (source
25825 (origin
25826 (method url-fetch)
25827 (uri (crate-uri "shader_version" version))
25828 (file-name
25829 (string-append name "-" version ".tar.gz"))
25830 (sha256
25831 (base32
25832 "1yk651xc9irl3pl0rlplypzyzy44d0j03ji0j7hjjdjknwzpi3j7"))))
25833 (build-system cargo-build-system)
25834 (arguments
25835 `(#:skip-build? #t
25836 #:cargo-inputs
25837 (("rust-piston-graphics-api-version"
25838 ,rust-piston-graphics-api-version-0.2))))
25839 (home-page "https://github.com/pistondevelopers/shader_version")
25840 (synopsis
25841 "Helper library for detecting and picking compatible shaders")
25842 (description "This package provides a helper library for detecting and
25843 picking compatible shaders.")
25844 (license license:expat)))
25845
25846 (define-public rust-shared-child-0.3
25847 (package
25848 (name "rust-shared-child")
25849 (version "0.3.4")
25850 (source
25851 (origin
25852 (method url-fetch)
25853 (uri (crate-uri "shared-child" version))
25854 (file-name
25855 (string-append name "-" version ".tar.gz"))
25856 (sha256
25857 (base32
25858 "1lmjmr7931dr9cpalw2n7ss4i9mnl7285j2dygxflk9y80xczswc"))))
25859 (build-system cargo-build-system)
25860 (arguments
25861 `(#:skip-build? #t
25862 #:cargo-inputs
25863 (("rust-libc" ,rust-libc-0.2)
25864 ("rust-winapi" ,rust-winapi-0.3))))
25865 (home-page "https://github.com/oconnor663/shared_child.rs")
25866 (synopsis "Use child processes from multiple threads")
25867 (description
25868 "A library for using child processes from multiple threads.")
25869 (license license:expat)))
25870
25871 (define-public rust-shared-library-0.1
25872 (package
25873 (name "rust-shared-library")
25874 (version "0.1.9")
25875 (source
25876 (origin
25877 (method url-fetch)
25878 (uri (crate-uri "shared_library" version))
25879 (file-name
25880 (string-append name "-" version ".tar.gz"))
25881 (sha256
25882 (base32
25883 "04fs37kdak051hm524a360978g58ayrcarjsbf54vqps5c7px7js"))))
25884 (build-system cargo-build-system)
25885 (arguments
25886 `(#:cargo-inputs
25887 (("rust-lazy-static" ,rust-lazy-static-1)
25888 ("rust-libc" ,rust-libc-0.2))))
25889 (home-page "https://github.com/tomaka/shared_library/")
25890 (synopsis "Bind to and load shared libraries")
25891 (description
25892 "This package allows easy binding to, and loading of, shared libraries.")
25893 (license (list license:asl2.0 license:expat))))
25894
25895 (define-public rust-shell-escape-0.1
25896 (package
25897 (name "rust-shell-escape")
25898 (version "0.1.4")
25899 (source
25900 (origin
25901 (method url-fetch)
25902 (uri (crate-uri "shell-escape" version))
25903 (file-name
25904 (string-append name "-" version ".tar.gz"))
25905 (sha256
25906 (base32
25907 "1fgs1iyx3b124b7njjmhfn9q5ipmhxrafavh8mxbfl9a9zk162hp"))))
25908 (build-system cargo-build-system)
25909 (home-page "https://github.com/sfackler/shell-escape")
25910 (synopsis
25911 "Escape characters that may have a special meaning in a shell")
25912 (description
25913 "Escape characters that may have a special meaning in a shell.")
25914 (license (list license:asl2.0 license:expat))))
25915
25916 (define-public rust-shell-words-0.1
25917 (package
25918 (name "rust-shell-words")
25919 (version "0.1.0")
25920 (source
25921 (origin
25922 (method url-fetch)
25923 (uri (crate-uri "shell-words" version))
25924 (file-name
25925 (string-append name "-" version ".tar.gz"))
25926 (sha256
25927 (base32
25928 "0jnrw3f174974fsi2hg48l0klpy24767ib28w0xcvi2ll5axxb1r"))))
25929 (build-system cargo-build-system)
25930 (home-page "https://github.com/tmiasko/shell-words")
25931 (synopsis
25932 "Process command line according to parsing rules of UNIX shell")
25933 (description
25934 "Process command line according to parsing rules of UNIX shell.")
25935 (license (list license:expat license:asl2.0))))
25936
25937 (define-public rust-shlex-0.1
25938 (package
25939 (name "rust-shlex")
25940 (version "0.1.1")
25941 (source
25942 (origin
25943 (method url-fetch)
25944 (uri (crate-uri "shlex" version))
25945 (file-name (string-append name "-" version ".crate"))
25946 (sha256
25947 (base32
25948 "1lmv6san7g8dv6jdfp14m7bdczq9ss7j7bgsfqyqjc3jnjfippvz"))))
25949 (build-system cargo-build-system)
25950 (home-page "https://github.com/comex/rust-shlex")
25951 (synopsis "Split a string into shell words, like Python's shlex")
25952 (description "This crate provides a method to split a string into shell
25953 words, like Python's shlex.")
25954 (license (list license:asl2.0
25955 license:expat))))
25956
25957 (define-public rust-signal-hook-0.1
25958 (package
25959 (name "rust-signal-hook")
25960 (version "0.1.13")
25961 (source
25962 (origin
25963 (method url-fetch)
25964 (uri (crate-uri "signal-hook" version))
25965 (file-name
25966 (string-append name "-" version ".tar.gz"))
25967 (sha256
25968 (base32
25969 "0b0yh6hlb5hs5kq6adyk0bn168y1ncymxvlizlygaabad2hz7f8h"))))
25970 (build-system cargo-build-system)
25971 (arguments
25972 `(#:cargo-inputs
25973 (("rust-futures" ,rust-futures-0.1)
25974 ("rust-libc" ,rust-libc-0.2)
25975 ("rust-mio" ,rust-mio-0.6)
25976 ("rust-mio-uds" ,rust-mio-uds-0.6)
25977 ("rust-signal-hook-registry" ,rust-signal-hook-registry-1)
25978 ("rust-tokio-reactor" ,rust-tokio-reactor-0.1))
25979 #:cargo-development-inputs
25980 (("rust-tokio" ,rust-tokio-0.1)
25981 ("rust-version-sync" ,rust-version-sync-0.8))))
25982 (home-page "https://github.com/vorner/signal-hook")
25983 (synopsis "Unix signal handling")
25984 (description "Unix signal handling.")
25985 (license (list license:asl2.0 license:expat))))
25986
25987 (define-public rust-signal-hook-registry-1
25988 (package
25989 (name "rust-signal-hook-registry")
25990 (version "1.2.0")
25991 (source
25992 (origin
25993 (method url-fetch)
25994 (uri (crate-uri "signal-hook-registry" version))
25995 (file-name
25996 (string-append name "-" version ".tar.gz"))
25997 (sha256
25998 (base32
25999 "0haz828bif1lbp3alx17zkcy5hwy15bbpmvks72j8iznx7npix4l"))))
26000 (build-system cargo-build-system)
26001 (arguments
26002 `(#:cargo-inputs
26003 (("rust-arc-swap" ,rust-arc-swap-0.4)
26004 ("rust-libc" ,rust-libc-0.2))
26005 #:cargo-development-inputs
26006 (("rust-signal-hook" ,rust-signal-hook-0.1)
26007 ("rust-version-sync" ,rust-version-sync-0.8))))
26008 (home-page "https://github.com/vorner/signal-hook")
26009 (synopsis "Backend crate for signal-hook")
26010 (description "Backend crate for signal-hook.")
26011 (license (list license:asl2.0 license:expat))))
26012
26013 (define-public rust-simba-0.1
26014 (package
26015 (name "rust-simba")
26016 (version "0.1.5")
26017 (source
26018 (origin
26019 (method url-fetch)
26020 (uri (crate-uri "simba" version))
26021 (file-name
26022 (string-append name "-" version ".tar.gz"))
26023 (sha256
26024 (base32
26025 "1chz3abrvrj4qz86gwrrzajsl5zcc2l0dhxi39mymbgscw9ip4zv"))))
26026 (build-system cargo-build-system)
26027 (arguments
26028 `(#:cargo-inputs
26029 (("rust-approx" ,rust-approx-0.3)
26030 ("rust-cordic" ,rust-cordic-0.1)
26031 ("rust-decimal" ,rust-decimal-2.0)
26032 ("rust-fixed" ,rust-fixed-1)
26033 ("rust-num-complex" ,rust-num-complex-0.2)
26034 ("rust-num-traits" ,rust-num-traits-0.2)
26035 ("rust-packed-simd" ,rust-packed-simd-0.3)
26036 ("rust-paste" ,rust-paste-0.1)
26037 ("rust-rand" ,rust-rand-0.7)
26038 ("rust-wide" ,rust-wide-0.4))))
26039 (home-page "https://github.com/dimforge/simba")
26040 (synopsis "SIMD algebra for Rust")
26041 (description "This package provides a set of mathematical traits to
26042 facilitate the use of SIMD-based @dfn{Array of Struct of Array} (AoSoA) storage
26043 pattern in Rust.")
26044 (license license:bsd-3)))
26045
26046 (define-public rust-simd-0.2
26047 (package
26048 (name "rust-simd")
26049 (version "0.2.4")
26050 (source
26051 (origin
26052 (method url-fetch)
26053 (uri (crate-uri "simd" version))
26054 (file-name
26055 (string-append name "-" version ".tar.gz"))
26056 (sha256
26057 (base32
26058 "1dgpmfzd4favsckd5m0p6bna1dcgw19hjigkqcgwfhc4d05hxczj"))))
26059 (build-system cargo-build-system)
26060 (arguments
26061 `(#:skip-build? #t ; Crate no longer builds on Rust 1.33+
26062 #:cargo-inputs
26063 (("rust-serde" ,rust-serde-1)
26064 ("rust-serde-derive" ,rust-serde-derive-1))
26065 #:cargo-development-inputs
26066 (("rust-cfg-if" ,rust-cfg-if-0.1))))
26067 (home-page "https://github.com/hsivonen/simd")
26068 (synopsis "Limited cross-platform access to SIMD instructions on CPUs")
26069 (description
26070 "@code{simd} offers limited cross-platform access to SIMD instructions on
26071 CPUs, as well as raw interfaces to platform-specific instructions.
26072 (To be obsoleted by the @code{std::simd} implementation RFC 2366.)
26073 ")
26074 (license (list license:expat license:asl2.0))))
26075
26076 (define-public rust-simd-0.1
26077 (package
26078 (inherit rust-simd-0.2)
26079 (name "rust-simd")
26080 (version "0.1.1")
26081 (source
26082 (origin
26083 (method url-fetch)
26084 (uri (crate-uri "simd" version))
26085 (file-name
26086 (string-append name "-" version ".tar.gz"))
26087 (sha256
26088 (base32
26089 "08vhhz1w5m7amfp1d9lvfyyzl0jqjm82hrr7fb7afv3n5my89db3"))))
26090 (arguments
26091 `(#:skip-build? #t
26092 #:cargo-inputs
26093 (("rust-serde" ,rust-serde-0.4)
26094 ("rust-serde-macros" ,rust-serde-macros-0.4))
26095 #:cargo-development-inputs
26096 (("rust-cfg-if" ,rust-cfg-if-0.1))))))
26097
26098 (define-public rust-simd-helpers-0.1
26099 (package
26100 (name "rust-simd-helpers")
26101 (version "0.1.0")
26102 (source
26103 (origin
26104 (method url-fetch)
26105 (uri (crate-uri "simd_helpers" version))
26106 (file-name
26107 (string-append name "-" version ".tar.gz"))
26108 (sha256
26109 (base32
26110 "19idqicn9k4vhd04ifh2ff41wvna79zphdf2c81rlmpc7f3hz2cm"))))
26111 (build-system cargo-build-system)
26112 (arguments
26113 `(#:skip-build? #t
26114 #:cargo-inputs
26115 (("rust-quote" ,rust-quote-1))))
26116 (home-page "https://github.com/lu-zero/simd_helpers")
26117 (synopsis "Helpers to write more compact simd code")
26118 (description
26119 "This package provides helpers to write more compact simd code.")
26120 (license license:expat)))
26121
26122 (define-public rust-siphasher-0.3
26123 (package
26124 (name "rust-siphasher")
26125 (version "0.3.2")
26126 (source
26127 (origin
26128 (method url-fetch)
26129 (uri (crate-uri "siphasher" version))
26130 (file-name
26131 (string-append name "-" version ".tar.gz"))
26132 (sha256
26133 (base32
26134 "08xvk3yi4vawppm1f81s4zrkksf95psz8gczh36y808candgi24f"))))
26135 (build-system cargo-build-system)
26136 (arguments
26137 `(#:skip-build? #t
26138 #:cargo-inputs
26139 (("rust-serde" ,rust-serde-1))))
26140 (home-page "https://docs.rs/siphasher")
26141 (synopsis "SipHash-2-4, SipHash-1-3 and 128-bit variants in pure Rust")
26142 (description "This package provides SipHash-2-4, SipHash-1-3 and 128-bit
26143 variants in pure Rust.")
26144 (license (list license:expat license:asl2.0))))
26145
26146 (define-public rust-siphasher-0.2
26147 (package
26148 (name "rust-siphasher")
26149 (version "0.2.3")
26150 (source
26151 (origin
26152 (method url-fetch)
26153 (uri (crate-uri "siphasher" version))
26154 (file-name
26155 (string-append name "-" version ".tar.gz"))
26156 (sha256
26157 (base32
26158 "1b53m53l24lyhr505lwqzrpjyq5qfnic71mynrcfvm43rybf938b"))))
26159 (build-system cargo-build-system)
26160 (home-page "https://docs.rs/siphasher")
26161 (synopsis "SipHash functions from rust-core < 1.13")
26162 (description
26163 "SipHash functions from rust-core < 1.13.")
26164 (license (list license:asl2.0 license:expat))))
26165
26166 (define-public rust-skeptic-0.9
26167 (package
26168 (name "rust-skeptic")
26169 (version "0.9.0")
26170 (source
26171 (origin
26172 (method url-fetch)
26173 (uri (crate-uri "skeptic" version))
26174 (file-name (string-append name "-" version ".tar.gz"))
26175 (sha256
26176 (base32 "0savk91xy74izw9z6vn6ialkaqrp81w7dayha801b52h670qszfx"))))
26177 (build-system cargo-build-system)
26178 (arguments
26179 `(#:cargo-inputs
26180 (("rust-pulldown-cmark" ,rust-pulldown-cmark-0.0.8)
26181 ("rust-tempdir" ,rust-tempdir-0.3))))
26182 (home-page "https://github.com/budziq/rust-skeptic")
26183 (synopsis "Test your Rust markdown documentation via Cargo")
26184 (description "Test your Rust markdown documentation via Cargo")
26185 (license (list license:expat license:asl2.0))))
26186
26187 (define-public rust-skeptic-0.13
26188 (package
26189 (name "rust-skeptic")
26190 (version "0.13.4")
26191 (source
26192 (origin
26193 (method url-fetch)
26194 (uri (crate-uri "skeptic" version))
26195 (file-name
26196 (string-append name "-" version ".tar.gz"))
26197 (sha256
26198 (base32
26199 "0rai61hbs65nbvbhqlk1nap5hlav5qx3zmjjjzh9rhgxagc8xyyn"))))
26200 (build-system cargo-build-system)
26201 (arguments
26202 `(#:skip-build? #t
26203 #:cargo-inputs
26204 (("rust-error-chain" ,rust-error-chain-0.12)
26205 ("rust-pulldown-cmark" ,rust-pulldown-cmark-0.2)
26206 ("rust-glob" ,rust-glob-0.2)
26207 ("rust-tempdir" ,rust-tempdir-0.3)
26208 ("rust-bytecount" ,rust-bytecount-0.4)
26209 ("rust-cargo-metadata" ,rust-cargo-metadata-0.6)
26210 ("rust-serde-json" ,rust-serde-json-1)
26211 ("rust-walkdir" ,rust-walkdir-2))))
26212 (home-page "https://github.com/budziq/rust-skeptic")
26213 (synopsis "Test your Rust markdown documentation via Cargo")
26214 (description
26215 "Test your Rust markdown documentation via Cargo.")
26216 (license (list license:expat license:asl2.0))))
26217
26218 (define-public rust-slab-0.4
26219 (package
26220 (name "rust-slab")
26221 (version "0.4.2")
26222 (source
26223 (origin
26224 (method url-fetch)
26225 (uri (crate-uri "slab" version))
26226 (file-name (string-append name "-" version ".crate"))
26227 (sha256
26228 (base32
26229 "1y59xsa27jk84sxzswjk60xcjf8b4fm5960jwpznrrcmasyva4f1"))))
26230 (build-system cargo-build-system)
26231 (home-page "https://github.com/carllerche/slab")
26232 (synopsis "Pre-allocated storage for a uniform data type")
26233 (description "This create provides a pre-allocated storage for a uniform
26234 data type.")
26235 (license license:expat)))
26236
26237 (define-public rust-sleef-sys-0.1
26238 (package
26239 (name "rust-sleef-sys")
26240 (version "0.1.2")
26241 (source
26242 (origin
26243 (method url-fetch)
26244 (uri (crate-uri "sleef-sys" version))
26245 (file-name
26246 (string-append name "-" version ".tar.gz"))
26247 (sha256
26248 (base32
26249 "1881q2yc17j2m1yvh01447c93ws1mspnrj3k2nbvwbvcm8z81kkv"))))
26250 (build-system cargo-build-system)
26251 (arguments
26252 `(#:skip-build? #t
26253 #:cargo-inputs
26254 (("rust-cfg-if" ,rust-cfg-if-0.1)
26255 ("rust-libc" ,rust-libc-0.2))
26256 #:cargo-development-inputs
26257 (("rust-bindgen" ,rust-bindgen-0.50)
26258 ("rust-cmake" ,rust-cmake-0.1)
26259 ("rust-env-logger" ,rust-env-logger-0.6))))
26260 (home-page "https://github.com/gnzlbg/sleef-sys")
26261 (synopsis
26262 "Rust FFI bindings to the SLEEF Vectorized Math Library")
26263 (description
26264 "Rust FFI bindings to the SLEEF Vectorized Math Library.")
26265 (license (list license:asl2.0 license:expat))))
26266
26267 (define-public rust-slog-2
26268 (package
26269 (name "rust-slog")
26270 (version "2.5.2")
26271 (source
26272 (origin
26273 (method url-fetch)
26274 (uri (crate-uri "slog" version))
26275 (file-name
26276 (string-append name "-" version ".tar.gz"))
26277 (sha256
26278 (base32
26279 "16bv6zrdn1sm315vbnia02g31xvsmbjyz5gv3z0vrgxdli0cdj8w"))))
26280 (build-system cargo-build-system)
26281 (arguments
26282 `(#:skip-build? #t
26283 #:cargo-inputs
26284 (("rust-erased-serde" ,rust-erased-serde-0.3))))
26285 (home-page "https://github.com/slog-rs/slog")
26286 (synopsis "Structured, extensible, composable logging for Rust")
26287 (description
26288 "This package provides structured, extensible, composable logging for Rust.")
26289 (license
26290 (list license:mpl2.0
26291 license:expat
26292 license:asl2.0))))
26293
26294 (define-public rust-smallvec-1
26295 (package
26296 (name "rust-smallvec")
26297 (version "1.4.1")
26298 (source
26299 (origin
26300 (method url-fetch)
26301 (uri (crate-uri "smallvec" version))
26302 (file-name
26303 (string-append name "-" version ".tar.gz"))
26304 (sha256
26305 (base32
26306 "0gqgmbfj8228lc55xxg331flizzwq6hfyy6gw4j2y6hni6fwnmrp"))))
26307 (build-system cargo-build-system)
26308 (arguments
26309 `(#:cargo-inputs
26310 (("rust-serde" ,rust-serde-1))
26311 #:cargo-development-inputs
26312 (("rust-bincode" ,rust-bincode-1))))
26313 (home-page "https://github.com/servo/rust-smallvec")
26314 (synopsis "Small vector optimization")
26315 (description
26316 "'Small vector' optimization: store up to a small number of items on the
26317 stack.")
26318 (license (list license:expat license:asl2.0))))
26319
26320 (define-public rust-smallvec-0.6
26321 (package
26322 (inherit rust-smallvec-1)
26323 (name "rust-smallvec")
26324 (version "0.6.13")
26325 (source
26326 (origin
26327 (method url-fetch)
26328 (uri (crate-uri "smallvec" version))
26329 (file-name
26330 (string-append name "-" version ".tar.gz"))
26331 (sha256
26332 (base32
26333 "1dl219vnfkmsfx28lm3f83lyw24zap6fdsli6rg8nnp1aa67bc7p"))))
26334 (arguments
26335 `(#:cargo-inputs
26336 (("rust-maybe-uninit" ,rust-maybe-uninit-2.0)
26337 ("rust-serde" ,rust-serde-1))
26338 #:cargo-development-inputs
26339 (("rust-bincode" ,rust-bincode-1))))))
26340
26341 (define-public rust-socket2-0.3
26342 (package
26343 (name "rust-socket2")
26344 (version "0.3.11")
26345 (source
26346 (origin
26347 (method url-fetch)
26348 (uri (crate-uri "socket2" version))
26349 (file-name (string-append name "-" version ".crate"))
26350 (sha256
26351 (base32
26352 "11bdcz04i106g4q7swkll0qxrb4287srqd2k3aq2q6i22zjlvdz8"))))
26353 (build-system cargo-build-system)
26354 (arguments
26355 `(#:tests? #f ; tests require network access
26356 #:cargo-inputs
26357 (("rust-cfg-if" ,rust-cfg-if-0.1)
26358 ("rust-libc" ,rust-libc-0.2)
26359 ("rust-redox-syscall" ,rust-redox-syscall-0.1)
26360 ("rust-winapi" ,rust-winapi-0.3))
26361 #:cargo-development-inputs
26362 (("rust-tempdir" ,rust-tempdir-0.3))))
26363 (home-page "https://github.com/alexcrichton/socket2-rs")
26364 (synopsis "Networking sockets in Rust")
26365 (description
26366 "This package provides utilities for handling networking sockets with a
26367 maximal amount of configuration possible intended.")
26368 (license (list license:asl2.0
26369 license:expat))))
26370
26371 (define-public rust-socks-0.3
26372 (package
26373 (name "rust-socks")
26374 (version "0.3.2")
26375 (source
26376 (origin
26377 (method url-fetch)
26378 (uri (crate-uri "socks" version))
26379 (file-name
26380 (string-append name "-" version ".tar.gz"))
26381 (sha256
26382 (base32
26383 "1hnbw4c4j7dn9n3bd1v7ddkdzlxlzkfw3z29da1nxlj6jgx4r9p6"))))
26384 (build-system cargo-build-system)
26385 (arguments
26386 `(#:tests? #f ; Tests require network connection.
26387 #:cargo-inputs
26388 (("rust-byteorder" ,rust-byteorder-1)
26389 ("rust-libc" ,rust-libc-0.2)
26390 ("rust-winapi" ,rust-winapi-0.2)
26391 ("rust-ws2-32-sys" ,rust-ws2-32-sys-0.2))))
26392 (home-page "https://github.com/sfackler/rust-socks")
26393 (synopsis "Rust SOCKS proxy clients")
26394 (description
26395 "You can write SOCKS proxy clients with this crate.")
26396 (license (list license:asl2.0 license:expat))))
26397
26398 (define-public rust-sourcefile-0.1
26399 (package
26400 (name "rust-sourcefile")
26401 (version "0.1.4")
26402 (source
26403 (origin
26404 (method url-fetch)
26405 (uri (crate-uri "sourcefile" version))
26406 (file-name (string-append name "-" version ".crate"))
26407 (sha256
26408 (base32
26409 "1lwa6973zs4bgj29my7agfjgk4nw9hp6j7dfnr13nid85fw7rxsb"))))
26410 (build-system cargo-build-system)
26411 (arguments
26412 `(#:cargo-development-inputs
26413 (("rust-tempfile" ,rust-tempfile-3))))
26414 (home-page "https://github.com/derekdreery/sourcefile-rs")
26415 (synopsis "Concatenate source from multiple files")
26416 (description
26417 "A library for concatenating source from multiple files, whilst keeping
26418 track of where each new file and line starts.")
26419 (license (list license:asl2.0
26420 license:expat))))
26421
26422 (define-public rust-sourcemap-6
26423 (package
26424 (name "rust-sourcemap")
26425 (version "6.0.1")
26426 (source
26427 (origin
26428 (method url-fetch)
26429 (uri (crate-uri "sourcemap" version))
26430 (file-name (string-append name "-" version ".tar.gz"))
26431 (sha256
26432 (base32
26433 "1sv1rxc6d2rfvd5xrqzqq0i2y0z1q7sqj3wm9krxbggcccj1y0vf"))
26434 (modules '((guix build utils)))
26435 (snippet
26436 '(begin
26437 ;; Enable unstable features
26438 (substitute* "src/lib.rs"
26439 (("//! This library" all)
26440 (string-append "#![feature(inner_deref)]" "\n" all)))
26441 #t))))
26442 (build-system cargo-build-system)
26443 (arguments
26444 `(#:cargo-inputs
26445 (("rust-base64" ,rust-base64-0.11)
26446 ("rust-if-chain" ,rust-if-chain-1)
26447 ("rust-lazy-static" ,rust-lazy-static-1)
26448 ("rust-regex" ,rust-regex-1)
26449 ("rust-scroll" ,rust-scroll-0.10)
26450 ("rust-serde" ,rust-serde-1)
26451 ("rust-serde-json" ,rust-serde-json-1)
26452 ("rust-url" ,rust-url-2))
26453 #:cargo-development-inputs
26454 (("rust-rustc-version" ,rust-rustc-version-0.2))
26455 #:phases
26456 (modify-phases %standard-phases
26457 (add-after 'unpack 'enable-unstable-features
26458 (lambda _
26459 (setenv "RUSTC_BOOTSTRAP" "1")
26460 #t)))))
26461 (home-page "https://github.com/getsentry/rust-sourcemap")
26462 (synopsis "Basic sourcemap handling for Rust")
26463 (description "This package provides basic sourcemap handling for Rust.")
26464 (license license:bsd-3)))
26465
26466 (define-public rust-speculate-0.1
26467 (package
26468 (name "rust-speculate")
26469 (version "0.1.2")
26470 (source
26471 (origin
26472 (method url-fetch)
26473 (uri (crate-uri "speculate" version))
26474 (file-name
26475 (string-append name "-" version ".tar.gz"))
26476 (sha256
26477 (base32
26478 "0ph01n3fqkmnfr1wd13dqsi4znv06xy6p4h3hqqdzk81r0r5vd1w"))))
26479 (build-system cargo-build-system)
26480 (arguments
26481 `(#:skip-build? #t
26482 #:cargo-inputs
26483 (("rust-proc-macro2" ,rust-proc-macro2-0.4)
26484 ("rust-quote" ,rust-quote-1)
26485 ("rust-syn" ,rust-syn-0.15)
26486 ("rust-unicode-xid" ,rust-unicode-xid-0.1))))
26487 (home-page "https://github.com/utkarshkukreti/speculate.rs")
26488 (synopsis "RSpec inspired testing framework for Rust")
26489 (description
26490 "An RSpec inspired minimal testing framework for Rust.")
26491 (license license:expat)))
26492
26493 (define-public rust-spin-0.5
26494 (package
26495 (name "rust-spin")
26496 (version "0.5.2")
26497 (source
26498 (origin
26499 (method url-fetch)
26500 (uri (crate-uri "spin" version))
26501 (file-name (string-append name "-" version ".crate"))
26502 (sha256
26503 (base32
26504 "0b84m6dbzrwf2kxylnw82d3dr8w06av7rfkr8s85fb5f43rwyqvf"))))
26505 (build-system cargo-build-system)
26506 (home-page "https://github.com/mvdnes/spin-rs")
26507 (synopsis "Synchronization primitives based on spinning")
26508 (description "This crate provides synchronization primitives based on
26509 spinning. They may contain data, are usable without @code{std},and static
26510 initializers are available.")
26511 (license license:expat)))
26512
26513 (define-public rust-spin-0.4
26514 (package
26515 (inherit rust-spin-0.5)
26516 (name "rust-spin")
26517 (version "0.4.10")
26518 (source
26519 (origin
26520 (method url-fetch)
26521 (uri (crate-uri "spin" version))
26522 (file-name
26523 (string-append name "-" version ".tar.gz"))
26524 (sha256
26525 (base32
26526 "07ywqn1vrpi3c43fmvsx7pawk9h3rb77yyqbnhap2micl454kb6f"))))
26527 (arguments '(#:skip-build? #t))))
26528
26529 (define-public rust-spmc-0.3
26530 (package
26531 (name "rust-spmc")
26532 (version "0.3.0")
26533 (source
26534 (origin
26535 (method url-fetch)
26536 (uri (crate-uri "spmc" version))
26537 (file-name (string-append name "-" version ".tar.gz"))
26538 (sha256
26539 (base32 "1rgcqgj6b3d0cshi7277akr2xk0cx11rkmviaahy7a3pla6l5a02"))))
26540 (build-system cargo-build-system)
26541 (arguments
26542 `(#:tests? #f ;; tests hang
26543 #:cargo-development-inputs
26544 (("rust-loom" ,rust-loom-0.2))))
26545 (home-page "https://github.com/seanmonstar/spmc")
26546 (synopsis "Simple SPMC channel")
26547 (description "Simple SPMC channel")
26548 (license (list license:expat license:asl2.0))))
26549
26550 (define-public rust-spsc-buffer-0.1
26551 (package
26552 (name "rust-spsc-buffer")
26553 (version "0.1.1")
26554 (source
26555 (origin
26556 (method url-fetch)
26557 (uri (crate-uri "spsc-buffer" version))
26558 (file-name
26559 (string-append name "-" version ".tar.gz"))
26560 (sha256
26561 (base32
26562 "0fsv5zpxkax2n46flxhyajq1yblgh8f33la39gp86hksqcwkyv5y"))))
26563 (build-system cargo-build-system)
26564 (arguments
26565 `(#:cargo-development-inputs
26566 (("rust-criterion" ,rust-criterion-0.2))))
26567 (home-page "https://github.com/davidhewitt/spsc-buffer")
26568 (synopsis "Single-producer single-consumer lock-free buffer")
26569 (description
26570 "This package provides a single-producer single-consumer lock-free buffer.")
26571 (license license:expat)))
26572
26573 (define-public rust-st-map-0.1
26574 (package
26575 (name "rust-st-map")
26576 (version "0.1.4")
26577 (source
26578 (origin
26579 (method url-fetch)
26580 (uri (crate-uri "st-map" version))
26581 (file-name (string-append name "-" version ".tar.gz"))
26582 (sha256
26583 (base32
26584 "1l820pisfi134v3wy0na480wl7rf69kgxzvmgc560ngqb0xb3biw"))))
26585 (build-system cargo-build-system)
26586 (arguments
26587 `(#:cargo-inputs
26588 (("rust-arrayvec" ,rust-arrayvec-0.5)
26589 ("rust-static-map-macro" ,rust-static-map-macro-0.2))))
26590 (home-page "https://github.com/kdy1/rust-static-map")
26591 (synopsis "Runtime for a stack-alocated map")
26592 (description "This package provides a runtime for a stack-alocated map.")
26593 (license license:expat)))
26594
26595 (define-public rust-stable-deref-trait-1
26596 (package
26597 (name "rust-stable-deref-trait")
26598 (version "1.2.0")
26599 (source
26600 (origin
26601 (method url-fetch)
26602 (uri (crate-uri "stable_deref_trait" version))
26603 (file-name (string-append name "-" version ".tar.gz"))
26604 (sha256
26605 (base32
26606 "1lxjr8q2n534b2lhkxd6l6wcddzjvnksi58zv11f9y0jjmr15wd8"))))
26607 (build-system cargo-build-system)
26608 (home-page "https://github.com/storyyeller/stable_deref_trait0")
26609 (synopsis "Defines an unsafe marker trait, StableDeref")
26610 (description
26611 "This crate defines an unsafe marker trait, StableDeref, for container
26612 types which deref to a fixed address which is valid even when the containing
26613 type is moved. For example, Box, Vec, Rc, Arc and String implement this trait.
26614 Additionally, it defines CloneStableDeref for types like Rc where clones deref
26615 to the same address.")
26616 (license (list license:asl2.0
26617 license:expat))))
26618
26619 (define-public rust-stacker-0.1
26620 (package
26621 (name "rust-stacker")
26622 (version "0.1.6")
26623 (source
26624 (origin
26625 (method url-fetch)
26626 (uri (crate-uri "stacker" version))
26627 (file-name (string-append name "-" version ".crate"))
26628 (sha256
26629 (base32
26630 "12igajfgqz96c7vcwi91xdfsphawik6g36ndlglqih0a7bqw8vyr"))))
26631 (build-system cargo-build-system)
26632 (arguments
26633 `(#:cargo-inputs
26634 (("rust-cfg-if" ,rust-cfg-if-0.1)
26635 ("rust-libc" ,rust-libc-0.2)
26636 ("rust-psm" ,rust-psm-0.1)
26637 ("rust-winapi" ,rust-winapi-0.3))
26638 #:cargo-development-inputs
26639 (("rust-cc" ,rust-cc-1))))
26640 (home-page "https://github.com/rust-lang/stacker")
26641 (synopsis "Manual segmented stacks for Rust")
26642 (description
26643 "This package provides a stack growth library useful when implementing
26644 deeply recursive algorithms that may accidentally blow the stack.")
26645 (license (list license:asl2.0
26646 license:expat))))
26647
26648 (define-public rust-stackvector-1.0
26649 (package
26650 (name "rust-stackvector")
26651 (version "1.0.6")
26652 (source
26653 (origin
26654 (method url-fetch)
26655 (uri (crate-uri "stackvector" version))
26656 (file-name
26657 (string-append name "-" version ".tar.gz"))
26658 (sha256
26659 (base32
26660 "1bv820fhdad16islwli1g3iksk39ivf0zaqz4j1m08vq15jjaiqw"))))
26661 (build-system cargo-build-system)
26662 (arguments
26663 `(#:skip-build? #t
26664 #:cargo-inputs
26665 (("rust-unreachable" ,rust-unreachable-1.0))
26666 #:cargo-development-inputs
26667 (("rust-rustc-version" ,rust-rustc-version-0.2))))
26668 (home-page "https://github.com/Alexhuszagh/rust-stackvector")
26669 (synopsis "Vector-like facade for stack-allocated arrays")
26670 (description
26671 "StackVec: vector-like facade for stack-allocated arrays.")
26672 (license (list license:asl2.0 license:expat))))
26673
26674 (define-public rust-standback-0.2
26675 (package
26676 (name "rust-standback")
26677 (version "0.2.10")
26678 (source
26679 (origin
26680 (method url-fetch)
26681 (uri (crate-uri "standback" version))
26682 (file-name (string-append name "-" version ".tar.gz"))
26683 (sha256
26684 (base32
26685 "1rnqv9dbq9c4nz7097v0f1d04fjwwsvvyy8rmz8lg1szxahix9rk"))))
26686 (build-system cargo-build-system)
26687 (arguments
26688 `(#:cargo-development-inputs
26689 (("rust-version-check" ,rust-version-check-0.9))))
26690 (home-page "https://github.com/jhpratt/standback")
26691 (synopsis "New standard library, old compiler")
26692 (description "New standard library, old compiler.")
26693 (license (list license:expat license:asl2.0))))
26694
26695 (define-public rust-static-assertions-1
26696 (package
26697 (name "rust-static-assertions")
26698 (version "1.1.0")
26699 (source
26700 (origin
26701 (method url-fetch)
26702 (uri (crate-uri "static-assertions" version))
26703 (file-name (string-append name "-" version ".crate"))
26704 (sha256
26705 (base32
26706 "0gsl6xmw10gvn3zs1rv99laj5ig7ylffnh71f9l34js4nr4r7sx2"))))
26707 (build-system cargo-build-system)
26708 (home-page "https://github.com/nvzqz/static-assertions-rs")
26709 (synopsis "Compile-time assertions for rust")
26710 (description
26711 "This package provides compile-time assertions to ensure that invariants
26712 are met.")
26713 (license (list license:expat license:asl2.0))))
26714
26715 (define-public rust-static-assertions-0.3
26716 (package
26717 (inherit rust-static-assertions-1)
26718 (name "rust-static-assertions")
26719 (version "0.3.4")
26720 (source
26721 (origin
26722 (method url-fetch)
26723 (uri (crate-uri "static-assertions" version))
26724 (file-name (string-append name "-" version ".crate"))
26725 (sha256
26726 (base32
26727 "1lw33i89888yb3x29c6dv4mrkg3534n0rlg3r7qzh4p58xmv6gkz"))))))
26728
26729 (define-public rust-static-map-macro-0.2
26730 (package
26731 (name "rust-static-map-macro")
26732 (version "0.2.1")
26733 (source
26734 (origin
26735 (method url-fetch)
26736 (uri (crate-uri "static-map-macro" version))
26737 (file-name (string-append name "-" version ".tar.gz"))
26738 (sha256
26739 (base32
26740 "1zcm28d46dggdpbn06xlpa274z25l228cmzxpc8qh8s8y43kwl6m"))))
26741 (build-system cargo-build-system)
26742 (arguments
26743 `(#:cargo-inputs
26744 (("rust-pmutil" ,rust-pmutil-0.5)
26745 ("rust-proc-macro2" ,rust-proc-macro2-1)
26746 ("rust-quote" ,rust-quote-1)
26747 ("rust-syn" ,rust-syn-1))))
26748 (home-page "https://github.com/kdy1/rust-static-map")
26749 (synopsis "Macro to create a stack-alocated map")
26750 (description "This package provides a macro to create a stack-alocated
26751 map.")
26752 (license license:expat)))
26753
26754 (define-public rust-stb-truetype-0.3
26755 (package
26756 (name "rust-stb-truetype")
26757 (version "0.3.1")
26758 (source
26759 (origin
26760 (method url-fetch)
26761 (uri (crate-uri "stb_truetype" version))
26762 (file-name
26763 (string-append name "-" version ".tar.gz"))
26764 (sha256
26765 (base32
26766 "0lgvnh3ma6cz811bk8imj45djz76zs47b8327sgnmik2x03nnyzp"))))
26767 (build-system cargo-build-system)
26768 (arguments
26769 `(#:tests? #f ; tests not included in release
26770 #:cargo-inputs
26771 (("rust-byteorder" ,rust-byteorder-1)
26772 ("rust-libm" ,rust-libm-0.2))
26773 #:cargo-development-inputs
26774 (("rust-approx" ,rust-approx-0.3))))
26775 (home-page "https://gitlab.redox-os.org/redox-os/stb_truetype-rs")
26776 (synopsis "Translation of the font loading code to Rust")
26777 (description
26778 "This package provides a straight translation of the font loading code
26779 in @code{stb_truetype.h} from C to Rust.")
26780 (license (list license:expat license:asl2.0))))
26781
26782 (define-public rust-std-prelude-0.2
26783 (package
26784 (name "rust-std-prelude")
26785 (version "0.2.12")
26786 (source
26787 (origin
26788 (method url-fetch)
26789 (uri (crate-uri "std_prelude" version))
26790 (file-name
26791 (string-append name "-" version ".tar.gz"))
26792 (sha256
26793 (base32
26794 "1ghcwnhnqn3rphyhlknmxpj5clzqva46z1vh25k5bpzzan2ff1w2"))))
26795 (build-system cargo-build-system)
26796 (home-page "https://github.com/vitiral/std_prelude")
26797 (synopsis
26798 "Prelude that the rust stdlib should have always had")
26799 (description
26800 "A package that simply uses all of the items often included in a Rust
26801 codebase.")
26802 (license license:expat)))
26803
26804 (define-public rust-stdweb-0.4
26805 (package
26806 (name "rust-stdweb")
26807 (version "0.4.20")
26808 (source
26809 (origin
26810 (method url-fetch)
26811 (uri (crate-uri "stdweb" version))
26812 (file-name
26813 (string-append name "-" version ".tar.gz"))
26814 (sha256
26815 (base32
26816 "1md14n9rzxzdskz3hpgln8vxfwqsw2cswc0f5nslh4r82rmlj8nh"))))
26817 (build-system cargo-build-system)
26818 (arguments
26819 `(#:skip-build? #t
26820 #:cargo-inputs
26821 (("rust-discard" ,rust-discard-1.0)
26822 ("rust-futures-channel-preview" ,rust-futures-channel-preview-0.3)
26823 ("rust-futures-core-preview" ,rust-futures-core-preview-0.3)
26824 ("rust-futures-executor-preview" ,rust-futures-executor-preview-0.3)
26825 ("rust-futures-util-preview" ,rust-futures-util-preview-0.3)
26826 ("rust-serde" ,rust-serde-1)
26827 ("rust-serde-json" ,rust-serde-json-1)
26828 ("rust-stdweb-derive" ,rust-stdweb-derive-0.5)
26829 ("rust-stdweb-internal-macros" ,rust-stdweb-internal-macros-0.2)
26830 ("rust-stdweb-internal-runtime" ,rust-stdweb-internal-runtime-0.1)
26831 ("rust-wasm-bindgen" ,rust-wasm-bindgen-0.2)
26832 ("rust-rustc-version" ,rust-rustc-version-0.2))
26833 #:cargo-development-inputs
26834 (("rust-serde-derive" ,rust-serde-derive-1)
26835 ("rust-serde-json" ,rust-serde-json-1)
26836 ("rust-stdweb-internal-test-macro" ,rust-stdweb-internal-test-macro-0.1)
26837 ("rust-wasm-bindgen-test" ,rust-wasm-bindgen-test-0.2))))
26838 (home-page "https://github.com/koute/stdweb")
26839 (synopsis "Standard library for the client-side Web")
26840 (description
26841 "This package provides a standard library for the client-side
26842 Web.")
26843 (license (list license:expat license:asl2.0))))
26844
26845 (define-public rust-stdweb-derive-0.5
26846 (package
26847 (name "rust-stdweb-derive")
26848 (version "0.5.3")
26849 (source
26850 (origin
26851 (method url-fetch)
26852 (uri (crate-uri "stdweb-derive" version))
26853 (file-name
26854 (string-append name "-" version ".tar.gz"))
26855 (sha256
26856 (base32
26857 "1vsh7g0gaxn4kxqq3knhymdn02p2pfxmnd2j0vplpj6c1yj60yn8"))))
26858 (build-system cargo-build-system)
26859 (arguments
26860 `(#:tests? #f
26861 #:cargo-inputs
26862 (("rust-proc-macro2" ,rust-proc-macro2-1)
26863 ("rust-quote" ,rust-quote-1)
26864 ("rust-serde" ,rust-serde-1)
26865 ("rust-serde-derive" ,rust-serde-derive-1)
26866 ("rust-syn" ,rust-syn-1))))
26867 (home-page "https://github.com/koute/stdweb")
26868 (synopsis "Derive macros for the stdweb crate")
26869 (description
26870 "This crate currently defines a derive macro for @code{stdweb} which allows
26871 you to define custom reference types outside of the @code{stdweb} library.")
26872 (license (list license:expat license:asl2.0))))
26873
26874 (define-public rust-stdweb-internal-macros-0.2
26875 (package
26876 (name "rust-stdweb-internal-macros")
26877 (version "0.2.9")
26878 (source
26879 (origin
26880 (method url-fetch)
26881 (uri (crate-uri "stdweb-internal-macros" version))
26882 (file-name
26883 (string-append name "-" version ".tar.gz"))
26884 (sha256
26885 (base32
26886 "049fq8fl5ny9l5if2qv7kxwng7g6ns95h4fbm3zx360dmpv5zyjq"))))
26887 (build-system cargo-build-system)
26888 (arguments
26889 `(#:cargo-inputs
26890 (("rust-base-x" ,rust-base-x-0.2)
26891 ("rust-proc-macro2" ,rust-proc-macro2-1)
26892 ("rust-quote" ,rust-quote-1)
26893 ("rust-serde" ,rust-serde-1)
26894 ("rust-serde-derive" ,rust-serde-derive-1)
26895 ("rust-serde-json" ,rust-serde-json-1)
26896 ("rust-sha1" ,rust-sha1-0.6)
26897 ("rust-syn" ,rust-syn-1))))
26898 (home-page "https://github.com/koute/stdweb")
26899 (synopsis "Internal procedural macros for the stdweb crate")
26900 (description
26901 "Internal procedural macros for the @code{stdweb} crate.")
26902 (license (list license:expat license:asl2.0))))
26903
26904 (define-public rust-stdweb-internal-runtime-0.1
26905 (package
26906 (name "rust-stdweb-internal-runtime")
26907 (version "0.1.5")
26908 (source
26909 (origin
26910 (method url-fetch)
26911 (uri (crate-uri "stdweb-internal-runtime" version))
26912 (file-name (string-append name "-" version ".crate"))
26913 (sha256
26914 (base32
26915 "1h0nkppb4r8dbrbms2hw9n5xdcs392m0r5hj3b6lsx3h6fx02dr1"))))
26916 (build-system cargo-build-system)
26917 (home-page "https://github.com/koute/stdweb")
26918 (synopsis "Internal runtime for the @code{stdweb} crate")
26919 (description "This crate provides internal runtime for the @code{stdweb}
26920 crate.")
26921 (license (list license:asl2.0
26922 license:expat))))
26923
26924 (define-public rust-stdweb-internal-test-macro-0.1
26925 (package
26926 (name "rust-stdweb-internal-test-macro")
26927 (version "0.1.1")
26928 (source
26929 (origin
26930 (method url-fetch)
26931 (uri (crate-uri "stdweb-internal-test-macro" version))
26932 (file-name (string-append name "-" version ".crate"))
26933 (sha256
26934 (base32
26935 "0wx3jlm98qrg1pdw149fprzs9x3x3igqkm5ll23jv2v62yddfrjf"))))
26936 (build-system cargo-build-system)
26937 (arguments
26938 `(#:cargo-inputs
26939 (("rust-proc-macro2" ,rust-proc-macro2-1)
26940 ("rust-quote" ,rust-quote-1))))
26941 (home-page "https://github.com/koute/stdweb")
26942 (synopsis "Internal crate of the `stdweb` crate")
26943 (description
26944 "Internal crate of the @code{stdweb} crate.")
26945 (license (list license:asl2.0
26946 license:expat))))
26947
26948 (define-public rust-stfu8-0.2
26949 (package
26950 (name "rust-stfu8")
26951 (version "0.2.4")
26952 (source
26953 (origin
26954 (method url-fetch)
26955 (uri (crate-uri "stfu8" version))
26956 (file-name
26957 (string-append name "-" version ".tar.gz"))
26958 (sha256
26959 (base32
26960 "0xyv4axwc9rihg3f5fjdy7s0ahnz1iq6lq06blwkq2ihwcrh9xsb"))))
26961 (build-system cargo-build-system)
26962 (arguments
26963 `(#:cargo-inputs
26964 (("rust-lazy-static" ,rust-lazy-static-1)
26965 ("rust-regex" ,rust-regex-0.2))
26966 #:cargo-development-inputs
26967 (("rust-pretty-assertions" ,rust-pretty-assertions-0.4)
26968 ("rust-proptest" ,rust-proptest-0.3))))
26969 (home-page "https://github.com/vitiral/stfu8")
26970 (synopsis "Sorta Text Format in UTF-8")
26971 (description
26972 "STFU-8 is a hacky text encoding/decoding protocol for files that
26973 partially uses UTF-8. Its primary purpose is to allow a human to visualize and
26974 edit data that is mostly UTF-8. It will encode all non-UTF8-compliant bytes as
26975 longform text (e.g., ESC becomes @code{r\x1B}) and tries to encode ill-formed
26976 UTF-8.")
26977 (license (list license:expat license:asl2.0))))
26978
26979 (define-public rust-stream-cipher-0.4
26980 (package
26981 (name "rust-stream-cipher")
26982 (version "0.4.1")
26983 (source
26984 (origin
26985 (method url-fetch)
26986 (uri (crate-uri "stream-cipher" version))
26987 (file-name (string-append name "-" version ".tar.gz"))
26988 (sha256
26989 (base32
26990 "120y04k3d2jyfnvyrlf38x6bf0yckyk30c7zf8v8qaq4fjcyvy09"))))
26991 (build-system cargo-build-system)
26992 (arguments
26993 `(#:cargo-inputs
26994 (("rust-blobby" ,rust-blobby-0.1)
26995 ("rust-block-cipher" ,rust-block-cipher-0.7)
26996 ("rust-generic-array" ,rust-generic-array-0.14))))
26997 (home-page "https://github.com/RustCrypto/traits")
26998 (synopsis "Stream cipher traits")
26999 (description "This package provides stream cipher traits.")
27000 (license (list license:expat license:asl2.0))))
27001
27002 (define-public rust-stream-cipher-0.3
27003 (package
27004 (inherit rust-stream-cipher-0.4)
27005 (name "rust-stream-cipher")
27006 (version "0.3.0")
27007 (source
27008 (origin
27009 (method url-fetch)
27010 (uri (crate-uri "stream-cipher" version))
27011 (file-name
27012 (string-append name "-" version ".tar.gz"))
27013 (sha256
27014 (base32
27015 "1g1nd8r6pph70rzk5yyvg7a9ji7pkap9ddiqpp4v9xa9ys0bqqc8"))))
27016 (arguments
27017 `(#:skip-build? #t
27018 #:cargo-inputs
27019 (("rust-blobby" ,rust-blobby-0.1)
27020 ("rust-generic-array" ,rust-generic-array-0.13))))))
27021
27022 (define-public rust-streaming-stats-0.2
27023 (package
27024 (name "rust-streaming-stats")
27025 (version "0.2.3")
27026 (source
27027 (origin
27028 (method url-fetch)
27029 (uri (crate-uri "streaming-stats" version))
27030 (file-name (string-append name "-" version ".crate"))
27031 (sha256
27032 (base32
27033 "0iz5dlq51w5hxjrv6a4hpf8rrj91kgvy0s9mhj0j12il9v771mmh"))))
27034 (build-system cargo-build-system)
27035 (arguments
27036 `(#:cargo-inputs
27037 (("rust-num-traits" ,rust-num-traits-0.2))))
27038 (home-page "https://github.com/BurntSushi/rust-stats")
27039 (synopsis "Compute basic statistics on streams")
27040 (description
27041 "Experimental crate for computing basic statistics on streams.")
27042 (license (list license:unlicense
27043 license:expat))))
27044
27045 (define-public rust-string-0.2
27046 (package
27047 (name "rust-string")
27048 (version "0.2.1")
27049 (source
27050 (origin
27051 (method url-fetch)
27052 (uri (crate-uri "string" version))
27053 (file-name (string-append name "-" version ".tar.gz"))
27054 (sha256
27055 (base32 "0vaxz85ja52fn66akgvggb29wqa5bpj3y38syykpr1pbrjzi8hfj"))))
27056 (build-system cargo-build-system)
27057 (arguments
27058 `(#:cargo-inputs (("rust-bytes" ,rust-bytes-0.4))))
27059 (home-page "https://github.com/carllerche/string")
27060 (synopsis "UTF-8 encoded string with configurable byte storage")
27061 (description "This package provides a UTF-8 encoded string with
27062 configurable byte storage.")
27063 (license license:expat)))
27064
27065 (define-public rust-string-cache-0.8
27066 (package
27067 (name "rust-string-cache")
27068 (version "0.8.0")
27069 (source
27070 (origin
27071 (method url-fetch)
27072 (uri (crate-uri "string-cache" version))
27073 (file-name
27074 (string-append name "-" version ".tar.gz"))
27075 (sha256
27076 (base32
27077 "12i0synp8l0qpnzi5qki4pjq3jx28ykikyffjjjg6fsfxddwfh19"))))
27078 (build-system cargo-build-system)
27079 (arguments
27080 `(#:cargo-inputs
27081 (("rust-lazy-static" ,rust-lazy-static-1)
27082 ("rust-new-debug-unreachable" ,rust-new-debug-unreachable-1)
27083 ("rust-phf-shared" ,rust-phf-shared-0.8)
27084 ("rust-precomputed-hash" ,rust-precomputed-hash-0.1)
27085 ("rust-serde" ,rust-serde-1))))
27086 (home-page "https://github.com/servo/string-cache")
27087 (synopsis "String interning library for Rust")
27088 (description
27089 "This package provides a string interning library for Rust,
27090 developed as part of the Servo project.")
27091 (license (list license:asl2.0 license:expat))))
27092
27093 (define-public rust-string-cache-0.7
27094 (package
27095 (inherit rust-string-cache-0.8)
27096 (name "rust-string-cache")
27097 (version "0.7.5")
27098 (source
27099 (origin
27100 (method url-fetch)
27101 (uri (crate-uri "string_cache" version))
27102 (file-name
27103 (string-append name "-" version ".tar.gz"))
27104 (sha256
27105 (base32
27106 "0rrdb822gc1fs3qq4camgj3kh4182bs79hpqxhdrpmlz5yl5ih49"))))
27107 (arguments
27108 `(#:cargo-inputs
27109 (("rust-lazy-static" ,rust-lazy-static-1)
27110 ("rust-new-debug-unreachable"
27111 ,rust-new-debug-unreachable-1)
27112 ("rust-phf-shared" ,rust-phf-shared-0.7)
27113 ("rust-precomputed-hash" ,rust-precomputed-hash-0.1)
27114 ("rust-serde" ,rust-serde-1)
27115 ("rust-string-cache-codegen" ,rust-string-cache-codegen-0.4)
27116 ("rust-string-cache-shared" ,rust-string-cache-shared-0.3))
27117 #:cargo-development-inputs
27118 (("rust-rand" ,rust-rand-0.4))))))
27119
27120 (define-public rust-string-cache-codegen-0.5
27121 (package
27122 (name "rust-string-cache-codegen")
27123 (version "0.5.1")
27124 (source
27125 (origin
27126 (method url-fetch)
27127 (uri (crate-uri "string-cache-codegen" version))
27128 (file-name
27129 (string-append name "-" version ".tar.gz"))
27130 (sha256
27131 (base32
27132 "15vbk5i7kkj5bbx7f0fi477js4svw5py39gi4rk74anj35g8wk7j"))))
27133 (build-system cargo-build-system)
27134 (arguments
27135 `(#:cargo-inputs
27136 (("rust-phf-generator" ,rust-phf-generator-0.8)
27137 ("rust-phf-shared" ,rust-phf-shared-0.8)
27138 ("rust-proc-macro2" ,rust-proc-macro2-1)
27139 ("rust-quote" ,rust-quote-1))))
27140 (home-page "https://github.com/servo/string-cache")
27141 (synopsis "Codegen library for string-cache")
27142 (description
27143 "This package provides a codegen library for string-cache,
27144 developed as part of the Servo project.")
27145 (license (list license:asl2.0 license:expat))))
27146
27147 (define-public rust-string-cache-codegen-0.4
27148 (package
27149 (inherit rust-string-cache-codegen-0.5)
27150 (name "rust-string-cache-codegen")
27151 (version "0.4.4")
27152 (source
27153 (origin
27154 (method url-fetch)
27155 (uri (crate-uri "string-cache-codegen" version))
27156 (file-name
27157 (string-append name "-" version ".tar.gz"))
27158 (sha256
27159 (base32
27160 "1ik78h9gs874i24rkyh0myg6x4ni2a9cazbv5yzs9yavnv8mxx7h"))))
27161 (arguments
27162 `(#:cargo-inputs
27163 (("rust-phf-generator" ,rust-phf-generator-0.7)
27164 ("rust-phf-shared" ,rust-phf-shared-0.7)
27165 ("rust-proc-macro2" ,rust-proc-macro2-1)
27166 ("rust-quote" ,rust-quote-1)
27167 ("rust-string-cache-shared" ,rust-string-cache-shared-0.3))))))
27168
27169 (define-public rust-string-cache-shared-0.3
27170 (package
27171 (name "rust-string-cache-shared")
27172 (version "0.3.0")
27173 (source
27174 (origin
27175 (method url-fetch)
27176 (uri (crate-uri "string-cache-shared" version))
27177 (file-name
27178 (string-append name "-" version ".tar.gz"))
27179 (sha256
27180 (base32
27181 "1z7dpdix1m42x6ddshdcpjf91ml9mhvnskmiv5kd8hcpq0dlv25i"))))
27182 (build-system cargo-build-system)
27183 (home-page "https://github.com/servo/string-cache")
27184 (synopsis "Code share between string_cache and string_cache_codegen")
27185 (description
27186 "Code share between string_cache and string_cache_codegen.")
27187 (license (list license:asl2.0 license:expat))))
27188
27189 (define-public rust-strsim-0.9
27190 (package
27191 (name "rust-strsim")
27192 (version "0.9.3")
27193 (source
27194 (origin
27195 (method url-fetch)
27196 (uri (crate-uri "strsim" version))
27197 (file-name (string-append name "-" version ".crate"))
27198 (sha256
27199 (base32
27200 "0k497pv882qn3q977ckznm13vxx927g8s1swvcv68j3c1pccwik4"))))
27201 (build-system cargo-build-system)
27202 (home-page "https://github.com/dguo/strsim-rs")
27203 (synopsis "Rust implementations of string similarity metrics")
27204 (description "This crate includes implementations of string similarity
27205 metrics. It includes Hamming, Levenshtein, OSA, Damerau-Levenshtein, Jaro,
27206 and Jaro-Winkler.")
27207 (license license:expat)))
27208
27209 (define-public rust-strsim-0.8
27210 (package
27211 (inherit rust-strsim-0.9)
27212 (name "rust-strsim")
27213 (version "0.8.0")
27214 (source
27215 (origin
27216 (method url-fetch)
27217 (uri (crate-uri "strsim" version))
27218 (file-name (string-append name "-" version ".crate"))
27219 (sha256
27220 (base32
27221 "0sjsm7hrvjdifz661pjxq5w4hf190hx53fra8dfvamacvff139cf"))))))
27222
27223 (define-public rust-strsim-0.6
27224 (package
27225 (inherit rust-strsim-0.9)
27226 (name "rust-strsim")
27227 (version "0.6.0")
27228 (source
27229 (origin
27230 (method url-fetch)
27231 (uri (crate-uri "strsim" version))
27232 (file-name
27233 (string-append name "-" version ".tar.gz"))
27234 (sha256
27235 (base32
27236 "151ngha649cyybr3j50qg331b206zrinxqz7fzw1ra8r0n0mrldl"))))))
27237
27238 (define-public rust-strsim-0.5
27239 (package
27240 (inherit rust-strsim-0.9)
27241 (name "rust-strsim")
27242 (version "0.5.2")
27243 (source
27244 (origin
27245 (method url-fetch)
27246 (uri (crate-uri "strsim" version))
27247 (file-name
27248 (string-append name "-" version ".tar.gz"))
27249 (sha256
27250 (base32
27251 "0z3zzvmilfldp4xw42qbkjf901dcnbk58igrzsvivydjzd24ry37"))))))
27252
27253 (define-public rust-structopt-0.3
27254 (package
27255 (name "rust-structopt")
27256 (version "0.3.12")
27257 (source
27258 (origin
27259 (method url-fetch)
27260 (uri (crate-uri "structopt" version))
27261 (file-name
27262 (string-append name "-" version ".tar.gz"))
27263 (sha256
27264 (base32
27265 "178m7wxnjyy9a8a961z74nazjsg79rfv3gv9g3bykfrrjmqs5yn8"))))
27266 (build-system cargo-build-system)
27267 (arguments
27268 `(#:skip-build? #t
27269 #:cargo-inputs
27270 (("rust-structopt-derive" ,rust-structopt-derive-0.4)
27271 ("rust-lazy-static" ,rust-lazy-static-1)
27272 ("rust-clap" ,rust-clap-2))))
27273 (home-page "https://github.com/TeXitoi/structopt")
27274 (synopsis "Parse command line argument by defining a struct")
27275 (description
27276 "Parse command line argument by defining a struct.")
27277 (license (list license:asl2.0 license:expat))))
27278
27279 (define-public rust-structopt-0.2
27280 (package
27281 (name "rust-structopt")
27282 (version "0.2.18")
27283 (source
27284 (origin
27285 (method url-fetch)
27286 (uri (crate-uri "structopt" version))
27287 (file-name (string-append name "-" version ".tar.gz"))
27288 (sha256
27289 (base32
27290 "1mvfv1l8vp3y402fkl2wcl34hi7gmr4bqha13dfz2xf3kjzwvhhn"))))
27291 (build-system cargo-build-system)
27292 (arguments
27293 `(#:tests? #f
27294 #:cargo-inputs
27295 (("rust-clap" ,rust-clap-2)
27296 ("rust-structopt-derive" ,rust-structopt-derive-0.2))))
27297 (home-page "https://github.com/TeXitoi/structopt")
27298 (synopsis "Parse command line arguments by defining a struct")
27299 (description
27300 "Parse command line arguments by defining a struct.")
27301 (license (list license:asl2.0 license:expat))))
27302
27303 (define-public rust-structopt-derive-0.4
27304 (package
27305 (name "rust-structopt-derive")
27306 (version "0.4.5")
27307 (source
27308 (origin
27309 (method url-fetch)
27310 (uri (crate-uri "structopt-derive" version))
27311 (file-name
27312 (string-append name "-" version ".tar.gz"))
27313 (sha256
27314 (base32
27315 "0c04bbzc5bmr2ns6qy35yz55nn3xvlq4dpwxdynnljb9ikhvi21z"))))
27316 (build-system cargo-build-system)
27317 (arguments
27318 `(#:skip-build? #t
27319 #:cargo-inputs
27320 (("rust-heck" ,rust-heck-0.3)
27321 ("rust-proc-macro-error" ,rust-proc-macro-error-0.4)
27322 ("rust-proc-macro2" ,rust-proc-macro2-1)
27323 ("rust-syn" ,rust-syn-1)
27324 ("rust-quote" ,rust-quote-1))))
27325 (home-page "https://github.com/TeXitoi/structopt")
27326 (synopsis "Parse command line argument by defining a struct, derive crate")
27327 (description
27328 "Parse command line argument by defining a struct, derive crate.")
27329 (license (list license:asl2.0 license:expat))))
27330
27331 (define-public rust-structopt-derive-0.2
27332 (package
27333 (name "rust-structopt-derive")
27334 (version "0.2.18")
27335 (source
27336 (origin
27337 (method url-fetch)
27338 (uri (crate-uri "structopt-derive" version))
27339 (file-name (string-append name "-" version ".tar.gz"))
27340 (sha256
27341 (base32
27342 "01sis9z5kqmyhvzbnmlzpdxcry99a0b9blypksgnhdsbm1hh40ak"))))
27343 (build-system cargo-build-system)
27344 (arguments
27345 `(#:cargo-inputs
27346 (("rust-heck" ,rust-heck-0.3)
27347 ("rust-proc-macro2" ,rust-proc-macro2-0.4)
27348 ("rust-quote" ,rust-quote-0.6)
27349 ("rust-syn" ,rust-syn-0.15))))
27350 (home-page "https://github.com/TeXitoi/structopt")
27351 (synopsis
27352 "Parse command line argument by defining a struct, derive crate")
27353 (description
27354 "Parse command line argument by defining a struct, derive crate.")
27355 (license (list license:asl2.0 license:expat))))
27356
27357 (define-public rust-subtle-2
27358 (package
27359 (name "rust-subtle")
27360 (version "2.2.3")
27361 (source
27362 (origin
27363 (method url-fetch)
27364 (uri (crate-uri "subtle" version))
27365 (file-name
27366 (string-append name "-" version ".tar.gz"))
27367 (sha256
27368 (base32
27369 "1h9jd7v0imksyl5mvnjk2rw54sa3xrril76z0md61mq2gh056bah"))))
27370 (build-system cargo-build-system)
27371 (home-page "https://dalek.rs/")
27372 (synopsis
27373 "Pure-Rust traits and utilities for cryptographic implementations")
27374 (description
27375 "This package provides Pure-Rust traits and utilities for constant-time
27376 cryptographic implementations.")
27377 (license license:bsd-3)))
27378
27379 (define-public rust-subtle-1.0
27380 (package
27381 (inherit rust-subtle-2)
27382 (name "rust-subtle")
27383 (version "1.0.0")
27384 (source
27385 (origin
27386 (method url-fetch)
27387 (uri (crate-uri "subtle" version))
27388 (file-name
27389 (string-append name "-" version ".tar.gz"))
27390 (sha256
27391 (base32
27392 "1vm80mxbwfj334izwm8x8l65v1xl9hr0kwrg36r1rq565fkaarrd"))))))
27393
27394 (define-public rust-sval-0.4
27395 (package
27396 (name "rust-sval")
27397 (version "0.4.7")
27398 (source
27399 (origin
27400 (method url-fetch)
27401 (uri (crate-uri "sval" version))
27402 (file-name
27403 (string-append name "-" version ".tar.gz"))
27404 (sha256
27405 (base32
27406 "1aljggx64481q4wp3wx9hxsfh2bs7d64nqsrwbb2zxcpmdnbn6yk"))))
27407 (build-system cargo-build-system)
27408 (arguments
27409 `(#:skip-build? #t
27410 #:cargo-inputs
27411 (("rust-sval-derive" ,rust-sval-derive-0.4)
27412 ("rust-smallvec" ,rust-smallvec-0.6)
27413 ("rust-serde" ,rust-serde-1))))
27414 (home-page "https://github.com/sval-rs/sval")
27415 (synopsis "No-std, object-safe serialization framework")
27416 (description
27417 "This package provides a no-std, object-safe serialization framework.")
27418 (license (list license:asl2.0 license:expat))))
27419
27420 (define-public rust-sval-derive-0.4
27421 (package
27422 (name "rust-sval-derive")
27423 (version "0.4.7")
27424 (source
27425 (origin
27426 (method url-fetch)
27427 (uri (crate-uri "sval_derive" version))
27428 (file-name
27429 (string-append name "-" version ".tar.gz"))
27430 (sha256
27431 (base32
27432 "07s7jqsdczsg0wnydfnxyrsj8zyrjmiwl4is1dfgn8dfvyi8n2bj"))))
27433 (build-system cargo-build-system)
27434 (arguments
27435 `(#:skip-build? #t
27436 #:cargo-inputs
27437 (("rust-proc-macro2" ,rust-proc-macro2-1)
27438 ("rust-syn" ,rust-syn-1)
27439 ("rust-quote" ,rust-quote-1))))
27440 (home-page "https://github.com/sval-rs/sval")
27441 (synopsis "Custom derive for sval")
27442 (description "Custom derive for sval.")
27443 (license (list license:asl2.0 license:expat))))
27444
27445 (define-public rust-swc-1
27446 (package
27447 (name "rust-swc")
27448 (version "1.2.24")
27449 (source
27450 (origin
27451 (method git-fetch)
27452 (uri (git-reference
27453 (url "https://github.com/swc-project/swc")
27454 (commit (string-append "v" version))))
27455 (file-name (git-file-name name version))
27456 (sha256
27457 (base32
27458 "1w9al035x0gmard80vqvah8sy8szs6bnd1ynnyssiiylzg7vhyyv"))))
27459 (build-system cargo-build-system)
27460 (arguments
27461 `(#:cargo-inputs
27462 (("rust-ansi-term" ,rust-ansi-term-0.12)
27463 ("rust-base64" ,rust-base64-0.12)
27464 ("rust-console-error-panic-hook" ,rust-console-error-panic-hook-0.1)
27465 ("rust-crc" ,rust-crc-1)
27466 ("rust-darling" ,rust-darling-0.10)
27467 ("rust-dashmap" ,rust-dashmap-3)
27468 ("rust-either" ,rust-either-1)
27469 ("rust-fxhash" ,rust-fxhash-0.2)
27470 ("rust-is-macro" ,rust-is-macro-0.1)
27471 ("rust-jemallocator" ,rust-jemallocator-0.3)
27472 ("rust-log" ,rust-log-0.4)
27473 ("rust-mimalloc" ,rust-mimalloc-0.1)
27474 ("rust-napi" ,rust-napi-0.5)
27475 ("rust-napi-build" ,rust-napi-build-0.2)
27476 ("rust-napi-derive" ,rust-napi-derive-0.5)
27477 ("rust-nom" ,rust-nom-5)
27478 ("rust-once-cell" ,rust-once-cell-1)
27479 ("rust-parking-lot" ,rust-parking-lot-0.7)
27480 ("rust-path-clean" ,rust-path-clean-0.1)
27481 ("rust-petgraph" ,rust-petgraph-0.5)
27482 ("rust-proc-macro2" ,rust-proc-macro2-1)
27483 ("rust-radix-fmt" ,rust-radix-fmt-1)
27484 ("rust-regex" ,rust-regex-1)
27485 ("rust-relative-path" ,rust-relative-path-1)
27486 ("rust-retain-mut" ,rust-retain-mut-0.1)
27487 ("rust-scoped-tls" ,rust-scoped-tls-1.0)
27488 ("rust-st-map" ,rust-st-map-0.1)
27489 ("rust-string-cache" ,rust-string-cache-0.8)
27490 ("rust-walkdir" ,rust-walkdir-2)
27491 ("rust-wasm-bindgen-futures" ,rust-wasm-bindgen-futures-0.4))
27492 #:cargo-development-inputs
27493 (("rust-anyhow" ,rust-anyhow-1.0)
27494 ("rust-env-logger" ,rust-env-logger-0.7)
27495 ("rust-num-bigint" ,rust-num-bigint-0.2)
27496 ("rust-pretty-assertions" ,rust-pretty-assertions-0.6)
27497 ("rust-pretty-env-logger" ,rust-pretty-env-logger-0.3)
27498 ("rust-serde" ,rust-serde-1)
27499 ("rust-serde-json" ,rust-serde-json-1)
27500 ("rust-sourcemap" ,rust-sourcemap-6)
27501 ("rust-string-cache-codegen" ,rust-string-cache-codegen-0.5)
27502 ("rust-tempfile" ,rust-tempfile-3))
27503 #:tests? #f ;; tests env_query_chrome_71 and project_env fail
27504 #:phases
27505 (modify-phases %standard-phases
27506 (add-after 'unpack 'enable-unstable-features
27507 (lambda _
27508 (setenv "RUSTC_BOOTSTRAP" "1")
27509 (substitute* "ecmascript/jsdoc/src/lib.rs"
27510 (("pub use self" all)
27511 (string-append "#![feature(non_exhaustive)]\n" all)))
27512 (substitute* "ecmascript/parser/src/lib.rs"
27513 (("//! es2019" all)
27514 (string-append "#![feature(non_exhaustive)]
27515 #![feature(mem_take)]
27516 #![feature(proc_macro_hygiene)]
27517 " all)))
27518 (substitute* "ecmascript/transforms/src/lib.rs"
27519 (("#!\\[cfg_attr" all)
27520 (string-append "#![feature(mem_take)]\n" all)))
27521 #t))
27522 (add-after 'enable-unstable-features 'patch-build-failures
27523 (lambda _
27524 (chmod ".cargo/config" 420)
27525 (substitute* "ecmascript/transforms/macros/src/lib.rs"
27526 (("use proc_macro::")
27527 "extern crate proc_macro;\nuse proc_macro::"))
27528 (substitute* "common/src/errors/emitter.rs"
27529 ((" #\\[cfg\\(feature = \"tty-emitter\"\\)\\]\n") ""))
27530 #t)))))
27531 (home-page "https://swc.rs/")
27532 (synopsis "Typescript/javascript compiler")
27533 (description "@code{rust-swc} is a typescript/javascript compiler. It
27534 consumes a javascript or typescript file which uses recently added features
27535 like async-await and emits javascript code which can be executed on old
27536 browsers.")
27537 (license (list license:expat
27538 license:asl2.0))))
27539
27540 (define-public rust-syn-test-suite-0
27541 (package
27542 (name "rust-syn-test-suite")
27543 (version "0.0.0+test")
27544 (source
27545 (origin
27546 (method url-fetch)
27547 (uri (crate-uri "syn-test-suite" version))
27548 (file-name (string-append name "-" version ".tar.gz"))
27549 (sha256
27550 (base32
27551 "1d9ffrbgci1qjdcpvgrsg3sh24qdsdh66zcsvn5prrk05ycn3mm0"))))
27552 (build-system cargo-build-system)
27553 (home-page "https://github.com/dtolnay/syn")
27554 (synopsis "Test suite of the syn crate")
27555 (description "This package provides the test suite of the syn crate.")
27556 (license (list license:expat license:asl2.0))))
27557
27558 (define-public rust-syn-1
27559 (package
27560 (name "rust-syn")
27561 (version "1.0.40")
27562 (source
27563 (origin
27564 (method url-fetch)
27565 (uri (crate-uri "syn" version))
27566 (file-name (string-append name "-" version ".crate"))
27567 (sha256
27568 (base32
27569 "0l437lsnv289y64pgl2mfvr1vgrb2hix5bb5a4rbjncvqly7sgwn"))))
27570 (build-system cargo-build-system)
27571 (arguments
27572 `(#:skip-build? #t
27573 #:cargo-inputs
27574 (("rust-unicode-xid" ,rust-unicode-xid-0.2)
27575 ("rust-proc-macro2" ,rust-proc-macro2-1)
27576 ("rust-quote" ,rust-quote-1))
27577 #:cargo-development-inputs
27578 (("rust-anyhow" ,rust-anyhow-1.0)
27579 ("rust-flate2" ,rust-flate2-1)
27580 ("rust-insta" ,rust-insta-0.16)
27581 ("rust-rayon" ,rust-rayon-1)
27582 ("rust-ref-cast" ,rust-ref-cast-1.0)
27583 ("rust-regex" ,rust-regex-1)
27584 ("rust-reqwest" ,rust-reqwest-0.10)
27585 ("rust-syn-test-suite" ,rust-syn-test-suite-0)
27586 ("rust-tar" ,rust-tar-0.4)
27587 ("rust-termcolor" ,rust-termcolor-1)
27588 ("rust-walkdir" ,rust-walkdir-2))))
27589 (home-page "https://github.com/dtolnay/syn")
27590 (synopsis "Parser for Rust source code")
27591 (description "Parser for Rust source code")
27592 (license (list license:expat license:asl2.0))))
27593
27594 (define-public rust-syn-0.15
27595 (package
27596 (inherit rust-syn-1)
27597 (name "rust-syn")
27598 (version "0.15.44")
27599 (source
27600 (origin
27601 (method url-fetch)
27602 (uri (crate-uri "syn" version))
27603 (file-name
27604 (string-append name "-" version ".tar.gz"))
27605 (sha256
27606 (base32
27607 "1id5g6x6zihv3j7hwrw3m1jp636bg8dpi671r7zy3jvpkavb794w"))))
27608 (arguments
27609 `(#:cargo-test-flags '("--release" "--all-features")
27610 #:cargo-inputs
27611 (("rust-proc-macro2" ,rust-proc-macro2-0.4)
27612 ("rust-quote" ,rust-quote-0.6)
27613 ("rust-unicode-xid" ,rust-unicode-xid-0.1))
27614 #:cargo-development-inputs
27615 (("rust-insta" ,rust-insta-0.8)
27616 ("rust-rayon" ,rust-rayon-1)
27617 ("rust-ref-cast" ,rust-ref-cast-0.2)
27618 ("rust-regex" ,rust-regex-1)
27619 ("rust-termcolor" ,rust-termcolor-1)
27620 ("rust-walkdir" ,rust-walkdir-2))))
27621 (properties '())))
27622
27623 (define-public rust-syn-0.14
27624 (package
27625 (inherit rust-syn-0.15)
27626 (name "rust-syn")
27627 (version "0.14.9")
27628 (source
27629 (origin
27630 (method url-fetch)
27631 (uri (crate-uri "syn" version))
27632 (file-name
27633 (string-append name "-" version ".tar.gz"))
27634 (sha256
27635 (base32
27636 "0hgpgi8lcvkfd5jnma5fxq41ycb9kna635b4c2wl4z1rmbnfj6i6"))))
27637 (arguments
27638 `(#:cargo-inputs
27639 (("rust-proc-macro2" ,rust-proc-macro2-0.4)
27640 ("rust-quote" ,rust-quote-0.6)
27641 ("rust-unicode-xid" ,rust-unicode-xid-0.1))
27642 #:cargo-development-inputs
27643 (("rust-rayon" ,rust-rayon-1)
27644 ("rust-walkdir" ,rust-walkdir-2))))))
27645
27646 (define-public rust-syn-0.13
27647 (package
27648 (inherit rust-syn-0.14)
27649 (name "rust-syn")
27650 (version "0.13.11")
27651 (source
27652 (origin
27653 (method url-fetch)
27654 (uri (crate-uri "syn" version))
27655 (file-name
27656 (string-append name "-" version ".tar.gz"))
27657 (sha256
27658 (base32
27659 "16qvx8qyb5v4vjbg9rk8848bw6x4i6vzs8v7f4n1v9pkj9ibzy8l"))))
27660 (arguments
27661 `(#:tests? #f
27662 #:cargo-inputs
27663 (("rust-proc-macro2" ,rust-proc-macro2-0.3)
27664 ("rust-quote" ,rust-quote-0.5)
27665 ("rust-unicode-xid" ,rust-unicode-xid-0.1))
27666 #:cargo-development-inputs
27667 (("rust-rayon" ,rust-rayon-1)
27668 ("rust-walkdir" ,rust-walkdir-2))))))
27669
27670 (define-public rust-syn-0.11
27671 (package
27672 (inherit rust-syn-0.15)
27673 (name "rust-syn")
27674 (version "0.11.11")
27675 (source
27676 (origin
27677 (method url-fetch)
27678 (uri (crate-uri "syn" version))
27679 (file-name
27680 (string-append name "-" version ".tar.gz"))
27681 (sha256
27682 (base32
27683 "1b8x8jdsmj6r9ck7n1pg371526n1q90kx6rv6ivcb22w06wr3f6k"))))
27684 (arguments
27685 `(#:phases
27686 (modify-phases %standard-phases
27687 (add-before 'build 'fixup-cargo-toml
27688 (lambda _
27689 (substitute* "Cargo.toml"
27690 ((", path =.*,") ","))
27691 #t)))
27692 #:cargo-inputs
27693 (("rust-quote" ,rust-quote-0.3)
27694 ("rust-synom" ,rust-synom-0.11)
27695 ("rust-unicode-xid" ,rust-unicode-xid-0.0))
27696 #:cargo-development-inputs
27697 (("rust-syntex-pos" ,rust-syntex-pos-0.58)
27698 ("rust-syntex-syntax" ,rust-syntex-syntax-0.58)
27699 ("rust-tempdir" ,rust-tempdir-0.3)
27700 ("rust-walkdir" ,rust-walkdir-1))))))
27701
27702 (define-public rust-syn-mid-0.5
27703 (package
27704 (name "rust-syn-mid")
27705 (version "0.5.0")
27706 (source
27707 (origin
27708 (method url-fetch)
27709 (uri (crate-uri "syn-mid" version))
27710 (file-name
27711 (string-append name "-" version ".tar.gz"))
27712 (sha256
27713 (base32
27714 "12ikg5jfklixq0wsgfl7sdzjqlxgq50ygklxy4f972hjdjgm7qvv"))))
27715 (build-system cargo-build-system)
27716 (arguments
27717 `(#:skip-build? #t
27718 #:cargo-inputs
27719 (("rust-proc-macro2" ,rust-proc-macro2-1)
27720 ("rust-syn" ,rust-syn-1)
27721 ("rust-quote" ,rust-quote-1))))
27722 (home-page "https://github.com/taiki-e/syn-mid")
27723 (synopsis
27724 "Provide the features between \"full\" and \"derive\" of syn.")
27725 (description
27726 "This package provides the features between \"full\" and \"derive\" of syn.")
27727 (license (list license:asl2.0 license:expat))))
27728
27729 (define-public rust-synom-0.11
27730 (package
27731 (name "rust-synom")
27732 (version "0.11.3")
27733 (source
27734 (origin
27735 (method url-fetch)
27736 (uri (crate-uri "synom" version))
27737 (file-name
27738 (string-append name "-" version ".tar.gz"))
27739 (sha256
27740 (base32
27741 "1dj536sh5xxhan2h0znxhv0sl6sb7lvzmsmrc3nvl3h1v5p0d4x3"))))
27742 (build-system cargo-build-system)
27743 (arguments
27744 `(#:tests? #f ; doc tests fail
27745 #:phases
27746 (modify-phases %standard-phases
27747 (add-before 'build 'fixup-cargo-toml
27748 (lambda _
27749 (substitute* "Cargo.toml"
27750 (("^path =.*") ""))
27751 #t)))
27752 #:cargo-inputs
27753 (("rust-unicode-xid" ,rust-unicode-xid-0.0))
27754 #:cargo-development-inputs
27755 (("rust-syn" ,rust-syn-0.11))))
27756 (home-page "https://github.com/dtolnay/syn")
27757 (synopsis "Stripped-down Nom parser used by Syn")
27758 (description
27759 "Stripped-down Nom parser used by Syn.")
27760 (license (list license:expat license:asl2.0))))
27761
27762 (define-public rust-synstructure-0.12
27763 (package
27764 (name "rust-synstructure")
27765 (version "0.12.3")
27766 (source
27767 (origin
27768 (method url-fetch)
27769 (uri (crate-uri "synstructure" version))
27770 (file-name
27771 (string-append name "-" version ".tar.gz"))
27772 (sha256
27773 (base32
27774 "0igmc5fzpk6fg7kgff914j05lbpc6ai2wmji312v2h8vvjhnwrb7"))))
27775 (build-system cargo-build-system)
27776 (arguments
27777 `(#:skip-build? #t
27778 #:cargo-inputs
27779 (("rust-unicode-xid" ,rust-unicode-xid-0.2)
27780 ("rust-proc-macro2" ,rust-proc-macro2-1)
27781 ("rust-syn" ,rust-syn-1)
27782 ("rust-quote" ,rust-quote-1))))
27783 (home-page "https://github.com/mystor/synstructure")
27784 (synopsis "Helper methods and macros for custom derives")
27785 (description
27786 "This package provides helper methods and macros for custom derives.")
27787 (license license:expat)))
27788
27789 (define-public rust-synstructure-0.10
27790 (package
27791 (name "rust-synstructure")
27792 (version "0.10.2")
27793 (source
27794 (origin
27795 (method url-fetch)
27796 (uri (crate-uri "synstructure" version))
27797 (file-name
27798 (string-append name "-" version ".tar.gz"))
27799 (sha256
27800 (base32
27801 "0grirdkgh2wl4hf9a3nbiazpgccxgq54kn52ms0xrr6njvgkwd82"))))
27802 (build-system cargo-build-system)
27803 (arguments
27804 `(#:cargo-inputs
27805 (("rust-proc-macro2" ,rust-proc-macro2-0.4)
27806 ("rust-quote" ,rust-quote-0.6)
27807 ("rust-syn" ,rust-syn-0.15)
27808 ("rust-unicode-xid" ,rust-unicode-xid-0.1))
27809 #:cargo-development-inputs
27810 (("rust-synstructure-test-traits" ,rust-synstructure-test-traits-0.1))))
27811 (home-page "https://github.com/mystor/synstructure")
27812 (synopsis "Helper methods and macros for custom derives")
27813 (description
27814 "Helper methods and macros for custom derives.")
27815 (license license:expat)))
27816
27817 (define-public rust-synstructure-test-traits-0.1
27818 (package
27819 (name "rust-synstructure-test-traits")
27820 (version "0.1.0")
27821 (source
27822 (origin
27823 (method url-fetch)
27824 (uri (crate-uri "synstructure_test_traits" version))
27825 (file-name (string-append name "-" version ".crate"))
27826 (sha256
27827 (base32
27828 "1b3fs2b9kc1gy9dilaxqjbdl4z0mlrbbxjzkprdx953rif1c3q66"))))
27829 (build-system cargo-build-system)
27830 (home-page "https://crates.io/crates/synstructure_test_traits")
27831 (synopsis "Helper test traits for synstructure doctests")
27832 (description
27833 "This package provides helper test traits for synstructure doctests.")
27834 (license license:expat)))
27835
27836 (define-public rust-syntect-3.3
27837 (package
27838 (name "rust-syntect")
27839 (version "3.3.0")
27840 (source
27841 (origin
27842 (method url-fetch)
27843 (uri (crate-uri "syntect" version))
27844 (file-name
27845 (string-append name "-" version ".tar.gz"))
27846 (sha256
27847 (base32
27848 "1f6qn1yy15b0hq9h6q1rikqnm3lh56ic6bq3ywsmdsjy8ni9splm"))))
27849 (build-system cargo-build-system)
27850 (arguments
27851 `(#:skip-build? #t
27852 #:cargo-inputs
27853 (("rust-plist" ,rust-plist-0.4)
27854 ("rust-yaml-rust" ,rust-yaml-rust-0.4)
27855 ("rust-regex-syntax" ,rust-regex-syntax-0.6)
27856 ("rust-serde" ,rust-serde-1)
27857 ("rust-serde-derive" ,rust-serde-derive-1)
27858 ("rust-flate2" ,rust-flate2-1)
27859 ("rust-serde-json" ,rust-serde-json-1)
27860 ("rust-fnv" ,rust-fnv-1)
27861 ("rust-bitflags" ,rust-bitflags-1)
27862 ("rust-lazycell" ,rust-lazycell-1)
27863 ("rust-bincode" ,rust-bincode-1)
27864 ("rust-lazy-static" ,rust-lazy-static-1)
27865 ("rust-walkdir" ,rust-walkdir-2)
27866 ("rust-onig" ,rust-onig-5.0))))
27867 (home-page "https://github.com/trishume/syntect")
27868 (synopsis "Library for syntax highlighting and code intelligence")
27869 (description
27870 "This package provides a library for syntax highlighting and code
27871 intelligence using Sublime Text's grammars.")
27872 (license license:expat)))
27873
27874 (define-public rust-syntex-0.58
27875 (package
27876 (name "rust-syntex")
27877 (version "0.58.1")
27878 (source
27879 (origin
27880 (method url-fetch)
27881 (uri (crate-uri "syntex" version))
27882 (file-name
27883 (string-append name "-" version ".tar.gz"))
27884 (sha256
27885 (base32
27886 "03lgd36cxhc6gzaab0wqvckbhml00s6s73lk34ymf6cklymf7xd8"))))
27887 (build-system cargo-build-system)
27888 (arguments
27889 `(#:skip-build? #t
27890 #:cargo-inputs
27891 (("rust-syntex-errors" ,rust-syntex-errors-0.58)
27892 ("rust-syntex-syntax" ,rust-syntex-syntax-0.58))))
27893 (home-page "https://github.com/erickt/rust-syntex")
27894 (synopsis "Compile time syntax extension expansion")
27895 (description
27896 "This package provides a library that enables compile time
27897 syntax extension expansion.")
27898 (license (list license:expat license:asl2.0))))
27899
27900 (define-public rust-syntex-errors-0.58
27901 (package
27902 (name "rust-syntex-errors")
27903 (version "0.58.1")
27904 (source
27905 (origin
27906 (method url-fetch)
27907 (uri (crate-uri "syntex_errors" version))
27908 (file-name
27909 (string-append name "-" version ".tar.gz"))
27910 (sha256
27911 (base32
27912 "176vma7sjv6li17q7dsilryac66b76zyis9ampmff2hlsz1caz46"))))
27913 (build-system cargo-build-system)
27914 (arguments
27915 `(#:skip-build? #t
27916 #:cargo-inputs
27917 (("rust-libc" ,rust-libc-0.2)
27918 ("rust-rustc-serialize" ,rust-rustc-serialize-0.3)
27919 ("rust-syntex-pos" ,rust-syntex-pos-0.58)
27920 ("rust-term" ,rust-term-0.4)
27921 ("rust-unicode-xid" ,rust-unicode-xid-0.0))))
27922 (home-page "https://github.com/serde-rs/syntex")
27923 (synopsis "Backport of librustc_errors")
27924 (description "This package provides a backport of @code{librustc_errors}.")
27925 (license (list license:expat license:asl2.0))))
27926
27927 (define-public rust-syntex-pos-0.58
27928 (package
27929 (name "rust-syntex-pos")
27930 (version "0.58.1")
27931 (source
27932 (origin
27933 (method url-fetch)
27934 (uri (crate-uri "syntex_pos" version))
27935 (file-name
27936 (string-append name "-" version ".tar.gz"))
27937 (sha256
27938 (base32
27939 "0iqhircpr723da1g97xrrj8smqqz3gxw91cf03sckasjzri4gb8k"))))
27940 (build-system cargo-build-system)
27941 (arguments
27942 `(#:cargo-inputs
27943 (("rust-rustc-serialize" ,rust-rustc-serialize-0.3))))
27944 (home-page "https://github.com/serde-rs/syntex")
27945 (synopsis "Backport of libsyntax_pos")
27946 (description "This package provides a backport of @code{libsyntax_pos}.")
27947 (license (list license:expat license:asl2.0))))
27948
27949 (define-public rust-syntex-syntax-0.58
27950 (package
27951 (name "rust-syntex-syntax")
27952 (version "0.58.1")
27953 (source
27954 (origin
27955 (method url-fetch)
27956 (uri (crate-uri "syntex_syntax" version))
27957 (file-name
27958 (string-append name "-" version ".tar.gz"))
27959 (sha256
27960 (base32
27961 "14f74l7yzwl6fr9i23k4j23k66qn0gakvhk4jjc9ipb3w6x4s3kf"))))
27962 (build-system cargo-build-system)
27963 (arguments
27964 `(#:skip-build? #t
27965 #:cargo-inputs
27966 (("rust-bitflags" ,rust-bitflags-0.8)
27967 ("rust-log" ,rust-log-0.3)
27968 ("rust-rustc-serialize" ,rust-rustc-serialize-0.3)
27969 ("rust-syntex-errors" ,rust-syntex-errors-0.58)
27970 ("rust-syntex-pos" ,rust-syntex-pos-0.58)
27971 ("rust-unicode-xid" ,rust-unicode-xid-0.0))))
27972 (home-page "https://github.com/serde-rs/syntex")
27973 (synopsis "Backport of libsyntax")
27974 (description "This package provides a backport of libsyntax.")
27975 (license (list license:expat license:asl2.0))))
27976
27977 (define-public rust-sysctl-0.4
27978 (package
27979 (name "rust-sysctl")
27980 (version "0.4.0")
27981 (source
27982 (origin
27983 (method url-fetch)
27984 (uri (crate-uri "sysctl" version))
27985 (file-name
27986 (string-append name "-" version ".tar.gz"))
27987 (sha256
27988 (base32
27989 "0p6bfjsw3v12nb2qsgm6r9klwb5qyh4w55zzmccv8r5aqb8g0085"))))
27990 (build-system cargo-build-system)
27991 (arguments
27992 `(#:skip-build? #t
27993 #:cargo-inputs
27994 (("rust-bitflags" ,rust-bitflags-1)
27995 ("rust-byteorder" ,rust-byteorder-1)
27996 ("rust-failure" ,rust-failure-0.1)
27997 ("rust-libc" ,rust-libc-0.2)
27998 ("rust-walkdir" ,rust-walkdir-2))))
27999 (home-page "https://github.com/johalun/sysctl-rs")
28000 (synopsis "Simplified interface to libc::sysctl")
28001 (description
28002 "Simplified interface to libc::sysctl.")
28003 (license license:expat)))
28004
28005 (define-public rust-sysctl-0.1
28006 (package
28007 (inherit rust-sysctl-0.4)
28008 (name "rust-sysctl")
28009 (version "0.1.4")
28010 (source
28011 (origin
28012 (method url-fetch)
28013 (uri (crate-uri "sysctl" version))
28014 (file-name
28015 (string-append name "-" version ".tar.gz"))
28016 (sha256
28017 (base32
28018 "10wxlk4nkzlxp4fg435jmdmfwl4hy0y4w2rcsgs634lvbp8pgksb"))))
28019 (arguments
28020 `(#:skip-build? #t ; Unsupported on Linux.
28021 #:cargo-inputs
28022 (("rust-byteorder" ,rust-byteorder-1)
28023 ("rust-errno" ,rust-errno-0.2)
28024 ("rust-libc" ,rust-libc-0.2))))))
28025
28026 (define-public rust-syslog-4.0
28027 (package
28028 (name "rust-syslog")
28029 (version "4.0.1")
28030 (source
28031 (origin
28032 (method url-fetch)
28033 (uri (crate-uri "syslog" version))
28034 (file-name
28035 (string-append name "-" version ".tar.gz"))
28036 (sha256
28037 (base32
28038 "09ykcbvwx8icvf303mqyz76ji8j6fgyyx97zpr23s788ni112r50"))))
28039 (build-system cargo-build-system)
28040 (arguments
28041 `(#:skip-build? #t
28042 #:cargo-inputs
28043 (("rust-time" ,rust-time-0.1)
28044 ("rust-error-chain" ,rust-error-chain-0.11)
28045 ("rust-libc" ,rust-libc-0.2)
28046 ("rust-log" ,rust-log-0.4))))
28047 (home-page "https://github.com/Geal/rust-syslog")
28048 (synopsis "Send log messages to syslog")
28049 (description "Send log messages to syslog.")
28050 (license license:expat)))
28051
28052 (define-public rust-syslog-3.3
28053 (package
28054 (name "rust-syslog")
28055 (version "3.3.0")
28056 (source
28057 (origin
28058 (method url-fetch)
28059 (uri (crate-uri "syslog" version))
28060 (file-name
28061 (string-append name "-" version ".tar.gz"))
28062 (sha256
28063 (base32
28064 "0hpdnk2zm6xawpz6fv6qbn0ncfm5p0wm5c6gq7yhaz2gvsnb1jdv"))))
28065 (build-system cargo-build-system)
28066 (arguments
28067 `(#:skip-build? #t
28068 #:cargo-inputs
28069 (("rust-time" ,rust-time-0.1)
28070 ("rust-libc" ,rust-libc-0.2)
28071 ("rust-log" ,rust-log-0.3)
28072 ("rust-unix-socket" ,rust-unix-socket-0.5))))
28073 (home-page "https://github.com/Geal/rust-syslog")
28074 (synopsis "Send log messages to syslog")
28075 (description "Send log messages to syslog.")
28076 (license license:expat)))
28077
28078 (define-public rust-take-mut-0.2
28079 (package
28080 (name "rust-take-mut")
28081 (version "0.2.2")
28082 (source
28083 (origin
28084 (method url-fetch)
28085 (uri (crate-uri "take_mut" version))
28086 (file-name (string-append name "-" version ".tar.gz"))
28087 (sha256
28088 (base32
28089 "0q2d7w6nd5bl7bay5csq065sjg8fw0jcx6hl1983cpzf25fh0r7p"))))
28090 (build-system cargo-build-system)
28091 (home-page "https://github.com/Sgeo/take_mut")
28092 (synopsis "Take a T from a &mut T temporarily")
28093 (description "This package lets you temporarily take a T from a &mut T.")
28094 (license license:expat)))
28095
28096 (define-public rust-takeable-option-0.4
28097 (package
28098 (name "rust-takeable-option")
28099 (version "0.4.0")
28100 (source
28101 (origin
28102 (method url-fetch)
28103 (uri (crate-uri "takeable-option" version))
28104 (file-name
28105 (string-append name "-" version ".tar.gz"))
28106 (sha256
28107 (base32
28108 "0hvd6vk4ksgg2y99498jw52ric4lxm0i6ygpzqm95gdrhvsxyynp"))))
28109 (build-system cargo-build-system)
28110 (home-page "https://docs.rs/takeable-option/")
28111 (synopsis "A small wrapper around option.")
28112 (description
28113 "This package provides a small wrapper around option.")
28114 (license (list license:asl2.0 license:expat))))
28115
28116 (define-public rust-tar-0.4
28117 (package
28118 (name "rust-tar")
28119 (version "0.4.26")
28120 (source
28121 (origin
28122 (method url-fetch)
28123 (uri (crate-uri "tar" version))
28124 (file-name (string-append name "-" version ".crate"))
28125 (sha256
28126 (base32
28127 "1lr6v3cpkfxd2lk5ll2jd8wr1xdskwj35smnh5sfb8xvzzxnn6dk"))))
28128 (build-system cargo-build-system)
28129 (arguments
28130 `(#:tests? #f ; Test tarballs not included in crate.
28131 #:cargo-inputs
28132 (("rust-filetime" ,rust-filetime-0.2)
28133 ("rust-libc" ,rust-libc-0.2)
28134 ("rust-redox-syscall" ,rust-redox-syscall-0.1)
28135 ("rust-xattr" ,rust-xattr-0.2))
28136 #:cargo-development-inputs
28137 (("rust-tempdir" ,rust-tempdir-0.3))))
28138 (home-page "https://github.com/alexcrichton/tar-rs")
28139 (synopsis "Tar file reading/writing for Rust")
28140 (description
28141 "This package provides a Rust implementation of a TAR file reader and
28142 writer. This library does not currently handle compression, but it is abstract
28143 over all I/O readers and writers. Additionally, great lengths are taken to
28144 ensure that the entire contents are never required to be entirely resident in
28145 memory all at once.")
28146 (license (list license:asl2.0
28147 license:expat))))
28148
28149 (define-public rust-target-build-utils-0.3
28150 (package
28151 (name "rust-target-build-utils")
28152 (version "0.3.1")
28153 (source
28154 (origin
28155 (method url-fetch)
28156 (uri (crate-uri "target_build_utils" version))
28157 (file-name
28158 (string-append name "-" version ".tar.gz"))
28159 (sha256
28160 (base32
28161 "0p7713x4bpbwi11l196z1mi8ym8qj1cdnab1mm2ffpm2wi516g81"))))
28162 (build-system cargo-build-system)
28163 (arguments
28164 `(#:cargo-inputs
28165 (("rust-phf" ,rust-phf-0.7)
28166 ("rust-serde-json" ,rust-serde-json-0.9)
28167 ("rust-phf-codegen" ,rust-phf-codegen-0.7))))
28168 (home-page "https://github.com/nagisa/target_build_utils.rs")
28169 (synopsis "Rust utility to handle TARGET environment variable")
28170 (description
28171 "Utility crate to handle the @code{TARGET} environment variable passed into
28172 @code{build.rs} scripts.")
28173 (license (list license:isc license:asl2.0))))
28174
28175 (define-public rust-target-lexicon-0.10
28176 (package
28177 (name "rust-target-lexicon")
28178 (version "0.10.0")
28179 (source
28180 (origin
28181 (method url-fetch)
28182 (uri (crate-uri "target-lexicon" version))
28183 (file-name
28184 (string-append name "-" version ".tar.gz"))
28185 (sha256
28186 (base32
28187 "17diw9c3d1vb5rmwwk2ghsyhfs0gj5jm78hrwxxhmd67vhw743mb"))))
28188 (build-system cargo-build-system)
28189 (arguments `(#:skip-build? #t))
28190 (home-page
28191 "https://github.com/CraneStation/target-lexicon")
28192 (synopsis
28193 "Targeting utilities for compilers and related tools")
28194 (description
28195 "Targeting utilities for compilers and related tools")
28196 (license license:asl2.0)))
28197
28198 (define-public rust-tempdir-0.3
28199 (package
28200 (name "rust-tempdir")
28201 (version "0.3.7")
28202 (source
28203 (origin
28204 (method url-fetch)
28205 (uri (crate-uri "tempdir" version))
28206 (file-name (string-append name "-" version ".crate"))
28207 (sha256
28208 (base32
28209 "1n5n86zxpgd85y0mswrp5cfdisizq2rv3la906g6ipyc03xvbwhm"))))
28210 (build-system cargo-build-system)
28211 (arguments
28212 `(#:cargo-inputs
28213 (("rust-rand" ,rust-rand-0.4)
28214 ("rust-remove-dir-all" ,rust-remove-dir-all-0.5))))
28215 (home-page "https://github.com/rust-lang-deprecated/tempdir")
28216 (synopsis "Temporary directory management for Rust")
28217 (description
28218 "This package provides a library for managing a temporary directory and
28219 deleting all contents when it's dropped.")
28220 (license (list license:asl2.0
28221 license:expat))))
28222
28223 (define-public rust-tempfile-3
28224 (package
28225 (name "rust-tempfile")
28226 (version "3.1.0")
28227 (source
28228 (origin
28229 (method url-fetch)
28230 (uri (crate-uri "tempfile" version))
28231 (file-name (string-append name "-" version ".crate"))
28232 (sha256
28233 (base32
28234 "1a9cfdqw70n7bcnkx05aih9xdba8lqazmqlkjpkmn2la6gcj8vks"))))
28235 (build-system cargo-build-system)
28236 (arguments
28237 `(#:skip-build? #t
28238 #:cargo-inputs
28239 (("rust-cfg-if" ,rust-cfg-if-0.1)
28240 ("rust-libc" ,rust-libc-0.2)
28241 ("rust-rand" ,rust-rand-0.7)
28242 ("rust-redox-syscall" ,rust-redox-syscall-0.1)
28243 ("rust-remove-dir-all" ,rust-remove-dir-all-0.5)
28244 ("rust-winapi" ,rust-winapi-0.3))))
28245 (home-page "https://stebalien.com/projects/tempfile-rs")
28246 (synopsis "Library for managing temporary files and directories")
28247 (description
28248 "This package provides a library for managing temporary files and
28249 directories.")
28250 (license (list license:asl2.0
28251 license:expat))))
28252
28253 (define-public rust-tempfile-2
28254 (package
28255 (inherit rust-tempfile-3)
28256 (name "rust-tempfile")
28257 (version "2.2.0")
28258 (source
28259 (origin
28260 (method url-fetch)
28261 (uri (crate-uri "tempfile" version))
28262 (file-name (string-append name "-" version ".tar.gz"))
28263 (sha256
28264 (base32
28265 "1q61byf232rra0vqxp4qp10wwwqsqqd45qjj80ql5f34vgljzkhi"))))
28266 (build-system cargo-build-system)
28267 (arguments
28268 `(#:cargo-inputs
28269 (("rust-kernel32-sys" ,rust-kernel32-sys-0.2)
28270 ("rust-libc" ,rust-libc-0.2)
28271 ("rust-rand" ,rust-rand-0.3)
28272 ("rust-redox-syscall" ,rust-redox-syscall-0.1)
28273 ("rust-winapi" ,rust-winapi-0.2))))))
28274
28275 (define-public rust-tendril-0.4
28276 (package
28277 (name "rust-tendril")
28278 (version "0.4.1")
28279 (source
28280 (origin
28281 (method url-fetch)
28282 (uri (crate-uri "tendril" version))
28283 (file-name
28284 (string-append name "-" version ".tar.gz"))
28285 (sha256
28286 (base32
28287 "0fsx7blrrzgca8aa2yqy8zxyi8s7amskhgkk1ml5sbaqyalyszvh"))))
28288 (build-system cargo-build-system)
28289 (arguments
28290 `(#:skip-build? #t
28291 #:cargo-inputs
28292 (("rust-encoding" ,rust-encoding-0.2)
28293 ("rust-encoding-rs" ,rust-encoding-rs-0.8)
28294 ("rust-futf" ,rust-futf-0.1)
28295 ("rust-mac" ,rust-mac-0.1)
28296 ("rust-utf-8" ,rust-utf-8-0.7))
28297 #:cargo-development-inputs
28298 (("rust-rand" ,rust-rand-0.4))))
28299 (home-page "https://github.com/servo/tendril")
28300 (synopsis "Compact buffer/string type for zero-copy parsing")
28301 (description
28302 "Compact buffer/string type for zero-copy parsing.")
28303 (license (list license:expat license:asl2.0))))
28304
28305 (define-public rust-term-0.6
28306 (package
28307 (name "rust-term")
28308 (version "0.6.1")
28309 (source
28310 (origin
28311 (method url-fetch)
28312 (uri (crate-uri "term" version))
28313 (file-name
28314 (string-append name "-" version ".tar.gz"))
28315 (sha256
28316 (base32
28317 "1ddqxq9hrk8zqq1f8pqhz72vrlfc8vh2xcza2gb623z78lrkm1n0"))))
28318 (build-system cargo-build-system)
28319 (arguments
28320 `(#:cargo-inputs
28321 (("rust-dirs" ,rust-dirs-2.0)
28322 ("rust-winapi" ,rust-winapi-0.3))))
28323 (home-page "https://github.com/Stebalien/term")
28324 (synopsis "Terminal formatting library")
28325 (description
28326 "This package provides a terminal formatting library.")
28327 (license (list license:expat license:asl2.0))))
28328
28329 (define-public rust-term-0.5
28330 (package
28331 (inherit rust-term-0.6)
28332 (name "rust-term")
28333 (version "0.5.2")
28334 (source
28335 (origin
28336 (method url-fetch)
28337 (uri (crate-uri "term" version))
28338 (file-name
28339 (string-append name "-" version ".tar.gz"))
28340 (sha256
28341 (base32
28342 "0hkgjrfisj6zjwz525639pmsvzhlc48a0h65nw87qrdp6jihdlgd"))))
28343 (arguments
28344 `(#:cargo-inputs
28345 (("rust-byteorder" ,rust-byteorder-1)
28346 ("rust-dirs" ,rust-dirs-1.0)
28347 ("rust-winapi" ,rust-winapi-0.3))))))
28348
28349 (define-public rust-term-0.4
28350 (package
28351 (inherit rust-term-0.6)
28352 (name "rust-term")
28353 (version "0.4.6")
28354 (source
28355 (origin
28356 (method url-fetch)
28357 (uri (crate-uri "term" version))
28358 (file-name (string-append name "-" version ".crate"))
28359 (sha256
28360 (base32
28361 "1wbh8ngqkqr3f6wz902yplf60bd5yapnckvrkgmzp5nffi7n8qzs"))))
28362 (arguments
28363 `(#:cargo-inputs
28364 (("rust-kernel32-sys" ,rust-kernel32-sys-0.2)
28365 ("rust-winapi" ,rust-winapi-0.2))))))
28366
28367 (define-public rust-term-0.2
28368 (package/inherit rust-term-0.4
28369 (name "rust-term")
28370 (version "0.2.14")
28371 (source
28372 (origin
28373 (method url-fetch)
28374 (uri (crate-uri "term" version))
28375 (file-name (string-append name "-" version ".crate"))
28376 (sha256
28377 (base32 "109jmzddq1kz6wm2ndgddy7yrlqcw2i36ygxl0fcymc0sda7w1zj"))))
28378 (arguments
28379 `(#:cargo-inputs
28380 (("rust-kernel32-sys" ,rust-kernel32-sys-0.2)
28381 ("rust-winapi" ,rust-winapi-0.2))))))
28382
28383 (define-public rust-term-grid-0.1
28384 (package
28385 (name "rust-term-grid")
28386 (version "0.1.7")
28387 (source
28388 (origin
28389 (method url-fetch)
28390 (uri (crate-uri "term_grid" version))
28391 (file-name
28392 (string-append name "-" version ".tar.gz"))
28393 (sha256
28394 (base32
28395 "1kq2sy3b8329jrsrpcvijvyz4gbqjyvyy6c3n0wmmvda9y03w393"))))
28396 (build-system cargo-build-system)
28397 (arguments
28398 `(#:cargo-inputs
28399 (("rust-unicode-width" ,rust-unicode-width-0.1))))
28400 (home-page "https://github.com/ogham/rust-term-grid")
28401 (synopsis "Library for formatting strings into a grid layout")
28402 (description "This package provides a library for formatting strings into a
28403 grid layout.")
28404 (license license:expat)))
28405
28406 (define-public rust-term-size-1.0
28407 (package
28408 (name "rust-term-size")
28409 (version "1.0.0-beta1")
28410 (source
28411 (origin
28412 (method url-fetch)
28413 (uri (crate-uri "term_size" version))
28414 (file-name
28415 (string-append name "-" version ".tar.gz"))
28416 (sha256
28417 (base32
28418 "13w9cqjhzh3mmx6zami8lxyf42xx53yy866zxhxqcm71k637v8d8"))))
28419 (build-system cargo-build-system)
28420 (arguments
28421 `(#:skip-build? #t
28422 #:cargo-inputs
28423 (("rust-clippy" ,rust-clippy-0.0)
28424 ("rust-kernel32-sys" ,rust-kernel32-sys-0.2)
28425 ("rust-libc" ,rust-libc-0.2)
28426 ("rust-winapi" ,rust-winapi-0.3))))
28427 (home-page "https://github.com/clap-rs/term_size-rs")
28428 (synopsis "Determine terminal sizes and dimensions")
28429 (description
28430 "Functions for determining terminal sizes and dimensions")
28431 (license (list license:asl2.0 license:expat))))
28432
28433 (define-public rust-term-size-0.3
28434 (package
28435 (inherit rust-term-size-1.0)
28436 (name "rust-term-size")
28437 (version "0.3.2")
28438 (source
28439 (origin
28440 (method url-fetch)
28441 (uri (crate-uri "term_size" version))
28442 (file-name
28443 (string-append name "-" version ".tar.gz"))
28444 (sha256
28445 (base32
28446 "1n885cykajsppx86xl7d0dqkgmgsp8v914lvs12qzvd0dij2jh8y"))))
28447 (arguments
28448 `(#:cargo-inputs
28449 (("rust-libc" ,rust-libc-0.2)
28450 ("rust-winapi" ,rust-winapi-0.3))))))
28451
28452 (define-public rust-termcolor-1
28453 (package
28454 (name "rust-termcolor")
28455 (version "1.1.0")
28456 (source
28457 (origin
28458 (method url-fetch)
28459 (uri (crate-uri "termcolor" version))
28460 (file-name (string-append name "-" version ".crate"))
28461 (sha256
28462 (base32
28463 "0pyp8vc0gx7124y80ixdl6plbfn1yjhw04i875k5fz2dk8lglsxv"))))
28464 (build-system cargo-build-system)
28465 (arguments
28466 `(#:cargo-inputs
28467 (("rust-winapi-util" ,rust-winapi-util-0.1))
28468 #:cargo-development-inputs
28469 (("rust-doc-comment" ,rust-doc-comment-0.3))))
28470 (home-page "https://github.com/BurntSushi/termcolor")
28471 (synopsis "Library for writing colored text to a terminal")
28472 (description "This package provides a simple cross platform library for
28473 writing colored text to a terminal.")
28474 (license (list license:unlicense
28475 license:expat))))
28476
28477 (define-public rust-terminal-size-0.1
28478 (package
28479 (name "rust-terminal-size")
28480 (version "0.1.13")
28481 (source
28482 (origin
28483 (method url-fetch)
28484 (uri (crate-uri "terminal-size" version))
28485 (file-name
28486 (string-append name "-" version ".tar.gz"))
28487 (sha256
28488 (base32
28489 "04qy9i0k3qkhl749xk30xga0l7w61rf4bj5zy0r44w3jijgws54s"))))
28490 (build-system cargo-build-system)
28491 (arguments
28492 `(#:tests? #f ; Tests expect access to /dev/stderr
28493 #:cargo-inputs
28494 (("rust-libc" ,rust-libc-0.2)
28495 ("rust-winapi" ,rust-winapi-0.3))))
28496 (home-page "https://github.com/eminence/terminal-size")
28497 (synopsis "Gets the size of your Linux or Windows terminal")
28498 (description
28499 "This package gets the size of your Linux or Windows terminal.")
28500 (license (list license:expat license:asl2.0))))
28501
28502 (define-public rust-terminfo-0.6
28503 (package
28504 (name "rust-terminfo")
28505 (version "0.6.1")
28506 (source
28507 (origin
28508 (method url-fetch)
28509 (uri (crate-uri "terminfo" version))
28510 (file-name
28511 (string-append name "-" version ".tar.gz"))
28512 (sha256
28513 (base32
28514 "17k8vqvicd6yg0iqmkjnxjhz8h8pknv86r03nq3f3ayjmxdhclcf"))))
28515 (build-system cargo-build-system)
28516 (arguments
28517 `(#:cargo-inputs
28518 (("rust-fnv" ,rust-fnv-1)
28519 ("rust-nom" ,rust-nom-4.2)
28520 ("rust-phf" ,rust-phf-0.7)
28521 ("rust-phf-codegen" ,rust-phf-codegen-0.7))))
28522 (home-page "https://github.com/meh/rust-terminfo")
28523 (synopsis "Terminal information")
28524 (description "Terminal capabilities with type-safe getters.")
28525 (license license:wtfpl2)))
28526
28527 (define-public rust-termion-1.5
28528 (package
28529 (name "rust-termion")
28530 (version "1.5.5")
28531 (source
28532 (origin
28533 (method url-fetch)
28534 (uri (crate-uri "termion" version))
28535 (file-name (string-append name "-" version ".crate"))
28536 (sha256
28537 (base32
28538 "01f9787d5nx445bqbj644v38bn0hl2swwjy9baz0dnbqi6fyqb62"))))
28539 (build-system cargo-build-system)
28540 (arguments
28541 `(#:tests? #f ; Tests want a terminal.
28542 #:cargo-inputs
28543 (("rust-libc" ,rust-libc-0.2)
28544 ("rust-numtoa" ,rust-numtoa-0.1)
28545 ("rust-redox-syscall" ,rust-redox-syscall-0.1)
28546 ("rust-redox-termios" ,rust-redox-termios-0.1))))
28547 (home-page "https://gitlab.redox-os.org/redox-os/termion")
28548 (synopsis "Library for manipulating terminals")
28549 (description
28550 "This package provides a bindless library for manipulating terminals.")
28551 (license license:expat)))
28552
28553 (define-public rust-termios-0.3
28554 (package
28555 (name "rust-termios")
28556 (version "0.3.1")
28557 (source
28558 (origin
28559 (method url-fetch)
28560 (uri (crate-uri "termios" version))
28561 (file-name (string-append name "-" version ".crate"))
28562 (sha256
28563 (base32
28564 "09any1p4jp4bphvb5ikagnvwjc3xn2djchy96nkpa782xb2j1dkj"))))
28565 (build-system cargo-build-system)
28566 (arguments
28567 `(#:cargo-inputs
28568 (("rust-libc" ,rust-libc-0.2))))
28569 (home-page "https://github.com/dcuddeback/termios-rs")
28570 (synopsis "Safe bindings for the termios library")
28571 (description
28572 "The termios crate provides safe bindings for the Rust programming language
28573 to the terminal I/O interface implemented by Unix operating systems. The safe
28574 bindings are a small wrapper around the raw C functions, which converts integer
28575 return values to @code{std::io::Result} to indicate success or failure.")
28576 (license license:expat)))
28577
28578 (define-public rust-termios-0.2
28579 (package
28580 (inherit rust-termios-0.3)
28581 (name "rust-termios")
28582 (version "0.2.2")
28583 (source
28584 (origin
28585 (method url-fetch)
28586 (uri (crate-uri "termios" version))
28587 (file-name (string-append name "-" version ".tar.gz"))
28588 (sha256
28589 (base32
28590 "0fk8nl0rmk43jrh6hjz6c6d83ri7l6fikag6lh0ffz3di9cwznfm"))))))
28591
28592 (define-public rust-test-assembler-0.1
28593 (package
28594 (name "rust-test-assembler")
28595 (version "0.1.5")
28596 (source
28597 (origin
28598 (method url-fetch)
28599 (uri (crate-uri "test-assembler" version))
28600 (file-name
28601 (string-append name "-" version ".tar.gz"))
28602 (sha256
28603 (base32
28604 "1sdx9hk0dk3z9crm8834ysyxsi92chls8arpd0gs796kis6lik2w"))))
28605 (build-system cargo-build-system)
28606 (arguments
28607 `(#:skip-build? #t
28608 #:cargo-inputs
28609 (("rust-byteorder" ,rust-byteorder-1))))
28610 (home-page "https://github.com/luser/rust-test-assembler")
28611 (synopsis "Build complex binary streams")
28612 (description
28613 "This package provides a set of types for building complex binary
28614 streams.")
28615 (license license:expat)))
28616
28617 (define-public rust-tester-0.5
28618 (package
28619 (name "rust-tester")
28620 (version "0.5.0")
28621 (source
28622 (origin
28623 (method url-fetch)
28624 (uri (crate-uri "tester" version))
28625 (file-name
28626 (string-append name "-" version ".tar.gz"))
28627 (sha256
28628 (base32
28629 "1xkgapz2i4j977f6kh1zp6sa5llbhy5vbnr6kfj8czsrdjr2r0ay"))))
28630 (build-system cargo-build-system)
28631 (arguments
28632 `(#:skip-build? #t
28633 #:cargo-inputs
28634 (("rust-getopts" ,rust-getopts-0.2)
28635 ("rust-libc" ,rust-libc-0.2)
28636 ("rust-term" ,rust-term-0.4))))
28637 (home-page
28638 "https://github.com/messense/rustc-test")
28639 (synopsis
28640 "Fork of Rust's test crate")
28641 (description
28642 "This package provides a fork of Rust's test crate that doesn't require
28643 unstable language features.")
28644 (license (list license:expat license:asl2.0))))
28645
28646 (define-public rust-textwrap-0.11
28647 (package
28648 (name "rust-textwrap")
28649 (version "0.11.0")
28650 (source
28651 (origin
28652 (method url-fetch)
28653 (uri (crate-uri "textwrap" version))
28654 (file-name (string-append name "-" version ".tar.gz"))
28655 (sha256
28656 (base32
28657 "0q5hky03ik3y50s9sz25r438bc4nwhqc6dqwynv4wylc807n29nk"))))
28658 (build-system cargo-build-system)
28659 (arguments
28660 `(#:skip-build? #t
28661 #:cargo-inputs
28662 (;("rust-hyphenation" ,rust-hyphenation-0.7)
28663 ("rust-term-size" ,rust-term-size-0.3)
28664 ("rust-unicode-width" ,rust-unicode-width-0.1))
28665 #:cargo-development-inputs
28666 (;("rust-lipsum" ,rust-lipsum-0.6)
28667 ("rust-rand" ,rust-rand-0.6)
28668 ("rust-rand-xorshift" ,rust-rand-xorshift-0.1)
28669 ("rust-version-sync" ,rust-version-sync-0.6))))
28670 (home-page "https://github.com/mgeisler/textwrap")
28671 (synopsis "Library for word wrapping, indenting, and dedenting strings")
28672 (description
28673 "Textwrap is a small library for word wrapping, indenting, and dedenting
28674 strings. You can use it to format strings (such as help and error messages)
28675 for display in commandline applications. It is designed to be efficient and
28676 handle Unicode characters correctly.")
28677 (license license:expat)))
28678
28679 (define-public rust-thin-slice-0.1
28680 (package
28681 (name "rust-thin-slice")
28682 (version "0.1.1")
28683 (source
28684 (origin
28685 (method url-fetch)
28686 (uri (crate-uri "thin-slice" version))
28687 (file-name
28688 (string-append name "-" version ".tar.gz"))
28689 (sha256
28690 (base32
28691 "0g4z51g3yarah89ijpakbwhrrknw6d7k3ry0m1zqcn3hbhiq3alf"))))
28692 (build-system cargo-build-system)
28693 (home-page "https://github.com/heycam/thin-slice")
28694 (synopsis
28695 "Owned slice that packs the slice storage into a single word when possible")
28696 (description
28697 "An owned slice that packs the slice storage into a single word when possible.")
28698 (license license:mpl2.0)))
28699
28700 (define-public rust-thiserror-1
28701 (package
28702 (name "rust-thiserror")
28703 (version "1.0.9")
28704 (source
28705 (origin
28706 (method url-fetch)
28707 (uri (crate-uri "thiserror" version))
28708 (file-name
28709 (string-append name "-" version ".tar.gz"))
28710 (sha256
28711 (base32
28712 "0zlp3kzjssl1ndqmn7cipqnyggq4851ghhqj4bfc4fxk2hc7sdbg"))))
28713 (build-system cargo-build-system)
28714 (arguments
28715 `(#:skip-build? #t
28716 #:cargo-inputs
28717 (("rust-thiserror-impl" ,rust-thiserror-impl-1.0))
28718 #:cargo-development-inputs
28719 (("rust-anyhow" ,rust-anyhow-1.0)
28720 ("rust-ref-cast" ,rust-ref-cast-1.0)
28721 ("rust-rustversion" ,rust-rustversion-1)
28722 ("rust-trybuild" ,rust-trybuild-1))))
28723 (home-page "https://github.com/dtolnay/thiserror")
28724 (synopsis "derive(Error)")
28725 (description "This package provides @code{derive(Error)} in Rust.")
28726 (license (list license:expat license:asl2.0))))
28727
28728 (define-public rust-thiserror-impl-1.0
28729 (package
28730 (name "rust-thiserror-impl")
28731 (version "1.0.9")
28732 (source
28733 (origin
28734 (method url-fetch)
28735 (uri (crate-uri "thiserror-impl" version))
28736 (file-name
28737 (string-append name "-" version ".tar.gz"))
28738 (sha256
28739 (base32
28740 "1vxzhb98pm5yrq9mmcz50bgpml35iyx7lwjgi4v89sq7ag92abpb"))))
28741 (build-system cargo-build-system)
28742 (arguments
28743 `(#:skip-build? #t
28744 #:cargo-inputs
28745 (("rust-proc-macro2" ,rust-proc-macro2-1)
28746 ("rust-quote" ,rust-quote-1)
28747 ("rust-syn" ,rust-syn-1))))
28748 (home-page "https://github.com/dtolnay/thiserror")
28749 (synopsis "Implementation detail of the thiserror crate")
28750 (description "This package provides an implementation detail of the
28751 @code{thiserror} crate.")
28752 (license (list license:expat license:asl2.0))))
28753
28754 (define-public rust-thread-id-3
28755 (package
28756 (name "rust-thread-id")
28757 (version "3.3.0")
28758 (source
28759 (origin
28760 (method url-fetch)
28761 (uri (crate-uri "thread-id" version))
28762 (file-name (string-append name "-" version ".crate"))
28763 (sha256
28764 (base32
28765 "1h90v19fjz3x9b25ywh68z5yf2zsmm6h5zb4rl302ckbsp4z9yy7"))))
28766 (build-system cargo-build-system)
28767 (arguments
28768 `(#:cargo-inputs
28769 (("rust-libc" ,rust-libc-0.2)
28770 ("rust-redox-syscall" ,rust-redox-syscall-0.1)
28771 ("rust-winapi" ,rust-winapi-0.3))))
28772 (home-page "https://github.com/ruuda/thread-id")
28773 (synopsis "Get a unique ID for the current thread in Rust")
28774 (description
28775 "For diagnostics and debugging it can often be useful to get an ID that is
28776 different for every thread.")
28777 (license (list license:asl2.0
28778 license:expat))))
28779
28780 (define-public rust-thread-id-2.0
28781 (package
28782 (inherit rust-thread-id-3)
28783 (name "rust-thread-id")
28784 (version "2.0.0")
28785 (source
28786 (origin
28787 (method url-fetch)
28788 (uri (crate-uri "thread-id" version))
28789 (file-name
28790 (string-append name "-" version ".tar.gz"))
28791 (sha256
28792 (base32
28793 "00zzs2bx1xw8aqm5plqqgr7bc2zz6zkqrdxq8vpiqb8hc2srslx9"))))
28794 (arguments
28795 `(#:cargo-inputs
28796 (("rust-kernel32-sys" ,rust-kernel32-sys-0.2)
28797 ("rust-libc" ,rust-libc-0.2))))))
28798
28799 (define-public rust-thread-local-1.0
28800 (package
28801 (name "rust-thread-local")
28802 (version "1.0.1")
28803 (source
28804 (origin
28805 (method url-fetch)
28806 (uri (crate-uri "thread_local" version))
28807 (file-name (string-append name "-" version ".crate"))
28808 (sha256
28809 (base32
28810 "054vlrr1vsdy1h4b7n99mr24pnj8928ig9qwzg36wnkld4dns36l"))))
28811 (build-system cargo-build-system)
28812 (arguments
28813 `(#:skip-build? #t
28814 #:cargo-inputs (("rust-lazy-static" ,rust-lazy-static-1))))
28815 (home-page "https://github.com/Amanieu/thread_local-rs")
28816 (synopsis "Per-object thread-local storage")
28817 (description "Per-object thread-local storage.")
28818 (license (list license:asl2.0
28819 license:expat))))
28820
28821 (define-public rust-thread-local-0.3
28822 (package
28823 (inherit rust-thread-local-1.0)
28824 (name "rust-thread-local")
28825 (version "0.3.6")
28826 (source
28827 (origin
28828 (method url-fetch)
28829 (uri (crate-uri "thread_local" version))
28830 (file-name (string-append name "-" version ".crate"))
28831 (sha256
28832 (base32
28833 "06rzik99p8c5js8238yhc8rk6np543ylb1dy9nrw5v80j0r3xdf6"))))
28834 (arguments
28835 `(#:skip-build? #t
28836 #:cargo-inputs (("rust-lazy-static" ,rust-lazy-static-1))))))
28837
28838 (define-public rust-thread-local-0.2
28839 (package
28840 (inherit rust-thread-local-0.3)
28841 (name "rust-thread-local")
28842 (version "0.2.7")
28843 (source
28844 (origin
28845 (method url-fetch)
28846 (uri (crate-uri "thread_local" version))
28847 (file-name
28848 (string-append name "-" version ".tar.gz"))
28849 (sha256
28850 (base32
28851 "1mgxikqvhpsic6xk7pan95lvgsky1sdxzw2w5m2l35pgrazxnxl5"))))
28852 (arguments
28853 `(#:cargo-inputs
28854 (("rust-thread-id" ,rust-thread-id-2.0))))))
28855
28856 (define-public rust-threadpool-1.7
28857 (package
28858 (name "rust-threadpool")
28859 (version "1.7.1")
28860 (source
28861 (origin
28862 (method url-fetch)
28863 (uri (crate-uri "threadpool" version))
28864 (file-name (string-append name "-" version ".crate"))
28865 (sha256
28866 (base32
28867 "0rd89n1q7vy47w4c32cnynibffv9kj3jy3dwr0536n9lbw5ckw72"))))
28868 (build-system cargo-build-system)
28869 (arguments
28870 `(#:cargo-inputs
28871 (("rust-num-cpus" ,rust-num-cpus-1))))
28872 (home-page "https://github.com/rust-threadpool/rust-threadpool")
28873 (synopsis "Thread pool for running jobs on a fixed set of worker threads")
28874 (description
28875 "This package provides a thread pool for running a number of jobs on a
28876 fixed set of worker threads.")
28877 (license (list license:asl2.0
28878 license:expat))))
28879
28880 (define-public rust-thrussh-libsodium-0.1
28881 (package
28882 (name "rust-thrussh-libsodium")
28883 (version "0.1.4")
28884 (source
28885 (origin
28886 (method url-fetch)
28887 (uri (crate-uri "thrussh-libsodium" version))
28888 (file-name
28889 (string-append name "-" version ".tar.gz"))
28890 (sha256
28891 (base32
28892 "0fjssjiwnmbxjvajk37l7k0fcw1ys97j7n8bpn3q3bbnz2qfrphv"))))
28893 (build-system cargo-build-system)
28894 (arguments
28895 `(#:cargo-inputs
28896 (("rust-libc" ,rust-libc-0.2)
28897 ("rust-pkg-config" ,rust-pkg-config-0.3))))
28898 (native-inputs
28899 `(("pkg-config" ,pkg-config)))
28900 (inputs
28901 `(("libsodium" ,libsodium)))
28902 (home-page "https://nest.pijul.com/pijul_org/thrussh")
28903 (synopsis "Straightforward bindings to libsodium")
28904 (description
28905 "You can bind to libsodium from Rust with this crate.")
28906 (license (list license:asl2.0 license:expat))))
28907
28908 (define-public rust-time-0.2
28909 (package
28910 (name "rust-time")
28911 (version "0.2.19")
28912 (source
28913 (origin
28914 (method url-fetch)
28915 (uri (crate-uri "time" version))
28916 (file-name (string-append name "-" version ".tar.gz"))
28917 (sha256
28918 (base32
28919 "18bhl0nmfyd8drksskw830ybw9pr47pisfn4245wabqijgys3hc0"))))
28920 (build-system cargo-build-system)
28921 (arguments
28922 `(#:cargo-inputs
28923 (("rust-const-fn" ,rust-const-fn-0.4)
28924 ("rust-libc" ,rust-libc-0.2)
28925 ("rust-rand" ,rust-rand-0.7)
28926 ("rust-serde" ,rust-serde-1)
28927 ("rust-standback" ,rust-standback-0.2)
28928 ("rust-stdweb" ,rust-stdweb-0.4)
28929 ("rust-time-macros" ,rust-time-macros-0.1)
28930 ("rust-winapi" ,rust-winapi-0.3))
28931 #:cargo-development-inputs
28932 (("rust-version-check" ,rust-version-check-0.9))))
28933 (home-page "https://github.com/time-rs/time")
28934 (synopsis "Date and time library")
28935 (description "This package provides a date and time library. It is fully
28936 interoperable with the standard library, and is mostly compatible with
28937 @code{#![no_std]}.")
28938 (license (list license:expat license:asl2.0))))
28939
28940 (define-public rust-time-0.1
28941 (package
28942 (name "rust-time")
28943 (version "0.1.43")
28944 (source
28945 (origin
28946 (method url-fetch)
28947 (uri (crate-uri "time" version))
28948 (file-name (string-append name "-" version ".crate"))
28949 (sha256
28950 (base32
28951 "0f14wrgxj7ya2v4msg5mni7046bsm2angm7cn3pd3yv04gpm12na"))))
28952 (build-system cargo-build-system)
28953 (arguments
28954 `(#:skip-build? #t
28955 #:cargo-inputs
28956 (("rust-libc" ,rust-libc-0.2)
28957 ("rust-redox-syscall" ,rust-redox-syscall-0.1)
28958 ("rust-rustc-serialize" ,rust-rustc-serialize-0.3)
28959 ("rust-winapi" ,rust-winapi-0.3))
28960 #:cargo-development-inputs
28961 (("rust-log" ,rust-log-0.4)
28962 ("rust-winapi" ,rust-winapi-0.3))))
28963 (home-page "https://github.com/time-rs/time")
28964 (synopsis "Simple time handling in Rust")
28965 (description
28966 "This package provides utilities for working with time-related functions
28967 in Rust.")
28968 (license (list license:asl2.0
28969 license:expat))))
28970
28971 (define-public rust-time-macros-0.1
28972 (package
28973 (name "rust-time-macros")
28974 (version "0.1.0")
28975 (source
28976 (origin
28977 (method url-fetch)
28978 (uri (crate-uri "time-macros" version))
28979 (file-name (string-append name "-" version ".tar.gz"))
28980 (sha256
28981 (base32
28982 "0bdbxjgbxb81xgy08h5dh4qvwy95sy9x8g1y31g11g4my3lvdscs"))))
28983 (build-system cargo-build-system)
28984 (arguments
28985 `(#:cargo-inputs
28986 (("rust-proc-macro-hack" ,rust-proc-macro-hack-0.5)
28987 ("rust-time-macros-impl" ,rust-time-macros-impl-0.1))))
28988 (home-page "https://github.com/time-rs/time")
28989 (synopsis "Procedural macros for the time crate")
28990 (description "This package provides procedural macros for the time
28991 crate.")
28992 (license (list license:expat license:asl2.0))))
28993
28994 (define-public rust-time-macros-impl-0.1
28995 (package
28996 (name "rust-time-macros-impl")
28997 (version "0.1.1")
28998 (source
28999 (origin
29000 (method url-fetch)
29001 (uri (crate-uri "time-macros-impl" version))
29002 (file-name (string-append name "-" version ".tar.gz"))
29003 (sha256
29004 (base32
29005 "1ymqhvnvry3giiw45xvarlgagl8hnd6cz4alkz32fq5dvwgbxhz5"))))
29006 (build-system cargo-build-system)
29007 (arguments
29008 `(#:cargo-inputs
29009 (("rust-proc-macro-hack" ,rust-proc-macro-hack-0.5)
29010 ("rust-proc-macro2" ,rust-proc-macro2-1)
29011 ("rust-quote" ,rust-quote-1)
29012 ("rust-standback" ,rust-standback-0.2)
29013 ("rust-syn" ,rust-syn-1))))
29014 (home-page "https://github.com/time-rs/time")
29015 (synopsis "Procedural macros for the time crate")
29016 (description "This package provides procedural macros for the time
29017 crate.")
29018 (license (list license:expat license:asl2.0))))
29019
29020 (define-public rust-timebomb-0.1
29021 (package
29022 (name "rust-timebomb")
29023 (version "0.1.2")
29024 (source
29025 (origin
29026 (method url-fetch)
29027 (uri (crate-uri "timebomb" version))
29028 (file-name (string-append name "-" version ".tar.gz"))
29029 (sha256
29030 (base32
29031 "0fl8bxi9bf5bv44i1afii63695cx4jlki869v0kp01ipnvs8c23z"))))
29032 (build-system cargo-build-system)
29033 (arguments
29034 `(#:cargo-inputs
29035 (("rust-pulse" ,rust-pulse-0.5)
29036 ("rust-time" ,rust-time-0.2))))
29037 (home-page "https://github.com/csherratt/timebomb")
29038 (synopsis "Timeout mechanism for unit tests")
29039 (description "This package provides a timeout mechanism for unit tests.")
29040 (license license:asl2.0)))
29041
29042 (define-public rust-tinytemplate-1
29043 (package
29044 (name "rust-tinytemplate")
29045 (version "1.1.0")
29046 (source
29047 (origin
29048 (method url-fetch)
29049 (uri (crate-uri "tinytemplate" version))
29050 (file-name
29051 (string-append name "-" version ".tar.gz"))
29052 (sha256
29053 (base32
29054 "0by1k1hdz6jgv4ykd0izirwsm6p3qb6s9g1jb4ffqg500ihcfgbd"))))
29055 (build-system cargo-build-system)
29056 (arguments
29057 `(#:skip-build? #t
29058 #:cargo-inputs
29059 (("rust-serde" ,rust-serde-1)
29060 ("rust-serde-json" ,rust-serde-json-1))
29061 #:cargo-development-inputs
29062 (("rust-criterion" ,rust-criterion-0.3)
29063 ("rust-serde-derive" ,rust-serde-derive-1))))
29064 (home-page "https://github.com/bheisler/TinyTemplate")
29065 (synopsis "Simple, lightweight template engine")
29066 (description
29067 "Simple, lightweight template engine.")
29068 (license (list license:asl2.0 license:expat))))
29069
29070 (define-public rust-tinyvec-0.3
29071 (package
29072 (name "rust-tinyvec")
29073 (version "0.3.4")
29074 (source
29075 (origin
29076 (method url-fetch)
29077 (uri (crate-uri "tinyvec" version))
29078 (file-name
29079 (string-append name "-" version ".tar.gz"))
29080 (sha256
29081 (base32
29082 "05vijqpckjsnbv07rwadwcny4pkcq7z1wi9ikl7p3ib7s9qy1313"))))
29083 (build-system cargo-build-system)
29084 (arguments
29085 `(#:cargo-development-inputs
29086 (("rust-criterion" ,rust-criterion-0.3))))
29087 (home-page "https://crates.io/crates/tinyvec")
29088 (synopsis "Tiny vec-like types for Rust")
29089 (description
29090 "A 100% safe crate of vec-like types.")
29091 (license (list license:zlib license:asl2.0 license:expat))))
29092
29093 (define-public rust-tokio-0.2
29094 (package
29095 (name "rust-tokio")
29096 (version "0.2.21")
29097 (source
29098 (origin
29099 (method url-fetch)
29100 (uri (crate-uri "tokio" version))
29101 (file-name (string-append name "-" version ".tar.gz"))
29102 (sha256
29103 (base32 "0n1dxsjv9fxv3kmr3nh4n8v8pqckwgdlls942msysavhp4kzm6fh"))))
29104 (build-system cargo-build-system)
29105 (arguments
29106 `(#:skip-build? #t
29107 #:cargo-inputs
29108 (("rust-bytes" ,rust-bytes-0.5)
29109 ("rust-fnv" ,rust-fnv-1)
29110 ("rust-futures-core" ,rust-futures-core-0.3)
29111 ("rust-iovec" ,rust-iovec-0.1)
29112 ("rust-lazy-static" ,rust-lazy-static-1)
29113 ("rust-libc" ,rust-libc-0.2)
29114 ("rust-memchr" ,rust-memchr-2)
29115 ("rust-mio" ,rust-mio-0.6)
29116 ("rust-mio-named-pipes" ,rust-mio-named-pipes-0.1)
29117 ("rust-mio-uds" ,rust-mio-uds-0.6)
29118 ("rust-num-cpus" ,rust-num-cpus-1)
29119 ("rust-parking-lot" ,rust-parking-lot-0.10)
29120 ("rust-pin-project-lite" ,rust-pin-project-lite-0.1)
29121 ("rust-signal-hook-registry" ,rust-signal-hook-registry-1)
29122 ("rust-slab" ,rust-slab-0.4)
29123 ("rust-tokio-macros" ,rust-tokio-macros-0.2)
29124 ("rust-winapi" ,rust-winapi-0.3))
29125 #:cargo-development-inputs
29126 (("rust-futures" ,rust-futures-0.3)
29127 ("rust-loom" ,rust-loom-0.3)
29128 ("rust-proptest" ,rust-proptest-0.9)
29129 ("rust-tempfile" ,rust-tempfile-3)
29130 ("rust-tokio-test" ,rust-tokio-test-0.2))))
29131 (home-page "https://tokio.rs")
29132 (synopsis "Event-driven, non-blocking I/O platform")
29133 (description
29134 "An event-driven, non-blocking I/O platform for writing asynchronous I/O
29135 backed applications.")
29136 (license license:expat)))
29137
29138 (define-public rust-tokio-0.1
29139 (package
29140 (name "rust-tokio")
29141 (version "0.1.21")
29142 (source
29143 (origin
29144 (method url-fetch)
29145 (uri (crate-uri "tokio" version))
29146 (file-name
29147 (string-append name "-" version ".tar.gz"))
29148 (sha256
29149 (base32
29150 "11ra8jp3fj70a2zrqmd6as7wgpwiiyzjf50gz89i8r7wpksgqbzc"))))
29151 (build-system cargo-build-system)
29152 (arguments
29153 `(#:cargo-inputs
29154 (("rust-bytes" ,rust-bytes-0.4)
29155 ("rust-futures" ,rust-futures-0.1)
29156 ("rust-mio" ,rust-mio-0.6)
29157 ("rust-miow" ,rust-miow-0.3)
29158 ("rust-num-cpus" ,rust-num-cpus-1)
29159 ("rust-tokio-codec" ,rust-tokio-codec-0.1)
29160 ("rust-tokio-current-thread" ,rust-tokio-current-thread-0.1)
29161 ("rust-tokio-executor" ,rust-tokio-executor-0.1)
29162 ("rust-tokio-fs" ,rust-tokio-fs-0.1)
29163 ("rust-tokio-io" ,rust-tokio-io-0.1)
29164 ("rust-tokio-reactor" ,rust-tokio-reactor-0.1)
29165 ("rust-tokio-sync" ,rust-tokio-sync-0.1)
29166 ("rust-tokio-tcp" ,rust-tokio-tcp-0.1)
29167 ("rust-tokio-threadpool" ,rust-tokio-threadpool-0.1)
29168 ("rust-tokio-timer" ,rust-tokio-timer-0.2)
29169 ("rust-tokio-trace-core" ,rust-tokio-trace-core-0.2)
29170 ("rust-tokio-udp" ,rust-tokio-udp-0.1)
29171 ("rust-tokio-uds" ,rust-tokio-uds-0.2))
29172 #:cargo-development-inputs
29173 (("rust-env-logger" ,rust-env-logger-0.5)
29174 ("rust-flate2" ,rust-flate2-1)
29175 ("rust-futures-cpupool" ,rust-futures-cpupool-0.1)
29176 ("rust-http" ,rust-http-0.1)
29177 ("rust-httparse" ,rust-httparse-1)
29178 ("rust-libc" ,rust-libc-0.2)
29179 ("rust-num-cpus" ,rust-num-cpus-1)
29180 ("rust-serde" ,rust-serde-1)
29181 ("rust-serde-derive" ,rust-serde-derive-1)
29182 ("rust-serde-json" ,rust-serde-json-1)
29183 ("rust-time" ,rust-time-0.1))))
29184 (home-page "https://tokio.rs")
29185 (synopsis "Event-driven, non-blocking I/O platform")
29186 (description
29187 "An event-driven, non-blocking I/O platform for writing asynchronous I/O
29188 backed applications.")
29189 (license license:expat)))
29190
29191 (define-public rust-tokio-buf-0.1
29192 (package
29193 (name "rust-tokio-buf")
29194 (version "0.1.1")
29195 (source
29196 (origin
29197 (method url-fetch)
29198 (uri (crate-uri "tokio-buf" version))
29199 (file-name (string-append name "-" version ".tar.gz"))
29200 (sha256
29201 (base32 "0inwrkh8knqy44mr9h2i305zyy4pxhfy90y0gr5rm1akdks21clg"))))
29202 (build-system cargo-build-system)
29203 (arguments
29204 `(#:cargo-inputs
29205 (("rust-bytes" ,rust-bytes-0.4)
29206 ("rust-either" ,rust-either-1)
29207 ("rust-futures" ,rust-futures-0.1))
29208 #:cargo-development-inputs
29209 (("rust-tokio-mock-task" ,rust-tokio-mock-task-0.1))))
29210 (home-page "https://tokio.rs")
29211 (synopsis "Asynchronous stream of byte buffers")
29212 (description "Asynchronous stream of byte buffers")
29213 (license license:expat)))
29214
29215 ;; Cyclic dependency with tokio-io
29216 (define-public rust-tokio-codec-0.1
29217 (package
29218 (name "rust-tokio-codec")
29219 (version "0.1.1")
29220 (source
29221 (origin
29222 (method url-fetch)
29223 (uri (crate-uri "tokio-codec" version))
29224 (file-name
29225 (string-append name "-" version ".tar.gz"))
29226 (sha256
29227 (base32
29228 "17y3hi3dd0bdfkrzshx9qhwcf49xv9iynszj7iwy3w4nmz71wl2w"))))
29229 (build-system cargo-build-system)
29230 (arguments
29231 `(#:skip-build? #t
29232 #:cargo-inputs
29233 (("rust-bytes" ,rust-bytes-0.4)
29234 ("rust-futures" ,rust-futures-0.1)
29235 ("rust-tokio-io" ,rust-tokio-io-0.1))))
29236 (home-page "https://tokio.rs")
29237 (synopsis
29238 "Utilities for encoding and decoding frames")
29239 (description
29240 "Utilities for encoding and decoding frames.")
29241 (license license:expat)))
29242
29243 (define-public rust-tokio-core-0.1
29244 (package
29245 (name "rust-tokio-core")
29246 (version "0.1.17")
29247 (source
29248 (origin
29249 (method url-fetch)
29250 (uri (crate-uri "tokio-core" version))
29251 (file-name
29252 (string-append name "-" version ".tar.gz"))
29253 (sha256
29254 (base32
29255 "0wbgg59mxfvrhzv97y56nh3gmnmw3jj9dhgkmvz27410jjxzpvxf"))))
29256 (build-system cargo-build-system)
29257 (arguments
29258 `(#:cargo-inputs
29259 (("rust-bytes" ,rust-bytes-0.4)
29260 ("rust-futures" ,rust-futures-0.1)
29261 ("rust-iovec" ,rust-iovec-0.1)
29262 ("rust-log" ,rust-log-0.4)
29263 ("rust-mio" ,rust-mio-0.6)
29264 ("rust-scoped-tls" ,rust-scoped-tls-0.1)
29265 ("rust-tokio" ,rust-tokio-0.1)
29266 ("rust-tokio-executor" ,rust-tokio-executor-0.1)
29267 ("rust-tokio-io" ,rust-tokio-io-0.1)
29268 ("rust-tokio-reactor" ,rust-tokio-reactor-0.1)
29269 ("rust-tokio-timer" ,rust-tokio-timer-0.2))
29270 #:cargo-development-inputs
29271 (("rust-env-logger" ,rust-env-logger-0.4)
29272 ("rust-flate2" ,rust-flate2-1)
29273 ("rust-futures-cpupool" ,rust-futures-cpupool-0.1)
29274 ("rust-http" ,rust-http-0.1)
29275 ("rust-httparse" ,rust-httparse-1)
29276 ("rust-libc" ,rust-libc-0.2)
29277 ("rust-num-cpus" ,rust-num-cpus-1)
29278 ("rust-serde" ,rust-serde-1)
29279 ("rust-serde-derive" ,rust-serde-derive-1)
29280 ("rust-serde-json" ,rust-serde-json-1)
29281 ("rust-time" ,rust-time-0.1))))
29282 (home-page "https://tokio.rs")
29283 (synopsis
29284 "Core I/O and event loop primitives for asynchronous I/O in Rust")
29285 (description
29286 "Core I/O and event loop primitives for asynchronous I/O in Rust.
29287 Foundation for the rest of the tokio crates.")
29288 (license (list license:expat license:asl2.0))))
29289
29290 (define-public rust-tokio-current-thread-0.1
29291 (package
29292 (name "rust-tokio-current-thread")
29293 (version "0.1.6")
29294 (source
29295 (origin
29296 (method url-fetch)
29297 (uri (crate-uri "tokio-current-thread" version))
29298 (file-name
29299 (string-append name "-" version ".tar.gz"))
29300 (sha256
29301 (base32
29302 "0hx4c8v88kk0ih8x5s564gsgwwf8n11kryvxm72l1f7isz51fqni"))))
29303 (build-system cargo-build-system)
29304 (arguments
29305 `(#:skip-build? #t
29306 #:cargo-inputs
29307 (("rust-futures" ,rust-futures-0.1)
29308 ("rust-tokio-executor" ,rust-tokio-executor-0.1))))
29309 (home-page "https://github.com/tokio-rs/tokio")
29310 (synopsis
29311 "Manage many tasks concurrently on the current thread")
29312 (description
29313 "Single threaded executor which manage many tasks concurrently on
29314 the current thread.")
29315 (license license:expat)))
29316
29317 (define-public rust-tokio-executor-0.2
29318 (package
29319 (name "rust-tokio-executor")
29320 (version "0.2.0-alpha.6")
29321 (source
29322 (origin
29323 (method url-fetch)
29324 (uri (crate-uri "tokio-executor" version))
29325 (file-name (string-append name "-" version ".tar.gz"))
29326 (sha256
29327 (base32
29328 "1j67p4g9y20bvlbphjmpfzc0yy8clhmz6wza6hw94iciyvncxscy"))))
29329 (build-system cargo-build-system)
29330 (arguments
29331 `(#:cargo-inputs
29332 (("rust-crossbeam-channel" ,rust-crossbeam-channel-0.3)
29333 ("rust-crossbeam-deque" ,rust-crossbeam-deque-0.7)
29334 ("rust-crossbeam-queue" ,rust-crossbeam-queue-0.1)
29335 ("rust-crossbeam-utils" ,rust-crossbeam-utils-0.6)
29336 ("rust-futures-core-preview" ,rust-futures-core-preview-0.3)
29337 ("rust-futures-util-preview" ,rust-futures-util-preview-0.3)
29338 ("rust-lazy-static" ,rust-lazy-static-1)
29339 ("rust-num-cpus" ,rust-num-cpus-1)
29340 ("rust-slab" ,rust-slab-0.4)
29341 ("rust-tokio-sync" ,rust-tokio-sync-0.2)
29342 ("rust-tracing" ,rust-tracing-0.1))))
29343 (home-page "https://github.com/tokio-rs/tokio")
29344 (synopsis "Future execution primitives")
29345 (description "This package provides future execution primitives.")
29346 (license license:expat)))
29347
29348 ;; Cyclic dependency with rust-tokio.
29349 (define-public rust-tokio-executor-0.1
29350 (package
29351 (name "rust-tokio-executor")
29352 (version "0.1.7")
29353 (source
29354 (origin
29355 (method url-fetch)
29356 (uri (crate-uri "tokio-executor" version))
29357 (file-name
29358 (string-append name "-" version ".tar.gz"))
29359 (sha256
29360 (base32
29361 "0pjmgpg58k3hf5q9w6xjljsv8xy66lf734qnfwsc0g3pq3349sl3"))))
29362 (build-system cargo-build-system)
29363 (arguments
29364 `(#:skip-build? #t
29365 #:cargo-inputs
29366 (("rust-crossbeam-utils" ,rust-crossbeam-utils-0.6)
29367 ("rust-futures" ,rust-futures-0.1))
29368 #:cargo-development-inputs
29369 (("rust-tokio" ,rust-tokio-0.1))))
29370 (home-page "https://github.com/tokio-rs/tokio")
29371 (synopsis "Future execution primitives")
29372 (description "Future execution primitives.")
29373 (license license:expat)))
29374
29375 (define-public rust-tokio-fs-0.1
29376 (package
29377 (name "rust-tokio-fs")
29378 (version "0.1.6")
29379 (source
29380 (origin
29381 (method url-fetch)
29382 (uri (crate-uri "tokio-fs" version))
29383 (file-name
29384 (string-append name "-" version ".tar.gz"))
29385 (sha256
29386 (base32
29387 "1bxp8585pi4j5g39ci2gkk99qnyilyhhila7cs8r6scdn0idrriz"))))
29388 (build-system cargo-build-system)
29389 (arguments
29390 `(#:skip-build? #t
29391 #:cargo-inputs
29392 (("rust-futures" ,rust-futures-0.1)
29393 ("rust-tokio-io" ,rust-tokio-io-0.1)
29394 ("rust-tokio-threadpool" ,rust-tokio-threadpool-0.1))
29395 #:cargo-development-inputs
29396 (("rust-rand" ,rust-rand-0.4)
29397 ("rust-tempdir" ,rust-tempdir-0.3)
29398 ("rust-tempfile" ,rust-tempfile-3)
29399 ("rust-tokio" ,rust-tokio-0.1)
29400 ("rust-tokio-codec" ,rust-tokio-codec-0.1)
29401 ("rust-tokio-io" ,rust-tokio-io-0.1))))
29402 (home-page "https://tokio.rs")
29403 (synopsis "File system API for Tokio")
29404 (description "File system API for Tokio.")
29405 (license license:expat)))
29406
29407 ;; Cyclic dependencies with tokio and tokio-current-thread
29408 (define-public rust-tokio-io-0.1
29409 (package
29410 (name "rust-tokio-io")
29411 (version "0.1.13")
29412 (source
29413 (origin
29414 (method url-fetch)
29415 (uri (crate-uri "tokio-io" version))
29416 (file-name
29417 (string-append name "-" version ".tar.gz"))
29418 (sha256
29419 (base32
29420 "0x06zyzinans1pn90g6i150lgixijdf1cg8y2gipjd09ms58dz2p"))))
29421 (build-system cargo-build-system)
29422 (arguments
29423 `(#:skip-build? #t
29424 #:cargo-inputs
29425 (("rust-bytes" ,rust-bytes-0.4)
29426 ("rust-futures" ,rust-futures-0.1)
29427 ("rust-log" ,rust-log-0.4))
29428 #:cargo-development-inputs
29429 (("rust-tokio-current-thread" ,rust-tokio-current-thread-0.1))))
29430 (home-page "https://tokio.rs")
29431 (synopsis
29432 "Core I/O primitives for asynchronous I/O in Rust")
29433 (description
29434 "Core I/O primitives for asynchronous I/O in Rust.")
29435 (license license:expat)))
29436
29437 (define-public rust-tokio-io-pool-0.1
29438 (package
29439 (name "rust-tokio-io-pool")
29440 (version "0.1.6")
29441 (source
29442 (origin
29443 (method url-fetch)
29444 (uri (crate-uri "tokio-io-pool" version))
29445 (file-name
29446 (string-append name "-" version ".tar.gz"))
29447 (sha256
29448 (base32
29449 "17lrjj7lcw13wchpbvr8cynmypd29h40clf9qxabh6fxva40kwm5"))))
29450 (build-system cargo-build-system)
29451 (arguments
29452 `(#:cargo-inputs
29453 (("rust-futures" ,rust-futures-0.1)
29454 ("rust-num-cpus" ,rust-num-cpus-1)
29455 ("rust-tokio" ,rust-tokio-0.1)
29456 ("rust-tokio-executor" ,rust-tokio-executor-0.1))
29457 #:cargo-development-inputs
29458 (("rust-tokio-current-thread" ,rust-tokio-current-thread-0.1))))
29459 (home-page "https://github.com/jonhoo/tokio-io-pool")
29460 (synopsis "Execute short, I/O-heavy futures efficiently")
29461 (description
29462 "Alternative tokio thread pool for executing short, I/O-heavy
29463 futures efficiently")
29464 (license (list license:asl2.0 license:expat))))
29465
29466 (define-public rust-tokio-macros-0.2
29467 (package
29468 (name "rust-tokio-macros")
29469 (version "0.2.5")
29470 (source
29471 (origin
29472 (method url-fetch)
29473 (uri (crate-uri "tokio-macros" version))
29474 (file-name (string-append name "-" version ".tar.gz"))
29475 (sha256
29476 (base32 "1283aq0l7rnh79zzqk4r34dgimvwcymrzmg1yah9ai2nmb3arhzh"))))
29477 (build-system cargo-build-system)
29478 (arguments
29479 `(#:cargo-inputs
29480 (("rust-proc-macro2" ,rust-proc-macro2-1)
29481 ("rust-quote" ,rust-quote-1)
29482 ("rust-syn" ,rust-syn-1))
29483 #:cargo-development-inputs
29484 (("rust-tokio" ,rust-tokio-0.2))))
29485 (home-page "https://tokio.rs")
29486 (synopsis "Tokio's proc macros")
29487 (description "This package provides Tokio's proc macros.")
29488 (license license:expat)))
29489
29490 (define-public rust-tokio-mock-task-0.1
29491 (package
29492 (name "rust-tokio-mock-task")
29493 (version "0.1.1")
29494 (source
29495 (origin
29496 (method url-fetch)
29497 (uri (crate-uri "tokio-mock-task" version))
29498 (file-name (string-append name "-" version ".crate"))
29499 (sha256
29500 (base32
29501 "1y7q83qfk9ljjfvs82b453pmz9x1v3d6kr4x55j8mal01s6790dw"))))
29502 (build-system cargo-build-system)
29503 (arguments
29504 `(#:cargo-inputs
29505 (("rust-futures" ,rust-futures-0.1))))
29506 (home-page "https://github.com/carllerche/tokio-mock-task")
29507 (synopsis "Mock a Tokio task")
29508 (description "Mock a Tokio task.")
29509 (license license:expat)))
29510
29511 (define-public rust-tokio-mockstream-1
29512 (package
29513 (name "rust-tokio-mockstream")
29514 (version "1.1.0")
29515 (source
29516 (origin
29517 (method url-fetch)
29518 (uri (crate-uri "tokio-mockstream" version))
29519 (file-name (string-append name "-" version ".tar.gz"))
29520 (sha256
29521 (base32 "0mg1i39cl8x32wxwbn74hlirks8a6f3g0gfzkb0n0zwbxwvc9gs1"))))
29522 (build-system cargo-build-system)
29523 (arguments
29524 `(#:cargo-inputs
29525 (("rust-futures" ,rust-futures-0.1)
29526 ("rust-tokio-io" ,rust-tokio-io-0.1))
29527 #:cargo-development-inputs
29528 (("rust-bytes" ,rust-bytes-0.4))))
29529 (home-page "https://github.com/aatxe/tokio-mockstream")
29530 (synopsis "Fake stream for testing network applications backed by
29531 buffers")
29532 (description "This package provides a fake stream for testing network
29533 applications backed by buffers.")
29534 (license (list license:expat license:asl2.0))))
29535
29536 (define-public rust-tokio-named-pipes-0.1
29537 (package
29538 (name "rust-tokio-named-pipes")
29539 (version "0.1.0")
29540 (source
29541 (origin
29542 (method url-fetch)
29543 (uri (crate-uri "tokio-named-pipes" version))
29544 (file-name (string-append name "-" version ".tar.gz"))
29545 (sha256
29546 (base32 "1bjy59wdl2anl22w6qyzkff1afv7ynayfpms10iqna2j6142sa4x"))))
29547 (build-system cargo-build-system)
29548 (arguments
29549 `(#:cargo-inputs
29550 (("rust-bytes" ,rust-bytes-0.4)
29551 ("rust-futures" ,rust-futures-0.1)
29552 ("rust-mio" ,rust-mio-0.6)
29553 ("rust-mio-named-pipes" ,rust-mio-named-pipes-0.1)
29554 ("rust-tokio" ,rust-tokio-0.1))))
29555 (home-page "https://github.com/nikvolf/tokio-named-pipes")
29556 (synopsis "Windows named pipe bindings for tokio")
29557 (description "This package provides bindings for Windows named pipe for
29558 Tokio.")
29559 (license (list license:expat license:asl2.0))))
29560
29561 (define-public rust-tokio-net-0.2
29562 (package
29563 (name "rust-tokio-net")
29564 (version "0.2.0-alpha.4")
29565 (source
29566 (origin
29567 (method url-fetch)
29568 (uri (crate-uri "tokio-net" version))
29569 (file-name
29570 (string-append name "-" version ".tar.gz"))
29571 (sha256
29572 (base32
29573 "15vm0bndn6zcpkp1yb6v736rbhqgim5skc76rz299xd3y0pr249a"))))
29574 (build-system cargo-build-system)
29575 (arguments
29576 `(#:cargo-inputs
29577 (("rust-bytes" ,rust-bytes-0.4)
29578 ("rust-crossbeam-queue" ,rust-crossbeam-queue-0.1)
29579 ("rust-crossbeam-utils" ,rust-crossbeam-utils-0.6)
29580 ("rust-futures-core-preview" ,rust-futures-core-preview-0.3)
29581 ("rust-futures-sink-preview" ,rust-futures-sink-preview-0.3)
29582 ("rust-futures-util-preview" ,rust-futures-util-preview-0.3)
29583 ("rust-iovec" ,rust-iovec-0.1)
29584 ("rust-lazy-static" ,rust-lazy-static-1)
29585 ("rust-libc" ,rust-libc-0.2)
29586 ("rust-mio" ,rust-mio-0.6)
29587 ("rust-mio-named-pipes" ,rust-mio-named-pipes-0.1)
29588 ("rust-mio-uds" ,rust-mio-uds-0.6)
29589 ("rust-num-cpus" ,rust-num-cpus-1)
29590 ("rust-parking-lot" ,rust-parking-lot-0.8)
29591 ("rust-signal-hook-registry" ,rust-signal-hook-registry-1)
29592 ("rust-slab" ,rust-slab-0.4)
29593 ("rust-tokio-codec" ,rust-tokio-codec-0.1)
29594 ("rust-tokio-executor" ,rust-tokio-executor-0.1)
29595 ("rust-tokio-io" ,rust-tokio-io-0.1)
29596 ("rust-tokio-sync" ,rust-tokio-sync-0.1)
29597 ("rust-tracing" ,rust-tracing-0.1)
29598 ("rust-winapi" ,rust-winapi-0.3))))
29599 (home-page "https://tokio.rs")
29600 (synopsis "Event loop that drives Tokio I/O resources")
29601 (description
29602 "This package provides the event loop that drives Tokio I/O resources.")
29603 (license license:expat)))
29604
29605 (define-public rust-tokio-openssl-0.4
29606 (package
29607 (name "rust-tokio-openssl")
29608 (version "0.4.0")
29609 (source
29610 (origin
29611 (method url-fetch)
29612 (uri (crate-uri "tokio-openssl" version))
29613 (file-name (string-append name "-" version ".tar.gz"))
29614 (sha256
29615 (base32
29616 "15751d47984ncvllagz35ldl10ifr8555wixvsg6k3i0yk2hhjrw"))))
29617 (build-system cargo-build-system)
29618 (arguments
29619 `(#:cargo-inputs
29620 (("rust-openssl" ,rust-openssl-0.10)
29621 ("rust-tokio" ,rust-tokio-0.2))
29622 #:cargo-development-inputs
29623 (("rust-futures" ,rust-futures-0.3)
29624 ("rust-tokio" ,rust-tokio-0.2))))
29625 (home-page "https://github.com/alexcrichton/tokio-openssl")
29626 (synopsis "SSL streams for Tokio backed by OpenSSL")
29627 (description "This package is an implementation of SSL streams for Tokio
29628 backed by OpenSSL.")
29629 (license (list license:expat license:asl2.0))))
29630
29631 (define-public rust-tokio-process-0.2
29632 (package
29633 (name "rust-tokio-process")
29634 (version "0.2.4")
29635 (source
29636 (origin
29637 (method url-fetch)
29638 (uri (crate-uri "tokio-process" version))
29639 (file-name
29640 (string-append name "-" version ".tar.gz"))
29641 (sha256
29642 (base32
29643 "1s6vi5n5iax4ksx3bzpfdhfbngj49mvq5n40np1d4aycp3qnxgdg"))))
29644 (build-system cargo-build-system)
29645 (arguments
29646 `(#:skip-build? #t
29647 #:cargo-inputs
29648 (("rust-crossbeam-queue" ,rust-crossbeam-queue-0.1)
29649 ("rust-futures" ,rust-futures-0.1)
29650 ("rust-lazy-static" ,rust-lazy-static-1)
29651 ("rust-libc" ,rust-libc-0.2)
29652 ("rust-log" ,rust-log-0.4)
29653 ("rust-mio" ,rust-mio-0.6)
29654 ("rust-mio-named-pipes" ,rust-mio-named-pipes-0.1)
29655 ("rust-tokio-io" ,rust-tokio-io-0.1)
29656 ("rust-tokio-reactor" ,rust-tokio-reactor-0.1)
29657 ("rust-tokio-signal" ,rust-tokio-signal-0.2)
29658 ("rust-winapi" ,rust-winapi-0.3))
29659 #:cargo-development-inputs
29660 (("rust-failure" ,rust-failure-0.1)
29661 ("rust-log" ,rust-log-0.4)
29662 ("rust-tokio" ,rust-tokio-0.1))))
29663 (home-page "https://github.com/tokio-rs/tokio")
29664 (synopsis
29665 "Asynchronous process management backed futures")
29666 (description
29667 "An implementation of an asynchronous process management backed
29668 futures.")
29669 (license license:expat)))
29670
29671 (define-public rust-tokio-reactor-0.1
29672 (package
29673 (name "rust-tokio-reactor")
29674 (version "0.1.9")
29675 (source
29676 (origin
29677 (method url-fetch)
29678 (uri (crate-uri "tokio-reactor" version))
29679 (file-name
29680 (string-append name "-" version ".tar.gz"))
29681 (sha256
29682 (base32
29683 "1khip64cn63xvayq1db68kxcnhgw3cb449a4n2lbw4p1qzx6pwba"))))
29684 (build-system cargo-build-system)
29685 (arguments
29686 `(#:cargo-inputs
29687 (("rust-crossbeam-utils" ,rust-crossbeam-utils-0.6)
29688 ("rust-futures" ,rust-futures-0.1)
29689 ("rust-lazy-static" ,rust-lazy-static-1)
29690 ("rust-log" ,rust-log-0.4)
29691 ("rust-mio" ,rust-mio-0.6)
29692 ("rust-num-cpus" ,rust-num-cpus-1)
29693 ("rust-parking-lot" ,rust-parking-lot-0.7)
29694 ("rust-slab" ,rust-slab-0.4)
29695 ("rust-tokio-executor" ,rust-tokio-executor-0.1)
29696 ("rust-tokio-io" ,rust-tokio-io-0.1)
29697 ("rust-tokio-sync" ,rust-tokio-sync-0.1))
29698 #:cargo-development-inputs
29699 (("rust-num-cpus" ,rust-num-cpus-1)
29700 ("rust-tokio" ,rust-tokio-0.1)
29701 ("rust-tokio-io-pool" ,rust-tokio-io-pool-0.1))))
29702 (home-page "https://tokio.rs")
29703 (synopsis
29704 "Event loop that drives Tokio I/O resources")
29705 (description
29706 "Event loop that drives Tokio I/O resources.")
29707 (license license:expat)))
29708
29709 (define-public rust-tokio-rustls-0.14
29710 (package
29711 (name "rust-tokio-rustls")
29712 (version "0.14.1")
29713 (source
29714 (origin
29715 (method url-fetch)
29716 (uri (crate-uri "tokio-rustls" version))
29717 (file-name (string-append name "-" version ".tar.gz"))
29718 (sha256
29719 (base32
29720 "16l8kx3j7i3jxq36qs3hnmys6cd2zqcixc1n0kf3kymwanr32a71"))))
29721 (build-system cargo-build-system)
29722 (arguments
29723 `(;; These tests require network access.
29724 #:cargo-test-flags '("--release" "--" "--skip=tls12" "--skip=modern")
29725 #:cargo-inputs
29726 (("rust-bytes" ,rust-bytes-0.5)
29727 ("rust-futures-core" ,rust-futures-core-0.3)
29728 ("rust-rustls" ,rust-rustls-0.18)
29729 ("rust-tokio" ,rust-tokio-0.2)
29730 ("rust-webpki" ,rust-webpki-0.21))
29731 #:cargo-development-inputs
29732 (("rust-futures-util" ,rust-futures-util-0.3)
29733 ("rust-lazy-static" ,rust-lazy-static-1)
29734 ("rust-tokio" ,rust-tokio-0.2)
29735 ("rust-webpki-roots" ,rust-webpki-roots-0.20))))
29736 (home-page "https://github.com/tokio-rs/tls")
29737 (synopsis "Asynchronous TLS/SSL streams for Tokio")
29738 (description "This package provides asynchronous TLS/SSL streams for Tokio
29739 using Rustls.")
29740 (license (list license:expat license:asl2.0))))
29741
29742 (define-public rust-tokio-rustls-0.13
29743 (package
29744 (inherit rust-tokio-rustls-0.14)
29745 (name "rust-tokio-rustls")
29746 (version "0.13.1")
29747 (source
29748 (origin
29749 (method url-fetch)
29750 (uri (crate-uri "tokio-rustls" version))
29751 (file-name (string-append name "-" version ".tar.gz"))
29752 (sha256
29753 (base32
29754 "1d2iy01v5psvm0ygcflzjna7zwgwk36w36bfr6mqf1vpsah65jqm"))))
29755 (arguments
29756 `(;; These tests require network access.
29757 #:cargo-test-flags '("--release" "--" "--skip=tls12" "--skip=modern")
29758 #:cargo-inputs
29759 (("rust-bytes" ,rust-bytes-0.5)
29760 ("rust-futures-core" ,rust-futures-core-0.3)
29761 ("rust-rustls" ,rust-rustls-0.17)
29762 ("rust-tokio" ,rust-tokio-0.2)
29763 ("rust-webpki" ,rust-webpki-0.21))
29764 #:cargo-development-inputs
29765 (("rust-futures-util" ,rust-futures-util-0.3)
29766 ("rust-lazy-static" ,rust-lazy-static-1)
29767 ("rust-tokio" ,rust-tokio-0.2)
29768 ("rust-webpki-roots" ,rust-webpki-roots-0.19))))
29769 (license (list license:expat license:asl2.0))))
29770
29771 (define-public rust-tokio-rustls-0.12
29772 (package
29773 (inherit rust-tokio-rustls-0.13)
29774 (name "rust-tokio-rustls")
29775 (version "0.12.2")
29776 (source
29777 (origin
29778 (method url-fetch)
29779 (uri (crate-uri "tokio-rustls" version))
29780 (file-name (string-append name "-" version ".tar.gz"))
29781 (sha256
29782 (base32 "1k6rpw4nmgsamh8vbf8xqrf4rr5sqs18i93561bydflajz0gw6hl"))))
29783 (arguments
29784 `(;; These tests require network access.
29785 #:cargo-test-flags '("--release" "--" "--skip=tls12" "--skip=modern")
29786 #:cargo-inputs
29787 (("rust-bytes" ,rust-bytes-0.5)
29788 ("rust-futures-core" ,rust-futures-core-0.3)
29789 ("rust-rustls" ,rust-rustls-0.16)
29790 ("rust-tokio" ,rust-tokio-0.2)
29791 ("rust-webpki" ,rust-webpki-0.21))
29792 #:cargo-development-inputs
29793 (("rust-futures-util" ,rust-futures-util-0.3)
29794 ("rust-lazy-static" ,rust-lazy-static-1)
29795 ("rust-tokio" ,rust-tokio-0.2)
29796 ("rust-webpki-roots" ,rust-webpki-roots-0.18))))
29797 (license (list license:expat license:asl2.0))))
29798
29799 (define-public rust-tokio-rustls-0.9
29800 (package
29801 (inherit rust-tokio-rustls-0.12)
29802 (name "rust-tokio-rustls")
29803 (version "0.9.4")
29804 (source
29805 (origin
29806 (method url-fetch)
29807 (uri (crate-uri "tokio-rustls" version))
29808 (file-name
29809 (string-append name "-" version ".tar.gz"))
29810 (sha256
29811 (base32
29812 "1jd63sl177sxacnksaxhazzmamwds98xk3niprh2qib75a1rk8cm"))))
29813 (build-system cargo-build-system)
29814 (arguments
29815 `(#:cargo-inputs
29816 (("rust-bytes" ,rust-bytes-0.4)
29817 ("rust-futures" ,rust-futures-0.1)
29818 ("rust-iovec" ,rust-iovec-0.1)
29819 ("rust-rustls" ,rust-rustls-0.15)
29820 ("rust-tokio-io" ,rust-tokio-io-0.1)
29821 ("rust-webpki" ,rust-webpki-0.19))
29822 #:cargo-development-inputs
29823 (("rust-lazy-static" ,rust-lazy-static-1)
29824 ("rust-tokio" ,rust-tokio-0.1))))))
29825
29826 (define-public rust-tokio-signal-0.2
29827 (package
29828 (name "rust-tokio-signal")
29829 (version "0.2.7")
29830 (source
29831 (origin
29832 (method url-fetch)
29833 (uri (crate-uri "tokio-signal" version))
29834 (file-name
29835 (string-append name "-" version ".tar.gz"))
29836 (sha256
29837 (base32
29838 "15l27cvhfcjsahwnm2pgsm0690w0xj1h1sbdl5wy6p50dqkwavfx"))))
29839 (build-system cargo-build-system)
29840 (arguments
29841 `(#:skip-build? #t
29842 #:cargo-inputs
29843 (("rust-futures" ,rust-futures-0.1)
29844 ("rust-libc" ,rust-libc-0.2)
29845 ("rust-mio" ,rust-mio-0.6)
29846 ("rust-mio-uds" ,rust-mio-uds-0.6)
29847 ("rust-signal-hook" ,rust-signal-hook-0.1)
29848 ("rust-tokio-executor" ,rust-tokio-executor-0.1)
29849 ("rust-tokio-io" ,rust-tokio-io-0.1)
29850 ("rust-tokio-reactor" ,rust-tokio-reactor-0.1)
29851 ("rust-winapi" ,rust-winapi-0.3))
29852 #:cargo-development-inputs
29853 (("rust-tokio" ,rust-tokio-0.1))))
29854 (home-page "https://github.com/tokio-rs/tokio")
29855 (synopsis
29856 "Asynchronous Unix signal handling backed futures")
29857 (description
29858 "An implementation of an asynchronous Unix signal handling backed
29859 futures.")
29860 (license license:expat)))
29861
29862 (define-public rust-tokio-socks-0.2
29863 (package
29864 (name "rust-tokio-socks")
29865 (version "0.2.2")
29866 (source
29867 (origin
29868 (method url-fetch)
29869 (uri (crate-uri "tokio-socks" version))
29870 (file-name (string-append name "-" version ".tar.gz"))
29871 (sha256
29872 (base32
29873 "1bwdjafbbs0907w42dl899inykflz4gbm026wh097q151s57i5qr"))))
29874 (build-system cargo-build-system)
29875 (arguments
29876 `(#:cargo-inputs
29877 (("rust-bytes" ,rust-bytes-0.4)
29878 ("rust-either" ,rust-either-1)
29879 ("rust-futures" ,rust-futures-0.3)
29880 ("rust-thiserror" ,rust-thiserror-1)
29881 ("rust-tokio" ,rust-tokio-0.2))
29882 #:cargo-development-inputs
29883 (("rust-hyper" ,rust-hyper-0.13)
29884 ("rust-once-cell" ,rust-once-cell-1)
29885 ("rust-tokio" ,rust-tokio-0.2))))
29886 (home-page "https://github.com/sticnarf/tokio-socks")
29887 (synopsis "Asynchronous SOCKS proxy support for Rust")
29888 (description "This package provides asynchronous SOCKS proxy support for
29889 Rust.")
29890 (license license:expat)))
29891
29892 (define-public rust-tokio-sync-0.2
29893 (package
29894 (name "rust-tokio-sync")
29895 (version "0.2.0-alpha.6")
29896 (source
29897 (origin
29898 (method url-fetch)
29899 (uri (crate-uri "tokio-sync" version))
29900 (file-name (string-append name "-" version ".tar.gz"))
29901 (sha256
29902 (base32
29903 "1lirf9s9pibgv8cypqzlddy8q9bxfp4z29qfx83p83slhnvaw6jg"))))
29904 (build-system cargo-build-system)
29905 (arguments
29906 `(#:cargo-inputs
29907 (("rust-fnv" ,rust-fnv-1)
29908 ("rust-futures-core-preview" ,rust-futures-core-preview-0.3)
29909 ("rust-futures-sink-preview" ,rust-futures-sink-preview-0.3)
29910 ("rust-futures-util-preview" ,rust-futures-util-preview-0.3))))
29911 (home-page "https://tokio.rs")
29912 (synopsis "Synchronization utilities")
29913 (description "This package provides synchronization utilities.")
29914 (license license:expat)))
29915
29916 (define-public rust-tokio-sync-0.1
29917 (package
29918 (inherit rust-tokio-sync-0.2)
29919 (name "rust-tokio-sync")
29920 (version "0.1.6")
29921 (source
29922 (origin
29923 (method url-fetch)
29924 (uri (crate-uri "tokio-sync" version))
29925 (file-name
29926 (string-append name "-" version ".tar.gz"))
29927 (sha256
29928 (base32
29929 "1ryalh7dcmnz46xj1va8aaw3if6vd4mj87r67dqvrqhpyf7j8qi1"))))
29930 (arguments
29931 `(#:skip-build? #t
29932 #:cargo-inputs
29933 (("rust-fnv" ,rust-fnv-1)
29934 ("rust-futures" ,rust-futures-0.1))
29935 #:cargo-development-inputs
29936 (("rust-env-logger" ,rust-env-logger-0.6)
29937 ("rust-loom" ,rust-loom-0.1)
29938 ("rust-tokio" ,rust-tokio-0.1)
29939 ("rust-tokio-mock-task" ,rust-tokio-mock-task-0.1))))))
29940
29941 (define-public rust-tokio-test-0.2
29942 (package
29943 (name "rust-tokio-test")
29944 (version "0.2.1")
29945 (source
29946 (origin
29947 (method url-fetch)
29948 (uri (crate-uri "tokio-test" version))
29949 (file-name (string-append name "-" version ".tar.gz"))
29950 (sha256
29951 (base32 "0v81p2n853b1kzyla3dbfmnazirn6s3n8p3z8k20bmdn370lj07d"))))
29952 (build-system cargo-build-system)
29953 (arguments
29954 `(#:cargo-inputs
29955 (("rust-bytes" ,rust-bytes-0.5)
29956 ("rust-futures-core" ,rust-futures-core-0.3)
29957 ("rust-tokio" ,rust-tokio-0.2))
29958 #:cargo-development-inputs
29959 (("rust-futures-util" ,rust-futures-util-0.3)
29960 ("rust-tokio" ,rust-tokio-0.2))))
29961 (home-page "https://tokio.rs")
29962 (synopsis "Testing utilities for Tokio- and futures-based code")
29963 (description "Testing utilities for Tokio- and futures-based code")
29964 (license license:expat)))
29965
29966 (define-public rust-tokio-tcp-0.1
29967 (package
29968 (name "rust-tokio-tcp")
29969 (version "0.1.3")
29970 (source
29971 (origin
29972 (method url-fetch)
29973 (uri (crate-uri "tokio-tcp" version))
29974 (file-name
29975 (string-append name "-" version ".tar.gz"))
29976 (sha256
29977 (base32
29978 "06a15vg8bcd33ng3h9ldzlq7wl4jsw0p9qpy7v22ls5yah3b250x"))))
29979 (build-system cargo-build-system)
29980 (arguments
29981 `(#:skip-build? #t
29982 #:cargo-inputs
29983 (("rust-bytes" ,rust-bytes-0.4)
29984 ("rust-futures" ,rust-futures-0.1)
29985 ("rust-iovec" ,rust-iovec-0.1)
29986 ("rust-mio" ,rust-mio-0.6)
29987 ("rust-tokio-io" ,rust-tokio-io-0.1)
29988 ("rust-tokio-reactor" ,rust-tokio-reactor-0.1))
29989 #:cargo-development-inputs
29990 (("rust-env-logger" ,rust-env-logger-0.6)
29991 ("rust-tokio" ,rust-tokio-0.1))))
29992 (home-page "https://tokio.rs")
29993 (synopsis "TCP bindings for tokio")
29994 (description "TCP bindings for tokio.")
29995 (license license:expat)))
29996
29997 (define-public rust-tokio-threadpool-0.1
29998 (package
29999 (name "rust-tokio-threadpool")
30000 (version "0.1.14")
30001 (source
30002 (origin
30003 (method url-fetch)
30004 (uri (crate-uri "tokio-threadpool" version))
30005 (file-name
30006 (string-append name "-" version ".tar.gz"))
30007 (sha256
30008 (base32
30009 "1wkj3wixicsqvllm8w74b24knw6mdn00zslm8l9fm1p81gr8lmbj"))))
30010 (build-system cargo-build-system)
30011 (arguments
30012 `(#:cargo-inputs
30013 (("rust-crossbeam-deque" ,rust-crossbeam-deque-0.7)
30014 ("rust-crossbeam-queue" ,rust-crossbeam-queue-0.1)
30015 ("rust-crossbeam-utils" ,rust-crossbeam-utils-0.6)
30016 ("rust-lazy-static" ,rust-lazy-static-1)
30017 ("rust-futures" ,rust-futures-0.1)
30018 ("rust-log" ,rust-log-0.4)
30019 ("rust-num-cpus" ,rust-num-cpus-1)
30020 ("rust-rand" ,rust-rand-0.6)
30021 ("rust-slab" ,rust-slab-0.4)
30022 ("rust-tokio-executor" ,rust-tokio-executor-0.1))
30023 #:cargo-development-inputs
30024 (("rust-env-logger" ,rust-env-logger-0.5)
30025 ("rust-futures-cpupool" ,rust-futures-cpupool-0.1)
30026 ("rust-threadpool" ,rust-threadpool-1.7))))
30027 (home-page "https://github.com/tokio-rs/tokio")
30028 (synopsis
30029 "Task scheduler backed by a work-stealing thread pool")
30030 (description
30031 "This package provides a task scheduler backed by a work-stealing thread
30032 pool.")
30033 (license license:expat)))
30034
30035 (define-public rust-tokio-timer-0.2
30036 (package
30037 (name "rust-tokio-timer")
30038 (version "0.2.11")
30039 (source
30040 (origin
30041 (method url-fetch)
30042 (uri (crate-uri "tokio-timer" version))
30043 (file-name
30044 (string-append name "-" version ".tar.gz"))
30045 (sha256
30046 (base32
30047 "03m68ainkdy3b5pf20rjyknhk2ppx35bjdc2yfj2bv80sl96h47j"))))
30048 (build-system cargo-build-system)
30049 (arguments
30050 `(#:skip-build? #t
30051 #:cargo-inputs
30052 (("rust-crossbeam-utils" ,rust-crossbeam-utils-0.6)
30053 ("rust-futures" ,rust-futures-0.1)
30054 ("rust-slab" ,rust-slab-0.4)
30055 ("rust-tokio-executor" ,rust-tokio-executor-0.1))
30056 #:cargo-development-inputs
30057 (("rust-rand" ,rust-rand-0.4)
30058 ("rust-tokio" ,rust-tokio-0.1)
30059 ("rust-tokio-mock-task" ,rust-tokio-mock-task-0.1))))
30060 (home-page "https://github.com/tokio-rs/tokio")
30061 (synopsis "Timer facilities for Tokio")
30062 (description "Timer facilities for Tokio.")
30063 (license license:expat)))
30064
30065 (define-public rust-tokio-tls-0.3
30066 (package
30067 (name "rust-tokio-tls")
30068 (version "0.3.1")
30069 (source
30070 (origin
30071 (method url-fetch)
30072 (uri (crate-uri "tokio-tls" version))
30073 (file-name (string-append name "-" version ".tar.gz"))
30074 (sha256
30075 (base32
30076 "0hv375949532p32d0w6bm2f6d3r0d00mcdzqjjqlzcmkszyg8w4s"))))
30077 (build-system cargo-build-system)
30078 (arguments
30079 `(#:cargo-inputs
30080 (("rust-native-tls" ,rust-native-tls-0.2)
30081 ("rust-tokio" ,rust-tokio-0.2))
30082 #:cargo-development-inputs
30083 (("rust-cfg-if" ,rust-cfg-if-0.1)
30084 ("rust-env-logger" ,rust-env-logger-0.6)
30085 ("rust-futures" ,rust-futures-0.3)
30086 ("rust-openssl" ,rust-openssl-0.10)
30087 ("rust-schannel" ,rust-schannel-0.1)
30088 ("rust-security-framework" ,rust-security-framework-0.2)
30089 ("rust-tokio" ,rust-tokio-0.2)
30090 ("rust-tokio-util" ,rust-tokio-util-0.3)
30091 ("rust-winapi" ,rust-winapi-0.3))))
30092 (home-page "https://tokio.rs")
30093 (synopsis "TLS/SSL streams for Tokio")
30094 (description "An implementation of TLS/SSL streams for Tokio giving an
30095 implementation of TLS for nonblocking I/O streams.")
30096 (license license:expat)))
30097
30098 (define-public rust-tokio-trace-core-0.2
30099 (package
30100 (name "rust-tokio-trace-core")
30101 (version "0.2.0")
30102 (source
30103 (origin
30104 (method url-fetch)
30105 (uri (crate-uri "tokio-trace-core" version))
30106 (file-name
30107 (string-append name "-" version ".tar.gz"))
30108 (sha256
30109 (base32
30110 "04y6c2r4ddzk02xb3hn60s9a1w92h0g8pzmxwaspqvwmsrba5j59"))))
30111 (build-system cargo-build-system)
30112 (arguments
30113 `(#:skip-build? #t
30114 #:cargo-inputs
30115 (("rust-lazy-static" ,rust-lazy-static-1))))
30116 (home-page "https://tokio.rs")
30117 (synopsis "Core primitives for tokio-trace")
30118 (description "Core primitives for tokio-trace.")
30119 (license license:expat)))
30120
30121 (define-public rust-tokio-udp-0.1
30122 (package
30123 (name "rust-tokio-udp")
30124 (version "0.1.3")
30125 (source
30126 (origin
30127 (method url-fetch)
30128 (uri (crate-uri "tokio-udp" version))
30129 (file-name
30130 (string-append name "-" version ".tar.gz"))
30131 (sha256
30132 (base32
30133 "14kfj35s465czcspayacnzlxrazfvxzhhggq1rqlljhgp1sqa9k6"))))
30134 (build-system cargo-build-system)
30135 (arguments
30136 `(#:skip-build? #t
30137 #:cargo-inputs
30138 (("rust-bytes" ,rust-bytes-0.4)
30139 ("rust-futures" ,rust-futures-0.1)
30140 ("rust-log" ,rust-log-0.4)
30141 ("rust-mio" ,rust-mio-0.6)
30142 ("rust-tokio-codec" ,rust-tokio-codec-0.1)
30143 ("rust-tokio-io" ,rust-tokio-io-0.1)
30144 ("rust-tokio-reactor" ,rust-tokio-reactor-0.1))
30145 #:cargo-development-inputs
30146 (("rust-env-logger" ,rust-env-logger-0.6))))
30147 (home-page "https://tokio.rs")
30148 (synopsis "UDP bindings for tokio")
30149 (description "UDP bindings for tokio.")
30150 (license license:expat)))
30151
30152 (define-public rust-tokio-uds-0.2
30153 (package
30154 (name "rust-tokio-uds")
30155 (version "0.2.5")
30156 (source
30157 (origin
30158 (method url-fetch)
30159 (uri (crate-uri "tokio-uds" version))
30160 (file-name
30161 (string-append name "-" version ".tar.gz"))
30162 (sha256
30163 (base32
30164 "0i94kxma6l7iy5hd5k7nvn7v9pnyw0s54bm9mjs0lap1l0xzqzq3"))))
30165 (build-system cargo-build-system)
30166 (arguments
30167 `(#:skip-build? #t
30168 #:cargo-inputs
30169 (("rust-bytes" ,rust-bytes-0.4)
30170 ("rust-futures" ,rust-futures-0.1)
30171 ("rust-iovec" ,rust-iovec-0.1)
30172 ("rust-libc" ,rust-libc-0.2)
30173 ("rust-log" ,rust-log-0.4)
30174 ("rust-mio" ,rust-mio-0.6)
30175 ("rust-mio-uds" ,rust-mio-uds-0.6)
30176 ("rust-tokio-codec" ,rust-tokio-codec-0.1)
30177 ("rust-tokio-io" ,rust-tokio-io-0.1)
30178 ("rust-tokio-reactor" ,rust-tokio-reactor-0.1))
30179 #:cargo-development-inputs
30180 (("rust-tempfile" ,rust-tempfile-3)
30181 ("rust-tokio" ,rust-tokio-0.1))))
30182 (home-page "https://github.com/tokio-rs/tokio")
30183 (synopsis "Unix Domain sockets for Tokio")
30184 (description "Unix Domain sockets for Tokio.")
30185 (license license:expat)))
30186
30187 (define-public rust-tokio-util-0.3
30188 (package
30189 (name "rust-tokio-util")
30190 (version "0.3.1")
30191 (source
30192 (origin
30193 (method url-fetch)
30194 (uri (crate-uri "tokio-util" version))
30195 (file-name (string-append name "-" version ".tar.gz"))
30196 (sha256
30197 (base32
30198 "16b48dl6sbc9x944jgjvsd65ab1w2c2qcziddbrbwv1b3y4l50my"))))
30199 (build-system cargo-build-system)
30200 (arguments
30201 `(#:tests? #f
30202 #:cargo-inputs
30203 (("rust-bytes" ,rust-bytes-0.5)
30204 ("rust-futures-core" ,rust-futures-core-0.3)
30205 ("rust-futures-io" ,rust-futures-io-0.3)
30206 ("rust-futures-sink" ,rust-futures-sink-0.3)
30207 ("rust-log" ,rust-log-0.4)
30208 ("rust-pin-project-lite" ,rust-pin-project-lite-0.1)
30209 ("rust-tokio" ,rust-tokio-0.2))
30210 #:cargo-development-inputs
30211 (("rust-futures" ,rust-futures-0.3)
30212 ("rust-tokio" ,rust-tokio-0.2)
30213 ("rust-tokio-test" ,rust-tokio-test-0.2))))
30214 (home-page "https://tokio.rs")
30215 (synopsis "Additional utilities for working with Tokio")
30216 (description "This package provides additional utilities for working with
30217 Tokio.")
30218 (license license:expat)))
30219
30220 (define-public rust-toml-0.5
30221 (package
30222 (name "rust-toml")
30223 (version "0.5.7")
30224 (source
30225 (origin
30226 (method url-fetch)
30227 (uri (crate-uri "toml" version))
30228 (file-name (string-append name "-" version ".crate"))
30229 (sha256
30230 (base32
30231 "0iannv6pb226h0q9vlqg7hdn36fs146yrahw016n107g1fxlbkvm"))))
30232 (build-system cargo-build-system)
30233 (arguments
30234 `(#:cargo-inputs
30235 (("rust-indexmap" ,rust-indexmap-1)
30236 ("rust-serde" ,rust-serde-1))
30237 #:cargo-development-inputs
30238 (("rust-serde-derive" ,rust-serde-derive-1)
30239 ("rust-serde-json" ,rust-serde-json-1))))
30240 (home-page "https://github.com/alexcrichton/toml-rs")
30241 (synopsis "Rust encoder and decoder of TOML-formatted files and streams")
30242 (description
30243 "This package provides a native Rust encoder and decoder of TOML-formatted
30244 files and streams. Provides implementations of the standard
30245 Serialize/Deserialize traits for TOML data to facilitate deserializing and
30246 serializing Rust structures.")
30247 (license (list license:asl2.0
30248 license:expat))))
30249
30250 (define-public rust-toml-0.4
30251 (package
30252 (inherit rust-toml-0.5)
30253 (name "rust-toml")
30254 (version "0.4.10")
30255 (source
30256 (origin
30257 (method url-fetch)
30258 (uri (crate-uri "toml" version))
30259 (file-name
30260 (string-append name "-" version ".tar.gz"))
30261 (sha256
30262 (base32
30263 "07qilkzinn8z13vq2sss65n2lza7wrmqpvkbclw919m3f7y691km"))))
30264 (arguments
30265 `(#:cargo-inputs
30266 (("rust-serde" ,rust-serde-1))
30267 #:cargo-development-inputs
30268 (("rust-serde-derive" ,rust-serde-derive-1)
30269 ("rust-serde-json" ,rust-serde-json-1))))))
30270
30271 (define-public rust-toml-0.2
30272 (package
30273 (name "rust-toml")
30274 (version "0.2.1")
30275 (source
30276 (origin
30277 (method url-fetch)
30278 (uri (crate-uri "toml" version))
30279 (file-name
30280 (string-append name "-" version ".tar.gz"))
30281 (sha256
30282 (base32
30283 "1d1cz43bxrx4fd6j2p6myckf81f72bp47akg36y3flxjkhj60svk"))))
30284 (build-system cargo-build-system)
30285 (arguments
30286 `(#:skip-build? #t
30287 #:cargo-inputs
30288 (("rust-rustc-serialize" ,rust-rustc-serialize-0.3)
30289 ("rust-serde" ,rust-serde-0.8))))
30290 (home-page "https://github.com/alexcrichton/toml-rs")
30291 (synopsis "Rust encoder and decoder of TOML-formatted files and streams")
30292 (description
30293 "This package provides a native Rust encoder and decoder of TOML-formatted
30294 files and streams. Provides implementations of the standard
30295 Serialize/Deserialize traits for TOML data to facilitate deserializing and
30296 serializing Rust structures.")
30297 (license (list license:asl2.0
30298 license:expat))))
30299
30300 (define-public rust-tower-layer-0.3
30301 (package
30302 (name "rust-tower-layer")
30303 (version "0.3.0")
30304 (source
30305 (origin
30306 (method url-fetch)
30307 (uri (crate-uri "tower-layer" version))
30308 (file-name (string-append name "-" version ".tar.gz"))
30309 (sha256
30310 (base32
30311 "1p6i9rn5d98wsx6hi4hbxh2xqh2clwz0blcm6jrqiciq4rpnapd3"))))
30312 (build-system cargo-build-system)
30313 (arguments
30314 `(#:cargo-development-inputs
30315 (("rust-tower-service" ,rust-tower-service-0.3))))
30316 (home-page "https://github.com/tower-rs/tower")
30317 (synopsis "Easy composition between @code{Service}s")
30318 (description "This package decorates a @code{Service} to allow easy
30319 composition between @code{Service}s.")
30320 (license license:expat)))
30321
30322 (define-public rust-tower-service-0.3
30323 (package
30324 (name "rust-tower-service")
30325 (version "0.3.0")
30326 (source
30327 (origin
30328 (method url-fetch)
30329 (uri (crate-uri "tower-service" version))
30330 (file-name (string-append name "-" version ".tar.gz"))
30331 (sha256
30332 (base32
30333 "0q4q53w82w1wd71x7vbspg2l3jicb6al2w1qdwxmnjrz8jzvd1z9"))))
30334 (build-system cargo-build-system)
30335 (arguments
30336 `(#:cargo-development-inputs
30337 (("rust-http" ,rust-http-0.1))))
30338 (home-page "https://github.com/tower-rs/tower")
30339 (synopsis "Asynchronous, request / response based, client or server.")
30340 (description "This package provides a trait representing an asynchronous,
30341 request/response based, client or server.")
30342 (license license:expat)))
30343
30344 (define-public rust-tower-test-0.3
30345 (package
30346 (name "rust-tower-test")
30347 (version "0.3.0")
30348 (source
30349 (origin
30350 (method url-fetch)
30351 (uri (crate-uri "tower-test" version))
30352 (file-name (string-append name "-" version ".tar.gz"))
30353 (sha256
30354 (base32
30355 "1j2k07g3z8ascq7r30bmw3b75v8lhd63mhfl60y59a74q71bp94v"))))
30356 (build-system cargo-build-system)
30357 (arguments
30358 `(#:cargo-inputs
30359 (("rust-futures-util" ,rust-futures-util-0.3)
30360 ("rust-pin-project" ,rust-pin-project-0.4)
30361 ("rust-tokio" ,rust-tokio-0.2)
30362 ("rust-tokio-test" ,rust-tokio-test-0.2)
30363 ("rust-tower-layer" ,rust-tower-layer-0.3)
30364 ("rust-tower-service" ,rust-tower-service-0.3))
30365 #:cargo-development-inputs
30366 (("rust-tokio" ,rust-tokio-0.2))))
30367 (home-page "https://github.com/tower-rs/tower")
30368 (synopsis "Utilities for writing client and server @code{Service} tests")
30369 (description "This package provides utilities for writing client and
30370 server @code{Service} tests.")
30371 (license license:expat)))
30372
30373 (define-public rust-tower-util-0.3
30374 (package
30375 (name "rust-tower-util")
30376 (version "0.3.1")
30377 (source
30378 (origin
30379 (method url-fetch)
30380 (uri (crate-uri "tower-util" version))
30381 (file-name (string-append name "-" version ".tar.gz"))
30382 (sha256
30383 (base32
30384 "0x4np2s7h891spvxaarcyainj12a7gvnh7jif9y80cvdh8ckq2fi"))))
30385 (build-system cargo-build-system)
30386 (arguments
30387 `(#:cargo-inputs
30388 (("rust-futures-core" ,rust-futures-core-0.3)
30389 ("rust-futures-util" ,rust-futures-util-0.3)
30390 ("rust-pin-project" ,rust-pin-project-0.4)
30391 ("rust-tower-service" ,rust-tower-service-0.3))
30392 #:cargo-development-inputs
30393 (("rust-tokio" ,rust-tokio-0.2)
30394 ("rust-tokio-test" ,rust-tokio-test-0.2)
30395 ("rust-tower-test" ,rust-tower-test-0.3))))
30396 (home-page "https://github.com/tower-rs/tower")
30397 (synopsis "Utilities for working with @code{Service}")
30398 (description "This package provides utilities for working with
30399 @code{Service}.")
30400 (license license:expat)))
30401
30402 (define-public rust-tracing-0.1
30403 (package
30404 (name "rust-tracing")
30405 (version "0.1.20")
30406 (source
30407 (origin
30408 (method url-fetch)
30409 (uri (crate-uri "tracing" version))
30410 (file-name (string-append name "-" version ".tar.gz"))
30411 (sha256
30412 (base32
30413 "0hwgbyflibmsz7x6v7ndchnx1qvv43pg18419ji2y7pflzkmngbi"))))
30414 (build-system cargo-build-system)
30415 (arguments
30416 `(#:cargo-inputs
30417 (("rust-cfg-if" ,rust-cfg-if-0.1)
30418 ("rust-log" ,rust-log-0.4)
30419 ("rust-tracing-attributes" ,rust-tracing-attributes-0.1)
30420 ("rust-tracing-core" ,rust-tracing-core-0.1))
30421 #:cargo-development-inputs
30422 (("rust-criterion" ,rust-criterion-0.3)
30423 ("rust-futures" ,rust-futures-0.1)
30424 ("rust-log" ,rust-log-0.4))))
30425 (home-page "https://tokio.rs")
30426 (synopsis "Application-level tracing for Rust")
30427 (description "@code{rust-tracing} is a framework for instrumenting Rust
30428 programs to collect structured, event-based diagnostic information.")
30429 (license license:expat)))
30430
30431 (define-public rust-tracing-attributes-0.1
30432 (package
30433 (name "rust-tracing-attributes")
30434 (version "0.1.11")
30435 (source
30436 (origin
30437 (method url-fetch)
30438 (uri (crate-uri "tracing-attributes" version))
30439 (file-name (string-append name "-" version ".tar.gz"))
30440 (sha256
30441 (base32
30442 "1njady03jycfarjbmbhnrpsl6s9pd9knp50c4z70rnkq6gycrq40"))))
30443 (build-system cargo-build-system)
30444 (arguments
30445 `(#:cargo-inputs
30446 (("rust-proc-macro2" ,rust-proc-macro2-1)
30447 ("rust-quote" ,rust-quote-1)
30448 ("rust-syn" ,rust-syn-1))
30449 #:cargo-development-inputs
30450 (("rust-async-trait" ,rust-async-trait-0.1)
30451 ("rust-tokio-test" ,rust-tokio-test-0.2)
30452 ("rust-tracing" ,rust-tracing-0.1)
30453 ("rust-tracing-core" ,rust-tracing-core-0.1)
30454 ("rust-tracing-futures" ,rust-tracing-futures-0.2))))
30455 (home-page "https://tokio.rs")
30456 (synopsis "Automatically instrument functions")
30457 (description "This package provides procedural macro attributes for
30458 automatically instrumenting functions.")
30459 (license license:expat)))
30460
30461 (define-public rust-tracing-core-0.1
30462 (package
30463 (name "rust-tracing-core")
30464 (version "0.1.16")
30465 (source
30466 (origin
30467 (method url-fetch)
30468 (uri (crate-uri "tracing-core" version))
30469 (file-name (string-append name "-" version ".crate"))
30470 (sha256
30471 (base32
30472 "16hisz8nvbav9q6r5lbar2baac097n33q7xqssifwsphy70ldksv"))))
30473 (build-system cargo-build-system)
30474 (arguments
30475 `(#:cargo-inputs
30476 (("rust-lazy-static" ,rust-lazy-static-1))))
30477 (home-page "https://tokio.rs")
30478 (synopsis "Core primitives for application-level tracing")
30479 (description
30480 "Core primitives for application-level tracing.")
30481 (license (list license:asl2.0
30482 license:expat))))
30483
30484 (define-public rust-tracing-futures-0.2
30485 (package
30486 (name "rust-tracing-futures")
30487 (version "0.2.4")
30488 (source
30489 (origin
30490 (method url-fetch)
30491 (uri (crate-uri "tracing-futures" version))
30492 (file-name (string-append name "-" version ".tar.gz"))
30493 (sha256
30494 (base32
30495 "0k4vd3jyqz9cx8rbwbp0p93qfp1w6rfk7sc6c1jh1ai18zqvcyxb"))))
30496 (build-system cargo-build-system)
30497 (arguments
30498 `(#:cargo-inputs
30499 (("rust-futures" ,rust-futures-0.3)
30500 ("rust-futures-task" ,rust-futures-task-0.3)
30501 ("rust-pin-project" ,rust-pin-project-0.4)
30502 ("rust-tokio" ,rust-tokio-0.1)
30503 ("rust-tokio-executor" ,rust-tokio-executor-0.1)
30504 ("rust-tracing" ,rust-tracing-0.1))
30505 #:cargo-development-inputs
30506 (("rust-tokio" ,rust-tokio-0.1)
30507 ("rust-tokio-test" ,rust-tokio-test-0.2)
30508 ("rust-tracing-core" ,rust-tracing-core-0.1))))
30509 (home-page "https://tokio.rs")
30510 (synopsis "Utilities for instrumenting @code{futures} with @code{tracing}")
30511 (description "This package provides utilities for instrumenting
30512 @code{futures} with @code{tracing}.")
30513 (license license:expat)))
30514
30515 (define-public rust-tracing-fmt-0.1
30516 (package
30517 (name "rust-tracing-fmt")
30518 (version "0.1.1")
30519 (source
30520 (origin
30521 (method url-fetch)
30522 (uri (crate-uri "tracing-fmt" version))
30523 (file-name
30524 (string-append name "-" version ".tar.gz"))
30525 (sha256
30526 (base32
30527 "0wagcrd6w8d3k7zdvg6sy2bwfh8w87i6ndia69p54fc7p3z4f1c8"))))
30528 (build-system cargo-build-system)
30529 (arguments
30530 `(#:cargo-inputs
30531 (("rust-tracing-subscriber" ,rust-tracing-subscriber-0.1))
30532 #:cargo-development-inputs
30533 (("rust-tracing" ,rust-tracing-0.1))))
30534 (home-page "https://tokio.rs")
30535 (synopsis "Tracing subscriber that formats and logs trace data")
30536 (description
30537 "This package provides a tracing subscriber that formats and logs trace
30538 data. Moved to the tracing-subscriber crate.")
30539 (license license:expat)))
30540
30541 (define-public rust-tracing-log-0.1
30542 (package
30543 (name "rust-tracing-log")
30544 (version "0.1.1")
30545 (source
30546 (origin
30547 (method url-fetch)
30548 (uri (crate-uri "tracing-log" version))
30549 (file-name
30550 (string-append name "-" version ".tar.gz"))
30551 (sha256
30552 (base32
30553 "1fdr0az98q9m5kiybvdvsb2m9mg86fdidgb5czzq2d71g1qqq3sy"))))
30554 (build-system cargo-build-system)
30555 (arguments
30556 `(#:cargo-inputs
30557 (("rust-env-logger" ,rust-env-logger-0.6)
30558 ("rust-lazy-static" ,rust-lazy-static-1)
30559 ("rust-log" ,rust-log-0.4)
30560 ("rust-tracing-core" ,rust-tracing-core-0.1))
30561 #:cargo-development-inputs
30562 (("rust-tracing" ,rust-tracing-0.1))))
30563 (home-page "https://tokio.rs")
30564 (synopsis
30565 "Provides compatibility between tracing the log crates")
30566 (description
30567 "Tracing is a framework for instrumenting Rust programs with
30568 context-aware, structured, event-based diagnostic information. This crate
30569 provides compatibility layers for using tracing alongside the logging facade
30570 provided by the log crate.
30571
30572 This crate provides:
30573
30574 @itemize
30575 @item @code{AsTrace} and @code{AsLog} traits for converting between tracing
30576 and log types.
30577 @item @code{LogTracer}, a @code{log::Log} implementation that consumes
30578 @code{log::Records} and outputs them as @code{tracing::Events}.
30579 @item An @code{env_logger} module, with helpers for using the env_logger crate
30580 with tracing (optional, enabled by the env-logger feature).
30581 @end itemize")
30582 (license license:expat)))
30583
30584 (define-public rust-tracing-subscriber-0.1
30585 (package
30586 (name "rust-tracing-subscriber")
30587 (version "0.1.6")
30588 (source
30589 (origin
30590 (method url-fetch)
30591 (uri (crate-uri "tracing-subscriber" version))
30592 (file-name
30593 (string-append name "-" version ".tar.gz"))
30594 (sha256
30595 (base32
30596 "0i9fhlyz8mn2znpgmi5bv9y24pwpkkgfxs0rwcf6dl6djmjs2b0r"))))
30597 (build-system cargo-build-system)
30598 (arguments
30599 `(#:tests? #f ; Some test files missing.
30600 #:cargo-inputs
30601 (("rust-ansi-term" ,rust-ansi-term-0.11)
30602 ("rust-chrono" ,rust-chrono-0.4)
30603 ("rust-lazy-static" ,rust-lazy-static-1)
30604 ("rust-matchers" ,rust-matchers-0.0)
30605 ("rust-owning-ref" ,rust-owning-ref-0.4)
30606 ("rust-parking-lot" ,rust-parking-lot-0.9)
30607 ("rust-regex" ,rust-regex-1)
30608 ("rust-smallvec" ,rust-smallvec-0.6)
30609 ("rust-tracing-core" ,rust-tracing-core-0.1)
30610 ("rust-tracing-log" ,rust-tracing-log-0.1))
30611 #:cargo-development-inputs
30612 (("rust-criterion" ,rust-criterion-0.3)
30613 ("rust-log" ,rust-log-0.4)
30614 ("rust-tracing" ,rust-tracing-0.1)
30615 ("rust-tracing-log" ,rust-tracing-log-0.1))))
30616 (home-page "https://tokio.rs")
30617 (synopsis "Implement and compose tracing subscribers")
30618 (description
30619 "Utilities for implementing and composing tracing subscribers.
30620
30621 Tracing is a framework for instrumenting Rust programs to collect
30622 scoped, structured, and async-aware diagnostics. The Subscriber trait
30623 represents the functionality necessary to collect this trace
30624 data. This crate contains tools for composing subscribers out of
30625 smaller units of behaviour, and batteries-included implementations of
30626 common subscriber functionality.
30627
30628 Tracing-subscriber is intended for use by both Subscriber authors and
30629 application authors using tracing to instrument their applications.")
30630 (license license:expat)))
30631
30632 (define-public rust-traitobject-0.1
30633 (package
30634 (name "rust-traitobject")
30635 (version "0.1.0")
30636 (source
30637 (origin
30638 (method url-fetch)
30639 (uri (crate-uri "traitobject" version))
30640 (file-name (string-append name "-" version ".crate"))
30641 (sha256
30642 (base32
30643 "0yb0n8822mr59j200fyr2fxgzzgqljyxflx9y8bdy3rlaqngilgg"))))
30644 (build-system cargo-build-system)
30645 (home-page "https://github.com/reem/rust-traitobject")
30646 (synopsis "Unsafe helpers for dealing with raw trait objects")
30647 (description "Unsafe helpers for dealing with raw trait objects.")
30648 (license (list license:asl2.0
30649 license:expat))))
30650
30651 (define-public rust-treeline-0.1
30652 (package
30653 (name "rust-treeline")
30654 (version "0.1.0")
30655 (source
30656 (origin
30657 (method url-fetch)
30658 (uri (crate-uri "treeline" version))
30659 (file-name
30660 (string-append name "-" version ".tar.gz"))
30661 (sha256
30662 (base32
30663 "0hcdgyk5xzcx2ylm0fr9czzs9cjznm7l9q5qz51qi97i82r43xx7"))))
30664 (build-system cargo-build-system)
30665 (home-page "https://github.com/softprops/treeline")
30666 (synopsis "Library for visualizing tree structured data")
30667 (description
30668 "This package provides a library for visualizing tree structured data.")
30669 (license license:expat)))
30670
30671 (define-public rust-trust-dns-https-0.19
30672 (package
30673 (name "rust-trust-dns-https")
30674 (version "0.19.5")
30675 (source
30676 (origin
30677 (method url-fetch)
30678 (uri (crate-uri "trust-dns-https" version))
30679 (file-name (string-append name "-" version ".tar.gz"))
30680 (sha256
30681 (base32
30682 "0s6yiqy98wddc2vid0dypj4cdnvycd4vrrj6l9s7yymq0iqpky5g"))))
30683 (build-system cargo-build-system)
30684 (arguments
30685 `(#:cargo-inputs
30686 (("rust-backtrace" ,rust-backtrace-0.3)
30687 ("rust-bytes" ,rust-bytes-0.5)
30688 ("rust-data-encoding" ,rust-data-encoding-2)
30689 ("rust-futures" ,rust-futures-0.3)
30690 ("rust-h2" ,rust-h2-0.2)
30691 ("rust-http" ,rust-http-0.2)
30692 ("rust-log" ,rust-log-0.4)
30693 ("rust-rustls" ,rust-rustls-0.17)
30694 ("rust-thiserror" ,rust-thiserror-1)
30695 ("rust-tokio" ,rust-tokio-0.2)
30696 ("rust-tokio-rustls" ,rust-tokio-rustls-0.13)
30697 ("rust-trust-dns-proto" ,rust-trust-dns-proto-0.19)
30698 ("rust-trust-dns-rustls" ,rust-trust-dns-rustls-0.19)
30699 ("rust-typed-headers" ,rust-typed-headers-0.2)
30700 ("rust-webpki" ,rust-webpki-0.21)
30701 ("rust-webpki-roots" ,rust-webpki-roots-0.19))
30702 #:cargo-development-inputs
30703 (("rust-env-logger" ,rust-env-logger-0.7)
30704 ("rust-futures" ,rust-futures-0.3))))
30705 (home-page "http://www.trust-dns.org/index.html")
30706 (synopsis "DNS over HTTPS extension for the Trust-DNS client")
30707 (description "Trust-DNS is a safe and secure DNS library. This is an
30708 extension for the Trust-DNS client to use DNS over HTTPS.")
30709 (license (list license:expat license:asl2.0))))
30710
30711 (define-public rust-trust-dns-native-tls-0.19
30712 (package
30713 (name "rust-trust-dns-native-tls")
30714 (version "0.19.5")
30715 (source
30716 (origin
30717 (method url-fetch)
30718 (uri (crate-uri "trust-dns-native-tls" version))
30719 (file-name (string-append name "-" version ".tar.gz"))
30720 (sha256
30721 (base32
30722 "173443yivsiyzvnai4h53v71br8jsz4zjwhp83q3x4hnh6306ymv"))))
30723 (build-system cargo-build-system)
30724 (arguments
30725 `(#:cargo-inputs
30726 (("rust-futures" ,rust-futures-0.3)
30727 ("rust-native-tls" ,rust-native-tls-0.2)
30728 ("rust-tokio" ,rust-tokio-0.2)
30729 ("rust-tokio-tls" ,rust-tokio-tls-0.3)
30730 ("rust-trust-dns-proto" ,rust-trust-dns-proto-0.19))))
30731 (home-page "http://www.trust-dns.org/index.html")
30732 (synopsis "native-tls extension for the Trust-DNS client")
30733 (description "Trust-DNS is a safe and secure DNS library. This is an
30734 extension for the Trust-DNS client to use native-tls for TLS.")
30735 (license (list license:expat license:asl2.0))))
30736
30737 (define-public rust-trust-dns-openssl-0.19
30738 (package
30739 (name "rust-trust-dns-openssl")
30740 (version "0.19.5")
30741 (source
30742 (origin
30743 (method url-fetch)
30744 (uri (crate-uri "trust-dns-openssl" version))
30745 (file-name (string-append name "-" version ".tar.gz"))
30746 (sha256
30747 (base32
30748 "0as4jzrscjlmgj04l2aa2lf09vpd0fg5v0vfz019ybxgiqn89g45"))))
30749 (build-system cargo-build-system)
30750 (arguments
30751 `(#:cargo-inputs
30752 (("rust-futures" ,rust-futures-0.3)
30753 ("rust-openssl" ,rust-openssl-0.10)
30754 ("rust-tokio" ,rust-tokio-0.2)
30755 ("rust-tokio-openssl" ,rust-tokio-openssl-0.4)
30756 ("rust-trust-dns-proto" ,rust-trust-dns-proto-0.19))
30757 #:cargo-development-inputs
30758 (("rust-openssl" ,rust-openssl-0.10)
30759 ("rust-tokio" ,rust-tokio-0.2))))
30760 (home-page "http://www.trust-dns.org/index.html")
30761 (synopsis "tokio-openssl extension for the Trust-DNS client")
30762 (description "Trust-DNS is a safe and secure DNS library. This is an
30763 extension for the Trust-DNS client to use tokio-openssl for TLS.")
30764 (license (list license:expat license:asl2.0))))
30765
30766 (define-public rust-trust-dns-proto-0.19
30767 (package
30768 (name "rust-trust-dns-proto")
30769 (version "0.19.5")
30770 (source
30771 (origin
30772 (method url-fetch)
30773 (uri (crate-uri "trust-dns-proto" version))
30774 (file-name (string-append name "-" version ".tar.gz"))
30775 (sha256
30776 (base32
30777 "0a4zlv60kkbg1nvy3zh18fdg681z83yzppzy39rdkm7llqdhdmyd"))))
30778 (build-system cargo-build-system)
30779 (arguments
30780 `(#:cargo-inputs
30781 (("rust-async-trait" ,rust-async-trait-0.1)
30782 ("rust-backtrace" ,rust-backtrace-0.3)
30783 ("rust-data-encoding" ,rust-data-encoding-2)
30784 ("rust-enum-as-inner" ,rust-enum-as-inner-0.3)
30785 ("rust-futures" ,rust-futures-0.3)
30786 ("rust-idna" ,rust-idna-0.2)
30787 ("rust-js-sys" ,rust-js-sys-0.3)
30788 ("rust-lazy-static" ,rust-lazy-static-1)
30789 ("rust-log" ,rust-log-0.4)
30790 ("rust-openssl" ,rust-openssl-0.10)
30791 ("rust-rand" ,rust-rand-0.7)
30792 ("rust-ring" ,rust-ring-0.16)
30793 ("rust-serde" ,rust-serde-1)
30794 ("rust-smallvec" ,rust-smallvec-1)
30795 ("rust-socket2" ,rust-socket2-0.3)
30796 ("rust-thiserror" ,rust-thiserror-1)
30797 ("rust-tokio" ,rust-tokio-0.2)
30798 ("rust-url" ,rust-url-2)
30799 ("rust-wasm-bindgen" ,rust-wasm-bindgen-0.2))
30800 #:cargo-development-inputs
30801 (("rust-env-logger" ,rust-env-logger-0.7)
30802 ("rust-futures" ,rust-futures-0.3)
30803 ("rust-tokio" ,rust-tokio-0.2))))
30804 (home-page "http://www.trust-dns.org/index.html")
30805 (synopsis "Safe and secure DNS library")
30806 (description "Trust-DNS is a safe and secure DNS library. This is the
30807 foundational DNS protocol library for all Trust-DNS projects.")
30808 (license (list license:expat license:asl2.0))))
30809
30810 (define-public rust-trust-dns-proto-0.7
30811 (package
30812 (inherit rust-trust-dns-proto-0.19)
30813 (name "rust-trust-dns-proto")
30814 (version "0.7.4")
30815 (source
30816 (origin
30817 (method url-fetch)
30818 (uri (crate-uri "trust-dns-proto" version))
30819 (file-name
30820 (string-append name "-" version ".tar.gz"))
30821 (sha256
30822 (base32
30823 "0099dm57nnizx4apik9sh3mnvr7rp9mivc903v8xss13dkgynnam"))))
30824 (arguments
30825 `(#:cargo-inputs
30826 (("rust-byteorder" ,rust-byteorder-1)
30827 ("rust-data-encoding" ,rust-data-encoding-2)
30828 ("rust-enum-as-inner" ,rust-enum-as-inner-0.2)
30829 ("rust-failure" ,rust-failure-0.1)
30830 ("rust-futures" ,rust-futures-0.1)
30831 ("rust-idna" ,rust-idna-0.1)
30832 ("rust-lazy-static" ,rust-lazy-static-1)
30833 ("rust-log" ,rust-log-0.4)
30834 ("rust-openssl" ,rust-openssl-0.10)
30835 ("rust-rand" ,rust-rand-0.6)
30836 ("rust-ring" ,rust-ring-0.14)
30837 ("rust-serde" ,rust-serde-1)
30838 ("rust-smallvec" ,rust-smallvec-0.6)
30839 ("rust-socket2" ,rust-socket2-0.3)
30840 ("rust-tokio-executor" ,rust-tokio-executor-0.1)
30841 ("rust-tokio-io" ,rust-tokio-io-0.1)
30842 ("rust-tokio-reactor" ,rust-tokio-reactor-0.1)
30843 ("rust-tokio-tcp" ,rust-tokio-tcp-0.1)
30844 ("rust-tokio-timer" ,rust-tokio-timer-0.2)
30845 ("rust-tokio-udp" ,rust-tokio-udp-0.1)
30846 ("rust-untrusted" ,rust-untrusted-0.6)
30847 ("rust-url" ,rust-url-1))
30848 #:cargo-development-inputs
30849 (("rust-env-logger" ,rust-env-logger-0.6)
30850 ("rust-tokio" ,rust-tokio-0.1))))))
30851
30852 (define-public rust-trust-dns-resolver-0.19
30853 (package
30854 (name "rust-trust-dns-resolver")
30855 (version "0.19.5")
30856 (source
30857 (origin
30858 (method url-fetch)
30859 (uri (crate-uri "trust-dns-resolver" version))
30860 (file-name (string-append name "-" version ".tar.gz"))
30861 (sha256
30862 (base32
30863 "0xqv31gndybcrr5gi6jjp47qcvdxsc147s69a0y0nc6qqgyws8qg"))))
30864 (build-system cargo-build-system)
30865 (arguments
30866 `(#:cargo-inputs
30867 (("rust-backtrace" ,rust-backtrace-0.3)
30868 ("rust-cfg-if" ,rust-cfg-if-0.1)
30869 ("rust-futures" ,rust-futures-0.3)
30870 ("rust-ipconfig" ,rust-ipconfig-0.2)
30871 ("rust-lazy-static" ,rust-lazy-static-1)
30872 ("rust-log" ,rust-log-0.4)
30873 ("rust-lru-cache" ,rust-lru-cache-0.1)
30874 ("rust-resolv-conf" ,rust-resolv-conf-0.6)
30875 ("rust-rustls" ,rust-rustls-0.17)
30876 ("rust-serde" ,rust-serde-1)
30877 ("rust-smallvec" ,rust-smallvec-1)
30878 ("rust-thiserror" ,rust-thiserror-1)
30879 ("rust-tokio" ,rust-tokio-0.2)
30880 ("rust-tokio-openssl" ,rust-tokio-openssl-0.4)
30881 ("rust-tokio-rustls" ,rust-tokio-rustls-0.13)
30882 ("rust-tokio-tls" ,rust-tokio-tls-0.3)
30883 ("rust-trust-dns-https" ,rust-trust-dns-https-0.19)
30884 ("rust-trust-dns-native-tls" ,rust-trust-dns-native-tls-0.19)
30885 ("rust-trust-dns-openssl" ,rust-trust-dns-openssl-0.19)
30886 ("rust-trust-dns-proto" ,rust-trust-dns-proto-0.19)
30887 ("rust-trust-dns-rustls" ,rust-trust-dns-rustls-0.19)
30888 ("rust-webpki-roots" ,rust-webpki-roots-0.19))
30889 #:cargo-development-inputs
30890 (("rust-env-logger" ,rust-env-logger-0.7)
30891 ("rust-futures" ,rust-futures-0.3))))
30892 (home-page "http://www.trust-dns.org/index.html")
30893 (synopsis "Safe and secure DNS library")
30894 (description "Trust-DNS is a safe and secure DNS library. This Resolver
30895 library uses the Client library to perform all DNS queries. The Resolver is
30896 intended to be a high-level library for any DNS record resolution see Resolver
30897 and AsyncResolver for supported resolution types. The Client can be used for
30898 other queries.")
30899 (license (list license:expat license:asl2.0))))
30900
30901 (define-public rust-trust-dns-rustls-0.19
30902 (package
30903 (name "rust-trust-dns-rustls")
30904 (version "0.19.5")
30905 (source
30906 (origin
30907 (method url-fetch)
30908 (uri (crate-uri "trust-dns-rustls" version))
30909 (file-name (string-append name "-" version ".tar.gz"))
30910 (sha256
30911 (base32
30912 "1hj4fx2x4ncj7v8pf6bbn7634zq76hjigm1s2h6b6yjzzmz4yprn"))))
30913 (build-system cargo-build-system)
30914 (arguments
30915 `(#:cargo-inputs
30916 (("rust-futures" ,rust-futures-0.3)
30917 ("rust-log" ,rust-log-0.4)
30918 ("rust-rustls" ,rust-rustls-0.17)
30919 ("rust-tokio" ,rust-tokio-0.2)
30920 ("rust-tokio-rustls" ,rust-tokio-rustls-0.13)
30921 ("rust-trust-dns-proto" ,rust-trust-dns-proto-0.19)
30922 ("rust-webpki" ,rust-webpki-0.21))
30923 #:cargo-development-inputs
30924 (("rust-openssl" ,rust-openssl-0.10))))
30925 (home-page "http://www.trust-dns.org/index.html")
30926 (synopsis "rustls extension for the Trust-DNS client")
30927 (description "Trust-DNS is a safe and secure DNS library. This is an
30928 extension for the Trust-DNS client to use rustls for TLS.")
30929 (license (list license:expat license:asl2.0))))
30930
30931 (define-public rust-trust-dns-rustls-0.6
30932 (package
30933 (inherit rust-trust-dns-rustls-0.19)
30934 (name "rust-trust-dns-rustls")
30935 (version "0.6.4")
30936 (source
30937 (origin
30938 (method url-fetch)
30939 (uri (crate-uri "trust-dns-rustls" version))
30940 (file-name
30941 (string-append name "-" version ".tar.gz"))
30942 (sha256
30943 (base32
30944 "0vbh2y7w2s5gcw33fn4hb5f927kgjm6603vw63slg9riikmsiq43"))))
30945 (native-inputs
30946 `(("pkg-config" ,pkg-config)))
30947 (inputs
30948 `(("openssl" ,openssl)))
30949 (arguments
30950 `(#:cargo-test-flags
30951 '("--release" "--" "--skip=tests::test_tls_client_stream_ipv4")
30952 #:cargo-inputs
30953 (("rust-futures" ,rust-futures-0.1)
30954 ("rust-log" ,rust-log-0.4)
30955 ("rust-rustls" ,rust-rustls-0.15)
30956 ("rust-tokio-rustls" ,rust-tokio-rustls-0.9)
30957 ("rust-tokio-tcp" ,rust-tokio-tcp-0.1)
30958 ("rust-trust-dns-proto" ,rust-trust-dns-proto-0.7)
30959 ("rust-webpki" ,rust-webpki-0.19))
30960 #:cargo-development-inputs
30961 (("rust-openssl" ,rust-openssl-0.10)
30962 ("rust-tokio" ,rust-tokio-0.1))))))
30963
30964 (define-public rust-try-from-0.3
30965 (package
30966 (name "rust-try-from")
30967 (version "0.3.2")
30968 (source
30969 (origin
30970 (method url-fetch)
30971 (uri (crate-uri "try_from" version))
30972 (file-name (string-append name "-" version ".crate"))
30973 (sha256
30974 (base32
30975 "12wdd4ja7047sd3rx70hv2056hyc8gcdllcx3a41g1rnw64kng98"))))
30976 (build-system cargo-build-system)
30977 (arguments
30978 `(#:cargo-inputs
30979 (("rust-cfg-if" ,rust-cfg-if-0.1))))
30980 (home-page "https://github.com/derekjw/try_from")
30981 (synopsis "TryFrom and TryInto traits for failable conversions")
30982 (description
30983 "TryFrom and TryInto traits for failable conversions that return a Result.")
30984 (license license:expat)))
30985
30986 (define-public rust-try-lock-0.2
30987 (package
30988 (name "rust-try-lock")
30989 (version "0.2.2")
30990 (source
30991 (origin
30992 (method url-fetch)
30993 (uri (crate-uri "try-lock" version))
30994 (file-name (string-append name "-" version ".crate"))
30995 (sha256
30996 (base32
30997 "10p36rx6pqi9d0zr876xa8vksx2m66ha45myakl50rn08dxyn176"))))
30998 (build-system cargo-build-system)
30999 (home-page "https://github.com/seanmonstar/try-lock")
31000 (synopsis "Lightweight atomic lock")
31001 (description
31002 "This package provides a lightweight atomic lock.")
31003 (license license:expat)))
31004
31005 (define-public rust-trybuild-1
31006 (package
31007 (name "rust-trybuild")
31008 (version "1.0.23")
31009 (source
31010 (origin
31011 (method url-fetch)
31012 (uri (crate-uri "trybuild" version))
31013 (file-name
31014 (string-append name "-" version ".tar.gz"))
31015 (sha256
31016 (base32
31017 "080j808nv6nyr1mmw23vwdp4rkk7r38nmms850rih8lsclc1pzr6"))))
31018 (build-system cargo-build-system)
31019 (arguments
31020 `(#:cargo-inputs
31021 (("rust-dissimilar" ,rust-dissimilar-1.0)
31022 ("rust-glob" ,rust-glob-0.3)
31023 ("rust-lazy-static" ,rust-lazy-static-1)
31024 ("rust-serde" ,rust-serde-1)
31025 ("rust-serde-json" ,rust-serde-json-1)
31026 ("rust-termcolor" ,rust-termcolor-1)
31027 ("rust-toml" ,rust-toml-0.5))))
31028 (home-page "https://github.com/dtolnay/trybuild")
31029 (synopsis "Test harness for ui tests of compiler diagnostics")
31030 (description
31031 "Test harness for ui tests of compiler diagnostics.")
31032 (license (list license:expat license:asl2.0))))
31033
31034 (define-public rust-typeable-0.1
31035 (package
31036 (name "rust-typeable")
31037 (version "0.1.2")
31038 (source
31039 (origin
31040 (method url-fetch)
31041 (uri (crate-uri "typeable" version))
31042 (file-name (string-append name "-" version ".crate"))
31043 (sha256
31044 (base32
31045 "11w8dywgnm32hb291izjvh4zjd037ccnkk77ahk63l913zwzc40l"))))
31046 (build-system cargo-build-system)
31047 (home-page "https://github.com/reem/rust-typeable")
31048 (synopsis "Exposes Typeable, for getting TypeIds at runtime")
31049 (description "Exposes Typeable, for getting TypeIds at runtime.")
31050 (license license:expat)))
31051
31052 (define-public rust-typed-arena-1.4
31053 (package
31054 (name "rust-typed-arena")
31055 (version "1.4.1")
31056 (source
31057 (origin
31058 (method url-fetch)
31059 (uri (crate-uri "typed-arena" version))
31060 (file-name
31061 (string-append name "-" version ".tar.gz"))
31062 (sha256
31063 (base32
31064 "1i8yczhwcy0nnrxqck1lql3i7hvg95l0vw0dbgfb92zkms96mh66"))))
31065 (build-system cargo-build-system)
31066 (arguments `(#:skip-build? #t))
31067 (home-page "https://github.com/SimonSapin/rust-typed-arena")
31068 (synopsis "The arena allocator")
31069 (description
31070 "The arena, a fast but limited type of allocator.")
31071 (license license:expat)))
31072
31073 (define-public rust-typed-headers-0.2
31074 (package
31075 (name "rust-typed-headers")
31076 (version "0.2.0")
31077 (source
31078 (origin
31079 (method url-fetch)
31080 (uri (crate-uri "typed-headers" version))
31081 (file-name (string-append name "-" version ".tar.gz"))
31082 (sha256
31083 (base32
31084 "0jm2xzvvml3a9hhvzf9q4v22l5ifrxrx2kspy7aymknckqgacy9i"))))
31085 (build-system cargo-build-system)
31086 (arguments
31087 `(#:cargo-inputs
31088 (("rust-base64" ,rust-base64-0.11)
31089 ("rust-bytes" ,rust-bytes-0.5)
31090 ("rust-chrono" ,rust-chrono-0.4)
31091 ("rust-http" ,rust-http-0.2)
31092 ("rust-mime" ,rust-mime-0.3))))
31093 (home-page "https://github.com/sfackler/typed-headers")
31094 (synopsis "Typed HTTP header serialization and deserialization")
31095 (description "This package provides typed HTTP header serialization and
31096 deserialization.")
31097 (license (list license:expat license:asl2.0))))
31098
31099 (define-public rust-typemap-0.3
31100 (package
31101 (name "rust-typemap")
31102 (version "0.3.3")
31103 (source
31104 (origin
31105 (method url-fetch)
31106 (uri (crate-uri "typemap" version))
31107 (file-name (string-append name "-" version ".crate"))
31108 (sha256
31109 (base32
31110 "1xm1gbvz9qisj1l6d36hrl9pw8imr8ngs6qyanjnsad3h0yfcfv5"))))
31111 (build-system cargo-build-system)
31112 (arguments
31113 `(#:cargo-inputs
31114 (("rust-unsafe-any" ,rust-unsafe-any-0.4))))
31115 (home-page "https://github.com/reem/rust-typemap")
31116 (synopsis "Typesafe store for many value types")
31117 (description
31118 "A typesafe store for many value types.")
31119 (license license:expat)))
31120
31121 (define-public rust-typenum-1
31122 (package
31123 (name "rust-typenum")
31124 (version "1.12.0")
31125 (source
31126 (origin
31127 (method url-fetch)
31128 (uri (crate-uri "typenum" version))
31129 (file-name (string-append name "-" version ".crate"))
31130 (sha256
31131 (base32
31132 "0cvbksljz61ian21fnn0h51kphl0pwpzb932bv4s0rwy1wh8lg1p"))))
31133 (build-system cargo-build-system)
31134 (home-page "https://github.com/paholg/typenum")
31135 (synopsis "Rust library for type-level numbers evaluated at compile time")
31136 (description "Typenum is a Rust library for type-level numbers evaluated at
31137 compile time. It currently supports bits, unsigned integers, and signed
31138 integers. It also provides a type-level array of type-level numbers, but its
31139 implementation is incomplete.")
31140 (license (list license:asl2.0
31141 license:expat))))
31142
31143 (define-public rust-ucd-parse-0.1
31144 (package
31145 (name "rust-ucd-parse")
31146 (version "0.1.3")
31147 (source
31148 (origin
31149 (method url-fetch)
31150 (uri (crate-uri "ucd-parse" version))
31151 (file-name
31152 (string-append name "-" version ".tar.gz"))
31153 (sha256
31154 (base32
31155 "13mq6c85r6ak10gjlq74mzdhsi0g0vps2y73by420513gfnipm97"))))
31156 (build-system cargo-build-system)
31157 (arguments
31158 `(#:skip-build? #t
31159 #:cargo-inputs
31160 (("rust-lazy-static" ,rust-lazy-static-1)
31161 ("rust-regex" ,rust-regex-1))))
31162 (home-page "https://github.com/BurntSushi/ucd-generate")
31163 (synopsis "Parse data files in the Unicode character database")
31164 (description
31165 "This package provides a library for parsing data files in the
31166 Unicode character database.")
31167 (license (list license:asl2.0 license:expat))))
31168
31169 (define-public rust-ucd-trie-0.1
31170 (package
31171 (name "rust-ucd-trie")
31172 (version "0.1.2")
31173 (source
31174 (origin
31175 (method url-fetch)
31176 (uri (crate-uri "ucd-trie" version))
31177 (file-name (string-append name "-" version ".crate"))
31178 (sha256
31179 (base32
31180 "1hh6kyzh5xygwy96wfmsf8v8czlzhps2lgbcyhj1xzy1w1xys04g"))))
31181 (build-system cargo-build-system)
31182 (arguments
31183 `(#:cargo-development-inputs
31184 (("rust-lazy-static" ,rust-lazy-static-1))))
31185 (home-page "https://github.com/BurntSushi/ucd-generate")
31186 (synopsis "Trie for storing Unicode codepoint sets and maps")
31187 (description
31188 "This package provides a trie for storing Unicode codepoint sets and maps.")
31189 (license (list license:asl2.0
31190 license:expat))))
31191
31192 (define-public rust-ucd-util-0.1
31193 (package
31194 (name "rust-ucd-util")
31195 (version "0.1.7")
31196 (source
31197 (origin
31198 (method url-fetch)
31199 (uri (crate-uri "ucd-util" version))
31200 (file-name (string-append name "-" version ".crate"))
31201 (sha256
31202 (base32
31203 "13ng291mkc9b132jjf4laj76f5nqm5qd2447rm8bry3wxbdc5kaw"))))
31204 (build-system cargo-build-system)
31205 (home-page "https://github.com/BurntSushi/ucd-generate")
31206 (synopsis "library for working with the Unicode character database")
31207 (description "This package provides a small utility library for working
31208 with the Unicode character database.")
31209 (license (list license:asl2.0
31210 license:expat))))
31211
31212 (define-public rust-ufmt-0.1
31213 (package
31214 (name "rust-ufmt")
31215 (version "0.1.0")
31216 (source
31217 (origin
31218 (method url-fetch)
31219 (uri (crate-uri "ufmt" version))
31220 (file-name (string-append name "-" version ".tar.gz"))
31221 (sha256
31222 (base32
31223 "1844qwbmc4m69nfi6xmdcdf4fmjjvypi9rpfg3wgilvrxykwwzif"))))
31224 (build-system cargo-build-system)
31225 (arguments
31226 `(#:cargo-inputs
31227 (("rust-proc-macro-hack" ,rust-proc-macro-hack-0.5)
31228 ("rust-ufmt-macros" ,rust-ufmt-macros-0.1)
31229 ("rust-ufmt-write" ,rust-ufmt-write-0.1))))
31230 (home-page "https://crates.io/crates/ufmt")
31231 (synopsis "Faster and panic-free alternative to @code{core::fmt}")
31232 (description "This package provides a (6-40x) smaller, (2-9x) faster and
31233 panic-free alternative to @code{core::fmt}.")
31234 (license (list license:expat license:asl2.0))))
31235
31236 (define-public rust-ufmt-macros-0.1
31237 (package
31238 (name "rust-ufmt-macros")
31239 (version "0.1.1")
31240 (source
31241 (origin
31242 (method url-fetch)
31243 (uri (crate-uri "ufmt-macros" version))
31244 (file-name (string-append name "-" version ".tar.gz"))
31245 (sha256
31246 (base32
31247 "0sf0z9f6kjw5h15xd1hlj46dgri59lqwin1fxrcdradzl8s3x0gd"))))
31248 (build-system cargo-build-system)
31249 (arguments
31250 `(#:cargo-inputs
31251 (("rust-proc-macro-hack" ,rust-proc-macro-hack-0.5)
31252 ("rust-proc-macro2" ,rust-proc-macro2-1)
31253 ("rust-quote" ,rust-quote-1)
31254 ("rust-syn" ,rust-syn-1))))
31255 (home-page "https://github.com/japaric/ufmt")
31256 (synopsis "μfmt macros")
31257 (description "This package provides μfmt macros.")
31258 (license (list license:expat license:asl2.0))))
31259
31260 (define-public rust-ufmt-write-0.1
31261 (package
31262 (name "rust-ufmt-write")
31263 (version "0.1.0")
31264 (source
31265 (origin
31266 (method url-fetch)
31267 (uri (crate-uri "ufmt-write" version))
31268 (file-name (string-append name "-" version ".tar.gz"))
31269 (sha256
31270 (base32
31271 "0sdx0r6ah9xr3nydrqxj01v25sb956c0jk5rqf6f5i9fnkb2wyp8"))))
31272 (build-system cargo-build-system)
31273 (home-page "https://github.com/japaric/ufmt")
31274 (synopsis "μfmt's uWrite trait")
31275 (description "This package provides @code{μfmt}'s @code{uWrite} trait.")
31276 (license (list license:expat license:asl2.0))))
31277
31278 (define-public rust-unchecked-index-0.2
31279 (package
31280 (name "rust-unchecked-index")
31281 (version "0.2.2")
31282 (source
31283 (origin
31284 (method url-fetch)
31285 (uri (crate-uri "unchecked-index" version))
31286 (file-name
31287 (string-append name "-" version ".tar.gz"))
31288 (sha256
31289 (base32
31290 "0p6qcai1mjayx59cpgk27d0zgw9hz9r1ira5jiqil66f4ba8dfpf"))))
31291 (build-system cargo-build-system)
31292 (arguments `(#:skip-build? #t))
31293 (home-page "https://github.com/bluss/unchecked-index")
31294 (synopsis "Unchecked indexing wrapper using regular index syntax")
31295 (description
31296 "Unchecked indexing wrapper using regular index syntax.")
31297 (license (list license:asl2.0 license:expat))))
31298
31299 (define-public rust-unicase-2
31300 (package
31301 (name "rust-unicase")
31302 (version "2.6.0")
31303 (source
31304 (origin
31305 (method url-fetch)
31306 (uri (crate-uri "unicase" version))
31307 (file-name
31308 (string-append name "-" version ".tar.gz"))
31309 (sha256
31310 (base32
31311 "1xmlbink4ycgxrkjspp0mf7pghcx4m7vxq7fpfm04ikr2zk7pwsh"))))
31312 (build-system cargo-build-system)
31313 (arguments
31314 `(#:skip-build? #t
31315 #:cargo-inputs
31316 (("rust-version-check" ,rust-version-check-0.9))))
31317 (home-page "https://github.com/seanmonstar/unicase")
31318 (synopsis "Case-insensitive wrapper around strings")
31319 (description
31320 "This package provides a case-insensitive wrapper around strings.")
31321 (license (list license:expat license:asl2.0))))
31322
31323 (define-public rust-unicase-1
31324 (package
31325 (inherit rust-unicase-2)
31326 (name "rust-unicase")
31327 (version "1.4.2")
31328 (source
31329 (origin
31330 (method url-fetch)
31331 (uri (crate-uri "unicase" version))
31332 (file-name
31333 (string-append name "-" version ".tar.gz"))
31334 (sha256
31335 (base32
31336 "0cwazh4qsmm9msckjk86zc1z35xg7hjxjykrgjalzdv367w6aivz"))))
31337 (arguments
31338 `(#:cargo-inputs
31339 (("rust-heapsize" ,rust-heapsize-0.3)
31340 ("rust-heapsize-plugin" ,rust-heapsize-plugin-0.1)
31341 ("rust-version-check" ,rust-version-check-0.1))))))
31342
31343 (define-public rust-unicode-bidi-0.3
31344 (package
31345 (name "rust-unicode-bidi")
31346 (version "0.3.4")
31347 (source
31348 (origin
31349 (method url-fetch)
31350 (uri (crate-uri "unicode-bidi" version))
31351 (file-name
31352 (string-append name "-" version ".tar.gz"))
31353 (sha256
31354 (base32
31355 "1malx8ljgm7v1gbaazkn7iicy5wj0bwcyadj3l727a38ch6bvwj9"))))
31356 (build-system cargo-build-system)
31357 (arguments
31358 `(#:skip-build? #t
31359 #:cargo-inputs
31360 (("rust-flame" ,rust-flame-0.2)
31361 ("rust-flamer" ,rust-flamer-0.3)
31362 ("rust-matches" ,rust-matches-0.1)
31363 ("rust-serde" ,rust-serde-1))
31364 #:cargo-development-inputs
31365 (("rust-serde-test" ,rust-serde-test-1))))
31366 (home-page "https://github.com/servo/unicode-bidi")
31367 (synopsis "Implementation of the Unicode Bidirectional Algorithm")
31368 (description
31369 "Implementation of the Unicode Bidirectional Algorithm.")
31370 (license (list license:asl2.0 license:expat))))
31371
31372 (define-public rust-unicode-normalization-0.1
31373 (package
31374 (name "rust-unicode-normalization")
31375 (version "0.1.11")
31376 (source
31377 (origin
31378 (method url-fetch)
31379 (uri (crate-uri "unicode-normalization" version))
31380 (file-name
31381 (string-append name "-" version ".tar.gz"))
31382 (sha256
31383 (base32 "1kxxb5ndb5dzyp1flajjdxnbwyjw6ml9xvy0pz7b8srjn9ky4qdm"))))
31384 (build-system cargo-build-system)
31385 (arguments
31386 `(#:cargo-inputs
31387 (("rust-smallvec" ,rust-smallvec-1))))
31388 (home-page "https://github.com/unicode-rs/unicode-normalization")
31389 (synopsis
31390 "This crate provides functions for normalization of Unicode strings")
31391 (description
31392 "This crate provides functions for normalization of Unicode strings,
31393 including Canonical and Compatible Decomposition and Recomposition, as
31394 described in Unicode Standard Annex #15.")
31395 (license (list license:expat license:asl2.0))))
31396
31397 (define-public rust-unicode-segmentation-1.6
31398 (package
31399 (name "rust-unicode-segmentation")
31400 (version "1.6.0")
31401 (source
31402 (origin
31403 (method url-fetch)
31404 (uri (crate-uri "unicode-segmentation" version))
31405 (file-name
31406 (string-append name "-" version ".tar.gz"))
31407 (sha256
31408 (base32
31409 "1h7d48mzpi8hwf5cvnq07warkv86pvapzzzf32hvbjsk20yiagp8"))))
31410 (build-system cargo-build-system)
31411 (arguments
31412 `(#:cargo-development-inputs
31413 (("rust-quickcheck" ,rust-quickcheck-0.7))))
31414 (home-page "https://github.com/unicode-rs/unicode-segmentation")
31415 (synopsis "Grapheme Cluster, Word and Sentence boundaries")
31416 (description
31417 "This crate provides Grapheme Cluster, Word and Sentence
31418 boundaries according to Unicode Standard Annex #29 rules.")
31419 (license (list license:expat license:asl2.0))))
31420
31421 (define-public rust-unicode-segmentation-1.3
31422 (package
31423 (inherit rust-unicode-segmentation-1.6)
31424 (name "rust-unicode-segmentation")
31425 (version "1.3.0")
31426 (source
31427 (origin
31428 (method url-fetch)
31429 (uri (crate-uri "unicode-segmentation" version))
31430 (file-name
31431 (string-append name "-" version ".tar.gz"))
31432 (sha256
31433 (base32
31434 "1a9jqg7rb1yq6w2xc9jgxcs111yk5vxm9afjfvykfnrmzk6z8rqr"))))))
31435
31436 (define-public rust-unicode-width-0.1
31437 (package
31438 (name "rust-unicode-width")
31439 (version "0.1.8")
31440 (source
31441 (origin
31442 (method url-fetch)
31443 (uri (crate-uri "unicode-width" version))
31444 (file-name (string-append name "-" version ".tar.gz"))
31445 (sha256
31446 (base32
31447 "1qxizyi6xbcqyi4z79p523ywvmgsfcgfqb3zv3c8i6x1jcc5jdwk"))))
31448 (build-system cargo-build-system)
31449 (arguments
31450 `(#:cargo-inputs
31451 (("rust-compiler-builtins" ,rust-compiler-builtins-0.1)
31452 ("rust-rustc-std-workspace-core" ,rust-rustc-std-workspace-core-1)
31453 ("rust-rustc-std-workspace-std" ,rust-rustc-std-workspace-std-1.0))))
31454 (home-page "https://github.com/unicode-rs/unicode-width")
31455 (synopsis "Determine displayed width according to Unicode rules")
31456 (description "This crate allows you to determine displayed width of
31457 @code{char} and @code{str} types according to Unicode Standard Annex #11 rules.")
31458 (license (list license:asl2.0
31459 license:expat))))
31460
31461 (define-public rust-unicode-xid-0.2
31462 (package
31463 (name "rust-unicode-xid")
31464 (version "0.2.1")
31465 (source
31466 (origin
31467 (method url-fetch)
31468 (uri (crate-uri "unicode-xid" version))
31469 (file-name
31470 (string-append name "-" version ".crate"))
31471 (sha256
31472 (base32
31473 "0r6mknipyy9vpz8mwmxvkx65ff2ha1n2pxqjj6f46lcn8yrhpzpp"))))
31474 (build-system cargo-build-system)
31475 (home-page "https://github.com/unicode-rs/unicode-xid")
31476 (synopsis "Determine Unicode XID related properties")
31477 (description "Determine whether characters have the XID_Start
31478 or XID_Continue properties according to Unicode Standard Annex #31.")
31479 (license (list license:asl2.0 license:expat))))
31480
31481 (define-public rust-unicode-xid-0.1
31482 (package
31483 (inherit rust-unicode-xid-0.2)
31484 (name "rust-unicode-xid")
31485 (version "0.1.0")
31486 (source
31487 (origin
31488 (method url-fetch)
31489 (uri (crate-uri "unicode-xid" version))
31490 (file-name (string-append name "-" version ".crate"))
31491 (sha256
31492 (base32
31493 "1z57lqh4s18rr4x0j4fw4fmp9hf9346h0kmdgqsqx0fhjr3k0wpw"))))))
31494
31495 (define-public rust-unicode-xid-0.0
31496 (package
31497 (inherit rust-unicode-xid-0.2)
31498 (name "rust-unicode-xid")
31499 (version "0.0.4")
31500 (source
31501 (origin
31502 (method url-fetch)
31503 (uri (crate-uri "unicode-xid" version))
31504 (file-name
31505 (string-append name "-" version ".tar.gz"))
31506 (sha256
31507 (base32
31508 "1p5l9h3n3i53cp95fb65p8q3vbwib79ryd9z5z5h5kr9gl6qc7wc"))))))
31509
31510 (define-public rust-unindent-0.1
31511 (package
31512 (name "rust-unindent")
31513 (version "0.1.6")
31514 (source
31515 (origin
31516 (method url-fetch)
31517 (uri (crate-uri "unindent" version))
31518 (file-name (string-append name "-" version ".crate"))
31519 (sha256
31520 (base32 "0hl9l4w9mhv5qacx7cirm6rarrphw35b5syw2plx13vz884dfhdg"))))
31521 (build-system cargo-build-system)
31522 (home-page "https://github.com/dtolnay/indoc")
31523 (synopsis "Remove a column of leading whitespace from a string")
31524 (description "This crate allows you to remove a column of leading
31525 whitespace from a string.")
31526 (license (list license:asl2.0
31527 license:expat))))
31528
31529 (define-public rust-universal-hash-0.4
31530 (package
31531 (name "rust-universal-hash")
31532 (version "0.4.0")
31533 (source
31534 (origin
31535 (method url-fetch)
31536 (uri (crate-uri "universal-hash" version))
31537 (file-name (string-append name "-" version ".tar.gz"))
31538 (sha256
31539 (base32
31540 "00hljq64l0p68yrncvyww4cdgkzpzl49vrlnj57kwblkak3b49l3"))))
31541 (build-system cargo-build-system)
31542 (arguments
31543 `(#:cargo-inputs
31544 (("rust-generic-array" ,rust-generic-array-0.14)
31545 ("rust-subtle" ,rust-subtle-2))))
31546 (home-page "https://github.com/RustCrypto/traits")
31547 (synopsis "Trait for universal hash functions")
31548 (description "This package provides traits for universal hash functions.")
31549 (license (list license:expat license:asl2.0))))
31550
31551 (define-public rust-unix-socket-0.5
31552 (package
31553 (name "rust-unix-socket")
31554 (version "0.5.0")
31555 (source
31556 (origin
31557 (method url-fetch)
31558 (uri (crate-uri "unix_socket" version))
31559 (file-name
31560 (string-append name "-" version ".tar.gz"))
31561 (sha256
31562 (base32
31563 "0r0mxf3mmqvimnx4mpks1f6c4haj6jcxc0k9bs7w61f42w2718ka"))))
31564 (build-system cargo-build-system)
31565 (arguments
31566 `(#:skip-build? #t
31567 #:cargo-inputs
31568 (("rust-cfg-if" ,rust-cfg-if-0.1)
31569 ("rust-libc" ,rust-libc-0.2))))
31570 (home-page "https://github.com/rust-lang-nursery/unix-socket")
31571 (synopsis "Unix domain socket bindings")
31572 (description "This package provides unix domain socket bindings.")
31573 (license (list license:expat license:asl2.0))))
31574
31575 (define-public rust-unreachable-1.0
31576 (package
31577 (name "rust-unreachable")
31578 (version "1.0.0")
31579 (source
31580 (origin
31581 (method url-fetch)
31582 (uri (crate-uri "unreachable" version))
31583 (file-name (string-append name "-" version ".crate"))
31584 (sha256
31585 (base32
31586 "0mps2il4xy2mjqc3appas27hhn2xmvixc3bzzhfrjj74gy3i0a1q"))))
31587 (build-system cargo-build-system)
31588 (arguments
31589 `(#:cargo-inputs
31590 (("rust-void" ,rust-void-1))))
31591 (home-page "https://github.com/reem/rust-unreachable")
31592 (synopsis "Unreachable code optimization hint in rust")
31593 (description
31594 "This package provides an unreachable code optimization hint in rust.")
31595 (license (list license:asl2.0
31596 license:expat))))
31597
31598 (define-public rust-unsafe-any-0.4
31599 (package
31600 (name "rust-unsafe-any")
31601 (version "0.4.2")
31602 (source
31603 (origin
31604 (method url-fetch)
31605 (uri (crate-uri "unsafe-any" version))
31606 (file-name (string-append name "-" version ".crate"))
31607 (sha256
31608 (base32
31609 "0zwwphsqkw5qaiqmjwngnfpv9ym85qcsyj7adip9qplzjzbn00zk"))))
31610 (build-system cargo-build-system)
31611 (arguments
31612 `(#:cargo-inputs
31613 (("rust-traitobject" ,rust-traitobject-0.1))))
31614 (home-page "https://tokio.rs")
31615 (synopsis "Traits and implementations for unchecked downcasting")
31616 (description
31617 "Traits and implementations for unchecked downcasting.")
31618 (license license:expat)))
31619
31620 (define-public rust-untrusted-0.7
31621 (package
31622 (name "rust-untrusted")
31623 (version "0.7.1")
31624 (source
31625 (origin
31626 (method url-fetch)
31627 (uri (crate-uri "untrusted" version))
31628 (file-name (string-append name "-" version ".crate"))
31629 (sha256
31630 (base32
31631 "0jkbqaj9d3v5a91pp3wp9mffvng1nhycx6sh4qkdd9qyr62ccmm1"))))
31632 (build-system cargo-build-system)
31633 (home-page "https://github.com/briansmith/untrusted")
31634 (synopsis "Zero-allocation parsing of untrusted inputs in Rust")
31635 (description
31636 "Safe, fast, zero-panic, zero-crashing, zero-allocation parsing of
31637 untrusted inputs in Rust.")
31638 (license license:isc)))
31639
31640 (define-public rust-untrusted-0.6
31641 (package/inherit rust-untrusted-0.7
31642 (name "rust-untrusted")
31643 (version "0.6.2")
31644 (source
31645 (origin
31646 (method url-fetch)
31647 (uri (crate-uri "untrusted" version))
31648 (file-name (string-append name "-" version ".tar.gz"))
31649 (sha256
31650 (base32 "0byf88b7ca1kb5aap8f6npp6xncvg95dnma8ipmnmd4n9r5izkam"))))))
31651
31652 (define-public rust-url-2
31653 (package
31654 (name "rust-url")
31655 (version "2.1.1")
31656 (source
31657 (origin
31658 (method url-fetch)
31659 (uri (crate-uri "url" version))
31660 (file-name
31661 (string-append name "-" version ".tar.gz"))
31662 (sha256
31663 (base32
31664 "1jw7cw8br4xvjb92ddrrh1r7jvqhyhiknnnfpgq9np63fs24m7c2"))))
31665 (build-system cargo-build-system)
31666 (arguments
31667 `(#:skip-build? #t
31668 #:cargo-inputs
31669 (("rust-idna" ,rust-idna-0.2)
31670 ("rust-matches" ,rust-matches-0.1)
31671 ("rust-percent-encoding" ,rust-percent-encoding-2)
31672 ("rust-serde" ,rust-serde-1))
31673 #:cargo-development-inputs
31674 (("rust-bencher" ,rust-bencher-0.1)
31675 ("rust-rustc-test" ,rust-rustc-test-0.3)
31676 ("rust-serde-json" ,rust-serde-json-1))))
31677 (home-page "https://github.com/servo/rust-url")
31678 (synopsis "URL library for Rust, based on the WHATWG URL Standard")
31679 (description
31680 "URL library for Rust, based on the WHATWG URL Standard.")
31681 (license (list license:asl2.0 license:expat))))
31682
31683 (define-public rust-url-1
31684 (package
31685 (inherit rust-url-2)
31686 (name "rust-url")
31687 (version "1.7.2")
31688 (source
31689 (origin
31690 (method url-fetch)
31691 (uri (crate-uri "url" version))
31692 (file-name
31693 (string-append name "-" version ".tar.gz"))
31694 (sha256
31695 (base32
31696 "0nim1c90mxpi9wgdw2xh8dqd72vlklwlzam436akcrhjac6pqknx"))))
31697 (arguments
31698 `(#:skip-build? #t
31699 #:cargo-inputs
31700 (("rust-encoding" ,rust-encoding-0.2)
31701 ("rust-heapsize" ,rust-heapsize-0.4)
31702 ("rust-idna" ,rust-idna-0.1)
31703 ("rust-matches" ,rust-matches-0.1)
31704 ("rust-percent-encoding" ,rust-percent-encoding-1.0)
31705 ("rust-rustc-serialize" ,rust-rustc-serialize-0.3)
31706 ("rust-serde" ,rust-serde-1))
31707 #:cargo-development-inputs
31708 (("rust-bencher" ,rust-bencher-0.1)
31709 ("rust-rustc-serialize" ,rust-rustc-serialize-0.3)
31710 ("rust-rustc-test" ,rust-rustc-test-0.3)
31711 ("rust-serde-json" ,rust-serde-json-1))))))
31712
31713 (define-public rust-urlocator-0.1
31714 (package
31715 (name "rust-urlocator")
31716 (version "0.1.3")
31717 (source
31718 (origin
31719 (method url-fetch)
31720 (uri (crate-uri "urlocator" version))
31721 (file-name
31722 (string-append name "-" version ".tar.gz"))
31723 (sha256
31724 (base32
31725 "0r5ig00np3svjpvb1gha3ni798cwj2w7rnlwrc8jrrw7bvlb2yri"))))
31726 (build-system cargo-build-system)
31727 (home-page "https://github.com/alacritty/urlocator")
31728 (synopsis "Locate URLs in character streams")
31729 (description "Locate URLs in character streams.")
31730 (license (list license:expat license:asl2.0))))
31731
31732 (define-public rust-user32-sys-0.2
31733 (package
31734 (name "rust-user32-sys")
31735 (version "0.2.0")
31736 (source
31737 (origin
31738 (method url-fetch)
31739 (uri (crate-uri "user32-sys" version))
31740 (file-name
31741 (string-append name "-" version ".tar.gz"))
31742 (sha256
31743 (base32
31744 "0ivxc7hmsxax9crdhxdd1nqwik4s9lhb2x59lc8b88bv20fp3x2f"))))
31745 (build-system cargo-build-system)
31746 (arguments
31747 `(#:cargo-inputs
31748 (("rust-winapi" ,rust-winapi-0.2))
31749 #:cargo-development-inputs
31750 (("rust-winapi-build" ,rust-winapi-build-0.1))
31751 #:phases
31752 (modify-phases %standard-phases
31753 (add-after 'unpack 'fix-cargo-toml
31754 (lambda _
31755 (substitute* "Cargo.toml"
31756 ((", path =.*}") "}"))
31757 #t)))))
31758 (home-page "https://github.com/retep998/winapi-rs")
31759 (synopsis "Function definitions for the Windows API library user32")
31760 (description
31761 "Contains function definitions for the Windows API library user32.
31762 See winapi for types and constants.")
31763 (license license:expat)))
31764
31765 (define-public rust-users-0.10
31766 (package
31767 (name "rust-users")
31768 (version "0.10.0")
31769 (source
31770 (origin
31771 (method url-fetch)
31772 (uri (crate-uri "users" version))
31773 (file-name
31774 (string-append name "-" version ".tar.gz"))
31775 (sha256
31776 (base32
31777 "11plda5r3dl8hs0sl0jskazam4ayv3a06vmhzk4l7914agljfhma"))))
31778 (build-system cargo-build-system)
31779 (arguments
31780 `(#:cargo-inputs
31781 (("rust-libc" ,rust-libc-0.2)
31782 ("rust-log" ,rust-log-0.4))
31783 #:cargo-development-inputs
31784 (("rust-env-logger" ,rust-env-logger-0.7))))
31785 (home-page "https://github.com/ogham/rust-users")
31786 (synopsis "Library for getting information on Unix users and groups")
31787 (description "This package provides a library for getting information on
31788 Unix users and groups.")
31789 (license license:expat)))
31790
31791 (define-public rust-users-0.9
31792 (package
31793 (inherit rust-users-0.10)
31794 (name "rust-users")
31795 (version "0.9.1")
31796 (source
31797 (origin
31798 (method url-fetch)
31799 (uri (crate-uri "users" version))
31800 (file-name
31801 (string-append name "-" version ".tar.gz"))
31802 (sha256
31803 (base32
31804 "1kxl3y2hcrqqip7jpqn5mz7xlpbwmmpfmaza0xnyrhx0mrkl4by7"))))
31805 (arguments
31806 `(#:cargo-inputs (("rust-libc" ,rust-libc-0.2))))))
31807
31808 (define-public rust-utf-8-0.7
31809 (package
31810 (name "rust-utf-8")
31811 (version "0.7.5")
31812 (source
31813 (origin
31814 (method url-fetch)
31815 (uri (crate-uri "utf-8" version))
31816 (file-name
31817 (string-append name "-" version ".tar.gz"))
31818 (sha256
31819 (base32
31820 "1iw5rp4i3mfi9k51picbr5bgjqhjcmnxx7001clh5ydq31y2zr05"))))
31821 (build-system cargo-build-system)
31822 (arguments `(#:skip-build? #t))
31823 (home-page "https://github.com/SimonSapin/rust-utf8")
31824 (synopsis
31825 "Incremental, zero-copy UTF-8 decoding with error handling")
31826 (description
31827 "Incremental, zero-copy UTF-8 decoding with error handling.")
31828 (license (list license:expat license:asl2.0))))
31829
31830 (define-public rust-utf8-ranges-1.0
31831 (package
31832 (name "rust-utf8-ranges")
31833 (version "1.0.4")
31834 (source
31835 (origin
31836 (method url-fetch)
31837 (uri (crate-uri "utf8-ranges" version))
31838 (file-name
31839 (string-append name "-" version ".tar.gz"))
31840 (sha256
31841 (base32
31842 "1fpc32znar5v02nwsw7icl41jzzzzhy0si6ngqjylzrbxxpi3bml"))))
31843 (build-system cargo-build-system)
31844 (arguments
31845 `(#:skip-build? #t
31846 #:cargo-development-inputs
31847 (("rust-doc-comment" ,rust-doc-comment-0.3)
31848 ("rust-quickcheck" ,rust-quickcheck-0.8))))
31849 (home-page "https://github.com/BurntSushi/utf8-ranges")
31850 (synopsis
31851 "Convert ranges of Unicode codepoints to UTF-8 byte ranges")
31852 (description
31853 "Convert ranges of Unicode codepoints to UTF-8 byte ranges.")
31854 (license (list license:expat license:unlicense))))
31855
31856 (define-public rust-utf8-ranges-0.1
31857 (package
31858 (inherit rust-utf8-ranges-1.0)
31859 (name "rust-utf8-ranges")
31860 (version "0.1.3")
31861 (source
31862 (origin
31863 (method url-fetch)
31864 (uri (crate-uri "utf8-ranges" version))
31865 (file-name
31866 (string-append name "-" version ".tar.gz"))
31867 (sha256
31868 (base32
31869 "03xf604b2v51ag3jgzw92l97xnb10kw9zv948bhc7ja1ik017jm1"))))
31870 (arguments
31871 `(#:cargo-development-inputs
31872 (("rust-quickcheck" ,rust-quickcheck-0.2))))))
31873
31874 (define-public rust-utf8parse-0.1
31875 (package
31876 (name "rust-utf8parse")
31877 (version "0.1.1")
31878 (source
31879 (origin
31880 (method url-fetch)
31881 (uri (crate-uri "utf8parse" version))
31882 (file-name
31883 (string-append name "-" version ".tar.gz"))
31884 (sha256
31885 (base32
31886 "0zamsj2986shm4x9zncjf2m5qy9scaw7qnxw4f89b2afpg6a8wl7"))))
31887 (build-system cargo-build-system)
31888 (home-page "https://github.com/jwilm/vte")
31889 (synopsis "Table-driven UTF-8 parser")
31890 (description "This package provides a table-driven UTF-8 parser.")
31891 (license (list license:asl2.0 license:expat))))
31892
31893 (define-public rust-uuid-0.8
31894 (package
31895 (name "rust-uuid")
31896 (version "0.8.1")
31897 (source
31898 (origin
31899 (method url-fetch)
31900 (uri (crate-uri "uuid" version))
31901 (file-name
31902 (string-append name "-" version ".tar.gz"))
31903 (sha256
31904 (base32
31905 "049w16qwk3d3b9cmpgvd7fvcnwgs75l8rlsagh06w7ga9dm2zplz"))))
31906 (build-system cargo-build-system)
31907 (arguments
31908 `(#:skip-build? #t
31909 #:cargo-inputs
31910 (("rust-winapi" ,rust-winapi-0.3)
31911 ("rust-sha1" ,rust-sha1-0.6)
31912 ("rust-md5" ,rust-md5-0.6)
31913 ("rust-rand" ,rust-rand-0.7)
31914 ("rust-serde" ,rust-serde-1)
31915 ("rust-slog" ,rust-slog-2))))
31916 (home-page "https://github.com/uuid-rs/uuid")
31917 (synopsis "Library to generate and parse UUIDs")
31918 (description
31919 "This package provides a library to generate and parse UUIDs.")
31920 (license (list license:asl2.0 license:expat))))
31921
31922 (define-public rust-uuid-0.7
31923 (package
31924 (name "rust-uuid")
31925 (version "0.7.4")
31926 (source
31927 (origin
31928 (method url-fetch)
31929 (uri (crate-uri "uuid" version))
31930 (file-name
31931 (string-append name "-" version ".tar.gz"))
31932 (sha256
31933 (base32
31934 "0ank4xk20x3nrz926w8j9mz53bi3v8bykxmhlq2pffa8xc8wdnwh"))))
31935 (build-system cargo-build-system)
31936 (arguments
31937 `(#:skip-build? #t
31938 #:cargo-inputs
31939 (("rust-byteorder" ,rust-byteorder-1)
31940 ("rust-md5" ,rust-md5-0.6)
31941 ("rust-rand" ,rust-rand-0.6)
31942 ("rust-serde" ,rust-serde-1)
31943 ("rust-sha1" ,rust-sha1-0.6)
31944 ("rust-slog" ,rust-slog-2)
31945 ("rust-winapi" ,rust-winapi-0.3))
31946 #:cargo-development-inputs
31947 (("rust-bincode" ,rust-bincode-1)
31948 ("rust-serde-derive" ,rust-serde-derive-1)
31949 ("rust-serde-json" ,rust-serde-json-1)
31950 ("rust-serde-test" ,rust-serde-test-1))))
31951 (home-page "https://github.com/uuid-rs/uuid")
31952 (synopsis "Generate and parse UUIDs")
31953 (description
31954 "This package provides a library to generate and parse UUIDs.")
31955 (license (list license:asl2.0 license:expat))))
31956
31957 (define-public rust-uuid-0.5
31958 (package
31959 (inherit rust-uuid-0.7)
31960 (name "rust-uuid")
31961 (version "0.5.1")
31962 (source
31963 (origin
31964 (method url-fetch)
31965 (uri (crate-uri "uuid" version))
31966 (file-name
31967 (string-append name "-" version ".tar.gz"))
31968 (sha256
31969 (base32
31970 "08nw3famk1w1zf9ck32pmklk24wd4n4nqnr9wl46qvxak2wf7ixw"))))
31971 (arguments
31972 `(#:cargo-inputs
31973 (("rust-md5" ,rust-md5-0.3)
31974 ("rust-rand" ,rust-rand-0.3)
31975 ("rust-rustc-serialize" ,rust-rustc-serialize-0.3)
31976 ("rust-serde" ,rust-serde-1)
31977 ("rust-sha1" ,rust-sha1-0.2))))))
31978
31979 (define-public rust-vcpkg-0.2
31980 (package
31981 (name "rust-vcpkg")
31982 (version "0.2.10")
31983 (source
31984 (origin
31985 (method url-fetch)
31986 (uri (crate-uri "vcpkg" version))
31987 (file-name (string-append name "-" version ".crate"))
31988 (sha256
31989 (base32
31990 "132hlmsc4maava91vl4lh677sl1c7vr8ccl53fnr5w41y6dh4m34"))))
31991 (build-system cargo-build-system)
31992 (arguments
31993 `(#:tests? #f ; Tests want mysql, harfbuzz, graphite2.
31994 #:cargo-development-inputs
31995 (("rust-lazy-static" ,rust-lazy-static-1)
31996 ("rust-tempdir" ,rust-tempdir-0.3))))
31997 (home-page "https://github.com/mcgoo/vcpkg-rs")
31998 (synopsis "Find native dependencies in a vcpkg tree at build time")
31999 (description
32000 "This package provides a library to find native dependencies in a
32001 @code{vcpkg} tree at build time in order to be used in Cargo build scripts.")
32002 (license (list license:asl2.0
32003 license:expat))))
32004
32005 (define-public rust-vec-map-0.8
32006 (package
32007 (name "rust-vec-map")
32008 (version "0.8.2")
32009 (source
32010 (origin
32011 (method url-fetch)
32012 (uri (crate-uri "vec_map" version))
32013 (file-name (string-append name "-" version ".crate"))
32014 (sha256
32015 (base32
32016 "1481w9g1dw9rxp3l6snkdqihzyrd2f8vispzqmwjwsdyhw8xzggi"))))
32017 (build-system cargo-build-system)
32018 (arguments
32019 `(#:cargo-inputs
32020 (("rust-serde" ,rust-serde-1))))
32021 (home-page "https://github.com/contain-rs/vec-map")
32022 (synopsis "Simple map based on a vector for small integer keys")
32023 (description
32024 "This package provides a simple map based on a vector for small integer keys.")
32025 (license (list license:asl2.0
32026 license:expat))))
32027
32028 (define-public rust-vecmath-1.0
32029 (package
32030 (name "rust-vecmath")
32031 (version "1.0.0")
32032 (source
32033 (origin
32034 (method url-fetch)
32035 (uri (crate-uri "vecmath" version))
32036 (file-name
32037 (string-append name "-" version ".tar.gz"))
32038 (sha256
32039 (base32
32040 "0shmj76rj7rqv377vy365xwr5rx23kxqgkqxxrymdjjvv3hf2slm"))))
32041 (build-system cargo-build-system)
32042 (arguments
32043 `(#:skip-build? #t
32044 #:cargo-inputs
32045 (("rust-piston-float" ,rust-piston-float-1.0))))
32046 (home-page "https://github.com/pistondevelopers/vecmath")
32047 (synopsis "Library for vector math designed for reexporting")
32048 (description
32049 "This package provides a simple and type agnostic library for vector math
32050 designed for reexporting.")
32051 (license license:expat)))
32052
32053 (define-public rust-vergen-3.1
32054 (package
32055 (name "rust-vergen")
32056 (version "3.1.0")
32057 (source
32058 (origin
32059 (method url-fetch)
32060 (uri (crate-uri "vergen" version))
32061 (file-name
32062 (string-append name "-" version ".tar.gz"))
32063 (sha256
32064 (base32
32065 "1jrr0wihm9si98qz8ghjfnalfvmfv8rqvkgj2npqa7yzjs4hvrac"))))
32066 (build-system cargo-build-system)
32067 (arguments
32068 `(#:skip-build? #t
32069 #:cargo-inputs
32070 (("rust-chrono" ,rust-chrono-0.4)
32071 ("rust-chrono" ,rust-chrono-0.4)
32072 ("rust-bitflags" ,rust-bitflags-1))))
32073 (home-page "https://github.com/rustyhorde/vergen")
32074 (synopsis "Generate version related functions")
32075 (description
32076 "Generate version related functions.")
32077 (license (list license:expat license:asl2.0))))
32078
32079 (define-public rust-version-check-0.9
32080 (package
32081 (name "rust-version-check")
32082 (version "0.9.2")
32083 (source
32084 (origin
32085 (method url-fetch)
32086 (uri (crate-uri "version_check" version))
32087 (file-name (string-append name "-" version ".crate"))
32088 (sha256
32089 (base32 "1vbaqdf802qinsq8q20w8w0qn2pv0rkq5p73ijcblrwxcvjp5adm"))))
32090 (build-system cargo-build-system)
32091 (home-page "https://github.com/SergioBenitez/version_check")
32092 (synopsis "Check that the installed rustc meets some version requirements")
32093 (description
32094 "This tiny crate checks that the running or installed rustc meets some
32095 version requirements. The version is queried by calling the Rust compiler with
32096 @code{--version}. The path to the compiler is determined first via the
32097 @code{RUSTC} environment variable. If it is not set, then @code{rustc} is used.
32098 If that fails, no determination is made, and calls return None.")
32099 (license (list license:asl2.0
32100 license:expat))))
32101
32102 (define-public rust-version-check-0.1
32103 (package
32104 (inherit rust-version-check-0.9)
32105 (name "rust-version-check")
32106 (version "0.1.5")
32107 (source
32108 (origin
32109 (method url-fetch)
32110 (uri (crate-uri "version_check" version))
32111 (file-name (string-append name "-" version ".crate"))
32112 (sha256
32113 (base32
32114 "1pf91pvj8n6akh7w6j5ypka6aqz08b3qpzgs0ak2kjf4frkiljwi"))))))
32115
32116 (define-public rust-version-compare-0.0
32117 (package
32118 (name "rust-version-compare")
32119 (version "0.0.11")
32120 (source
32121 (origin
32122 (method url-fetch)
32123 (uri (crate-uri "version-compare" version))
32124 (file-name
32125 (string-append name "-" version ".tar.gz"))
32126 (sha256
32127 (base32 "06v688jg6gd00zvm3cp7qh2h3mz8cs2ngr09bnwxhyddxrcwh60w"))))
32128 (build-system cargo-build-system)
32129 (home-page "https://github.com/timvisee/version-compare")
32130 (synopsis "Rust library to easily compare version numbers")
32131 (description
32132 "This package provides a Rust library to easily compare version
32133 numbers, and test them against various comparison operators.")
32134 (license license:expat)))
32135
32136 (define-public rust-version-sync-0.8
32137 (package
32138 (name "rust-version-sync")
32139 (version "0.8.1")
32140 (source
32141 (origin
32142 (method url-fetch)
32143 (uri (crate-uri "version-sync" version))
32144 (file-name
32145 (string-append name "-" version ".tar.gz"))
32146 (sha256
32147 (base32
32148 "01pq0ia7ak7d69c3chjgdmaaq271yrspgbzmk6wmrwb74hx3skw4"))))
32149 (build-system cargo-build-system)
32150 (arguments
32151 `(#:skip-build? #t
32152 #:cargo-inputs
32153 (("rust-itertools" ,rust-itertools-0.8)
32154 ("rust-proc-macro2" ,rust-proc-macro2-0.4)
32155 ("rust-pulldown-cmark" ,rust-pulldown-cmark-0.4)
32156 ("rust-regex" ,rust-regex-1)
32157 ("rust-semver-parser" ,rust-semver-parser-0.9)
32158 ("rust-syn" ,rust-syn-0.15)
32159 ("rust-toml" ,rust-toml-0.5)
32160 ("rust-url" ,rust-url-1))))
32161 (home-page "https://github.com/mgeisler/version-sync")
32162 (synopsis
32163 "Ensure that version numbers are updated when the crate version changes")
32164 (description
32165 "Simple crate for ensuring that version numbers in README files are
32166 updated when the crate version changes.")
32167 (license license:expat)))
32168
32169 (define-public rust-version-sync-0.6
32170 (package
32171 (inherit rust-version-sync-0.8)
32172 (name "rust-version-sync")
32173 (version "0.6.0")
32174 (source
32175 (origin
32176 (method url-fetch)
32177 (uri (crate-uri "version-sync" version))
32178 (file-name
32179 (string-append name "-" version ".tar.gz"))
32180 (sha256
32181 (base32
32182 "0n33s4s4k9sy7rhlrf9lwwyqkjrgwnpfjsz0xzhfh3d3w33jaiq8"))
32183 (modules '((guix build utils)))
32184 (snippet
32185 '(begin (substitute* "Cargo.toml"
32186 (("~1.1") "1.1"))
32187 #t))))
32188 (arguments
32189 `(#:cargo-inputs
32190 (("rust-itertools" ,rust-itertools-0.7)
32191 ("rust-lazy-static" ,rust-lazy-static-1)
32192 ("rust-pulldown-cmark" ,rust-pulldown-cmark-0.1)
32193 ("rust-regex" ,rust-regex-1)
32194 ("rust-semver-parser" ,rust-semver-parser-0.9)
32195 ("rust-syn" ,rust-syn-0.15)
32196 ("rust-toml" ,rust-toml-0.4)
32197 ("rust-url" ,rust-url-1))))))
32198
32199 (define-public rust-void-1
32200 (package
32201 (name "rust-void")
32202 (version "1.0.2")
32203 (source
32204 (origin
32205 (method url-fetch)
32206 (uri (crate-uri "void" version))
32207 (file-name (string-append name "-" version ".crate"))
32208 (sha256
32209 (base32
32210 "0zc8f0ksxvmhvgx4fdg0zyn6vdnbxd2xv9hfx4nhzg6kbs4f80ka"))))
32211 (build-system cargo-build-system)
32212 (home-page "https://github.com/reem/rust-void")
32213 (synopsis "Void type for use in statically impossible cases")
32214 (description
32215 "The uninhabited void type for use in statically impossible cases.")
32216 (license license:expat)))
32217
32218 (define-public rust-vswhom-0.1
32219 (package
32220 (name "rust-vswhom")
32221 (version "0.1.0")
32222 (source
32223 (origin
32224 (method url-fetch)
32225 (uri (crate-uri "vswhom" version))
32226 (file-name
32227 (string-append name "-" version ".tar.gz"))
32228 (sha256
32229 (base32
32230 "12v0fjjzxdc3y5c0lcwycfhphz7zf2s06hl5krwhawah0xzrp5xy"))))
32231 (build-system cargo-build-system)
32232 (arguments
32233 `(#:cargo-inputs
32234 (("rust-libc" ,rust-libc-0.2)
32235 ("rust-vswhom-sys" ,rust-vswhom-sys-0.1))))
32236 (home-page "https://github.com/nabijaczleweli/vswhom.rs")
32237 (synopsis "FFI to Jon Blow's VS discovery script")
32238 (description
32239 "This package provides a pure FFI to Jon Blow's VS discovery script.")
32240 (license license:expat)))
32241
32242 (define-public rust-vswhom-sys-0.1
32243 (package
32244 (name "rust-vswhom-sys")
32245 (version "0.1.0")
32246 (source
32247 (origin
32248 (method url-fetch)
32249 (uri (crate-uri "vswhom-sys" version))
32250 (file-name
32251 (string-append name "-" version ".tar.gz"))
32252 (sha256
32253 (base32
32254 "0clm4dx4amwlhg5lkh52fmvvwq6c7s7b9xqljw39mryhsc158bzw"))))
32255 (build-system cargo-build-system)
32256 (arguments
32257 `(#:cargo-inputs
32258 (("rust-libc" ,rust-libc-0.2)
32259 ("rust-cc" ,rust-cc-1))))
32260 (home-page "https://github.com/nabijaczleweli/vswhom-sys.rs")
32261 (synopsis "Pure FFI to Jon Blow's VS discovery script")
32262 (description
32263 "This package provides a pure FFI to Jon Blow's VS discovery script.")
32264 (license license:expat)))
32265
32266 (define-public rust-vte-0.3
32267 (package
32268 (name "rust-vte")
32269 (version "0.3.3")
32270 (source
32271 (origin
32272 (method url-fetch)
32273 (uri (crate-uri "vte" version))
32274 (file-name
32275 (string-append name "-" version ".tar.gz"))
32276 (sha256
32277 (base32
32278 "1kz8svnqnxclllsgh0ck20rplw3qzp46b5v30yscnzrgw8vgahjg"))))
32279 (build-system cargo-build-system)
32280 (arguments
32281 `(#:tests? #f ; tests not included in release
32282 #:cargo-inputs
32283 (("rust-utf8parse" ,rust-utf8parse-0.1))))
32284 (home-page "https://github.com/jwilm/vte")
32285 (synopsis "Parser for implementing terminal emulators")
32286 (description
32287 "This package provides a parser for implementing terminal emulators.")
32288 (license (list license:asl2.0 license:expat))))
32289
32290 (define-public rust-wait-timeout-0.2
32291 (package
32292 (name "rust-wait-timeout")
32293 (version "0.2.0")
32294 (source
32295 (origin
32296 (method url-fetch)
32297 (uri (crate-uri "wait-timeout" version))
32298 (file-name
32299 (string-append name "-" version ".tar.gz"))
32300 (sha256
32301 (base32
32302 "1xpkk0j5l9pfmjfh1pi0i89invlavfrd9av5xp0zhxgb29dhy84z"))))
32303 (build-system cargo-build-system)
32304 (arguments
32305 `(#:skip-build? #t
32306 #:cargo-inputs (("rust-libc" ,rust-libc-0.2))))
32307 (home-page "https://github.com/alexcrichton/wait-timeout")
32308 (synopsis "Wait on a child process with a timeout")
32309 (description
32310 "This package provides a crate to wait on a child process with a timeout
32311 specified across Unix and Windows platforms.")
32312 (license (list license:expat license:asl2.0))))
32313
32314 (define-public rust-walkdir-2
32315 (package
32316 (name "rust-walkdir")
32317 (version "2.3.1")
32318 (source
32319 (origin
32320 (method url-fetch)
32321 (uri (crate-uri "walkdir" version))
32322 (file-name
32323 (string-append name "-" version ".tar.gz"))
32324 (sha256
32325 (base32
32326 "0z9g39f49cycdm9vzjf8hnfh3f1csxgd65kmlphj8r2vffy84wbp"))))
32327 (build-system cargo-build-system)
32328 (arguments
32329 `(#:skip-build? #t
32330 #:cargo-inputs
32331 (("rust-winapi-util" ,rust-winapi-util-0.1)
32332 ("rust-winapi" ,rust-winapi-0.3)
32333 ("rust-same-file" ,rust-same-file-1.0))))
32334 (home-page "https://github.com/BurntSushi/walkdir")
32335 (synopsis "Recursively walk a directory")
32336 (description "Recursively walk a directory.")
32337 (license (list license:unlicense license:expat))))
32338
32339 (define-public rust-walkdir-1
32340 (package
32341 (inherit rust-walkdir-2)
32342 (name "rust-walkdir")
32343 (version "1.0.7")
32344 (source
32345 (origin
32346 (method url-fetch)
32347 (uri (crate-uri "walkdir" version))
32348 (file-name
32349 (string-append name "-" version ".tar.gz"))
32350 (sha256
32351 (base32
32352 "1zw8safzqpsrvfn0256cngq2fr9d4lmwv5qb8ycn1f7sf3kgj25v"))))
32353 (arguments
32354 `(#:cargo-inputs
32355 (("rust-kernel32-sys" ,rust-kernel32-sys-0.2)
32356 ("rust-same-file" ,rust-same-file-0.1)
32357 ("rust-winapi" ,rust-winapi-0.2))
32358 #:cargo-development-inputs
32359 (("rust-docopt" ,rust-docopt-0.7)
32360 ("rust-quickcheck" ,rust-quickcheck-0.4)
32361 ("rust-rand" ,rust-rand-0.3)
32362 ("rust-rustc-serialize" ,rust-rustc-serialize-0.3))))))
32363
32364 (define-public rust-want-0.3
32365 (package
32366 (name "rust-want")
32367 (version "0.3.0")
32368 (source
32369 (origin
32370 (method url-fetch)
32371 (uri (crate-uri "want" version))
32372 (file-name (string-append name "-" version ".tar.gz"))
32373 (sha256
32374 (base32
32375 "181b2zmwfq389x9n2g1n37cvcvvdand832zz6v8i1l8wrdlaks0w"))))
32376 (build-system cargo-build-system)
32377 (arguments
32378 `(#:cargo-inputs
32379 (("rust-log" ,rust-log-0.4)
32380 ("rust-try-lock" ,rust-try-lock-0.2))
32381 #:cargo-development-inputs
32382 (("rust-tokio-executor" ,rust-tokio-executor-0.2)
32383 ("rust-tokio-sync" ,rust-tokio-sync-0.2))))
32384 (home-page "https://github.com/seanmonstar/want")
32385 (synopsis "Detect when another future wants a result")
32386 (description "This package lets you detect when another future wants a
32387 result.")
32388 (license license:expat)))
32389
32390 (define-public rust-want-0.2
32391 (package
32392 (name "rust-want")
32393 (version "0.2.0")
32394 (source
32395 (origin
32396 (method url-fetch)
32397 (uri (crate-uri "want" version))
32398 (file-name (string-append name "-" version ".tar.gz"))
32399 (sha256
32400 (base32 "0c52g7b4hhj033jc56sx9z3krivyciz0hlblixq2gc448zx5wfdn"))))
32401 (build-system cargo-build-system)
32402 (arguments
32403 `(#:tests? #f ;; 2/5 tests fail
32404 #:cargo-inputs
32405 (("rust-futures" ,rust-futures-0.1)
32406 ("rust-log" ,rust-log-0.4)
32407 ("rust-try-lock" ,rust-try-lock-0.2))))
32408 (home-page "https://github.com/seanmonstar/want")
32409 (synopsis "Detect when another Future wants a result")
32410 (description "Detect when another Future wants a result.")
32411 (license license:expat)))
32412
32413 (define-public rust-wasi-0.9
32414 (package
32415 (name "rust-wasi")
32416 (version "0.9.0+wasi-snapshot-preview1")
32417 (source
32418 (origin
32419 (method url-fetch)
32420 (uri (crate-uri "wasi" version))
32421 (file-name
32422 (string-append name "-" version ".tar.gz"))
32423 (sha256
32424 (base32
32425 "06g5v3vrdapfzvfq662cij7v8a1flwr2my45nnncdv2galrdzkfc"))))
32426 (build-system cargo-build-system)
32427 (arguments
32428 `(#:skip-build? #t
32429 #:cargo-inputs
32430 (("rust-compiler-builtins" ,rust-compiler-builtins-0.1)
32431 ("rust-rustc-std-workspace-alloc" ,rust-rustc-std-workspace-alloc-1)
32432 ("rust-rustc-std-workspace-core" ,rust-rustc-std-workspace-core-1))))
32433 (home-page "https://github.com/bytecodealliance/wasi")
32434 (synopsis "Experimental WASI API bindings for Rust")
32435 (description
32436 "This package provides an experimental WASI API bindings for Rust.")
32437 (license (list license:asl2.0
32438 license:expat))))
32439
32440 (define-public rust-wasi-0.5
32441 (package
32442 (name "rust-wasi")
32443 (version "0.5.0")
32444 (source
32445 (origin
32446 (method url-fetch)
32447 (uri (crate-uri "wasi" version))
32448 (file-name
32449 (string-append name "-" version ".crate"))
32450 (sha256
32451 (base32
32452 "1ir3pd4phdfml0cbziw9bqp7mnk0vfp9biy8bh25lln6raml4m7x"))))
32453 (build-system cargo-build-system)
32454 (home-page "https://github.com/CraneStation/rust-wasi")
32455 (synopsis "Experimental WASI API bindings for Rust")
32456 (description "This package contains experimental WASI API bindings
32457 in Rust.")
32458 (license license:asl2.0)))
32459
32460 (define-public rust-wasm-bindgen-0.2
32461 (package
32462 (name "rust-wasm-bindgen")
32463 (version "0.2.60")
32464 (source
32465 (origin
32466 (method url-fetch)
32467 (uri (crate-uri "wasm-bindgen" version))
32468 (file-name
32469 (string-append name "-" version ".tar.gz"))
32470 (sha256
32471 (base32
32472 "0zx42zryw03w3maz8p65gr5bhhybr2sdzgcck5p3gy47abh7ri9c"))))
32473 (build-system cargo-build-system)
32474 (arguments
32475 `(#:cargo-inputs
32476 (("rust-cfg-if" ,rust-cfg-if-0.1)
32477 ("rust-serde" ,rust-serde-1)
32478 ("rust-serde-json" ,rust-serde-json-1)
32479 ("rust-wasm-bindgen-macro" ,rust-wasm-bindgen-macro-0.2))
32480 #:cargo-development-inputs
32481 (("rust-js-sys" ,rust-js-sys-0.3)
32482 ("rust-serde-derive" ,rust-serde-derive-1)
32483 ("rust-wasm-bindgen-futures" ,rust-wasm-bindgen-futures-0.4)
32484 ("rust-wasm-bindgen-test" ,rust-wasm-bindgen-test-0.3)
32485 ("rust-wasm-bindgen-test-crate-a"
32486 ,rust-wasm-bindgen-test-crate-a-0.1)
32487 ("rust-wasm-bindgen-test-crate-b"
32488 ,rust-wasm-bindgen-test-crate-b-0.1))))
32489 (home-page "https://rustwasm.github.io/")
32490 (synopsis "Easy support for interacting between JS and Rust")
32491 (description
32492 "Easy support for interacting between JS and Rust.")
32493 (license (list license:asl2.0 license:expat))))
32494
32495 (define-public rust-wasm-bindgen-backend-0.2
32496 (package
32497 (name "rust-wasm-bindgen-backend")
32498 (version "0.2.60")
32499 (source
32500 (origin
32501 (method url-fetch)
32502 (uri (crate-uri "wasm-bindgen-backend" version))
32503 (file-name
32504 (string-append name "-" version ".tar.gz"))
32505 (sha256
32506 (base32
32507 "1k9p8a7ng6nqan0m9555wj936lm2s1qz0fnafclwlv61yrxx6ryr"))))
32508 (build-system cargo-build-system)
32509 (arguments
32510 `(#:cargo-inputs
32511 (("rust-bumpalo" ,rust-bumpalo-3)
32512 ("rust-lazy-static" ,rust-lazy-static-1)
32513 ("rust-log" ,rust-log-0.4)
32514 ("rust-proc-macro2" ,rust-proc-macro2-1)
32515 ("rust-quote" ,rust-quote-1)
32516 ("rust-syn" ,rust-syn-1)
32517 ("rust-wasm-bindgen-shared" ,rust-wasm-bindgen-shared-0.2))))
32518 (home-page "https://rustwasm.github.io/wasm-bindgen/")
32519 (synopsis "Backend code generation of the wasm-bindgen tool")
32520 (description
32521 "Backend code generation of the wasm-bindgen tool.")
32522 (license (list license:expat license:asl2.0))))
32523
32524 (define-public rust-wasm-bindgen-console-logger-0.1
32525 (package
32526 (name "rust-wasm-bindgen-console-logger")
32527 (version "0.1.1")
32528 (source
32529 (origin
32530 (method url-fetch)
32531 (uri (crate-uri "wasm-bindgen-console-logger" version))
32532 (file-name
32533 (string-append name "-" version ".tar.gz"))
32534 (sha256
32535 (base32
32536 "1vc506dhrk2yl0snkcn45s5adndq9wj7ipxb7awbbxzswxss4c3m"))))
32537 (build-system cargo-build-system)
32538 (arguments
32539 `(#:cargo-inputs
32540 (("rust-log" ,rust-log-0.4)
32541 ("rust-wasm-bindgen" ,rust-wasm-bindgen-0.2))))
32542 (home-page "https://github.com/blm768/wasm-bindgen-console-logger")
32543 (synopsis "Rust log and JavaScript console logging integration")
32544 (description
32545 "This package provides a logging facility that integrates the
32546 log crate with JavaScript console logging functions with the help of
32547 wasm-bindgen.")
32548 (license license:cc0)))
32549
32550 (define-public rust-wasm-bindgen-futures-0.4
32551 (package
32552 (name "rust-wasm-bindgen-futures")
32553 (version "0.4.8")
32554 (source
32555 (origin
32556 (method url-fetch)
32557 (uri (crate-uri "wasm-bindgen-futures" version))
32558 (file-name
32559 (string-append name "-" version ".tar.gz"))
32560 (sha256
32561 (base32
32562 "1n9ma4kinr4w6r2sh4wm04my6p14k1vx3a4vdbn0vd187sgd9gcb"))))
32563 (build-system cargo-build-system)
32564 (arguments
32565 `(#:skip-build? #t
32566 #:cargo-inputs
32567 (("rust-cfg-if" ,rust-cfg-if-0.1)
32568 ("rust-js-sys" ,rust-js-sys-0.3)
32569 ("rust-wasm-bindgen" ,rust-wasm-bindgen-0.2)
32570 ("rust-web-sys" ,rust-web-sys-0.3))
32571 #:cargo-development-inputs
32572 (("rust-futures-channel-preview" ,rust-futures-channel-preview-0.3)
32573 ("rust-wasm-bindgen-test" ,rust-wasm-bindgen-test-0.3))))
32574 (home-page "https://rustwasm.github.io/wasm-bindgen/")
32575 (synopsis
32576 "Bridging the gap between Rust Futures and JavaScript Promises")
32577 (description
32578 "Bridging the gap between Rust Futures and JavaScript Promises.")
32579 (license (list license:expat license:asl2.0))))
32580
32581 (define-public rust-wasm-bindgen-futures-0.3
32582 (package
32583 (inherit rust-wasm-bindgen-futures-0.4)
32584 (name "rust-wasm-bindgen-futures")
32585 (version "0.3.27")
32586 (source
32587 (origin
32588 (method url-fetch)
32589 (uri (crate-uri "wasm-bindgen-futures" version))
32590 (file-name
32591 (string-append name "-" version ".tar.gz"))
32592 (sha256
32593 (base32 "073p71skp91d9v2wczl6k7z9p0w25vn43br2v2g1ncbc6hvhnhl3"))))
32594 (arguments
32595 `(#:skip-build? #t
32596 #:cargo-inputs
32597 (("rust-futures" ,rust-futures-0.1)
32598 ("rust-futures-channel-preview"
32599 ,rust-futures-channel-preview-0.3)
32600 ("rust-futures-util-preview" ,rust-futures-util-preview-0.3)
32601 ("rust-js-sys" ,rust-js-sys-0.3)
32602 ("rust-lazy-static" ,rust-lazy-static-1)
32603 ("rust-wasm-bindgen" ,rust-wasm-bindgen-0.2))
32604 #:cargo-development-inputs
32605 (("rust-wasm-bindgen-test" ,rust-wasm-bindgen-test-0.2))))))
32606
32607 (define-public rust-wasm-bindgen-macro-0.2
32608 (package
32609 (name "rust-wasm-bindgen-macro")
32610 (version "0.2.60")
32611 (source
32612 (origin
32613 (method url-fetch)
32614 (uri (crate-uri "wasm-bindgen-macro" version))
32615 (file-name
32616 (string-append name "-" version ".tar.gz"))
32617 (sha256
32618 (base32
32619 "1973xr0vr2aj85fkp3smk61z5ki7c4fhxlicfjxq3a0y7sv53lcb"))))
32620 (build-system cargo-build-system)
32621 (arguments
32622 `(#:tests? #f ; 'Async blocks are unstable'
32623 #:cargo-inputs
32624 (("rust-quote" ,rust-quote-1)
32625 ("rust-wasm-bindgen-macro-support"
32626 ,rust-wasm-bindgen-macro-support-0.2))
32627 #:cargo-development-inputs
32628 (("rust-trybuild" ,rust-trybuild-1)
32629 ("rust-wasm-bindgen" ,rust-wasm-bindgen-0.2)
32630 ("rust-wasm-bindgen-futures" ,rust-wasm-bindgen-futures-0.4))))
32631 (home-page "https://rustwasm.github.io/wasm-bindgen/")
32632 (synopsis "Definition of the @code{#[wasm_bindgen]} attribute")
32633 (description
32634 "Definition of the @code{#[wasm_bindgen]} attribute, an internal
32635 dependency.")
32636 (license (list license:expat license:asl2.0))))
32637
32638 (define-public rust-wasm-bindgen-macro-support-0.2
32639 (package
32640 (name "rust-wasm-bindgen-macro-support")
32641 (version "0.2.60")
32642 (source
32643 (origin
32644 (method url-fetch)
32645 (uri (crate-uri "wasm-bindgen-macro-support" version))
32646 (file-name
32647 (string-append name "-" version ".tar.gz"))
32648 (sha256
32649 (base32
32650 "0ca9bb9hnyzcmjww83x8asb76drf55ijhqv8yrl7igpixqv5p2nn"))))
32651 (build-system cargo-build-system)
32652 (arguments
32653 `(#:cargo-inputs
32654 (("rust-proc-macro2" ,rust-proc-macro2-1)
32655 ("rust-quote" ,rust-quote-1)
32656 ("rust-syn" ,rust-syn-1)
32657 ("rust-wasm-bindgen-backend" ,rust-wasm-bindgen-backend-0.2)
32658 ("rust-wasm-bindgen-shared" ,rust-wasm-bindgen-shared-0.2))))
32659 (home-page "https://rustwasm.github.io/wasm-bindgen/")
32660 (synopsis "The @code{#[wasm_bindgen]} macro")
32661 (description
32662 "The part of the implementation of the @code{#[wasm_bindgen]}
32663 attribute that is not in the shared backend crate.")
32664 (license (list license:asl2.0 license:expat))))
32665
32666 (define-public rust-wasm-bindgen-shared-0.2
32667 (package
32668 (name "rust-wasm-bindgen-shared")
32669 (version "0.2.60")
32670 (source
32671 (origin
32672 (method url-fetch)
32673 (uri (crate-uri "wasm-bindgen-shared" version))
32674 (file-name (string-append name "-" version ".crate"))
32675 (sha256
32676 (base32
32677 "0ffn4152w8n629f29lwjgj3adiyixvdbff3mld49gisssbknzxys"))))
32678 (build-system cargo-build-system)
32679 (home-page "https://rustwasm.github.io/wasm-bindgen/")
32680 (synopsis "Shared support between wasm-bindgen and wasm-bindgen cli")
32681 (description "This package provides shared support between
32682 @code{wasm-bindgen} and @code{wasm-bindgen} cli, an internal dependency.")
32683 (license (list license:asl2.0
32684 license:expat))))
32685
32686 (define-public rust-wasm-bindgen-test-0.3
32687 (package
32688 (name "rust-wasm-bindgen-test")
32689 (version "0.3.8")
32690 (source
32691 (origin
32692 (method url-fetch)
32693 (uri (crate-uri "wasm-bindgen-test" version))
32694 (file-name
32695 (string-append name "-" version ".tar.gz"))
32696 (sha256
32697 (base32
32698 "0bn833hghwbcg9cqz1bx9biq271bc4jcbgn2nqk1fkf4ab1hxzcq"))))
32699 (build-system cargo-build-system)
32700 (arguments
32701 `(#:skip-build? #t
32702 #:cargo-inputs
32703 (("rust-console-error-panic-hook" ,rust-console-error-panic-hook-0.1)
32704 ("rust-js-sys" ,rust-js-sys-0.3)
32705 ("rust-scoped-tls" ,rust-scoped-tls-1.0)
32706 ("rust-wasm-bindgen" ,rust-wasm-bindgen-0.2)
32707 ("rust-wasm-bindgen-futures" ,rust-wasm-bindgen-futures-0.4)
32708 ("rust-wasm-bindgen-test-macro" ,rust-wasm-bindgen-test-macro-0.3))))
32709 (home-page "https://github.com/rustwasm/wasm-bindgen")
32710 (synopsis
32711 "Internal testing crate for wasm-bindgen")
32712 (description
32713 "Internal testing crate for wasm-bindgen.")
32714 (license (list license:expat license:asl2.0))))
32715
32716 (define-public rust-wasm-bindgen-test-0.2
32717 (package
32718 (inherit rust-wasm-bindgen-test-0.3)
32719 (name "rust-wasm-bindgen-test")
32720 (version "0.2.50")
32721 (source
32722 (origin
32723 (method url-fetch)
32724 (uri (crate-uri "wasm-bindgen-test" version))
32725 (file-name
32726 (string-append name "-" version ".tar.gz"))
32727 (sha256
32728 (base32 "1h96phc1dmwwqn46k05j2y1mc3ljazh8f1gqqy0x8hm7ccxnknd2"))))
32729 (arguments
32730 `(#:skip-build? #t
32731 #:cargo-inputs
32732 (("rust-console-error-panic-hook" ,rust-console-error-panic-hook-0.1)
32733 ("rust-futures" ,rust-futures-0.1)
32734 ("rust-js-sys" ,rust-js-sys-0.3)
32735 ("rust-scoped-tls" ,rust-scoped-tls-1.0)
32736 ("rust-wasm-bindgen" ,rust-wasm-bindgen-0.2)
32737 ("rust-wasm-bindgen-futures" ,rust-wasm-bindgen-futures-0.3)
32738 ("rust-wasm-bindgen-test-macro" ,rust-wasm-bindgen-test-macro-0.2))))))
32739
32740 (define-public rust-wasm-bindgen-test-crate-a-0.1
32741 (package
32742 (name "rust-wasm-bindgen-test-crate-a")
32743 (version "0.1.0")
32744 (source
32745 (origin
32746 (method url-fetch)
32747 (uri (crate-uri "wasm-bindgen-test-crate-a" version))
32748 (file-name
32749 (string-append name "-" version ".tar.gz"))
32750 (sha256
32751 (base32
32752 "06l9rcxykg2vnp706a6axchjp6lh9ym1awwyyxzmbkv410kqwvsp"))))
32753 (build-system cargo-build-system)
32754 (arguments
32755 `(#:skip-build? #t
32756 #:cargo-inputs
32757 (("rust-wasm-bindgen" ,rust-wasm-bindgen-0.2))))
32758 (home-page "https://github.com/rustwasm/wasm-bindgen")
32759 (synopsis "Internal test crate for wasm-bindgen")
32760 (description
32761 "Internal test crate for wasm-bindgen.")
32762 (license license:expat)))
32763
32764 (define-public rust-wasm-bindgen-test-crate-b-0.1
32765 (package
32766 (name "rust-wasm-bindgen-test-crate-b")
32767 (version "0.1.0")
32768 (source
32769 (origin
32770 (method url-fetch)
32771 (uri (crate-uri "wasm-bindgen-test-crate-b" version))
32772 (file-name
32773 (string-append name "-" version ".tar.gz"))
32774 (sha256
32775 (base32
32776 "16p3gx9vhngdf236zxx2qijqx5sq0lid25j8wy6j522ybxs4vbh8"))))
32777 (build-system cargo-build-system)
32778 (arguments
32779 `(#:skip-build? #t
32780 #:cargo-inputs
32781 (("rust-wasm-bindgen" ,rust-wasm-bindgen-0.2))))
32782 (home-page "https://github.com/rustwasm/wasm-bindgen")
32783 (synopsis "Internal test crate for wasm-bindgen")
32784 (description
32785 "Internal test crate for wasm-bindgen.")
32786 (license (list license:expat license:asl2.0))))
32787
32788 (define-public rust-wasm-bindgen-test-macro-0.3
32789 (package
32790 (name "rust-wasm-bindgen-test-macro")
32791 (version "0.3.8")
32792 (source
32793 (origin
32794 (method url-fetch)
32795 (uri (crate-uri "wasm-bindgen-test-macro" version))
32796 (file-name
32797 (string-append name "-" version ".tar.gz"))
32798 (sha256
32799 (base32
32800 "0kybf3shpp8ysz4v4j259d7vad9kw5bs4i4dlfrs895bhdp7m0wp"))))
32801 (build-system cargo-build-system)
32802 (arguments
32803 `(#:cargo-inputs
32804 (("rust-proc-macro2" ,rust-proc-macro2-1)
32805 ("rust-quote" ,rust-quote-1))))
32806 (home-page "https://github.com/rustwasm/wasm-bindgen")
32807 (synopsis "Internal testing macro for wasm-bindgen")
32808 (description
32809 "This library contains the internal testing macro for wasm-bindgen.")
32810 (license (list license:expat license:asl2.0))))
32811
32812 (define-public rust-wasm-bindgen-test-macro-0.2
32813 (package
32814 (inherit rust-wasm-bindgen-test-macro-0.3)
32815 (name "rust-wasm-bindgen-test-macro")
32816 (version "0.2.50")
32817 (source
32818 (origin
32819 (method url-fetch)
32820 (uri (crate-uri "wasm-bindgen-test-macro" version))
32821 (file-name (string-append name "-" version ".crate"))
32822 (sha256
32823 (base32
32824 "19bvmw8mqlwh6wkbzgs3cnlkywrv8q2kkqggz6y0p158930xm287"))))
32825 (arguments
32826 `(#:cargo-inputs
32827 (("rust-proc-macro2" ,rust-proc-macro2-0.4)
32828 ("rust-quote" ,rust-quote-0.6))))))
32829
32830 (define-public rust-wasm-bindgen-webidl-0.2
32831 (package
32832 (name "rust-wasm-bindgen-webidl")
32833 (version "0.2.58")
32834 (source
32835 (origin
32836 (method url-fetch)
32837 (uri (crate-uri "wasm-bindgen-webidl" version))
32838 (file-name
32839 (string-append name "-" version ".tar.gz"))
32840 (sha256
32841 (base32
32842 "0pcpaw8w3xgfrg9y24ljrsl2bkidgdaaz3ka2bgk417wjc6jl0gg"))))
32843 (build-system cargo-build-system)
32844 (arguments
32845 `(#:skip-build? #t
32846 #:cargo-inputs
32847 (("rust-anyhow" ,rust-anyhow-1.0)
32848 ("rust-heck" ,rust-heck-0.3)
32849 ("rust-log" ,rust-log-0.4)
32850 ("rust-proc-macro2" ,rust-proc-macro2-1)
32851 ("rust-quote" ,rust-quote-1)
32852 ("rust-syn" ,rust-syn-1)
32853 ("rust-wasm-bindgen-backend" ,rust-wasm-bindgen-backend-0.2)
32854 ("rust-weedle" ,rust-weedle-0.10))))
32855 (home-page "https://rustwasm.github.io/wasm-bindgen/")
32856 (synopsis "Support for parsing WebIDL specific to wasm-bindgen")
32857 (description
32858 "Support for parsing WebIDL specific to wasm-bindgen.")
32859 (license (list license:expat license:asl2.0))))
32860
32861 (define-public rust-web-sys-0.3
32862 (package
32863 (name "rust-web-sys")
32864 (version "0.3.37")
32865 (source
32866 (origin
32867 (method url-fetch)
32868 (uri (crate-uri "web-sys" version))
32869 (file-name
32870 (string-append name "-" version ".tar.gz"))
32871 (sha256
32872 (base32
32873 "1jy4q5jawzg3dxzhfwa0g3fsz7h4j0ra6y232ikc6mlcimj52vrd"))))
32874 (build-system cargo-build-system)
32875 (arguments
32876 `(#:cargo-inputs
32877 (("rust-js-sys" ,rust-js-sys-0.3)
32878 ("rust-wasm-bindgen" ,rust-wasm-bindgen-0.2))
32879 #:cargo-development-inputs
32880 (("rust-wasm-bindgen-futures" ,rust-wasm-bindgen-futures-0.4)
32881 ("rust-wasm-bindgen-test" ,rust-wasm-bindgen-test-0.3))))
32882 (home-page "https://rustwasm.github.io/wasm-bindgen/web-sys/index.html")
32883 (synopsis
32884 "Bindings for all Web APIs, a procedurally generated crate from WebIDL")
32885 (description
32886 "Bindings for all Web APIs, a procedurally generated crate from WebIDL.")
32887 (license (list license:expat license:asl2.0))))
32888
32889 (define-public rust-webpki-0.21
32890 (package
32891 (name "rust-webpki")
32892 (version "0.21.2")
32893 (source
32894 (origin
32895 (method url-fetch)
32896 (uri (crate-uri "webpki" version))
32897 (file-name (string-append name "-" version ".tar.gz"))
32898 (sha256
32899 (base32 "1vv3x2alvczfy6jhx79c9h00d1nliqf7s5jlvcd6npc6f8chxxgi"))))
32900 (build-system cargo-build-system)
32901 (arguments
32902 `(#:tests? #f ;; tests fail to build "missing file tests/ed25519/ee.der"
32903 #:cargo-inputs
32904 (("rust-ring" ,rust-ring-0.16)
32905 ("rust-untrusted" ,rust-untrusted-0.7))
32906 #:cargo-development-inputs
32907 (("rust-base64" ,rust-base64-0.9))))
32908 (home-page "https://github.com/briansmith/webpki")
32909 (synopsis "Web PKI X.509 Certificate Verification")
32910 (description "This package provides Web PKI X.509 Certificate
32911 Verification.")
32912 (license license:isc)))
32913
32914 (define-public rust-webpki-0.19
32915 (package
32916 (inherit rust-webpki-0.21)
32917 (name "rust-webpki")
32918 (version "0.19.1")
32919 (source
32920 (origin
32921 (method url-fetch)
32922 (uri (crate-uri "webpki" version))
32923 (file-name
32924 (string-append name "-" version ".tar.gz"))
32925 (sha256
32926 (base32
32927 "10nhyxlqsa4caxlxrijm5h79rdg6ld8hqy78ldjnnfhaj3biqzjg"))))
32928 (arguments
32929 `(#:tests? #f ; tests fail to build "missing file tests/ed25519/ee.der"
32930 #:cargo-inputs
32931 (("rust-ring" ,rust-ring-0.14)
32932 ("rust-untrusted" ,rust-untrusted-0.6))
32933 #:cargo-development-inputs
32934 (("rust-base64" ,rust-base64-0.9))))))
32935
32936 (define-public rust-webpki-0.18
32937 (package/inherit rust-webpki-0.21
32938 (name "rust-webpki")
32939 (version "0.18.1")
32940 (source
32941 (origin
32942 (method url-fetch)
32943 (uri (crate-uri "webpki" version))
32944 (file-name (string-append name "-" version ".tar.gz"))
32945 (sha256
32946 (base32 "0zx1v8afa4ig97dyqfrnlj5i7pib6dnfw88qn2iiqhfq2rrrdmqp"))))
32947 (build-system cargo-build-system)
32948 (arguments
32949 `(#:cargo-inputs
32950 (("rust-ring" ,rust-ring-0.13)
32951 ("rust-untrusted" ,rust-untrusted-0.6))
32952 #:cargo-development-inputs
32953 (("rust-base64" ,rust-base64-0.9))))))
32954
32955 (define-public rust-webpki-roots-0.20
32956 (package
32957 (name "rust-webpki-roots")
32958 (version "0.20.0")
32959 (source
32960 (origin
32961 (method url-fetch)
32962 (uri (crate-uri "webpki-roots" version))
32963 (file-name (string-append name "-" version ".tar.gz"))
32964 (sha256
32965 (base32
32966 "17qpmyym1lsi967b4nc3112nb13ism8731bhjqd9hlajafkxw80g"))))
32967 (build-system cargo-build-system)
32968 (arguments
32969 `(#:cargo-inputs
32970 (("rust-webpki" ,rust-webpki-0.21))))
32971 (home-page "https://github.com/ctz/webpki-roots")
32972 (synopsis "Mozilla's CA root certificates for use with webpki")
32973 (description "This package provides Mozilla's CA root certificates for use
32974 with webpki.")
32975 (license license:mpl2.0)))
32976
32977 (define-public rust-webpki-roots-0.19
32978 (package
32979 (inherit rust-webpki-roots-0.20)
32980 (name "rust-webpki-roots")
32981 (version "0.19.0")
32982 (source
32983 (origin
32984 (method url-fetch)
32985 (uri (crate-uri "webpki-roots" version))
32986 (file-name
32987 (string-append name "-" version ".tar.gz"))
32988 (sha256
32989 (base32
32990 "0fapdqwbfv0kncplpvbgnr0bjd5a9krlpij9jdzk0mvaa6vz9vzq"))))))
32991
32992 (define-public rust-webpki-roots-0.18
32993 (package
32994 (inherit rust-webpki-roots-0.19)
32995 (name "rust-webpki-roots")
32996 (version "0.18.0")
32997 (source
32998 (origin
32999 (method url-fetch)
33000 (uri (crate-uri "webpki-roots" version))
33001 (file-name (string-append name "-" version ".tar.gz"))
33002 (sha256
33003 (base32 "1d4ss607rgi9pj01zzqa13c1p3m35z314yh6lmjaj4kzvwv5gkci"))))))
33004
33005 (define-public rust-webpki-roots-0.17
33006 (package/inherit rust-webpki-roots-0.18
33007 (name "rust-webpki-roots")
33008 (version "0.17.0")
33009 (source
33010 (origin
33011 (method url-fetch)
33012 (uri (crate-uri "webpki-roots" version))
33013 (file-name (string-append name "-" version ".tar.gz"))
33014 (sha256
33015 (base32 "12vi8dh0yik0h4f0b9dnlw5i3gxyky7iblbksh6zcq4xvlvswqm2"))))))
33016
33017 (define-public rust-webpki-roots-0.16
33018 (package
33019 (inherit rust-webpki-roots-0.17)
33020 (name "rust-webpki-roots")
33021 (version "0.16.0")
33022 (source
33023 (origin
33024 (method url-fetch)
33025 (uri (crate-uri "webpki-roots" version))
33026 (file-name
33027 (string-append name "-" version ".tar.gz"))
33028 (sha256
33029 (base32
33030 "03ny02mwqdgd2ff23k03kbwr2rrcaymxhp7jcjjikfh340hs83y1"))))
33031 (arguments
33032 `(#:cargo-inputs
33033 (("rust-untrusted" ,rust-untrusted-0.6)
33034 ("rust-webpki" ,rust-webpki-0.19))))))
33035
33036 (define-public rust-webpki-roots-0.14
33037 (package/inherit rust-webpki-roots-0.18
33038 (name "rust-webpki-roots")
33039 (version "0.14.0")
33040 (source
33041 (origin
33042 (method url-fetch)
33043 (uri (crate-uri "webpki-roots" version))
33044 (file-name (string-append name "-" version ".tar.gz"))
33045 (sha256
33046 (base32 "05zw919077i3jadbvdsvl69wv2siijg2pjbykl6fyi7hmgb7bggd"))))
33047 (arguments
33048 `(#:cargo-inputs
33049 (("rust-untrusted" ,rust-untrusted-0.6)
33050 ("rust-webpki" ,rust-webpki-0.18))))))
33051
33052 (define-public rust-weedle-0.10
33053 (package
33054 (name "rust-weedle")
33055 (version "0.10.0")
33056 (source
33057 (origin
33058 (method url-fetch)
33059 (uri (crate-uri "weedle" version))
33060 (file-name
33061 (string-append name "-" version ".tar.gz"))
33062 (sha256
33063 (base32
33064 "0r0i2kllvkn9jil6cjzxdi1zsc6p1gjyk751w8lyclaii1q3zd1v"))))
33065 (build-system cargo-build-system)
33066 (arguments
33067 `(#:cargo-inputs (("rust-nom" ,rust-nom-4.2))))
33068 (home-page "https://github.com/rustwasm/weedle")
33069 (synopsis "WebIDL Parser")
33070 (description
33071 "This package provides a WebIDL Parser.")
33072 (license license:expat)))
33073
33074 (define-public rust-which-3
33075 (package
33076 (name "rust-which")
33077 (version "3.1.1")
33078 (source
33079 (origin
33080 (method url-fetch)
33081 (uri (crate-uri "which" version))
33082 (file-name
33083 (string-append name "-" version ".tar.gz"))
33084 (sha256
33085 (base32
33086 "094pw9pi48szshn9ln69z2kg7syq1jp80h5ps1qncbsaw4d0f4fh"))))
33087 (build-system cargo-build-system)
33088 (arguments
33089 `(#:skip-build? #t
33090 #:cargo-inputs
33091 (("rust-failure" ,rust-failure-0.1)
33092 ("rust-libc" ,rust-libc-0.2))))
33093 (home-page "https://github.com/harryfei/which-rs.git")
33094 (synopsis "Rust equivalent of Unix command \"which\"")
33095 (description
33096 "This package provides a Rust equivalent of Unix command \"which\". Locate
33097 installed executable in cross platforms.")
33098 (license license:expat)))
33099
33100 (define-public rust-which-2.0
33101 (package
33102 (name "rust-which")
33103 (version "2.0.1")
33104 (source
33105 (origin
33106 (method url-fetch)
33107 (uri (crate-uri "which" version))
33108 (file-name
33109 (string-append name "-" version ".tar.gz"))
33110 (sha256
33111 (base32
33112 "0r7i793sc0xqnd2fxnqbksj7j1kx65bwn81b8z49750v4c8cnymm"))))
33113 (build-system cargo-build-system)
33114 (arguments
33115 `(#:skip-build? #t
33116 #:cargo-inputs
33117 (("rust-failure" ,rust-failure-0.1)
33118 ("rust-libc" ,rust-libc-0.2))
33119 #:cargo-development-inputs
33120 (("rust-tempdir" ,rust-tempdir-0.3))))
33121 (home-page "https://github.com/harryfei/which-rs")
33122 (synopsis "Rust equivalent of Unix command \"which\"")
33123 (description
33124 "This package provides a Rust equivalent of Unix command \"which\".
33125 Locate installed executable in cross platforms.")
33126 (license license:expat)))
33127
33128 (define-public rust-which-1.0
33129 (package
33130 (inherit rust-which-2.0)
33131 (name "rust-which")
33132 (version "1.0.5")
33133 (source
33134 (origin
33135 (method url-fetch)
33136 (uri (crate-uri "which" version))
33137 (file-name
33138 (string-append name "-" version ".tar.gz"))
33139 (sha256
33140 (base32
33141 "1cjwa57kzfgzs681a27m5pjmq580pv3hkcg23smf270bgqz60jp8"))))
33142 (arguments
33143 `(#:tests? #f
33144 #:cargo-inputs
33145 (("rust-libc" ,rust-libc-0.2))
33146 #:cargo-development-inputs
33147 (("rust-tempdir" ,rust-tempdir-0.3))))))
33148
33149 (define-public rust-wide-0.4
33150 (package
33151 (name "rust-wide")
33152 (version "0.4.6")
33153 (source
33154 (origin
33155 (method url-fetch)
33156 (uri (crate-uri "wide" version))
33157 (file-name
33158 (string-append name "-" version ".tar.gz"))
33159 (sha256
33160 (base32
33161 "0ad75vnzygj8qfcl1l9n4wi93xmqzvhqlpqn4hfayrwbn6wa69aq"))))
33162 (build-system cargo-build-system)
33163 (arguments
33164 `(#:cargo-inputs
33165 (("rust-bytemuck" ,rust-bytemuck-1))))
33166 (home-page "https://github.com/Lokathor/wide")
33167 (synopsis "Rust for wide blocks")
33168 (description "This crate has data types for blocks of primitives packed
33169 together and used as a single unit. This works very well with SIMD/vector
33170 hardware of various targets. Both in terms of explicit SIMD usage and also in
33171 terms of allowing LLVM's auto-vectorizer to do its job.")
33172 (license license:zlib)))
33173
33174 (define-public rust-widestring-0.4
33175 (package
33176 (name "rust-widestring")
33177 (version "0.4.2")
33178 (source
33179 (origin
33180 (method url-fetch)
33181 (uri (crate-uri "widestring" version))
33182 (file-name (string-append name "-" version ".crate"))
33183 (sha256
33184 (base32
33185 "13565qy4jhpg4x0xw8mwxzzsh0p8c93p5208lh6kpwp0q01y6qx7"))))
33186 (build-system cargo-build-system)
33187 (arguments
33188 `(#:cargo-development-inputs
33189 (("rust-winapi" ,rust-winapi-0.3))))
33190 (home-page "https://github.com/starkat99/widestring-rs")
33191 (synopsis "Wide string Rust FFI library")
33192 (description
33193 "A wide string Rust FFI library for converting to and from wide strings,
33194 such as those often used in Windows API or other FFI libraries. Both UTF-16 and
33195 UTF-32 types are provided, including support for malformed encoding.")
33196 (license (list license:asl2.0
33197 license:expat))))
33198
33199 (define-public rust-winapi-0.3
33200 (package
33201 (name "rust-winapi")
33202 (version "0.3.9")
33203 (source
33204 (origin
33205 (method url-fetch)
33206 (uri (crate-uri "winapi" version))
33207 (file-name (string-append name "-" version ".crate"))
33208 (sha256
33209 (base32
33210 "06gl025x418lchw1wxj64ycr7gha83m44cjr5sarhynd9xkrm0sw"))))
33211 (build-system cargo-build-system)
33212 ;; This package depends unconditionally on these two crates.
33213 (arguments
33214 `(#:cargo-inputs
33215 (("winapi-i686-pc-windows-gnu" ,rust-winapi-i686-pc-windows-gnu-0.4)
33216 ("winapi-x86-64-pc-windows-gnu" ,rust-winapi-x86-64-pc-windows-gnu-0.4))))
33217 (home-page "https://github.com/retep998/winapi-rs")
33218 (synopsis "Raw FFI bindings for all of Windows API")
33219 (description
33220 "Raw FFI bindings for all of Windows API.")
33221 (license (list license:asl2.0
33222 license:expat))))
33223
33224 (define-public rust-winapi-0.2
33225 (package
33226 (inherit rust-winapi-0.3)
33227 (name "rust-winapi")
33228 (version "0.2.8")
33229 (source
33230 (origin
33231 (method url-fetch)
33232 (uri (crate-uri "winapi" version))
33233 (file-name (string-append name "-" version ".crate"))
33234 (sha256
33235 (base32
33236 "0yh816lh6lf56dpsgxy189c2ai1z3j8mw9si6izqb6wsjkbcjz8n"))))
33237 (arguments '(#:skip-build? #t))))
33238
33239 (define-public rust-winapi-build-0.1
33240 (package
33241 (name "rust-winapi-build")
33242 (version "0.1.1")
33243 (source
33244 (origin
33245 (method url-fetch)
33246 (uri (crate-uri "winapi-build" version))
33247 (file-name (string-append name "-" version ".crate"))
33248 (sha256
33249 (base32
33250 "1g4rqsgjky0a7530qajn2bbfcrl2v0zb39idgdws9b1l7gp5wc9d"))))
33251 (build-system cargo-build-system)
33252 (home-page "https://github.com/retep998/winapi-rs")
33253 (synopsis "Common code for build.rs in WinAPI -sys crates")
33254 (description
33255 "Common code for build.rs in WinAPI -sys crates.")
33256 (license license:expat)))
33257
33258 (define-public rust-winapi-i686-pc-windows-gnu-0.4
33259 (package
33260 (name "rust-winapi-i686-pc-windows-gnu")
33261 (version "0.4.0")
33262 (source
33263 (origin
33264 (method url-fetch)
33265 (uri (crate-uri "winapi-i686-pc-windows-gnu" version))
33266 (file-name (string-append name "-" version ".crate"))
33267 (sha256
33268 (base32
33269 "1dmpa6mvcvzz16zg6d5vrfy4bxgg541wxrcip7cnshi06v38ffxc"))))
33270 (build-system cargo-build-system)
33271 (home-page "https://github.com/retep998/winapi-rs")
33272 (synopsis "Import libraries for the i686-pc-windows-gnu target")
33273 (description "This crate provides import libraries for the
33274 i686-pc-windows-gnu target. Please don't use this crate directly, depend on
33275 @code{winapi} instead.")
33276 (license (list license:asl2.0
33277 license:expat))))
33278
33279 (define-public rust-winapi-util-0.1
33280 (package
33281 (name "rust-winapi-util")
33282 (version "0.1.5")
33283 (source
33284 (origin
33285 (method url-fetch)
33286 (uri (crate-uri "winapi-util" version))
33287 (file-name (string-append name "-" version ".crate"))
33288 (sha256
33289 (base32
33290 "0y71bp7f6d536czj40dhqk0d55wfbbwqfp2ymqf1an5ibgl6rv3h"))))
33291 (build-system cargo-build-system)
33292 (arguments
33293 `(#:cargo-inputs (("rust-winapi" ,rust-winapi-0.3))))
33294 (home-page "https://github.com/BurntSushi/winapi-util")
33295 (synopsis "Dumping ground for high level safe wrappers over winapi")
33296 (description
33297 "This package provides a dumping ground for high level safe wrappers over
33298 winapi.")
33299 (license (list license:unlicense
33300 license:expat))))
33301
33302 (define-public rust-winapi-x86-64-pc-windows-gnu-0.4
33303 (package
33304 (name "rust-winapi-x86-64-pc-windows-gnu")
33305 (version "0.4.0")
33306 (source
33307 (origin
33308 (method url-fetch)
33309 (uri (crate-uri "winapi-x86_64-pc-windows-gnu" version))
33310 (file-name (string-append name "-" version ".crate"))
33311 (sha256
33312 (base32
33313 "0gqq64czqb64kskjryj8isp62m2sgvx25yyj3kpc2myh85w24bki"))))
33314 (build-system cargo-build-system)
33315 (home-page "https://github.com/retep998/winapi-rs")
33316 (synopsis "Import libraries for the x86_64-pc-windows-gnu target")
33317 (description "This package provides import libraries for the
33318 x86_64-pc-windows-gnu target. Please don't use this crate directly, depend on
33319 @code{winapi} instead.")
33320 (license (list license:asl2.0
33321 license:expat))))
33322
33323 (define-public rust-wincolor-1.0
33324 (package
33325 (name "rust-wincolor")
33326 (version "1.0.3")
33327 (source
33328 (origin
33329 (method url-fetch)
33330 (uri (crate-uri "wincolor" version))
33331 (file-name (string-append name "-" version ".crate"))
33332 (sha256
33333 (base32
33334 "017x33ljndwc76cp5z9llgndn0nh7v8jcjaykbizkawmwy9n3pyp"))))
33335 (build-system cargo-build-system)
33336 (arguments
33337 `(#:cargo-inputs
33338 (("rust-winapi" ,rust-winapi-0.3)
33339 ("rust-winapi-util" ,rust-winapi-util-0.1))))
33340 (home-page "https://github.com/BurntSushi/termcolor/tree/master/wincolor")
33341 (synopsis "Windows API for controlling text color in a Windows console")
33342 (description
33343 "This package provides a simple Windows specific API for controlling text
33344 color in a Windows console.")
33345 (license (list license:unlicense
33346 license:expat))))
33347
33348 (define-public rust-win-crypto-ng-0.2
33349 (package
33350 (name "rust-win-crypto-ng")
33351 (version "0.2.1")
33352 (source
33353 (origin
33354 (method url-fetch)
33355 (uri (crate-uri "win-crypto-ng" version))
33356 (file-name (string-append name "-" version ".tar.gz"))
33357 (sha256
33358 (base32 "0ab0iwl4bmqvysypyn6xgax7rlh3w524jji2y1zfwfpdr7wwyv23"))))
33359 (build-system cargo-build-system)
33360 (arguments
33361 `(#:skip-build? #t
33362 #:cargo-inputs
33363 (("rust-doc-comment" ,rust-doc-comment-0.3)
33364 ("rust-rand-core" ,rust-rand-core-0.5)
33365 ("rust-winapi" ,rust-winapi-0.3)
33366 ("rust-zeroize" ,rust-zeroize-1))))
33367 (home-page "https://crates.io/crates/win-crypto-ng")
33368 (synopsis "Safe bindings to MS Windows Cryptography API Next
33369 Generation")
33370 (description
33371 "Cryptography API Next Generation (CNG) are cryptographic
33372 primitives and utilities provided by the operating system and/or
33373 hardware. It is available since Windows Vista and replaces the now
33374 deprecated CryptoAPI.
33375
33376 The primitives do not depend on OpenSSL or other libraries of the
33377 sort, they are provided by Microsoft and/or by the hardware
33378 manufacturer. They are the primitives used in kernel space programs.
33379 Therefore, if you are using Microsoft Windows, you already accepted to
33380 trust these primitives.")
33381 (license license:bsd-3)))
33382
33383 (define-public rust-winpty-sys-0.4
33384 (package
33385 (name "rust-winpty-sys")
33386 (version "0.4.3")
33387 (source
33388 (origin
33389 (method url-fetch)
33390 (uri (crate-uri "winpty-sys" version))
33391 (file-name
33392 (string-append name "-" version ".tar.gz"))
33393 (sha256
33394 (base32
33395 "0s5m2vvlw7wphc466s47zfmp08zk00wzj999l1w3ajqlxbnfgb9x"))))
33396 (build-system cargo-build-system)
33397 (arguments
33398 `(#:skip-build? #t
33399 #:cargo-inputs
33400 (("rust-bindgen" ,rust-bindgen-0.33)
33401 ("rust-cc" ,rust-cc-1))))
33402 (home-page "https://github.com/rprichard/winpty")
33403 (synopsis "Rust winpty bindings")
33404 (description "Rust winpty bindings.")
33405 (license license:expat)))
33406
33407 (define-public rust-winreg-0.7
33408 (package
33409 (name "rust-winreg")
33410 (version "0.7.0")
33411 (source
33412 (origin
33413 (method url-fetch)
33414 (uri (crate-uri "winreg" version))
33415 (file-name (string-append name "-" version ".tar.gz"))
33416 (sha256
33417 (base32
33418 "0sdxcyvda4v1v6a0k1j2v1400z3ng323k9a56gxvkq51x21dn801"))))
33419 (build-system cargo-build-system)
33420 (arguments
33421 `(#:cargo-inputs
33422 (("rust-chrono" ,rust-chrono-0.4)
33423 ("rust-serde" ,rust-serde-1)
33424 ("rust-winapi" ,rust-winapi-0.3))
33425 #:cargo-development-inputs
33426 (("rust-rand" ,rust-rand-0.3)
33427 ("rust-serde-derive" ,rust-serde-derive-1))))
33428 (home-page "https://github.com/gentoo90/winreg-rs")
33429 (synopsis "Rust bindings to the MS Windows Registry API")
33430 (description "This package provides Rust bindings to MS Windows Registry
33431 API.")
33432 (license license:expat)))
33433
33434 (define-public rust-winreg-0.6
33435 (package
33436 (name "rust-winreg")
33437 (version "0.6.2")
33438 (source
33439 (origin
33440 (method url-fetch)
33441 (uri (crate-uri "winreg" version))
33442 (file-name
33443 (string-append name "-" version ".tar.gz"))
33444 (sha256
33445 (base32
33446 "1jdcqr6zmvwyrp87h48miasfdvv16gjsb60rc8dy2kqwb3mnv65j"))))
33447 (build-system cargo-build-system)
33448 (arguments
33449 `(#:skip-build? #t
33450 #:cargo-inputs
33451 (("rust-chrono" ,rust-chrono-0.4)
33452 ("rust-serde" ,rust-serde-1)
33453 ("rust-winapi" ,rust-winapi-0.3))
33454 #:cargo-development-inputs
33455 (("rust-rand" ,rust-rand-0.3)
33456 ("rust-serde-derive" ,rust-serde-derive-1))))
33457 (home-page "https://github.com/gentoo90/winreg-rs")
33458 (synopsis "Rust bindings to MS Windows Registry API")
33459 (description
33460 "This package provides Rust bindings to MS Windows Registry API.")
33461 (license license:expat)))
33462
33463 (define-public rust-winutil-0.1
33464 (package
33465 (name "rust-winutil")
33466 (version "0.1.1")
33467 (source
33468 (origin
33469 (method url-fetch)
33470 (uri (crate-uri "winutil" version))
33471 (file-name (string-append name "-" version ".crate"))
33472 (sha256
33473 (base32
33474 "0vkyl3fbbf05n5ph5yz8sfaccrk9x3qsr25560w6w68ldf5i7bvx"))))
33475 (arguments
33476 `(#:skip-build? #t
33477 #:cargo-inputs
33478 (("rust-winapi" ,rust-winapi-0.3))))
33479 (build-system cargo-build-system)
33480 (home-page "https://bitbucket.org/DaveLancaster/winutil")
33481 (synopsis "Library wrapping a handful of useful winapi functions")
33482 (description
33483 "A simple library wrapping a handful of useful winapi functions.")
33484 (license license:expat)))
33485
33486 (define-public rust-ws2-32-sys-0.2
33487 (package
33488 (name "rust-ws2-32-sys")
33489 (version "0.2.1")
33490 (source
33491 (origin
33492 (method url-fetch)
33493 (uri (crate-uri "ws2_32-sys" version))
33494 (file-name (string-append name "-" version ".crate"))
33495 (sha256
33496 (base32
33497 "0ppscg5qfqaw0gzwv2a4nhn5bn01ff9iwn6ysqnzm4n8s3myz76m"))))
33498 (build-system cargo-build-system)
33499 (arguments
33500 `(#:skip-build? #t
33501 #:cargo-inputs
33502 (("rust-winapi" ,rust-winapi-0.2)
33503 ("rust-winapi-build" ,rust-winapi-build-0.1))))
33504 (home-page "https://github.com/retep998/winapi-rs")
33505 (synopsis "Function definitions for the Windows API library ws2_32")
33506 (description
33507 "Contains function definitions for the Windows API library ws2_32.")
33508 (license license:expat)))
33509
33510 (define-public rust-xattr-0.2
33511 (package
33512 (name "rust-xattr")
33513 (version "0.2.2")
33514 (source
33515 (origin
33516 (method url-fetch)
33517 (uri (crate-uri "xattr" version))
33518 (file-name (string-append name "-" version ".crate"))
33519 (sha256
33520 (base32
33521 "0k556fb6f5jc907975j9c8iynl2fqz3rf0w6fiig83i4yi0kfk14"))))
33522 (build-system cargo-build-system)
33523 (arguments
33524 `(#:skip-build? #t
33525 #:cargo-inputs
33526 (("rust-libc" ,rust-libc-0.2))
33527 #:cargo-development-inputs
33528 (("rust-tempfile" ,rust-tempfile-3))))
33529 (home-page "https://github.com/Stebalien/xattr")
33530 (synopsis "Unix extended file system attributes")
33531 (description
33532 "This package provide a small library for setting, getting, and listing
33533 extended attributes.")
33534 (license (list license:asl2.0
33535 license:expat))))
33536
33537 (define-public rust-xcb-0.9
33538 (package
33539 (name "rust-xcb")
33540 (version "0.9.0")
33541 (source
33542 (origin
33543 (method url-fetch)
33544 (uri (crate-uri "xcb" version))
33545 (file-name
33546 (string-append name "-" version ".tar.gz"))
33547 (sha256
33548 (base32
33549 "19i2pm8alpn2f0m4jg8bsw6ckw8irj1wjh55h9pi2fcb2diny1b2"))))
33550 (build-system cargo-build-system)
33551 (arguments
33552 `(#:tests? #f ; Building all the features tests the code.
33553 #:cargo-build-flags '("--features" "debug_all")
33554 #:cargo-inputs
33555 (("rust-libc" ,rust-libc-0.2)
33556 ("rust-log" ,rust-log-0.4)
33557 ("rust-x11" ,rust-x11-2))))
33558 (inputs
33559 `(("libx11" ,libx11)
33560 ("libxcb" ,libxcb)
33561 ("xcb-proto" ,xcb-proto)))
33562 (native-inputs
33563 `(("pkg-config" ,pkg-config)
33564 ("python" ,python)))
33565 (home-page "https://github.com/rtbo/rust-xcb")
33566 (synopsis "Rust bindings and wrappers for XCB")
33567 (description
33568 "This package provides Rust bindings and wrappers for XCB.")
33569 (license license:expat)))
33570
33571 (define-public rust-xdg-2.2
33572 (package
33573 (name "rust-xdg")
33574 (version "2.2.0")
33575 (source
33576 (origin
33577 (method url-fetch)
33578 (uri (crate-uri "xdg" version))
33579 (file-name (string-append name "-" version ".crate"))
33580 (sha256
33581 (base32 "0mws8a0fr3cqk5nh7aq9lmkmhzghvasqy4mhw6nnza06l4d6i2fh"))))
33582 (build-system cargo-build-system)
33583 (home-page "https://github.com/whitequark/rust-xdg")
33584 (synopsis "Store and retrieve files according to XDG specification")
33585 (description
33586 "This package provides a library for storing and retrieving files according
33587 to XDG Base Directory specification.")
33588 (license (list license:asl2.0
33589 license:expat))))
33590
33591 (define-public rust-xml-rs-0.8
33592 (package
33593 (name "rust-xml-rs")
33594 (version "0.8.3")
33595 (source
33596 (origin
33597 (method url-fetch)
33598 (uri (crate-uri "xml-rs" version))
33599 (file-name
33600 (string-append name "-" version ".tar.gz"))
33601 (sha256
33602 (base32
33603 "12ndxyhzxw2zdr76ql8nfdwb2vwhvdkrxwk4pbjafqfglmjv0zdh"))
33604 (modules '((guix build utils)))
33605 (snippet
33606 '(begin
33607 ;; 'doctest' isn't stable until rust-1.40
33608 (substitute* "src/lib.rs"
33609 (("\\(doctest") "(test"))
33610 #t))))
33611 (build-system cargo-build-system)
33612 (arguments
33613 `(#:cargo-development-inputs
33614 (("rust-doc-comment" ,rust-doc-comment-0.3)
33615 ("rust-lazy-static" ,rust-lazy-static-1))))
33616 (home-page "https://github.com/netvl/xml-rs")
33617 (synopsis "XML library in pure Rust")
33618 (description "An XML library in pure Rust.")
33619 (license license:expat)))
33620
33621 (define-public rust-xml-rs-0.7
33622 (package
33623 (name "rust-xml-rs")
33624 (version "0.7.0")
33625 (source
33626 (origin
33627 (method url-fetch)
33628 (uri (crate-uri "xml-rs" version))
33629 (file-name
33630 (string-append name "-" version ".tar.gz"))
33631 (sha256
33632 (base32
33633 "1hp9kf80y9qm3aiqg5psyshqfkcrjgifbcm2c2nc5qlzs80vc71w"))))
33634 (build-system cargo-build-system)
33635 (arguments
33636 `(#:cargo-test-flags '("--release" "--lib")
33637 #:cargo-inputs
33638 (("rust-bitflags" ,rust-bitflags-1))))
33639 (home-page "https://github.com/netvl/xml-rs")
33640 (synopsis "XML library in pure Rust")
33641 (description "An XML library in pure Rust.")
33642 (license license:expat)))
33643
33644 (define-public rust-xml5ever-0.16
33645 (package
33646 (name "rust-xml5ever")
33647 (version "0.16.1")
33648 (source
33649 (origin
33650 (method url-fetch)
33651 (uri (crate-uri "xml5ever" version))
33652 (file-name
33653 (string-append name "-" version ".tar.gz"))
33654 (sha256
33655 (base32
33656 "0nbapmdrn4zqry5p01l2mmbb48fcq0gga377p1c4lkb1x3k546qb"))))
33657 (build-system cargo-build-system)
33658 (arguments
33659 `(#:cargo-inputs
33660 (("rust-log" ,rust-log-0.4)
33661 ("rust-mac" ,rust-mac-0.1)
33662 ("rust-markup5ever" ,rust-markup5ever-0.10)
33663 ("rust-time" ,rust-time-0.1))
33664 #:cargo-development-inputs
33665 (("rust-criterion" ,rust-criterion-0.3)
33666 ("rust-rustc-test" ,rust-rustc-test-0.3))))
33667 (home-page
33668 "https://github.com/servo/html5ever/blob/master/xml5ever/README.md")
33669 (synopsis "Push based streaming parser for xml")
33670 (description
33671 "Push based streaming parser for xml.")
33672 (license (list license:expat license:asl2.0))))
33673
33674 (define-public rust-xz2-0.1
33675 (package
33676 (name "rust-xz2")
33677 (version "0.1.6")
33678 (source
33679 (origin
33680 (method url-fetch)
33681 (uri (crate-uri "xz2" version))
33682 (file-name (string-append name "-" version ".tar.gz"))
33683 (sha256
33684 (base32
33685 "0v4jb0193gx8s1kvd2ajsgh0ffmwhqhfmrrw1n1h2z7w6jgqcyf1"))))
33686 (build-system cargo-build-system)
33687 (arguments
33688 `(#:tests? #f ; Not all files included in the tarball.
33689 #:cargo-inputs
33690 (("rust-futures" ,rust-futures-0.1)
33691 ("rust-lzma-sys" ,rust-lzma-sys-0.1)
33692 ("rust-tokio-io" ,rust-tokio-io-0.1))
33693 #:cargo-development-inputs
33694 (("rust-quickcheck" ,rust-quickcheck-0.7)
33695 ("rust-rand" ,rust-rand-0.5)
33696 ("rust-tokio-core" ,rust-tokio-core-0.1))))
33697 (native-inputs
33698 `(("pkg-config" ,pkg-config)
33699 ("xz" ,xz)))
33700 (home-page "https://github.com/alexcrichton/xz2-rs")
33701 (synopsis "Rust bindings to liblzma")
33702 (description "This package provides Rust bindings to liblzma providing
33703 Read/Write streams as well as low-level in-memory encoding and decoding.")
33704 (license (list license:expat license:asl2.0))))
33705
33706 (define-public rust-yaml-rust-0.4
33707 (package
33708 (name "rust-yaml-rust")
33709 (version "0.4.4")
33710 (source
33711 (origin
33712 (method url-fetch)
33713 (uri (crate-uri "yaml-rust" version))
33714 (file-name (string-append name "-" version ".tar.gz"))
33715 (sha256
33716 (base32 "038byay0dxsz6isckviz4qshfpyjqmyvda7pq96i6d53y4ickw1r"))))
33717 (build-system cargo-build-system)
33718 (arguments
33719 `(#:cargo-inputs
33720 (("rust-linked-hash-map" ,rust-linked-hash-map-0.5))
33721 #:cargo-development-inputs
33722 (("rust-quickcheck" ,rust-quickcheck-0.9))))
33723 (home-page "https://chyh1990.github.io/yaml-rust/")
33724 (synopsis "The missing YAML 1.2 parser for rust")
33725 (description
33726 "The missing YAML 1.2 parser for rust.")
33727 (license (list license:asl2.0 license:expat))))
33728
33729 (define-public rust-yaml-rust-0.3
33730 (package
33731 (inherit rust-yaml-rust-0.4)
33732 (name "rust-yaml-rust")
33733 (version "0.3.5")
33734 (source
33735 (origin
33736 (method url-fetch)
33737 (uri (crate-uri "yaml-rust" version))
33738 (file-name (string-append name "-" version ".tar.gz"))
33739 (sha256
33740 (base32
33741 "14m9dzwb8fb05f4jjb4nqp49rxd9c5vcmwpv3a04d2y5iphncqz6"))))
33742 (arguments
33743 `(#:cargo-inputs
33744 (("rust-clippy" ,rust-clippy-0.0)
33745 ("rust-linked-hash-map" ,rust-linked-hash-map-0.3))))))
33746
33747 (define-public rust-zbase32-0.1
33748 (package
33749 (name "rust-zbase32")
33750 (version "0.1.2")
33751 (source
33752 (origin
33753 (method url-fetch)
33754 (uri (crate-uri "zbase32" version))
33755 (file-name (string-append name "-" version ".tar.gz"))
33756 (sha256
33757 (base32 "0gz3nmiaidscb5c85rh3qxi8i584gz5xm3amlxqminl8jq27k40g"))))
33758 (build-system cargo-build-system)
33759 (arguments
33760 `(#:skip-build? #t ;; dependency cypthon not yet availalbe
33761 #:cargo-development-inputs
33762 (;; ("rust-cpython" ,rust-cpython-0.2) TODO
33763 ("rust-quickcheck" ,rust-quickcheck-0.7)
33764 ("rust-rand" ,rust-rand-0.6))))
33765 (home-page "https://gitlab.com/pgerber/zbase32-rust")
33766 (synopsis "Implementation of zbase32")
33767 (description "This package provides an implementation of zbase32.")
33768 (license license:lgpl3+)))
33769
33770 (define-public rust-zeroize-1
33771 (package
33772 (name "rust-zeroize")
33773 (version "1.1.0")
33774 (source
33775 (origin
33776 (method url-fetch)
33777 (uri (crate-uri "zeroize" version))
33778 (file-name
33779 (string-append name "-" version ".tar.gz"))
33780 (sha256
33781 (base32 "1f5547q8l8bpi16yy6lix2gl9rf1qz45lj06bq7wjk525gnw5fiw"))))
33782 (build-system cargo-build-system)
33783 (arguments
33784 `(#:tests? #f ;2 doc tests fail
33785 #:cargo-inputs
33786 (("rust-zeroize-derive" ,rust-zeroize-derive-1))))
33787 (home-page "https://github.com/iqlusioninc/crates/")
33788 (synopsis "Securely clear secrets from memory")
33789 (description
33790 "Zeroize securely clears secrets from memory with a simple trait built on
33791 stable Rust primitives, which guarantee memory is zeroed using an operation
33792 will not be ``optimized away'' by the compiler. It uses a portable pure Rust
33793 implementation that works everywhere, even WASM!")
33794 (license (list license:asl2.0 license:expat))))
33795
33796 (define-public rust-zeroize-derive-1
33797 (package
33798 (name "rust-zeroize-derive")
33799 (version "1.0.0")
33800 (source
33801 (origin
33802 (method url-fetch)
33803 (uri (crate-uri "zeroize-derive" version))
33804 (file-name
33805 (string-append name "-" version ".tar.gz"))
33806 (sha256
33807 (base32 "18lc9xq9dwvmv81y3bqnw20974nbrs7d20rljb1inz7wd7n1w9fy"))))
33808 (build-system cargo-build-system)
33809 (arguments
33810 `(#:cargo-inputs
33811 (("rust-proc-macro2" ,rust-proc-macro2-1)
33812 ("rust-quote" ,rust-quote-1)
33813 ("rust-syn" ,rust-syn-1)
33814 ("rust-synstructure" ,rust-synstructure-0.12))))
33815 (home-page "https://github.com/iqlusioninc/crates/")
33816 (synopsis "Custom derive support for zeroize")
33817 (description "This crate provides custom derive support for Zeroize.")
33818 (license (list license:asl2.0 license:expat))))
33819
33820 (define-public rust-zip-0.5
33821 (package
33822 (name "rust-zip")
33823 (version "0.5.6")
33824 (source
33825 (origin
33826 (method url-fetch)
33827 (uri (crate-uri "zip" version))
33828 (file-name
33829 (string-append name "-" version ".tar.gz"))
33830 (sha256
33831 (base32
33832 "0zfv0ascxl8gqqxgjck99kypcb0f67lg2k1a3zwza1w5swl7qa2q"))))
33833 (build-system cargo-build-system)
33834 (arguments
33835 `(#:cargo-inputs
33836 (("rust-bzip2" ,rust-bzip2-0.3)
33837 ("rust-crc32fast" ,rust-crc32fast-1)
33838 ("rust-flate2" ,rust-flate2-1)
33839 ("rust-podio" ,rust-podio-0.1)
33840 ("rust-time" ,rust-time-0.1))
33841 #:cargo-development-inputs
33842 (("rust-bencher" ,rust-bencher-0.1)
33843 ("rust-rand" ,rust-rand-0.4)
33844 ("rust-walkdir" ,rust-walkdir-1))))
33845 (home-page "https://github.com/mvdnes/zip-rs.git")
33846 (synopsis
33847 "Library to support the reading and writing of zip files")
33848 (description
33849 "Library to support the reading and writing of zip files.")
33850 (license license:expat)))
33851
33852 (define-public rust-zoneinfo-compiled-0.4
33853 (package
33854 (name "rust-zoneinfo-compiled")
33855 (version "0.4.8")
33856 (source
33857 (origin
33858 (method url-fetch)
33859 (uri (crate-uri "zoneinfo_compiled" version))
33860 (file-name
33861 (string-append name "-" version ".tar.gz"))
33862 (sha256
33863 (base32
33864 "0bnm19w791q6kp79s0zl1cj9w51bw5xrifrxfy3g1p05i676y4vf"))))
33865 (build-system cargo-build-system)
33866 (arguments
33867 `(#:cargo-inputs
33868 (("rust-byteorder" ,rust-byteorder-1)
33869 ("rust-datetime" ,rust-datetime-0.4))))
33870 (home-page "https://github.com/rust-datetime/zoneinfo-compiled/")
33871 (synopsis "Library for parsing compiled zoneinfo files")
33872 (description
33873 "This package provides a library for parsing compiled zoneinfo files.")
33874 (license license:expat)))
33875
33876 (define-public rust-zstd-0.5
33877 (package
33878 (name "rust-zstd")
33879 (version "0.5.3+zstd.1.4.5")
33880 (source
33881 (origin
33882 (method url-fetch)
33883 (uri (crate-uri "zstd" version))
33884 (file-name (string-append name "-" version ".tar.gz"))
33885 (sha256
33886 (base32
33887 "1n0cgj9i3dk90kn7jcahq5fligqrjfzmnq08hfg71yhyfypjxcq1"))))
33888 (build-system cargo-build-system)
33889 (arguments
33890 `(#:cargo-inputs
33891 (("rust-futures" ,rust-futures-0.1)
33892 ("rust-tokio-io" ,rust-tokio-io-0.1)
33893 ("rust-zstd-safe" ,rust-zstd-safe-2.0.5))
33894 #:cargo-development-inputs
33895 (("rust-clap" ,rust-clap-2)
33896 ("rust-humansize" ,rust-humansize-1)
33897 ("rust-partial-io" ,rust-partial-io-0.3)
33898 ("rust-quickcheck" ,rust-quickcheck-0.6)
33899 ("rust-walkdir" ,rust-walkdir-2))))
33900 (home-page "https://github.com/gyscos/zstd-rs")
33901 (synopsis "Binding to the zstd compression library")
33902 (description "This package provides a binding to the zstd compression
33903 library.")
33904 (license license:expat)))
33905
33906 (define-public rust-zstd-safe-2
33907 (package
33908 (name "rust-zstd-safe")
33909 (version "2.0.5+zstd.1.4.5")
33910 (source
33911 (origin
33912 (method url-fetch)
33913 (uri (crate-uri "zstd-safe" version))
33914 (file-name (string-append name "-" version ".tar.gz"))
33915 (sha256
33916 (base32
33917 "0m8h1x030cj5bj7zxxf6gdp91bp0ays2vi9rlqllgxi71lp69yqw"))))
33918 (build-system cargo-build-system)
33919 (arguments
33920 `(#:cargo-inputs
33921 (("rust-libc" ,rust-libc-0.2)
33922 ("rust-zstd-sys" ,rust-zstd-sys-1.4.17))))
33923 (home-page "https://github.com/gyscos/zstd-rs")
33924 (synopsis "Safe low-level bindings to the zstd compression library")
33925 (description "This package provides safe low-level bindings to the zstd
33926 compression library.")
33927 (license (list license:expat license:asl2.0))))
33928
33929 (define-public rust-zstd-safe-2.0.5 rust-zstd-safe-2)
33930
33931 ;; TODO: Unbundle zstd.
33932 (define-public rust-zstd-sys-1
33933 (package
33934 (name "rust-zstd-sys")
33935 (version "1.4.17+zstd.1.4.5")
33936 (source
33937 (origin
33938 (method url-fetch)
33939 (uri (crate-uri "zstd-sys" version))
33940 (file-name
33941 (string-append name "-" version ".tar.gz"))
33942 (sha256
33943 (base32
33944 "06zhk1j5v1sm04xxrw72lgzyi1wcq7kvj6vbd4ibamph9mj4k4mq"))))
33945 (build-system cargo-build-system)
33946 (arguments
33947 `(#:cargo-inputs
33948 (("rust-libc" ,rust-libc-0.2)
33949 ("rust-bindgen" ,rust-bindgen-0.54)
33950 ("rust-cc" ,rust-cc-1)
33951 ("rust-glob" ,rust-glob-0.3)
33952 ("rust-itertools" ,rust-itertools-0.9)
33953 ("rust-pkg-config" ,rust-pkg-config-0.3))))
33954 (home-page "https://github.com/gyscos/zstd-rs")
33955 (synopsis "Low-level bindings to the zstd compression library")
33956 (description "This package provides low-level Rust bindings to the zstd
33957 compression library.")
33958 (license (list license:expat license:asl2.0))))
33959
33960 (define-public rust-zstd-sys-1.4.17 rust-zstd-sys-1)
33961
33962 (define-public rust-packed-struct
33963 (package
33964 (name "rust-packed-struct")
33965 (version "0.3.0")
33966 (source
33967 (origin
33968 (method url-fetch)
33969 (uri (crate-uri "packed_struct" version))
33970 (file-name
33971 (string-append name "-" version ".tar.gz"))
33972 (sha256
33973 (base32
33974 "10b2fmxchmcigwagnhi42frj74dl02wyv0xwmbr9839qfh7gijlh"))))
33975 (build-system cargo-build-system)
33976 (arguments
33977 `(#:cargo-inputs
33978 (("rust-serde" ,rust-serde-1)
33979 ("rust-serde-derive" ,rust-serde-derive-1))))
33980 (home-page "http://www.hashmismatch.net/libraries/packed-struct/")
33981 (synopsis "Binary-level structure packing and unpacking generator")
33982 (description "This package provides bit-level packing an unpacking
33983 of structs. The library provides a meta-programming approach, using
33984 attributes to define fields and how they should be packed. The resulting
33985 trait implementations provide safe packing, unpacking and runtime debugging
33986 formatters with per-field documentation generated for each structure.
33987
33988 @itemize
33989 @item Plain Rust structures, decorated with attributes
33990 @item MSB or LSB integers of user-defined bit widths
33991 @item Primitive enum code generation helper
33992 @item MSB0 or LSB0 bit positioning
33993 @item Documents the field's packing table
33994 @item Runtime packing visualization
33995 @item Nested packed types
33996 @item Arrays of packed structures as fields
33997 @item Reserved fields, their bits are always 0 or 1
33998 @end itemize")
33999 ;; User can choose either license.
34000 (license (list license:expat license:asl2.0))))
34001
34002 (define-public rust-xmltree-0.8
34003 (package
34004 (name "rust-xmltree")
34005 (version "0.8.0")
34006 (source
34007 (origin
34008 (method url-fetch)
34009 (uri (crate-uri "xmltree" version))
34010 (file-name
34011 (string-append name "-" version ".tar.gz"))
34012 (sha256
34013 (base32
34014 "0w0y0jz7lhxg05ca6ngfj0lj8sbrjh4vaqv13q7qaqkhs7lsx3pz"))))
34015 (build-system cargo-build-system)
34016 (arguments
34017 `(#:cargo-inputs
34018 (("rust-indexmap" ,rust-indexmap-1)
34019 ("rust-xml-rs" ,rust-xml-rs-0.7))))
34020 (home-page #f)
34021 (synopsis
34022 "Parse an XML file into a simple tree-like structure")
34023 (description
34024 "Parse an XML file into a simple tree-like structure")
34025 (license license:expat)))
34026
34027 (define-public rust-svd-parser-0.9
34028 (package
34029 (name "rust-svd-parser")
34030 (version "0.9.0")
34031 (source
34032 (origin
34033 (method url-fetch)
34034 (uri (crate-uri "svd-parser" version))
34035 (file-name
34036 (string-append name "-" version ".tar.gz"))
34037 (sha256
34038 (base32
34039 "1qhvdz3k76i3sfypcy8c84hhb8sqixrckba21kalzcpgy6an45ml"))))
34040 (build-system cargo-build-system)
34041 (arguments
34042 `(#:cargo-inputs
34043 (("rust-anyhow" ,rust-anyhow-1.0)
34044 ("rust-either" ,rust-either-1)
34045 ("rust-serde" ,rust-serde-1)
34046 ("rust-thiserror" ,rust-thiserror-1)
34047 ("rust-xmltree" ,rust-xmltree-0.8))
34048 #:cargo-development-inputs
34049 (("rust-serde-json" ,rust-serde-json-1))))
34050 (home-page #f)
34051 (synopsis "A CMSIS-SVD file parser")
34052 (description
34053 "This package provides a CMSIS-SVD file parser")
34054 (license (list license:expat license:asl2.0))))
34055
34056 (define-public rust-inflections-1.1
34057 (package
34058 (name "rust-inflections")
34059 (version "1.1.1")
34060 (source
34061 (origin
34062 (method url-fetch)
34063 (uri (crate-uri "inflections" version))
34064 (file-name
34065 (string-append name "-" version ".tar.gz"))
34066 (sha256
34067 (base32
34068 "0yl3gas612q25c72lwf04405i87yxr02vgv3ckcnz2fyvhpmhmx2"))))
34069 (build-system cargo-build-system)
34070 (home-page #f)
34071 (synopsis
34072 "High performance inflection transformation library for changing properties of words like the case.")
34073 (description
34074 "High performance inflection transformation library for changing properties of words like the case.")
34075 (license license:expat)))
34076
34077 (define-public svd2rust
34078 (package
34079 (name "svd2rust")
34080 (version "0.17.0")
34081 (source
34082 (origin
34083 (method url-fetch)
34084 (uri (crate-uri "svd2rust" version))
34085 (file-name
34086 (string-append name "-" version ".tar.gz"))
34087 (sha256
34088 (base32
34089 "0850pn92a5pmrlavdsm4s9wgrgx9gz0vylf9i594nj8sixmddjd9"))))
34090 (build-system cargo-build-system)
34091 (arguments
34092 `(#:cargo-inputs
34093 (("rust-cast" ,rust-cast-0.2)
34094 ("rust-clap" ,rust-clap-2)
34095 ("rust-env-logger" ,rust-env-logger-0.7)
34096 ("rust-error-chain" ,rust-error-chain-0.12)
34097 ("rust-inflections" ,rust-inflections-1.1)
34098 ("rust-log" ,rust-log-0.4)
34099 ("rust-proc-macro2" ,rust-proc-macro2-0.4)
34100 ("rust-quote" ,rust-quote-1)
34101 ("rust-svd-parser" ,rust-svd-parser-0.9)
34102 ("rust-syn" ,rust-syn-1))))
34103 (home-page #f)
34104 (synopsis
34105 "Generate Rust register maps (`struct`s) from SVD files")
34106 (description
34107 "Generate Rust register maps (`struct`s) from SVD files")
34108 (license (list license:expat license:asl2.0))))