5ad062be4057b05c46f0070c0d128747ad8db602
[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.13
7369 (package
7370 (name "rust-ena")
7371 (version "0.13.1")
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 "0dkggq0qwv140y2kjfd4spp77zi3v7vnpm4bfy7s7r4cla7xqi49"))))
7379 (build-system cargo-build-system)
7380 (arguments
7381 `(#:cargo-inputs
7382 (("rust-dogged" ,rust-dogged-0.2)
7383 ("rust-log" ,rust-log-0.4)
7384 ("rust-petgraph" ,rust-petgraph-0.4))))
7385 (home-page "https://github.com/rust-lang/ena")
7386 (synopsis "Union-find, congruence closure, and other unification code")
7387 (description "This package provides an implementation of union-find /
7388 congruence-closure in Rust. It was extracted from rustc for independent
7389 experimentation.")
7390 (license (list license:expat license:asl2.0))))
7391
7392 (define-public rust-encode-unicode-0.3
7393 (package
7394 (name "rust-encode-unicode")
7395 (version "0.3.6")
7396 (source
7397 (origin
7398 (method url-fetch)
7399 (uri (crate-uri "encode_unicode" version))
7400 (file-name
7401 (string-append name "-" version ".tar.gz"))
7402 (sha256
7403 (base32
7404 "07w3vzrhxh9lpjgsg2y5bwzfar2aq35mdznvcp3zjl0ssj7d4mx3"))))
7405 (build-system cargo-build-system)
7406 (arguments
7407 `(#:skip-build? #t
7408 #:cargo-inputs
7409 (("rust-ascii" ,rust-ascii-1.0)
7410 ("rust-clippy" ,rust-clippy-0.0))
7411 #:cargo-development-inputs
7412 (("rust-lazy-static" ,rust-lazy-static-1))))
7413 (home-page "https://github.com/tormol/encode_unicode")
7414 (synopsis
7415 "UTF-8 and UTF-16 support for char, u8 and u16")
7416 (description
7417 "UTF-8 and UTF-16 character types, iterators and related methods for
7418 char, u8 and u16.")
7419 (license (list license:expat license:asl2.0))))
7420
7421 (define-public rust-encoding-0.2
7422 (package
7423 (name "rust-encoding")
7424 (version "0.2.33")
7425 (source
7426 (origin
7427 (method url-fetch)
7428 (uri (crate-uri "encoding" version))
7429 (file-name
7430 (string-append name "-" version ".tar.gz"))
7431 (sha256
7432 (base32
7433 "1v1ndmkarh9z3n5hk53da4z56hgk9wa5kcsm7cnx345raqw983bb"))))
7434 (build-system cargo-build-system)
7435 (arguments
7436 `(#:skip-build? #t
7437 #:cargo-inputs
7438 (("rust-encoding-index-japanese"
7439 ,rust-encoding-index-japanese-1.20141219)
7440 ("rust-encoding-index-korean"
7441 ,rust-encoding-index-korean-1.20141219)
7442 ("rust-encoding-index-simpchinese"
7443 ,rust-encoding-index-simpchinese-1.20141219)
7444 ("rust-encoding-index-singlebyte"
7445 ,rust-encoding-index-singlebyte-1.20141219)
7446 ("rust-encoding-index-tradchinese"
7447 ,rust-encoding-index-tradchinese-1.20141219))
7448 #:cargo-development-inputs
7449 (("rust-getopts" ,rust-getopts-0.2))))
7450 (home-page
7451 "https://github.com/lifthrasiir/rust-encoding")
7452 (synopsis "Character encoding support for Rust")
7453 (description
7454 "Character encoding support for Rust.")
7455 (license license:expat)))
7456
7457 (define-public rust-encoding-index-japanese-1.20141219
7458 (package
7459 (name "rust-encoding-index-japanese")
7460 (version "1.20141219.5")
7461 (source
7462 (origin
7463 (method url-fetch)
7464 (uri (crate-uri "encoding-index-japanese" version))
7465 (file-name
7466 (string-append name "-" version ".tar.gz"))
7467 (sha256
7468 (base32
7469 "148c1lmd640p1d7fzk0nv7892mbyavvwddgqvcsm78798bzv5s04"))))
7470 (build-system cargo-build-system)
7471 (arguments
7472 `(#:skip-build? #t
7473 #:cargo-inputs
7474 (("rust-encoding-index-tests" ,rust-encoding-index-tests-0.1))))
7475 (home-page "https://github.com/lifthrasiir/rust-encoding")
7476 (synopsis "Index tables for Japanese character encodings")
7477 (description
7478 "Index tables for Japanese character encodings.")
7479 (license license:cc0)))
7480
7481 (define-public rust-encoding-index-korean-1.20141219
7482 (package
7483 (name "rust-encoding-index-korean")
7484 (version "1.20141219.5")
7485 (source
7486 (origin
7487 (method url-fetch)
7488 (uri (crate-uri "encoding-index-korean" version))
7489 (file-name
7490 (string-append name "-" version ".tar.gz"))
7491 (sha256
7492 (base32
7493 "10cxabp5ppygbq4y6y680856zl9zjvq7ahpiw8zj3fmwwsw3zhsd"))))
7494 (build-system cargo-build-system)
7495 (arguments
7496 `(#:skip-build? #t
7497 #:cargo-inputs
7498 (("rust-encoding-index-tests" ,rust-encoding-index-tests-0.1))))
7499 (home-page "https://github.com/lifthrasiir/rust-encoding")
7500 (synopsis "Index tables for Korean character encodings")
7501 (description
7502 "Index tables for Korean character encodings.")
7503 (license license:cc0)))
7504
7505 (define-public rust-encoding-index-simpchinese-1.20141219
7506 (package
7507 (name "rust-encoding-index-simpchinese")
7508 (version "1.20141219.5")
7509 (source
7510 (origin
7511 (method url-fetch)
7512 (uri (crate-uri "encoding-index-simpchinese" version))
7513 (file-name
7514 (string-append name "-" version ".tar.gz"))
7515 (sha256
7516 (base32
7517 "1xria2i7mc5dqdrpqxasdbxv1qx46jjbm53if3y1i4cvj2a72ynq"))))
7518 (build-system cargo-build-system)
7519 (arguments
7520 `(#:skip-build? #t
7521 #:cargo-inputs
7522 (("rust-encoding-index-tests" ,rust-encoding-index-tests-0.1))))
7523 (home-page "https://github.com/lifthrasiir/rust-encoding")
7524 (synopsis "Index tables for simplified Chinese character encodings")
7525 (description
7526 "Index tables for simplified Chinese character encodings.")
7527 (license license:cc0)))
7528
7529 (define-public rust-encoding-index-singlebyte-1.20141219
7530 (package
7531 (name "rust-encoding-index-singlebyte")
7532 (version "1.20141219.5")
7533 (source
7534 (origin
7535 (method url-fetch)
7536 (uri (crate-uri "encoding-index-singlebyte" version))
7537 (file-name
7538 (string-append name "-" version ".tar.gz"))
7539 (sha256
7540 (base32
7541 "0jp85bz2pprzvg9m95w4q0vibh67b6w3bx35lafay95jzyndal9k"))))
7542 (build-system cargo-build-system)
7543 (arguments
7544 `(#:skip-build? #t
7545 #:cargo-inputs
7546 (("rust-encoding-index-tests" ,rust-encoding-index-tests-0.1))))
7547 (home-page "https://github.com/lifthrasiir/rust-encoding")
7548 (synopsis "Index tables for various single-byte character encodings")
7549 (description
7550 "Index tables for various single-byte character encodings.")
7551 (license license:cc0)))
7552
7553 (define-public rust-encoding-index-tests-0.1
7554 (package
7555 (name "rust-encoding-index-tests")
7556 (version "0.1.4")
7557 (source
7558 (origin
7559 (method url-fetch)
7560 (uri (crate-uri "encoding_index_tests" version))
7561 (file-name
7562 (string-append name "-" version ".tar.gz"))
7563 (sha256
7564 (base32
7565 "0s85y091gl17ixass49bzaivng7w8p82p6nyvz2r3my9w4mxhim2"))))
7566 (build-system cargo-build-system)
7567 (arguments `(#:skip-build? #t))
7568 (home-page "https://github.com/lifthrasiir/rust-encoding")
7569 (synopsis
7570 "Macros used to test index tables for character encodings")
7571 (description
7572 "Helper macros used to test index tables for character
7573 encodings.")
7574 (license license:cc0)))
7575
7576 (define-public rust-encoding-index-tradchinese-1.20141219
7577 (package
7578 (name "rust-encoding-index-tradchinese")
7579 (version "1.20141219.5")
7580 (source
7581 (origin
7582 (method url-fetch)
7583 (uri (crate-uri "encoding-index-tradchinese" version))
7584 (file-name
7585 (string-append name "-" version ".tar.gz"))
7586 (sha256
7587 (base32
7588 "060ci4iz6xfvzk38syfbjvs7pix5hch3mvxkksswmqwcd3aj03px"))))
7589 (build-system cargo-build-system)
7590 (arguments
7591 `(#:skip-build? #t
7592 #:cargo-inputs
7593 (("rust-encoding-index-tests" ,rust-encoding-index-tests-0.1))))
7594 (home-page "https://github.com/lifthrasiir/rust-encoding")
7595 (synopsis "Index tables for traditional Chinese character encodings")
7596 (description
7597 "Index tables for traditional Chinese character encodings.")
7598 (license license:cc0)))
7599
7600 (define-public rust-encoding-rs-0.8
7601 (package
7602 (name "rust-encoding-rs")
7603 (version "0.8.17")
7604 (source
7605 (origin
7606 (method url-fetch)
7607 (uri (crate-uri "encoding_rs" version))
7608 (file-name
7609 (string-append name "-" version ".tar.gz"))
7610 (sha256
7611 (base32
7612 "1v902qqnbd37vdq4rjvp6k05wmghrasfdcjy30gp1xpjg5f7hma1"))))
7613 (build-system cargo-build-system)
7614 (arguments
7615 `(#:skip-build? #t
7616 #:cargo-inputs
7617 (("rust-cfg-if" ,rust-cfg-if-0.1)
7618 ("rust-packed-simd" ,rust-packed-simd-0.3)
7619 ("rust-serde" ,rust-serde-1))
7620 #:cargo-development-inputs
7621 (("rust-bincode" ,rust-bincode-1)
7622 ("rust-serde-derive" ,rust-serde-derive-1)
7623 ("rust-serde-json" ,rust-serde-json-1))))
7624 (home-page "https://docs.rs/encoding_rs/")
7625 (synopsis "Gecko-oriented implementation of the Encoding Standard")
7626 (description
7627 "This package provides a Gecko-oriented implementation of the Encoding
7628 Standard.")
7629 (license (list license:asl2.0 license:expat))))
7630
7631 (define-public rust-encoding-rs-io-0.1
7632 (package
7633 (name "rust-encoding-rs-io")
7634 (version "0.1.7")
7635 (source
7636 (origin
7637 (method url-fetch)
7638 (uri (crate-uri "encoding_rs_io" version))
7639 (file-name
7640 (string-append name "-" version ".tar.gz"))
7641 (sha256
7642 (base32
7643 "10ra4l688cdadd8h1lsbahld1zbywnnqv68366mbhamn3xjwbhqw"))))
7644 (build-system cargo-build-system)
7645 (arguments
7646 `(#:cargo-inputs
7647 (("rust-encoding-rs" ,rust-encoding-rs-0.8))))
7648 (home-page "https://github.com/BurntSushi/encoding_rs_io")
7649 (synopsis "Streaming transcoding for encoding_rs")
7650 (description
7651 "Streaming transcoding for encoding_rs.")
7652 (license (list license:asl2.0 license:expat))))
7653
7654 (define-public rust-enum-as-inner-0.3
7655 (package
7656 (name "rust-enum-as-inner")
7657 (version "0.3.3")
7658 (source
7659 (origin
7660 (method url-fetch)
7661 (uri (crate-uri "enum-as-inner" version))
7662 (file-name (string-append name "-" version ".tar.gz"))
7663 (sha256
7664 (base32
7665 "15gmpgywijda93lkq7hf2y53h66sqkhzabzbxich288xm6b00pvw"))))
7666 (build-system cargo-build-system)
7667 (arguments
7668 `(#:cargo-inputs
7669 (("rust-heck" ,rust-heck-0.3)
7670 ("rust-proc-macro2" ,rust-proc-macro2-1)
7671 ("rust-quote" ,rust-quote-1)
7672 ("rust-syn" ,rust-syn-1))))
7673 (home-page "https://github.com/bluejekyll/enum-as-inner")
7674 (synopsis "Proc-macro for deriving inner field accessor functions on enums")
7675 (description "This package provides a proc-macro for deriving inner field
7676 accessor functions on enums.")
7677 (license (list license:expat license:asl2.0))))
7678
7679 (define-public rust-enum-as-inner-0.2
7680 (package
7681 (inherit rust-enum-as-inner-0.3)
7682 (name "rust-enum-as-inner")
7683 (version "0.2.1")
7684 (source
7685 (origin
7686 (method url-fetch)
7687 (uri (crate-uri "enum-as-inner" version))
7688 (file-name
7689 (string-append name "-" version ".tar.gz"))
7690 (sha256
7691 (base32
7692 "0zg3h7k3g1z7a9ayqy63sk302d4dg5g2h274ddv80mj4jxn2cn1x"))))
7693 (arguments
7694 `(#:cargo-inputs
7695 (("rust-proc-macro2" ,rust-proc-macro2-0.4)
7696 ("rust-quote" ,rust-quote-0.6)
7697 ("rust-syn" ,rust-syn-0.15))))))
7698
7699 (define-public rust-env-logger-0.7
7700 (package
7701 (name "rust-env-logger")
7702 (version "0.7.1")
7703 (source
7704 (origin
7705 (method url-fetch)
7706 (uri (crate-uri "env_logger" version))
7707 (file-name
7708 (string-append name "-" version ".tar.gz"))
7709 (sha256
7710 (base32
7711 "0djx8h8xfib43g5w94r1m1mkky5spcw4wblzgnhiyg5vnfxknls4"))))
7712 (build-system cargo-build-system)
7713 (arguments
7714 `(#:skip-build? #t
7715 #:cargo-inputs
7716 (("rust-atty" ,rust-atty-0.2)
7717 ("rust-humantime" ,rust-humantime-1)
7718 ("rust-log" ,rust-log-0.4)
7719 ("rust-regex" ,rust-regex-1)
7720 ("rust-termcolor" ,rust-termcolor-1))))
7721 (home-page "https://github.com/sebasmagri/env_logger/")
7722 (synopsis "Logging implementation for @code{log}")
7723 (description
7724 "This package provides a logging implementation for @code{log} which
7725 is configured via an environment variable.")
7726 (license (list license:expat license:asl2.0))))
7727
7728 (define-public rust-env-logger-0.6
7729 (package
7730 (inherit rust-env-logger-0.7)
7731 (name "rust-env-logger")
7732 (version "0.6.2")
7733 (source
7734 (origin
7735 (method url-fetch)
7736 (uri (crate-uri "env_logger" version))
7737 (file-name
7738 (string-append name "-" version ".tar.gz"))
7739 (sha256
7740 (base32
7741 "1lx2s5nk96xx4i3m4zc4ghqgi8kb07dsnyiv8jk2clhax42dxz5a"))))
7742 (arguments
7743 `(#:cargo-inputs
7744 (("rust-atty" ,rust-atty-0.2)
7745 ("rust-humantime" ,rust-humantime-1)
7746 ("rust-log" ,rust-log-0.4)
7747 ("rust-regex" ,rust-regex-1)
7748 ("rust-termcolor" ,rust-termcolor-1))))))
7749
7750 (define-public rust-env-logger-0.5
7751 (package
7752 (inherit rust-env-logger-0.7)
7753 (name "rust-env-logger")
7754 (version "0.5.13")
7755 (source
7756 (origin
7757 (method url-fetch)
7758 (uri (crate-uri "env-logger" version))
7759 (file-name
7760 (string-append name "-" version ".tar.gz"))
7761 (sha256
7762 (base32
7763 "0f0c4i4c65jh8lci0afl5yg74ac0lbnpxcp81chj114zwg9a9c0m"))))
7764 (arguments
7765 `(#:cargo-inputs
7766 (("rust-atty" ,rust-atty-0.2)
7767 ("rust-humantime" ,rust-humantime-1)
7768 ("rust-log" ,rust-log-0.4)
7769 ("rust-regex" ,rust-regex-1)
7770 ("rust-termcolor" ,rust-termcolor-1))))))
7771
7772 (define-public rust-env-logger-0.4
7773 (package
7774 (inherit rust-env-logger-0.7)
7775 (name "rust-env-logger")
7776 (version "0.4.3")
7777 (source
7778 (origin
7779 (method url-fetch)
7780 (uri (crate-uri "env-logger" version))
7781 (file-name
7782 (string-append name "-" version ".tar.gz"))
7783 (sha256
7784 (base32
7785 "0nydz2lidsvx9gs0v2zcz68rzqx8in7fzmiprgsrhqh17vkj3prx"))))
7786 (build-system cargo-build-system)
7787 (arguments
7788 `(#:skip-build? #t
7789 #:cargo-inputs
7790 (("rust-log" ,rust-log-0.3)
7791 ("rust-regex" ,rust-regex-0.2))))))
7792
7793 (define-public rust-env-logger-0.3
7794 (package
7795 (inherit rust-env-logger-0.7)
7796 (name "rust-env-logger")
7797 (version "0.3.5")
7798 (source
7799 (origin
7800 (method url-fetch)
7801 (uri (crate-uri "env_logger" version))
7802 (file-name (string-append name "-" version ".tar.gz"))
7803 (sha256
7804 (base32
7805 "0bvcjgkw4s3k1rd7glpflgc8s9a393zjd6jfdgvs8gjvwj0dgaqm"))))
7806 (arguments
7807 `(#:skip-build? #t ; Cannot find dependent crates.
7808 #:cargo-inputs
7809 (("rust-regex" ,rust-regex-0.1)
7810 ("rust-log" ,rust-log-0.3))))))
7811
7812 (define-public rust-environment-0.1
7813 (package
7814 (name "rust-environment")
7815 (version "0.1.1")
7816 (source
7817 (origin
7818 (method url-fetch)
7819 (uri (crate-uri "environment" version))
7820 (file-name (string-append name "-" version ".tar.gz"))
7821 (sha256
7822 (base32 "1vh32mcxf3z8xaibwv751zj14d08nh7iwk1vqdj90rkq17i18jqz"))))
7823 (build-system cargo-build-system)
7824 (arguments
7825 `(#:tests? #f)) ;; 3/6 tests fail due to missing file
7826 (home-page "https://github.com/Freyskeyd/environment")
7827 (synopsis "Helper to deal with environment variables")
7828 (description "This package provides helper to deal with environment
7829 variables.")
7830 (license (list license:expat license:asl2.0))))
7831
7832 (define-public rust-envmnt-0.6
7833 (package
7834 (name "rust-envmnt")
7835 (version "0.6.0")
7836 (source
7837 (origin
7838 (method url-fetch)
7839 (uri (crate-uri "envmnt" version))
7840 (file-name
7841 (string-append name "-" version ".tar.gz"))
7842 (sha256
7843 (base32
7844 "12zkq3p999bypyxmjnpiqw9r3hmifb3bcikd7j3as1fdcbq01fyl"))))
7845 (build-system cargo-build-system)
7846 (arguments
7847 `(#:skip-build? #t
7848 #:cargo-inputs
7849 (("rust-indexmap" ,rust-indexmap-1))))
7850 (home-page "https://github.com/sagiegurari/envmnt")
7851 (synopsis "Environment variables utility functions")
7852 (description
7853 "Environment variables utility functions.")
7854 (license license:asl2.0)))
7855
7856 (define-public rust-erased-serde-0.3
7857 (package
7858 (name "rust-erased-serde")
7859 (version "0.3.11")
7860 (source
7861 (origin
7862 (method url-fetch)
7863 (uri (crate-uri "erased-serde" version))
7864 (file-name
7865 (string-append name "-" version ".tar.gz"))
7866 (sha256
7867 (base32
7868 "1lgkpkk7nx6f24gmr3psyj8d2avc9701r9jyw1i4ssp10lbnv2yq"))))
7869 (build-system cargo-build-system)
7870 (arguments
7871 `(#:skip-build? #t
7872 #:cargo-inputs
7873 (("rust-serde" ,rust-serde-1))
7874 #:cargo-development-inputs
7875 (;("rust-serde-cbor" ,rust-serde-cbor-0.9)
7876 ("rust-serde-derive" ,rust-serde-derive-1)
7877 ("rust-serde-json" ,rust-serde-json-1))))
7878 (home-page "https://github.com/dtolnay/erased-serde")
7879 (synopsis "Type-erased Serialize and Serializer traits")
7880 (description
7881 "Type-erased Serialize and Serializer traits.")
7882 (license (list license:asl2.0 license:expat))))
7883
7884 (define-public rust-err-derive-0.2
7885 (package
7886 (name "rust-err-derive")
7887 (version "0.2.3")
7888 (source
7889 (origin
7890 (method url-fetch)
7891 (uri (crate-uri "err-derive" version))
7892 (file-name
7893 (string-append name "-" version ".tar.gz"))
7894 (sha256
7895 (base32
7896 "0v6wxrshfpg7mwaxzq8jwxbfiyn7zk5rlm4m8kkrwh7dpf8nrx42"))))
7897 (build-system cargo-build-system)
7898 (arguments
7899 `(#:cargo-inputs
7900 (("rust-synstructure" ,rust-synstructure-0.12)
7901 ("rust-skeptic" ,rust-skeptic-0.13)
7902 ("rust-proc-macro-error" ,rust-proc-macro-error-0.4)
7903 ("rust-proc-macro2" ,rust-proc-macro2-1)
7904 ("rust-syn" ,rust-syn-1)
7905 ("rust-rustversion" ,rust-rustversion-1)
7906 ("rust-quote" ,rust-quote-1))
7907 #:cargo-development-inputs
7908 (("rust-skeptic" ,rust-skeptic-0.13))))
7909 (home-page "https://gitlab.com/torkleyy/err-derive")
7910 (synopsis "Derive macro for `std::error::Error`")
7911 (description
7912 "Derive macro for @code{std::error::Error}.")
7913 (license (list license:expat license:asl2.0))))
7914
7915 (define-public rust-errno-0.2
7916 (package
7917 (name "rust-errno")
7918 (version "0.2.4")
7919 (source
7920 (origin
7921 (method url-fetch)
7922 (uri (crate-uri "errno" version))
7923 (file-name
7924 (string-append name "-" version ".tar.gz"))
7925 (sha256
7926 (base32
7927 "0kn8mlygxxr02cm97401nppd2dbkwsalpcbai67rh6yh3rh73862"))))
7928 (build-system cargo-build-system)
7929 (arguments
7930 `(#:skip-build? #t
7931 #:cargo-inputs
7932 (("rust-errno-dragonfly" ,rust-errno-dragonfly-0.1)
7933 ("rust-libc" ,rust-libc-0.2)
7934 ("rust-winapi" ,rust-winapi-0.3))))
7935 (home-page "https://github.com/lambda-fairy/rust-errno")
7936 (synopsis "Cross-platform interface to the @code{errno} variable")
7937 (description
7938 "Cross-platform interface to the @code{errno} variable.")
7939 (license (list license:asl2.0 license:expat))))
7940
7941 (define-public rust-errno-dragonfly-0.1
7942 (package
7943 (name "rust-errno-dragonfly")
7944 (version "0.1.1")
7945 (source
7946 (origin
7947 (method url-fetch)
7948 (uri (crate-uri "errno-dragonfly" version))
7949 (file-name
7950 (string-append name "-" version ".tar.gz"))
7951 (sha256
7952 (base32
7953 "0rshlc00nv45f14v2l1w0ma2nf1jg5j7q9pvw7hh018r6r73bjhl"))))
7954 (build-system cargo-build-system)
7955 (arguments
7956 `(#:skip-build? #t
7957 #:cargo-inputs
7958 (("rust-libc" ,rust-libc-0.2)
7959 ("rust-gcc" ,rust-gcc-0.3))))
7960 (home-page "https://github.com/mneumann/errno-dragonfly-rs")
7961 (synopsis "Exposes errno functionality to stable Rust on DragonFlyBSD")
7962 (description
7963 "Exposes errno functionality to stable Rust on DragonFlyBSD.")
7964 (license license:expat)))
7965
7966 (define-public rust-error-chain-0.12
7967 (package
7968 (name "rust-error-chain")
7969 (version "0.12.2")
7970 (source
7971 (origin
7972 (method url-fetch)
7973 (uri (crate-uri "error-chain" version))
7974 (file-name
7975 (string-append name "-" version ".tar.gz"))
7976 (sha256
7977 (base32
7978 "1ka5y0fmymxzx3gz2yrd7rpz2i555m1iw4fpmcggpzcgr1n10wfk"))))
7979 (build-system cargo-build-system)
7980 (arguments
7981 `(#:skip-build? #t
7982 #:cargo-inputs
7983 (("rust-backtrace" ,rust-backtrace-0.3)
7984 ("rust-version-check" ,rust-version-check-0.9))))
7985 (home-page "https://github.com/rust-lang-nursery/error-chain")
7986 (synopsis "Yet another error boilerplate library")
7987 (description
7988 "Yet another error boilerplate library.")
7989 (license (list license:asl2.0 license:expat))))
7990
7991 (define-public rust-error-chain-0.11
7992 (package
7993 (inherit rust-error-chain-0.12)
7994 (name "rust-error-chain")
7995 (version "0.11.0")
7996 (source
7997 (origin
7998 (method url-fetch)
7999 (uri (crate-uri "error-chain" version))
8000 (file-name
8001 (string-append name "-" version ".tar.gz"))
8002 (sha256
8003 (base32
8004 "1wykkr0naizbkwxjwia1rch8xhwvgij9khqvjzs07mrmqifislgz"))))
8005 (arguments
8006 `(#:tests? #f ; Not all test files included.
8007 #:cargo-inputs
8008 (("rust-backtrace" ,rust-backtrace-0.3))))))
8009
8010 (define-public rust-error-chain-0.10
8011 (package
8012 (inherit rust-error-chain-0.11)
8013 (name "rust-error-chain")
8014 (version "0.10.0")
8015 (source
8016 (origin
8017 (method url-fetch)
8018 (uri (crate-uri "error-chain" version))
8019 (file-name
8020 (string-append name "-" version ".tar.gz"))
8021 (sha256
8022 (base32
8023 "1y1gyj9g5c3k1nzkvxrgry8v9k86kcc585mczrm3qz019s35shyr"))))
8024 (arguments
8025 `(#:cargo-inputs
8026 (("rust-backtrace" ,rust-backtrace-0.3))))))
8027
8028 (define-public rust-escargot-0.5
8029 (package
8030 (name "rust-escargot")
8031 (version "0.5.0")
8032 (source
8033 (origin
8034 (method url-fetch)
8035 (uri (crate-uri "escargot" version))
8036 (file-name
8037 (string-append name "-" version ".tar.gz"))
8038 (sha256
8039 (base32
8040 "0vd9phbpd6yrnsksn2as8flvq8ykzvck2zlz143xpp42qaz9dkvl"))))
8041 (build-system cargo-build-system)
8042 (arguments
8043 `(#:tests? #f ; not all test files included
8044 #:cargo-inputs
8045 (("rust-lazy-static" ,rust-lazy-static-1)
8046 ("rust-log" ,rust-log-0.4)
8047 ("rust-serde" ,rust-serde-1)
8048 ("rust-serde-json" ,rust-serde-json-1))
8049 #:cargo-development-inputs
8050 (("rust-assert-fs" ,rust-assert-fs-0.11))))
8051 (home-page "https://github.com/crate-ci/escargot")
8052 (synopsis "Cargo API written in Paris")
8053 (description "Cargo API written in Paris.")
8054 (license (list license:expat license:asl2.0))))
8055
8056 (define-public rust-expat-sys-2.1
8057 (package
8058 (name "rust-expat-sys")
8059 (version "2.1.6")
8060 (source
8061 (origin
8062 (method url-fetch)
8063 (uri (crate-uri "expat-sys" version))
8064 (file-name
8065 (string-append name "-" version ".tar.gz"))
8066 (sha256
8067 (base32
8068 "1yj5pqynds776ay8wg9mhi3hvna4fv7vf244yr1864r0i5r1k3v5"))
8069 (modules '((guix build utils)))
8070 (snippet
8071 '(begin (delete-file-recursively "expat") #t))))
8072 (build-system cargo-build-system)
8073 (arguments
8074 `(#:cargo-inputs
8075 (("rust-cmake" ,rust-cmake-0.1)
8076 ("rust-pkg-config" ,rust-pkg-config-0.3))))
8077 (native-inputs
8078 `(("pkg-config" ,pkg-config)))
8079 (inputs
8080 `(("expat" ,expat)))
8081 (home-page "http://www.libexpat.org/")
8082 (synopsis "XML parser library written in C")
8083 (description "XML parser library written in C")
8084 (license license:expat)))
8085
8086 (define-public rust-expectest-0.9
8087 (package
8088 (name "rust-expectest")
8089 (version "0.9.2")
8090 (source
8091 (origin
8092 (method url-fetch)
8093 (uri (crate-uri "expectest" version))
8094 (file-name (string-append name "-" version ".tar.gz"))
8095 (sha256
8096 (base32 "0f24q2a53x7sfmmrqjbwbk7pahzwkpd829fcr023kb7q5xnd6z4g"))))
8097 (build-system cargo-build-system)
8098 (arguments
8099 `(#:cargo-inputs
8100 (("rust-num-traits" ,rust-num-traits-0.1))))
8101 (home-page "https://github.com/zummenix/expectest")
8102 (synopsis "Matchers and matcher functions for unit testing")
8103 (description "This crate provides matchers and matcher functions for unit
8104 testing.")
8105 (license (list license:expat license:asl2.0))))
8106
8107 (define-public rust-fake-simd-0.1
8108 (package
8109 (name "rust-fake-simd")
8110 (version "0.1.2")
8111 (source
8112 (origin
8113 (method url-fetch)
8114 (uri (crate-uri "fake-simd" version))
8115 (file-name
8116 (string-append name "-" version ".tar.gz"))
8117 (sha256
8118 (base32
8119 "1vfylvk4va2ivqx85603lyqqp0zk52cgbs4n5nfbbbqx577qm2p8"))))
8120 (build-system cargo-build-system)
8121 (arguments `(#:skip-build? #t))
8122 (home-page "https://github.com/RustCrypto/utils")
8123 (synopsis "Crate for mimicking simd crate on stable Rust")
8124 (description
8125 "Crate for mimicking simd crate on stable Rust.")
8126 (license (list license:asl2.0 license:expat))))
8127
8128 (define-public rust-failure-0.1
8129 (package
8130 (name "rust-failure")
8131 (version "0.1.7")
8132 (source
8133 (origin
8134 (method url-fetch)
8135 (uri (crate-uri "failure" version))
8136 (file-name
8137 (string-append name "-" version ".tar.gz"))
8138 (sha256
8139 (base32
8140 "0js6i6mb42q1g6q3csfbmi6q40s64k96705xbim0d8zg44j9qlmq"))))
8141 (build-system cargo-build-system)
8142 (arguments
8143 `(#:skip-build? #t
8144 #:cargo-inputs
8145 (("rust-backtrace" ,rust-backtrace-0.3)
8146 ("rust-failure-derive" ,rust-failure-derive-0.1))))
8147 (home-page "https://rust-lang-nursery.github.io/failure/")
8148 (synopsis "Experimental error handling abstraction")
8149 (description
8150 "Experimental error handling abstraction.")
8151 (license (list license:asl2.0 license:expat))))
8152
8153 (define-public rust-failure-derive-0.1
8154 (package
8155 (name "rust-failure-derive")
8156 (version "0.1.7")
8157 (source
8158 (origin
8159 (method url-fetch)
8160 (uri (crate-uri "failure_derive" version))
8161 (file-name
8162 (string-append name "-" version ".tar.gz"))
8163 (sha256
8164 (base32
8165 "0cfjz0c9szqpxn43b2r722p6m3swzxj7aj6xhqw23ml7h8y762h3"))))
8166 (build-system cargo-build-system)
8167 (arguments
8168 `(#:skip-build? #t
8169 #:cargo-inputs
8170 (("rust-proc-macro2" ,rust-proc-macro2-1)
8171 ("rust-quote" ,rust-quote-1)
8172 ("rust-syn" ,rust-syn-1)
8173 ("rust-synstructure" ,rust-synstructure-0.12))
8174 #:cargo-development-inputs
8175 (("rust-failure" ,rust-failure-0.1))))
8176 (home-page "https://rust-lang-nursery.github.io/failure/")
8177 (synopsis "Derives for the failure crate")
8178 (description "Derives for the failure crate.")
8179 (license (list license:asl2.0 license:expat))))
8180
8181 (define-public rust-fallible-iterator-0.2
8182 (package
8183 (name "rust-fallible-iterator")
8184 (version "0.2.0")
8185 (source
8186 (origin
8187 (method url-fetch)
8188 (uri (crate-uri "fallible-iterator" version))
8189 (file-name (string-append name "-" version ".crate"))
8190 (sha256
8191 (base32
8192 "1xq759lsr8gqss7hva42azn3whgrbrs2sd9xpn92c5ickxm1fhs4"))))
8193 (build-system cargo-build-system)
8194 (home-page "https://github.com/sfackler/rust-fallible-iterator")
8195 (synopsis "Fallible iterator traits")
8196 (description "If the @code{std} or @code{alloc} features are enabled, this
8197 crate provides implementations for @code{Box}, @code{Vec}, @code{BTreeMap}, and
8198 @code{BTreeSet}. If the @code{std} feature is enabled, this crate additionally
8199 provides implementations for @code{HashMap} and @code{HashSet}.")
8200 (license (list license:asl2.0
8201 license:expat))))
8202
8203 (define-public rust-fallible-streaming-iterator-0.1
8204 (package
8205 (name "rust-fallible-streaming-iterator")
8206 (version "0.1.9")
8207 (source
8208 (origin
8209 (method url-fetch)
8210 (uri (crate-uri "fallible-streaming-iterator" version))
8211 (file-name (string-append name "-" version ".tar.gz"))
8212 (sha256
8213 (base32 "0nj6j26p71bjy8h42x6jahx1hn0ng6mc2miwpgwnp8vnwqf4jq3k"))))
8214 (build-system cargo-build-system)
8215 (home-page "https://github.com/sfackler/fallible-streaming-iterator")
8216 (synopsis "Fallible streaming iteration")
8217 (description "Fallible streaming iteration")
8218 (license (list license:expat license:asl2.0))))
8219
8220 (define-public rust-fern-0.6
8221 (package
8222 (name "rust-fern")
8223 (version "0.6.0")
8224 (source
8225 (origin
8226 (method url-fetch)
8227 (uri (crate-uri "fern" version))
8228 (file-name
8229 (string-append name "-" version ".tar.gz"))
8230 (sha256
8231 (base32
8232 "0rghkbmpm7ckchd2fr2ifahprc7ll3qs0fbwsspsgj6cy0h4i6lc"))))
8233 (build-system cargo-build-system)
8234 (arguments
8235 `(#:cargo-inputs
8236 (("rust-chrono" ,rust-chrono-0.4)
8237 ("rust-colored" ,rust-colored-1)
8238 ("rust-libc" ,rust-libc-0.2)
8239 ("rust-log" ,rust-log-0.4)
8240 ("rust-reopen" ,rust-reopen-0.3)
8241 ("rust-syslog" ,rust-syslog-3.3)
8242 ("rust-syslog" ,rust-syslog-4.0))
8243 #:cargo-development-inputs
8244 (("rust-chrono" ,rust-chrono-0.4)
8245 ("rust-clap" ,rust-clap-2)
8246 ("rust-tempdir" ,rust-tempdir-0.3))))
8247 (home-page "https://github.com/daboross/fern")
8248 (synopsis "Simple, efficient logging")
8249 (description
8250 "This package provides a simple, efficient logging system for Rust.")
8251 (license license:expat)))
8252
8253 (define-public rust-fern-0.5
8254 (package
8255 (inherit rust-fern-0.6)
8256 (name "rust-fern")
8257 (version "0.5.9")
8258 (source
8259 (origin
8260 (method url-fetch)
8261 (uri (crate-uri "fern" version))
8262 (file-name
8263 (string-append name "-" version ".tar.gz"))
8264 (sha256
8265 (base32
8266 "1anslk0hx9an4ypcaxqff080hgbcxm7ji7d4qf4f6qx1mkav16p6"))))
8267 (arguments
8268 `(#:cargo-inputs
8269 (("rust-libc" ,rust-libc-0.2)
8270 ("rust-reopen" ,rust-reopen-0.3)
8271 ("rust-log" ,rust-log-0.4)
8272 ("rust-chrono" ,rust-chrono-0.4)
8273 ("rust-colored" ,rust-colored-1)
8274 ("rust-syslog" ,rust-syslog-3.3)
8275 ("rust-syslog" ,rust-syslog-4.0))
8276 #:cargo-development-inputs
8277 (("rust-clap" ,rust-clap-2)
8278 ("rust-tempdir" ,rust-tempdir-0.3))))))
8279
8280 (define-public rust-filetime-0.2
8281 (package
8282 (name "rust-filetime")
8283 (version "0.2.8")
8284 (source
8285 (origin
8286 (method url-fetch)
8287 (uri (crate-uri "filetime" version))
8288 (file-name (string-append name "-" version ".crate"))
8289 (sha256
8290 (base32
8291 "0zfc90802dbw11bx6kmm8zw6r88k7glm4q6l8riqw35an3dd9xhz"))))
8292 (build-system cargo-build-system)
8293 (arguments
8294 `(#:skip-build? #t
8295 #:cargo-inputs
8296 (("rust-cfg-if" ,rust-cfg-if-0.1)
8297 ("rust-libc" ,rust-libc-0.2)
8298 ("rust-redox-syscall" ,rust-redox-syscall-0.1)
8299 ("rust-winapi" ,rust-winapi-0.3))
8300 #:cargo-development-inputs
8301 (("rust-tempfile" ,rust-tempfile-3))))
8302 (home-page "https://github.com/alexcrichton/filetime")
8303 (synopsis "Platform-agnostic accessors of timestamps in File metadata")
8304 (description
8305 "This library contains a helper library for inspecting and setting the
8306 various timestamps of files in Rust. This library takes into account
8307 cross-platform differences in terms of where the timestamps are located, what
8308 they are called, and how to convert them into a platform-independent
8309 representation.")
8310 (license (list license:asl2.0
8311 license:expat))))
8312
8313 (define-public rust-findshlibs-0.5
8314 (package
8315 (name "rust-findshlibs")
8316 (version "0.5.0")
8317 (source
8318 (origin
8319 (method url-fetch)
8320 (uri (crate-uri "findshlibs" version))
8321 (file-name (string-append name "-" version ".crate"))
8322 (sha256
8323 (base32
8324 "1n2vagn0q5yim32hxkwi1cjgp3yn1dm45p7z8nw6lapywihhs9mi"))))
8325 (build-system cargo-build-system)
8326 (arguments
8327 `(#:skip-build? #t
8328 #:cargo-inputs
8329 (("rust-lazy-static" ,rust-lazy-static-1)
8330 ("rust-libc" ,rust-libc-0.2))))
8331 (home-page "https://github.com/gimli-rs/findshlibs")
8332 (synopsis "Find the set of shared libraries loaded in the current process")
8333 (description
8334 "Find the set of shared libraries loaded in the current process with a
8335 cross platform API.")
8336 (license (list license:asl2.0
8337 license:expat))))
8338
8339 (define-public rust-fixed-1
8340 (package
8341 (name "rust-fixed")
8342 (version "1.2.0")
8343 (source
8344 (origin
8345 (method url-fetch)
8346 (uri (crate-uri "fixed" version))
8347 (file-name
8348 (string-append name "-" version ".tar.gz"))
8349 (sha256
8350 (base32
8351 "0p0v4jjgbbvp91sl8rkfqb2hldaxbzv89mzwmp8753mlrfqwn185"))))
8352 (build-system cargo-build-system)
8353 (arguments
8354 `(#:skip-build? #t
8355 #:cargo-inputs
8356 (("rust-az" ,rust-az-1)
8357 ("rust-half" ,rust-half-1)
8358 ("rust-num-traits" ,rust-num-traits-0.2)
8359 ("rust-serde" ,rust-serde-1)
8360 ("rust-typenum" ,rust-typenum-1))
8361 #:cargo-development-inputs
8362 (("rust-criterion" ,rust-criterion-0.3)
8363 ("rust-num-traits" ,rust-num-traits-0.2)
8364 ("rust-rand" ,rust-rand-0.7)
8365 ("rust-rand-xoshiro" ,rust-rand-xoshiro-0.4))))
8366 (home-page "https://gitlab.com/tspiteri/fixed")
8367 (synopsis "Rust fixed-point numbers")
8368 (description "This package provides fixed-point numbers in Rust.")
8369 (license (list license:expat license:asl2.0))))
8370
8371 (define-public rust-fixedbitset-0.2
8372 (package
8373 (name "rust-fixedbitset")
8374 (version "0.2.0")
8375 (source
8376 (origin
8377 (method url-fetch)
8378 (uri (crate-uri "fixedbitset" version))
8379 (file-name (string-append name "-" version ".crate"))
8380 (sha256
8381 (base32
8382 "0kg03p777wc0dajd9pvlcnsyrwa8dhqwf0sd9r4dw0p82rs39arp"))))
8383 (build-system cargo-build-system)
8384 (home-page "https://github.com/petgraph/fixedbitset")
8385 (synopsis "FixedBitSet is a simple bitset collection")
8386 (description "FixedBitSet is a simple bitset collection.")
8387 (license (list license:asl2.0
8388 license:expat))))
8389
8390 (define-public rust-fixedbitset-0.1
8391 (package
8392 (inherit rust-fixedbitset-0.2)
8393 (name "rust-fixedbitset")
8394 (version "0.1.9")
8395 (source
8396 (origin
8397 (method url-fetch)
8398 (uri (crate-uri "fixedbitset" version))
8399 (file-name (string-append name "-" version ".crate"))
8400 (sha256
8401 (base32
8402 "0czam11mi80dbyhf4rd4lz0ihcf7vkfchrdcrn45wbs0h40dxm46"))))))
8403
8404 (define-public rust-flame-0.2
8405 (package
8406 (name "rust-flame")
8407 (version "0.2.2")
8408 (source
8409 (origin
8410 (method url-fetch)
8411 (uri (crate-uri "flame" version))
8412 (file-name
8413 (string-append name "-" version ".tar.gz"))
8414 (sha256
8415 (base32
8416 "0c5bmhyimzxch3pmh0w3z9n57saasgix4bmbbksr9vp1c5j71hhz"))))
8417 (build-system cargo-build-system)
8418 (arguments
8419 `(#:cargo-inputs
8420 (("rust-lazy-static" ,rust-lazy-static-0.2)
8421 ("rust-serde" ,rust-serde-1)
8422 ("rust-serde-derive" ,rust-serde-derive-1)
8423 ("rust-serde-json" ,rust-serde-json-1)
8424 ("rust-thread-id" ,rust-thread-id-3))))
8425 (home-page "https://github.com/llogiq/flame")
8426 (synopsis "Profiling and flamegraph library")
8427 (description "A profiling and flamegraph library.")
8428 (license (list license:asl2.0 license:expat))))
8429
8430 (define-public rust-flamer-0.3
8431 (package
8432 (name "rust-flamer")
8433 (version "0.3.0")
8434 (source
8435 (origin
8436 (method url-fetch)
8437 (uri (crate-uri "flamer" version))
8438 (file-name
8439 (string-append name "-" version ".tar.gz"))
8440 (sha256
8441 (base32
8442 "1b2d7jx80f3p7hqpgdi7wksaiq18k9w23p0cs2sxf7jbx2jx3bgj"))))
8443 (build-system cargo-build-system)
8444 (arguments
8445 `(#:tests? #f ; Uses features not available in stable Rust release
8446 #:cargo-inputs
8447 (("rust-flame" ,rust-flame-0.2)
8448 ("rust-quote" ,rust-quote-0.6)
8449 ("rust-syn" ,rust-syn-0.15))))
8450 (home-page "https://github.com/llogiq/flamer")
8451 (synopsis "Macro to insert @code{flame::start_guard(_)}")
8452 (description
8453 "A procedural macro to insert @code{flame::start_guard(_)} calls.")
8454 (license license:asl2.0)))
8455
8456 (define-public rust-flate2-1
8457 (package
8458 (name "rust-flate2")
8459 (version "1.0.14")
8460 (source
8461 (origin
8462 (method url-fetch)
8463 (uri (crate-uri "flate2" version))
8464 (file-name
8465 (string-append name "-" version ".tar.gz"))
8466 (sha256
8467 (base32
8468 "0hlb2zmn5ixrgr0i1qvrd3a7j4fpp002d0kddn2hm7hjj49z9zrc"))))
8469 (build-system cargo-build-system)
8470 (arguments
8471 `(#:skip-build? #t
8472 #:cargo-inputs
8473 (("rust-cfg-if" ,rust-cfg-if-0.1)
8474 ("rust-cloudflare-zlib-sys"
8475 ,rust-cloudflare-zlib-sys-0.2)
8476 ("rust-crc32fast" ,rust-crc32fast-1)
8477 ("rust-futures" ,rust-futures-0.1)
8478 ("rust-libc" ,rust-libc-0.2)
8479 ("rust-libz-sys" ,rust-libz-sys-1)
8480 ("rust-miniz-sys" ,rust-miniz-sys-0.1)
8481 ("rust-miniz-oxide" ,rust-miniz-oxide-0.3)
8482 ("rust-tokio-io" ,rust-tokio-io-0.1))
8483 #:cargo-development-inputs
8484 (("rust-futures" ,rust-futures-0.1)
8485 ("rust-quickcheck" ,rust-quickcheck-0.9)
8486 ("rust-rand" ,rust-rand-0.7)
8487 ("rust-tokio-io" ,rust-tokio-io-0.1)
8488 ("rust-tokio-tcp" ,rust-tokio-tcp-0.1)
8489 ("rust-tokio-threadpool" ,rust-tokio-threadpool-0.1))))
8490 (home-page "https://github.com/alexcrichton/flate2-rs")
8491 (synopsis
8492 "Bindings to miniz.c for DEFLATE compression and decompression")
8493 (description
8494 "Bindings to miniz.c for DEFLATE compression and decompression exposed as
8495 Reader/Writer streams. Contains bindings for zlib, deflate, and gzip-based
8496 streams.")
8497 (license (list license:expat license:asl2.0))))
8498
8499 (define-public rust-float-cmp-0.8
8500 (package
8501 (name "rust-float-cmp")
8502 (version "0.8.0")
8503 (source
8504 (origin
8505 (method url-fetch)
8506 (uri (crate-uri "float-cmp" version))
8507 (file-name
8508 (string-append name "-" version ".tar.gz"))
8509 (sha256
8510 (base32
8511 "1i56hnzjn5pmrcm47fwkmfxiihk7wz5vvcgpb0kpfhzkqi57y9p1"))))
8512 (build-system cargo-build-system)
8513 (arguments
8514 `(#:cargo-inputs (("rust-num-traits" ,rust-num-traits-0.2))))
8515 (home-page "https://github.com/mikedilger/float-cmp")
8516 (synopsis "Floating point approximate comparison traits")
8517 (description
8518 "Floating point approximate comparison traits in Rust.")
8519 (license license:expat)))
8520
8521 (define-public rust-float-cmp-0.6
8522 (package
8523 (inherit rust-float-cmp-0.8)
8524 (name "rust-float-cmp")
8525 (version "0.6.0")
8526 (source
8527 (origin
8528 (method url-fetch)
8529 (uri (crate-uri "float-cmp" version))
8530 (file-name
8531 (string-append name "-" version ".tar.gz"))
8532 (sha256
8533 (base32
8534 "0zb1lv3ga18vsnpjjdg87yazbzvmfwwllj3aiid8660rp3qw8qns"))))))
8535
8536 (define-public rust-float-cmp-0.5
8537 (package
8538 (inherit rust-float-cmp-0.6)
8539 (name "rust-float-cmp")
8540 (version "0.5.3")
8541 (source
8542 (origin
8543 (method url-fetch)
8544 (uri (crate-uri "float-cmp" version))
8545 (file-name
8546 (string-append name "-" version ".tar.gz"))
8547 (sha256
8548 (base32
8549 "03hmx3n48hjm0x1ig84n1j87kzp75lzr6cj1sgi6a6pykgn4n8km"))))))
8550
8551 (define-public rust-float-cmp-0.3
8552 (package
8553 (inherit rust-float-cmp-0.5)
8554 (name "rust-float-cmp")
8555 (version "0.3.0")
8556 (source
8557 (origin
8558 (method url-fetch)
8559 (uri (crate-uri "float-cmp" version))
8560 (file-name
8561 (string-append name "-" version ".tar.gz"))
8562 (sha256
8563 (base32
8564 "1c0hmj46xma5aysz0qb49padhc26aw875whx6q6rglsj5dqpds1b"))))
8565 (arguments
8566 `(#:cargo-inputs (("rust-num" ,rust-num-0.1))))))
8567
8568 (define-public rust-float-ord-0.2
8569 (package
8570 (name "rust-float-ord")
8571 (version "0.2.0")
8572 (source
8573 (origin
8574 (method url-fetch)
8575 (uri (crate-uri "float-ord" version))
8576 (file-name
8577 (string-append name "-" version ".tar.gz"))
8578 (sha256
8579 (base32
8580 "0kin50365sr3spnbscq43lksymybi99ai9rkqdw90m6vixhlibbv"))))
8581 (build-system cargo-build-system)
8582 (arguments
8583 `(#:cargo-development-inputs
8584 (("rust-rand" ,rust-rand-0.3))))
8585 (home-page "https://github.com/notriddle/rust-float-ord")
8586 (synopsis "Total ordering for floating-point numbers")
8587 (description
8588 "This package provides a total ordering for floating-point numbers.")
8589 (license (list license:asl2.0 license:expat))))
8590
8591 (define-public rust-fluid-0.4
8592 (package
8593 (name "rust-fluid")
8594 (version "0.4.1")
8595 (source
8596 (origin
8597 (method url-fetch)
8598 (uri (crate-uri "fluid" version))
8599 (file-name (string-append name "-" version ".tar.gz"))
8600 (sha256
8601 (base32
8602 "04qgdc4lx934158icx9rvs0v6lyvirmb0brllvz38hj9fsaqfbsp"))))
8603 (build-system cargo-build-system)
8604 (arguments
8605 `(#:cargo-inputs
8606 (("rust-colored" ,rust-colored-1)
8607 ("rust-fluid-attributes" ,rust-fluid-attributes-0.4)
8608 ("rust-num-traits" ,rust-num-traits-0.2))))
8609 (home-page "https://crates.io/crates/fluid")
8610 (synopsis "Human readable test library")
8611 (description "This package provides a human readable test library.")
8612 (license license:asl2.0)))
8613
8614 (define-public rust-fluid-attributes-0.4
8615 (package
8616 (name "rust-fluid-attributes")
8617 (version "0.4.0")
8618 (source
8619 (origin
8620 (method url-fetch)
8621 (uri (crate-uri "fluid_attributes" version))
8622 (file-name (string-append name "-" version ".tar.gz"))
8623 (sha256
8624 (base32
8625 "1i67vcas0gr64bc8spprlfp7m7msv1jyspghgq1q8f0qrnvy8px8"))))
8626 (build-system cargo-build-system)
8627 (arguments
8628 `(#:tests? #f
8629 #:cargo-inputs
8630 (("rust-proc-macro2" ,rust-proc-macro2-0.4)
8631 ("rust-quote" ,rust-quote-0.6)
8632 ("rust-syn" ,rust-syn-0.15)
8633 ("rust-uuid" ,rust-uuid-0.7))))
8634 (home-page "https://gitlab.com/Boiethios/fluid-rs/wikis")
8635 (synopsis "Proc macro attributes for the fluid crate")
8636 (description "This package provides proc macro attributes for the fluid
8637 crate.")
8638 (license license:asl2.0)))
8639
8640 (define-public rust-fnv-1
8641 (package
8642 (name "rust-fnv")
8643 (version "1.0.6")
8644 (source
8645 (origin
8646 (method url-fetch)
8647 (uri (crate-uri "fnv" version))
8648 (file-name (string-append name "-" version ".crate"))
8649 (sha256
8650 (base32
8651 "1ww56bi1r5b8id3ns9j3qxbi7w5h005rzhiryy0zi9h97raqbb9g"))))
8652 (build-system cargo-build-system)
8653 (home-page "https://github.com/servo/rust-fnv")
8654 (synopsis "Implementation of the Fowler-Noll-Vo hash function")
8655 (description "The @code{fnv} hash function is a custom @code{Hasher}
8656 implementation that is more efficient for smaller hash keys.")
8657 (license (list license:asl2.0
8658 license:expat))))
8659
8660 (define-public rust-font-kit-0.4
8661 (package
8662 (name "rust-font-kit")
8663 (version "0.4.0")
8664 (source
8665 (origin
8666 (method url-fetch)
8667 (uri (crate-uri "font-kit" version))
8668 (file-name
8669 (string-append name "-" version ".tar.gz"))
8670 (sha256
8671 (base32
8672 "1fmg1jmqdvsjxjbyz8chpx1mhp544mwq128ns1shhrha5a6zzdqp"))))
8673 (build-system cargo-build-system)
8674 (arguments
8675 `(#:skip-build? #t
8676 #:cargo-inputs
8677 (("rust-lyon-path" ,rust-lyon-path-0.14)
8678 ("rust-core-graphics" ,rust-core-graphics-0.17)
8679 ("rust-float-ord" ,rust-float-ord-0.2)
8680 ("rust-libc" ,rust-libc-0.2)
8681 ("rust-euclid" ,rust-euclid-0.20)
8682 ("rust-winapi" ,rust-winapi-0.3)
8683 ("rust-servo-fontconfig"
8684 ,rust-servo-fontconfig-0.4)
8685 ("rust-freetype" ,rust-freetype-0.4)
8686 ("rust-log" ,rust-log-0.4)
8687 ("rust-core-foundation"
8688 ,rust-core-foundation-0.6)
8689 ("rust-memmap" ,rust-memmap-0.7)
8690 ("rust-dwrote" ,rust-dwrote-0.9)
8691 ("rust-dirs" ,rust-dirs-1.0)
8692 ("rust-byteorder" ,rust-byteorder-1)
8693 ("rust-lazy-static" ,rust-lazy-static-1)
8694 ("rust-core-text" ,rust-core-text-13)
8695 ("rust-walkdir" ,rust-walkdir-2))))
8696 (home-page "https://github.com/servo/font-kit")
8697 (synopsis "Cross-platform font loading library")
8698 (description
8699 "This package provides a cross-platform font loading library.")
8700 (license (list license:expat license:asl2.0))))
8701
8702 (define-public rust-foreign-types-0.5
8703 (package
8704 (name "rust-foreign-types")
8705 (version "0.5.0")
8706 (source
8707 (origin
8708 (method url-fetch)
8709 (uri (crate-uri "foreign-types" version))
8710 (file-name
8711 (string-append name "-" version ".tar.gz"))
8712 (sha256
8713 (base32
8714 "0rfr2zfxnx9rz3292z5nyk8qs2iirznn5ff3rd4vgdwza6mdjdyp"))))
8715 (build-system cargo-build-system)
8716 (arguments
8717 `(#:cargo-inputs
8718 (("rust-foreign-types-macros" ,rust-foreign-types-macros-0.2)
8719 ("rust-foreign-types-shared" ,rust-foreign-types-shared-0.3))))
8720 (home-page "https://github.com/sfackler/foreign-types")
8721 (synopsis "Framework for Rust wrappers over C APIs")
8722 (description
8723 "This package provides a framework for Rust wrappers over C APIs.")
8724 (license (list license:expat license:asl2.0))))
8725
8726 (define-public rust-foreign-types-0.3
8727 (package
8728 (inherit rust-foreign-types-0.5)
8729 (name "rust-foreign-types")
8730 (version "0.3.2")
8731 (source
8732 (origin
8733 (method url-fetch)
8734 (uri (crate-uri "foreign-types" version))
8735 (file-name
8736 (string-append name "-" version ".tar.gz"))
8737 (sha256
8738 (base32
8739 "1cgk0vyd7r45cj769jym4a6s7vwshvd0z4bqrb92q1fwibmkkwzn"))))
8740 (arguments
8741 `(#:cargo-inputs
8742 (("rust-foreign-types-macros" ,rust-foreign-types-macros-0.1)
8743 ("rust-foreign-types-shared" ,rust-foreign-types-shared-0.1))))))
8744
8745 (define-public rust-foreign-types-macros-0.2
8746 (package
8747 (name "rust-foreign-types-macros")
8748 (version "0.2.0")
8749 (source
8750 (origin
8751 (method url-fetch)
8752 (uri (crate-uri "foreign-types-macros" version))
8753 (file-name
8754 (string-append name "-" version ".tar.gz"))
8755 (sha256
8756 (base32
8757 "0x71sdffjfb123l2jn5vhz0ni09b4rdq3h3gpczd1dj1g5qlr2yv"))))
8758 (build-system cargo-build-system)
8759 (arguments
8760 `(#:cargo-inputs
8761 (("rust-proc-macro2" ,rust-proc-macro2-1)
8762 ("rust-quote" ,rust-quote-1)
8763 ("rust-syn" ,rust-syn-1))))
8764 (home-page "https://github.com/sfackler/foreign-types")
8765 (synopsis "Internal crate used by foreign-types")
8766 (description
8767 "This package is an internal crate used by foreign-types.")
8768 (license (list license:expat license:asl2.0))))
8769
8770 (define-public rust-foreign-types-macros-0.1
8771 (package
8772 (inherit rust-foreign-types-macros-0.2)
8773 (name "rust-foreign-types-macros")
8774 (version "0.1.1")
8775 (source
8776 (origin
8777 (method url-fetch)
8778 (uri (crate-uri "foreign-types-macros" version))
8779 (file-name
8780 (string-append name "-" version ".tar.gz"))
8781 (sha256
8782 (base32
8783 "0bh6z5rwdhfm987idal8r0ha5svz1li7md5l1g2a5966gya1jns0"))))))
8784
8785 (define-public rust-foreign-types-shared-0.3
8786 (package
8787 (name "rust-foreign-types-shared")
8788 (version "0.3.0")
8789 (source
8790 (origin
8791 (method url-fetch)
8792 (uri (crate-uri "foreign-types-shared" version))
8793 (file-name
8794 (string-append name "-" version ".tar.gz"))
8795 (sha256
8796 (base32
8797 "0mg85r21bxg2i97zl3q8l3cviqz4wcbwziz875wlja3zpcrwz13n"))))
8798 (build-system cargo-build-system)
8799 (home-page "https://github.com/sfackler/foreign-types")
8800 (synopsis "Internal crate used by foreign-types")
8801 (description
8802 "An internal crate used by foreign-types.")
8803 (license (list license:expat license:asl2.0))))
8804
8805 (define-public rust-foreign-types-shared-0.2
8806 (package
8807 (inherit rust-foreign-types-shared-0.3)
8808 (name "rust-foreign-types-shared")
8809 (version "0.2.0")
8810 (source
8811 (origin
8812 (method url-fetch)
8813 (uri (crate-uri "foreign-types-shared" version))
8814 (file-name (string-append name "-" version ".crate"))
8815 (sha256
8816 (base32
8817 "0kanxlif1vp0ffh2r9l610jqbkmb3183yqykxq1z5w1vay2rn7y6"))))))
8818
8819 (define-public rust-foreign-types-shared-0.1
8820 (package
8821 (inherit rust-foreign-types-shared-0.2)
8822 (name "rust-foreign-types-shared")
8823 (version "0.1.1")
8824 (source
8825 (origin
8826 (method url-fetch)
8827 (uri (crate-uri "foreign-types-shared" version))
8828 (file-name
8829 (string-append name "-" version ".tar.gz"))
8830 (sha256
8831 (base32
8832 "0jxgzd04ra4imjv8jgkmdq59kj8fsz6w4zxsbmlai34h26225c00"))))))
8833
8834 (define-public rust-fragile-0.3
8835 (package
8836 (name "rust-fragile")
8837 (version "0.3.0")
8838 (source
8839 (origin
8840 (method url-fetch)
8841 (uri (crate-uri "fragile" version))
8842 (file-name
8843 (string-append name "-" version ".tar.gz"))
8844 (sha256
8845 (base32
8846 "1yf2hmkw52x2dva3c9km1x8c2z5kwby7qqn8kz5ms3gs480i9y05"))))
8847 (build-system cargo-build-system)
8848 (home-page "https://github.com/mitsuhiko/rust-fragile")
8849 (synopsis "Wrapper types for sending non-send values to other threads")
8850 (description "This package provides wrapper types for sending non-send
8851 values to other threads.")
8852 (license license:asl2.0)))
8853
8854 (define-public rust-freetype-0.4
8855 (package
8856 (name "rust-freetype")
8857 (version "0.4.1")
8858 (source
8859 (origin
8860 (method url-fetch)
8861 (uri (crate-uri "freetype" version))
8862 (file-name
8863 (string-append name "-" version ".tar.gz"))
8864 (sha256
8865 (base32
8866 "0a70x03n68997f08bi3n47q9wyi3pv5s9v4rjc79sihb84mnp4hi"))))
8867 (build-system cargo-build-system)
8868 (arguments
8869 `(#:skip-build? #t
8870 #:cargo-inputs
8871 (("rust-libc" ,rust-libc-0.2)
8872 ("rust-servo-freetype-sys" ,rust-servo-freetype-sys-4))))
8873 (home-page "https://github.com/servo/rust-freetype")
8874 (synopsis "Bindings for Freetype used by Servo")
8875 (description
8876 "Bindings for Freetype used by Servo.")
8877 (license (list license:asl2.0 license:expat))))
8878
8879 (define-public rust-freetype-rs-0.23
8880 (package
8881 (name "rust-freetype-rs")
8882 (version "0.23.0")
8883 (source
8884 (origin
8885 (method url-fetch)
8886 (uri (crate-uri "freetype-rs" version))
8887 (file-name
8888 (string-append name "-" version ".tar.gz"))
8889 (sha256
8890 (base32
8891 "06yn6l44wad0h0i4nzs5jfq64zgf89xr01fy1w22i90j22ilnkmd"))))
8892 (build-system cargo-build-system)
8893 (arguments
8894 `(#:cargo-inputs
8895 (("rust-bitflags" ,rust-bitflags-1)
8896 ("rust-freetype-sys" ,rust-freetype-sys-0.9)
8897 ("rust-libc" ,rust-libc-0.2))
8898 #:cargo-development-inputs
8899 (("rust-unicode-normalization" ,rust-unicode-normalization-0.1))))
8900 (inputs
8901 `(("freetype" ,freetype)
8902 ("zlib" ,zlib)))
8903 (home-page "https://github.com/PistonDevelopers/freetype-rs")
8904 (synopsis "Bindings for FreeType font library")
8905 (description "This package provides bindings for FreeType font library.")
8906 (license license:expat)))
8907
8908 (define-public rust-freetype-sys-0.9
8909 (package
8910 (name "rust-freetype-sys")
8911 (version "0.9.0")
8912 (source
8913 (origin
8914 (method url-fetch)
8915 (uri (crate-uri "freetype-sys" version))
8916 (file-name
8917 (string-append name "-" version ".tar.gz"))
8918 (sha256
8919 (base32
8920 "1i309xc6gcsgdfiim3j5f0sk08imr4frlzfa185iaxqciysqgikx"))))
8921 (build-system cargo-build-system)
8922 (arguments
8923 `(#:cargo-inputs
8924 (("rust-libc" ,rust-libc-0.2)
8925 ("rust-libz-sys" ,rust-libz-sys-1)
8926 ("rust-pkg-config" ,rust-pkg-config-0.3))))
8927 (inputs
8928 `(("freetype" ,freetype)
8929 ("zlib" ,zlib)))
8930 (home-page "https://github.com/PistonDevelopers/freetype-sys")
8931 (synopsis "Low level binding for FreeType font library")
8932 (description
8933 "This package provides low level binding for FreeType font library.")
8934 (license license:expat)))
8935
8936 (define-public rust-fs2-0.4
8937 (package
8938 (name "rust-fs2")
8939 (version "0.4.3")
8940 (source
8941 (origin
8942 (method url-fetch)
8943 (uri (crate-uri "fs2" version))
8944 (file-name (string-append name "-" version ".tar.gz"))
8945 (sha256
8946 (base32 "04v2hwk7035c088f19mfl5b1lz84gnvv2hv6m935n0hmirszqr4m"))))
8947 (build-system cargo-build-system)
8948 (arguments
8949 `(#:tests? #f ;; "#![feature] may not be used on stable release channel"
8950 #:cargo-inputs
8951 (("rust-libc" ,rust-libc-0.2)
8952 ("rust-winapi" ,rust-winapi-0.3))
8953 #:cargo-development-inputs
8954 (("rust-tempdir" ,rust-tempdir-0.3))))
8955 (home-page "https://github.com/danburkert/fs2-rs")
8956 (synopsis "Cross-platform file locks and file duplication")
8957 (description "This package provides cross-platform file locks and file
8958 duplication.")
8959 (license (list license:expat license:asl2.0))))
8960
8961 (define-public rust-fs-extra-1.1
8962 (package
8963 (name "rust-fs-extra")
8964 (version "1.1.0")
8965 (source
8966 (origin
8967 (method url-fetch)
8968 (uri (crate-uri "fs_extra" version))
8969 (file-name (string-append name "-" version ".crate"))
8970 (sha256
8971 (base32
8972 "0x6675wdhsx277k1k1235jwcv38naf20d8kwrk948ds26hh4lajz"))))
8973 (build-system cargo-build-system)
8974 (arguments '(#:skip-build? #t))
8975 (home-page "https://github.com/webdesus/fs_extra")
8976 (synopsis "Extra file system methods")
8977 (description "Expanding opportunities standard library @code{std::fs} and
8978 @code{std::io}. Recursively copy folders with recept information about
8979 process and much more.")
8980 (license license:expat)))
8981
8982 (define-public rust-fs2-0.2
8983 (package
8984 (name "rust-fs2")
8985 (version "0.2.5")
8986 (source
8987 (origin
8988 (method url-fetch)
8989 (uri (crate-uri "fs2" version))
8990 (file-name
8991 (string-append name "-" version ".tar.gz"))
8992 (sha256
8993 (base32
8994 "1vsih93cvds3x6f3w9bc5rnkyv8haix1px4jpcqvjyd9l7ji9m5w"))))
8995 (build-system cargo-build-system)
8996 (arguments
8997 `(#:tests? #f
8998 #:cargo-inputs
8999 (("rust-kernel32-sys" ,rust-kernel32-sys-0.2)
9000 ("rust-libc" ,rust-libc-0.2)
9001 ("rust-winapi" ,rust-winapi-0.2))
9002 #:cargo-development-inputs
9003 (("rust-tempdir" ,rust-tempdir-0.3))))
9004 (home-page "https://github.com/danburkert/fs2-rs")
9005 (synopsis "File locks and file duplication")
9006 (description
9007 "This package provides cross-platform file locks and file duplication.")
9008 (license (list license:expat license:asl2.0))))
9009
9010 (define-public rust-fsevent-0.4
9011 (package
9012 (name "rust-fsevent")
9013 (version "0.4.0")
9014 (source
9015 (origin
9016 (method url-fetch)
9017 (uri (crate-uri "fsevent" version))
9018 (file-name
9019 (string-append name "-" version ".tar.gz"))
9020 (sha256
9021 (base32
9022 "1djxnc2fmv265xqf1iyfz56smh13v9r1p0w9125wjg6k3fyx3dss"))))
9023 (build-system cargo-build-system)
9024 (arguments
9025 `(#:skip-build? #t ; only available on macOS
9026 #:cargo-inputs
9027 (("rust-bitflags" ,rust-bitflags-1)
9028 ("rust-fsevent-sys" ,rust-fsevent-sys-2))
9029 #:cargo-development-inputs
9030 (("rust-tempdir" ,rust-tempdir-0.3)
9031 ("rust-time" ,rust-time-0.1))))
9032 (home-page "https://github.com/octplane/fsevent-rust")
9033 (synopsis "Rust bindings to the fsevent-sys macOS API")
9034 (description
9035 "This package provides Rust bindings to the @code{fsevent-sys} macOS API
9036 for file changes notifications")
9037 (license license:expat)))
9038
9039 (define-public rust-fsevent-sys-2
9040 (package
9041 (name "rust-fsevent-sys")
9042 (version "2.0.1")
9043 (source
9044 (origin
9045 (method url-fetch)
9046 (uri (crate-uri "fsevent-sys" version))
9047 (file-name
9048 (string-append name "-" version ".tar.gz"))
9049 (sha256
9050 (base32
9051 "18246vxk7rqn52m0sfrhivxq802i34p2wqqx5zsa0pamjj5086zl"))))
9052 (build-system cargo-build-system)
9053 (arguments
9054 `(#:skip-build? #t ; only available on macOS
9055 #:cargo-inputs (("rust-libc" ,rust-libc-0.2))))
9056 (home-page "https://github.com/octplane/fsevent-rust/tree/master/fsevent-sys")
9057 (synopsis "Rust bindings to the fsevent macOS API")
9058 (description "This package provides Rust bindings to the @code{fsevent}
9059 macOS API for file changes notifications")
9060 (license license:expat)))
9061
9062 (define-public rust-fst-0.4
9063 (package
9064 (name "rust-fst")
9065 (version "0.4.0")
9066 (source
9067 (origin
9068 (method url-fetch)
9069 (uri (crate-uri "fst" version))
9070 (file-name
9071 (string-append name "-" version ".tar.gz"))
9072 (sha256
9073 (base32
9074 "0ybmdzkknhv1wx6ws86iyixfyzc04l4nm71b9va7953r1m3i6z1z"))))
9075 (build-system cargo-build-system)
9076 (arguments
9077 `(#:skip-build? #t
9078 #:cargo-inputs
9079 (("rust-utf8-ranges" ,rust-utf8-ranges-1.0))))
9080 (home-page "https://github.com/BurntSushi/fst")
9081 (synopsis "Represent sets or maps of large numbers of strings.")
9082 (description
9083 "Use finite state transducers to compactly represent sets or maps of many
9084 strings (> 1 billion is possible).")
9085 (license (list license:unlicense license:expat))))
9086
9087 (define-public rust-fuchsia-cprng-0.1
9088 (package
9089 (name "rust-fuchsia-cprng")
9090 (version "0.1.1")
9091 (source
9092 (origin
9093 (method url-fetch)
9094 (uri (crate-uri "fuchsia-cprng" version))
9095 (file-name (string-append name "-" version ".crate"))
9096 (sha256
9097 (base32
9098 "1fnkqrbz7ixxzsb04bsz9p0zzazanma8znfdqjvh39n14vapfvx0"))))
9099 (build-system cargo-build-system)
9100 (arguments '(#:skip-build? #t))
9101 (home-page
9102 "https://fuchsia.googlesource.com/fuchsia/+/master/garnet/public/rust/fuchsia-cprng")
9103 (synopsis "Fuchsia cryptographically secure pseudorandom number generator")
9104 (description "Rust crate for the Fuchsia cryptographically secure
9105 pseudorandom number generator")
9106 (license license:bsd-3)))
9107
9108 (define-public rust-fuchsia-zircon-0.3
9109 (package
9110 (name "rust-fuchsia-zircon")
9111 (version "0.3.3")
9112 (source
9113 (origin
9114 (method url-fetch)
9115 (uri (crate-uri "fuchsia-zircon" version))
9116 (file-name (string-append name "-" version ".crate"))
9117 (sha256
9118 (base32
9119 "10jxc5ks1x06gpd0xg51kcjrxr35nj6qhx2zlc5n7bmskv3675rf"))))
9120 (build-system cargo-build-system)
9121 (arguments
9122 `(#:skip-build? #t
9123 #:cargo-inputs
9124 (("rust-bitflags" ,rust-bitflags-1)
9125 ("rust-fuchsia-zircon-sys" ,rust-fuchsia-zircon-sys-0.3))))
9126 (home-page "https://fuchsia.googlesource.com/garnet/")
9127 (synopsis "Rust bindings for the Zircon kernel")
9128 (description "Rust bindings for the Zircon kernel.")
9129 (license license:bsd-3)))
9130
9131 (define-public rust-fuchsia-zircon-sys-0.3
9132 (package
9133 (name "rust-fuchsia-zircon-sys")
9134 (version "0.3.3")
9135 (source
9136 (origin
9137 (method url-fetch)
9138 (uri (crate-uri "fuchsia-zircon-sys" version))
9139 (file-name (string-append name "-" version ".crate"))
9140 (sha256
9141 (base32
9142 "19zp2085qsyq2bh1gvcxq1lb8w6v6jj9kbdkhpdjrl95fypakjix"))))
9143 (build-system cargo-build-system)
9144 (arguments '(#:skip-build? #t))
9145 (home-page "https://fuchsia.googlesource.com/garnet/")
9146 (synopsis "Low-level Rust bindings for the Zircon kernel")
9147 (description "Low-level Rust bindings for the Zircon kernel.")
9148 (license license:bsd-3)))
9149
9150 (define-public rust-futf-0.1
9151 (package
9152 (name "rust-futf")
9153 (version "0.1.4")
9154 (source
9155 (origin
9156 (method url-fetch)
9157 (uri (crate-uri "futf" version))
9158 (file-name
9159 (string-append name "-" version ".tar.gz"))
9160 (sha256
9161 (base32
9162 "0fxc18bnabird5jl941nsd6d25vq8cn8barmz4d30dlkzbiir73w"))))
9163 (build-system cargo-build-system)
9164 (arguments
9165 `(#:skip-build? #t
9166 #:cargo-inputs
9167 (("rust-mac" ,rust-mac-0.1)
9168 ("rust-new-debug-unreachable" ,rust-new-debug-unreachable-1))))
9169 (home-page "https://github.com/servo/futf")
9170 (synopsis "Handling fragments of UTF-8")
9171 (description "Handling fragments of UTF-8.")
9172 (license (list license:asl2.0 license:expat))))
9173
9174 (define-public rust-futures-0.3
9175 (package
9176 (name "rust-futures")
9177 (version "0.3.1")
9178 (source
9179 (origin
9180 (method url-fetch)
9181 (uri (crate-uri "futures" version))
9182 (file-name
9183 (string-append name "-" version ".tar.gz"))
9184 (sha256
9185 (base32
9186 "11srrbc0hp7pgz142qjfx2z07kfhc98rbfwqyrgm4mxvxib61wdn"))))
9187 (build-system cargo-build-system)
9188 (arguments
9189 `(#:tests? #f
9190 #:cargo-inputs
9191 (("rust-futures-channel" ,rust-futures-channel-0.3)
9192 ("rust-futures-core" ,rust-futures-core-0.3)
9193 ("rust-futures-executor" ,rust-futures-executor-0.3)
9194 ("rust-futures-io" ,rust-futures-io-0.3)
9195 ("rust-futures-sink" ,rust-futures-sink-0.3)
9196 ("rust-futures-task" ,rust-futures-task-0.3)
9197 ("rust-futures-util" ,rust-futures-util-0.3))
9198 #:cargo-development-inputs
9199 (("rust-assert-matches" ,rust-assert-matches-1.3)
9200 ("rust-pin-utils" ,rust-pin-utils-0.1)
9201 ("rust-tokio" ,rust-tokio-0.1))))
9202 (home-page "https://rust-lang-nursery.github.io/futures-rs")
9203 (synopsis "Rust implementation of futures and streams")
9204 (description
9205 "A Rust implementation of futures and streams featuring zero allocations,
9206 composability, and iterator-like interfaces.")
9207 (license (list license:expat license:asl2.0))))
9208
9209 (define-public rust-futures-0.1
9210 (package
9211 (name "rust-futures")
9212 (version "0.1.29")
9213 (source
9214 (origin
9215 (method url-fetch)
9216 (uri (crate-uri "futures" version))
9217 (file-name (string-append name "-" version ".crate"))
9218 (sha256
9219 (base32
9220 "1vq3cw37knnd0afw3rcjzh71i2l01v5m4ysinrrqdvnn2ql0z60v"))))
9221 (build-system cargo-build-system)
9222 (arguments '(#:skip-build? #t))
9223 (home-page "https://github.com/rust-lang/futures-rs")
9224 (synopsis "Implementation of zero-cost futures in Rust")
9225 (description "An implementation of @code{futures} and @code{streams}
9226 featuring zero allocations, composability, and iterator-like interfaces.")
9227 (license (list license:asl2.0
9228 license:expat))))
9229
9230 (define-public rust-futures-channel-0.3
9231 (package
9232 (name "rust-futures-channel")
9233 (version "0.3.1")
9234 (source
9235 (origin
9236 (method url-fetch)
9237 (uri (crate-uri "futures-channel" version))
9238 (file-name
9239 (string-append name "-" version ".tar.gz"))
9240 (sha256
9241 (base32
9242 "11lvk749n61654ad40xn751gmxzwb697nwh36s5gs0ni2z59ibpw"))))
9243 (build-system cargo-build-system)
9244 (arguments
9245 `(#:tests? #f
9246 #:cargo-inputs
9247 (("rust-futures-core" ,rust-futures-core-0.3)
9248 ("rust-futures-sink" ,rust-futures-sink-0.3))))
9249 (home-page "https://rust-lang-nursery.github.io/futures-rs")
9250 (synopsis "Channels for asynchronous communication using futures-rs")
9251 (description
9252 "Channels for asynchronous communication using futures-rs.")
9253 (license (list license:expat license:asl2.0))))
9254
9255 (define-public rust-futures-channel-preview-0.3
9256 (package
9257 (name "rust-futures-channel-preview")
9258 (version "0.3.0-alpha.17")
9259 (source
9260 (origin
9261 (method url-fetch)
9262 (uri (crate-uri "futures-channel-preview" version))
9263 (file-name
9264 (string-append name "-" version ".tar.gz"))
9265 (sha256
9266 (base32
9267 "1blgpikhw391lzrfqcgg4xsn5xc0dlybni77ka7f0vb08zaixir1"))))
9268 (build-system cargo-build-system)
9269 (arguments
9270 `(#:skip-build? #t
9271 #:cargo-inputs
9272 (("rust-futures-core-preview" ,rust-futures-core-preview-0.3))))
9273 (home-page "https://rust-lang.github.io/futures-rs/")
9274 (synopsis
9275 "Channels for asynchronous communication using futures-rs")
9276 (description
9277 "Channels for asynchronous communication using futures-rs.")
9278 (license (list license:expat license:asl2.0))))
9279
9280 (define-public rust-futures-core-0.3
9281 (package
9282 (name "rust-futures-core")
9283 (version "0.3.1")
9284 (source
9285 (origin
9286 (method url-fetch)
9287 (uri (crate-uri "futures-core" version))
9288 (file-name
9289 (string-append name "-" version ".tar.gz"))
9290 (sha256
9291 (base32
9292 "0rh8q6pg08dizk5hwksvjgvkw26s3sr3b199nggv3ypyg914qmkr"))))
9293 (build-system cargo-build-system)
9294 (arguments '(#:tests? #f))
9295 (home-page "https://rust-lang-nursery.github.io/futures-rs")
9296 (synopsis "Core traits and types in for the `futures` library")
9297 (description "This package provides the core traits and types in for the
9298 @code{futures} library.")
9299 (license (list license:expat license:asl2.0))))
9300
9301 (define-public rust-futures-core-preview-0.3
9302 (package
9303 (name "rust-futures-core-preview")
9304 (version "0.3.0-alpha.17")
9305 (source
9306 (origin
9307 (method url-fetch)
9308 (uri (crate-uri "futures-core-preview" version))
9309 (file-name (string-append name "-" version ".crate"))
9310 (sha256
9311 (base32
9312 "1xaq8m609k6cz8xydwhwp8xxyxigabcw1w9ngycfy0bnkg7iq52b"))))
9313 (build-system cargo-build-system)
9314 (arguments '(#:tests? #f))
9315 (home-page "https://rust-lang-nursery.github.io/futures-rs/")
9316 (synopsis "Core traits and types in for the @code{futures} library.")
9317 (description "This crate provides the core traits and types in for the
9318 @code{futures} library.")
9319 (license (list license:asl2.0
9320 license:expat))))
9321
9322 (define-public rust-futures-cpupool-0.1
9323 (package
9324 (name "rust-futures-cpupool")
9325 (version "0.1.8")
9326 (source
9327 (origin
9328 (method url-fetch)
9329 (uri (crate-uri "futures-cpupool" version))
9330 (file-name (string-append name "-" version ".crate"))
9331 (sha256
9332 (base32
9333 "1r32456gpblzfvnkf60545v8acqk7gh5zhyhi1jn669k9gicv45b"))))
9334 (build-system cargo-build-system)
9335 (arguments
9336 `(#:cargo-inputs
9337 (("rust-futures" ,rust-futures-0.1)
9338 ("rust-num-cpus" ,rust-num-cpus-1))))
9339 (home-page "https://github.com/rust-lang-nursery/futures-rs")
9340 (synopsis "Implementation of thread pools which hand out futures")
9341 (description
9342 "An implementation of thread pools which hand out futures to the results of
9343 the computation on the threads themselves.")
9344 (license (list license:asl2.0
9345 license:expat))))
9346
9347 (define-public rust-futures-executor-0.3
9348 (package
9349 (name "rust-futures-executor")
9350 (version "0.3.1")
9351 (source
9352 (origin
9353 (method url-fetch)
9354 (uri (crate-uri "futures-executor" version))
9355 (file-name
9356 (string-append name "-" version ".tar.gz"))
9357 (sha256
9358 (base32
9359 "0cf24wbgxqh4kdjbb557vk1axzmbpmwb8s05ga1nls1zaqv4f9qy"))))
9360 (build-system cargo-build-system)
9361 (arguments
9362 `(#:tests? #f
9363 #:cargo-inputs
9364 (("rust-futures-core" ,rust-futures-core-0.3)
9365 ("rust-futures-task" ,rust-futures-task-0.3)
9366 ("rust-futures-util" ,rust-futures-util-0.3)
9367 ("rust-num-cpus" ,rust-num-cpus-1))))
9368 (home-page "https://rust-lang-nursery.github.io/futures-rs")
9369 (synopsis "Executors for asynchronous tasks based on the futures-rs library")
9370 (description
9371 "This package provides executors for asynchronous tasks based on the
9372 @code{futures-rs} library.")
9373 (license (list license:expat license:asl2.0))))
9374
9375 (define-public rust-futures-executor-preview-0.3
9376 (package
9377 (name "rust-futures-executor-preview")
9378 (version "0.3.0-alpha.17")
9379 (source
9380 (origin
9381 (method url-fetch)
9382 (uri (crate-uri "futures-executor-preview" version))
9383 (file-name
9384 (string-append name "-" version ".tar.gz"))
9385 (sha256
9386 (base32
9387 "053g5kf2qa1xhdkwp3d1grrizzy4683mpbb3y0vvm00hwl7jdfl7"))))
9388 (build-system cargo-build-system)
9389 (arguments
9390 `(#:skip-build? #t
9391 #:cargo-inputs
9392 (("rust-futures-channel-preview" ,rust-futures-channel-preview-0.3)
9393 ("rust-futures-core-preview" ,rust-futures-core-preview-0.3)
9394 ("rust-futures-util-preview" ,rust-futures-util-preview-0.3)
9395 ("rust-num-cpus" ,rust-num-cpus-1)
9396 ("rust-pin-utils" ,rust-pin-utils-0.1))))
9397 (home-page "https://github.com/rust-lang/futures-rs")
9398 (synopsis
9399 "Executors for asynchronous tasks based on futures-rs")
9400 (description
9401 "Executors for asynchronous tasks based on the futures-rs
9402 library.")
9403 (license (list license:expat license:asl2.0))))
9404
9405 (define-public rust-futures-io-0.3
9406 (package
9407 (name "rust-futures-io")
9408 (version "0.3.1")
9409 (source
9410 (origin
9411 (method url-fetch)
9412 (uri (crate-uri "futures-io" version))
9413 (file-name
9414 (string-append name "-" version ".tar.gz"))
9415 (sha256
9416 (base32
9417 "1zxm41fmkrb0r39ajk3rr9invcd5bdwlafazn8m9aw4y49ymfxp6"))))
9418 (build-system cargo-build-system)
9419 (home-page "https://rust-lang-nursery.github.io/futures-rs")
9420 (synopsis
9421 "`AsyncRead` and `AsyncWrite` traits for the futures-rs library")
9422 (description
9423 "This package provides the @code{AsyncRead} and @code{AsyncWrite} traits
9424 for the futures-rs library.")
9425 (license (list license:expat license:asl2.0))))
9426
9427 (define-public rust-futures-io-preview-0.3
9428 (package
9429 (name "rust-futures-io-preview")
9430 (version "0.3.0-alpha.17")
9431 (source
9432 (origin
9433 (method url-fetch)
9434 (uri (crate-uri "futures-io-preview" version))
9435 (file-name (string-append name "-" version ".crate"))
9436 (sha256
9437 (base32
9438 "0fhvwhdb8ywjjbfng0ra1r8yyc9yzpyxg9sv3spb3f7w0lk40bh8"))))
9439 (build-system cargo-build-system)
9440 (home-page "https://rust-lang-nursery.github.io/futures-rs/")
9441 (synopsis "Async read and write traits for the futures library")
9442 (description "This crate provides the @code{AsyncRead} and
9443 @code{AsyncWrite} traits for the @code{futures-rs} library.")
9444 (license (list license:asl2.0
9445 license:expat))))
9446
9447 (define-public rust-futures-macro-0.3
9448 (package
9449 (name "rust-futures-macro")
9450 (version "0.3.1")
9451 (source
9452 (origin
9453 (method url-fetch)
9454 (uri (crate-uri "futures-macro" version))
9455 (file-name
9456 (string-append name "-" version ".tar.gz"))
9457 (sha256
9458 (base32
9459 "0r3px32wgqfbmfyb1lrj9wplvjris5magdyhfr7xnyjk2mncbrsj"))))
9460 (build-system cargo-build-system)
9461 (arguments
9462 `(#:cargo-inputs
9463 (("rust-proc-macro-hack" ,rust-proc-macro-hack-0.5)
9464 ("rust-proc-macro2" ,rust-proc-macro2-1)
9465 ("rust-quote" ,rust-quote-1)
9466 ("rust-syn" ,rust-syn-1))))
9467 (home-page "https://rust-lang-nursery.github.io/futures-rs")
9468 (synopsis "Futures-rs procedural macro implementations")
9469 (description
9470 "This package provides the @code{futures-rs} procedural macro implementations.")
9471 (license (list license:expat license:asl2.0))))
9472
9473 (define-public rust-futures-preview-0.3
9474 (package
9475 (name "rust-futures-preview")
9476 (version "0.3.0-alpha.17")
9477 (source
9478 (origin
9479 (method url-fetch)
9480 (uri (crate-uri "futures-preview" version))
9481 (file-name
9482 (string-append name "-" version ".tar.gz"))
9483 (sha256
9484 (base32
9485 "0rsq8d1ciyg37i5ysd9dynwmklwy4sx466z9a72687wsi8fgj9dz"))))
9486 (build-system cargo-build-system)
9487 (arguments
9488 `(#:tests? #f
9489 #:cargo-inputs
9490 (("rust-futures-channel-preview" ,rust-futures-channel-preview-0.3)
9491 ("rust-futures-core-preview" ,rust-futures-core-preview-0.3)
9492 ("rust-futures-executor-preview" ,rust-futures-executor-preview-0.3)
9493 ("rust-futures-io-preview" ,rust-futures-io-preview-0.3)
9494 ("rust-futures-sink-preview" ,rust-futures-sink-preview-0.3)
9495 ("rust-futures-util-preview" ,rust-futures-util-preview-0.3))))
9496 (home-page "https://rust-lang-nursery.github.io/futures-rs")
9497 (synopsis "An implementation of futures and streams")
9498 (description
9499 "An implementation of futures and streams featuring zero allocations,
9500 composability, and iterator-like interfaces.")
9501 (license (list license:expat license:asl2.0))))
9502
9503 (define-public rust-futures-select-macro-preview-0.3
9504 (package
9505 (name "rust-futures-select-macro-preview")
9506 (version "0.3.0-alpha.17")
9507 (source
9508 (origin
9509 (method url-fetch)
9510 (uri (crate-uri "futures-select-macro-preview" version))
9511 (file-name
9512 (string-append name "-" version ".tar.gz"))
9513 (sha256
9514 (base32
9515 "1a90ivjzkgz7msiz5si05xzi8xwsk5gar1gkrbmrgqpgkliqd7a6"))))
9516 (build-system cargo-build-system)
9517 (arguments
9518 `(#:cargo-inputs
9519 (("rust-proc-macro-hack" ,rust-proc-macro-hack-0.5)
9520 ("rust-proc-macro2" ,rust-proc-macro2-0.4)
9521 ("rust-quote" ,rust-quote-0.6)
9522 ("rust-syn" ,rust-syn-0.15))))
9523 (home-page "https://github.com/rust-lang/futures-rs")
9524 (synopsis
9525 "Handle the first Future to complete")
9526 (description
9527 "The @code{select!} macro for waiting on multiple different
9528 @code{Future}s at once and handling the first one to complete.")
9529 (license (list license:expat license:asl2.0))))
9530
9531 (define-public rust-futures-sink-0.3
9532 (package
9533 (name "rust-futures-sink")
9534 (version "0.3.1")
9535 (source
9536 (origin
9537 (method url-fetch)
9538 (uri (crate-uri "futures-sink" version))
9539 (file-name
9540 (string-append name "-" version ".tar.gz"))
9541 (sha256
9542 (base32
9543 "05iwskzxq3yqvxv9l1kqnd7kkmp0dwc39fnvwrcjsg76z8zf66qp"))))
9544 (build-system cargo-build-system)
9545 (home-page "https://rust-lang-nursery.github.io/futures-rs")
9546 (synopsis "Asynchronous `Sink` trait for the futures-rs library")
9547 (description "This package provides the asynchronous @code{Sink} trait for
9548 the futures-rs library.")
9549 (license (list license:expat license:asl2.0))))
9550
9551 (define-public rust-futures-sink-preview-0.3
9552 (package
9553 (name "rust-futures-sink-preview")
9554 (version "0.3.0-alpha.17")
9555 (source
9556 (origin
9557 (method url-fetch)
9558 (uri (crate-uri "futures-sink-preview" version))
9559 (file-name (string-append name "-" version ".crate"))
9560 (sha256
9561 (base32
9562 "1r4d0gy73hdxkh5g1lrhl1kjnwp6mywjgcj70v0z78b921da42a3"))))
9563 (build-system cargo-build-system)
9564 (arguments
9565 `(#:cargo-inputs
9566 (("rust-futures-core-preview" ,rust-futures-core-preview-0.3))))
9567 (home-page "https://rust-lang-nursery.github.io/futures-rs/")
9568 (synopsis "Asynchronous `Sink` trait for the futures-rs library")
9569 (description
9570 "This package provides the asynchronous @code{Sink} trait for the
9571 futures-rs library.")
9572 (license (list license:asl2.0
9573 license:expat))))
9574
9575 (define-public rust-futures-task-0.3
9576 (package
9577 (name "rust-futures-task")
9578 (version "0.3.1")
9579 (source
9580 (origin
9581 (method url-fetch)
9582 (uri (crate-uri "futures-task" version))
9583 (file-name
9584 (string-append name "-" version ".tar.gz"))
9585 (sha256
9586 (base32
9587 "1yg5d7b3z58mhqbrax5a0qdsfvzfclwyqvw5k3i41x4wnbb55bhb"))))
9588 (build-system cargo-build-system)
9589 (arguments '(#:tests? #f))
9590 (home-page "https://rust-lang-nursery.github.io/futures-rs")
9591 (synopsis "Tools for working with tasks")
9592 (description "Tools for working with tasks.")
9593 (license (list license:expat license:asl2.0))))
9594
9595 (define-public rust-futures-test-0.3
9596 (package
9597 (name "rust-futures-test")
9598 (version "0.3.5")
9599 (source
9600 (origin
9601 (method url-fetch)
9602 (uri (crate-uri "futures-test" version))
9603 (file-name (string-append name "-" version ".tar.gz"))
9604 (sha256
9605 (base32
9606 "0v9r2mmgdbm0x4gppd5jzf4rss7439ivkqwi604m0r2il3zap6ci"))))
9607 (build-system cargo-build-system)
9608 (arguments
9609 `(#:cargo-inputs
9610 (("rust-futures-core" ,rust-futures-core-0.3)
9611 ("rust-futures-executor" ,rust-futures-executor-0.3)
9612 ("rust-futures-io" ,rust-futures-io-0.3)
9613 ("rust-futures-task" ,rust-futures-task-0.3)
9614 ("rust-futures-util" ,rust-futures-util-0.3)
9615 ("rust-once-cell" ,rust-once-cell-1)
9616 ("rust-pin-utils" ,rust-pin-utils-0.1))))
9617 (home-page "https://rust-lang.github.io/futures-rs")
9618 (synopsis "Test components built off futures-rs")
9619 (description "This package provides common utilities for testing
9620 components built off futures-rs.")
9621 (license (list license:expat license:asl2.0))))
9622
9623 (define-public rust-futures-timer-0.1
9624 (package
9625 (name "rust-futures-timer")
9626 (version "0.1.1")
9627 (source
9628 (origin
9629 (method url-fetch)
9630 (uri (crate-uri "futures-timer" version))
9631 (file-name (string-append name "-" version ".tar.gz"))
9632 (sha256
9633 (base32 "0hw0nlyrq5an6l6y8md1rg6r380zrddvmh9cg0h64xfwnvlxzkm5"))))
9634 (build-system cargo-build-system)
9635 (arguments
9636 `(#:cargo-inputs (("rust-futures" ,rust-futures-0.1))))
9637 (home-page "https://github.com/async-rs/futures-timer")
9638 (synopsis "Timeouts for futures")
9639 (description "Timeouts for futures.")
9640 (license (list license:expat license:asl2.0))))
9641
9642 (define-public rust-futures-util-0.3
9643 (package
9644 (name "rust-futures-util")
9645 (version "0.3.1")
9646 (source
9647 (origin
9648 (method url-fetch)
9649 (uri (crate-uri "futures-util" version))
9650 (file-name
9651 (string-append name "-" version ".tar.gz"))
9652 (sha256
9653 (base32
9654 "0xlyqdn6lnpkw27lwxczihx91h64gbdd31n8c8y5v63nzds65mn0"))))
9655 (build-system cargo-build-system)
9656 (arguments
9657 `(#:cargo-inputs
9658 (("rust-futures" ,rust-futures-0.1)
9659 ("rust-futures-channel" ,rust-futures-channel-0.3)
9660 ("rust-futures-core" ,rust-futures-core-0.3)
9661 ("rust-futures-io" ,rust-futures-io-0.3)
9662 ("rust-futures-macro" ,rust-futures-macro-0.3)
9663 ("rust-futures-sink" ,rust-futures-sink-0.3)
9664 ("rust-futures-task" ,rust-futures-task-0.3)
9665 ("rust-memchr" ,rust-memchr-2)
9666 ("rust-pin-utils" ,rust-pin-utils-0.1)
9667 ("rust-proc-macro-hack" ,rust-proc-macro-hack-0.5)
9668 ("rust-proc-macro-nested" ,rust-proc-macro-nested-0.1)
9669 ("rust-slab" ,rust-slab-0.4)
9670 ("rust-tokio-io" ,rust-tokio-io-0.1))))
9671 (home-page "https://rust-lang-nursery.github.io/futures-rs")
9672 (synopsis "Common utilities and extension traits for the futures-rs library")
9673 (description "This package provides common utilities and extension traits
9674 for the futures-rs library.")
9675 (license (list license:expat license:asl2.0))))
9676
9677 (define-public rust-futures-util-preview-0.3
9678 (package
9679 (name "rust-futures-util-preview")
9680 (version "0.3.0-alpha.17")
9681 (source
9682 (origin
9683 (method url-fetch)
9684 (uri (crate-uri "futures-util-preview" version))
9685 (file-name
9686 (string-append name "-" version ".tar.gz"))
9687 (sha256
9688 (base32
9689 "0kizm86wgr5qldyavskfi0r1msg6m4x2pkj0d4r04br2ig29i0dg"))))
9690 (build-system cargo-build-system)
9691 (arguments
9692 `(#:tests? #f
9693 #:cargo-inputs
9694 (("rust-futures" ,rust-futures-0.1)
9695 ("rust-futures-channel-preview" ,rust-futures-channel-preview-0.3)
9696 ("rust-futures-core-preview" ,rust-futures-core-preview-0.3)
9697 ("rust-futures-io-preview" ,rust-futures-io-preview-0.3)
9698 ("rust-futures-select-macro-preview"
9699 ,rust-futures-select-macro-preview-0.3)
9700 ("rust-futures-sink-preview" ,rust-futures-sink-preview-0.3)
9701 ("rust-memchr" ,rust-memchr-2)
9702 ("rust-pin-utils" ,rust-pin-utils-0.1)
9703 ("rust-proc-macro-hack" ,rust-proc-macro-hack-0.5)
9704 ("rust-proc-macro-nested" ,rust-proc-macro-nested-0.1)
9705 ("rust-rand" ,rust-rand-0.7)
9706 ("rust-slab" ,rust-slab-0.4)
9707 ("rust-tokio-io" ,rust-tokio-io-0.1))))
9708 (home-page "https://github.com/rust-lang/futures-rs")
9709 (synopsis
9710 "Utilities and extension traits for futures-rs library")
9711 (description
9712 "Common utilities and extension traits for the futures-rs
9713 library.")
9714 (license (list license:expat license:asl2.0))))
9715
9716 (define-public rust-fxhash-0.2
9717 (package
9718 (name "rust-fxhash")
9719 (version "0.2.1")
9720 (source
9721 (origin
9722 (method url-fetch)
9723 (uri (crate-uri "fxhash" version))
9724 (file-name
9725 (string-append name "-" version ".tar.gz"))
9726 (sha256
9727 (base32
9728 "037mb9ichariqi45xm6mz0b11pa92gj38ba0409z3iz239sns6y3"))))
9729 (build-system cargo-build-system)
9730 (arguments
9731 `(#:cargo-inputs
9732 (("rust-byteorder" ,rust-byteorder-1))
9733 #:cargo-development-inputs
9734 (("rust-fnv" ,rust-fnv-1)
9735 ("rust-seahash" ,rust-seahash-3))))
9736 (home-page "https://github.com/cbreeden/fxhash")
9737 (synopsis "Hashing algorithm from hasher used in FireFox and Rustc")
9738 (description
9739 "This package provides a fast, non-secure, hashing algorithm
9740 derived from an internal hasher used in FireFox and Rustc.")
9741 (license (list license:asl2.0 license:expat))))
9742
9743 (define-public rust-gcc-0.3
9744 (package
9745 (name "rust-gcc")
9746 (version "0.3.55")
9747 (source
9748 (origin
9749 (method url-fetch)
9750 (uri (crate-uri "gcc" version))
9751 (file-name (string-append name "-" version ".tar.gz"))
9752 (sha256
9753 (base32
9754 "1hng1sajn4r67hndvhjysswz8niayjwvcj42zphpxzhbz89kjpwg"))))
9755 (build-system cargo-build-system)
9756 (arguments
9757 `(#:tests? #f ; gcc-test folder missing from release tarball.
9758 #:cargo-inputs
9759 (("rust-rayon" ,rust-rayon-0.8))
9760 #:cargo-development-inputs
9761 (("rust-tempdir" ,rust-tempdir-0.3))))
9762 (home-page "https://github.com/alexcrichton/cc-rs")
9763 (synopsis "Library to compile C/C++ code into a Rust library/application")
9764 (description
9765 "This package provides a build-time dependency for Cargo build scripts to
9766 assist in invoking the native C compiler to compile native C code into a static
9767 archive to be linked into Rustcode.")
9768 (license (list license:asl2.0
9769 license:expat))))
9770
9771 (define-public rust-gdi32-sys-0.2
9772 (package
9773 (name "rust-gdi32-sys")
9774 (version "0.2.0")
9775 (source
9776 (origin
9777 (method url-fetch)
9778 (uri (crate-uri "gdi32-sys" version))
9779 (file-name
9780 (string-append name "-" version ".tar.gz"))
9781 (sha256
9782 (base32
9783 "0605d4ngjsspghwjv4jicajich1gnl0aik9f880ajjzjixd524h9"))))
9784 (build-system cargo-build-system)
9785 (arguments
9786 `(#:skip-build? #t
9787 #:cargo-inputs
9788 (("rust-winapi" ,rust-winapi-0.2)
9789 ("rust-winapi-build" ,rust-winapi-build-0.1))))
9790 (home-page "https://github.com/retep998/winapi-rs")
9791 (synopsis "Function definitions for the Windows API library gdi32")
9792 (description "This package contains function definitions for the Windows
9793 API library @code{gdi32}.")
9794 (license license:expat)))
9795
9796 (define-public rust-generator-0.6
9797 (package
9798 (name "rust-generator")
9799 (version "0.6.20")
9800 (source
9801 (origin
9802 (method url-fetch)
9803 (uri (crate-uri "generator" version))
9804 (file-name
9805 (string-append name "-" version ".tar.gz"))
9806 (sha256
9807 (base32
9808 "0f07mwkarwrqrykhkzqpvfnd5crz20dd8l24psn01kiqzc71dana"))))
9809 (build-system cargo-build-system)
9810 (arguments
9811 `(#:cargo-inputs
9812 (("rust-libc" ,rust-libc-0.2)
9813 ("rust-log" ,rust-log-0.4)
9814 ("rust-winapi" ,rust-winapi-0.3)
9815 ("rust-cc" ,rust-cc-1)
9816 ("rust-rustc-version" ,rust-rustc-version-0.2))))
9817 (home-page "https://github.com/Xudong-Huang/generator-rs")
9818 (synopsis "Stackfull Generator Library in Rust")
9819 (description "Stackfull Generator Library in Rust.")
9820 (license (list license:asl2.0 license:expat))))
9821
9822 (define-public rust-generic-array-0.14
9823 (package
9824 (name "rust-generic-array")
9825 (version "0.14.2")
9826 (source
9827 (origin
9828 (method url-fetch)
9829 (uri (crate-uri "generic-array" version))
9830 (file-name
9831 (string-append name "-" version ".tar.gz"))
9832 (sha256
9833 (base32
9834 "107r1fpm8zcab3lzci4x9par6ik8bra390c60rhxvnmz7dgnlx5c"))))
9835 (build-system cargo-build-system)
9836 (arguments
9837 `(#:cargo-inputs
9838 (("rust-serde" ,rust-serde-1)
9839 ("rust-typenum" ,rust-typenum-1)
9840 ("rust-version-check" ,rust-version-check-0.9))
9841 #:cargo-development-inputs
9842 (("rust-bincode" ,rust-bincode-1)
9843 ("rust-serde-json" ,rust-serde-json-1))))
9844 (home-page "https://github.com/fizyk20/generic-array.git")
9845 (synopsis
9846 "Generic types implementing functionality of arrays")
9847 (description
9848 "Generic types implementing functionality of arrays.")
9849 (license license:expat)))
9850
9851 (define-public rust-generic-array-0.13
9852 (package
9853 (inherit rust-generic-array-0.14)
9854 (name "rust-generic-array")
9855 (version "0.13.2")
9856 (source
9857 (origin
9858 (method url-fetch)
9859 (uri (crate-uri "generic-array" version))
9860 (file-name
9861 (string-append name "-" version ".tar.gz"))
9862 (sha256
9863 (base32
9864 "1kddwxpd58y807y1r3lijg7sw3gxm6nczl6wp57gamhv6mhygl8f"))))
9865 (arguments
9866 `(#:cargo-inputs
9867 (("rust-serde" ,rust-serde-1)
9868 ("rust-typenum" ,rust-typenum-1))
9869 #:cargo-development-inputs
9870 (("rust-bincode" ,rust-bincode-1)
9871 ("rust-serde-json" ,rust-serde-json-1))))))
9872
9873 (define-public rust-generic-array-0.12
9874 (package
9875 (inherit rust-generic-array-0.13)
9876 (name "rust-generic-array")
9877 (version "0.12.3")
9878 (source
9879 (origin
9880 (method url-fetch)
9881 (uri (crate-uri "generic-array" version))
9882 (file-name
9883 (string-append name "-" version ".tar.gz"))
9884 (sha256
9885 (base32
9886 "1v5jg7djicq34nbiv1dwaki71gkny002wyy9qfn3y0hfmrs053y6"))))))
9887
9888 (define-public rust-generic-array-0.8
9889 (package
9890 (inherit rust-generic-array-0.12)
9891 (name "rust-generic-array")
9892 (version "0.8.3")
9893 (source
9894 (origin
9895 (method url-fetch)
9896 (uri (crate-uri "generic-array" version))
9897 (file-name (string-append name "-" version ".tar.gz"))
9898 (sha256
9899 (base32
9900 "1wi6rlx3dmrvl26yxm4z5n68kyj2ikk4nllk1kazw2ik9scnkszw"))))
9901 (arguments
9902 `(#:cargo-inputs
9903 (("rust-nodrop" ,rust-nodrop-0.1)
9904 ("rust-serde" ,rust-serde-1)
9905 ("rust-typenum" ,rust-typenum-1))
9906 #:cargo-development-inputs
9907 (("rust-serde-json" ,rust-serde-json-1))))))
9908
9909 (define-public rust-genmesh-0.6
9910 (package
9911 (name "rust-genmesh")
9912 (version "0.6.2")
9913 (source
9914 (origin
9915 (method url-fetch)
9916 (uri (crate-uri "genmesh" version))
9917 (file-name
9918 (string-append name "-" version ".tar.gz"))
9919 (sha256
9920 (base32
9921 "17qybydyblf3hjiw7mq181jpi4vrbb8dmsj0wi347r8k0m354g89"))))
9922 (build-system cargo-build-system)
9923 (arguments
9924 `(#:cargo-inputs
9925 (("rust-cgmath" ,rust-cgmath-0.16)
9926 ("rust-mint" ,rust-mint-0.5))))
9927 (home-page "https://github.com/gfx-rs/genmesh")
9928 (synopsis "Package for generating 3D meshes")
9929 (description
9930 "This package provides a package for generating 3D meshes/")
9931 (license license:asl2.0)))
9932
9933 (define-public rust-getch-0.2
9934 (package
9935 (name "rust-getch")
9936 (version "0.2.1")
9937 (source
9938 (origin
9939 (method url-fetch)
9940 (uri (crate-uri "getch" version))
9941 (file-name
9942 (string-append name "-" version ".tar.gz"))
9943 (sha256
9944 (base32
9945 "00in8q95qi8a5q3zn2zcaqp5avj79f5myd2a4zfdy2m24ycvbc5v"))))
9946 (build-system cargo-build-system)
9947 (arguments
9948 `(#:cargo-inputs
9949 (("rust-libc" ,rust-libc-0.2)
9950 ("rust-termios" ,rust-termios-0.2))))
9951 (home-page "https://nest.pijul.com/pijul_org/getch")
9952 (synopsis "Portable implementation of getch")
9953 (description
9954 "This package provides a portable implementation of getch, using
9955 @code{_getch} on Windows, and @code{termios} on Unix.")
9956 (license license:asl2.0)))
9957
9958 (define-public rust-getopts-0.2
9959 (package
9960 (name "rust-getopts")
9961 (version "0.2.21")
9962 (source
9963 (origin
9964 (method url-fetch)
9965 (uri (crate-uri "getopts" version))
9966 (file-name (string-append name "-" version ".crate"))
9967 (sha256
9968 (base32
9969 "1mgb3qvivi26gs6ihqqhh8iyhp3vgxri6vwyrwg28w0xqzavznql"))))
9970 (build-system cargo-build-system)
9971 (arguments
9972 `(#:cargo-inputs
9973 (("rust-unicode-width" ,rust-unicode-width-0.1)
9974 ("rust-rustc-std-workspace-core" ,rust-rustc-std-workspace-core-1)
9975 ("rust-rustc-std-workspace-std" ,rust-rustc-std-workspace-std-1.0))
9976 #:cargo-development-inputs
9977 (("rust-log" ,rust-log-0.3))))
9978 (home-page "https://github.com/rust-lang/getopts")
9979 (synopsis "Rust library for option parsing for CLI utilities")
9980 (description "This library provides getopts-like option parsing.")
9981 (license (list license:asl2.0
9982 license:expat))))
9983
9984 (define-public rust-getrandom-0.1
9985 (package
9986 (name "rust-getrandom")
9987 (version "0.1.14")
9988 (source
9989 (origin
9990 (method url-fetch)
9991 (uri (crate-uri "getrandom" version))
9992 (file-name
9993 (string-append name "-" version ".tar.gz"))
9994 (sha256
9995 (base32
9996 "1sq30li71h19rhnhs1h6576ja68insajx8wvh1nn088r8pc8vg3s"))))
9997 (build-system cargo-build-system)
9998 (arguments
9999 `(#:skip-build? #t
10000 #:cargo-inputs
10001 (("rust-cfg-if" ,rust-cfg-if-0.1)
10002 ("rust-compiler-builtins" ,rust-compiler-builtins-0.1)
10003 ("rust-wasm-bindgen" ,rust-wasm-bindgen-0.2)
10004 ("rust-libc" ,rust-libc-0.2)
10005 ("rust-log" ,rust-log-0.4)
10006 ("rust-stdweb" ,rust-stdweb-0.4)
10007 ("rust-wasi" ,rust-wasi-0.9)
10008 ("rust-rustc-std-workspace-core" ,rust-rustc-std-workspace-core-1))))
10009 (home-page "https://github.com/rust-random/getrandom")
10010 (synopsis "Retrieve random data from system source")
10011 (description
10012 "This package provides a small cross-platform library for
10013 retrieving random data from system source.")
10014 (license (list license:expat license:asl2.0))))
10015
10016 (define-public rust-gettext-rs-0.5
10017 (package
10018 (name "rust-gettext-rs")
10019 (version "0.5.0")
10020 (source
10021 (origin
10022 (method url-fetch)
10023 (uri (crate-uri "gettext-rs" version))
10024 (file-name
10025 (string-append name "-" version ".tar.gz"))
10026 (sha256
10027 (base32
10028 "1qc9a63i54b9ad3jx951hn7xb6xf76c9f3hmi2cdy2m7rhczm58v"))))
10029 (build-system cargo-build-system)
10030 (arguments
10031 `(#:cargo-inputs
10032 (("rust-gettext-sys" ,rust-gettext-sys-0.19)
10033 ("rust-locale-config" ,rust-locale-config-0.3))))
10034 (inputs
10035 `(("gettext" ,gettext-minimal)))
10036 (home-page "https://github.com/Koka/gettext-rs")
10037 (synopsis "GNU Gettext FFI binding for Rust")
10038 (description "This package provides GNU Gettext FFI bindings for Rust.")
10039 (license license:expat)))
10040
10041 (define-public rust-gettext-rs-0.4
10042 (package
10043 (inherit rust-gettext-rs-0.5)
10044 (name "rust-gettext-rs")
10045 (version "0.4.4")
10046 (source
10047 (origin
10048 (method url-fetch)
10049 (uri (crate-uri "gettext-rs" version))
10050 (file-name
10051 (string-append name "-" version ".tar.gz"))
10052 (sha256
10053 (base32
10054 "0z6fcsn1g3w9mlgfj6ln6qvqf8610w3zwvk6g062h657v114lifz"))))
10055 (arguments
10056 `(#:cargo-inputs
10057 (("rust-gettext-sys" ,rust-gettext-sys-0.19)
10058 ("rust-locale-config" ,rust-locale-config-0.2))))))
10059
10060 (define-public rust-gettext-sys-0.19
10061 (package
10062 (name "rust-gettext-sys")
10063 (version "0.19.9")
10064 (source
10065 (origin
10066 (method url-fetch)
10067 (uri (crate-uri "gettext-sys" version))
10068 (file-name
10069 (string-append name "-" version ".tar.gz"))
10070 (sha256
10071 (base32
10072 "0lzi6ja81vc16mhcdmn3lw35120n9ijhvsy5dh5775mpbfxc8d70"))
10073 (modules '((guix build utils)))
10074 (snippet
10075 '(begin (delete-file "gettext-0.19.8.1.tar.xz") #t))))
10076 (build-system cargo-build-system)
10077 (arguments
10078 `(#:cargo-inputs
10079 (("rust-cc" ,rust-cc-1))))
10080 (inputs
10081 `(("gettext" ,gettext-minimal)))
10082 (home-page "https://github.com/Koka/gettext-rs")
10083 (synopsis "Gettext raw FFI bindings")
10084 (description "This package provides raw FFI bindings for GNU Gettext.")
10085 (license license:expat)))
10086
10087 (define-public rust-gfa-0.6
10088 (package
10089 (name "rust-gfa")
10090 (version "0.6.2")
10091 (source
10092 (origin
10093 (method url-fetch)
10094 (uri (crate-uri "gfa" version))
10095 (file-name
10096 (string-append name "-" version ".tar.gz"))
10097 (sha256
10098 (base32
10099 "0ghmy4r0324s6vvmj9nmh326346nkwm7nybnpcpswnjvf02b85gw"))))
10100 (build-system cargo-build-system)
10101 (arguments
10102 `(#:cargo-inputs
10103 (("rust-bstr" ,rust-bstr-0.2)
10104 ("rust-bytemuck" ,rust-bytemuck-1)
10105 ("rust-lazy-static" ,rust-lazy-static-1)
10106 ("rust-nom" ,rust-nom-5)
10107 ("rust-regex" ,rust-regex-1)
10108 ("rust-serde" ,rust-serde-1))
10109 #:cargo-development-inputs
10110 (("rust-criterion" ,rust-criterion-0.3))))
10111 (home-page "https://github.com/chfi/rs-gfa")
10112 (synopsis "Library for graphs in the GFA (Graphical Fragment Assembly) format")
10113 (description
10114 "This package provides a library for working with graphs in the
10115 @acronym{GFA, Graphical Fragment Assembly} format.")
10116 (license license:expat)))
10117
10118 (define-public rust-ghash-0.3
10119 (package
10120 (name "rust-ghash")
10121 (version "0.3.0")
10122 (source
10123 (origin
10124 (method url-fetch)
10125 (uri (crate-uri "ghash" version))
10126 (file-name (string-append name "-" version ".tar.gz"))
10127 (sha256
10128 (base32
10129 "0c957q9sk1q93pqqfvhcmflfm1zvbr14aznfpm25kqd6i437zqnn"))))
10130 (build-system cargo-build-system)
10131 (arguments
10132 `(#:cargo-inputs
10133 (("rust-polyval" ,rust-polyval-0.4)
10134 ("rust-zeroize" ,rust-zeroize-1))
10135 #:cargo-development-inputs
10136 (("rust-hex-literal" ,rust-hex-literal-0.1))))
10137 (home-page "https://github.com/RustCrypto/universal-hashes")
10138 (synopsis "Universal hash over GF(2^128)")
10139 (description "This package provides a universal hash over GF(2^128) useful
10140 for constructing a Message Authentication Code (MAC), as in the AES-GCM
10141 authenticated encryption cipher.")
10142 (license (list license:expat license:asl2.0))))
10143
10144 (define-public rust-gimli-0.20
10145 (package
10146 (name "rust-gimli")
10147 (version "0.20.0")
10148 (source
10149 (origin
10150 (method url-fetch)
10151 (uri (crate-uri "gimli" version))
10152 (file-name
10153 (string-append name "-" version ".tar.gz"))
10154 (sha256
10155 (base32
10156 "0cz6wg1niwfqf0mk28igsdnsm92cs57cai9jpzdmvw6hma863pc1"))))
10157 (build-system cargo-build-system)
10158 (arguments
10159 `(#:skip-build? #t
10160 #:cargo-inputs
10161 (("rust-fallible-iterator"
10162 ,rust-fallible-iterator-0.2)
10163 ("rust-arrayvec" ,rust-arrayvec-0.5)
10164 ("rust-stable-deref-trait"
10165 ,rust-stable-deref-trait-1)
10166 ("rust-smallvec" ,rust-smallvec-1)
10167 ("rust-indexmap" ,rust-indexmap-1)
10168 ("rust-byteorder" ,rust-byteorder-1))))
10169 (home-page "https://github.com/gimli-rs/gimli")
10170 (synopsis "Library for reading and writing the DWARF debugging format")
10171 (description
10172 "This package provides a library for reading and writing the DWARF debugging format.")
10173 (license (list license:asl2.0 license:expat))))
10174
10175 (define-public rust-gimli-0.18
10176 (package
10177 (name "rust-gimli")
10178 (version "0.18.0")
10179 (source
10180 (origin
10181 (method url-fetch)
10182 (uri (crate-uri "gimli" version))
10183 (file-name
10184 (string-append name "-" version ".tar.gz"))
10185 (sha256
10186 (base32
10187 "0ma1zg2klqr47rasm7jn3zzd1j1pj2a8wkfbv5zsx10qh43phy4k"))))
10188 (build-system cargo-build-system)
10189 (arguments
10190 `(#:cargo-inputs
10191 (("rust-arrayvec" ,rust-arrayvec-0.4)
10192 ("rust-byteorder" ,rust-byteorder-1)
10193 ("rust-fallible-iterator" ,rust-fallible-iterator-0.2)
10194 ("rust-indexmap" ,rust-indexmap-1)
10195 ("rust-stable-deref-trait" ,rust-stable-deref-trait-1))
10196 #:cargo-development-inputs
10197 (("rust-crossbeam" ,rust-crossbeam-0.7)
10198 ("rust-getopts" ,rust-getopts-0.2)
10199 ("rust-memmap" ,rust-memmap-0.7)
10200 ("rust-num-cpus" ,rust-num-cpus-1)
10201 ("rust-object" ,rust-object-0.12)
10202 ("rust-rayon" ,rust-rayon-1)
10203 ("rust-regex" ,rust-regex-1)
10204 ("rust-test-assembler" ,rust-test-assembler-0.1)
10205 ("rust-typed-arena" ,rust-typed-arena-1.4))))
10206 (home-page "https://github.com/gimli-rs/gimli")
10207 (synopsis "Reading and writing the DWARF debugging format")
10208 (description
10209 "This package provides a library for reading and writing the
10210 DWARF debugging format.")
10211 (license (list license:asl2.0 license:expat))))
10212
10213 (define-public rust-git2-0.11
10214 (package
10215 (name "rust-git2")
10216 (version "0.11.0")
10217 (source
10218 (origin
10219 (method url-fetch)
10220 (uri (crate-uri "git2" version))
10221 (file-name
10222 (string-append name "-" version ".tar.gz"))
10223 (sha256
10224 (base32
10225 "1i0fgsr91r97hsjbgqnymkcyiyg0057m7m04116k3vmyqpvrwlbp"))))
10226 (build-system cargo-build-system)
10227 (arguments
10228 `(#:cargo-inputs
10229 (("rust-bitflags" ,rust-bitflags-1)
10230 ("rust-libc" ,rust-libc-0.2)
10231 ("rust-libgit2-sys" ,rust-libgit2-sys-0.10)
10232 ("rust-log" ,rust-log-0.4)
10233 ("rust-openssl-probe" ,rust-openssl-probe-0.1)
10234 ("rust-openssl-sys" ,rust-openssl-sys-0.9)
10235 ("rust-url" ,rust-url-2))
10236 #:cargo-development-inputs
10237 (("rust-docopt" ,rust-docopt-1.1)
10238 ("rust-serde" ,rust-serde-1)
10239 ("rust-serde-derive" ,rust-serde-derive-1)
10240 ("rust-tempfile" ,rust-tempfile-3)
10241 ("rust-thread-id" ,rust-thread-id-3)
10242 ("rust-time" ,rust-time-0.1))))
10243 (native-inputs
10244 `(("pkg-config" ,pkg-config)))
10245 (inputs
10246 `(("libgit2" ,libgit2)
10247 ("libssh2" ,libssh2)
10248 ("openssl" ,openssl)
10249 ("zlib" ,zlib)))
10250 (home-page "https://github.com/rust-lang/git2-rs")
10251 (synopsis "Rust bindings to libgit2")
10252 (description
10253 "Bindings to libgit2 for interoperating with git repositories.
10254 This library is both threadsafe and memory safe and allows both
10255 reading and writing git repositories.")
10256 (license (list license:asl2.0 license:expat))))
10257
10258 (define-public rust-git2-0.9
10259 (package
10260 (inherit rust-git2-0.11)
10261 (name "rust-git2")
10262 (version "0.9.1")
10263 (source
10264 (origin
10265 (method url-fetch)
10266 (uri (crate-uri "git2" version))
10267 (file-name
10268 (string-append name "-" version ".tar.gz"))
10269 (sha256
10270 (base32
10271 "0cayf5w7wkvclvs8brbi7lyfxbdklwls9s49mpf2brl655yjwjwj"))))
10272 (arguments
10273 `(#:cargo-inputs
10274 (("rust-bitflags" ,rust-bitflags-1)
10275 ("rust-libc" ,rust-libc-0.2)
10276 ("rust-libgit2-sys" ,rust-libgit2-sys-0.8)
10277 ("rust-log" ,rust-log-0.4)
10278 ("rust-openssl-probe" ,rust-openssl-probe-0.1)
10279 ("rust-openssl-sys" ,rust-openssl-sys-0.9)
10280 ("rust-url" ,rust-url-1))
10281 #:cargo-development-inputs
10282 (("rust-docopt" ,rust-docopt-1.1)
10283 ("rust-serde" ,rust-serde-1)
10284 ("rust-serde-derive" ,rust-serde-derive-1)
10285 ("rust-tempdir" ,rust-tempdir-0.3)
10286 ("rust-thread-id" ,rust-thread-id-3)
10287 ("rust-time" ,rust-time-0.1))))))
10288
10289 (define-public rust-glium-0.25
10290 (package
10291 (name "rust-glium")
10292 (version "0.25.1")
10293 (source
10294 (origin
10295 (method url-fetch)
10296 (uri (crate-uri "glium" version))
10297 (file-name
10298 (string-append name "-" version ".tar.gz"))
10299 (sha256
10300 (base32
10301 "0mhjly07x10lxg802ppg16wbxddhh4fdnlg10i99qwpfamvqhzbd"))))
10302 (build-system cargo-build-system)
10303 (arguments
10304 `(#:cargo-inputs
10305 (("rust-backtrace" ,rust-backtrace-0.3)
10306 ("rust-fnv" ,rust-fnv-1)
10307 ("rust-glutin" ,rust-glutin-0.21)
10308 ("rust-lazy-static" ,rust-lazy-static-1)
10309 ("rust-smallvec" ,rust-smallvec-0.6)
10310 ("rust-takeable-option" ,rust-takeable-option-0.4))
10311 #:cargo-development-inputs
10312 (("rust-cgmath" ,rust-cgmath-0.17)
10313 ("rust-genmesh" ,rust-genmesh-0.6)
10314 ("rust-gl-generator" ,rust-gl-generator-0.11)
10315 ("rust-image" ,rust-image-0.21)
10316 ("rust-obj" ,rust-obj-0.9)
10317 ("rust-rand" ,rust-rand-0.6))))
10318 (home-page "https://github.com/glium/glium")
10319 (synopsis
10320 "OpenGL wrapper")
10321 (description
10322 "Glium is an intermediate layer between OpenGL and your application. You
10323 still need to manually handle the graphics pipeline, but without having to use
10324 OpenGL's old and error-prone API.")
10325 (license license:asl2.0)))
10326
10327 (define-public rust-glob-0.3
10328 (package
10329 (name "rust-glob")
10330 (version "0.3.0")
10331 (source
10332 (origin
10333 (method url-fetch)
10334 (uri (crate-uri "glob" version))
10335 (file-name (string-append name "-" version ".crate"))
10336 (sha256
10337 (base32
10338 "0x25wfr7vg3mzxc9x05dcphvd3nwlcmbnxrvwcvrrdwplcrrk4cv"))))
10339 (build-system cargo-build-system)
10340 (arguments
10341 `(#:tests? #f
10342 #:cargo-development-inputs
10343 (("rust-tempdir" ,rust-tempdir-0.3))))
10344 (home-page "https://github.com/rust-lang-nursery/glob")
10345 (synopsis "Match file paths against Unix shell style patterns")
10346 (description
10347 "This package provides support for matching file paths against Unix
10348 shell style patterns.")
10349 (license (list license:asl2.0
10350 license:expat))))
10351
10352 (define-public rust-glob-0.2
10353 (package
10354 (inherit rust-glob-0.3)
10355 (name "rust-glob")
10356 (version "0.2.11")
10357 (source
10358 (origin
10359 (method url-fetch)
10360 (uri (crate-uri "glob" version))
10361 (file-name (string-append name "-" version ".crate"))
10362 (sha256
10363 (base32
10364 "1ysvi72slkw784fcsymgj4308c3y03gwjjzqxp80xdjnkbh8vqcb"))))))
10365
10366 (define-public rust-globset-0.4
10367 (package
10368 (name "rust-globset")
10369 (version "0.4.5")
10370 (source
10371 (origin
10372 (method url-fetch)
10373 (uri (crate-uri "globset" version))
10374 (file-name
10375 (string-append name "-" version ".tar.gz"))
10376 (sha256
10377 (base32
10378 "0841ihdg1ps2618cs0kjbr3pn3rzrj24rx3n4pg1sa6p1d1xmlbs"))))
10379 (build-system cargo-build-system)
10380 (arguments
10381 `(#:cargo-inputs
10382 (("rust-aho-corasick" ,rust-aho-corasick-0.7)
10383 ("rust-bstr" ,rust-bstr-0.2)
10384 ("rust-fnv" ,rust-fnv-1)
10385 ("rust-log" ,rust-log-0.4)
10386 ("rust-regex" ,rust-regex-1)
10387 ("rust-serde" ,rust-serde-1))
10388 #:cargo-development-inputs
10389 (("rust-glob" ,rust-glob-0.3)
10390 ("rust-lazy-static" ,rust-lazy-static-1)
10391 ("rust-serde-json" ,rust-serde-json-1))))
10392 (home-page
10393 "https://github.com/BurntSushi/ripgrep/tree/master/globset")
10394 (synopsis
10395 "Cross platform single glob and glob set matching")
10396 (description
10397 "Cross platform single glob and glob set matching. Glob set matching is
10398 the process of matching one or more glob patterns against a single candidate
10399 path simultaneously, and returning all of the globs that matched.")
10400 (license (list license:expat license:unlicense))))
10401
10402 (define-public rust-globwalk-0.8
10403 (package
10404 (name "rust-globwalk")
10405 (version "0.8.0")
10406 (source
10407 (origin
10408 (method url-fetch)
10409 (uri (crate-uri "globwalk" version))
10410 (file-name (string-append name "-" version ".tar.gz"))
10411 (sha256
10412 (base32
10413 "0ihld70ngnri1qd8sd61099yfzcl6iqn17rfa102q1bl6ck710hp"))))
10414 (build-system cargo-build-system)
10415 (arguments
10416 `(#:cargo-inputs
10417 (("rust-bitflags" ,rust-bitflags-1)
10418 ("rust-ignore" ,rust-ignore-0.4)
10419 ("rust-walkdir" ,rust-walkdir-2))
10420 #:cargo-development-inputs
10421 (("rust-backtrace" ,rust-backtrace-0.3.35)
10422 ("rust-docmatic" ,rust-docmatic-0.1)
10423 ("rust-tempdir" ,rust-tempdir-0.3))))
10424 (home-page "https://github.com/gilnaa/globwalk")
10425 (synopsis "Glob-matched recursive file system walking")
10426 (description "This package provides glob-matched recursive file system
10427 walking. Based on both @code{rust-walkdir} and @code{rust-ignore}, this crate
10428 inherits many goodies from both, such as limiting search depth and amount of
10429 open file descriptors.")
10430 (license license:expat)))
10431
10432 (define-public rust-globwalk-0.5
10433 (package
10434 (inherit rust-globwalk-0.8)
10435 (name "rust-globwalk")
10436 (version "0.5.0")
10437 (source
10438 (origin
10439 (method url-fetch)
10440 (uri (crate-uri "globwalk" version))
10441 (file-name
10442 (string-append name "-" version ".tar.gz"))
10443 (sha256
10444 (base32
10445 "09axyql26s09z60sgi3y3lkin9swy2b5km3b0v6mm84xhlljxyl9"))))
10446 (arguments
10447 `(#:cargo-inputs
10448 (("rust-ignore" ,rust-ignore-0.4)
10449 ("rust-walkdir" ,rust-walkdir-2))
10450 #:cargo-development-inputs
10451 (("rust-docmatic" ,rust-docmatic-0.1)
10452 ("rust-tempdir" ,rust-tempdir-0.3))))))
10453
10454 (define-public rust-goblin-0.2
10455 (package
10456 (name "rust-goblin")
10457 (version "0.2.1")
10458 (source
10459 (origin
10460 (method url-fetch)
10461 (uri (crate-uri "goblin" version))
10462 (file-name
10463 (string-append name "-" version ".tar.gz"))
10464 (sha256
10465 (base32
10466 "1j38fkqadbsjxawr3wnj9m0qaihcwp6pmfakmhsar881509y7mfx"))))
10467 (build-system cargo-build-system)
10468 (arguments
10469 `(#:skip-build? #t
10470 #:cargo-inputs
10471 (("rust-scroll" ,rust-scroll-0.10)
10472 ("rust-plain" ,rust-plain-0.2)
10473 ("rust-log" ,rust-log-0.4))))
10474 (home-page "https://github.com/m4b/goblin")
10475 (synopsis "ELF, Mach-o, and PE binary parsing and loading crate")
10476 (description "This package provides an ELF, Mach-o, and PE binary parsing
10477 and loading crate.")
10478 (license license:expat)))
10479
10480 (define-public rust-goblin-0.1
10481 (package
10482 (inherit rust-goblin-0.2)
10483 (name "rust-goblin")
10484 (version "0.1.3")
10485 (source
10486 (origin
10487 (method url-fetch)
10488 (uri (crate-uri "goblin" version))
10489 (file-name
10490 (string-append name "-" version ".tar.gz"))
10491 (sha256
10492 (base32
10493 "1nn0aa2jf207gbyccxnrzm7n217di025z5y1ybblp7nkk11j309h"))))
10494 (arguments
10495 `(#:skip-build? #t
10496 #:cargo-inputs
10497 (("rust-scroll" ,rust-scroll-0.10)
10498 ("rust-plain" ,rust-plain-0.2)
10499 ("rust-log" ,rust-log-0.4))))))
10500
10501 (define-public rust-goblin-0.0
10502 (package
10503 (name "rust-goblin")
10504 (version "0.0.23")
10505 (source
10506 (origin
10507 (method url-fetch)
10508 (uri (crate-uri "goblin" version))
10509 (file-name
10510 (string-append name "-" version ".tar.gz"))
10511 (sha256
10512 (base32
10513 "1g92bl76dgc3v3rins61l811pkwsl3jif1x35h2jx33b7dsv8mmc"))))
10514 (build-system cargo-build-system)
10515 (arguments
10516 `(#:skip-build? #t
10517 #:cargo-inputs
10518 (("rust-log" ,rust-log-0.4)
10519 ("rust-plain" ,rust-plain-0.2)
10520 ("rust-scroll" ,rust-scroll-0.9))))
10521 (home-page "https://github.com/m4b/goblin")
10522 (synopsis "Binary parsing and loading")
10523 (description
10524 "An impish, cross-platform, ELF, Mach-o, and PE binary parsing and
10525 loading crate.")
10526 (license license:expat)))
10527
10528 (define-public rust-grep-0.2
10529 (package
10530 (name "rust-grep")
10531 (version "0.2.7")
10532 (source
10533 (origin
10534 (method url-fetch)
10535 (uri (crate-uri "grep" version))
10536 (file-name
10537 (string-append name "-" version ".tar.gz"))
10538 (sha256
10539 (base32
10540 "0s3y1rx94swqnciz2zzifm8pmy2iyck270skgxhgkq7ab6x96bjq"))))
10541 (build-system cargo-build-system)
10542 (arguments
10543 `(#:skip-build? #t
10544 #:cargo-inputs
10545 (("rust-grep-cli" ,rust-grep-cli-0.1)
10546 ("rust-grep-matcher" ,rust-grep-matcher-0.1)
10547 ("rust-grep-pcre2" ,rust-grep-pcre2-0.1)
10548 ("rust-grep-printer" ,rust-grep-printer-0.1)
10549 ("rust-grep-regex" ,rust-grep-regex-0.1)
10550 ("rust-grep-searcher" ,rust-grep-searcher-0.1))
10551 #:cargo-development-inputs
10552 (("rust-termcolor" ,rust-termcolor-1)
10553 ("rust-walkdir" ,rust-walkdir-2))))
10554 (home-page "https://github.com/BurntSushi/ripgrep")
10555 (synopsis "Line oriented regex searching as a library")
10556 (description
10557 "Fast line oriented regex searching as a library.")
10558 (license (list license:unlicense license:expat))))
10559
10560 (define-public rust-grep-cli-0.1
10561 (package
10562 (name "rust-grep-cli")
10563 (version "0.1.5")
10564 (source
10565 (origin
10566 (method url-fetch)
10567 (uri (crate-uri "grep-cli" version))
10568 (file-name
10569 (string-append name "-" version ".tar.gz"))
10570 (sha256
10571 (base32
10572 "10mi7pkvlm5r478jhwlx15wlmqylq9fmkdg4qazz1xcifx7pi4im"))))
10573 (build-system cargo-build-system)
10574 (arguments
10575 `(#:cargo-inputs
10576 (("rust-atty" ,rust-atty-0.2)
10577 ("rust-bstr" ,rust-bstr-0.2)
10578 ("rust-globset" ,rust-globset-0.4)
10579 ("rust-lazy-static" ,rust-lazy-static-1)
10580 ("rust-log" ,rust-log-0.4)
10581 ("rust-regex" ,rust-regex-1)
10582 ("rust-same-file" ,rust-same-file-1.0)
10583 ("rust-termcolor" ,rust-termcolor-1)
10584 ("rust-winapi-util" ,rust-winapi-util-0.1))))
10585 (home-page
10586 "https://github.com/BurntSushi/ripgrep")
10587 (synopsis
10588 "Utilities for search oriented command line applications")
10589 (description
10590 "Utilities for search oriented command line applications.")
10591 (license license:expat)))
10592
10593 (define-public rust-grep-matcher-0.1
10594 (package
10595 (name "rust-grep-matcher")
10596 (version "0.1.4")
10597 (source
10598 (origin
10599 (method url-fetch)
10600 (uri (crate-uri "grep-matcher" version))
10601 (file-name
10602 (string-append name "-" version ".tar.gz"))
10603 (sha256
10604 (base32
10605 "0l4k9c0iw17vqw02z0wbx1nfj9h2xiiqx1px32lhhw7ibbyy3w7x"))))
10606 (build-system cargo-build-system)
10607 (arguments
10608 `(#:cargo-inputs
10609 (("rust-memchr" ,rust-memchr-2))
10610 #:cargo-development-inputs
10611 (("rust-regex" ,rust-regex-1))))
10612 (home-page "https://github.com/BurntSushi/ripgrep")
10613 (synopsis "Trait for regular expressions")
10614 (description
10615 "This crate provides a low level interface for describing regular
10616 expression matchers. The @code{grep} crate uses this interface in order to make
10617 the regex engine it uses pluggable.")
10618 (license (list license:expat license:unlicense))))
10619
10620 (define-public rust-grep-pcre2-0.1
10621 (package
10622 (name "rust-grep-pcre2")
10623 (version "0.1.4")
10624 (source
10625 (origin
10626 (method url-fetch)
10627 (uri (crate-uri "grep-pcre2" version))
10628 (file-name
10629 (string-append name "-" version ".tar.gz"))
10630 (sha256
10631 (base32
10632 "0sk8b188j81zfrmmy7jsq0pckydz42qf7w0pd2lwyfsa2nw4yksb"))))
10633 (build-system cargo-build-system)
10634 (arguments
10635 `(#:cargo-inputs
10636 (("rust-grep-matcher" ,rust-grep-matcher-0.1)
10637 ("rust-pcre2" ,rust-pcre2-0.2))))
10638 (native-inputs
10639 `(("pcre2" ,pcre2)
10640 ("pkg-config" ,pkg-config)))
10641 (home-page
10642 "https://github.com/BurntSushi/ripgrep")
10643 (synopsis "Use PCRE2 with the grep crate")
10644 (description "Use PCRE2 with the grep crate.")
10645 (license (list license:expat license:unlicense))))
10646
10647 (define-public rust-grep-printer-0.1
10648 (package
10649 (name "rust-grep-printer")
10650 (version "0.1.5")
10651 (source
10652 (origin
10653 (method url-fetch)
10654 (uri (crate-uri "grep-printer" version))
10655 (file-name
10656 (string-append name "-" version ".tar.gz"))
10657 (sha256
10658 (base32
10659 "004xv2bb52x801n0m1pknkdmzcjbi9fk9625m49y9s0ghh6d8d3z"))))
10660 (build-system cargo-build-system)
10661 (arguments
10662 `(#:cargo-inputs
10663 (("rust-base64" ,rust-base64-0.12)
10664 ("rust-bstr" ,rust-bstr-0.2)
10665 ("rust-grep-matcher" ,rust-grep-matcher-0.1)
10666 ("rust-grep-searcher" ,rust-grep-searcher-0.1)
10667 ("rust-serde" ,rust-serde-1)
10668 ("rust-serde-derive" ,rust-serde-derive-1)
10669 ("rust-serde-json" ,rust-serde-json-1)
10670 ("rust-termcolor" ,rust-termcolor-1))
10671 #:cargo-development-inputs
10672 (("rust-grep-regex" ,rust-grep-regex-0.1))))
10673 (home-page "https://github.com/BurntSushi/ripgrep")
10674 (synopsis "Standard printing of search results")
10675 (description
10676 "An implementation of the grep crate's Sink trait that provides
10677 standard printing of search results, similar to grep itself.")
10678 (license (list license:unlicense license:expat))))
10679
10680 (define-public rust-grep-regex-0.1
10681 (package
10682 (name "rust-grep-regex")
10683 (version "0.1.8")
10684 (source
10685 (origin
10686 (method url-fetch)
10687 (uri (crate-uri "grep-regex" version))
10688 (file-name
10689 (string-append name "-" version ".tar.gz"))
10690 (sha256
10691 (base32
10692 "1lm3mpp93m8qw6sgcqw64inadp0z061x3xb0pnn51684594mxfm7"))))
10693 (build-system cargo-build-system)
10694 (arguments
10695 `(#:cargo-inputs
10696 (("rust-aho-corasick" ,rust-aho-corasick-0.7)
10697 ("rust-bstr" ,rust-bstr-0.2)
10698 ("rust-grep-matcher" ,rust-grep-matcher-0.1)
10699 ("rust-log" ,rust-log-0.4)
10700 ("rust-regex" ,rust-regex-1)
10701 ("rust-regex-syntax" ,rust-regex-syntax-0.6)
10702 ("rust-thread-local" ,rust-thread-local-1.0))))
10703 (home-page "https://github.com/BurntSushi/ripgrep")
10704 (synopsis "Use Rust's regex library with the grep crate")
10705 (description
10706 "Use Rust's regex library with the grep crate.")
10707 (license (list license:unlicense license:expat))))
10708
10709 (define-public rust-grep-searcher-0.1
10710 (package
10711 (name "rust-grep-searcher")
10712 (version "0.1.7")
10713 (source
10714 (origin
10715 (method url-fetch)
10716 (uri (crate-uri "grep-searcher" version))
10717 (file-name
10718 (string-append name "-" version ".tar.gz"))
10719 (sha256
10720 (base32
10721 "06sb8n7nvaa4dnqnsx9jxvs78nnzmyp110cyzdvxnw09i4h7728r"))))
10722 (build-system cargo-build-system)
10723 (arguments
10724 `(#:cargo-inputs
10725 (("rust-bstr" ,rust-bstr-0.2)
10726 ("rust-bytecount" ,rust-bytecount-0.6)
10727 ("rust-encoding-rs" ,rust-encoding-rs-0.8)
10728 ("rust-encoding-rs-io" ,rust-encoding-rs-io-0.1)
10729 ("rust-grep-matcher" ,rust-grep-matcher-0.1)
10730 ("rust-log" ,rust-log-0.4)
10731 ("rust-memmap" ,rust-memmap-0.7))
10732 #:cargo-development-inputs
10733 (("rust-grep-regex" ,rust-grep-regex-0.1)
10734 ("rust-regex" ,rust-regex-1))))
10735 (home-page "https://github.com/BurntSushi/ripgrep")
10736 (synopsis "Line oriented regex searching as a library")
10737 (description
10738 "Fast line oriented regex searching as a library.")
10739 (license (list license:unlicense license:expat))))
10740
10741 (define-public rust-gzip-header-0.3
10742 (package
10743 (name "rust-gzip-header")
10744 (version "0.3.0")
10745 (source
10746 (origin
10747 (method url-fetch)
10748 (uri (crate-uri "gzip-header" version))
10749 (file-name
10750 (string-append name "-" version ".tar.gz"))
10751 (sha256
10752 (base32
10753 "0fg6vm8sgsm69szwqyz7abfbyziv6pv0jkcailimlamvsfrzwc81"))))
10754 (build-system cargo-build-system)
10755 (arguments
10756 `(#:cargo-inputs
10757 (("rust-crc32fast" ,rust-crc32fast-1))))
10758 (home-page "https://github.com/oyvindln/gzip-header")
10759 (synopsis "Decoding and encoding the header part of gzip files")
10760 (description
10761 "This package provides a crate for decoding and encoding the header part
10762 of gzip files based on the gzip header implementation in the @code{flate2} crate.")
10763 (license (list license:expat license:asl2.0))))
10764
10765 (define-public rust-h2-0.2
10766 (package
10767 (name "rust-h2")
10768 (version "0.2.6")
10769 (source
10770 (origin
10771 (method url-fetch)
10772 (uri (crate-uri "h2" version))
10773 (file-name (string-append name "-" version ".tar.gz"))
10774 (sha256
10775 (base32
10776 "0lvdrzn43iikl521dlrb7z96lsmy7l6nnm35ylf00q7dmq5rwgwr"))))
10777 (build-system cargo-build-system)
10778 (arguments
10779 `(#:cargo-inputs
10780 (("rust-bytes" ,rust-bytes-0.5)
10781 ("rust-fnv" ,rust-fnv-1)
10782 ("rust-futures-core" ,rust-futures-core-0.3)
10783 ("rust-futures-sink" ,rust-futures-sink-0.3)
10784 ("rust-futures-util" ,rust-futures-util-0.3)
10785 ("rust-http" ,rust-http-0.2)
10786 ("rust-indexmap" ,rust-indexmap-1)
10787 ("rust-slab" ,rust-slab-0.4)
10788 ("rust-tokio" ,rust-tokio-0.2)
10789 ("rust-tokio-util" ,rust-tokio-util-0.3)
10790 ("rust-tracing" ,rust-tracing-0.1))
10791 #:cargo-development-inputs
10792 (("rust-env-logger" ,rust-env-logger-0.5)
10793 ("rust-hex" ,rust-hex-0.2)
10794 ("rust-quickcheck" ,rust-quickcheck-0.4)
10795 ("rust-rand" ,rust-rand-0.3)
10796 ("rust-rustls" ,rust-rustls-0.16)
10797 ("rust-serde" ,rust-serde-1)
10798 ("rust-serde-json" ,rust-serde-json-1)
10799 ("rust-tokio" ,rust-tokio-0.2)
10800 ("rust-tokio-rustls" ,rust-tokio-rustls-0.12)
10801 ("rust-walkdir" ,rust-walkdir-1)
10802 ("rust-webpki" ,rust-webpki-0.21)
10803 ("rust-webpki-roots" ,rust-webpki-roots-0.17))))
10804 (home-page "https://github.com/hyperium/h2")
10805 (synopsis "HTTP/2.0 client and server")
10806 (description "This package provides an HTTP/2.0 client and server.")
10807 (license license:expat)))
10808
10809 (define-public rust-h2-0.1
10810 (package
10811 (inherit rust-h2-0.2)
10812 (name "rust-h2")
10813 (version "0.1.26")
10814 (source
10815 (origin
10816 (method url-fetch)
10817 (uri (crate-uri "h2" version))
10818 (file-name (string-append name "-" version ".tar.gz"))
10819 (sha256
10820 (base32 "0qn457y8xh03p7c7cpk76r22gqpyqxc58g5022j3iya7d0j4rcx5"))))
10821 (arguments
10822 `(#:skip-build? #t ;; TODO missing indirect dependency
10823 #:cargo-inputs
10824 (("rust-byteorder" ,rust-byteorder-1)
10825 ("rust-bytes" ,rust-bytes-0.4)
10826 ("rust-fnv" ,rust-fnv-1)
10827 ("rust-futures" ,rust-futures-0.1)
10828 ("rust-http" ,rust-http-0.1)
10829 ("rust-indexmap" ,rust-indexmap-1)
10830 ("rust-log" ,rust-log-0.4)
10831 ("rust-slab" ,rust-slab-0.4)
10832 ("rust-string" ,rust-string-0.2)
10833 ("rust-tokio-io" ,rust-tokio-io-0.1))
10834 #:cargo-development-inputs
10835 (("rust-env-logger" ,rust-env-logger-0.5)
10836 ("rust-hex" ,rust-hex-0.2)
10837 ("rust-quickcheck" ,rust-quickcheck-0.4)
10838 ("rust-rand" ,rust-rand-0.3)
10839 ;;("rust-rustls" ,rust-rustls-0.12) requires 0.5
10840 ("rust-serde" ,rust-serde-1)
10841 ("rust-serde-json" ,rust-serde-json-1)
10842 ("rust-tokio" ,rust-tokio-0.1)
10843 ("rust-tokio-rustls" ,rust-tokio-rustls-0.12)
10844 ("rust-walkdir" ,rust-walkdir-1)
10845 ("rust-webpki" ,rust-webpki-0.21)
10846 ("rust-webpki-roots" ,rust-webpki-roots-0.17))))))
10847
10848 (define-public rust-half-1
10849 (package
10850 (name "rust-half")
10851 (version "1.6.0")
10852 (source
10853 (origin
10854 (method url-fetch)
10855 (uri (crate-uri "half" version))
10856 (file-name
10857 (string-append name "-" version ".tar.gz"))
10858 (sha256
10859 (base32
10860 "0xq1qkbfwnxv72b2fakgi5ai0j8arw38whwxgxs3rp1fz28anvyk"))))
10861 (build-system cargo-build-system)
10862 (arguments
10863 `(#:cargo-inputs
10864 (("rust-serde" ,rust-serde-1))
10865 #:cargo-development-inputs
10866 (("rust-criterion" ,rust-criterion-0.3)
10867 ("rust-quickcheck" ,rust-quickcheck-0.9)
10868 ("rust-quickcheck-macros" ,rust-quickcheck-macros-0.9)
10869 ("rust-rand" ,rust-rand-0.7)
10870 ("rust-version-sync" ,rust-version-sync-0.8))))
10871 (home-page "https://github.com/starkat99/half-rs")
10872 (synopsis "Half-precision floating point f16 type")
10873 (description
10874 "Half-precision floating point f16 type for Rust implementing the
10875 IEEE 754-2008 binary16 type.")
10876 (license (list license:expat license:asl2.0))))
10877
10878 (define-public rust-handlebars-2.0
10879 (package
10880 (name "rust-handlebars")
10881 (version "2.0.4")
10882 (source
10883 (origin
10884 (method url-fetch)
10885 (uri (crate-uri "handlebars" version))
10886 (file-name
10887 (string-append name "-" version ".tar.gz"))
10888 (sha256
10889 (base32
10890 "1m99gwjd7q7q79bk4f716wsdvcyhsrcsq4vbzcavbkmc48d194mg"))))
10891 (build-system cargo-build-system)
10892 (arguments
10893 `(#:skip-build? #t
10894 #:cargo-inputs
10895 (("rust-hashbrown" ,rust-hashbrown-0.5)
10896 ("rust-log" ,rust-log-0.4)
10897 ("rust-pest" ,rust-pest-2)
10898 ("rust-pest-derive" ,rust-pest-derive-2)
10899 ("rust-quick-error" ,rust-quick-error-1.2)
10900 ("rust-serde" ,rust-serde-1)
10901 ("rust-serde-json" ,rust-serde-json-1)
10902 ("rust-walkdir" ,rust-walkdir-2))
10903 #:cargo-development-inputs
10904 (("rust-criterion" ,rust-criterion-0.2)
10905 ("rust-env-logger" ,rust-env-logger-0.6)
10906 ("rust-maplit" ,rust-maplit-1.0)
10907 ("rust-serde-derive" ,rust-serde-derive-1)
10908 ("rust-tempfile" ,rust-tempfile-3))))
10909 (home-page "https://github.com/sunng87/handlebars-rust")
10910 (synopsis "Handlebars templating implemented in Rust")
10911 (description
10912 "This package provides handlebars templating implemented in Rust. It is
10913 the template engine that renders the official Rust website")
10914 (license license:expat)))
10915
10916 (define-public rust-hash32-0.1
10917 (package
10918 (name "rust-hash32")
10919 (version "0.1.1")
10920 (source
10921 (origin
10922 (method url-fetch)
10923 (uri (crate-uri "hash32" version))
10924 (file-name (string-append name "-" version ".tar.gz"))
10925 (sha256
10926 (base32
10927 "1k7lv7hsbzv14pz90cxay6v7avh6d6kcrra0rsc45b33dvw1l16l"))))
10928 (build-system cargo-build-system)
10929 (arguments
10930 `(#:cargo-inputs
10931 (("rust-byteorder" ,rust-byteorder-1))
10932 #:cargo-development-inputs
10933 (("rust-hash32-derive" ,rust-hash32-derive-0.1))))
10934 (home-page "https://github.com/japaric/hash32")
10935 (synopsis "32-bit hashing machinery")
10936 (description "This package provides 32-bit hashing machinery.")
10937 (license (list license:expat license:asl2.0))))
10938
10939 (define-public rust-hash32-derive-0.1
10940 (package
10941 (name "rust-hash32-derive")
10942 (version "0.1.0")
10943 (source
10944 (origin
10945 (method url-fetch)
10946 (uri (crate-uri "hash32-derive" version))
10947 (file-name (string-append name "-" version ".tar.gz"))
10948 (sha256
10949 (base32
10950 "18lrlxycq45kaz0l688shxnhgh3ryjp3zn0n6vfcs5sa2nyyzh7b"))))
10951 (build-system cargo-build-system)
10952 (arguments
10953 `(#:cargo-inputs
10954 (("rust-proc-macro2" ,rust-proc-macro2-0.3)
10955 ("rust-quote" ,rust-quote-0.5)
10956 ("rust-syn" ,rust-syn-0.13))))
10957 (home-page "https://github.com/japaric/hash32")
10958 (synopsis "Macros 1.1 implementation of @code{#[derive(Hash32)]}")
10959 (description "This package provides a macros 1.1 implementation of
10960 @code{#[derive(Hash32)]}.")
10961 (license (list license:expat license:asl2.0))))
10962
10963 (define-public rust-hashbrown-0.8
10964 (package
10965 (name "rust-hashbrown")
10966 (version "0.8.0")
10967 (source
10968 (origin
10969 (method url-fetch)
10970 (uri (crate-uri "hashbrown" version))
10971 (file-name (string-append name "-" version ".tar.gz"))
10972 (sha256
10973 (base32
10974 "09y86zmf59n6ys9yf2bvg9ckwwa1ijv2i3flkz45iqkwfmh7i6xb"))))
10975 (build-system cargo-build-system)
10976 (arguments
10977 `(#:cargo-inputs
10978 (("rust-ahash" ,rust-ahash-0.3)
10979 ("rust-compiler-builtins" ,rust-compiler-builtins-0.1)
10980 ("rust-rayon" ,rust-rayon-1)
10981 ("rust-rustc-std-workspace-alloc" ,rust-rustc-std-workspace-alloc-1)
10982 ("rust-rustc-std-workspace-core" ,rust-rustc-std-workspace-core-1)
10983 ("rust-serde" ,rust-serde-1))
10984 #:cargo-development-inputs
10985 (("rust-doc-comment" ,rust-doc-comment-0.3)
10986 ("rust-lazy-static" ,rust-lazy-static-1)
10987 ("rust-rand" ,rust-rand-0.7)
10988 ("rust-rayon" ,rust-rayon-1)
10989 ("rust-rustc-hash" ,rust-rustc-hash-1.0)
10990 ("rust-serde-test" ,rust-serde-test-1))))
10991 (home-page "https://github.com/rust-lang/hashbrown")
10992 (synopsis "Rust port of Google's SwissTable hash map")
10993 (description "This package provides a Rust port of Google's SwissTable
10994 hash map.")
10995 (license (list license:asl2.0 license:expat))))
10996
10997 (define-public rust-hashbrown-0.5
10998 (package
10999 (inherit rust-hashbrown-0.8)
11000 (name "rust-hashbrown")
11001 (version "0.5.0")
11002 (source
11003 (origin
11004 (method url-fetch)
11005 (uri (crate-uri "hashbrown" version))
11006 (file-name
11007 (string-append name "-" version ".tar.gz"))
11008 (sha256
11009 (base32
11010 "0lr3gsicplw7czapsscmii87hgzpvxf5ch92v7pi95xsipxl3pp1"))))
11011 (arguments
11012 `(#:skip-build? #t
11013 #:cargo-inputs
11014 (("rust-compiler-builtins" ,rust-compiler-builtins-0.1)
11015 ("rust-rayon" ,rust-rayon-1)
11016 ("rust-rustc-std-workspace-alloc" ,rust-rustc-std-workspace-alloc-1)
11017 ("rust-rustc-std-workspace-core" ,rust-rustc-std-workspace-core-1)
11018 ("rust-serde" ,rust-serde-1))
11019 #:cargo-development-inputs
11020 (("rust-lazy-static" ,rust-lazy-static-1)
11021 ("rust-rand" ,rust-rand-0.5)
11022 ("rust-rayon" ,rust-rayon-1)
11023 ("rust-rustc-hash" ,rust-rustc-hash-1)
11024 ("rust-serde-test" ,rust-serde-test-1))))))
11025
11026 (define-public rust-heapless-0.5
11027 (package
11028 (name "rust-heapless")
11029 (version "0.5.5")
11030 (source
11031 (origin
11032 (method url-fetch)
11033 (uri (crate-uri "heapless" version))
11034 (file-name (string-append name "-" version ".tar.gz"))
11035 (sha256
11036 (base32
11037 "1h1d6s1f9zn0rz2vkdn0b42kcnkmlpd90yhfyqqhpirv38ws5a3k"))))
11038 (build-system cargo-build-system)
11039 (arguments
11040 `(#:cargo-inputs
11041 (("rust-as-slice" ,rust-as-slice-0.1)
11042 ("rust-generic-array" ,rust-generic-array-0.13)
11043 ("rust-hash32" ,rust-hash32-0.1)
11044 ("rust-serde" ,rust-serde-1)
11045 ("rust-stable-deref-trait" ,rust-stable-deref-trait-1)
11046 ("rust-ufmt-write" ,rust-ufmt-write-0.1))
11047 #:cargo-development-inputs
11048 (("rust-scoped-threadpool" ,rust-scoped-threadpool-0.1)
11049 ("rust-ufmt" ,rust-ufmt-0.1))))
11050 (home-page "https://github.com/japaric/heapless")
11051 (synopsis "@code{statice} friendly data structures")
11052 (description "This package provides @code{static} friendly data structures
11053 that don't require dynamic memory allocation.")
11054 (license (list license:expat license:asl2.0))))
11055
11056 (define-public rust-heapsize-0.4
11057 (package
11058 (name "rust-heapsize")
11059 (version "0.4.2")
11060 (source
11061 (origin
11062 (method url-fetch)
11063 (uri (crate-uri "heapsize" version))
11064 (file-name (string-append name "-" version ".crate"))
11065 (sha256
11066 (base32
11067 "0q94q9ppqjgrw71swiyia4hgby2cz6dldp7ij57nkvhd6zmfcy8n"))))
11068 (build-system cargo-build-system)
11069 (arguments
11070 `(#:skip-build? #t
11071 #:cargo-inputs (("rust-winapi" ,rust-winapi-0.3))))
11072 (home-page "https://github.com/servo/heapsize")
11073 (synopsis "Measure the total runtime size of an object on the heap")
11074 (description
11075 "Infrastructure for measuring the total runtime size of an object on the
11076 heap.")
11077 (license (list license:asl2.0
11078 license:expat))))
11079
11080 (define-public rust-heapsize-0.3
11081 (package
11082 (inherit rust-heapsize-0.4)
11083 (name "rust-heapsize")
11084 (version "0.3.9")
11085 (source
11086 (origin
11087 (method url-fetch)
11088 (uri (crate-uri "heapsize" version))
11089 (file-name (string-append name "-" version ".crate"))
11090 (sha256
11091 (base32
11092 "0dmwc37vgsdjzk10443dj4f23439i9gch28jcwzmry3chrwx8v2m"))))
11093 (arguments
11094 `(#:skip-build? #t
11095 #:cargo-inputs (("rust-kernel32-sys" ,rust-kernel32-sys-0.2))))))
11096
11097 ;; This package makes use of removed features
11098 (define-public rust-heapsize-plugin-0.1
11099 (package
11100 (name "rust-heapsize-plugin")
11101 (version "0.1.6")
11102 (source
11103 (origin
11104 (method url-fetch)
11105 (uri (crate-uri "heapsize_plugin" version))
11106 (file-name (string-append name "-" version ".crate"))
11107 (sha256
11108 (base32
11109 "1i72isf699q9jl167g2kg4xd6h3cd05rc79zaph58aqjy0g0m9y9"))))
11110 (build-system cargo-build-system)
11111 (arguments
11112 `(#:skip-build? #t
11113 #:cargo-inputs (("rust-heapsize" ,rust-heapsize-0.3))))
11114 (home-page "https://github.com/servo/heapsize")
11115 (synopsis "Measure runtime size of an object on the heap")
11116 (description
11117 "This package automatically generates infrastructure for measuring the
11118 total runtime size of an object on the heap")
11119 (license license:mpl2.0)))
11120
11121 (define-public rust-heck-0.3
11122 (package
11123 (name "rust-heck")
11124 (version "0.3.1")
11125 (source
11126 (origin
11127 (method url-fetch)
11128 (uri (crate-uri "heck" version))
11129 (file-name (string-append name "-" version ".crate"))
11130 (sha256
11131 (base32
11132 "01a2v7yvkiqxakdqz4hw3w3g4sm52ivz9cs3qcsv2arxsmw4wmi0"))))
11133 (build-system cargo-build-system)
11134 (arguments
11135 `(#:skip-build? #t
11136 #:cargo-inputs
11137 (("rust-unicode-segmentation" ,rust-unicode-segmentation-1.3))))
11138 (home-page "https://github.com/withoutboats/heck")
11139 (synopsis "Case conversion library")
11140 (description
11141 "This library exists to provide case conversion between common cases like
11142 CamelCase and snake_case. It is intended to be unicode aware, internally
11143 consistent, and reasonably well performing.")
11144 (license (list license:asl2.0
11145 license:expat))))
11146
11147 (define-public rust-hermit-abi-0.1
11148 (package
11149 (name "rust-hermit-abi")
11150 (version "0.1.10")
11151 (source
11152 (origin
11153 (method url-fetch)
11154 (uri (crate-uri "hermit-abi" version))
11155 (file-name
11156 (string-append name "-" version ".tar.gz"))
11157 (sha256
11158 (base32
11159 "0blmmzik5cs79ivq70s9gal8ypgzj50wnl2hwsaam46gjjbz2p3j"))))
11160 (build-system cargo-build-system)
11161 (arguments
11162 `(#:skip-build? #t
11163 #:cargo-inputs
11164 (("rust-compiler-builtins" ,rust-compiler-builtins-0.1)
11165 ("rust-libc" ,rust-libc-0.2)
11166 ("rust-rustc-std-workspace-core" ,rust-rustc-std-workspace-core-1))))
11167 (home-page "https://github.com/hermitcore/rusty-hermit")
11168 (synopsis "Small interface to call functions from RustyHermit")
11169 (description
11170 "Hermit-abi is small interface to call functions from the unikernel RustyHermit.
11171 It is used to build the target x86_64-unknown-hermit.")
11172 (license (list license:expat license:asl2.0))))
11173
11174 (define-public rust-hex-0.4
11175 (package
11176 (name "rust-hex")
11177 (version "0.4.0")
11178 (source
11179 (origin
11180 (method url-fetch)
11181 (uri (crate-uri "hex" version))
11182 (file-name
11183 (string-append name "-" version ".tar.gz"))
11184 (sha256
11185 (base32
11186 "0glsfrx2pxfsf6ivxj7vfrvd7g78j4z47ssgm5idm8p376z3jfq2"))))
11187 (build-system cargo-build-system)
11188 (arguments '(#:skip-build? #t))
11189 (home-page "https://github.com/KokaKiwi/rust-hex")
11190 (synopsis "Encode and decode data to/from hexadecimals")
11191 (description "This crate allows for encoding and decoding data into/from
11192 hexadecimal representation.")
11193 (license (list license:asl2.0
11194 license:expat))))
11195
11196 (define-public rust-hex-0.3
11197 (package
11198 (inherit rust-hex-0.4)
11199 (name "rust-hex")
11200 (version "0.3.2")
11201 (source
11202 (origin
11203 (method url-fetch)
11204 (uri (crate-uri "hex" version))
11205 (file-name (string-append name "-" version ".crate"))
11206 (sha256
11207 (base32
11208 "0xsdcjiik5j750j67zk42qdnmm4ahirk3gmkmcqgq7qls2jjcl40"))))))
11209
11210 (define-public rust-hex-0.2
11211 (package
11212 (inherit rust-hex-0.4)
11213 (name "rust-hex")
11214 (version "0.2.0")
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 "1ajkw40qzn2ygnqjj9w584f6l31wi318258n84pn2hax8la2i8nn"))))))
11222
11223 (define-public rust-hex-literal-0.2
11224 (package
11225 (name "rust-hex-literal")
11226 (version "0.2.1")
11227 (source
11228 (origin
11229 (method url-fetch)
11230 (uri (crate-uri "hex-literal" version))
11231 (file-name
11232 (string-append name "-" version ".tar.gz"))
11233 (sha256
11234 (base32
11235 "1q36f0qq31ggh4ipcwb7a5g6jmci2010vn2v3qpaz4csxhhf47cn"))))
11236 (build-system cargo-build-system)
11237 (arguments
11238 `(#:cargo-inputs
11239 (("rust-hex-literal-impl" ,rust-hex-literal-impl-0.2)
11240 ("rust-proc-macro-hack" ,rust-proc-macro-hack-0.5))))
11241 (home-page "https://github.com/RustCrypto/utils")
11242 (synopsis
11243 "Convert hexadecimal string to byte array at compile time")
11244 (description
11245 "Procedural macro for converting hexadecimal string to byte array at
11246 compile time.")
11247 (license (list license:asl2.0 license:expat))))
11248
11249 (define-public rust-hex-literal-0.1
11250 (package
11251 (inherit rust-hex-literal-0.2)
11252 (name "rust-hex-literal")
11253 (version "0.1.4")
11254 (source
11255 (origin
11256 (method url-fetch)
11257 (uri (crate-uri "hex-literal" version))
11258 (file-name
11259 (string-append name "-" version ".tar.gz"))
11260 (sha256
11261 (base32
11262 "0ffnn5g9q5xhdmzj2ic5hk9y18kyqflbmqcssqcya9gixs5r5hnx"))))
11263 (arguments
11264 `(#:cargo-inputs
11265 (("rust-hex-literal-impl" ,rust-hex-literal-impl-0.1)
11266 ("rust-proc-macro-hack" ,rust-proc-macro-hack-0.4))))))
11267
11268 (define-public rust-hex-literal-impl-0.2
11269 (package
11270 (name "rust-hex-literal-impl")
11271 (version "0.2.1")
11272 (source
11273 (origin
11274 (method url-fetch)
11275 (uri (crate-uri "hex-literal-impl" version))
11276 (file-name
11277 (string-append name "-" version ".tar.gz"))
11278 (sha256
11279 (base32
11280 "0bgldhp5gdwwnikfdxigmz9b64qpgwbjqk6mfgv0pvig9s25qk4x"))))
11281 (build-system cargo-build-system)
11282 (arguments
11283 `(#:cargo-inputs
11284 (("rust-proc-macro-hack" ,rust-proc-macro-hack-0.5))))
11285 (home-page "https://github.com/RustCrypto/utils")
11286 (synopsis "Internal implementation of the hex-literal crate")
11287 (description
11288 "Internal implementation of the hex-literal crate.")
11289 (license (list license:asl2.0 license:expat))))
11290
11291 (define-public rust-hex-literal-impl-0.1
11292 (package
11293 (inherit rust-hex-literal-impl-0.2)
11294 (name "rust-hex-literal-impl")
11295 (version "0.1.2")
11296 (source
11297 (origin
11298 (method url-fetch)
11299 (uri (crate-uri "hex-literal-impl" version))
11300 (file-name
11301 (string-append name "-" version ".tar.gz"))
11302 (sha256
11303 (base32
11304 "1nnxqhyn9l998ma04ip79bmpqv1as6003s03g26ynhrr471p022j"))))
11305 (arguments
11306 `(#:cargo-inputs
11307 (("rust-proc-macro-hack" ,rust-proc-macro-hack-0.4))))))
11308
11309 (define-public rust-hkdf-0.9
11310 (package
11311 (name "rust-hkdf")
11312 (version "0.9.0")
11313 (source
11314 (origin
11315 (method url-fetch)
11316 (uri (crate-uri "hkdf" version))
11317 (file-name (string-append name "-" version ".tar.gz"))
11318 (sha256
11319 (base32
11320 "1jdvmf8aadk3s0kn9kk3dj00nprjk9glks5f8dm55r43af34j4gy"))))
11321 (build-system cargo-build-system)
11322 (arguments
11323 `(#:cargo-inputs
11324 (("rust-digest" ,rust-digest-0.9)
11325 ("rust-hmac" ,rust-hmac-0.8))
11326 #:cargo-development-inputs
11327 (("rust-bencher" ,rust-bencher-0.1)
11328 ("rust-crypto-tests" ,rust-crypto-tests-0.5)
11329 ("rust-hex" ,rust-hex-0.4)
11330 ("rust-sha-1" ,rust-sha-1-0.9)
11331 ("rust-sha2" ,rust-sha2-0.9))))
11332 (home-page "https://github.com/RustCrypto/KDFs/")
11333 (synopsis "HMAC-based Extract-and-Expand Key Derivation Function (HKDF)")
11334 (description "This package provides a HMAC-based Extract-and-Expand Key
11335 Derivation Function (HKDF).")
11336 (license (list license:expat license:asl2.0))))
11337
11338 (define-public rust-hmac-0.8
11339 (package
11340 (name "rust-hmac")
11341 (version "0.8.1")
11342 (source
11343 (origin
11344 (method url-fetch)
11345 (uri (crate-uri "hmac" version))
11346 (file-name
11347 (string-append name "-" version ".tar.gz"))
11348 (sha256
11349 (base32
11350 "0h48wc7iysh4xd6ci4prh8bb7nszijrh9w3blaaq8a6cilk8hs0j"))))
11351 (build-system cargo-build-system)
11352 (arguments
11353 `(#:cargo-inputs
11354 (("rust-crypto-mac" ,rust-crypto-mac-0.8)
11355 ("rust-digest" ,rust-digest-0.9))
11356 #:cargo-development-inputs
11357 (("rust-crypto-mac" ,rust-crypto-mac-0.8)
11358 ("rust-md-5" ,rust-md-5-0.9)
11359 ("rust-sha2" ,rust-sha2-0.9))))
11360 (home-page "https://github.com/RustCrypto/MACs")
11361 (synopsis "Generic implementation of Hash-based Message Authentication Code")
11362 (description
11363 "This package provides a generic implementation of @acronym{HMAC,
11364 Hash-based Message Authentication Code}.")
11365 (license (list license:expat license:asl2.0))))
11366
11367 (define-public rust-hmac-0.7
11368 (package
11369 (inherit rust-hmac-0.8)
11370 (name "rust-hmac")
11371 (version "0.7.1")
11372 (source
11373 (origin
11374 (method url-fetch)
11375 (uri (crate-uri "hmac" version))
11376 (file-name
11377 (string-append name "-" version ".tar.gz"))
11378 (sha256
11379 (base32
11380 "15cnwpssp2n1kdm9x7abir67f2hp3q6rdfj1mcck3hm4rmj5xjsx"))))
11381 (arguments
11382 `(#:cargo-inputs
11383 (("rust-crypto-mac" ,rust-crypto-mac-0.7)
11384 ("rust-digest" ,rust-digest-0.8))
11385 #:cargo-development-inputs
11386 (("rust-crypto-mac" ,rust-crypto-mac-0.7)
11387 ("rust-md-5" ,rust-md-5-0.8)
11388 ("rust-sha2" ,rust-sha2-0.8))))))
11389
11390 (define-public rust-hostname-0.3
11391 (package
11392 (name "rust-hostname")
11393 (version "0.3.1")
11394 (source
11395 (origin
11396 (method url-fetch)
11397 (uri (crate-uri "hostname" version))
11398 (file-name
11399 (string-append name "-" version ".tar.gz"))
11400 (sha256
11401 (base32
11402 "0rz8yf70cvzl3nry71m4bz9w6x4j9kdz3qng6pnwhk2h20z1qwrw"))))
11403 (build-system cargo-build-system)
11404 (arguments
11405 `(#:cargo-inputs
11406 (("rust-libc" ,rust-libc-0.2)
11407 ("rust-match-cfg" ,rust-match-cfg-0.1)
11408 ("rust-winapi" ,rust-winapi-0.3))
11409 #:cargo-development-inputs
11410 (("rust-version-sync" ,rust-version-sync-0.8))))
11411 (home-page "https://github.com/svartalf/hostname")
11412 (synopsis "Get hostname for Rust")
11413 (description
11414 "Get hostname for Rust.")
11415 (license license:expat)))
11416
11417 (define-public rust-hostname-0.1
11418 (package
11419 (inherit rust-hostname-0.3)
11420 (name "rust-hostname")
11421 (version "0.1.5")
11422 (source
11423 (origin
11424 (method url-fetch)
11425 (uri (crate-uri "hostname" version))
11426 (file-name (string-append name "-" version ".crate"))
11427 (sha256
11428 (base32
11429 "0kprf862qaa7lwdms6aw7f3275h0j2rwhs9nz5784pm8hdmb9ki1"))))
11430 (arguments
11431 `(#:skip-build? #t
11432 #:cargo-inputs
11433 (("rust-libc" ,rust-libc-0.2)
11434 ("rust-winutil" ,rust-winutil-0.1))))))
11435
11436 (define-public rust-html5ever-0.24
11437 (package
11438 (name "rust-html5ever")
11439 (version "0.24.1")
11440 (source
11441 (origin
11442 (method url-fetch)
11443 (uri (crate-uri "html5ever" version))
11444 (file-name
11445 (string-append name "-" version ".tar.gz"))
11446 (sha256
11447 (base32 "1js4cr04941ld4r4fqpblvfigy75ds48qcbqhnr7nmz4l6q86m02"))))
11448 (build-system cargo-build-system)
11449 (arguments
11450 `(#:cargo-inputs
11451 (("rust-log" ,rust-log-0.4)
11452 ("rust-mac" ,rust-mac-0.1)
11453 ("rust-markup5ever" ,rust-markup5ever-0.9)
11454 ("rust-proc-macro2" ,rust-proc-macro2-0.4)
11455 ("rust-quote" ,rust-quote-0.6)
11456 ("rust-syn" ,rust-syn-0.15))
11457 #:cargo-development-inputs
11458 (("rust-criterion" ,rust-criterion-0.2)
11459 ("rust-rustc-serialize" ,rust-rustc-serialize-0.3)
11460 ("rust-rustc-test" ,rust-rustc-test-0.3)
11461 ("rust-typed-arena" ,rust-typed-arena-1.4))))
11462 (home-page "https://github.com/servo/html5ever")
11463 (synopsis "High-performance browser-grade HTML5 parser")
11464 (description
11465 "High-performance browser-grade HTML5 parser.")
11466 (license (list license:asl2.0 license:expat))))
11467
11468 (define-public rust-html5ever-0.23
11469 (package/inherit rust-html5ever-0.24
11470 (name "rust-html5ever")
11471 (version "0.23.0")
11472 (source
11473 (origin
11474 (method url-fetch)
11475 (uri (crate-uri "html5ever" version))
11476 (file-name (string-append name "-" version ".tar.gz"))
11477 (sha256
11478 (base32 "1dx8k7synrmf3fl6gcfm5q1cybfglvhc9xnvly3s5xcc0b45mrjw"))))
11479 (arguments
11480 `(#:cargo-inputs
11481 (("rust-log" ,rust-log-0.4)
11482 ("rust-mac" ,rust-mac-0.1)
11483 ("rust-markup5ever" ,rust-markup5ever-0.8)
11484 ("rust-proc-macro2" ,rust-proc-macro2-0.4)
11485 ("rust-quote" ,rust-quote-0.6)
11486 ("rust-syn" ,rust-syn-0.15))
11487 #:cargo-development-inputs
11488 (("rust-criterion" ,rust-criterion-0.2)
11489 ("rust-rustc-serialize" ,rust-rustc-serialize-0.3)
11490 ("rust-rustc-test" ,rust-rustc-test-0.3)
11491 ("rust-typed-arena" ,rust-typed-arena-1.4))))))
11492
11493 (define-public rust-http-0.2
11494 (package
11495 (name "rust-http")
11496 (version "0.2.1")
11497 (source
11498 (origin
11499 (method url-fetch)
11500 (uri (crate-uri "http" version))
11501 (file-name (string-append name "-" version ".tar.gz"))
11502 (sha256
11503 (base32 "1y827q7j0gvs8z2x12biaik9db6nb902lpqv889cbcj84sbnkm98"))))
11504 (build-system cargo-build-system)
11505 (arguments
11506 `(#:cargo-inputs
11507 (("rust-bytes" ,rust-bytes-0.5)
11508 ("rust-fnv" ,rust-fnv-1)
11509 ("rust-itoa" ,rust-itoa-0.4))
11510 #:cargo-development-inputs
11511 (("rust-doc-comment" ,rust-doc-comment-0.3)
11512 ("rust-indexmap" ,rust-indexmap-1)
11513 ("rust-quickcheck" ,rust-quickcheck-0.9)
11514 ("rust-rand" ,rust-rand-0.7)
11515 ("rust-seahash" ,rust-seahash-3)
11516 ("rust-serde" ,rust-serde-1)
11517 ("rust-serde-json" ,rust-serde-json-1))))
11518 (home-page "https://github.com/hyperium/http")
11519 (synopsis "Set of types for representing HTTP requests and responses")
11520 (description "This package provides a set of types for representing HTTP
11521 requests and responses.")
11522 (license (list license:asl2.0 license:expat))))
11523
11524 (define-public rust-http-0.1
11525 (package/inherit rust-http-0.2
11526 (name "rust-http")
11527 (version "0.1.17")
11528 (source
11529 (origin
11530 (method url-fetch)
11531 (uri (crate-uri "http" version))
11532 (file-name
11533 (string-append name "-" version ".tar.gz"))
11534 (sha256
11535 (base32
11536 "06icxvrd26r6s7dzjavja7r47hgjb9851wblqh8frxnsy3q29lzf"))))
11537 (arguments
11538 `(#:cargo-inputs
11539 (("rust-bytes" ,rust-bytes-0.4)
11540 ("rust-fnv" ,rust-fnv-1)
11541 ("rust-itoa" ,rust-itoa-0.4))
11542 #:cargo-development-inputs
11543 (("rust-indexmap" ,rust-indexmap-1)
11544 ("rust-quickcheck" ,rust-quickcheck-0.6)
11545 ("rust-rand" ,rust-rand-0.4)
11546 ("rust-seahash" ,rust-seahash-3)
11547 ("rust-serde" ,rust-serde-1)
11548 ("rust-serde-json" ,rust-serde-json-1))))))
11549
11550 (define-public rust-http-body-0.3
11551 (package
11552 (name "rust-http-body")
11553 (version "0.3.1")
11554 (source
11555 (origin
11556 (method url-fetch)
11557 (uri (crate-uri "http-body" version))
11558 (file-name (string-append name "-" version ".tar.gz"))
11559 (sha256
11560 (base32 "06qi0ni45lb92w3ml260c0bxbq5zd4snjmz0a9k69xq6021zzm8k"))))
11561 (build-system cargo-build-system)
11562 (arguments
11563 `(#:cargo-inputs
11564 (("rust-bytes" ,rust-bytes-0.5)
11565 ("rust-http" ,rust-http-0.2))))
11566 (home-page "https://github.com/hyperium/http-body")
11567 (synopsis "Asynchronous, streaming, HTTP request or response body")
11568 (description "Trait representing an asynchronous, streaming, HTTP request
11569 or response body.")
11570 (license license:expat)))
11571
11572 (define-public rust-http-body-0.1
11573 (package/inherit rust-http-body-0.3
11574 (name "rust-http-body")
11575 (version "0.1.0")
11576 (source
11577 (origin
11578 (method url-fetch)
11579 (uri (crate-uri "http-body" version))
11580 (file-name (string-append name "-" version ".tar.gz"))
11581 (sha256
11582 (base32 "0b99404k4mw6a92hvyr0qwzkqv4f866ykg0x7913limjq5cwhhb7"))))
11583 (build-system cargo-build-system)
11584 (arguments
11585 `(#:cargo-inputs
11586 (("rust-bytes" ,rust-bytes-0.4)
11587 ("rust-futures" ,rust-futures-0.1)
11588 ("rust-http" ,rust-http-0.1)
11589 ("rust-tokio-buf" ,rust-tokio-buf-0.1))))))
11590
11591 (define-public rust-http-req-0.5
11592 (package
11593 (name "rust-http-req")
11594 (version "0.5.4")
11595 (source
11596 (origin
11597 (method url-fetch)
11598 (uri (crate-uri "http_req" version))
11599 (file-name
11600 (string-append name "-" version ".tar.gz"))
11601 (sha256
11602 (base32
11603 "0qaw43nwvvxbnqddxhb9fh9316dn64nmkzj08pq8n49qdy51xrys"))))
11604 (build-system cargo-build-system)
11605 (arguments
11606 `(#:skip-build? #t
11607 #:cargo-inputs
11608 ;; Haven't packaged rustls and webpki because of license
11609 (("rust-native-tls" ,rust-native-tls-0.2)
11610 ("rust-unicase" ,rust-unicase-2))))
11611 (home-page "https://github.com/jayjamesjay/http_req")
11612 (synopsis
11613 "HTTP client with built-in HTTPS support")
11614 (description
11615 "Simple and lightweight HTTP client with built-in HTTPS support.")
11616 (license license:expat)))
11617
11618 (define-public rust-httparse-1
11619 (package
11620 (name "rust-httparse")
11621 (version "1.3.3")
11622 (source
11623 (origin
11624 (method url-fetch)
11625 (uri (crate-uri "httparse" version))
11626 (file-name
11627 (string-append name "-" version ".tar.gz"))
11628 (sha256
11629 (base32
11630 "10vsfx1b8drhif08fbi0ha9d3v1f3h80w42rxh0y3hrvzl64nwz8"))))
11631 (build-system cargo-build-system)
11632 (arguments
11633 `(#:skip-build? #t
11634 #:cargo-development-inputs
11635 (("rust-pico-sys" ,rust-pico-sys-0.0))))
11636 (home-page "https://github.com/seanmonstar/httparse")
11637 (synopsis "Zero-copy HTTP/1.x parser")
11638 (description
11639 "This package provides a tiny, safe, speedy, zero-copy HTTP/1.x parser.")
11640 (license (list license:asl2.0 license:expat))))
11641
11642 (define-public rust-humansize-1
11643 (package
11644 (name "rust-humansize")
11645 (version "1.1.0")
11646 (source
11647 (origin
11648 (method url-fetch)
11649 (uri (crate-uri "humansize" version))
11650 (file-name (string-append name "-" version ".tar.gz"))
11651 (sha256
11652 (base32
11653 "0piadmwjah1jv6q288im4za9szlgalzjyq2811w35i6gg9ib5jmn"))))
11654 (build-system cargo-build-system)
11655 (home-page "https://github.com/LeopoldArkham/humansize")
11656 (synopsis "Represent file sizes in a human-readable format")
11657 (description "This package provides a configurable crate to easily
11658 represent file sizes in a human-readable format.")
11659 (license (list license:expat license:asl2.0))))
11660
11661 (define-public rust-humantime-2
11662 (package
11663 (name "rust-humantime")
11664 (version "2.0.1")
11665 (source
11666 (origin
11667 (method url-fetch)
11668 (uri (crate-uri "humantime" version))
11669 (file-name
11670 (string-append name "-" version ".tar.gz"))
11671 (sha256
11672 (base32
11673 "0yivhqyi8xik2j6sd3q45ybakjx8jsx5632dx9xjn0birh4dj6iw"))))
11674 (build-system cargo-build-system)
11675 (arguments
11676 `(#:cargo-development-inputs
11677 (("rust-chrono" ,rust-chrono-0.4)
11678 ("rust-rand" ,rust-rand-0.6)
11679 ("rust-time" ,rust-time-0.1))))
11680 (home-page "https://github.com/tailhook/humantime")
11681 (synopsis
11682 "Parser and formatter for Duration and SystemTime")
11683 (description
11684 "A parser and formatter for @code{std::time::{Duration,
11685 SystemTime}}.")
11686 (license (list license:expat license:asl2.0))))
11687
11688 (define-public rust-humantime-1
11689 (package
11690 (inherit rust-humantime-2)
11691 (name "rust-humantime")
11692 (version "1.3.0")
11693 (source
11694 (origin
11695 (method url-fetch)
11696 (uri (crate-uri "humantime" version))
11697 (file-name
11698 (string-append name "-" version ".tar.gz"))
11699 (sha256
11700 (base32
11701 "0krwgbf35pd46xvkqg14j070vircsndabahahlv3rwhflpy4q06z"))))
11702 (arguments
11703 `(#:skip-build? #t
11704 #:cargo-inputs
11705 (("rust-quick-error" ,rust-quick-error-1.2))
11706 #:cargo-development-inputs
11707 (("rust-chrono" ,rust-chrono-0.4)
11708 ("rust-rand" ,rust-rand-0.4)
11709 ("rust-time" ,rust-time-0.1))))))
11710
11711 (define-public rust-hyper-0.13
11712 (package
11713 (name "rust-hyper")
11714 (version "0.13.7")
11715 (source
11716 (origin
11717 (method url-fetch)
11718 (uri (crate-uri "hyper" version))
11719 (file-name (string-append name "-" version ".tar.gz"))
11720 (sha256
11721 (base32
11722 "1symcnba2y03b8lj6xp2wd994lk3xyk3wizacjg5s60njzfshs1y"))))
11723 (build-system cargo-build-system)
11724 (arguments
11725 `(#:cargo-inputs
11726 (("rust-bytes" ,rust-bytes-0.5)
11727 ("rust-futures-channel" ,rust-futures-channel-0.3)
11728 ("rust-futures-core" ,rust-futures-core-0.3)
11729 ("rust-futures-util" ,rust-futures-util-0.3)
11730 ("rust-h2" ,rust-h2-0.2)
11731 ("rust-http" ,rust-http-0.2)
11732 ("rust-http-body" ,rust-http-body-0.3)
11733 ("rust-httparse" ,rust-httparse-1)
11734 ("rust-itoa" ,rust-itoa-0.4)
11735 ("rust-pin-project" ,rust-pin-project-0.4)
11736 ("rust-socket2" ,rust-socket2-0.3)
11737 ("rust-time" ,rust-time-0.1)
11738 ("rust-tokio" ,rust-tokio-0.2)
11739 ("rust-tower-service" ,rust-tower-service-0.3)
11740 ("rust-tracing" ,rust-tracing-0.1)
11741 ("rust-want" ,rust-want-0.3))
11742 #:cargo-development-inputs
11743 (("rust-futures-util" ,rust-futures-util-0.3)
11744 ("rust-matches" ,rust-matches-0.1)
11745 ("rust-num-cpus" ,rust-num-cpus-1)
11746 ("rust-pretty-env-logger" ,rust-pretty-env-logger-0.4)
11747 ("rust-serde" ,rust-serde-1)
11748 ("rust-serde-derive" ,rust-serde-derive-1)
11749 ("rust-serde-json" ,rust-serde-json-1)
11750 ("rust-spmc" ,rust-spmc-0.3)
11751 ("rust-tokio" ,rust-tokio-0.2)
11752 ("rust-tokio-test" ,rust-tokio-test-0.2)
11753 ("rust-tokio-util" ,rust-tokio-util-0.3)
11754 ("rust-tower-util" ,rust-tower-util-0.3)
11755 ("rust-url" ,rust-url-1))))
11756 (home-page "https://hyper.rs")
11757 (synopsis "Fast and correct HTTP library.")
11758 (description "This package provides a fast and correct HTTP library.")
11759 (license license:expat)))
11760
11761 (define-public rust-hyper-0.12
11762 (package
11763 (inherit rust-hyper-0.13)
11764 (name "rust-hyper")
11765 (version "0.12.35")
11766 (source
11767 (origin
11768 (method url-fetch)
11769 (uri (crate-uri "hyper" version))
11770 (file-name (string-append name "-" version ".tar.gz"))
11771 (sha256
11772 (base32 "1xnm8zi4bdjqhlnx3238kx8yjf29jjd1ww54apcql7wf8g8nxglx"))))
11773 (arguments
11774 `(#:skip-build? #t ;; fails due to some missing example file
11775 #:cargo-inputs
11776 (("rust-bytes" ,rust-bytes-0.4)
11777 ("rust-futures" ,rust-futures-0.1)
11778 ("rust-futures-cpupool" ,rust-futures-cpupool-0.1)
11779 ("rust-h2" ,rust-h2-0.1)
11780 ("rust-http" ,rust-http-0.1)
11781 ("rust-http-body" ,rust-http-body-0.1)
11782 ("rust-httparse" ,rust-httparse-1)
11783 ("rust-iovec" ,rust-iovec-0.1)
11784 ("rust-itoa" ,rust-itoa-0.4)
11785 ("rust-log" ,rust-log-0.4)
11786 ("rust-net2" ,rust-net2-0.2)
11787 ("rust-time" ,rust-time-0.1)
11788 ("rust-tokio" ,rust-tokio-0.1)
11789 ("rust-tokio-buf" ,rust-tokio-buf-0.1)
11790 ("rust-tokio-executor" ,rust-tokio-executor-0.1)
11791 ("rust-tokio-io" ,rust-tokio-io-0.1)
11792 ("rust-tokio-reactor" ,rust-tokio-reactor-0.1)
11793 ("rust-tokio-tcp" ,rust-tokio-tcp-0.1)
11794 ("rust-tokio-threadpool" ,rust-tokio-threadpool-0.1)
11795 ("rust-tokio-timer" ,rust-tokio-timer-0.2)
11796 ("rust-want" ,rust-want-0.2))
11797 #:cargo-development-inputs
11798 (("rust-futures-timer" ,rust-futures-timer-0.1)
11799 ("rust-num-cpus" ,rust-num-cpus-1)
11800 ("rust-rustc-version" ,rust-rustc-version-0.2)
11801 ("rust-pretty-env-logger" ,rust-pretty-env-logger-0.3)
11802 ("rust-serde" ,rust-serde-1)
11803 ("rust-serde-derive" ,rust-serde-derive-1)
11804 ("rust-serde-json" ,rust-serde-json-1)
11805 ("rust-spmc" ,rust-spmc-0.3)
11806 ("rust-tokio-fs" ,rust-tokio-fs-0.1)
11807 ("rust-tokio-mockstream" ,rust-tokio-mockstream-1)
11808 ("rust-url" ,rust-url-1))))))
11809
11810 (define-public rust-hyper-old-types-0.11
11811 (package
11812 (name "rust-hyper-old-types")
11813 (version "0.11.0")
11814 (source
11815 (origin
11816 (method url-fetch)
11817 (uri (crate-uri "hyper-old-types" version))
11818 (file-name
11819 (string-append name "-" version ".tar.gz"))
11820 (sha256
11821 (base32
11822 "1i69sks0bwamzqdbx8ffgkssxffv6crdmwjgl47nr5pkxi8vx5k8"))))
11823 (build-system cargo-build-system)
11824 (arguments
11825 `(#:tests? #f ; Tests do not compile
11826 #:cargo-inputs
11827 (("rust-base64" ,rust-base64-0.9)
11828 ("rust-bytes" ,rust-bytes-0.4)
11829 ("rust-http" ,rust-http-0.1)
11830 ("rust-httparse" ,rust-httparse-1)
11831 ("rust-language-tags" ,rust-language-tags-0.2)
11832 ("rust-log" ,rust-log-0.4)
11833 ("rust-mime" ,rust-mime-0.3)
11834 ("rust-percent-encoding" ,rust-percent-encoding-1.0)
11835 ("rust-time" ,rust-time-0.1)
11836 ("rust-unicase" ,rust-unicase-2))))
11837 (home-page "https://hyper.rs")
11838 (synopsis "HTTP types from hyper 0.11.x")
11839 (description
11840 "This package contains HTTP types from the newer hyper crate in versions
11841 0.11.x.")
11842 (license license:expat)))
11843
11844 (define-public rust-hyper-rustls-0.21
11845 (package
11846 (name "rust-hyper-rustls")
11847 (version "0.21.0")
11848 (source
11849 (origin
11850 (method url-fetch)
11851 (uri (crate-uri "hyper-rustls" version))
11852 (file-name (string-append name "-" version ".tar.gz"))
11853 (sha256
11854 (base32
11855 "1dmbj15fx6qyg26hji2jm7q9y383090jy3z9zjn5xs4f7v43qx1p"))))
11856 (build-system cargo-build-system)
11857 (arguments
11858 `(#:cargo-inputs
11859 (("rust-bytes" ,rust-bytes-0.5)
11860 ("rust-ct-logs" ,rust-ct-logs-0.7)
11861 ("rust-futures-util" ,rust-futures-util-0.3)
11862 ("rust-hyper" ,rust-hyper-0.13)
11863 ("rust-log" ,rust-log-0.4)
11864 ("rust-rustls" ,rust-rustls-0.18)
11865 ("rust-rustls-native-certs" ,rust-rustls-native-certs-0.4)
11866 ("rust-tokio" ,rust-tokio-0.2)
11867 ("rust-tokio-rustls" ,rust-tokio-rustls-0.14)
11868 ("rust-webpki" ,rust-webpki-0.21)
11869 ("rust-webpki-roots" ,rust-webpki-roots-0.20))
11870 #:cargo-development-inputs
11871 (("rust-tokio" ,rust-tokio-0.2))))
11872 (home-page "https://github.com/ctz/hyper-rustls")
11873 (synopsis "Rustls+hyper integration for pure rust HTTPS")
11874 (description "This package provides Rustls+hyper integration for pure rust
11875 HTTPS.")
11876 (license
11877 (list license:asl2.0 license:isc license:expat))))
11878
11879 (define-public rust-hyper-tls-0.4
11880 (package
11881 (name "rust-hyper-tls")
11882 (version "0.4.3")
11883 (source
11884 (origin
11885 (method url-fetch)
11886 (uri (crate-uri "hyper-tls" version))
11887 (file-name (string-append name "-" version ".tar.gz"))
11888 (sha256
11889 (base32
11890 "1vcfyz7dxavf4brns15afmj5fxz88lbn05rrpbfqsnybdp2sqyfr"))))
11891 (build-system cargo-build-system)
11892 (native-inputs
11893 `(("pkg-config" ,pkg-config)))
11894 (inputs
11895 `(("openssl" ,openssl)))
11896 (arguments
11897 `(#:cargo-inputs
11898 (("rust-bytes" ,rust-bytes-0.5)
11899 ("rust-hyper" ,rust-hyper-0.13)
11900 ("rust-native-tls" ,rust-native-tls-0.2)
11901 ("rust-tokio" ,rust-tokio-0.2)
11902 ("rust-tokio-tls" ,rust-tokio-tls-0.3))
11903 #:cargo-development-inputs
11904 (("rust-tokio" ,rust-tokio-0.2))))
11905 (home-page "https://hyper.rs")
11906 (synopsis "Default TLS implementation for use with hyper")
11907 (description "This package provides the default TLS implementation for use
11908 with hyper.")
11909 (license (list license:expat license:asl2.0))))
11910
11911 (define-public rust-hyper-tls-0.3
11912 (package
11913 (inherit rust-hyper-tls-0.4)
11914 (name "rust-hyper-tls")
11915 (version "0.3.2")
11916 (source
11917 (origin
11918 (method url-fetch)
11919 (uri (crate-uri "hyper-tls" version))
11920 (file-name (string-append name "-" version ".tar.gz"))
11921 (sha256
11922 (base32 "0kqp4sz8613j6nv375wfj3gh95ff4nb6a3rb1f2vbx0almm0v01s"))))
11923 (arguments
11924 `(#:cargo-inputs
11925 (("rust-bytes" ,rust-bytes-0.4)
11926 ("rust-futures" ,rust-futures-0.1)
11927 ("rust-hyper" ,rust-hyper-0.12)
11928 ("rust-native-tls" ,rust-native-tls-0.2)
11929 ("rust-tokio-io" ,rust-tokio-io-0.1))
11930 #:cargo-development-inputs
11931 (("rust-tokio" ,rust-tokio-0.1))))))
11932
11933 (define-public rust-ident-case-1
11934 (package
11935 (name "rust-ident-case")
11936 (version "1.0.1")
11937 (source
11938 (origin
11939 (method url-fetch)
11940 (uri (crate-uri "ident_case" version))
11941 (file-name
11942 (string-append name "-" version ".tar.gz"))
11943 (sha256
11944 (base32
11945 "0fac21q6pwns8gh1hz3nbq15j8fi441ncl6w4vlnd1cmc55kiq5r"))))
11946 (build-system cargo-build-system)
11947 (home-page "https://github.com/TedDriggs/ident_case")
11948 (synopsis "Utility for applying case rules to Rust identifiers")
11949 (description
11950 "Utility for applying case rules to Rust identifiers.")
11951 (license (list license:expat license:asl2.0))))
11952
11953 (define-public rust-idna-0.2
11954 (package
11955 (name "rust-idna")
11956 (version "0.2.0")
11957 (source
11958 (origin
11959 (method url-fetch)
11960 (uri (crate-uri "idna" version))
11961 (file-name
11962 (string-append name "-" version ".tar.gz"))
11963 (sha256
11964 (base32
11965 "1a9066imqpdrm1aavfasdyb1zahqaz8jmdcwdawvb1pf60y6gqh2"))))
11966 (build-system cargo-build-system)
11967 (arguments
11968 `(#:skip-build? #t
11969 #:cargo-inputs
11970 (("rust-matches" ,rust-matches-0.1)
11971 ("rust-unicode-bidi" ,rust-unicode-bidi-0.3)
11972 ("rust-unicode-normalization" ,rust-unicode-normalization-0.1))
11973 #:cargo-development-inputs
11974 (("rust-rustc-test" ,rust-rustc-test-0.3)
11975 ("rust-serde-json" ,rust-serde-json-1))))
11976 (home-page "https://github.com/servo/rust-url/")
11977 (synopsis "Internationalizing Domain Names in Applications and Punycode")
11978 (description
11979 "IDNA (Internationalizing Domain Names in Applications) and Punycode.")
11980 (license (list license:expat license:asl2.0))))
11981
11982 (define-public rust-idna-0.1
11983 (package
11984 (inherit rust-idna-0.2)
11985 (name "rust-idna")
11986 (version "0.1.5")
11987 (source
11988 (origin
11989 (method url-fetch)
11990 (uri (crate-uri "idna" version))
11991 (file-name
11992 (string-append name "-" version ".tar.gz"))
11993 (sha256
11994 (base32
11995 "0kl4gs5kaydn4v07c6ka33spm9qdh2np0x7iw7g5zd8z1c7rxw1q"))))
11996 (arguments
11997 `(#:skip-build? #t
11998 #:cargo-inputs
11999 (("rust-matches" ,rust-matches-0.1)
12000 ("rust-unicode-bidi" ,rust-unicode-bidi-0.3)
12001 ("rust-unicode-normalization" ,rust-unicode-normalization-0.1))
12002 #:cargo-development-inputs
12003 (("rust-rustc-serialize" ,rust-rustc-serialize-0.3)
12004 ("rust-rustc-test" ,rust-rustc-test-0.3))))))
12005
12006 (define-public rust-if-chain-1
12007 (package
12008 (name "rust-if-chain")
12009 (version "1.0.0")
12010 (source
12011 (origin
12012 (method url-fetch)
12013 (uri (crate-uri "if_chain" version))
12014 (file-name (string-append name "-" version ".tar.gz"))
12015 (sha256
12016 (base32
12017 "0zgcn31bahnsmsjc0cgk0cy38p8sfjs79yvi6rjs5zz5b5xhqdn3"))))
12018 (build-system cargo-build-system)
12019 (home-page "https://github.com/lfairy/if_chain")
12020 (synopsis "Macro for writing nested @code{if let} expressions")
12021 (description "This package provides a macro for writing nested @code{if
12022 let} expressions.")
12023 (license (list license:expat license:asl2.0))))
12024
12025 (define-public rust-ignore-0.4
12026 (package
12027 (name "rust-ignore")
12028 (version "0.4.16")
12029 (source
12030 (origin
12031 (method url-fetch)
12032 (uri (crate-uri "ignore" version))
12033 (file-name
12034 (string-append name "-" version ".tar.gz"))
12035 (sha256
12036 (base32
12037 "0wpcv4qgfzcyzydhlqa2qr56j72fj1a66s11xzdji59898mbzp12"))))
12038 (build-system cargo-build-system)
12039 (arguments
12040 `(#:cargo-inputs
12041 (("rust-crossbeam-utils" ,rust-crossbeam-utils-0.7)
12042 ("rust-globset" ,rust-globset-0.4)
12043 ("rust-lazy-static" ,rust-lazy-static-1)
12044 ("rust-log" ,rust-log-0.4)
12045 ("rust-memchr" ,rust-memchr-2)
12046 ("rust-regex" ,rust-regex-1)
12047 ("rust-same-file" ,rust-same-file-1.0)
12048 ("rust-thread-local" ,rust-thread-local-1.0)
12049 ("rust-walkdir" ,rust-walkdir-2)
12050 ("rust-winapi-util" ,rust-winapi-util-0.1))
12051 #:cargo-development-inputs
12052 (("rust-crossbeam-channel" ,rust-crossbeam-channel-0.4))))
12053 (home-page "https://github.com/BurntSushi/ripgrep/tree/master/ignore")
12054 (synopsis "Efficiently match ignore files such as .gitignore")
12055 (description
12056 "This package provides a fast library for efficiently matching
12057 ignore files such as .gitignore against file paths.")
12058 (license (list license:unlicense license:expat))))
12059
12060 (define-public rust-indexmap-1
12061 (package
12062 (name "rust-indexmap")
12063 (version "1.4.0")
12064 (source
12065 (origin
12066 (method url-fetch)
12067 (uri (crate-uri "indexmap" version))
12068 (file-name
12069 (string-append name "-" version ".tar.gz"))
12070 (sha256
12071 (base32
12072 "1ziabh0lc4wwahv3qgv6aqckyydcrczpagpfp770jn5m2fqv5663"))))
12073 (build-system cargo-build-system)
12074 (arguments
12075 `(#:cargo-inputs
12076 (("rust-autocfg" ,rust-autocfg-1.0)
12077 ("rust-serde" ,rust-serde-1)
12078 ("rust-rayon" ,rust-rayon-1))
12079 #:cargo-development-inputs
12080 (("rust-fnv" ,rust-fnv-1)
12081 ("rust-itertools" ,rust-itertools-0.8)
12082 ("rust-lazy-static" ,rust-lazy-static-1)
12083 ("rust-quickcheck" ,rust-quickcheck-0.9)
12084 ("rust-rand" ,rust-rand-0.7)
12085 ("rust-serde-test" ,rust-serde-test-1))))
12086 (home-page "https://github.com/bluss/indexmap")
12087 (synopsis "Hash table with consistent order and fast iteration.")
12088 (description
12089 "This package provides a hash table with consistent order and fast iteration.
12090
12091 The indexmap is a hash table where the iteration order of the key-value
12092 pairs is independent of the hash values of the keys. It has the usual
12093 hash table functionality, it preserves insertion order except after
12094 removals, and it allows lookup of its elements by either hash table key
12095 or numerical index. A corresponding hash set type is also provided.")
12096 (license (list license:asl2.0 license:expat))))
12097
12098 (define-public rust-inflate-0.4
12099 (package
12100 (name "rust-inflate")
12101 (version "0.4.5")
12102 (source
12103 (origin
12104 (method url-fetch)
12105 (uri (crate-uri "inflate" version))
12106 (file-name
12107 (string-append name "-" version ".tar.gz"))
12108 (sha256
12109 (base32
12110 "1zxjdn8iwa0ssxrnjmywm3r1v284wryvzrf8vkc7nyf5ijbjknqw"))))
12111 (build-system cargo-build-system)
12112 (arguments
12113 `(#:cargo-inputs (("rust-adler32" ,rust-adler32-1))))
12114 (home-page "https://github.com/PistonDevelopers/inflate.git")
12115 (synopsis "DEFLATE decoding")
12116 (description "This package provides DEFLATE decoding.")
12117 (license license:expat)))
12118
12119 (define-public rust-inflector-0.11
12120 (package
12121 (name "rust-inflector")
12122 (version "0.11.4")
12123 (source
12124 (origin
12125 (method url-fetch)
12126 (uri (crate-uri "Inflector" version))
12127 (file-name (string-append name "-" version ".tar.gz"))
12128 (sha256
12129 (base32
12130 "1lqmcni21ifzyq41fhz6k1j2b23cmsx469s4g4sf01l78miqqhzy"))))
12131 (build-system cargo-build-system)
12132 (arguments
12133 `(#:cargo-inputs
12134 (("rust-lazy-static" ,rust-lazy-static-1)
12135 ("rust-regex" ,rust-regex-1))))
12136 (home-page "https://github.com/whatisinternet/inflector")
12137 (synopsis "String based inflections for Rust")
12138 (description "This package adds String based inflections for Rust. Snake,
12139 kebab, camel, sentence, class, title and table cases as well as ordinalize,
12140 deordinalize, demodulize, foreign key, and pluralize/singularize are supported
12141 as both traits and pure functions acting on String types.")
12142 (license license:bsd-2)))
12143
12144 (define-public rust-inotify-0.7
12145 (package
12146 (name "rust-inotify")
12147 (version "0.7.1")
12148 (source
12149 (origin
12150 (method url-fetch)
12151 (uri (crate-uri "inotify" version))
12152 (file-name
12153 (string-append name "-" version ".tar.gz"))
12154 (sha256
12155 (base32
12156 "0byhq4x4b2rlbkmfrab5dni39wiq2ls1hv1nhggp7rla5inwc5j8"))))
12157 (build-system cargo-build-system)
12158 (arguments
12159 `(#:cargo-inputs
12160 (("rust-bitflags" ,rust-bitflags-1)
12161 ("rust-futures" ,rust-futures-0.1)
12162 ("rust-inotify-sys" ,rust-inotify-sys-0.1)
12163 ("rust-libc" ,rust-libc-0.2)
12164 ("rust-mio" ,rust-mio-0.6)
12165 ("rust-tokio" ,rust-tokio-0.1)
12166 ("rust-tokio-io" ,rust-tokio-io-0.1)
12167 ("rust-tokio-reactor" ,rust-tokio-reactor-0.1))
12168 #:cargo-development-inputs
12169 (("rust-tempdir" ,rust-tempdir-0.3))))
12170 (home-page "https://github.com/inotify-rs/inotify")
12171 (synopsis "Idiomatic wrapper for inotify")
12172 (description "This package provides an idiomatic wrapper for inotify written
12173 in Rust.")
12174 (license license:isc)))
12175
12176 (define-public rust-inotify-0.6
12177 (package
12178 (inherit rust-inotify-0.7)
12179 (name "rust-inotify")
12180 (version "0.6.1")
12181 (source
12182 (origin
12183 (method url-fetch)
12184 (uri (crate-uri "inotify" version))
12185 (file-name
12186 (string-append name "-" version ".tar.gz"))
12187 (sha256
12188 (base32
12189 "0627k5aq44knjlrc09hl017nxap3svpl79przf26y3ciycwlbda0"))))
12190 (arguments
12191 `(#:cargo-inputs
12192 (("rust-bitflags" ,rust-bitflags-1)
12193 ("rust-futures" ,rust-futures-0.1)
12194 ("rust-inotify-sys" ,rust-inotify-sys-0.1)
12195 ("rust-libc" ,rust-libc-0.2)
12196 ("rust-mio" ,rust-mio-0.6)
12197 ("rust-tokio-io" ,rust-tokio-io-0.1)
12198 ("rust-tokio-reactor" ,rust-tokio-reactor-0.1))
12199 #:cargo-development-inputs
12200 (("rust-tempdir" ,rust-tempdir-0.3))))))
12201
12202 (define-public rust-inotify-sys-0.1
12203 (package
12204 (name "rust-inotify-sys")
12205 (version "0.1.3")
12206 (source
12207 (origin
12208 (method url-fetch)
12209 (uri (crate-uri "inotify-sys" version))
12210 (file-name
12211 (string-append name "-" version ".tar.gz"))
12212 (sha256
12213 (base32
12214 "1h2nwgajz80qddjm4mpma94zahxw84nscbycy9pgzbjrgjl1ljp7"))))
12215 (build-system cargo-build-system)
12216 (arguments
12217 `(#:cargo-inputs (("rust-libc" ,rust-libc-0.2))))
12218 (home-page "https://github.com/inotify-rs/inotify-sys")
12219 (synopsis "Inotify bindings for Rust")
12220 (description
12221 "This package provides inotify bindings for the Rust programming language.")
12222 (license license:isc)))
12223
12224 (define-public rust-insta-0.16
12225 (package
12226 (name "rust-insta")
12227 (version "0.16.1")
12228 (source
12229 (origin
12230 (method url-fetch)
12231 (uri (crate-uri "insta" version))
12232 (file-name (string-append name "-" version ".tar.gz"))
12233 (sha256
12234 (base32
12235 "1vhqlirp75nx8qalz87qk2wjs7mzwxww0n09n2ircgw1phd94zk1"))))
12236 (build-system cargo-build-system)
12237 (arguments
12238 `(#:cargo-inputs
12239 (("rust-backtrace" ,rust-backtrace-0.3)
12240 ("rust-console" ,rust-console-0.11)
12241 ("rust-difference" ,rust-difference-2)
12242 ("rust-globwalk" ,rust-globwalk-0.8)
12243 ("rust-lazy-static" ,rust-lazy-static-1)
12244 ("rust-pest" ,rust-pest-2)
12245 ("rust-pest-derive" ,rust-pest-derive-2)
12246 ("rust-ron" ,rust-ron-0.5)
12247 ("rust-serde" ,rust-serde-1)
12248 ("rust-serde-json" ,rust-serde-json-1)
12249 ("rust-serde-yaml" ,rust-serde-yaml-0.8))))
12250 (home-page "https://github.com/mitsuhiko/insta")
12251 (synopsis "Snapshot testing library for Rust")
12252 (description "This package provides a snapshot testing library for Rust.")
12253 (license license:asl2.0)))
12254
12255 (define-public rust-insta-0.8
12256 (package
12257 (inherit rust-insta-0.16)
12258 (name "rust-insta")
12259 (version "0.8.1")
12260 (source
12261 (origin
12262 (method url-fetch)
12263 (uri (crate-uri "insta" version))
12264 (file-name
12265 (string-append name "-" version ".tar.gz"))
12266 (sha256
12267 (base32
12268 "17rvqw9xm61prncbqi3cplphr3l2dl85sljdpyr3fz2mqjgbdfwb"))))
12269 (arguments
12270 `(#:skip-build? #t
12271 #:cargo-inputs
12272 (("rust-chrono" ,rust-chrono-0.4)
12273 ("rust-ci-info" ,rust-ci-info-0.3)
12274 ("rust-console" ,rust-console-0.7)
12275 ("rust-difference" ,rust-difference-2)
12276 ("rust-failure" ,rust-failure-0.1)
12277 ("rust-lazy-static" ,rust-lazy-static-1)
12278 ("rust-pest" ,rust-pest-2)
12279 ("rust-pest-derive" ,rust-pest-derive-2)
12280 ("rust-ron" ,rust-ron-0.4)
12281 ("rust-serde" ,rust-serde-1)
12282 ("rust-serde-json" ,rust-serde-json-1)
12283 ("rust-serde-yaml" ,rust-serde-yaml-0.8)
12284 ("rust-uuid" ,rust-uuid-0.7))))))
12285
12286 (define-public rust-instant-0.1
12287 (package
12288 (name "rust-instant")
12289 (version "0.1.4")
12290 (source
12291 (origin
12292 (method url-fetch)
12293 (uri (crate-uri "instant" version))
12294 (file-name
12295 (string-append name "-" version ".tar.gz"))
12296 (sha256
12297 (base32
12298 "10k1170waz1na056wvjvkps3lz28z9pc8kp8vpy4kpp53i5a4xvp"))))
12299 (build-system cargo-build-system)
12300 (arguments
12301 `(#:tests? #f ; Issue during the wasm test.
12302 #:cargo-inputs
12303 (("rust-js-sys" ,rust-js-sys-0.3)
12304 ("rust-stdweb" ,rust-stdweb-0.4)
12305 ("rust-time" ,rust-time-0.1)
12306 ("rust-wasm-bindgen" ,rust-wasm-bindgen-0.2)
12307 ("rust-web-sys" ,rust-web-sys-0.3))
12308 #:cargo-development-inputs
12309 (("rust-wasm-bindgen-test" ,rust-wasm-bindgen-test-0.2))))
12310 (home-page "https://github.com/sebcrozet/instant")
12311 (synopsis
12312 "Partial replacement for std::time::Instant that works on WASM too")
12313 (description
12314 "This package provides a partial replacement for @code{std::time::Instant}
12315 that works on WASM too.")
12316 (license license:bsd-3)))
12317
12318 (define-public rust-interpolate-name-0.2
12319 (package
12320 (name "rust-interpolate-name")
12321 (version "0.2.3")
12322 (source
12323 (origin
12324 (method url-fetch)
12325 (uri (crate-uri "interpolate_name" version))
12326 (file-name
12327 (string-append name "-" version ".tar.gz"))
12328 (sha256
12329 (base32
12330 "05vzsiqb69d1mbpaphcg4ifjsjs6g03b8pacskfcydqhh555zcxl"))))
12331 (build-system cargo-build-system)
12332 (arguments
12333 `(#:skip-build? #t
12334 #:cargo-inputs
12335 (("rust-proc-macro2" ,rust-proc-macro2-1)
12336 ("rust-syn" ,rust-syn-1)
12337 ("rust-quote" ,rust-quote-1))))
12338 (home-page "https://github.com/lu-zero/interpolate_name")
12339 (synopsis "Simple procedural macro attribute for repetitive tests")
12340 (description
12341 "Simple procedural macro attribute for repetitive tests.")
12342 (license license:expat)))
12343
12344 (define-public rust-interpolation-0.2
12345 (package
12346 (name "rust-interpolation")
12347 (version "0.2.0")
12348 (source
12349 (origin
12350 (method url-fetch)
12351 (uri (crate-uri "interpolation" version))
12352 (file-name
12353 (string-append name "-" version ".tar.gz"))
12354 (sha256
12355 (base32
12356 "00icvvgc72zdgyrwwg2p0wad4hry4d2vd6l9iqpyjpmw5dykbdyk"))))
12357 (build-system cargo-build-system)
12358 (arguments `(#:skip-build? #t))
12359 (home-page "https://github.com/pistondevelopers/interpolation")
12360 (synopsis "Library for interpolation")
12361 (description
12362 "This package provides a library for interpolation.")
12363 (license license:expat)))
12364
12365 (define-public rust-intervaltree-0.2
12366 (package
12367 (name "rust-intervaltree")
12368 (version "0.2.4")
12369 (source
12370 (origin
12371 (method url-fetch)
12372 (uri (crate-uri "intervaltree" version))
12373 (file-name
12374 (string-append name "-" version ".tar.gz"))
12375 (sha256
12376 (base32
12377 "10k40gsv79kwnsqrzwmnmm6psa5fqws8yggavmbggvymv16hffdg"))))
12378 (build-system cargo-build-system)
12379 (arguments
12380 `(#:skip-build? #t
12381 #:cargo-inputs
12382 (("rust-smallvec" ,rust-smallvec-0.6))))
12383 (home-page "https://github.com/main--/rust-intervaltree")
12384 (synopsis "Immutable interval trees")
12385 (description
12386 "This package provides a simple and generic implementation of an
12387 immutable interval tree.")
12388 (license license:expat)))
12389
12390 (define-public rust-iovec-0.1
12391 (package
12392 (name "rust-iovec")
12393 (version "0.1.4")
12394 (source
12395 (origin
12396 (method url-fetch)
12397 (uri (crate-uri "iovec" version))
12398 (file-name (string-append name "-" version ".crate"))
12399 (sha256
12400 (base32
12401 "0ph73qygwx8i0mblrf110cj59l00gkmsgrpzz1rm85syz5pymcxj"))))
12402 (build-system cargo-build-system)
12403 (arguments
12404 `(#:skip-build? #t
12405 #:cargo-inputs (("rust-libc" ,rust-libc-0.2))))
12406 (home-page "https://github.com/carllerche/iovec")
12407 (synopsis "Portable buffer type for scatter/gather I/O operations")
12408 (description
12409 "Portable buffer type for scatter/gather I/O operations.")
12410 (license (list license:asl2.0
12411 license:expat))))
12412
12413 (define-public rust-ipconfig-0.2
12414 (package
12415 (name "rust-ipconfig")
12416 (version "0.2.2")
12417 (source
12418 (origin
12419 (method url-fetch)
12420 (uri (crate-uri "ipconfig" version))
12421 (file-name (string-append name "-" version ".tar.gz"))
12422 (sha256
12423 (base32
12424 "1mzsagc6bk3i3fpggqlq8am5rxn4hgs297rsaya90w79xj5g3qpp"))))
12425 (build-system cargo-build-system)
12426 (arguments
12427 `(#:cargo-inputs
12428 (("rust-socket2" ,rust-socket2-0.3)
12429 ("rust-widestring" ,rust-widestring-0.4)
12430 ("rust-winapi" ,rust-winapi-0.3)
12431 ("rust-winreg" ,rust-winreg-0.6))))
12432 (home-page "https://github.com/liranringel/ipconfig")
12433 (synopsis "Get network adapters and configuration information for Windows")
12434 (description "This package lets you get network adapters information and
12435 network configuration for Windows.")
12436 (license (list license:expat license:asl2.0))))
12437
12438 (define-public rust-is-macro-0.1
12439 (package
12440 (name "rust-is-macro")
12441 (version "0.1.8")
12442 (source
12443 (origin
12444 (method url-fetch)
12445 (uri (crate-uri "is-macro" version))
12446 (file-name (string-append name "-" version ".tar.gz"))
12447 (sha256
12448 (base32
12449 "1vjh4sdpvx1kdf1znyk3b54gkyk7f8lsasc47ypkksp3r4ypz004"))))
12450 (build-system cargo-build-system)
12451 (arguments
12452 `(#:cargo-inputs
12453 (("rust-inflector" ,rust-inflector-0.11)
12454 ("rust-pmutil" ,rust-pmutil-0.5)
12455 ("rust-proc-macro2" ,rust-proc-macro2-1)
12456 ("rust-quote" ,rust-quote-1)
12457 ("rust-syn" ,rust-syn-1))))
12458 (home-page "https://github.com/kdy1/is-macro")
12459 (synopsis "Create methods to use custom enum like Option/Result")
12460 (description "This package lets you easily create methods to use a custom
12461 enum like Option/Result.")
12462 (license license:expat)))
12463
12464 (define-public rust-ipnet-2
12465 (package
12466 (name "rust-ipnet")
12467 (version "2.3.0")
12468 (source
12469 (origin
12470 (method url-fetch)
12471 (uri (crate-uri "ipnet" version))
12472 (file-name (string-append name "-" version ".tar.gz"))
12473 (sha256
12474 (base32
12475 "0db147nh8jnxr23yxa7hwqn7dcjivdqi3aq4mgf2zgkqqqa2zgj7"))))
12476 (build-system cargo-build-system)
12477 (arguments
12478 `(#:cargo-inputs
12479 (("rust-serde" ,rust-serde-1))
12480 #:cargo-development-inputs
12481 (("rust-serde-test" ,rust-serde-test-1))))
12482 (home-page "https://github.com/krisprice/ipnet")
12483 (synopsis "Work with IPv4 and IPv6 network addresses")
12484 (description "This package provides types and useful methods for working
12485 with IPv4 and IPv6 network addresses, commonly called IP prefixes. The new
12486 IpNet, Ipv4Net, and Ipv6Net types build on the existing IpAddr, Ipv4Addr, and
12487 Ipv6Addr types already provided in Rust's standard library and align to their
12488 design to stay consistent. The module also provides useful traits that extend
12489 Ipv4Addr and Ipv6Addr with methods for Add, Sub, BitAnd, and BitOr operations.
12490 The module only uses stable feature so it is guaranteed to compile using the
12491 stable toolchain.")
12492 (license (list license:expat license:asl2.0))))
12493
12494 (define-public rust-ipnetwork-0.17
12495 (package
12496 (name "rust-ipnetwork")
12497 (version "0.17.0")
12498 (source
12499 (origin
12500 (method url-fetch)
12501 (uri (crate-uri "ipnetwork" version))
12502 (file-name (string-append name "-" version ".tar.gz"))
12503 (sha256
12504 (base32
12505 "0sviri9ksb3cmhx3h0rcfy8pvpx7f0cx5ba1z87ydvf07amymhq2"))))
12506 (build-system cargo-build-system)
12507 (arguments
12508 `(#:cargo-inputs
12509 (("rust-serde" ,rust-serde-1))
12510 #:cargo-development-inputs
12511 (("rust-criterion" ,rust-criterion-0.3)
12512 ("rust-serde-derive" ,rust-serde-derive-1)
12513 ("rust-serde-json" ,rust-serde-json-1))))
12514 (home-page "https://crates.io/crates/ipnetwork")
12515 (synopsis "Work with IP CIDRs in Rust")
12516 (description "This package provides a library to work with IP CIDRs in
12517 Rust.")
12518 (license (list license:expat license:asl2.0))))
12519
12520 (define-public rust-is-executable
12521 (package
12522 (name "rust-is-executable")
12523 (version "0.1.2")
12524 (source
12525 (origin
12526 (method url-fetch)
12527 (uri (crate-uri "is_executable" version))
12528 (file-name
12529 (string-append name "-" version ".tar.gz"))
12530 (sha256
12531 (base32
12532 "0xy516afjh79a0d53j9v4w5mgi2s0r6f6qynnyz8g0dwi8xmab9h"))))
12533 (build-system cargo-build-system)
12534 (arguments
12535 `(;; One test tries to invoke 'cargo readme' which does not exist and aborts.
12536 #:phases
12537 (modify-phases %standard-phases
12538 (add-after 'unpack 'patch-test
12539 (lambda _
12540 (substitute* "tests/tests.rs"
12541 (("panic!\\(\"Run `cargo readme > README.md` to update README.md\"\\)")
12542 "return;"))
12543 #t)))
12544 #:cargo-inputs
12545 (("rust-diff" ,rust-diff-0.1)
12546 ("rust-winapi" ,rust-winapi-0.3))))
12547 (home-page "https://github.com/fitzgen/is_executable")
12548 (synopsis "Find executable files at path")
12549 (description
12550 "This package provides a small helper function which determines
12551 whether or not a given path points to an executable file.")
12552 (license (list license:expat license:asl2.0))))
12553
12554 (define-public rust-iso8601-0.1
12555 (package
12556 (name "rust-iso8601")
12557 (version "0.1.1")
12558 (source
12559 (origin
12560 (method url-fetch)
12561 (uri (crate-uri "iso8601" version))
12562 (file-name
12563 (string-append name "-" version ".tar.gz"))
12564 (sha256
12565 (base32
12566 "0xy48qyfmirslaj4dy6n4g8b564jap3cjiql35fmj5vgii7ldp0i"))))
12567 (build-system cargo-build-system)
12568 (arguments
12569 `(#:cargo-inputs
12570 (("rust-clippy" ,rust-clippy-0.0)
12571 ("rust-nom" ,rust-nom-1.2))))
12572 (home-page "https://github.com/badboy/iso8601")
12573 (synopsis "Parsing ISO8601 dates using nom")
12574 (description "Parsing ISO8601 dates using nom.")
12575 (license license:expat)))
12576
12577 (define-public rust-itertools-0.9
12578 (package
12579 (name "rust-itertools")
12580 (version "0.9.0")
12581 (source
12582 (origin
12583 (method url-fetch)
12584 (uri (crate-uri "itertools" version))
12585 (file-name
12586 (string-append name "-" version ".tar.gz"))
12587 (sha256
12588 (base32
12589 "0jyml7ygr7kijkcjdl3fk5f34y5h5jsavclim7l13zjiavw1hkr8"))))
12590 (build-system cargo-build-system)
12591 (arguments
12592 `(#:cargo-inputs
12593 (("rust-either" ,rust-either-1))
12594 #:cargo-development-inputs
12595 (("rust-criterion" ,rust-criterion-0.3)
12596 ("rust-permutohedron" ,rust-permutohedron-0.2)
12597 ("rust-quickcheck" ,rust-quickcheck-0.9)
12598 ("rust-rand" ,rust-rand-0.7))
12599 #:phases
12600 (modify-phases %standard-phases
12601 (add-after 'unpack 'patch-cargo-toml
12602 (lambda _
12603 (substitute* "Cargo.toml"
12604 (("=0.3.0") "0.3"))
12605 #t)))))
12606 (home-page
12607 "https://github.com/rust-itertools/itertools")
12608 (synopsis
12609 "Extra iterator adaptors, iterator methods, free functions, and macros")
12610 (description
12611 "Extra iterator adaptors, iterator methods, free functions, and macros.")
12612 (license (list license:expat license:asl2.0))))
12613
12614 (define-public rust-itertools-0.8
12615 (package
12616 (inherit rust-itertools-0.9)
12617 (name "rust-itertools")
12618 (version "0.8.2")
12619 (source
12620 (origin
12621 (method url-fetch)
12622 (uri (crate-uri "itertools" version))
12623 (file-name
12624 (string-append name "-" version ".tar.gz"))
12625 (sha256
12626 (base32
12627 "1154j48aw913v5jnyhpxialxhdn2sfpl4d7bwididyb1r05jsspm"))))
12628 (arguments
12629 `(#:skip-build? #t
12630 #:cargo-inputs
12631 (("rust-either" ,rust-either-1))
12632 #:cargo-development-inputs
12633 (("rust-permutohedron" ,rust-permutohedron-0.2)
12634 ("rust-quickcheck" ,rust-quickcheck-0.7)
12635 ("rust-rand" ,rust-rand-0.6))))))
12636
12637 (define-public rust-itertools-0.7
12638 (package
12639 (inherit rust-itertools-0.8)
12640 (name "rust-itertools")
12641 (version "0.7.11")
12642 (source
12643 (origin
12644 (method url-fetch)
12645 (uri (crate-uri "itertools" version))
12646 (file-name (string-append name "-" version ".tar.gz"))
12647 (sha256
12648 (base32
12649 "03cpsj26xmyamcalclqzr1i700vwx8hnbgxbpjvs354f8mnr8iqd"))))
12650 (arguments
12651 `(#:cargo-inputs
12652 (("rust-either" ,rust-either-1))
12653 #:cargo-development-inputs
12654 (("rust-permutohedron" ,rust-permutohedron-0.2)
12655 ("rust-quickcheck" ,rust-quickcheck-0.5))))))
12656
12657 (define-public rust-itertools-0.5
12658 (package
12659 (inherit rust-itertools-0.7)
12660 (name "rust-itertools")
12661 (version "0.5.10")
12662 (source
12663 (origin
12664 (method url-fetch)
12665 (uri (crate-uri "itertools" version))
12666 (file-name (string-append name "-" version ".tar.gz"))
12667 (sha256
12668 (base32
12669 "1z4lyrakgynvhylya72qb3vizmxmd62whjmg4r8k01d4inbxccs8"))))
12670 (arguments
12671 `(#:tests? #f ; Tests fail to compile
12672 #:cargo-inputs
12673 (("rust-either" ,rust-either-1))
12674 #:cargo-development-inputs
12675 (("rust-permutohedron" ,rust-permutohedron-0.2)
12676 ("rust-quickcheck" ,rust-quickcheck-0.4))))))
12677
12678 (define-public rust-itertools-num-0.1
12679 (package
12680 (name "rust-itertools-num")
12681 (version "0.1.3")
12682 (source
12683 (origin
12684 (method url-fetch)
12685 (uri (crate-uri "itertools-num" version))
12686 (file-name
12687 (string-append name "-" version ".tar.gz"))
12688 (sha256
12689 (base32
12690 "1rr7ig9nkpampcas23s91x7yac6qdnwssq3nap522xbgkqps4wm8"))))
12691 (build-system cargo-build-system)
12692 (arguments
12693 `(#:skip-build? #t
12694 #:cargo-inputs
12695 (("rust-num-traits" ,rust-num-traits-0.2))
12696 #:cargo-development-inputs
12697 (("rust-itertools" ,rust-itertools-0.8)
12698 ("rust-quickcheck" ,rust-quickcheck-0.8))))
12699 (home-page
12700 "https://github.com/bluss/itertools-num")
12701 (synopsis
12702 "Numerical iterator tools")
12703 (description
12704 "Numerical iterator tools. Extra iterators and iterator methods
12705 and functions.")
12706 (license (list license:expat license:asl2.0))))
12707
12708 (define-public rust-itoa-0.4
12709 (package
12710 (name "rust-itoa")
12711 (version "0.4.5")
12712 (source
12713 (origin
12714 (method url-fetch)
12715 (uri (crate-uri "itoa" version))
12716 (file-name (string-append name "-" version ".crate"))
12717 (sha256
12718 (base32
12719 "13nxqrfnh83a7x5rw4wq2ilp8nxvwy74dxzysdg59dbxqk0agdxq"))))
12720 (build-system cargo-build-system)
12721 (home-page "https://github.com/dtolnay/itoa")
12722 (synopsis "Fast functions for printing integer primitives")
12723 (description "This crate provides fast functions for printing integer
12724 primitives to an @code{io::Write}.")
12725 (license (list license:asl2.0
12726 license:expat))))
12727
12728 (define-public rust-itoa-0.3
12729 (package
12730 (inherit rust-itoa-0.4)
12731 (name "rust-itoa")
12732 (version "0.3.4")
12733 (source
12734 (origin
12735 (method url-fetch)
12736 (uri (crate-uri "itoa" version))
12737 (file-name
12738 (string-append name "-" version ".tar.gz"))
12739 (sha256
12740 (base32
12741 "136vwi6l2k1vrlvfx49lhficj813pk88xrcx1q3axqh1mwms6943"))))))
12742
12743 (define-public rust-itoa-0.1
12744 (package
12745 (inherit rust-itoa-0.4)
12746 (name "rust-itoa")
12747 (version "0.1.1")
12748 (source
12749 (origin
12750 (method url-fetch)
12751 (uri (crate-uri "itoa" version))
12752 (file-name (string-append name "-" version ".crate"))
12753 (sha256
12754 (base32
12755 "18g7p2hrb3dk84z3frfgmszfc9hjb4ps9vp99qlb1kmf9gm8hc5f"))))))
12756
12757 (define-public rust-ivf-0.1
12758 (package
12759 (name "rust-ivf")
12760 (version "0.1.0")
12761 (source
12762 (origin
12763 (method url-fetch)
12764 (uri (crate-uri "ivf" version))
12765 (file-name
12766 (string-append name "-" version ".tar.gz"))
12767 (sha256
12768 (base32
12769 "1wfjf3rilqavrhvwagzinvng9dg28wcjk3c6c6p5qmc1xy65qfh1"))))
12770 (build-system cargo-build-system)
12771 (arguments
12772 `(#:skip-build? #t
12773 #:cargo-inputs
12774 (("rust-bitstream-io" ,rust-bitstream-io-0.8))))
12775 (home-page "https://github.com/xiph/rav1e")
12776 (synopsis "Simple ivf muxer")
12777 (description "This package provides a simple ivf muxer.")
12778 (license license:bsd-2)))
12779
12780 (define-public rust-jemalloc-sys-0.3
12781 (package
12782 (name "rust-jemalloc-sys")
12783 (version "0.3.2")
12784 (source
12785 (origin
12786 (method url-fetch)
12787 (uri (crate-uri "jemalloc-sys" version))
12788 (file-name (string-append name "-" version ".tar.gz"))
12789 (sha256
12790 (base32
12791 "0ify9vlql01qhfxlj7d4p9jvcp90mj2h69nkbq7slccvbhzryfqd"))
12792 (modules '((guix build utils)))
12793 (snippet
12794 '(begin (delete-file-recursively "jemalloc") #t))))
12795 (build-system cargo-build-system)
12796 (arguments
12797 `(#:cargo-inputs
12798 (("rust-libc" ,rust-libc-0.2)
12799 ;; Build dependencies:
12800 ("rust-cc" ,rust-cc-1)
12801 ("rust-fs-extra" ,rust-fs-extra-1.1))
12802 #:phases
12803 (modify-phases %standard-phases
12804 (add-after 'configure 'override-jemalloc
12805 (lambda* (#:key inputs #:allow-other-keys)
12806 (let ((jemalloc (assoc-ref inputs "jemalloc")))
12807 (setenv "JEMALLOC_OVERRIDE"
12808 (string-append jemalloc "/lib/libjemalloc_pic.a")))
12809 #t)))))
12810 (native-inputs
12811 `(("jemalloc" ,jemalloc)))
12812 (home-page "https://github.com/gnzlbg/jemallocator")
12813 (synopsis "Rust FFI bindings to jemalloc")
12814 (description "This package provides Rust FFI bindings to jemalloc.")
12815 (license (list license:asl2.0
12816 license:expat))))
12817
12818 (define-public rust-jemalloc-sys-0.1
12819 (package
12820 (inherit rust-jemalloc-sys-0.3)
12821 (name "rust-jemalloc-sys")
12822 (version "0.1.8")
12823 (source
12824 (origin
12825 (method url-fetch)
12826 (uri (crate-uri "jemalloc-sys" version))
12827 (file-name
12828 (string-append name "-" version ".tar.gz"))
12829 (sha256
12830 (base32
12831 "1bh07rlzgg39ys1lsgnpxgvjj6blagp2h17fx267d0g3a272rimz"))
12832 (modules '((guix build utils)))
12833 (snippet
12834 '(begin (delete-file-recursively "jemalloc") #t))))))
12835
12836 (define-public rust-jemallocator-0.3
12837 (package
12838 (name "rust-jemallocator")
12839 (version "0.3.2")
12840 (source
12841 (origin
12842 (method url-fetch)
12843 (uri (crate-uri "jemallocator" version))
12844 (file-name
12845 (string-append name "-" version ".tar.gz"))
12846 (sha256
12847 (base32
12848 "0sabfa5118b7l4ars5n36s2fjyfn59w4d6mjs6rrmsa5zky67bj3"))))
12849 (build-system cargo-build-system)
12850 (arguments
12851 `(#:skip-build? #t
12852 #:cargo-inputs
12853 (("rust-jemalloc-sys" ,rust-jemalloc-sys-0.3)
12854 ("rust-libc" ,rust-libc-0.2))
12855 #:cargo-development-inputs
12856 (("rust-paste" ,rust-paste-0.1))))
12857 (home-page "https://github.com/gnzlbg/jemallocator")
12858 (synopsis "Rust allocator backed by jemalloc")
12859 (description
12860 "This package provides a Rust allocator backed by jemalloc.")
12861 (license (list license:expat license:asl2.0))))
12862
12863 (define-public rust-jemallocator-0.1
12864 (package
12865 (inherit rust-jemallocator-0.3)
12866 (name "rust-jemallocator")
12867 (version "0.1.9")
12868 (source
12869 (origin
12870 (method url-fetch)
12871 (uri (crate-uri "jemallocator" version))
12872 (file-name
12873 (string-append name "-" version ".tar.gz"))
12874 (sha256
12875 (base32
12876 "1csabk36p06nlh3qxxsg6nkf074b2jq2cld5zriq0xazqqmd834z"))))
12877 (build-system cargo-build-system)
12878 (arguments
12879 `(#:cargo-inputs
12880 (("rust-jemalloc-sys" ,rust-jemalloc-sys-0.1)
12881 ("rust-libc" ,rust-libc-0.2))
12882 #:phases
12883 (modify-phases %standard-phases
12884 (add-after 'configure 'override-jemalloc
12885 (lambda* (#:key inputs #:allow-other-keys)
12886 (let ((jemalloc (assoc-ref inputs "jemalloc")))
12887 (setenv "JEMALLOC_OVERRIDE"
12888 (string-append jemalloc "/lib/libjemalloc_pic.a")))
12889 #t)))))
12890 (native-inputs
12891 `(("jemalloc" ,jemalloc)))))
12892
12893 (define-public rust-jobserver-0.1
12894 (package
12895 (name "rust-jobserver")
12896 (version "0.1.19")
12897 (source
12898 (origin
12899 (method url-fetch)
12900 (uri (crate-uri "jobserver" version))
12901 (file-name
12902 (string-append name "-" version ".tar.gz"))
12903 (sha256
12904 (base32
12905 "1q2w80v8p2pbfm8ayhjs6zi11a1hp4535z4ck8kg872z8ldnrc37"))))
12906 (build-system cargo-build-system)
12907 (arguments
12908 `(#:cargo-inputs
12909 (("rust-libc" ,rust-libc-0.2))
12910 #:cargo-development-inputs
12911 (("rust-futures" ,rust-futures-0.1)
12912 ("rust-num-cpus" ,rust-num-cpus-1)
12913 ("rust-tempdir" ,rust-tempdir-0.3)
12914 ("rust-tokio-core" ,rust-tokio-core-0.1)
12915 ("rust-tokio-process" ,rust-tokio-process-0.2))))
12916 (home-page "https://github.com/alexcrichton/jobserver-rs")
12917 (synopsis "GNU make jobserver for Rust")
12918 (description
12919 "An implementation of the GNU make jobserver for Rust.")
12920 (license (list license:expat license:asl2.0))))
12921
12922 (define-public rust-js-sys-0.3
12923 (package
12924 (name "rust-js-sys")
12925 (version "0.3.37")
12926 (source
12927 (origin
12928 (method url-fetch)
12929 (uri (crate-uri "js-sys" version))
12930 (file-name
12931 (string-append name "-" version ".tar.gz"))
12932 (sha256
12933 (base32
12934 "0mbhpbw3zjjl51m24qx3ilq4y8xipm5sfa5hsavaabqs6wsx89va"))))
12935 (build-system cargo-build-system)
12936 (arguments
12937 `(#:skip-build? #t
12938 #:cargo-inputs
12939 (("rust-wasm-bindgen" ,rust-wasm-bindgen-0.2))
12940 #:cargo-development-inputs
12941 (("rust-wasm-bindgen-futures" ,rust-wasm-bindgen-futures-0.4)
12942 ("rust-wasm-bindgen-test" ,rust-wasm-bindgen-test-0.3))))
12943 (home-page "https://rustwasm.github.io/wasm-bindgen/")
12944 (synopsis "Bindings for all JS global objects and functions in WASM")
12945 (description
12946 "Bindings for all JS global objects and functions in all JS environments
12947 like Node.js and browsers, built on @code{#[wasm_bindgen]} using the
12948 wasm-bindgen crate.")
12949 (license (list license:asl2.0 license:expat))))
12950
12951 (define-public rust-json-0.11
12952 (package
12953 (name "rust-json")
12954 (version "0.11.15")
12955 (source
12956 (origin
12957 (method url-fetch)
12958 (uri (crate-uri "json" version))
12959 (file-name (string-append name "-" version ".crate"))
12960 (sha256
12961 (base32
12962 "1rg9jxf6bpbwis3ixd5ak8rp37him7n4z8awz4ssrxl6hyplbhlj"))))
12963 (build-system cargo-build-system)
12964 (arguments '(#:skip-build? #t))
12965 (home-page "https://github.com/maciejhirsz/json-rust")
12966 (synopsis "JSON implementation in Rust")
12967 (description "This crate provides a JSON implementation in Rust, reducing
12968 friction with idiomatic Rust structs to ease interopability.")
12969 (license (list license:asl2.0
12970 license:expat))))
12971
12972 (define-public rust-kernel32-sys-0.2
12973 (package
12974 (name "rust-kernel32-sys")
12975 (version "0.2.2")
12976 (source
12977 (origin
12978 (method url-fetch)
12979 (uri (crate-uri "kernel32-sys" version))
12980 (file-name (string-append name "-" version ".crate"))
12981 (sha256
12982 (base32
12983 "1389av0601a9yz8dvx5zha9vmkd6ik7ax0idpb032d28555n41vm"))))
12984 (build-system cargo-build-system)
12985 (arguments
12986 `(#:skip-build? #t
12987 #:cargo-inputs
12988 (("rust-winapi" ,rust-winapi-0.2)
12989 ("rust-winapi-build" ,rust-winapi-build-0.1))))
12990 (home-page "https://github.com/retep998/winapi-rs")
12991 (synopsis "Function definitions for the Windows API library kernel32")
12992 (description "Contains function definitions for the Windows API library
12993 kernel32.")
12994 (license license:expat)))
12995
12996 (define-public rust-khronos-api-3
12997 (package
12998 (name "rust-khronos-api")
12999 (version "3.1.0")
13000 (source
13001 (origin
13002 (method url-fetch)
13003 (uri (crate-uri "khronos-api" version))
13004 (file-name
13005 (string-append name "-" version ".tar.gz"))
13006 (sha256
13007 (base32
13008 "1p0xj5mlbagqyvvnv8wmv3cr7l9y1m153888pxqwg3vk3mg5inz2"))))
13009 (build-system cargo-build-system)
13010 (home-page "https://github.com/brendanzab/gl-rs/")
13011 (synopsis "Khronos XML API Registry")
13012 (description
13013 "The Khronos XML API Registry, exposed as byte string constants.")
13014 (license license:asl2.0)))
13015
13016 (define-public rust-language-tags-0.2
13017 (package
13018 (name "rust-language-tags")
13019 (version "0.2.2")
13020 (source
13021 (origin
13022 (method url-fetch)
13023 (uri (crate-uri "language-tags" version))
13024 (file-name (string-append name "-" version ".crate"))
13025 (sha256
13026 (base32
13027 "16hrjdpa827carq5x4b8zhas24d8kg4s16m6nmmn1kb7cr5qh7d9"))))
13028 (build-system cargo-build-system)
13029 (arguments
13030 `(#:skip-build? #t
13031 #:cargo-inputs
13032 (("rust-heapsize" ,rust-heapsize-0.3)
13033 ("rust-heapsize-plugin" ,rust-heapsize-plugin-0.1))))
13034 (home-page "https://github.com/pyfisch/rust-language-tags")
13035 (synopsis "Language tags for Rust")
13036 (description
13037 "Language tags can be used identify human languages, scripts e.g. Latin
13038 script, countries and other regions. They are commonly used in HTML and HTTP
13039 @code{Content-Language} and @code{Accept-Language} header fields. This package
13040 currently supports parsing (fully conformant parser), formatting and comparing
13041 language tags.")
13042 (license license:expat)))
13043
13044 (define-public rust-lab-0.8
13045 (package
13046 (name "rust-lab")
13047 (version "0.8.1")
13048 (source
13049 (origin
13050 (method url-fetch)
13051 (uri (crate-uri "lab" version))
13052 (file-name
13053 (string-append name "-" version ".tar.gz"))
13054 (sha256
13055 (base32
13056 "1ysnbviwi35mq6xyz9c59mpgigyfp4s4y2mispxzrms4vk83bx15"))))
13057 (build-system cargo-build-system)
13058 (arguments
13059 `(#:cargo-development-inputs
13060 (("rust-approx" ,rust-approx-0.3)
13061 ("rust-criterion" ,rust-criterion-0.3)
13062 ("rust-lazy-static" ,rust-lazy-static-1)
13063 ("rust-pretty-assertions" ,rust-pretty-assertions-0.6)
13064 ("rust-rand" ,rust-rand-0.5))))
13065 (home-page "https://github.com/TooManyBees/lab")
13066 (synopsis "Convert RGB to CIE-LAB for Rust")
13067 (description
13068 "This package contains tools for converting RGB colors to the CIE-LAB color
13069 space, and comparing differences in color.")
13070 (license license:expat)))
13071
13072 (define-public rust-lab-0.7
13073 (package
13074 (inherit rust-lab-0.8)
13075 (name "rust-lab")
13076 (version "0.7.2")
13077 (source
13078 (origin
13079 (method url-fetch)
13080 (uri (crate-uri "lab" version))
13081 (file-name
13082 (string-append name "-" version ".tar.gz"))
13083 (sha256
13084 (base32
13085 "0g692d489lq01pv3mzfhxd98j0r22lw28l6bk112m74djlfzxdmw"))))
13086 (arguments
13087 `(#:tests? #f ; test suite assumes avx2 support
13088 #:cargo-development-inputs
13089 (("rust-criterion" ,rust-criterion-0.3)
13090 ("rust-lazy-static" ,rust-lazy-static-1)
13091 ("rust-pretty-assertions" ,rust-pretty-assertions-0.6)
13092 ("rust-rand" ,rust-rand-0.5))))))
13093
13094 (define-public rust-lab-0.4
13095 (package
13096 (inherit rust-lab-0.8)
13097 (name "rust-lab")
13098 (version "0.4.4")
13099 (source
13100 (origin
13101 (method url-fetch)
13102 (uri (crate-uri "lab" version))
13103 (file-name
13104 (string-append name "-" version ".tar.gz"))
13105 (sha256
13106 (base32
13107 "0h4ig5bvzmwlzd74zj7b4sh7kzi3c6mjjnw7yjz8ijxvr4mrcr1s"))))
13108 (arguments
13109 `(#:cargo-development-inputs
13110 (("rust-rand" ,rust-rand-0.3))))))
13111
13112 (define-public rust-lalrpop-0.17
13113 (package
13114 (name "rust-lalrpop")
13115 (version "0.17.2")
13116 (source
13117 (origin
13118 (method url-fetch)
13119 (uri (crate-uri "lalrpop" version))
13120 (file-name (string-append name "-" version ".tar.gz"))
13121 (sha256
13122 (base32 "1nv7ma8cgw3r1fcma7gy06fwwlpl4fkz91mxv5kjhiaxwyc3dp34"))))
13123 (build-system cargo-build-system)
13124 (arguments
13125 `(#:cargo-inputs
13126 (("rust-ascii-canvas" ,rust-ascii-canvas-2)
13127 ("rust-atty" ,rust-atty-0.2)
13128 ("rust-bit-set" ,rust-bit-set-0.5)
13129 ("rust-diff" ,rust-diff-0.1)
13130 ("rust-docopt" ,rust-docopt-1.1)
13131 ("rust-ena" ,rust-ena-0.13)
13132 ("rust-itertools" ,rust-itertools-0.8)
13133 ("rust-lalrpop-util" ,rust-lalrpop-util-0.17)
13134 ("rust-petgraph" ,rust-petgraph-0.4)
13135 ("rust-regex" ,rust-regex-1)
13136 ("rust-regex-syntax" ,rust-regex-syntax-0.6)
13137 ("rust-serde" ,rust-serde-1)
13138 ("rust-serde-derive" ,rust-serde-derive-1)
13139 ("rust-sha2" ,rust-sha2-0.8)
13140 ("rust-string-cache" ,rust-string-cache-0.7)
13141 ("rust-term" ,rust-term-0.5)
13142 ("rust-unicode-xid" ,rust-unicode-xid-0.2))
13143 #:cargo-development-inputs
13144 (("rust-rand" ,rust-rand-0.6))))
13145 (home-page "https://github.com/lalrpop/lalrpop")
13146 (synopsis "Convenient LR(1) parser generator for Rust")
13147 (description "LALRPOP is a Rust parser generator framework with usability
13148 as its primary goal. You should be able to write compact, DRY, readable
13149 grammars.")
13150 (license (list license:asl2.0 license:expat))))
13151
13152 (define-public rust-lalrpop-util-0.17
13153 (package
13154 (name "rust-lalrpop-util")
13155 (version "0.17.2")
13156 (source
13157 (origin
13158 (method url-fetch)
13159 (uri (crate-uri "lalrpop-util" version))
13160 (file-name (string-append name "-" version ".tar.gz"))
13161 (sha256
13162 (base32 "0z4bjn3g9232n1im5p6mn9mwlvw5aj5iac6hbjmljqxkhf3d2xy2"))))
13163 (build-system cargo-build-system)
13164 (arguments
13165 `(#:cargo-inputs
13166 (("rust-regex" ,rust-regex-1))))
13167 (home-page "https://github.com/lalrpop/lalrpop")
13168 (synopsis "Runtime library for parsers generated by LALRPOP")
13169 (description "THis package provides the runtime library for parsers
13170 generated by LALRPOP.")
13171 (license (list license:asl2.0 license:expat))))
13172
13173 (define-public rust-lazy-static-1.4
13174 (package
13175 (name "rust-lazy-static")
13176 (version "1.4.0")
13177 (source
13178 (origin
13179 (method url-fetch)
13180 (uri (crate-uri "lazy_static" version))
13181 (file-name (string-append name "-" version ".crate"))
13182 (sha256
13183 (base32
13184 "0in6ikhw8mgl33wjv6q6xfrb5b9jr16q8ygjy803fay4zcisvaz2"))))
13185 (build-system cargo-build-system)
13186 (arguments
13187 `(#:cargo-inputs (("rust-spin" ,rust-spin-0.5))
13188 #:cargo-development-inputs
13189 (("rust-doc-comment" ,rust-doc-comment-0.3))))
13190 (home-page "https://github.com/rust-lang-nursery/lazy-static.rs")
13191 (synopsis "Macro for declaring lazily evaluated statics in Rust")
13192 (description
13193 "This package provides a macro for declaring lazily evaluated statics in
13194 Rust. Using this macro, it is possible to have @code{static}s that require code
13195 to be executed at runtime in order to be initialized. This includes anything
13196 requiring heap allocations, like vectors or hash maps, as well as anything that
13197 requires non-const function calls to be computed.")
13198 (license (list license:asl2.0
13199 license:expat))))
13200
13201 (define-public rust-lazy-static-1 rust-lazy-static-1.4)
13202
13203 (define-public rust-lazy-static-1.3
13204 (package
13205 (inherit rust-lazy-static-1.4)
13206 (name "rust-lazy-static")
13207 (version "1.3.0")
13208 (source
13209 (origin
13210 (method url-fetch)
13211 (uri (crate-uri "lazy_static" version))
13212 (file-name (string-append name "-" version ".crate"))
13213 (sha256
13214 (base32
13215 "052ac27w189hrf1j3hz7sga46rp84zl2hqnzyihxv78mgzr2jmxw"))))
13216 (arguments
13217 `(#:cargo-inputs (("rust-spin" ,rust-spin-0.5))))))
13218
13219 (define-public rust-lazy-static-0.2
13220 (package
13221 (inherit rust-lazy-static-1.4)
13222 (name "rust-lazy-static")
13223 (version "0.2.11")
13224 (source
13225 (origin
13226 (method url-fetch)
13227 (uri (crate-uri "lazy_static" version))
13228 (file-name
13229 (string-append name "-" version ".tar.gz"))
13230 (sha256
13231 (base32
13232 "0wxy8vak7jsx6r8gx475pjqpx11p2bfq4wvw6idmqi31mp3k7w3n"))))
13233 (arguments
13234 `(#:tests? #f ; Tests fail to compile.
13235 #:cargo-inputs
13236 (("rust-compiletest-rs" ,rust-compiletest-rs-0.3)
13237 ("rust-spin" ,rust-spin-0.4))))))
13238
13239 (define-public rust-lazy-static-0.1
13240 (package
13241 (inherit rust-lazy-static-0.2)
13242 (name "rust-lazy-static")
13243 (version "0.1.16")
13244 (source
13245 (origin
13246 (method url-fetch)
13247 (uri (crate-uri "lazy_static" version))
13248 (file-name
13249 (string-append name "-" version ".tar.gz"))
13250 (sha256
13251 (base32
13252 "05vl1h4b0iv800grsdyc3fg2bq29p70wjav6zpjvxxd5i8d6s66g"))))
13253 (arguments '())))
13254
13255 (define-public rust-lazycell-1
13256 (package
13257 (name "rust-lazycell")
13258 (version "1.2.1")
13259 (source
13260 (origin
13261 (method url-fetch)
13262 (uri (crate-uri "lazycell" version))
13263 (file-name
13264 (string-append name "-" version ".tar.gz"))
13265 (sha256
13266 (base32
13267 "0gvqycmpv7parc98i6y64ai7rvxrn1947z2a6maa02g4kvxdd55j"))))
13268 (build-system cargo-build-system)
13269 (arguments
13270 `(#:skip-build? #t
13271 #:cargo-inputs (("rust-clippy" ,rust-clippy-0.0))))
13272 (home-page "https://github.com/indiv0/lazycell")
13273 (synopsis "Lazily filled Cell struct")
13274 (description
13275 "This package provides a library providing a lazily filled Cell struct.")
13276 (license (list license:expat license:asl2.0))))
13277
13278 (define-public rust-lexical-core-0.7
13279 (package
13280 (name "rust-lexical-core")
13281 (version "0.7.4")
13282 (source
13283 (origin
13284 (method url-fetch)
13285 (uri (crate-uri "lexical-core" version))
13286 (file-name
13287 (string-append name "-" version ".tar.gz"))
13288 (sha256
13289 (base32
13290 "05i6b69ay8xbxw88vx89vglb7xm5n8ky82hax7d5a7z60bdccrfv"))))
13291 (build-system cargo-build-system)
13292 (arguments
13293 `(#:cargo-inputs
13294 (("rust-arrayvec" ,rust-arrayvec-0.5)
13295 ("rust-bitflags" ,rust-bitflags-1)
13296 ("rust-cfg-if" ,rust-cfg-if-0.1)
13297 ("rust-dtoa" ,rust-dtoa-0.4)
13298 ("rust-ryu" ,rust-ryu-1.0)
13299 ("rust-static-assertions" ,rust-static-assertions-1))
13300 #:cargo-development-inputs
13301 (("rust-approx" ,rust-approx-0.3)
13302 ("rust-proptest" ,rust-proptest-0.9)
13303 ("rust-quickcheck" ,rust-quickcheck-0.9))))
13304 (home-page
13305 "https://github.com/Alexhuszagh/rust-lexical/tree/master/lexical-core")
13306 (synopsis
13307 "Lexical, to- and from-string conversion routines")
13308 (description
13309 "Lexical, to- and from-string conversion routines.")
13310 (license (list license:expat license:asl2.0))))
13311
13312 (define-public rust-lexical-core-0.4
13313 (package
13314 (inherit rust-lexical-core-0.7)
13315 (name "rust-lexical-core")
13316 (version "0.4.2")
13317 (source
13318 (origin
13319 (method url-fetch)
13320 (uri (crate-uri "lexical-core" version))
13321 (file-name
13322 (string-append name "-" version ".tar.gz"))
13323 (sha256
13324 (base32
13325 "1gr5y3ykghd3wjc00l3iizkj1dxylyhwi6fj6yn2qg06nzx771iz"))))
13326 (arguments
13327 `(#:skip-build? #t
13328 #:cargo-inputs
13329 (("rust-cfg-if" ,rust-cfg-if-0.1)
13330 ("rust-dtoa" ,rust-dtoa-0.4)
13331 ("rust-ryu" ,rust-ryu-1.0)
13332 ("rust-stackvector" ,rust-stackvector-1.0)
13333 ("rust-static-assertions" ,rust-static-assertions-0.3))
13334 #:cargo-development-inputs
13335 (("rust-approx" ,rust-approx-0.3)
13336 ("rust-proptest" ,rust-proptest-0.9)
13337 ("rust-quickcheck" ,rust-quickcheck-0.8)
13338 ("rust-rustc-version" ,rust-rustc-version-0.2))))))
13339
13340 (define-public rust-libc-0.2
13341 (package
13342 (name "rust-libc")
13343 (version "0.2.79")
13344 (source
13345 (origin
13346 (method url-fetch)
13347 (uri (crate-uri "libc" version))
13348 (file-name (string-append name "-" version ".crate"))
13349 (sha256
13350 (base32
13351 "0hw7qnlymw5gi5c3xd7mirpgrc5l0pvqpjg9jb3vzqw0dq3gcj14"))))
13352 (build-system cargo-build-system)
13353 (arguments
13354 `(#:cargo-inputs
13355 (("rust-rustc-std-workspace-core" ,rust-rustc-std-workspace-core-1))))
13356 (home-page "https://github.com/rust-lang/libc")
13357 (synopsis "Raw FFI bindings to platform libraries like libc")
13358 (description
13359 "The rust libc crate provides all of the definitions necessary to easily
13360 interoperate with C code (or \"C-like\" code) on each of the platforms that Rust
13361 supports. This includes type definitions (e.g., c_int), constants (e.g., EINVAL)
13362 as well as function headers (e.g., malloc).
13363
13364 This crate exports all underlying platform types, functions, and constants under
13365 the crate root, so all items are accessible as @samp{libc::foo}. The types and
13366 values of all the exported APIs match the platform that libc is compiled for.")
13367 (license (list license:expat
13368 license:asl2.0))))
13369
13370 (define-public rust-libc-print-0.1
13371 (package
13372 (name "rust-libc-print")
13373 (version "0.1.13")
13374 (source
13375 (origin
13376 (method url-fetch)
13377 (uri (crate-uri "libc-print" version))
13378 (file-name (string-append name "-" version ".tar.gz"))
13379 (sha256
13380 (base32 "0cjvz622b9bmf32q3mzmxv9ddxfdla6z2v647v8f3qx7lci9kmji"))))
13381 (build-system cargo-build-system)
13382 (arguments
13383 `(#:cargo-inputs (("rust-libc" ,rust-libc-0.2))))
13384 (home-page "https://github.com/mmastrac/rust-libc-print")
13385 (synopsis "Println! and eprintln! without stdlib")
13386 (description "This package provices @code{println!} and @code{eprintln!}
13387 macros on libc without stdlib.")
13388 (license (list license:asl2.0 license:expat))))
13389
13390 (define-public rust-libflate-1
13391 (package
13392 (name "rust-libflate")
13393 (version "1.0.2")
13394 (source
13395 (origin
13396 (method url-fetch)
13397 (uri (crate-uri "libflate" version))
13398 (file-name (string-append name "-" version ".tar.gz"))
13399 (sha256
13400 (base32
13401 "0jarv5ildsm0ci4prd4gz7fqypifhp9xk34z9w49rchx7q1ckfp9"))))
13402 (build-system cargo-build-system)
13403 (arguments
13404 `(#:cargo-inputs
13405 (("rust-adler32" ,rust-adler32-1)
13406 ("rust-crc32fast" ,rust-crc32fast-1)
13407 ("rust-libflate-lz77" ,rust-libflate-lz77-1)
13408 ("rust-rle-decode-fast" ,rust-rle-decode-fast-1))
13409 #:cargo-development-inputs
13410 (("rust-clap" ,rust-clap-2))))
13411 (home-page "https://github.com/sile/libflate")
13412 (synopsis "DEFLATE algorithm and related formats (ZLIB, GZIP)")
13413 (description "This package provides a Rust implementation of DEFLATE
13414 algorithm and related formats (ZLIB, GZIP).")
13415 (license license:expat)))
13416
13417 (define-public rust-libflate-0.1
13418 (package
13419 (inherit rust-libflate-1)
13420 (name "rust-libflate")
13421 (version "0.1.27")
13422 (source
13423 (origin
13424 (method url-fetch)
13425 (uri (crate-uri "libflate" version))
13426 (file-name (string-append name "-" version ".tar.gz"))
13427 (sha256
13428 (base32
13429 "1p8z839c5lpl0g01mf8iglys9lgcjxw6xjw56crhwp8z7gs5s4yr"))))
13430 (build-system cargo-build-system)
13431 (arguments
13432 `(#:cargo-inputs
13433 (("rust-adler32" ,rust-adler32-1)
13434 ("rust-crc32fast" ,rust-crc32fast-1)
13435 ("rust-rle-decode-fast" ,rust-rle-decode-fast-1)
13436 ("rust-take-mut" ,rust-take-mut-0.2))
13437 #:cargo-development-inputs
13438 (("rust-clap" ,rust-clap-2))))))
13439
13440 (define-public rust-libflate-lz77-1
13441 (package
13442 (name "rust-libflate-lz77")
13443 (version "1.0.0")
13444 (source
13445 (origin
13446 (method url-fetch)
13447 (uri (crate-uri "libflate_lz77" version))
13448 (file-name (string-append name "-" version ".tar.gz"))
13449 (sha256
13450 (base32
13451 "06xir79gmp97mdnlnjclk5zlzgkf5s6qvwilcd4gq9j9gngz11ij"))))
13452 (build-system cargo-build-system)
13453 (arguments
13454 `(#:cargo-development-inputs
13455 (("rust-libflate" ,rust-libflate-0.1))))
13456 (home-page "https://github.com/sile/libflate")
13457 (synopsis "LZ77 encoder for libflate crate")
13458 (description "This package provides a LZ77 encoder for libflate crate.")
13459 (license license:expat)))
13460
13461 (define-public rust-libgit2-sys-0.10
13462 (package
13463 (name "rust-libgit2-sys")
13464 (version "0.10.0")
13465 (source
13466 (origin
13467 (method url-fetch)
13468 (uri (crate-uri "libgit2-sys" version))
13469 (file-name (string-append name "-" version ".tar.gz"))
13470 (sha256
13471 (base32
13472 "0l9fvki7qxsl97vgzqwlv75nl213a5vxw7b1jaik97ala356pv6r"))
13473 (modules '((guix build utils)))
13474 (snippet
13475 '(begin (delete-file-recursively "libgit2") #t))))
13476 (build-system cargo-build-system)
13477 (arguments
13478 `(#:cargo-inputs
13479 (("rust-libc" ,rust-libc-0.2)
13480 ("rust-libz-sys" ,rust-libz-sys-1)
13481 ("rust-libssh2-sys" ,rust-libssh2-sys-0.2)
13482 ("rust-openssl-sys" ,rust-openssl-sys-0.9)
13483 ;; Build dependencies:
13484 ("rust-cc" ,rust-cc-1)
13485 ("rust-pkg-config" ,rust-pkg-config-0.3))))
13486 (native-inputs
13487 `(("pkg-config" ,pkg-config)))
13488 (inputs
13489 `(("libgit2" ,libgit2)
13490 ("openssl" ,openssl)
13491 ("zlib" ,zlib)))
13492 (home-page "https://github.com/rust-lang/git2-rs")
13493 (synopsis "Native bindings to the libgit2 library")
13494 (description
13495 "This package provides native rust bindings to the @code{libgit2} library.")
13496 (license (list license:asl2.0
13497 license:expat))))
13498
13499 (define-public rust-libgit2-sys-0.8
13500 (package
13501 (inherit rust-libgit2-sys-0.10)
13502 (name "rust-libgit2-sys")
13503 (version "0.8.2")
13504 (source
13505 (origin
13506 (method url-fetch)
13507 (uri (crate-uri "libgit2-sys" version))
13508 (file-name (string-append name "-" version ".tar.gz"))
13509 (sha256
13510 (base32
13511 "0y2mibmx7wy91s2kmb2gfb29mrqlqaxpy5wcwr8s1lwws7b9w5sc"))
13512 (modules '((guix build utils)))
13513 (snippet
13514 '(begin (delete-file-recursively "libgit2") #t))))))
13515
13516 (define-public rust-libgit2-sys-0.7
13517 (package
13518 (inherit rust-libgit2-sys-0.8)
13519 (name "rust-libgit2-sys")
13520 (version "0.7.11")
13521 (source
13522 (origin
13523 (method url-fetch)
13524 (uri (crate-uri "libgit2-sys" version))
13525 (file-name (string-append name "-" version ".tar.gz"))
13526 (sha256
13527 (base32
13528 "1wcvg2qqra2aviasvqcscl8gb2rnjnd6h998wy5dlmf2bnriqi28"))
13529 (modules '((guix build utils)))
13530 (snippet
13531 '(begin (delete-file-recursively "libgit2") #t))))
13532 (arguments
13533 `(#:cargo-inputs
13534 (("rust-curl-sys" ,rust-curl-sys-0.4)
13535 ("rust-libc" ,rust-libc-0.2)
13536 ("rust-libssh2-sys" ,rust-libssh2-sys-0.2)
13537 ("rust-libz-sys" ,rust-libz-sys-1)
13538 ("rust-openssl-sys" ,rust-openssl-sys-0.9)
13539 ("rust-cc" ,rust-cc-1)
13540 ("rust-pkg-config" ,rust-pkg-config-0.3))))))
13541
13542 (define-public rust-libloading-0.6
13543 (package
13544 (name "rust-libloading")
13545 (version "0.6.3")
13546 (source
13547 (origin
13548 (method url-fetch)
13549 (uri (crate-uri "libloading" version))
13550 (file-name (string-append name "-" version ".tar.gz"))
13551 (sha256
13552 (base32
13553 "1ygliqa518jjxwa5ih4b2f8m984ib596vxmjb28pa5lb8zqdhhr4"))
13554 (modules '((guix build utils)))
13555 (snippet
13556 '(begin
13557 ;; Enable unstable features
13558 (substitute* "src/lib.rs"
13559 (("//! A memory" all)
13560 (string-append "#![feature(non_exhaustive)]\n" all)))))))
13561 (build-system cargo-build-system)
13562 (arguments
13563 `(#:cargo-inputs
13564 (("rust-cfg-if" ,rust-cfg-if-0.1)
13565 ("rust-winapi" ,rust-winapi-0.3))
13566 #:cargo-development-inputs
13567 (("rust-libc" ,rust-libc-0.2)
13568 ("rust-static-assertions" ,rust-static-assertions-1))))
13569 (home-page "https://github.com/nagisa/rust_libloading/")
13570 (synopsis "Safer binding to dynamic library loading utilities")
13571 (description "This package provides a safer binding to dynamic library
13572 loading utilities.")
13573 (license license:isc)))
13574
13575 (define-public rust-libloading-0.5
13576 (package
13577 (name "rust-libloading")
13578 (version "0.5.2")
13579 (source
13580 (origin
13581 (method url-fetch)
13582 (uri (crate-uri "libloading" version))
13583 (file-name (string-append name "-" version ".crate"))
13584 (sha256
13585 (base32
13586 "0lyply8rcqc8agajzxs7bq6ivba9dnn1i68kgb9z2flnfjh13cgj"))))
13587 (build-system cargo-build-system)
13588 (arguments
13589 `(#:cargo-inputs
13590 (("rust-winapi" ,rust-winapi-0.3)
13591 ("rust-cc" ,rust-cc-1))))
13592 (home-page "https://github.com/nagisa/rust_libloading/")
13593 (synopsis "Rust library for loading dynamic libraries")
13594 (description
13595 "A memory-safer wrapper around system dynamic library loading primitives.
13596 The most important safety guarantee by this library is prevention of
13597 dangling-Symbols that may occur after a Library is unloaded. Using this library
13598 allows loading dynamic libraries (also known as shared libraries) as well as use
13599 functions and static variables these libraries contain.")
13600 (license license:isc)))
13601
13602 (define-public rust-libloading-0.3
13603 (package
13604 (inherit rust-libloading-0.5)
13605 (name "rust-libloading")
13606 (version "0.3.4")
13607 (source
13608 (origin
13609 (method url-fetch)
13610 (uri (crate-uri "libloading" version))
13611 (file-name
13612 (string-append name "-" version ".tar.gz"))
13613 (sha256
13614 (base32
13615 "0risz19rllhdc0d7nkpwkf4pcbjjgg1iim0kkmzb6kkp874hl0ha"))))
13616 (build-system cargo-build-system)
13617 (arguments
13618 `(#:tests? #f ; Some test libraries not included in release.
13619 #:cargo-inputs
13620 (("rust-kernel32-sys" ,rust-kernel32-sys-0.2)
13621 ("rust-lazy-static" ,rust-lazy-static-0.2)
13622 ("rust-winapi" ,rust-winapi-0.2)
13623 ("rust-target-build-utils" ,rust-target-build-utils-0.3))))))
13624
13625 (define-public rust-libm-0.2
13626 (package
13627 (name "rust-libm")
13628 (version "0.2.1")
13629 (source
13630 (origin
13631 (method url-fetch)
13632 (uri (crate-uri "libm" version))
13633 (file-name
13634 (string-append name "-" version ".tar.gz"))
13635 (sha256
13636 (base32
13637 "0akh56sh51adhagmk9l84dyrlz60gv8ri05xhr13i1b18czkpmy7"))))
13638 (build-system cargo-build-system)
13639 (arguments
13640 `(#:cargo-inputs
13641 (("rust-rand" ,rust-rand-0.6))
13642 #:cargo-development-inputs
13643 (("rust-no-panic" ,rust-no-panic-0.1))))
13644 (home-page "https://github.com/rust-lang/libm")
13645 (synopsis "Libm in pure Rust")
13646 (description "This package provides an implementation of libm in pure Rust.")
13647 (license (list license:expat license:asl2.0))))
13648
13649 (define-public rust-libm-0.1
13650 (package
13651 (inherit rust-libm-0.2)
13652 (name "rust-libm")
13653 (version "0.1.4")
13654 (source
13655 (origin
13656 (method url-fetch)
13657 (uri (crate-uri "libm" version))
13658 (file-name
13659 (string-append name "-" version ".tar.gz"))
13660 (sha256
13661 (base32
13662 "16pc0gx4gkg0q2s1ssq8268brn14j8344623vwhadmivc4lsmivz"))))))
13663
13664 (define-public rust-libmimalloc-sys-0.1
13665 (package
13666 (name "rust-libmimalloc-sys")
13667 (version "0.1.18")
13668 (source
13669 (origin
13670 (method url-fetch)
13671 (uri (crate-uri "libmimalloc-sys" version))
13672 (file-name (string-append name "-" version ".tar.gz"))
13673 (sha256
13674 (base32
13675 "0bbm03687j9fspvk6nqspmjlvchlvbxydl0mrc1x9i1k6kqiy5c2"))))
13676 (build-system cargo-build-system)
13677 (arguments
13678 `(#:cargo-inputs
13679 (("rust-cty" ,rust-cty-0.2)
13680 ("rust-cmake" ,rust-cmake-0.1))))
13681 (native-inputs
13682 `(("cmake" ,cmake-minimal)))
13683 (home-page "https://github.com/purpleprotocol/mimalloc_rust")
13684 (synopsis "Sys crate wrapping the mimalloc allocator")
13685 (description "This package provides a sys crate wrapping the mimalloc
13686 allocator.")
13687 (license license:expat)))
13688
13689 (define-public rust-libnghttp2-sys-0.1
13690 (package
13691 (name "rust-libnghttp2-sys")
13692 (version "0.1.4+1.41.0")
13693 (source
13694 (origin
13695 (method url-fetch)
13696 (uri (crate-uri "libnghttp2-sys" version))
13697 (file-name (string-append name "-" version ".tar.gz"))
13698 (sha256
13699 (base32
13700 "1wcd93a8cw1h9y25834160y6ng982fi0qcd277hpjvhnvz34wqh3"))
13701 (modules '((guix build utils)))
13702 (snippet
13703 '(begin
13704 (delete-file-recursively "nghttp2")
13705 (substitute* "Cargo.toml"
13706 (("false")
13707 "false\n[build-dependencies.pkg-config]\nversion = \"0.3\"\n"))
13708 (delete-file "build.rs")
13709 (with-output-to-file "build.rs"
13710 (lambda _
13711 (format #t "fn main() {~@
13712 println!(\"cargo:rustc-link-lib=nghttp2\");~@
13713 }~%")))
13714 #t))))
13715 (build-system cargo-build-system)
13716 (arguments
13717 `(#:cargo-inputs
13718 (("rust-libc" ,rust-libc-0.2)
13719 ("rust-cc" ,rust-cc-1)
13720 ("rust-pkg-config" ,rust-pkg-config-0.3))))
13721 (inputs
13722 `(("nghttp2" ,nghttp2 "lib")
13723 ("pkg-config" ,pkg-config)))
13724 (home-page "https://github.com/alexcrichton/nghttp2-rs")
13725 (synopsis "FFI bindings for libnghttp2 (nghttp2)")
13726 (description
13727 "This package provides FFI bindings for libnghttp2 (nghttp2).")
13728 (license (list license:asl2.0
13729 license:expat))))
13730
13731 (define-public rust-libpijul-0.12
13732 (package
13733 (name "rust-libpijul")
13734 (version "0.12.2")
13735 (source
13736 (origin
13737 (method url-fetch)
13738 (uri (crate-uri "libpijul" version))
13739 (file-name
13740 (string-append name "-" version ".tar.gz"))
13741 (sha256
13742 (base32
13743 "18d9n8xaq5ncq3375f0xrr96l8si1frczgzdlrz3fl1jby8vbl6f"))))
13744 (build-system cargo-build-system)
13745 (arguments
13746 `(#:tests? #f ; backend::file_header::test_fileheader_alignment fails
13747 #:cargo-inputs
13748 (("rust-base64" ,rust-base64-0.10)
13749 ("rust-bincode" ,rust-bincode-1)
13750 ("rust-bitflags" ,rust-bitflags-1)
13751 ("rust-bs58" ,rust-bs58-0.2)
13752 ("rust-byteorder" ,rust-byteorder-1)
13753 ("rust-chrono" ,rust-chrono-0.4)
13754 ("rust-diffs" ,rust-diffs-0.3)
13755 ("rust-failure" ,rust-failure-0.1)
13756 ("rust-flate2" ,rust-flate2-1)
13757 ("rust-hex" ,rust-hex-0.3)
13758 ("rust-ignore" ,rust-ignore-0.4)
13759 ("rust-log" ,rust-log-0.4)
13760 ("rust-openssl" ,rust-openssl-0.10)
13761 ("rust-rand" ,rust-rand-0.6)
13762 ("rust-sanakirja" ,rust-sanakirja-0.10)
13763 ("rust-sequoia-openpgp" ,rust-sequoia-openpgp-0.9)
13764 ("rust-serde" ,rust-serde-1)
13765 ("rust-serde-derive" ,rust-serde-derive-1)
13766 ("rust-serde-json" ,rust-serde-json-1)
13767 ("rust-tempdir" ,rust-tempdir-0.3)
13768 ("rust-toml" ,rust-toml-0.4))))
13769 (native-inputs
13770 `(("pkg-config" ,pkg-config)))
13771 (inputs
13772 `(("clang" ,clang)
13773 ("nettle" ,nettle)
13774 ("openssl" ,openssl)))
13775 (home-page "https://pijul.org/")
13776 (synopsis "Library component of the pijul version control system")
13777 (description
13778 "This crate contains the core API to access Pijul repositories.
13779
13780 The key object is a @code{Repository}, on which @code{Txn} (immutable
13781 transactions) and @code{MutTxn} (mutable transactions) can be started, to
13782 perform a variety of operations.
13783
13784 Another important object is a @code{Patch}, which encodes two different pieces
13785 of information:
13786
13787 @itemize
13788 @item Information about deleted and inserted lines between two versions of a
13789 file.
13790 @item Information about file moves, additions and deletions.
13791 @end itemize")
13792 (license license:gpl2+)))
13793
13794 (define-public rust-libsqlite3-sys-0.15
13795 (package
13796 (name "rust-libsqlite3-sys")
13797 (version "0.15.0")
13798 (source
13799 (origin
13800 (method url-fetch)
13801 (uri (crate-uri "libsqlite3-sys" version))
13802 (file-name (string-append name "-" version ".tar.gz"))
13803 (sha256
13804 (base32 "104n0s4f46zprppjq6y82y0wjh1r2cgwzw26w914yj30rizy1cbj"))))
13805 (build-system cargo-build-system)
13806 (inputs
13807 `(("sqlite" ,sqlite)))
13808 (arguments
13809 `(#:cargo-inputs
13810 ;; build dependencies
13811 (("rust-bindgen" ,rust-bindgen-0.49)
13812 ("rust-cc" ,rust-cc-1)
13813 ("rust-pkg-config" ,rust-pkg-config-0.3)
13814 ("rust-vcpkg" ,rust-vcpkg-0.2))))
13815 (home-page "https://github.com/rusqlite/rusqlite")
13816 (synopsis "Native bindings to the libsqlite3 library")
13817 (description "Native bindings to the libsqlite3 library")
13818 (license license:expat)))
13819
13820 (define-public rust-libz-sys-1
13821 (package
13822 (name "rust-libz-sys")
13823 (version "1.1.1")
13824 (source
13825 (origin
13826 (method url-fetch)
13827 (uri (crate-uri "libz-sys" version))
13828 (file-name (string-append name "-" version ".tar.gz"))
13829 (sha256
13830 (base32
13831 "1q25cb8vs113si7q2p0innhi8jk0wpq37hqi2wcc219hcmw43cr3"))
13832 (modules '((guix build utils)))
13833 (snippet
13834 '(begin (delete-file-recursively "src/zlib")
13835 (delete-file-recursively "src/zlib-ng")
13836 #t))))
13837 (build-system cargo-build-system)
13838 (arguments
13839 `(#:cargo-inputs
13840 (("rust-libc" ,rust-libc-0.2)
13841 ;; Build dependencies:
13842 ("rust-cc" ,rust-cc-1)
13843 ("rust-cmake" ,rust-cmake-0.1)
13844 ("rust-pkg-config" ,rust-pkg-config-0.3)
13845 ("rust-vcpkg" ,rust-vcpkg-0.2))))
13846 (native-inputs
13847 `(("pkg-config" ,pkg-config)
13848 ("zlib" ,zlib)))
13849 (home-page "https://github.com/rust-lang/libz-sys")
13850 (synopsis "Bindings to the system libz library")
13851 (description
13852 "This package provides bindings to the system @code{libz} library (also
13853 known as zlib).")
13854 (license (list license:asl2.0
13855 license:expat))))
13856
13857 (define-public rust-line-0.1
13858 (package
13859 (name "rust-line")
13860 (version "0.1.15")
13861 (source
13862 (origin
13863 (method url-fetch)
13864 (uri (crate-uri "line" version))
13865 (file-name
13866 (string-append name "-" version ".tar.gz"))
13867 (sha256
13868 (base32
13869 "0pissvrl5398701zlfd22w51ca32vhw83vbsl58a330hr4w5ra04"))))
13870 (build-system cargo-build-system)
13871 (arguments
13872 `(#:cargo-inputs
13873 (("rust-libc" ,rust-libc-0.2)
13874 ("rust-utf8parse" ,rust-utf8parse-0.1))))
13875 (home-page "https://crates.io/crates/line")
13876 (synopsis "Rust implementation of line editing in a terminal")
13877 (description
13878 "The main goals of this library are:
13879
13880 @itemize
13881 @item Portability: should work on any system (Unix or Windows).
13882 @item Support: was written for a real-world project (Pijul), so support is
13883 unlikely to stop soon.
13884 @item Output quality: avoid usual blinking terminal lines that older C
13885 libraries have.
13886 @end itemize")
13887 (license (list license:asl2.0 license:expat))))
13888
13889 (define-public rust-line-wrap-0.1
13890 (package
13891 (name "rust-line-wrap")
13892 (version "0.1.1")
13893 (source
13894 (origin
13895 (method url-fetch)
13896 (uri (crate-uri "line-wrap" version))
13897 (file-name
13898 (string-append name "-" version ".tar.gz"))
13899 (sha256
13900 (base32
13901 "1ffa2whkyh9mwvdlpk6v8pjkg8p8mlzyjfymq5adll9a18sl80zk"))))
13902 (build-system cargo-build-system)
13903 (arguments
13904 `(#:cargo-inputs
13905 (("rust-safemem" ,rust-safemem-0.3))
13906 #:cargo-development-inputs
13907 (("rust-rand" ,rust-rand-0.5))))
13908 (home-page "https://bitbucket.org/marshallpierce/line-wrap-rs/src")
13909 (synopsis "Efficiently insert line separators")
13910 (description
13911 "Efficiently insert line separators.")
13912 (license license:asl2.0)))
13913
13914 (define-public rust-linked-hash-map-0.5
13915 (package
13916 (name "rust-linked-hash-map")
13917 (version "0.5.3")
13918 (source
13919 (origin
13920 (method url-fetch)
13921 (uri (crate-uri "linked-hash-map" version))
13922 (file-name
13923 (string-append name "-" version ".tar.gz"))
13924 (sha256
13925 (base32
13926 "0jih3za0p1mywlnwcakc462q1byk6z8vnrzdm36hg6cxk7asdmcd"))))
13927 (build-system cargo-build-system)
13928 (arguments
13929 `(#:cargo-inputs
13930 (("rust-clippy" ,rust-clippy-0.0)
13931 ("rust-heapsize" ,rust-heapsize-0.4)
13932 ("rust-serde" ,rust-serde-1)
13933 ("rust-serde-test" ,rust-serde-test-1))))
13934 (home-page
13935 "https://github.com/contain-rs/linked-hash-map")
13936 (synopsis
13937 "HashMap wrapper that holds key-value pairs in insertion order")
13938 (description
13939 "This package provides a HashMap wrapper that holds key-value
13940 pairs in insertion order.")
13941 (license (list license:asl2.0
13942 license:expat))))
13943
13944 (define-public rust-linked-hash-map-0.4
13945 (package
13946 (inherit rust-linked-hash-map-0.5)
13947 (name "rust-linked-hash-map")
13948 (version "0.4.2")
13949 (source
13950 (origin
13951 (method url-fetch)
13952 (uri (crate-uri "linked-hash-map" version))
13953 (file-name
13954 (string-append name "-" version ".tar.gz"))
13955 (sha256
13956 (base32
13957 "0fd958y02ggwpa2246kmjky9xmnww7vxg0ik3rxgy23hgwlyqq3q"))))
13958 (arguments
13959 `(#:cargo-inputs
13960 (("rust-clippy" ,rust-clippy-0.0)
13961 ("rust-heapsize" ,rust-heapsize-0.3)
13962 ("rust-serde" ,rust-serde-0.9)
13963 ("rust-serde-test" ,rust-serde-test-0.9))))))
13964
13965 (define-public rust-linked-hash-map-0.3
13966 (package
13967 (inherit rust-linked-hash-map-0.5)
13968 (name "rust-linked-hash-map")
13969 (version "0.3.0")
13970 (source
13971 (origin
13972 (method url-fetch)
13973 (uri (crate-uri "linked-hash-map" version))
13974 (file-name (string-append name "-" version ".tar.gz"))
13975 (sha256
13976 (base32
13977 "1kaf95grvfqchxn8pl0854g8ab0fzl56217hndhhhz5qqm2j09kd"))))
13978 (arguments
13979 `(#:cargo-inputs
13980 (("rust-clippy" ,rust-clippy-0.0)
13981 ("rust-serde" ,rust-serde-0.8)
13982 ("rust-serde-test" ,rust-serde-test-0.8))))))
13983
13984 (define-public rust-libssh2-sys-0.2
13985 (package
13986 (name "rust-libssh2-sys")
13987 (version "0.2.19")
13988 (source
13989 (origin
13990 (method url-fetch)
13991 (uri (crate-uri "libssh2-sys" version))
13992 (file-name (string-append name "-" version ".tar.gz"))
13993 (sha256
13994 (base32
13995 "0mkhw4pksbz7gldj8hia7k6npc479n1x09i8r0pm275sac424ina"))
13996 (modules '((guix build utils)))
13997 (snippet
13998 '(begin (delete-file-recursively "libssh2") #t))))
13999 (build-system cargo-build-system)
14000 (arguments
14001 `(#:cargo-inputs
14002 (("rust-libc" ,rust-libc-0.2)
14003 ("rust-libz-sys" ,rust-libz-sys-1)
14004 ("rust-openssl-sys" ,rust-openssl-sys-0.9)
14005 ;; Build dependencies:
14006 ("rust-cc" ,rust-cc-1)
14007 ("rust-pkg-config" ,rust-pkg-config-0.3)
14008 ("rust-vcpkg" ,rust-vcpkg-0.2))))
14009 (native-inputs
14010 `(("pkg-config" ,pkg-config)))
14011 (inputs
14012 `(("libssh2" ,libssh2)
14013 ("openssl" ,openssl)
14014 ("zlib" ,zlib)))
14015 (home-page "https://github.com/alexcrichton/ssh2-rs")
14016 (synopsis "Native bindings to the libssh2 library")
14017 (description
14018 "This package provides native rust bindings to the @code{libssh2} library.")
14019 (license (list license:asl2.0
14020 license:expat))))
14021
14022 (define-public rust-locale-0.2
14023 (package
14024 (name "rust-locale")
14025 (version "0.2.2")
14026 (source
14027 (origin
14028 (method url-fetch)
14029 (uri (crate-uri "locale" version))
14030 (file-name
14031 (string-append name "-" version ".tar.gz"))
14032 (sha256
14033 (base32
14034 "1z87wc7z6889x1pqlrwjw8f1crshzi15q5m102lqs8y0m69f9nsz"))))
14035 (build-system cargo-build-system)
14036 (arguments
14037 `(#:cargo-inputs (("rust-libc" ,rust-libc-0.2))))
14038 (home-page "https://github.com/rust-locale/rust-locale")
14039 (synopsis "Library for basic localisation")
14040 (description
14041 "This package provides a library for basic localisation.")
14042 (license license:expat)))
14043
14044 (define-public rust-locale-config-0.3
14045 (package
14046 (name "rust-locale-config")
14047 (version "0.3.0")
14048 (source
14049 (origin
14050 (method url-fetch)
14051 (uri (crate-uri "locale_config" version))
14052 (file-name
14053 (string-append name "-" version ".tar.gz"))
14054 (sha256
14055 (base32
14056 "0d399alr1i7h7yji4vydbdbzd8hp0xaykr7h4rn3yj7l2rdw7lh8"))))
14057 (build-system cargo-build-system)
14058 (arguments
14059 `(#:cargo-inputs
14060 (("rust-lazy-static" ,rust-lazy-static-1)
14061 ("rust-objc" ,rust-objc-0.2)
14062 ("rust-objc-foundation" ,rust-objc-foundation-0.1)
14063 ("rust-regex" ,rust-regex-1)
14064 ("rust-winapi" ,rust-winapi-0.3))))
14065 (home-page "https://github.com/rust-locale/locale_config/")
14066 (synopsis "Maintains locale preferences for processes and threads")
14067 (description
14068 "Maintains locale preferences for process and thread and initialises them
14069 by inspecting the system for user preference.")
14070 (license license:expat)))
14071
14072 (define-public rust-locale-config-0.2
14073 (package
14074 (inherit rust-locale-config-0.3)
14075 (name "rust-locale-config")
14076 (version "0.2.3")
14077 (source
14078 (origin
14079 (method url-fetch)
14080 (uri (crate-uri "locale-config" version))
14081 (file-name
14082 (string-append name "-" version ".tar.gz"))
14083 (sha256
14084 (base32
14085 "0p2kdgc1c9cq5bi2rpszbhkh7pdk1fwxhij37gayb2alwkmikb3k"))))
14086 (arguments
14087 `(#:cargo-inputs
14088 (("rust-lazy-static" ,rust-lazy-static-1)
14089 ("rust-regex" ,rust-regex-1)
14090 ("rust-winapi" ,rust-winapi-0.3))))))
14091
14092 (define-public rust-lock-api-0.4
14093 (package
14094 (name "rust-lock-api")
14095 (version "0.4.1")
14096 (source
14097 (origin
14098 (method url-fetch)
14099 (uri (crate-uri "lock_api" version))
14100 (file-name (string-append name "-" version ".tar.gz"))
14101 (sha256
14102 (base32
14103 "0716z2rs0kydmd1818kqp4641dfkqzr0rpbnrpxhabxylp2pq918"))))
14104 (build-system cargo-build-system)
14105 (arguments
14106 `(#:cargo-inputs
14107 (("rust-owning-ref" ,rust-owning-ref-0.4)
14108 ("rust-scopeguard" ,rust-scopeguard-1)
14109 ("rust-serde" ,rust-serde-1))))
14110 (home-page "https://github.com/Amanieu/parking_lot")
14111 (synopsis "Wrappers to create fully-featured Mutex and RwLock types")
14112 (description "This package provides wrappers to create fully-featured
14113 @code{Mutex} and @code{RwLock} types. It is compatible with @code{no_std}.")
14114 (license (list license:asl2.0 license:expat))))
14115
14116 (define-public rust-lock-api-0.3
14117 (package
14118 (inherit rust-lock-api-0.4)
14119 (name "rust-lock-api")
14120 (version "0.3.4")
14121 (source
14122 (origin
14123 (method url-fetch)
14124 (uri (crate-uri "lock_api" version))
14125 (file-name
14126 (string-append name "-" version ".tar.gz"))
14127 (sha256
14128 (base32
14129 "0xgc5dzmajh0akbh5d6d7rj9mh5rzpk74pyrc946v2ixgakj9nn4"))))
14130 (build-system cargo-build-system)))
14131
14132 (define-public rust-lock-api-0.2
14133 (package
14134 (inherit rust-lock-api-0.3)
14135 (name "rust-lock-api")
14136 (version "0.2.0")
14137 (source
14138 (origin
14139 (method url-fetch)
14140 (uri (crate-uri "lock_api" version))
14141 (file-name
14142 (string-append name "-" version ".tar.gz"))
14143 (sha256
14144 (base32
14145 "1zx7pksmgyggpczgw4qrr4vj2nkdk5lipgiysvr20slm552nv57d"))))))
14146
14147 (define-public rust-lock-api-0.1
14148 (package
14149 (inherit rust-lock-api-0.2)
14150 (name "rust-lock-api")
14151 (version "0.1.5")
14152 (source
14153 (origin
14154 (method url-fetch)
14155 (uri (crate-uri "lock_api" version))
14156 (file-name (string-append name "-" version ".crate"))
14157 (sha256
14158 (base32
14159 "0b24q9mh258xa52ap636q1sxz0j5vrnp0hwbbh7ddjka3wwz3sv2"))))
14160 (arguments
14161 `(#:cargo-inputs
14162 (("rust-scopeguard" ,rust-scopeguard-0.3)
14163 ("rust-owning-ref" ,rust-owning-ref-0.4))))))
14164
14165 (define-public rust-log-0.4
14166 (package
14167 (name "rust-log")
14168 (version "0.4.8")
14169 (source
14170 (origin
14171 (method url-fetch)
14172 (uri (crate-uri "log" version))
14173 (file-name (string-append name "-" version ".crate"))
14174 (sha256
14175 (base32
14176 "1xz18ixccl5c6np4linv3ypc7hpmmgpc5zzd2ymp2ssfx0mhbdhl"))))
14177 (build-system cargo-build-system)
14178 (arguments
14179 `(#:skip-build? #t
14180 #:cargo-inputs
14181 (("rust-cfg-if" ,rust-cfg-if-0.1)
14182 ("rust-serde" ,rust-serde-1))
14183 #:cargo-development-inputs
14184 (("rust-serde-test" ,rust-serde-test-1))))
14185 (home-page "https://github.com/rust-lang/log")
14186 (synopsis "Lightweight logging facade for Rust")
14187 (description
14188 "This package provides a lightweight logging facade for Rust.")
14189 (license (list license:expat license:asl2.0))))
14190
14191 (define-public rust-log-0.3
14192 (package
14193 (inherit rust-log-0.4)
14194 (name "rust-log")
14195 (version "0.3.9")
14196 (source
14197 (origin
14198 (method url-fetch)
14199 (uri (crate-uri "log" version))
14200 (file-name (string-append name "-" version ".tar.gz"))
14201 (sha256
14202 (base32
14203 "0jq23hhn5h35k7pa8r7wqnsywji6x3wn1q5q7lif5q536if8v7p1"))))
14204 (arguments
14205 `(#:cargo-inputs
14206 (("rust-log" ,rust-log-0.4))))))
14207
14208 (define-public rust-loom-0.3
14209 (package
14210 (name "rust-loom")
14211 (version "0.3.2")
14212 (source
14213 (origin
14214 (method url-fetch)
14215 (uri (crate-uri "loom" version))
14216 (file-name (string-append name "-" version ".tar.gz"))
14217 (sha256
14218 (base32 "10z738ig6vgvwc2kxjhjdr5b29p3ribk5f6gg6ak0xjxhjb4cnkc"))))
14219 (build-system cargo-build-system)
14220 (arguments
14221 `(#:skip-build? #t ;; TODO fails due to unresolved import
14222 #:cargo-inputs
14223 (("rust-cfg-if" ,rust-cfg-if-0.1)
14224 ("rust-futures-util" ,rust-futures-util-0.3)
14225 ("rust-generator" ,rust-generator-0.6)
14226 ("rust-scoped-tls" ,rust-scoped-tls-0.1)
14227 ("rust-serde" ,rust-serde-1)
14228 ("rust-serde-json" ,rust-serde-json-1))))
14229 (home-page "https://github.com/tokio-rs/loom")
14230 (synopsis "Permutation testing for concurrent code")
14231 (description "Permutation testing for concurrent code")
14232 (license license:expat)))
14233
14234 (define-public rust-loom-0.2
14235 (package/inherit rust-loom-0.3
14236 (name "rust-loom")
14237 (version "0.2.13")
14238 (source
14239 (origin
14240 (method url-fetch)
14241 (uri (crate-uri "loom" version))
14242 (file-name (string-append name "-" version ".tar.gz"))
14243 (sha256
14244 (base32 "0qwvwbpnxff5m6647v9rc9i6ak8ral4jy0br5xx1s9a5zcd3xddh"))))
14245 (build-system cargo-build-system)
14246 (arguments
14247 `(#:cargo-inputs
14248 (("rust-cfg-if" ,rust-cfg-if-0.1)
14249 ("rust-futures-util" ,rust-futures-util-0.3)
14250 ("rust-generator" ,rust-generator-0.6)
14251 ("rust-scoped-tls" ,rust-scoped-tls-0.1)
14252 ("rust-serde" ,rust-serde-1)
14253 ("rust-serde-test" ,rust-serde-test-1)
14254 ("rust-serde-json" ,rust-serde-json-1))))))
14255
14256 (define-public rust-loom-0.1
14257 (package/inherit rust-loom-0.3
14258 (name "rust-loom")
14259 (version "0.1.1")
14260 (source
14261 (origin
14262 (method url-fetch)
14263 (uri (crate-uri "loom" version))
14264 (file-name
14265 (string-append name "-" version ".tar.gz"))
14266 (sha256
14267 (base32
14268 "1jmp5mffwwyqgp914cwz92ij2s6vk1hsnkvgndvzw74xrcfraibj"))))
14269 (arguments
14270 `(#:cargo-inputs
14271 (("rust-cfg-if" ,rust-cfg-if-0.1)
14272 ("rust-futures" ,rust-futures-0.1)
14273 ("rust-generator" ,rust-generator-0.6)
14274 ("rust-scoped-tls" ,rust-scoped-tls-0.1)
14275 ("rust-serde" ,rust-serde-1)
14276 ("rust-serde-derive" ,rust-serde-derive-1)
14277 ("rust-serde-json" ,rust-serde-json-1))))))
14278
14279 (define-public rust-lopdf-0.25
14280 (package
14281 (name "rust-lopdf")
14282 (version "0.25.0")
14283 (source
14284 (origin
14285 (method url-fetch)
14286 (uri (crate-uri "lopdf" version))
14287 (file-name
14288 (string-append name "-" version ".tar.gz"))
14289 (sha256
14290 (base32
14291 "1yb4yj1a8a88w78hz9msg65xbkyx5n4d9gm1xb2c67zaj1xvyw1i"))))
14292 (build-system cargo-build-system)
14293 (arguments
14294 `(#:cargo-inputs
14295 (("rust-chrono" ,rust-chrono-0.4)
14296 ("rust-dtoa" ,rust-dtoa-0.4)
14297 ("rust-encoding" ,rust-encoding-0.2)
14298 ("rust-flate2" ,rust-flate2-1)
14299 ("rust-image" ,rust-image-0.20)
14300 ("rust-itoa" ,rust-itoa-0.4)
14301 ("rust-linked-hash-map" ,rust-linked-hash-map-0.4)
14302 ("rust-log" ,rust-log-0.4)
14303 ("rust-lzw" ,rust-lzw-0.10)
14304 ("rust-nom" ,rust-nom-5)
14305 ("rust-pom" ,rust-pom-3)
14306 ("rust-rayon" ,rust-rayon-1)
14307 ("rust-time" ,rust-time-0.1))))
14308 (home-page "https://github.com/J-F-Liu/lopdf")
14309 (synopsis "Rust library for PDF document manipulation")
14310 (description
14311 "This package provides a Rust library for PDF document manipulation.")
14312 (license license:expat)))
14313
14314 (define-public rust-lru-cache-0.1
14315 (package
14316 (name "rust-lru-cache")
14317 (version "0.1.2")
14318 (source
14319 (origin
14320 (method url-fetch)
14321 (uri (crate-uri "lru-cache" version))
14322 (file-name (string-append name "-" version ".tar.gz"))
14323 (sha256
14324 (base32 "071viv6g2p3akwqmfb3c8vsycs5n7kr17b70l7la071jv0d4zqii"))))
14325 (build-system cargo-build-system)
14326 (arguments
14327 `(#:cargo-inputs
14328 (("rust-heapsize" ,rust-heapsize-0.4)
14329 ("rust-linked-hash-map" ,rust-linked-hash-map-0.5))))
14330 (home-page "https://github.com/contain-rs/lru-cache")
14331 (synopsis "Cache that holds a limited number of key-value pairs")
14332 (description "This package provides a cache that holds a limited number of
14333 key-value pairs.")
14334 (license (list license:expat license:asl2.0))))
14335
14336 (define-public rust-lscolors-0.7
14337 (package
14338 (name "rust-lscolors")
14339 (version "0.7.1")
14340 (source
14341 (origin
14342 (method url-fetch)
14343 (uri (crate-uri "lscolors" version))
14344 (file-name
14345 (string-append name "-" version ".tar.gz"))
14346 (sha256
14347 (base32
14348 "0vn1824lagf0xdv5rxyl7m9fbrcylyjibmnd4634dnn98m68jjyj"))))
14349 (build-system cargo-build-system)
14350 (arguments
14351 `(#:cargo-inputs
14352 (("rust-ansi-term" ,rust-ansi-term-0.12))
14353 #:cargo-development-inputs
14354 (("rust-tempfile" ,rust-tempfile-3))))
14355 (home-page "https://github.com/sharkdp/lscolors")
14356 (synopsis "Colorize paths using the LS_COLORS environment variable")
14357 (description
14358 "Colorize paths using the LS_COLORS environment variable.")
14359 (license (list license:expat license:asl2.0))))
14360
14361 (define-public rust-lscolors-0.6
14362 (package
14363 (inherit rust-lscolors-0.7)
14364 (name "rust-lscolors")
14365 (version "0.6.0")
14366 (source
14367 (origin
14368 (method url-fetch)
14369 (uri (crate-uri "lscolors" version))
14370 (file-name
14371 (string-append name "-" version ".tar.gz"))
14372 (sha256
14373 (base32
14374 "0jxsgkn378kxkiqdshdjdclw5wwp2xaz45cqd3yw85fhn8a38fza"))))))
14375
14376 (define-public rust-lzma-sys-0.1
14377 (package
14378 (name "rust-lzma-sys")
14379 (version "0.1.15")
14380 (source
14381 (origin
14382 (method url-fetch)
14383 (uri (crate-uri "lzma-sys" version))
14384 (file-name (string-append name "-" version ".tar.gz"))
14385 (sha256
14386 (base32
14387 "14gyj256yh0wm77jbvmlc39v7lfn0navpfrja4alczarzlc8ir2k"))
14388 (modules '((guix build utils)))
14389 (snippet
14390 '(begin (delete-file-recursively "xz-5.2") #t))))
14391 (build-system cargo-build-system)
14392 (arguments
14393 `(#:cargo-inputs
14394 (("rust-libc" ,rust-libc-0.2)
14395 ("rust-cc" ,rust-cc-1)
14396 ("rust-pkg-config" ,rust-pkg-config-0.3))))
14397 (native-inputs
14398 `(("pkg-config" ,pkg-config)
14399 ("xz" ,xz)))
14400 (home-page "https://github.com/alexcrichton/xz2-rs")
14401 (synopsis "Bindings to liblzma for lzma and xz stream encoding/decoding")
14402 (description
14403 "This package contains the raw bindings to liblzma which contains an
14404 implementation of LZMA and xz stream encoding/decoding.")
14405 (license (list license:asl2.0
14406 license:expat))))
14407
14408 (define-public rust-lzw-0.10
14409 (package
14410 (name "rust-lzw")
14411 (version "0.10.0")
14412 (source
14413 (origin
14414 (method url-fetch)
14415 (uri (crate-uri "lzw" version))
14416 (file-name
14417 (string-append name "-" version ".tar.gz"))
14418 (sha256
14419 (base32
14420 "1170dfskhzlh8h2bm333811hykjvpypgnvxyhhm1rllyi2xpr53x"))))
14421 (build-system cargo-build-system)
14422 (home-page "https://github.com/nwin/lzw.git")
14423 (synopsis "LZW compression and decompression")
14424 (description
14425 "This package provides LZW compression and decompression.")
14426 (license (list license:expat license:asl2.0))))
14427
14428 (define-public rust-mac-0.1
14429 (package
14430 (name "rust-mac")
14431 (version "0.1.1")
14432 (source
14433 (origin
14434 (method url-fetch)
14435 (uri (crate-uri "mac" version))
14436 (file-name
14437 (string-append name "-" version ".tar.gz"))
14438 (sha256
14439 (base32
14440 "194vc7vrshqff72rl56f9xgb0cazyl4jda7qsv31m5l6xx7hq7n4"))))
14441 (build-system cargo-build-system)
14442 (arguments `(#:skip-build? #t))
14443 (home-page "https://github.com/reem/rust-mac")
14444 (synopsis "Collection of great and ubiqutitous macros")
14445 (description
14446 "This package provides a collection of great and ubiqutitous macros.")
14447 (license (list license:asl2.0 license:expat))))
14448
14449 (define-public rust-mach-o-sys-0.1
14450 (package
14451 (name "rust-mach-o-sys")
14452 (version "0.1.1")
14453 (source
14454 (origin
14455 (method url-fetch)
14456 (uri (crate-uri "mach-o-sys" version))
14457 (file-name (string-append name "-" version ".tar.gz"))
14458 (sha256
14459 (base32 "09l8p7nmzq37450x2h6nb7dzg1sk6dk36a5rkcrcy81zm21lb19y"))))
14460 (build-system cargo-build-system)
14461 (home-page "https://github.com/fitzgen/mach_o_sys")
14462 (synopsis "Bindings to the OSX mach-o system library")
14463 (description "This package provides bindings to the OSX mach-o system
14464 library")
14465 (license (list license:asl2.0 license:expat))))
14466
14467 (define-public rust-make-cmd-0.1
14468 (package
14469 (name "rust-make-cmd")
14470 (version "0.1.0")
14471 (source
14472 (origin
14473 (method url-fetch)
14474 (uri (crate-uri "make-cmd" version))
14475 (file-name
14476 (string-append name "-" version ".tar.gz"))
14477 (sha256
14478 (base32
14479 "1ly0lc5p1a0qdiqnh19ly3snb9q83sjbbb1njvh8a5xgx3xqmjm8"))))
14480 (build-system cargo-build-system)
14481 (home-page "https://github.com/mneumann/make-cmd-rs")
14482 (synopsis "Enable build.rs scripts to invoke gnu_make")
14483 (description "This package enables build.rs scripts to invoke gnu_make
14484 platform-independently.")
14485 (license license:expat)))
14486
14487 (define-public rust-malloc-buf-0.0
14488 (package
14489 (name "rust-malloc-buf")
14490 (version "0.0.6")
14491 (source
14492 (origin
14493 (method url-fetch)
14494 (uri (crate-uri "malloc-buf" version))
14495 (file-name
14496 (string-append name "-" version ".tar.gz"))
14497 (sha256
14498 (base32
14499 "1jqr77j89pwszv51fmnknzvd53i1nkmcr8rjrvcxhm4dx1zr1fv2"))))
14500 (build-system cargo-build-system)
14501 (arguments
14502 `(#:cargo-inputs (("rust-libc" ,rust-libc-0.2))))
14503 (home-page "https://github.com/SSheldon/malloc_buf")
14504 (synopsis "Structs for handling malloc'd memory passed to Rust")
14505 (description
14506 "This package provides structs for handling malloc'd memory passed to Rust.")
14507 (license license:expat)))
14508
14509 (define-public rust-maplit-1.0
14510 (package
14511 (name "rust-maplit")
14512 (version "1.0.2")
14513 (source
14514 (origin
14515 (method url-fetch)
14516 (uri (crate-uri "maplit" version))
14517 (file-name (string-append name "-" version ".crate"))
14518 (sha256
14519 (base32
14520 "07b5kjnhrrmfhgqm9wprjw8adx6i225lqp49gasgqg74lahnabiy"))))
14521 (build-system cargo-build-system)
14522 (arguments '(#:skip-build? #t))
14523 (home-page "https://github.com/bluss/maplit")
14524 (synopsis "Collection of Map macros")
14525 (description "This crate provides a collection of @code{literal} macros for
14526 @code{HashMap}, @code{HashSet}, @code{BTreeMap}, and @code{BTreeSet.}")
14527 (license (list license:asl2.0
14528 license:expat))))
14529
14530 (define-public rust-markup5ever-0.10
14531 (package
14532 (name "rust-markup5ever")
14533 (version "0.10.0")
14534 (source
14535 (origin
14536 (method url-fetch)
14537 (uri (crate-uri "markup5ever" version))
14538 (file-name
14539 (string-append name "-" version ".tar.gz"))
14540 (sha256
14541 (base32
14542 "1aqxl1lsc8s6ycsw5ibwynadnb9qpiab4ggwgdq9pjlnjdk8vqxa"))))
14543 (build-system cargo-build-system)
14544 (arguments
14545 `(#:cargo-inputs
14546 (("rust-log" ,rust-log-0.4)
14547 ("rust-phf" ,rust-phf-0.8)
14548 ("rust-string-cache" ,rust-string-cache-0.8)
14549 ("rust-tendril" ,rust-tendril-0.4)
14550 ("rust-phf-codegen" ,rust-phf-codegen-0.8)
14551 ("rust-serde" ,rust-serde-1)
14552 ("rust-serde-derive" ,rust-serde-derive-1)
14553 ("rust-serde-json" ,rust-serde-json-1)
14554 ("rust-string-cache-codegen" ,rust-string-cache-codegen-0.5))))
14555 (home-page "https://github.com/servo/html5ever")
14556 (synopsis "Common code for xml5ever and html5ever")
14557 (description
14558 "Common code for xml5ever and html5ever.")
14559 (license (list license:asl2.0 license:expat))))
14560
14561 (define-public rust-markup5ever-0.9
14562 (package
14563 (inherit rust-markup5ever-0.10)
14564 (name "rust-markup5ever")
14565 (version "0.9.0")
14566 (source
14567 (origin
14568 (method url-fetch)
14569 (uri (crate-uri "markup5ever" version))
14570 (file-name
14571 (string-append name "-" version ".tar.gz"))
14572 (sha256
14573 (base32
14574 "00wxigkiw8f777pjp7q5kfq77xpwda9zskkwp698assh8yfisf35"))))
14575 (arguments
14576 `(#:cargo-inputs
14577 (("rust-log" ,rust-log-0.4)
14578 ("rust-phf" ,rust-phf-0.7)
14579 ("rust-string-cache" ,rust-string-cache-0.7)
14580 ("rust-tendril" ,rust-tendril-0.4)
14581 ("rust-phf-codegen" ,rust-phf-codegen-0.7)
14582 ("rust-serde" ,rust-serde-1)
14583 ("rust-serde-derive" ,rust-serde-derive-1)
14584 ("rust-serde-json" ,rust-serde-json-1)
14585 ("rust-string-cache-codegen" ,rust-string-cache-codegen-0.4))))))
14586
14587 (define-public rust-markup5ever-0.8
14588 (package
14589 (inherit rust-markup5ever-0.9)
14590 (name "rust-markup5ever")
14591 (version "0.8.1")
14592 (source
14593 (origin
14594 (method url-fetch)
14595 (uri (crate-uri "markup5ever" version))
14596 (file-name
14597 (string-append name "-" version ".tar.gz"))
14598 (sha256
14599 (base32
14600 "08ayl9aqjnmf7ly1ipy6dk3wjvyfn4w51l40jzh1fh984ykldbzi"))))))
14601
14602 (define-public rust-match-cfg-0.1
14603 (package
14604 (name "rust-match-cfg")
14605 (version "0.1.0")
14606 (source
14607 (origin
14608 (method url-fetch)
14609 (uri (crate-uri "match-cfg" version))
14610 (file-name
14611 (string-append name "-" version ".tar.gz"))
14612 (sha256
14613 (base32
14614 "1r5j3zqc3qr8ybcx95bk8q57mkizmgmffj5lmicd4i8d9riyigpz"))))
14615 (build-system cargo-build-system)
14616 (home-page "https://github.com/gnzlbg/match_cfg")
14617 (synopsis
14618 "Define an item depending on a large number of `#[cfg]` parameters")
14619 (description
14620 "This package provides a convenience macro to ergonomically define an item
14621 depending on a large number of @code{#[cfg]} parameters. Structured like match
14622 statement, the first matching branch is the item that gets emitted.")
14623 (license (list license:expat license:asl2.0))))
14624
14625 (define-public rust-matches-0.1
14626 (package
14627 (name "rust-matches")
14628 (version "0.1.8")
14629 (source
14630 (origin
14631 (method url-fetch)
14632 (uri (crate-uri "matches" version))
14633 (file-name (string-append name "-" version ".crate"))
14634 (sha256
14635 (base32
14636 "020axl4q7rk9vz90phs7f8jas4imxal9y9kxl4z4v7a6719mrz3z"))))
14637 (build-system cargo-build-system)
14638 (arguments '(#:skip-build? #t))
14639 (home-page "https://github.com/SimonSapin/rust-std-candidates")
14640 (synopsis "Macro to evaluate whether an expression matches a pattern")
14641 (description "This package provides a macro to evaluate, as a boolean,
14642 whether an expression matches a pattern.")
14643 (license license:expat)))
14644
14645 (define-public rust-matchers-0.0
14646 (package
14647 (name "rust-matchers")
14648 (version "0.0.1")
14649 (source
14650 (origin
14651 (method url-fetch)
14652 (uri (crate-uri "matchers" version))
14653 (file-name
14654 (string-append name "-" version ".tar.gz"))
14655 (sha256
14656 (base32
14657 "1q8ckqmkjqkznvdi9x0z769yz2bmvlqcwx51ad2lpk4mfmgpi6gh"))))
14658 (build-system cargo-build-system)
14659 (arguments
14660 `(#:cargo-inputs
14661 (("rust-regex-automata" ,rust-regex-automata-0.1))))
14662 (home-page "https://github.com/hawkw/matchers")
14663 (synopsis "Regex matching on character and byte streams")
14664 (description
14665 "Use this crate to match on character and byte streams using regular
14666 grammars. It provides the subset of the regex crate that only deals with
14667 matching, not parsing substrings.")
14668 (license license:expat)))
14669
14670 (define-public rust-matrixmultiply-0.2
14671 (package
14672 (name "rust-matrixmultiply")
14673 (version "0.2.3")
14674 (source
14675 (origin
14676 (method url-fetch)
14677 (uri (crate-uri "matrixmultiply" version))
14678 (file-name (string-append name "-" version ".crate"))
14679 (sha256
14680 (base32
14681 "13s7nfd3dfcsrixld2lk8c563ih5xzczl2w36hprfc016rkfrxyl"))))
14682 (build-system cargo-build-system)
14683 (arguments
14684 `(#:cargo-inputs
14685 (("rust-rawpointer" ,rust-rawpointer-0.2))
14686 #:cargo-development-inputs
14687 (("rust-bencher" ,rust-bencher-0.1)
14688 ("rust-itertools" ,rust-itertools-0.7))))
14689 (home-page "https://github.com/bluss/matrixmultiply/")
14690 (synopsis "General matrix multiplication for f32 and f64 matrices")
14691 (description "General matrix multiplication for f32 and f64 matrices.
14692 Operates on matrices with general layout (they can use arbitrary row and column
14693 stride). Detects and uses AVX or SSE2 on x86 platforms transparently for higher
14694 performance. Uses a microkernel strategy, so that the implementation is easy to
14695 parallelize and optimize.")
14696 (license (list license:asl2.0
14697 license:expat))))
14698
14699 (define-public rust-matrixmultiply-0.1
14700 (package
14701 (inherit rust-matrixmultiply-0.2)
14702 (name "rust-matrixmultiply")
14703 (version "0.1.15")
14704 (source
14705 (origin
14706 (method url-fetch)
14707 (uri (crate-uri "matrixmultiply" version))
14708 (file-name (string-append name "-" version ".crate"))
14709 (sha256
14710 (base32
14711 "00p0fpjhm45qdzi37mgv7ggsy8b9gqvq4999yrbgyn1dxkf6gbfw"))))
14712 (arguments
14713 `(#:cargo-inputs (("rust-rawpointer" ,rust-rawpointer-0.1))
14714 #:cargo-development-inputs (("rust-bencher" ,rust-bencher-0.1))))))
14715
14716 (define-public rust-maybe-uninit-2.0
14717 (package
14718 (name "rust-maybe-uninit")
14719 (version "2.0.0")
14720 (source
14721 (origin
14722 (method url-fetch)
14723 (uri (crate-uri "maybe-uninit" version))
14724 (file-name
14725 (string-append name "-" version ".tar.gz"))
14726 (sha256
14727 (base32
14728 "004y0nzmpfdrhz251278341z6ql34iv1k6dp1h6af7d6nd6jwc30"))))
14729 (build-system cargo-build-system)
14730 (home-page "https://github.com/est31/maybe-uninit")
14731 (synopsis "MaybeUninit for friends of backwards compatibility")
14732 (description
14733 "This package provides MaybeUninit for friends of backwards compatibility.")
14734 (license (list license:asl2.0 license:expat))))
14735
14736 (define-public rust-md-5-0.9
14737 (package
14738 (name "rust-md-5")
14739 (version "0.9.0")
14740 (source
14741 (origin
14742 (method url-fetch)
14743 (uri (crate-uri "md-5" version))
14744 (file-name
14745 (string-append name "-" version ".tar.gz"))
14746 (sha256
14747 (base32
14748 "14x7yxfi4pk4qy3zmn9dj69yc18fg3cyind346kribjd93077qij"))))
14749 (build-system cargo-build-system)
14750 (arguments
14751 `(#:cargo-inputs
14752 (("rust-block-buffer" ,rust-block-buffer-0.8)
14753 ("rust-digest" ,rust-digest-0.9)
14754 ("rust-md5-asm" ,rust-md5-asm-0.4)
14755 ("rust-opaque-debug" ,rust-opaque-debug-0.2))
14756 #:cargo-development-inputs
14757 (("rust-digest" ,rust-digest-0.9)
14758 ("rust-hex-literal" ,rust-hex-literal-0.2))))
14759 (home-page "https://github.com/RustCrypto/hashes")
14760 (synopsis "MD5 hash function")
14761 (description "MD5 hash function.")
14762 (license (list license:expat license:asl2.0))))
14763
14764 (define-public rust-md-5-0.8
14765 (package
14766 (inherit rust-md-5-0.9)
14767 (name "rust-md-5")
14768 (version "0.8.0")
14769 (source
14770 (origin
14771 (method url-fetch)
14772 (uri (crate-uri "md-5" version))
14773 (file-name
14774 (string-append name "-" version ".tar.gz"))
14775 (sha256
14776 (base32
14777 "1j5rfxy2p76xf5f1lgaw85xla0b1bbv2lknvdhv1j0ibmzfg72m1"))))
14778 (arguments
14779 `(#:cargo-inputs
14780 (("rust-block-buffer" ,rust-block-buffer-0.7)
14781 ("rust-digest" ,rust-digest-0.8)
14782 ("rust-md5-asm" ,rust-md5-asm-0.4)
14783 ("rust-opaque-debug" ,rust-opaque-debug-0.2))
14784 #:cargo-development-inputs
14785 (("rust-digest" ,rust-digest-0.8)
14786 ("rust-hex-literal" ,rust-hex-literal-0.1))))))
14787
14788 (define-public rust-md5-0.6
14789 (package
14790 (name "rust-md5")
14791 (version "0.6.1")
14792 (source
14793 (origin
14794 (method url-fetch)
14795 (uri (crate-uri "md5" version))
14796 (file-name (string-append name "-" version ".crate"))
14797 (sha256
14798 (base32
14799 "17b2xm4h4cvxsdjsf3kdrzqv2za60kak961xzi5kmw6g6djcssvy"))))
14800 (build-system cargo-build-system)
14801 (home-page "https://github.com/stainless-steel/md5")
14802 (synopsis "MD5 hash function in Rust")
14803 (description "The package provides the MD5 hash function.")
14804 (license (list license:asl2.0
14805 license:expat))))
14806
14807 (define-public rust-md5-0.3
14808 (package
14809 (inherit rust-md5-0.6)
14810 (name "rust-md5")
14811 (version "0.3.8")
14812 (source
14813 (origin
14814 (method url-fetch)
14815 (uri (crate-uri "md5" version))
14816 (file-name
14817 (string-append name "-" version ".tar.gz"))
14818 (sha256
14819 (base32
14820 "0j2s8aqdkhwhy7awga2bmv5n8qq8bgy8672iha9f3y871dm6vibr"))))))
14821
14822 (define-public rust-md5-asm-0.4
14823 (package
14824 (name "rust-md5-asm")
14825 (version "0.4.3")
14826 (source
14827 (origin
14828 (method url-fetch)
14829 (uri (crate-uri "md5-asm" version))
14830 (file-name
14831 (string-append name "-" version ".tar.gz"))
14832 (sha256
14833 (base32
14834 "0gpk5647js1k084jc7pg2gji0cvl6hjkkbfia6lnpk8y4shyairv"))))
14835 (build-system cargo-build-system)
14836 (arguments
14837 `(#:cargo-inputs
14838 (("rust-cc" ,rust-cc-1))))
14839 (home-page "https://github.com/RustCrypto/asm-hashes")
14840 (synopsis "Assembly implementation of MD5 compression function")
14841 (description "This package contains an assembly implementation of MD5
14842 compression function.")
14843 (supported-systems '("x86_64-linux" "i686-linux"))
14844 (license license:expat)))
14845
14846 (define-public rust-measureme-0.7
14847 (package
14848 (name "rust-measureme")
14849 (version "0.7.1")
14850 (source
14851 (origin
14852 (method url-fetch)
14853 (uri (crate-uri "measureme" version))
14854 (file-name
14855 (string-append name "-" version ".tar.gz"))
14856 (sha256
14857 (base32
14858 "0cmrrh86b3rvws6d7xp07wfn703yw02cakzirykvn4vh4p9hkxzy"))))
14859 (build-system cargo-build-system)
14860 (arguments
14861 `(#:cargo-inputs
14862 (("rust-byteorder" ,rust-byteorder-1)
14863 ("rust-memmap" ,rust-memmap-0.7)
14864 ("rust-parking-lot" ,rust-parking-lot-0.9)
14865 ("rust-rustc-hash" ,rust-rustc-hash-1))))
14866 (home-page "https://github.com/rust-lang/measureme")
14867 (synopsis "Support crate for rustc's self-profiling feature")
14868 (description
14869 "Record rustc compiler events and serializing them to a compact binary
14870 format with this support package. It is integrated into rustc via the
14871 unstable -Z self-profile flag.")
14872 (license (list license:expat license:asl2.0))))
14873
14874 (define-public rust-memchr-2
14875 (package
14876 (name "rust-memchr")
14877 (version "2.3.3")
14878 (source
14879 (origin
14880 (method url-fetch)
14881 (uri (crate-uri "memchr" version))
14882 (file-name
14883 (string-append name "-" version ".tar.gz"))
14884 (sha256
14885 (base32
14886 "0074pvsfl938ndl5js14ibc7i9q0k3zp390z843w8nlyv4bxha1p"))))
14887 (build-system cargo-build-system)
14888 (arguments
14889 `(#:skip-build? #t
14890 #:cargo-inputs
14891 (("rust-libc" ,rust-libc-0.2))))
14892 (home-page "https://github.com/BurntSushi/rust-memchr")
14893 (synopsis "Safe interface to memchr")
14894 (description "The @code{memchr} crate provides heavily optimized routines
14895 for searching bytes.")
14896 (license (list license:unlicense license:expat))))
14897
14898 (define-public rust-memchr-1.0
14899 (package
14900 (inherit rust-memchr-2)
14901 (name "rust-memchr")
14902 (version "1.0.2")
14903 (source
14904 (origin
14905 (method url-fetch)
14906 (uri (crate-uri "memchr" version))
14907 (file-name
14908 (string-append name "-" version ".tar.gz"))
14909 (sha256
14910 (base32
14911 "0yjyja34pzhipdl855q3m21w1lyih4lw79x2dp3czwdla4pap3ql"))))))
14912
14913 (define-public rust-memchr-0.1
14914 (package
14915 (inherit rust-memchr-1.0)
14916 (name "rust-memchr")
14917 (version "0.1.11")
14918 (source
14919 (origin
14920 (method url-fetch)
14921 (uri (crate-uri "memchr" version))
14922 (file-name
14923 (string-append name "-" version ".tar.gz"))
14924 (sha256
14925 (base32
14926 "084d85hjfa3xf5kwdms2mhbkh78m1gl2254cp5swcxj3a7xjkdnq"))))
14927 (build-system cargo-build-system)
14928 (arguments
14929 `(#:cargo-inputs
14930 (("rust-libc" ,rust-libc-0.2))
14931 #:cargo-development-inputs
14932 (("rust-quickcheck" ,rust-quickcheck-0.2))))))
14933
14934 (define-public rust-memmap-0.7
14935 (package
14936 (name "rust-memmap")
14937 (version "0.7.0")
14938 (source
14939 (origin
14940 (method url-fetch)
14941 (uri (crate-uri "memmap" version))
14942 (file-name (string-append name "-" version ".crate"))
14943 (sha256
14944 (base32
14945 "0ns7kkd1h4pijdkwfvw4qlbbmqmlmzwlq3g2676dcl5vwyazv1b5"))))
14946 (build-system cargo-build-system)
14947 (arguments
14948 `(#:skip-build? #t
14949 #:cargo-inputs
14950 (("rust-libc" ,rust-libc-0.2)
14951 ("rust-winapi" ,rust-winapi-0.3))
14952 #:cargo-development-inputs
14953 (("rust-tempdir" ,rust-tempdir-0.3))))
14954 (home-page "https://github.com/danburkert/memmap-rs")
14955 (synopsis "Rust library for cross-platform memory mapped IO")
14956 (description
14957 "This package provides a cross-platform Rust API for memory-mapped
14958 file IO.")
14959 (license (list license:asl2.0
14960 license:expat))))
14961
14962 (define-public rust-memmap-0.6
14963 (package
14964 (inherit rust-memmap-0.7)
14965 (name "rust-memmap")
14966 (version "0.6.2")
14967 (source
14968 (origin
14969 (method url-fetch)
14970 (uri (crate-uri "memmap" version))
14971 (file-name (string-append name "-" version ".crate"))
14972 (sha256
14973 (base32
14974 "1zy6s0ni0lx9rjzq3gq2zz9r8zgjmbp02332g3gsj4fyhv4s5zz2"))))))
14975
14976 (define-public rust-memmap-0.2
14977 (package
14978 (inherit rust-memmap-0.6)
14979 (name "rust-memmap")
14980 (version "0.2.3")
14981 (source
14982 (origin
14983 (method url-fetch)
14984 (uri (crate-uri "memmap" version))
14985 (file-name
14986 (string-append name "-" version ".tar.gz"))
14987 (sha256
14988 (base32
14989 "0li737lakqcbbgd87x7h8d4vp0r1fqcbn5lb5vi746i9jgnp43zj"))))
14990 (arguments
14991 `(#:cargo-inputs
14992 (("rust-fs2" ,rust-fs2-0.2)
14993 ("rust-kernel32-sys" ,rust-kernel32-sys-0.2)
14994 ("rust-libc" ,rust-libc-0.2)
14995 ("rust-winapi" ,rust-winapi-0.2))
14996 #:cargo-development-inputs
14997 (("rust-tempdir" ,rust-tempdir-0.3))))))
14998
14999 (define-public rust-memoffset-0.5
15000 (package
15001 (name "rust-memoffset")
15002 (version "0.5.3")
15003 (source
15004 (origin
15005 (method url-fetch)
15006 (uri (crate-uri "memoffset" version))
15007 (file-name
15008 (string-append name "-" version ".tar.gz"))
15009 (sha256
15010 (base32
15011 "1fblqzc25hfaym8m0pj112s66pqq87avvaqm5hp5rskib2w9w63m"))))
15012 (build-system cargo-build-system)
15013 (arguments
15014 `(#:skip-build? #t
15015 #:cargo-inputs
15016 (("rust-rustc-version" ,rust-rustc-version-0.2))
15017 #:cargo-development-inputs
15018 (("rust-doc-comment" ,rust-doc-comment-0.3))))
15019 (home-page "https://github.com/Gilnaa/memoffset")
15020 (synopsis
15021 "C-like offset_of functionality for Rust structs")
15022 (description "This package provides C-like @code{offset_of} functionality
15023 for Rust structs.")
15024 (license license:expat)))
15025
15026 (define-public rust-memoffset-0.2
15027 (package
15028 (inherit rust-memoffset-0.5)
15029 (name "rust-memoffset")
15030 (version "0.2.1")
15031 (source
15032 (origin
15033 (method url-fetch)
15034 (uri (crate-uri "memoffset" version))
15035 (file-name
15036 (string-append name "-" version ".tar.gz"))
15037 (sha256
15038 (base32
15039 "1cvm2z7dy138s302ii7wlzcxbka5a8yfl5pl5di7lbdnw9hw578g"))))
15040 (arguments `(#:skip-build? #t))))
15041
15042 (define-public rust-memsec-0.5
15043 (package
15044 (name "rust-memsec")
15045 (version "0.5.7")
15046 (source
15047 (origin
15048 (method url-fetch)
15049 (uri (crate-uri "memsec" version))
15050 (file-name (string-append name "-" version ".tar.gz"))
15051 (sha256
15052 (base32 "13ir50j549gdz94pds1i7ljnk14d66q5x91s11hncm1pih7jif8c"))))
15053 (build-system cargo-build-system)
15054 (arguments
15055 `(#:cargo-inputs
15056 (("rust-getrandom" ,rust-getrandom-0.1)
15057 ("rust-libc" ,rust-libc-0.2)
15058 ("rust-mach-o-sys" ,rust-mach-o-sys-0.1)
15059 ("rust-winapi" ,rust-winapi-0.3))))
15060 (home-page "https://github.com/quininer/memsec")
15061 (synopsis "Rust implementation of libsodium/utils")
15062 (description "This package provides a Rust implementation of
15063 @code{libsodium/utils}.")
15064 (license license:expat)))
15065
15066 (define-public rust-metadeps-1.1
15067 (package
15068 (name "rust-metadeps")
15069 (version "1.1.2")
15070 (source
15071 (origin
15072 (method url-fetch)
15073 (uri (crate-uri "metadeps" version))
15074 (file-name
15075 (string-append name "-" version ".tar.gz"))
15076 (sha256
15077 (base32
15078 "1hjla9ypycqw1snd2qf87cckcc0d5z5qvxpcijn5yrrs3f825cbk"))))
15079 (build-system cargo-build-system)
15080 (arguments
15081 `(#:skip-build? #t
15082 #:cargo-inputs
15083 (("rust-error-chain" ,rust-error-chain-0.10)
15084 ("rust-toml" ,rust-toml-0.2)
15085 ("rust-pkg-config" ,rust-pkg-config-0.3))))
15086 (home-page "https://github.com/joshtriplett/metadeps")
15087 (synopsis "Run pkg-config from declarative dependencies in Cargo.toml")
15088 (description "Run pkg-config from declarative dependencies in Cargo.toml.")
15089 (license (list license:expat license:asl2.0))))
15090
15091 (define-public rust-metal-0.14
15092 (package
15093 (name "rust-metal")
15094 (version "0.14.0")
15095 (source
15096 (origin
15097 (method url-fetch)
15098 (uri (crate-uri "metal" version))
15099 (file-name
15100 (string-append name "-" version ".tar.gz"))
15101 (sha256
15102 (base32
15103 "0my1xwlv562i80y3jbk0nygayi383j5skdwk48clb286b7922gyd"))))
15104 (build-system cargo-build-system)
15105 (arguments
15106 `(#:skip-build? #t
15107 #:cargo-inputs
15108 (("rust-bitflags" ,rust-bitflags-1)
15109 ("rust-block" ,rust-block-0.1)
15110 ("rust-cocoa" ,rust-cocoa-0.18)
15111 ("rust-core-graphics" ,rust-core-graphics-0.17)
15112 ("rust-foreign-types" ,rust-foreign-types-0.3)
15113 ("rust-libc" ,rust-libc-0.2)
15114 ("rust-log" ,rust-log-0.4)
15115 ("rust-objc" ,rust-objc-0.2)
15116 ("rust-objc-foundation" ,rust-objc-foundation-0.1)
15117 ("rust-objc-id" ,rust-objc-id-0.1))
15118 #:cargo-development-inputs
15119 (("rust-sema" ,rust-sema-0.1)
15120 ("rust-winit" ,rust-winit-0.19)))) ; 0.17?
15121 (home-page "https://github.com/gfx-rs/metal-rs")
15122 (synopsis "Rust bindings for Metal")
15123 (description "Rust bindings for Metal.")
15124 (license (list license:expat license:asl2.0))))
15125
15126 (define-public rust-mimalloc-0.1
15127 (package
15128 (name "rust-mimalloc")
15129 (version "0.1.20")
15130 (source
15131 (origin
15132 (method url-fetch)
15133 (uri (crate-uri "mimalloc" version))
15134 (file-name (string-append name "-" version ".tar.gz"))
15135 (sha256
15136 (base32
15137 "0x74b6jv6pxfl6bh44bnch6ajm3l5z3zq8w8mqlscbq8d77rnx80"))))
15138 (build-system cargo-build-system)
15139 (arguments
15140 `(#:cargo-inputs
15141 (("rust-libmimalloc-sys" ,rust-libmimalloc-sys-0.1))))
15142 (home-page "https://crates.io/crates/mimalloc")
15143 (synopsis "Performance and security oriented drop-in allocator")
15144 (description "This package provides a performance and security oriented
15145 drop-in allocator.")
15146 (license license:expat)))
15147
15148 (define-public rust-mime-0.3
15149 (package
15150 (name "rust-mime")
15151 (version "0.3.16")
15152 (source
15153 (origin
15154 (method url-fetch)
15155 (uri (crate-uri "mime" version))
15156 (file-name (string-append name "-" version ".crate"))
15157 (sha256
15158 (base32
15159 "13dcm9lh01hdwfjcg74ppljyjfj1c6w3a3cwkhxf0w8wa37cfq1a"))))
15160 (build-system cargo-build-system)
15161 (arguments '(#:skip-build? #t))
15162 (home-page "https://github.com/hyperium/mime")
15163 (synopsis "Strongly Typed Mimes")
15164 (description
15165 "Support MIME (HTTP Media Types) as strong types in Rust.")
15166 (license (list license:asl2.0
15167 license:expat))))
15168
15169 (define-public rust-mime-guess-2
15170 (package
15171 (name "rust-mime-guess")
15172 (version "2.0.3")
15173 (source
15174 (origin
15175 (method url-fetch)
15176 (uri (crate-uri "mime_guess" version))
15177 (file-name (string-append name "-" version ".tar.gz"))
15178 (sha256
15179 (base32
15180 "04pjpbl90z4yn0cmifvwgf4mqznciw6b095k626q96bxx71d9116"))))
15181 (build-system cargo-build-system)
15182 (arguments
15183 `(#:cargo-inputs
15184 (("rust-mime" ,rust-mime-0.3)
15185 ("rust-unicase" ,rust-unicase-2))
15186 #:cargo-development-inputs
15187 (("rust-criterion" ,rust-criterion-0.3)
15188 ("rust-unicase" ,rust-unicase-2))))
15189 (home-page "https://github.com/abonander/mime_guess")
15190 (synopsis "Detect a file's MIME type by its extension")
15191 (description "This package provides a simple crate for detection of a
15192 file's MIME type by its extension.")
15193 (license license:expat)))
15194
15195 (define-public rust-miniz-oxide-0.3
15196 (package
15197 (name "rust-miniz-oxide")
15198 (version "0.3.6")
15199 (source
15200 (origin
15201 (method url-fetch)
15202 (uri (crate-uri "miniz_oxide" version))
15203 (file-name (string-append name "-" version ".crate"))
15204 (sha256
15205 (base32
15206 "198n4hfpq0qcxf275l6fpzh7b9cl7ck2xs6pjgpds74bazv9yrxa"))))
15207 (build-system cargo-build-system)
15208 (arguments
15209 `(#:skip-build? #t
15210 #:cargo-inputs (("rust-adler32" ,rust-adler32-1))))
15211 (home-page "https://github.com/Frommi/miniz_oxide/tree/master/miniz_oxide")
15212 (synopsis "Pure rust replacement for the miniz DEFLATE/zlib encoder/decoder")
15213 (description
15214 "A pure rust replacement for the miniz DEFLATE/zlib encoder/decoder. Using
15215 @code{flate2} with the @code{rust_backend} feature provides an easy to use
15216 streaming API for miniz_oxide.")
15217 (license license:expat)))
15218
15219 (define-public rust-miniz-oxide-0.2
15220 (package
15221 (inherit rust-miniz-oxide-0.3)
15222 (name "rust-miniz-oxide")
15223 (version "0.2.2")
15224 (source
15225 (origin
15226 (method url-fetch)
15227 (uri (crate-uri "miniz_oxide" version))
15228 (file-name
15229 (string-append name "-" version ".tar.gz"))
15230 (sha256
15231 (base32
15232 "17f92krv9hhsyc38prpfyn99m2hqhr4fgszpsla66a6gcrnpbhxn"))))))
15233
15234 (define-public rust-miniz-oxide-c-api-0.2
15235 (package
15236 (name "rust-miniz-oxide-c-api")
15237 (version "0.2.2")
15238 (source
15239 (origin
15240 (method url-fetch)
15241 (uri (crate-uri "miniz_oxide_c_api" version))
15242 (file-name
15243 (string-append name "-" version ".tar.gz"))
15244 (sha256
15245 (base32
15246 "1514mvlj8vl723xqxnww5cfqr2mhnqqqf18fn3df17yx8racly2v"))))
15247 (build-system cargo-build-system)
15248 (arguments
15249 `(#:skip-build? #t
15250 #:cargo-inputs
15251 (("rust-crc32fast" ,rust-crc32fast-1)
15252 ("rust-libc" ,rust-libc-0.2)
15253 ("rust-miniz-oxide" ,rust-miniz-oxide-0.2))
15254 #:cargo-development-inputs
15255 (("rust-cc" ,rust-cc-1))))
15256 (home-page "https://github.com/Frommi/miniz_oxide/")
15257 (synopsis "DEFLATE compression and decompression API")
15258 (description
15259 "DEFLATE compression and decompression API designed to be Rust
15260 drop-in replacement for miniz.")
15261 (license license:expat)))
15262
15263 (define-public rust-miniz-sys-0.1
15264 (package
15265 (name "rust-miniz-sys")
15266 (version "0.1.12")
15267 (source
15268 (origin
15269 (method url-fetch)
15270 (uri (crate-uri "miniz-sys" version))
15271 (file-name (string-append name "-" version ".crate"))
15272 (sha256
15273 (base32
15274 "00l2r4anm8g35x0js2zfdnwfbrih9m43vphdpb77c5ga3kjkm7hy"))))
15275 (build-system cargo-build-system)
15276 (arguments
15277 `(#:cargo-inputs
15278 (("rust-libc" ,rust-libc-0.2)
15279 ;; Build dependencies:
15280 ("rust-cc" ,rust-cc-1))))
15281 (home-page "https://github.com/alexcrichton/flate2-rs")
15282 (synopsis "Bindings to the miniz.c library")
15283 (description
15284 "This package provides bindings to the @code{miniz.c} library.")
15285 (license (list license:asl2.0
15286 license:expat))))
15287
15288 (define-public rust-mint-0.5
15289 (package
15290 (name "rust-mint")
15291 (version "0.5.4")
15292 (source
15293 (origin
15294 (method url-fetch)
15295 (uri (crate-uri "mint" version))
15296 (file-name
15297 (string-append name "-" version ".tar.gz"))
15298 (sha256
15299 (base32
15300 "0c4190gr348fkfijij7vm19iagwl36mssj1irc9f6m448hbhgn68"))))
15301 (build-system cargo-build-system)
15302 (home-page "https://github.com/kvark/mint")
15303 (synopsis "Math interoperability standard types")
15304 (description
15305 "This package provides math interoperability standard types.")
15306 (license license:expat)))
15307
15308 (define-public rust-mio-0.6
15309 (package
15310 (name "rust-mio")
15311 (version "0.6.21")
15312 (source
15313 (origin
15314 (method url-fetch)
15315 (uri (crate-uri "mio" version))
15316 (file-name
15317 (string-append name "-" version ".tar.gz"))
15318 (sha256
15319 (base32
15320 "13q02a7cwc140aygf8amadpzpl5lyj3p2r4wnvgydfpnphifqb9h"))))
15321 (build-system cargo-build-system)
15322 (arguments
15323 `(#:tests? #f
15324 #:cargo-inputs
15325 (("rust-cfg-if" ,rust-cfg-if-0.1)
15326 ("rust-fuchsia-zircon" ,rust-fuchsia-zircon-0.3)
15327 ("rust-fuchsia-zircon-sys" ,rust-fuchsia-zircon-sys-0.3)
15328 ("rust-iovec" ,rust-iovec-0.1)
15329 ("rust-kernel32-sys" ,rust-kernel32-sys-0.2)
15330 ("rust-libc" ,rust-libc-0.2)
15331 ("rust-log" ,rust-log-0.4)
15332 ("rust-miow" ,rust-miow-0.2)
15333 ("rust-net2" ,rust-net2-0.2)
15334 ("rust-slab" ,rust-slab-0.4)
15335 ("rust-winapi" ,rust-winapi-0.2))
15336 #:cargo-development-inputs
15337 (("rust-bytes" ,rust-bytes-0.3)
15338 ("rust-env-logger" ,rust-env-logger-0.4)
15339 ("rust-tempdir" ,rust-tempdir-0.3))))
15340 (home-page "https://github.com/tokio-rs/mio")
15341 (synopsis "Lightweight non-blocking IO")
15342 (description "Lightweight non-blocking IO.")
15343 (license license:expat)))
15344
15345 (define-public rust-mio-anonymous-pipes-0.1
15346 (package
15347 (name "rust-mio-anonymous-pipes")
15348 (version "0.1.0")
15349 (source
15350 (origin
15351 (method url-fetch)
15352 (uri (crate-uri "mio-anonymous-pipes" version))
15353 (file-name
15354 (string-append name "-" version ".tar.gz"))
15355 (sha256
15356 (base32
15357 "1bqs8wncd73q4pnbiwskhgds57hyr8g89vfpqmw1vk9dqp1p9hpq"))))
15358 (build-system cargo-build-system)
15359 (arguments
15360 `(#:skip-build? #t
15361 #:cargo-inputs
15362 (("rust-mio" ,rust-mio-0.6)
15363 ("rust-miow" ,rust-miow-0.3)
15364 ("rust-spsc-buffer" ,rust-spsc-buffer-0.1)
15365 ("rust-winapi" ,rust-winapi-0.3))))
15366 (home-page "https://github.com/davidhewitt/mio-anonymous-pipes")
15367 (synopsis "Asynchronous wrapper for Windows synchronous pipes")
15368 (description
15369 "This package provides asynchronous wrapper for Windows synchronous pipes.")
15370 (license license:expat)))
15371
15372 (define-public rust-mio-extras-2
15373 (package
15374 (name "rust-mio-extras")
15375 (version "2.0.6")
15376 (source
15377 (origin
15378 (method url-fetch)
15379 (uri (crate-uri "mio-extras" version))
15380 (file-name
15381 (string-append name "-" version ".tar.gz"))
15382 (sha256
15383 (base32
15384 "069gfhlv0wlwfx1k2sriwfws490kjp490rv2qivyfb01j3i3yh2j"))))
15385 (build-system cargo-build-system)
15386 (arguments
15387 `(#:cargo-inputs
15388 (("rust-lazycell" ,rust-lazycell-1)
15389 ("rust-log" ,rust-log-0.4)
15390 ("rust-mio" ,rust-mio-0.6)
15391 ("rust-slab" ,rust-slab-0.4))))
15392 (home-page "https://github.com/dimbleby/mio-extras")
15393 (synopsis "Extra components for use with Mio")
15394 (description "Extra components for use with Mio.")
15395 (license (list license:expat license:asl2.0))))
15396
15397 (define-public rust-mio-named-pipes-0.1
15398 (package
15399 (name "rust-mio-named-pipes")
15400 (version "0.1.6")
15401 (source
15402 (origin
15403 (method url-fetch)
15404 (uri (crate-uri "mio-named-pipes" version))
15405 (file-name
15406 (string-append name "-" version ".tar.gz"))
15407 (sha256
15408 (base32
15409 "1cwwfx1yr9vws8x971x34ijnirs377vcxi47frdirki5yppp9qzm"))))
15410 (build-system cargo-build-system)
15411 (arguments
15412 `(#:skip-build? #t
15413 #:cargo-inputs
15414 (("rust-log" ,rust-log-0.4)
15415 ("rust-mio" ,rust-mio-0.6)
15416 ("rust-miow" ,rust-miow-0.3)
15417 ("rust-winapi" ,rust-winapi-0.3))
15418 #:cargo-development-inputs
15419 (("rust-env-logger" ,rust-env-logger-0.4)
15420 ("rust-rand" ,rust-rand-0.4))))
15421 (home-page "https://github.com/alexcrichton/mio-named-pipes")
15422 (synopsis "Windows named pipe bindings for mio")
15423 (description
15424 "A library for integrating Windows Named Pipes with mio.")
15425 (license `(,license:asl2.0 ,license:expat))))
15426
15427 (define-public rust-mio-uds-0.6
15428 (package
15429 (name "rust-mio-uds")
15430 (version "0.6.7")
15431 (source
15432 (origin
15433 (method url-fetch)
15434 (uri (crate-uri "mio-uds" version))
15435 (file-name
15436 (string-append name "-" version ".tar.gz"))
15437 (sha256
15438 (base32
15439 "09gimdbnj7b9yca99pk8lxh9jhl79msj795c8fxi2sqr9slmfqln"))))
15440 (build-system cargo-build-system)
15441 (arguments
15442 `(#:skip-build? #t
15443 #:cargo-inputs
15444 (("rust-iovec" ,rust-iovec-0.1)
15445 ("rust-libc" ,rust-libc-0.2)
15446 ("rust-mio" ,rust-mio-0.6))
15447 #:cargo-development-inputs
15448 (("rust-tempdir" ,rust-tempdir-0.3))))
15449 (home-page "https://github.com/alexcrichton/mio-uds")
15450 (synopsis "Unix domain socket bindings for mio")
15451 (description
15452 "Unix domain socket bindings for mio.")
15453 (license (list license:asl2.0 license:expat))))
15454
15455 (define-public rust-miow-0.3
15456 (package
15457 (name "rust-miow")
15458 (version "0.3.3")
15459 (source
15460 (origin
15461 (method url-fetch)
15462 (uri (crate-uri "miow" version))
15463 (file-name (string-append name "-" version ".crate"))
15464 (sha256
15465 (base32
15466 "09ljvx6wg30f2xlv7b7hhpkw7k312n3hjgmrbhwzhz9x03ra0sir"))))
15467 (build-system cargo-build-system)
15468 (arguments
15469 `(#:skip-build? #t
15470 #:cargo-inputs
15471 (("rust-socket2" ,rust-socket2-0.3)
15472 ("rust-winapi" ,rust-winapi-0.3))
15473 #:cargo-development-inputs
15474 (("rust-rand" ,rust-rand-0.4))))
15475 (home-page "https://github.com/alexcrichton/miow")
15476 (synopsis "Rust I/O library for Windows")
15477 (description
15478 "This package provides a zero overhead I/O library for Windows, focusing on
15479 IOCP and Async I/O abstractions.")
15480 (license (list license:asl2.0
15481 license:expat))))
15482
15483 (define-public rust-miow-0.2
15484 (package
15485 (inherit rust-miow-0.3)
15486 (name "rust-miow")
15487 (version "0.2.1")
15488 (source
15489 (origin
15490 (method url-fetch)
15491 (uri (crate-uri "miow" version))
15492 (file-name (string-append name "-" version ".crate"))
15493 (sha256
15494 (base32
15495 "06g9b8sqlh5gxakwqq4rrib07afwanfnxgxajrldwcgk3hxjy7wc"))))
15496 (arguments
15497 `(#:skip-build? #t
15498 #:cargo-inputs
15499 (("rust-kernel32-sys" ,rust-kernel32-sys-0.2)
15500 ("rust-net2" ,rust-net2-0.2)
15501 ("rust-winapi" ,rust-winapi-0.2)
15502 ("rust-ws2-32-sys" ,rust-ws2-32-sys-0.2))
15503 #:cargo-development-inputs
15504 (("rust-rand" ,rust-rand-0.3))))))
15505
15506 (define-public rust-model-0.1
15507 (package
15508 (name "rust-model")
15509 (version "0.1.2")
15510 (source
15511 (origin
15512 (method url-fetch)
15513 (uri (crate-uri "model" version))
15514 (file-name
15515 (string-append name "-" version ".tar.gz"))
15516 (sha256
15517 (base32
15518 "0kx6hy5i1fn2qs4x6hpng9jixpm68g83vm24z8bqqscr317yinb6"))))
15519 (build-system cargo-build-system)
15520 (arguments
15521 `(#:skip-build? #t
15522 #:cargo-inputs
15523 (("rust-permutohedron" ,rust-permutohedron-0.2)
15524 ("rust-proptest" ,rust-proptest-0.9))))
15525 (home-page "https://github.com/spacejam/model")
15526 (synopsis "Model-based testing for data structures")
15527 (description
15528 "Model-based testing for data structures, with linearizability
15529 checking.")
15530 (license (list license:expat license:asl2.0))))
15531
15532 (define-public rust-modifier-0.1
15533 (package
15534 (name "rust-modifier")
15535 (version "0.1.0")
15536 (source
15537 (origin
15538 (method url-fetch)
15539 (uri (crate-uri "modifier" version))
15540 (file-name (string-append name "-" version ".crate"))
15541 (sha256
15542 (base32
15543 "0n3fmgli1nsskl0whrfzm1gk0rmwwl6pw1q4nb9sqqmn5h8wkxa1"))))
15544 (build-system cargo-build-system)
15545 (home-page "https://github.com/reem/rust-modifier")
15546 (synopsis
15547 "Chaining APIs for both self -> Self and &mut self methods.")
15548 (description
15549 "Chaining APIs for both self -> Self and &mut self methods.")
15550 (license license:expat)))
15551
15552 (define-public rust-multi-default-trait-impl-0.1
15553 (package
15554 (name "rust-multi-default-trait-impl")
15555 (version "0.1.2")
15556 (source
15557 (origin
15558 (method url-fetch)
15559 (uri (crate-uri "multi-default-trait-impl" version))
15560 (file-name
15561 (string-append name "-" version ".tar.gz"))
15562 (sha256
15563 (base32
15564 "1r6y5zb6kg655zi02yk4amkwsgds5ay9ag1dk30cls7rn3dlvvqs"))))
15565 (build-system cargo-build-system)
15566 (arguments
15567 `(#:cargo-inputs
15568 (("rust-lazy-static" ,rust-lazy-static-1)
15569 ("rust-proc-macro2" ,rust-proc-macro2-1)
15570 ("rust-quote" ,rust-quote-1)
15571 ("rust-syn" ,rust-syn-1))))
15572 (home-page "https://github.com/hainish/multi-default-trait-impl")
15573 (synopsis "Define multiple implementations of trait")
15574 (description
15575 "This library contains two attribute macros: @code{default_trait_impl}
15576 which defines a default trait implementation, and @code{trait_impl} which uses
15577 a default trait implementation you've defined.")
15578 (license license:lgpl2.1+)))
15579
15580 (define-public rust-mysqlclient-sys-0.2
15581 (package
15582 (name "rust-mysqlclient-sys")
15583 (version "0.2.4")
15584 (source
15585 (origin
15586 (method url-fetch)
15587 (uri (crate-uri "mysqlclient-sys" version))
15588 (file-name (string-append name "-" version ".tar.gz"))
15589 (sha256
15590 (base32
15591 "11ggkcbfnmp81amc9g0j98dk17fnmqcp9smgm9w401286kckg5ky"))))
15592 (build-system cargo-build-system)
15593 (arguments
15594 `(#:cargo-inputs
15595 (("rust-pkg-config" ,rust-pkg-config-0.3)
15596 ("rust-vcpkg" ,rust-vcpkg-0.2))))
15597 (native-inputs
15598 `(("mariadb" ,mariadb "lib")))
15599 (home-page "https://github.com/sgrif/mysqlclient-sys")
15600 (synopsis "Auto-generated rust bindings for libmysqlclient")
15601 (description "This package provides auto-generated rust bindings for
15602 libmysqlclient.")
15603 (license (list license:expat license:asl2.0))))
15604
15605 (define-public rust-nasm-rs-0.1
15606 (package
15607 (name "rust-nasm-rs")
15608 (version "0.1.7")
15609 (source
15610 (origin
15611 (method url-fetch)
15612 (uri (crate-uri "nasm-rs" version))
15613 (file-name
15614 (string-append name "-" version ".tar.gz"))
15615 (sha256
15616 (base32
15617 "0r34hiy1pc0aksrfc02zsl0zyw33i9yi7kyx8l214l7nm0mzm97y"))))
15618 (build-system cargo-build-system)
15619 (arguments
15620 `(#:skip-build? #t
15621 #:cargo-inputs
15622 (("rust-rayon" ,rust-rayon-1))))
15623 (home-page "https://github.com/medek/nasm-rs")
15624 (synopsis "Run NASM during your Cargo build")
15625 (description "Run NASM during your Cargo build.")
15626 (license (list license:expat license:asl2.0))))
15627
15628 (define-public rust-nalgebra-0.21
15629 (package
15630 (name "rust-nalgebra")
15631 (version "0.21.1")
15632 (source
15633 (origin
15634 (method url-fetch)
15635 (uri (crate-uri "nalgebra" version))
15636 (file-name
15637 (string-append name "-" version ".tar.gz"))
15638 (sha256
15639 (base32
15640 "11ili22n4ffgcjbgvbjqmpbd67qrl2acqbpymg6z7d2h7my19dnn"))))
15641 (build-system cargo-build-system)
15642 (arguments
15643 `(#:cargo-inputs
15644 (("rust-abomonation" ,rust-abomonation-0.7)
15645 ("rust-alga" ,rust-alga-0.9)
15646 ("rust-approx" ,rust-approx-0.3)
15647 ("rust-generic-array" ,rust-generic-array-0.13)
15648 ("rust-matrixmultiply" ,rust-matrixmultiply-0.2)
15649 ("rust-mint" ,rust-mint-0.5)
15650 ("rust-num-complex" ,rust-num-complex-0.2)
15651 ("rust-num-rational" ,rust-num-rational-0.2)
15652 ("rust-num-traits" ,rust-num-traits-0.2)
15653 ("rust-pest" ,rust-pest-2)
15654 ("rust-pest-derive" ,rust-pest-derive-2)
15655 ("rust-quickcheck" ,rust-quickcheck-0.9)
15656 ("rust-rand" ,rust-rand-0.7)
15657 ("rust-rand-distr" ,rust-rand-distr-0.2)
15658 ("rust-serde" ,rust-serde-1)
15659 ("rust-serde-derive" ,rust-serde-derive-1)
15660 ("rust-simba" ,rust-simba-0.1)
15661 ("rust-typenum" ,rust-typenum-1))
15662 #:cargo-development-inputs
15663 (("rust-rand-isaac" ,rust-rand-isaac-0.2)
15664 ("rust-rand-xorshift" ,rust-rand-xorshift-0.2)
15665 ("rust-serde-json" ,rust-serde-json-1))))
15666 (home-page "https://nalgebra.org")
15667 (synopsis "Linear algebra library")
15668 (description
15669 "This package provides a linear algebra library with transformations and
15670 statically-sized or dynamically-sized matrices.")
15671 (license license:bsd-3)))
15672
15673 (define-public rust-nalgebra-0.19
15674 (package
15675 (inherit rust-nalgebra-0.21)
15676 (name "rust-nalgebra")
15677 (version "0.19.0")
15678 (source
15679 (origin
15680 (method url-fetch)
15681 (uri (crate-uri "nalgebra" version))
15682 (file-name
15683 (string-append name "-" version ".tar.gz"))
15684 (sha256
15685 (base32
15686 "0i87k57nav221lnr9z7ljlwxh8073qsx33bajdm146y00q805fqa"))))
15687 (arguments
15688 `(#:cargo-inputs
15689 (("rust-abomonation" ,rust-abomonation-0.7)
15690 ("rust-alga" ,rust-alga-0.9)
15691 ("rust-approx" ,rust-approx-0.3)
15692 ("rust-generic-array" ,rust-generic-array-0.13)
15693 ("rust-matrixmultiply" ,rust-matrixmultiply-0.2)
15694 ("rust-mint" ,rust-mint-0.5)
15695 ("rust-num-complex" ,rust-num-complex-0.2)
15696 ("rust-num-rational" ,rust-num-rational-0.2)
15697 ("rust-num-traits" ,rust-num-traits-0.2)
15698 ("rust-pest" ,rust-pest-2)
15699 ("rust-pest-derive" ,rust-pest-derive-2)
15700 ("rust-quickcheck" ,rust-quickcheck-0.9)
15701 ("rust-rand" ,rust-rand-0.7)
15702 ("rust-rand-distr" ,rust-rand-distr-0.2)
15703 ("rust-serde" ,rust-serde-1)
15704 ("rust-serde-derive" ,rust-serde-derive-1)
15705 ("rust-typenum" ,rust-typenum-1))
15706 #:cargo-development-inputs
15707 (("rust-rand-xorshift" ,rust-rand-xorshift-0.2)
15708 ("rust-serde-json" ,rust-serde-json-1))))))
15709
15710 (define-public rust-nalgebra-0.18
15711 (package
15712 (inherit rust-nalgebra-0.19)
15713 (name "rust-nalgebra")
15714 (version "0.18.1")
15715 (source
15716 (origin
15717 (method url-fetch)
15718 (uri (crate-uri "nalgebra" version))
15719 (file-name
15720 (string-append name "-" version ".tar.gz"))
15721 (sha256
15722 (base32
15723 "18i1npny8s45ff67p5qpdwwsn36fp23mal8847fkb32cqgdzvada"))))
15724 (arguments
15725 `(#:cargo-inputs
15726 (("rust-abomonation" ,rust-abomonation-0.7)
15727 ("rust-alga" ,rust-alga-0.9)
15728 ("rust-approx" ,rust-approx-0.3)
15729 ("rust-generic-array" ,rust-generic-array-0.12)
15730 ("rust-matrixmultiply" ,rust-matrixmultiply-0.2)
15731 ("rust-mint" ,rust-mint-0.5)
15732 ("rust-num-complex" ,rust-num-complex-0.2)
15733 ("rust-num-rational" ,rust-num-rational-0.2)
15734 ("rust-num-traits" ,rust-num-traits-0.2)
15735 ("rust-pest" ,rust-pest-2)
15736 ("rust-pest-derive" ,rust-pest-derive-2)
15737 ("rust-quickcheck" ,rust-quickcheck-0.8)
15738 ("rust-rand" ,rust-rand-0.6)
15739 ("rust-serde" ,rust-serde-1)
15740 ("rust-serde-derive" ,rust-serde-derive-1)
15741 ("rust-typenum" ,rust-typenum-1))
15742 #:cargo-development-inputs
15743 (("rust-rand-xorshift" ,rust-rand-xorshift-0.1)
15744 ("rust-serde-json" ,rust-serde-json-1))))))
15745
15746 (define-public rust-named-pipe-0.4
15747 (package
15748 (name "rust-named-pipe")
15749 (version "0.4.1")
15750 (source
15751 (origin
15752 (method url-fetch)
15753 (uri (crate-uri "named-pipe" version))
15754 (file-name
15755 (string-append name "-" version ".tar.gz"))
15756 (sha256
15757 (base32
15758 "0azby10wzmsrf66m1bysbil0sjfybnvhsa8py093xz4irqy4975d"))))
15759 (build-system cargo-build-system)
15760 (arguments
15761 `(#:skip-build? #t ; Only builds on Windows.
15762 #:cargo-inputs (("rust-winapi" ,rust-winapi-0.3))))
15763 (home-page "https://github.com/blackbeam/named_pipe")
15764 (synopsis "Wrapper for overlapped (asynchronous) IO of Windows's named pipes")
15765 (description "This package provides a wrapper for overlapped (asynchronous)
15766 IO of Windows's named pipes.")
15767 (license (list license:expat license:asl2.0))))
15768
15769 (define-public rust-napi-0.5
15770 (package
15771 (name "rust-napi")
15772 (version "0.5.1")
15773 (source
15774 (origin
15775 (method url-fetch)
15776 (uri (crate-uri "napi" version))
15777 (file-name (string-append name "-" version ".tar.gz"))
15778 (sha256
15779 (base32
15780 "0mp0di7zv1r9gn3r3pmqnyy6q94akd9d6bl1p7m76nm9hgj9rw56"))))
15781 (build-system cargo-build-system)
15782 (arguments
15783 `(#:cargo-inputs
15784 (("rust-encoding-rs" ,rust-encoding-rs-0.8)
15785 ("rust-futures" ,rust-futures-0.3)
15786 ("rust-napi-sys" ,rust-napi-sys-0.4)
15787 ("rust-once-cell" ,rust-once-cell-1)
15788 ("rust-serde" ,rust-serde-1)
15789 ("rust-serde-json" ,rust-serde-json-1)
15790 ("rust-tokio" ,rust-tokio-0.2))
15791 #:cargo-development-inputs
15792 (("rust-napi-build" ,rust-napi-build-0.2))))
15793 (home-page "https://github.com/napi-rs/napi-rs")
15794 (synopsis "N-API bindings")
15795 (description "This package provides N-API bindings.")
15796 (license license:expat)))
15797
15798 (define-public rust-napi-build-0.2
15799 (package
15800 (name "rust-napi-build")
15801 (version "0.2.1")
15802 (source
15803 (origin
15804 (method url-fetch)
15805 (uri (crate-uri "napi-build" version))
15806 (file-name (string-append name "-" version ".tar.gz"))
15807 (sha256
15808 (base32
15809 "1z02mlw1wa01fjpjnqns3f3vxacbg1jnk98hcg3pgwp5xy3zdyqq"))))
15810 (build-system cargo-build-system)
15811 (arguments
15812 `(#:cargo-inputs
15813 (("rust-cfg-if" ,rust-cfg-if-0.1)
15814 ("rust-reqwest" ,rust-reqwest-0.10))))
15815 (home-page "https://github.com/napi-rs/napi-rs")
15816 (synopsis "N-API build support")
15817 (description "This package provides N-API build support.")
15818 (license license:expat)))
15819
15820 (define-public rust-napi-derive-0.5
15821 (package
15822 (name "rust-napi-derive")
15823 (version "0.5.1")
15824 (source
15825 (origin
15826 (method url-fetch)
15827 (uri (crate-uri "napi-derive" version))
15828 (file-name (string-append name "-" version ".tar.gz"))
15829 (sha256
15830 (base32
15831 "0kkgpzw4i6f0zkg80v9vhr7y5rg25q3kv67029i1gcgsrxlqx4zi"))))
15832 (build-system cargo-build-system)
15833 (arguments
15834 `(#:cargo-inputs
15835 (("rust-proc-macro2" ,rust-proc-macro2-1)
15836 ("rust-quote" ,rust-quote-1)
15837 ("rust-syn" ,rust-syn-1))))
15838 (home-page "https://github.com/napi-rs/napi-rs")
15839 (synopsis "N-API procedural macros")
15840 (description "This package provides N-API procedural macros.")
15841 (license license:expat)))
15842
15843 (define-public rust-napi-sys-0.4
15844 (package
15845 (name "rust-napi-sys")
15846 (version "0.4.7")
15847 (source
15848 (origin
15849 (method url-fetch)
15850 (uri (crate-uri "napi-sys" version))
15851 (file-name (string-append name "-" version ".tar.gz"))
15852 (sha256
15853 (base32
15854 "0cjirf6n4i2lw65iaww8d4hahv3cbfm5ka9hlansvnbfgzwadzq9"))))
15855 (build-system cargo-build-system)
15856 (inputs
15857 `(("openssl" ,openssl)))
15858 (native-inputs
15859 `(("pkg-config" ,pkg-config)))
15860 (arguments
15861 `(#:cargo-inputs
15862 (("rust-bindgen" ,rust-bindgen-0.55)
15863 ("rust-semver" ,rust-semver-0.10)
15864 ("rust-tar" ,rust-tar-0.4))
15865 #:cargo-development-inputs
15866 (("rust-flate2" ,rust-flate2-1)
15867 ("rust-glob" ,rust-glob-0.3)
15868 ("rust-regex" ,rust-regex-1)
15869 ("rust-reqwest" ,rust-reqwest-0.10))))
15870 (home-page "https://github.com/napi-rs/napi-rs")
15871 (synopsis "NodeJS N-API raw binding")
15872 (description "This package provides a NodeJS N-API raw binding.")
15873 (license license:expat)))
15874
15875 (define-public rust-native-tls-0.2
15876 (package
15877 (name "rust-native-tls")
15878 (version "0.2.3")
15879 (source
15880 (origin
15881 (method url-fetch)
15882 (uri (crate-uri "native-tls" version))
15883 (file-name
15884 (string-append name "-" version ".tar.gz"))
15885 (sha256
15886 (base32
15887 "0ki7cj4wzyd2nach4qdjly69sp7rs0yz3n3z2ii4mm1gqajg2bab"))))
15888 (build-system cargo-build-system)
15889 (arguments
15890 `(#:tests? #f ; tests require network access
15891 #:cargo-inputs
15892 (("rust-lazy-static" ,rust-lazy-static-1)
15893 ("rust-libc" ,rust-libc-0.2)
15894 ("rust-log" ,rust-log-0.4)
15895 ("rust-openssl" ,rust-openssl-0.10)
15896 ("rust-openssl-probe" ,rust-openssl-probe-0.1)
15897 ("rust-openssl-sys" ,rust-openssl-sys-0.9)
15898 ("rust-schannel" ,rust-schannel-0.1)
15899 ("rust-security-framework" ,rust-security-framework-0.3)
15900 ("rust-security-framework-sys" ,rust-security-framework-sys-0.3)
15901 ("rust-tempfile" ,rust-tempfile-3))
15902 #:cargo-development-inputs
15903 (("rust-hex" ,rust-hex-0.3))))
15904 (native-inputs
15905 `(("pkg-config" ,pkg-config)))
15906 (inputs
15907 `(("openssl" ,openssl)))
15908 (home-page "https://github.com/sfackler/rust-native-tls")
15909 (synopsis
15910 "Wrapper over a platform's native TLS implementation")
15911 (description
15912 "This package provides a wrapper over a platform's native TLS implementation.")
15913 (license (list license:expat license:asl2.0))))
15914
15915 (define-public rust-natord-1.0
15916 (package
15917 (name "rust-natord")
15918 (version "1.0.9")
15919 (source
15920 (origin
15921 (method url-fetch)
15922 (uri (crate-uri "natord" version))
15923 (file-name
15924 (string-append name "-" version ".tar.gz"))
15925 (sha256
15926 (base32
15927 "0z75spwag3ch20841pvfwhh3892i2z2sli4pzp1jgizbipdrd39h"))))
15928 (build-system cargo-build-system)
15929 (home-page "https://github.com/lifthrasiir/rust-natord")
15930 (synopsis "Natural ordering for Rust")
15931 (description
15932 "This package provides a crate to perform natural ordering for Rust.")
15933 (license license:expat)))
15934
15935 (define-public rust-net2-0.2
15936 (package
15937 (name "rust-net2")
15938 (version "0.2.33")
15939 (source
15940 (origin
15941 (method url-fetch)
15942 (uri (crate-uri "net2" version))
15943 (file-name (string-append name "-" version ".crate"))
15944 (sha256
15945 (base32
15946 "126g3fgfxp06zimc1l9iyxnn9cif1hjsg7sd81nlls5nnyghsma2"))))
15947 (build-system cargo-build-system)
15948 (arguments
15949 `(#:skip-build? #t
15950 #:cargo-inputs
15951 (("rust-cfg-if" ,rust-cfg-if-0.1)
15952 ("rust-libc" ,rust-libc-0.2)
15953 ("rust-winapi" ,rust-winapi-0.3))))
15954 (home-page "https://github.com/rust-lang-nursery/net2-rs")
15955 (synopsis "Extensions to the standard library's networking types")
15956 (description
15957 "This library contains extensions to the standard library's networking
15958 types as proposed in RFC 1158.")
15959 (license (list license:asl2.0
15960 license:expat))))
15961
15962 (define-public rust-nettle-7
15963 (package
15964 (name "rust-nettle")
15965 (version "7.0.0")
15966 (source
15967 (origin
15968 (method url-fetch)
15969 (uri (crate-uri "nettle" version))
15970 (file-name (string-append name "-" version ".tar.gz"))
15971 (sha256
15972 (base32 "1n6dwy9zba8853bmxzhwaashd3np0wxpx0pj43brm0hb8n2sxbxi"))
15973 (patches (search-patches "rust-nettle-disable-vendor.patch"))))
15974 (build-system cargo-build-system)
15975 (native-inputs
15976 `(("pkg-config" ,pkg-config)))
15977 (inputs
15978 `(("clang" ,clang)
15979 ("gmp" ,gmp)
15980 ("nettle" ,nettle)))
15981 (arguments
15982 `(#:skip-build? #t ;; provides nothing, has no tests
15983 #:cargo-inputs
15984 (("rust-getrandom" ,rust-getrandom-0.1)
15985 ("rust-libc" ,rust-libc-0.2)
15986 ("rust-nettle-sys" ,rust-nettle-sys-2)
15987 ("rust-thiserror" ,rust-thiserror-1))
15988 #:cargo-development-inputs
15989 (("rust-bindgen" ,rust-bindgen-0.51)
15990 ("rust-pkg-config" ,rust-pkg-config-0.3))))
15991 (home-page "https://gitlab.com/sequoia-pgp/nettle-rs")
15992 (synopsis "Rust bindings for the Nettle cryptographic library")
15993 (description "This package provides Rust bindings for the Nettle
15994 cryptographic library.")
15995 (license (list license:lgpl3 license:gpl2 license:gpl3))))
15996
15997 (define-public rust-nettle-5
15998 (package
15999 (inherit rust-nettle-7)
16000 (version "5.0.3")
16001 (source
16002 (origin
16003 (method url-fetch)
16004 (uri (crate-uri "nettle" version))
16005 (file-name
16006 (string-append (package-name rust-nettle-7) "-" version ".tar.gz"))
16007 (sha256
16008 (base32 "0zfplqdf3mag8r7lc124hl24vri8yg711jmm8gl1mpwnlhass2n4"))
16009 (patches (search-patches "rust-nettle-disable-vendor.patch"))))))
16010
16011 (define-public rust-nettle-sys-2
16012 (package
16013 (name "rust-nettle-sys")
16014 (version "2.0.4")
16015 (source
16016 (origin
16017 (method url-fetch)
16018 (uri (crate-uri "nettle-sys" version))
16019 (file-name (string-append name "-" version ".tar.gz"))
16020 (sha256
16021 (base32 "1yq1w6dlcmg89x529i7s20j29afdhgim7qnsa7978fszzwrr6qmq"))
16022 (patches (search-patches "rust-nettle-sys-disable-vendor.patch"))))
16023 (build-system cargo-build-system)
16024 (native-inputs
16025 `(("clang" ,clang)
16026 ("pkg-config" ,pkg-config)))
16027 (inputs
16028 `(("nettle", nettle)))
16029 (arguments
16030 `(#:cargo-inputs
16031 (("rust-bindgen" ,rust-bindgen-0.51)
16032 ("rust-pkg-config" ,rust-pkg-config-0.3))))
16033 (home-page "https://gitlab.com/sequoia-pgp/nettle-sys")
16034 (synopsis "Low-level Rust bindings for the Nettle cryptographic library")
16035 (description "This package provides low-level Rust bindings for the Nettle
16036 cryptographic library.")
16037 (license ;; licensed under either of these, at your option
16038 (list license:lgpl3 license:gpl2 license:gpl3))))
16039
16040 (define-public rust-new-debug-unreachable-1
16041 (package
16042 (name "rust-new-debug-unreachable")
16043 (version "1.0.3")
16044 (source
16045 (origin
16046 (method url-fetch)
16047 (uri (crate-uri "new_debug_unreachable" version))
16048 (file-name
16049 (string-append name "-" version ".tar.gz"))
16050 (sha256
16051 (base32
16052 "0c1br326qa0rrzxrn2rd5ah7xaprig2i9r4rwsx06vnvc1f003zl"))))
16053 (build-system cargo-build-system)
16054 (arguments `(#:skip-build? #t))
16055 (home-page
16056 "https://github.com/mbrubeck/rust-debug-unreachable")
16057 (synopsis
16058 "Panic in debug, @code{intrinsics::unreachable()} in release")
16059 (description
16060 "Panic in debug, @code{intrinsics::unreachable()} in
16061 release (fork of debug_unreachable)")
16062 (license license:expat)))
16063
16064 (define-public rust-nix-0.17
16065 (package
16066 (name "rust-nix")
16067 (version "0.17.0")
16068 (source
16069 (origin
16070 (method url-fetch)
16071 (uri (crate-uri "nix" version))
16072 (file-name
16073 (string-append name "-" version ".tar.gz"))
16074 (sha256
16075 (base32
16076 "0qvk09kib3jpvpbaps0682nav20ibql61pf1s2h8jx9v5igpir2h"))))
16077 (build-system cargo-build-system)
16078 (arguments
16079 `(#:tests? #f ; test suite hangs
16080 #:cargo-inputs
16081 (("rust-bitflags" ,rust-bitflags-1)
16082 ("rust-cc" ,rust-cc-1)
16083 ("rust-cfg-if" ,rust-cfg-if-0.1)
16084 ("rust-libc" ,rust-libc-0.2)
16085 ("rust-void" ,rust-void-1))
16086 #:cargo-development-inputs
16087 (("rust-bytes" ,rust-bytes-0.4)
16088 ("rust-caps" ,rust-caps-0.3)
16089 ("rust-lazy-static" ,rust-lazy-static-1)
16090 ("rust-rand" ,rust-rand-0.6)
16091 ("rust-sysctl" ,rust-sysctl-0.1)
16092 ("rust-tempfile" ,rust-tempfile-3))))
16093 (home-page "https://github.com/nix-rust/nix")
16094 (synopsis "Rust friendly bindings to *nix APIs")
16095 (description "Rust friendly bindings to *nix APIs.")
16096 (license license:expat)))
16097
16098 (define-public rust-nix-0.15
16099 (package
16100 (inherit rust-nix-0.17)
16101 (name "rust-nix")
16102 (version "0.15.0")
16103 (source
16104 (origin
16105 (method url-fetch)
16106 (uri (crate-uri "nix" version))
16107 (file-name
16108 (string-append name "-" version ".tar.gz"))
16109 (sha256
16110 (base32
16111 "0aa2l7wg9pzx24ks4p97gdy09a4hhs1sr9drxnm75v906d7hnbiv"))
16112 (modules '((guix build utils)))
16113 (snippet
16114 '(begin
16115 ;; Unpin the dependency on tempfile, as it was withheld for MSRV
16116 ;; concerns, which don't matter for Guix:
16117 ;; https://github.com/nix-rust/nix/commit/98531c8f04bc23fb632c08e06dc4e56284b9c027
16118 (substitute* "Cargo.toml"
16119 (("version = \">= 3.0.5, < 3.0.9\"") "version = \"3.0.5\""))
16120 #t))))))
16121
16122 (define-public rust-nix-0.14
16123 (package
16124 (inherit rust-nix-0.15)
16125 (name "rust-nix")
16126 (version "0.14.1")
16127 (source
16128 (origin
16129 (method url-fetch)
16130 (uri (crate-uri "nix" version))
16131 (file-name
16132 (string-append name "-" version ".tar.gz"))
16133 (sha256
16134 (base32
16135 "1kmxdlmvnmq8cfpmr3g6wk37rwi2ybdvp1z6z3831m1p23p2nwkc"))))))
16136
16137 (define-public rust-no-panic-0.1
16138 (package
16139 (name "rust-no-panic")
16140 (version "0.1.12")
16141 (source
16142 (origin
16143 (method url-fetch)
16144 (uri (crate-uri "no-panic" version))
16145 (file-name
16146 (string-append name "-" version ".tar.gz"))
16147 (sha256
16148 (base32
16149 "0xan5v9ac1aklinc8aw16raq36pb4idjrl502np8gy32gfs6s751"))))
16150 (build-system cargo-build-system)
16151 (arguments
16152 `(#:cargo-inputs
16153 (("rust-proc-macro2" ,rust-proc-macro2-1)
16154 ("rust-quote" ,rust-quote-1)
16155 ("rust-syn" ,rust-syn-1))
16156 #:cargo-development-inputs
16157 (("rust-tempfile" ,rust-tempfile-3))))
16158 (home-page "https://github.com/dtolnay/no-panic")
16159 (synopsis "Prove a function can't ever panic")
16160 (description
16161 "This package provides a rust attribute macro to require that the compiler
16162 prove a function can't ever panic.")
16163 (license (list license:expat license:asl2.0))))
16164
16165 (define-public rust-nodrop-0.1
16166 (package
16167 (name "rust-nodrop")
16168 (version "0.1.14")
16169 (source
16170 (origin
16171 (method url-fetch)
16172 (uri (crate-uri "nodrop" version))
16173 (file-name (string-append name "-" version ".crate"))
16174 (sha256
16175 (base32
16176 "1fz1v9r8ijacf0hlq0pdv5l9mz8vgqg1snmhvpjmi9aci1b4mvvj"))))
16177 (build-system cargo-build-system)
16178 (arguments
16179 `(#:cargo-inputs
16180 (("rust-nodrop-union" ,rust-nodrop-union-0.1))))
16181 (home-page "https://github.com/bluss/arrayvec")
16182 (synopsis "Wrapper type to inhibit drop (destructor)")
16183 (description "This package provides a wrapper type to inhibit drop
16184 (destructor). Use @code{std::mem::ManuallyDrop} instead!")
16185 (license (list license:asl2.0
16186 license:expat))))
16187
16188 (define-public rust-nodrop-union-0.1
16189 (package
16190 (name "rust-nodrop-union")
16191 (version "0.1.11")
16192 (source
16193 (origin
16194 (method url-fetch)
16195 (uri (crate-uri "nodrop-union" version))
16196 (file-name (string-append name "-" version ".crate"))
16197 (sha256
16198 (base32
16199 "1h59pph19rxanyqcaid8pg73s7wmzdx3zhjv5snlim5qx606zxkc"))))
16200 (build-system cargo-build-system)
16201 (arguments '(#:skip-build? #t)) ; depends on features not in stable Rust
16202 (home-page "https://github.com/bluss/arrayvec")
16203 (synopsis "Wrapper type to inhibit drop (destructor)")
16204 (description "This package provides a wrapper type to inhibit drop
16205 (destructor). Implementation crate for @code{nodrop}, the untagged unions
16206 implementation (which is unstable / requires nightly).")
16207 (license (list license:asl2.0
16208 license:expat))))
16209
16210 (define-public rust-nom-5
16211 (package
16212 (name "rust-nom")
16213 (version "5.1.2")
16214 (source
16215 (origin
16216 (method url-fetch)
16217 (uri (crate-uri "nom" version))
16218 (file-name
16219 (string-append name "-" version ".tar.gz"))
16220 (sha256
16221 (base32
16222 "1br74rwdp3c2ddga03bphnf355spn4mzwf1slg0a30zd4qnjdd7z"))))
16223 (build-system cargo-build-system)
16224 (arguments
16225 `(#:tests? #f ; Tests require example directory, not included in tarball.
16226 #:cargo-inputs
16227 (("rust-lazy-static" ,rust-lazy-static-1)
16228 ("rust-lexical-core" ,rust-lexical-core-0.7)
16229 ("rust-memchr" ,rust-memchr-2)
16230 ("rust-regex" ,rust-regex-1)
16231 ("rust-version-check" ,rust-version-check-0.9))
16232 #:cargo-development-inputs
16233 (("rust-criterion" ,rust-criterion-0.2)
16234 ("rust-doc-comment" ,rust-doc-comment-0.3)
16235 ("rust-jemallocator" ,rust-jemallocator-0.1))
16236 #:phases
16237 (modify-phases %standard-phases
16238 (add-after 'configure 'override-jemalloc
16239 (lambda* (#:key inputs #:allow-other-keys)
16240 (let ((jemalloc (assoc-ref inputs "jemalloc")))
16241 (setenv "JEMALLOC_OVERRIDE"
16242 (string-append jemalloc "/lib/libjemalloc_pic.a")))
16243 #t)))))
16244 (native-inputs
16245 `(("jemalloc" ,jemalloc)))
16246 (home-page "https://github.com/Geal/nom")
16247 (synopsis
16248 "Byte-oriented, zero-copy, parser combinators library")
16249 (description
16250 "This package provides a byte-oriented, zero-copy, parser
16251 combinators library.")
16252 (license license:expat)))
16253
16254 (define-public rust-nom-4.2
16255 (package
16256 (inherit rust-nom-5)
16257 (name "rust-nom")
16258 (version "4.2.3")
16259 (source
16260 (origin
16261 (method url-fetch)
16262 (uri (crate-uri "nom" version))
16263 (file-name
16264 (string-append name "-" version ".tar.gz"))
16265 (sha256
16266 (base32
16267 "1mkvby8b4m61p4g1px0pwr58yfkphyp1jcfbp4qfp7l6iqdaklia"))))
16268 (arguments
16269 `(#:skip-build? #t
16270 #:cargo-inputs
16271 (("rust-lazy-static" ,rust-lazy-static-1)
16272 ("rust-memchr" ,rust-memchr-2)
16273 ("rust-regex" ,rust-regex-1)
16274 ("rust-version-check" ,rust-version-check-0.1))
16275 #:cargo-development-inputs
16276 (("rust-criterion" ,rust-criterion-0.2)
16277 ("rust-jemallocator" ,rust-jemallocator-0.1))))))
16278
16279 (define-public rust-nom-3
16280 (package
16281 (inherit rust-nom-4.2)
16282 (name "rust-nom")
16283 (version "3.2.1")
16284 (source
16285 (origin
16286 (method url-fetch)
16287 (uri (crate-uri "nom" version))
16288 (file-name
16289 (string-append name "-" version ".tar.gz"))
16290 (sha256
16291 (base32
16292 "0yr8fazcspgawl6s7wmx5llz61s68jl88cnrph18fa7xf06cbbh5"))))
16293 (build-system cargo-build-system)
16294 (arguments
16295 `(#:tests? #f ; stream::tests::seeking_consumer fails
16296 #:cargo-inputs
16297 (("rust-compiler-error" ,rust-compiler-error-0.1)
16298 ("rust-lazy-static" ,rust-lazy-static-0.2)
16299 ("rust-memchr" ,rust-memchr-1.0)
16300 ("rust-regex" ,rust-regex-0.2))))))
16301
16302 (define-public rust-nom-1.2
16303 (package
16304 (inherit rust-nom-4.2)
16305 (name "rust-nom")
16306 (version "1.2.4")
16307 (source
16308 (origin
16309 (method url-fetch)
16310 (uri (crate-uri "nom" version))
16311 (file-name
16312 (string-append name "-" version ".tar.gz"))
16313 (sha256
16314 (base32
16315 "1kjh42w67z1hh1dw3jrilgqrf54jk2xcvhw4rcdm4wclzmbc5f55"))))
16316 (arguments
16317 ;; This is an ancient version and all inputs are optional.
16318 `(#:skip-build? #t))))
16319
16320 (define-public rust-noop-proc-macro-0.2
16321 (package
16322 (name "rust-noop-proc-macro")
16323 (version "0.2.1")
16324 (source
16325 (origin
16326 (method url-fetch)
16327 (uri (crate-uri "noop_proc_macro" version))
16328 (file-name
16329 (string-append name "-" version ".tar.gz"))
16330 (sha256
16331 (base32
16332 "0in1l0rjxzs4fylb6zad484z1c58jxyzchhc12k0cjrvm0y6zwsz"))))
16333 (build-system cargo-build-system)
16334 (arguments `(#:skip-build? #t))
16335 (home-page
16336 "https://github.com/lu-zero/noop_proc_macro")
16337 (synopsis
16338 "No-op proc_macro, literally does nothing")
16339 (description
16340 "No-op proc_macro, literally does nothing")
16341 (license license:expat)))
16342
16343 (define-public rust-normalize-line-endings-0.3
16344 (package
16345 (name "rust-normalize-line-endings")
16346 (version "0.3.0")
16347 (source
16348 (origin
16349 (method url-fetch)
16350 (uri (crate-uri "normalize-line-endings" version))
16351 (file-name
16352 (string-append name "-" version ".tar.gz"))
16353 (sha256
16354 (base32
16355 "1gp52dfn2glz26a352zra8h04351icf0fkqzw1shkwrgh1vpz031"))))
16356 (build-system cargo-build-system)
16357 (home-page "https://github.com/derekdreery/normalize-line-endings")
16358 (synopsis
16359 "Iterate over chars and returns a new iterator with all line endings")
16360 (description
16361 "This package takes an iterator over characters and returns a new iterator
16362 with all line endings.")
16363 (license license:asl2.0)))
16364
16365 (define-public rust-notify-4
16366 (package
16367 (name "rust-notify")
16368 (version "4.0.15")
16369 (source
16370 (origin
16371 (method url-fetch)
16372 (uri (crate-uri "notify" version))
16373 (file-name
16374 (string-append name "-" version ".tar.gz"))
16375 (sha256
16376 (base32
16377 "1gadf8jf1vz7sip37rlwa66vw85ripy6977ibcfbiynii1v4mbl0"))))
16378 (build-system cargo-build-system)
16379 (arguments
16380 `(#:cargo-inputs
16381 (("rust-bitflags" ,rust-bitflags-1)
16382 ("rust-filetime" ,rust-filetime-0.2)
16383 ("rust-fsevent" ,rust-fsevent-0.4)
16384 ("rust-fsevent-sys" ,rust-fsevent-sys-2)
16385 ("rust-inotify" ,rust-inotify-0.7)
16386 ("rust-libc" ,rust-libc-0.2)
16387 ("rust-mio" ,rust-mio-0.6)
16388 ("rust-mio-extras" ,rust-mio-extras-2)
16389 ("rust-walkdir" ,rust-walkdir-2)
16390 ("rust-winapi" ,rust-winapi-0.3))
16391 #:cargo-development-inputs
16392 (("rust-tempfile" ,rust-tempfile-3))))
16393 (home-page "https://github.com/passcod/notify")
16394 (synopsis "Cross-platform file system notification library")
16395 (description
16396 "Cross-platform file system notification library.")
16397 (license license:cc0)))
16398
16399 (define-public rust-ntest-0.3
16400 (package
16401 (name "rust-ntest")
16402 (version "0.3.3")
16403 (source
16404 (origin
16405 (method url-fetch)
16406 (uri (crate-uri "ntest" version))
16407 (file-name (string-append name "-" version ".tar.gz"))
16408 (sha256
16409 (base32
16410 "04cljndihkcqqwj061bgpnxyv7wqbd3f91ag1b3ryrayn7rrclxv"))))
16411 (build-system cargo-build-system)
16412 (arguments
16413 `(#:cargo-inputs
16414 (("rust-ntest-test-cases" ,rust-ntest-test-cases-0.3)
16415 ("rust-ntest-timeout" ,rust-ntest-timeout-0.3)
16416 ("rust-timebomb" ,rust-timebomb-0.1))
16417 #:cargo-development-inputs
16418 (("rust-ntest-test-cases" ,rust-ntest-test-cases-0.3)
16419 ("rust-ntest-timeout" ,rust-ntest-timeout-0.3)
16420 ("rust-timebomb" ,rust-timebomb-0.1))))
16421 (home-page "https://github.com/becheran/ntest")
16422 (synopsis "Testing framework for Rust")
16423 (description "This package provides a testing framework for Rust which
16424 enhances the built-in library with some useful features.")
16425 (license license:expat)))
16426
16427 (define-public rust-ntest-test-cases-0.3
16428 (package
16429 (name "rust-ntest-test-cases")
16430 (version "0.3.4")
16431 (source
16432 (origin
16433 (method url-fetch)
16434 (uri (crate-uri "ntest_test_cases" version))
16435 (file-name (string-append name "-" version ".tar.gz"))
16436 (sha256
16437 (base32
16438 "0b67m368599b2zgwx19psqz6n3m9m5532h1257x6vz1pym3gd2na"))))
16439 (build-system cargo-build-system)
16440 (arguments
16441 `(#:cargo-inputs
16442 (("rust-proc-macro2" ,rust-proc-macro2-1)
16443 ("rust-quote" ,rust-quote-1)
16444 ("rust-syn" ,rust-syn-1))))
16445 (home-page "https://github.com/becheran/ntest")
16446 (synopsis "Test cases for ntest framework")
16447 (description "This package provides test cases for ntest framework.")
16448 (license license:expat)))
16449
16450 (define-public rust-ntest-timeout-0.3
16451 (package
16452 (name "rust-ntest-timeout")
16453 (version "0.3.3")
16454 (source
16455 (origin
16456 (method url-fetch)
16457 (uri (crate-uri "ntest_timeout" version))
16458 (file-name (string-append name "-" version ".tar.gz"))
16459 (sha256
16460 (base32
16461 "0klryn3rgjxnq3cv6j8bwcsr0b7zw3x216h63144v22aja18p0g0"))))
16462 (build-system cargo-build-system)
16463 (arguments
16464 `(#:cargo-inputs
16465 (("rust-proc-macro2" ,rust-proc-macro2-1)
16466 ("rust-quote" ,rust-quote-1)
16467 ("rust-syn" ,rust-syn-1)
16468 ("rust-timebomb" ,rust-timebomb-0.1))))
16469 (home-page "https://github.com/becheran/ntest")
16470 (synopsis "Timeout attribute for the ntest framework")
16471 (description "This package provides a timeout attribute for the ntest
16472 framework.")
16473 (license license:expat)))
16474
16475 (define-public rust-num-0.3
16476 (package
16477 (name "rust-num")
16478 (version "0.3.0")
16479 (source
16480 (origin
16481 (method url-fetch)
16482 (uri (crate-uri "num" version))
16483 (file-name
16484 (string-append name "-" version ".tar.gz"))
16485 (sha256
16486 (base32
16487 "0jng6s3i51k3227id2z8h348l2da8x3jq4p3az9slkxwj5hifgmb"))))
16488 (build-system cargo-build-system)
16489 (arguments
16490 `(#:cargo-inputs
16491 (("rust-num-bigint" ,rust-num-bigint-0.3)
16492 ("rust-num-complex" ,rust-num-complex-0.3)
16493 ("rust-num-integer" ,rust-num-integer-0.1)
16494 ("rust-num-iter" ,rust-num-iter-0.1)
16495 ("rust-num-rational" ,rust-num-rational-0.3)
16496 ("rust-num-traits" ,rust-num-traits-0.2))))
16497 (home-page "https://github.com/rust-num/num")
16498 (synopsis "Collection of numeric types and traits for Rust")
16499 (description
16500 "This package provides a collection of numeric types and traits for Rust,
16501 including bigint, complex, rational, range iterators, generic integers, and more.")
16502 (license (list license:expat license:asl2.0))))
16503
16504 (define-public rust-num-0.2
16505 (package
16506 (inherit rust-num-0.3)
16507 (name "rust-num")
16508 (version "0.2.1")
16509 (source
16510 (origin
16511 (method url-fetch)
16512 (uri (crate-uri "num" version))
16513 (file-name
16514 (string-append name "-" version ".tar.gz"))
16515 (sha256
16516 (base32
16517 "0dhcvhprvvx1iaaq7sxlgxw5awmj8dibni8vhizi59zyz4q60lxq"))))
16518 (arguments
16519 `(#:cargo-inputs
16520 (("rust-num-bigint" ,rust-num-bigint-0.2)
16521 ("rust-num-complex" ,rust-num-complex-0.2)
16522 ("rust-num-integer" ,rust-num-integer-0.1)
16523 ("rust-num-iter" ,rust-num-iter-0.1)
16524 ("rust-num-rational" ,rust-num-rational-0.2)
16525 ("rust-num-traits" ,rust-num-traits-0.2))))))
16526
16527 (define-public rust-num-0.1
16528 (package
16529 (inherit rust-num-0.2)
16530 (name "rust-num")
16531 (version "0.1.42")
16532 (source
16533 (origin
16534 (method url-fetch)
16535 (uri (crate-uri "num" version))
16536 (file-name
16537 (string-append name "-" version ".tar.gz"))
16538 (sha256
16539 (base32
16540 "0vhmyvfan380f86895z0f8rjscjc6qvwcmyvm15370ik2mjas0s7"))))
16541 (arguments
16542 `(#:cargo-inputs
16543 (("rust-num-bigint" ,rust-num-bigint-0.1)
16544 ("rust-num-complex" ,rust-num-complex-0.1)
16545 ("rust-num-integer" ,rust-num-integer-0.1)
16546 ("rust-num-iter" ,rust-num-iter-0.1)
16547 ("rust-num-rational" ,rust-num-rational-0.1)
16548 ("rust-num-traits" ,rust-num-traits-0.2))))))
16549
16550 (define-public rust-num-bigint-0.3
16551 (package
16552 (name "rust-num-bigint")
16553 (version "0.3.0")
16554 (source
16555 (origin
16556 (method url-fetch)
16557 (uri (crate-uri "num-bigint" version))
16558 (file-name
16559 (string-append name "-" version ".tar.gz"))
16560 (sha256
16561 (base32
16562 "186glgapg71zicah3wjld3sr5kx6rkcf6rf43gxmjw39wdszrwxp"))))
16563 (build-system cargo-build-system)
16564 (arguments
16565 `(#:cargo-inputs
16566 (("rust-num-integer" ,rust-num-integer-0.1)
16567 ("rust-num-traits" ,rust-num-traits-0.2)
16568 ("rust-quickcheck" ,rust-quickcheck-0.9)
16569 ("rust-rand" ,rust-rand-0.7)
16570 ("rust-serde" ,rust-serde-1)
16571 ("rust-autocfg" ,rust-autocfg-1.0))))
16572 (home-page "https://github.com/rust-num/num-bigint")
16573 (synopsis "Big integer implementation for Rust")
16574 (description
16575 "Big integer implementation for Rust.")
16576 (license (list license:expat license:asl2.0))))
16577
16578 (define-public rust-num-bigint-0.2
16579 (package
16580 (inherit rust-num-bigint-0.3)
16581 (name "rust-num-bigint")
16582 (version "0.2.6")
16583 (source
16584 (origin
16585 (method url-fetch)
16586 (uri (crate-uri "num-bigint" version))
16587 (file-name
16588 (string-append name "-" version ".tar.gz"))
16589 (sha256
16590 (base32
16591 "015k3wixdi4w698sappvy43pf8bvkw0f88xplmdgc3zfk2cpy309"))))
16592 (arguments
16593 `(#:cargo-inputs
16594 (("rust-num-integer" ,rust-num-integer-0.1)
16595 ("rust-num-traits" ,rust-num-traits-0.2)
16596 ("rust-quickcheck" ,rust-quickcheck-0.8)
16597 ("rust-quickcheck-macros" ,rust-quickcheck-macros-0.8)
16598 ("rust-rand" ,rust-rand-0.5)
16599 ("rust-serde" ,rust-serde-1)
16600 ("rust-autocfg" ,rust-autocfg-1.0))
16601 #:cargo-development-inputs
16602 (("rust-serde-test" ,rust-serde-test-1))))))
16603
16604 (define-public rust-num-bigint-0.1
16605 (package
16606 (inherit rust-num-bigint-0.2)
16607 (name "rust-num-bigint")
16608 (version "0.1.44")
16609 (source
16610 (origin
16611 (method url-fetch)
16612 (uri (crate-uri "num-bigint" version))
16613 (file-name
16614 (string-append name "-" version ".tar.gz"))
16615 (sha256
16616 (base32
16617 "1hg80xd7vd5yqzks1h0zk2fcgqnf84m2cdj9q4cffk581nnrjf76"))))
16618 (arguments
16619 `(#:cargo-inputs
16620 (("rust-num-integer" ,rust-num-integer-0.1)
16621 ("rust-num-traits" ,rust-num-traits-0.2)
16622 ("rust-rand" ,rust-rand-0.4)
16623 ("rust-rustc-serialize" ,rust-rustc-serialize-0.3)
16624 ("rust-serde" ,rust-serde-0.8))
16625 #:cargo-development-inputs
16626 (("rust-rand" ,rust-rand-0.4))))))
16627
16628 (define-public rust-num-complex-0.3
16629 (package
16630 (name "rust-num-complex")
16631 (version "0.3.0")
16632 (source
16633 (origin
16634 (method url-fetch)
16635 (uri (crate-uri "num-complex" version))
16636 (file-name
16637 (string-append name "-" version ".tar.gz"))
16638 (sha256
16639 (base32
16640 "1dczd81f2xb092dhb0brbdbf19pyfn0v9xmkf6qm0w4pv1dx0nmh"))))
16641 (build-system cargo-build-system)
16642 (arguments
16643 `(#:cargo-inputs
16644 (("rust-num-traits" ,rust-num-traits-0.2)
16645 ("rust-rand" ,rust-rand-0.7)
16646 ("rust-serde" ,rust-serde-1))))
16647 (home-page
16648 "https://github.com/rust-num/num-complex")
16649 (synopsis
16650 "Complex numbers implementation for Rust")
16651 (description
16652 "Complex numbers implementation for Rust.")
16653 (license (list license:expat license:asl2.0))))
16654
16655 (define-public rust-num-complex-0.2
16656 (package
16657 (inherit rust-num-complex-0.3)
16658 (name "rust-num-complex")
16659 (version "0.2.4")
16660 (source
16661 (origin
16662 (method url-fetch)
16663 (uri (crate-uri "num-complex" version))
16664 (file-name
16665 (string-append name "-" version ".tar.gz"))
16666 (sha256
16667 (base32
16668 "15dwaksw729r3v14sgzc9723s3fnfixiir8jzwx7b7kim48r9cdn"))))
16669 (arguments
16670 `(#:cargo-inputs
16671 (("rust-num-traits" ,rust-num-traits-0.2)
16672 ("rust-rand" ,rust-rand-0.5)
16673 ("rust-serde" ,rust-serde-1)
16674 ("rust-autocfg" ,rust-autocfg-1.0))))))
16675
16676 (define-public rust-num-complex-0.1
16677 (package
16678 (inherit rust-num-complex-0.2)
16679 (name "rust-num-complex")
16680 (version "0.1.43")
16681 (source
16682 (origin
16683 (method url-fetch)
16684 (uri (crate-uri "num-complex" version))
16685 (file-name
16686 (string-append name "-" version ".tar.gz"))
16687 (sha256
16688 (base32
16689 "0mln3h018lar511hadjwfkbyq1561s8kdzfg8aagbakqg0fn725j"))))
16690 (build-system cargo-build-system)
16691 (arguments
16692 `(#:cargo-inputs
16693 (("rust-num-traits" ,rust-num-traits-0.2)
16694 ("rust-rustc-serialize" ,rust-rustc-serialize-0.3)
16695 ("rust-serde" ,rust-serde-0.8))))))
16696
16697 (define-public rust-num-cpus-1
16698 (package
16699 (name "rust-num-cpus")
16700 (version "1.13.0")
16701 (source
16702 (origin
16703 (method url-fetch)
16704 (uri (crate-uri "num_cpus" version))
16705 (file-name
16706 (string-append name "-" version ".tar.gz"))
16707 (sha256
16708 (base32
16709 "1cv6yxhz2zbnwn8pn1yn8grg7zsnd523947fby41a737aqvryj85"))))
16710 (build-system cargo-build-system)
16711 (arguments
16712 `(#:cargo-inputs
16713 (("rust-hermit-abi" ,rust-hermit-abi-0.1)
16714 ("rust-libc" ,rust-libc-0.2))))
16715 (home-page "https://github.com/seanmonstar/num_cpus")
16716 (synopsis "Get the number of CPUs on a machine")
16717 (description
16718 "Get the number of CPUs on a machine.")
16719 (license (list license:asl2.0
16720 license:expat))))
16721
16722 (define-public rust-num-derive-0.3
16723 (package
16724 (name "rust-num-derive")
16725 (version "0.3.2")
16726 (source
16727 (origin
16728 (method url-fetch)
16729 (uri (crate-uri "num-derive" version))
16730 (file-name
16731 (string-append name "-" version ".tar.gz"))
16732 (sha256
16733 (base32
16734 "1czs5215ypgbwg0qgy2i515xj3vfcgm8fw7gi4gmwsyv3a2bj2bg"))))
16735 (build-system cargo-build-system)
16736 (arguments
16737 `(#:cargo-inputs
16738 (("rust-proc-macro2" ,rust-proc-macro2-1)
16739 ("rust-syn" ,rust-syn-1)
16740 ("rust-quote" ,rust-quote-1))
16741 #:cargo-development-inputs
16742 (("rust-num" ,rust-num-0.3)
16743 ("rust-num-traits" ,rust-num-traits-0.2))))
16744 (home-page "https://github.com/rust-num/num-derive")
16745 (synopsis "Numeric syntax extensions")
16746 (description "This package provides numeric syntax extensions.")
16747 (license (list license:expat license:asl2.0))))
16748
16749 (define-public rust-num-derive-0.2
16750 (package
16751 (name "rust-num-derive")
16752 (version "0.2.5")
16753 (source
16754 (origin
16755 (method url-fetch)
16756 (uri (crate-uri "num-derive" version))
16757 (file-name
16758 (string-append name "-" version ".tar.gz"))
16759 (sha256
16760 (base32
16761 "1wnv7776fh4i40r3zfxcxcmm0dh029skx7gp4sjknz2kqm2hpzga"))))
16762 (build-system cargo-build-system)
16763 (arguments
16764 `(#:cargo-inputs
16765 (("rust-proc-macro2" ,rust-proc-macro2-0.4)
16766 ("rust-quote" ,rust-quote-0.6)
16767 ("rust-syn" ,rust-syn-0.15))
16768 #:cargo-development-inputs
16769 (("rust-num" ,rust-num-0.2)
16770 ("rust-num-traits" ,rust-num-traits-0.2))))
16771 (home-page "https://github.com/rust-num/num-derive")
16772 (synopsis "Numeric syntax extensions")
16773 (description "Numeric syntax extensions in Rust.")
16774 (license (list license:expat license:asl2.0))))
16775
16776 (define-public rust-num-integer-0.1
16777 (package
16778 (name "rust-num-integer")
16779 (version "0.1.43")
16780 (source
16781 (origin
16782 (method url-fetch)
16783 (uri (crate-uri "num-integer" version))
16784 (file-name
16785 (string-append name "-" version ".tar.gz"))
16786 (sha256
16787 (base32
16788 "0nw79ynfvw8br6yncv27pw65y2vw2z7m3kv9g2hinm1dcrz4ancd"))))
16789 (build-system cargo-build-system)
16790 (arguments
16791 `(#:cargo-inputs
16792 (("rust-num-traits" ,rust-num-traits-0.2)
16793 ("rust-autocfg" ,rust-autocfg-1.0))))
16794 (home-page "https://github.com/rust-num/num-integer")
16795 (synopsis "Integer traits and functions")
16796 (description "Integer traits and functions.")
16797 ;; Dual licensed.
16798 (license (list license:asl2.0
16799 license:expat))))
16800
16801 (define-public rust-num-iter-0.1
16802 (package
16803 (name "rust-num-iter")
16804 (version "0.1.41")
16805 (source
16806 (origin
16807 (method url-fetch)
16808 (uri (crate-uri "num-iter" version))
16809 (file-name (string-append name "-" version ".tar.gz"))
16810 (sha256
16811 (base32
16812 "17sb142lhmpsq17cf9wrffjh8vjk901axxf55565r6cgfiy6nvks"))))
16813 (build-system cargo-build-system)
16814 (arguments
16815 `(#:cargo-inputs
16816 (("rust-num-integer" ,rust-num-integer-0.1)
16817 ("rust-num-traits" ,rust-num-traits-0.2)
16818 ("rust-autocfg" ,rust-autocfg-1.0))))
16819 (home-page "https://github.com/rust-num/num-iter")
16820 (synopsis "External iterators for generic mathematics")
16821 (description
16822 "This crate provides external iterators for generic mathematics.")
16823 (license (list license:asl2.0
16824 license:expat))))
16825
16826 (define-public rust-num-rational-0.3
16827 (package
16828 (name "rust-num-rational")
16829 (version "0.3.0")
16830 (source
16831 (origin
16832 (method url-fetch)
16833 (uri (crate-uri "num-rational" version))
16834 (file-name
16835 (string-append name "-" version ".tar.gz"))
16836 (sha256
16837 (base32
16838 "0f41j1l1kn5jj36a8xdy8kv242wlwq0ka578vm8gnb1n1wvdgd55"))))
16839 (build-system cargo-build-system)
16840 (arguments
16841 `(#:cargo-inputs
16842 (("rust-num-bigint" ,rust-num-bigint-0.3)
16843 ("rust-num-integer" ,rust-num-integer-0.1)
16844 ("rust-num-traits" ,rust-num-traits-0.2)
16845 ("rust-serde" ,rust-serde-1)
16846 ("rust-autocfg" ,rust-autocfg-1.0))))
16847 (home-page "https://github.com/rust-num/num-rational")
16848 (synopsis "Rational numbers implementation for Rust")
16849 (description
16850 "Rational numbers implementation for Rust.")
16851 (license (list license:expat license:asl2.0))))
16852
16853 (define-public rust-num-rational-0.2
16854 (package
16855 (inherit rust-num-rational-0.3)
16856 (name "rust-num-rational")
16857 (version "0.2.3")
16858 (source
16859 (origin
16860 (method url-fetch)
16861 (uri (crate-uri "num-rational" version))
16862 (file-name
16863 (string-append name "-" version ".tar.gz"))
16864 (sha256
16865 (base32
16866 "18q3vq3xldhaj0z3f92am8f59m1awywgdj28c7wvx0bcksgwfkfs"))))
16867 (arguments
16868 `(#:cargo-inputs
16869 (("rust-num-bigint" ,rust-num-bigint-0.2)
16870 ("rust-num-integer" ,rust-num-integer-0.1)
16871 ("rust-num-traits" ,rust-num-traits-0.2)
16872 ("rust-serde" ,rust-serde-1)
16873 ("rust-autocfg" ,rust-autocfg-1.0))))))
16874
16875 (define-public rust-num-rational-0.1
16876 (package
16877 (inherit rust-num-rational-0.2)
16878 (name "rust-num-rational")
16879 (version "0.1.42")
16880 (source
16881 (origin
16882 (method url-fetch)
16883 (uri (crate-uri "num-rational" version))
16884 (file-name
16885 (string-append name "-" version ".tar.gz"))
16886 (sha256
16887 (base32
16888 "0kkqb8j3b3nis9hs4ww4hkrmb4a6v9sr9al08xmwhgvmpms4qcgf"))))
16889 (arguments
16890 `(#:cargo-inputs
16891 (("rust-num-bigint" ,rust-num-bigint-0.1)
16892 ("rust-num-integer" ,rust-num-integer-0.1)
16893 ("rust-num-traits" ,rust-num-traits-0.2)
16894 ("rust-rustc-serialize" ,rust-rustc-serialize-0.3)
16895 ("rust-serde" ,rust-serde-0.8))))))
16896
16897 (define-public rust-num-traits-0.2
16898 (package
16899 (name "rust-num-traits")
16900 (version "0.2.12")
16901 (source
16902 (origin
16903 (method url-fetch)
16904 (uri (crate-uri "num-traits" version))
16905 (file-name
16906 (string-append name "-" version ".crate"))
16907 (sha256
16908 (base32
16909 "04fnzwlnn6fcy09jjbi9l7bj5dvg657x5c2sjgwfb3pl0z67n9mc"))))
16910 (build-system cargo-build-system)
16911 (arguments
16912 `(#:cargo-inputs
16913 (("rust-autocfg" ,rust-autocfg-1.0)
16914 ("rust-libm" ,rust-libm-0.2))))
16915 (home-page "https://github.com/rust-num/num-traits")
16916 (synopsis "Numeric traits for generic mathematics")
16917 (description "Numeric traits for generic mathematics.")
16918 (license (list license:asl2.0
16919 license:expat))))
16920
16921 (define-public rust-num-traits-0.1
16922 (package
16923 (inherit rust-num-traits-0.2)
16924 (name "rust-num-traits")
16925 (version "0.1.43")
16926 (source
16927 (origin
16928 (method url-fetch)
16929 (uri (crate-uri "num-traits" version))
16930 (file-name (string-append name "-" version ".crate"))
16931 (sha256
16932 (base32
16933 "0c9whknf2dm74a3cqirafy6gj83a76gl56g4v3g19k6lkwz13rcj"))))
16934 (arguments
16935 `(#:cargo-inputs
16936 (("rust-num-traits" , rust-num-traits-0.2))))))
16937
16938 (define-public rust-number-prefix-0.3
16939 (package
16940 (name "rust-number-prefix")
16941 (version "0.3.0")
16942 (source
16943 (origin
16944 (method url-fetch)
16945 (uri (crate-uri "number_prefix" version))
16946 (file-name
16947 (string-append name "-" version ".tar.gz"))
16948 (sha256
16949 (base32
16950 "0slm4mqmpgs6hvz22ycny9lvyvl9ivs80a1lncslp7lszz02zc0p"))))
16951 (build-system cargo-build-system)
16952 (home-page "https://github.com/ogham/rust-number-prefix")
16953 (synopsis "Format numeric prefixes: kilo, giga, kibi")
16954 (description
16955 "This package provides a library for formatting numeric prefixes: kilo,
16956 giga, kibi.")
16957 (license license:expat)))
16958
16959 (define-public rust-numtoa-0.1
16960 (package
16961 (name "rust-numtoa")
16962 (version "0.1.0")
16963 (source
16964 (origin
16965 (method url-fetch)
16966 (uri (crate-uri "numtoa" version))
16967 (file-name (string-append name "-" version ".crate"))
16968 (sha256
16969 (base32
16970 "1vs9rhggqbql1p26x8nkha1j06wawwgb2jp5fs88b5gi7prvvy5q"))))
16971 (build-system cargo-build-system)
16972 (arguments '(#:tests? #f))
16973 (home-page "https://gitlab.com/mmstick/numtoa")
16974 (synopsis "Convert numbers into stack-allocated byte arrays")
16975 (description
16976 "This package can convert numbers into stack-allocated byte arrays.")
16977 (license (list license:expat license:asl2.0))))
16978
16979 (define-public rust-obj-0.9
16980 (package
16981 (name "rust-obj")
16982 (version "0.9.1")
16983 (source
16984 (origin
16985 (method url-fetch)
16986 (uri (crate-uri "obj" version))
16987 (file-name
16988 (string-append name "-" version ".tar.gz"))
16989 (sha256
16990 (base32
16991 "10z1r2r0xyhr4j1n07135kz4bc0zhqy98vabs99vz0x171bi8gy0"))))
16992 (build-system cargo-build-system)
16993 (arguments
16994 `(#:cargo-inputs (("rust-genmesh" ,rust-genmesh-0.6))))
16995 (home-page "https://github.com/kvark/obj")
16996 (synopsis "Package for loading Wavefront .obj files")
16997 (description
16998 "This package provides a package for loading Wavefront @code{.obj} files.")
16999 (license license:asl2.0)))
17000
17001 (define-public rust-objc-0.2
17002 (package
17003 (name "rust-objc")
17004 (version "0.2.7")
17005 (source
17006 (origin
17007 (method url-fetch)
17008 (uri (crate-uri "objc" version))
17009 (file-name
17010 (string-append name "-" version ".tar.gz"))
17011 (sha256
17012 (base32
17013 "1cbpf6kz8a244nn1qzl3xyhmp05gsg4n313c9m3567625d3innwi"))))
17014 (build-system cargo-build-system)
17015 (arguments
17016 `(#:tests? #f ; Tests require gcc-objc.
17017 #:cargo-inputs
17018 (("rust-malloc-buf" ,rust-malloc-buf-0.0)
17019 ("rust-objc-exception" ,rust-objc-exception-0.1))))
17020 (home-page "https://github.com/SSheldon/rust-objc")
17021 (synopsis "Objective-C Runtime bindings and wrapper for Rust")
17022 (description "This package provides an Objective-C Runtime bindings and
17023 wrapper for Rust.")
17024 (license license:expat)))
17025
17026 (define-public rust-objc-exception-0.1
17027 (package
17028 (name "rust-objc-exception")
17029 (version "0.1.2")
17030 (source
17031 (origin
17032 (method url-fetch)
17033 (uri (crate-uri "objc-exception" version))
17034 (file-name
17035 (string-append name "-" version ".tar.gz"))
17036 (sha256
17037 (base32
17038 "191cmdmlypp6piw67y4m8y5swlxf5w0ss8n1lk5xd2l1ans0z5xd"))))
17039 (build-system cargo-build-system)
17040 (arguments
17041 `(#:skip-build? #t
17042 #:cargo-inputs
17043 (("rust-cc" ,rust-cc-1))))
17044 (home-page "https://github.com/SSheldon/rust-objc-exception")
17045 (synopsis "Rust interface for Objective-C's throw and try/catch statements")
17046 (description
17047 "This package provides a Rust interface for Objective-C's throw and
17048 try/catch statements.")
17049 (license license:expat)))
17050
17051 (define-public rust-objc-foundation-0.1
17052 (package
17053 (name "rust-objc-foundation")
17054 (version "0.1.1")
17055 (source
17056 (origin
17057 (method url-fetch)
17058 (uri (crate-uri "objc-foundation" version))
17059 (file-name
17060 (string-append name "-" version ".tar.gz"))
17061 (sha256
17062 (base32
17063 "1y9bwb3m5fdq7w7i4bnds067dhm4qxv4m1mbg9y61j9nkrjipp8s"))))
17064 (build-system cargo-build-system)
17065 (arguments
17066 `(#:skip-build? #t ; Only available on macOS.
17067 #:cargo-inputs
17068 (("rust-block" ,rust-block-0.1)
17069 ("rust-objc" ,rust-objc-0.2)
17070 ("rust-objc-id" ,rust-objc-id-0.1))))
17071 (home-page "https://github.com/SSheldon/rust-objc-foundation")
17072 (synopsis "Rust wrapper for Objective-C's Foundation framework")
17073 (description "This package provides a rust wrapper for Objective-C's
17074 Foundation framework.")
17075 (license license:expat)))
17076
17077 (define-public rust-objc-id-0.1
17078 (package
17079 (name "rust-objc-id")
17080 (version "0.1.1")
17081 (source
17082 (origin
17083 (method url-fetch)
17084 (uri (crate-uri "objc_id" version))
17085 (file-name
17086 (string-append name "-" version ".tar.gz"))
17087 (sha256
17088 (base32
17089 "0fq71hnp2sdblaighjc82yrac3adfmqzhpr11irhvdfp9gdlsbf9"))))
17090 (build-system cargo-build-system)
17091 (arguments
17092 `(#:tests? #f ; Tests require gcc-objc.
17093 #:cargo-inputs (("rust-objc" ,rust-objc-0.2))))
17094 (home-page "https://github.com/SSheldon/rust-objc-id")
17095 (synopsis "Rust smart pointers for Objective-C reference counting")
17096 (description
17097 "This package provides Rust smart pointers for Objective-C reference counting.")
17098 (license license:expat)))
17099
17100 (define-public rust-objc-test-utils-0.0
17101 (package
17102 (name "rust-objc-test-utils")
17103 (version "0.0.2")
17104 (source
17105 (origin
17106 (method url-fetch)
17107 (uri (crate-uri "objc_test_utils" version))
17108 (file-name
17109 (string-append name "-" version ".tar.gz"))
17110 (sha256
17111 (base32
17112 "09rckmp5h9bbns08xzicdlk7y5lxj2ygbg3yqk1cszfnzd5n8kzx"))))
17113 (build-system cargo-build-system)
17114 (arguments
17115 `(#:skip-build? #t
17116 #:cargo-inputs
17117 (("rust-gcc" ,rust-gcc-0.3))))
17118 (home-page "https://github.com/SSheldon/rust-objc")
17119 (synopsis "Utilities for testing Objective-C interop")
17120 (description
17121 "This package provides utilities for testing Objective-C interop.")
17122 (license license:expat)))
17123
17124 (define-public rust-object-0.17
17125 (package
17126 (name "rust-object")
17127 (version "0.17.0")
17128 (source
17129 (origin
17130 (method url-fetch)
17131 (uri (crate-uri "object" version))
17132 (file-name
17133 (string-append name "-" version ".tar.gz"))
17134 (sha256
17135 (base32
17136 "1bmgbg4k0725lchfy9j1wnpfmywh5qhs0k4k6j2g7c0acvys8i7a"))))
17137 (build-system cargo-build-system)
17138 (arguments
17139 `(#:skip-build? #t
17140 #:cargo-inputs
17141 (("rust-goblin" ,rust-goblin-0.1)
17142 ("rust-target-lexicon" ,rust-target-lexicon-0.10)
17143 ("rust-scroll" ,rust-scroll-0.10)
17144 ("rust-parity-wasm" ,rust-parity-wasm-0.41)
17145 ("rust-uuid" ,rust-uuid-0.8)
17146 ("rust-flate2" ,rust-flate2-1)
17147 ("rust-crc32fast" ,rust-crc32fast-1)
17148 ("rust-indexmap" ,rust-indexmap-1))))
17149 (home-page "https://github.com/gimli-rs/object")
17150 (synopsis "Unified interface for reading and writing object file formats")
17151 (description "This package provides a unified interface for reading and
17152 writing object file formats.")
17153 (license (list license:asl2.0 license:expat))))
17154
17155 (define-public rust-object-0.12
17156 (package
17157 (name "rust-object")
17158 (version "0.12.0")
17159 (source
17160 (origin
17161 (method url-fetch)
17162 (uri (crate-uri "object" version))
17163 (file-name
17164 (string-append name "-" version ".tar.gz"))
17165 (sha256
17166 (base32
17167 "1dch1ajjp05d16lig1dnvisfis0hrlrvw9lcwy1hwgdcym3z6jnz"))))
17168 (build-system cargo-build-system)
17169 (arguments
17170 `(#:skip-build? #t
17171 #:cargo-inputs
17172 (("rust-flate2" ,rust-flate2-1)
17173 ("rust-goblin" ,rust-goblin-0.0)
17174 ("rust-parity-wasm" ,rust-parity-wasm-0.40)
17175 ("rust-scroll" ,rust-scroll-0.9)
17176 ("rust-uuid" ,rust-uuid-0.7))
17177 #:cargo-development-inputs
17178 (("rust-memmap" ,rust-memmap-0.7))))
17179 (home-page "https://github.com/gimli-rs/object")
17180 (synopsis "Parse object file formats")
17181 (description
17182 "This package provides a unified interface for parsing object file
17183 formats.")
17184 (license (list license:expat license:asl2.0))))
17185
17186 (define-public rust-odds-0.3
17187 (package
17188 (name "rust-odds")
17189 (version "0.3.1")
17190 (source
17191 (origin
17192 (method url-fetch)
17193 (uri (crate-uri "odds" version))
17194 (file-name
17195 (string-append name "-" version ".tar.gz"))
17196 (sha256
17197 (base32
17198 "0rdnxa0na4897yb0svb3figz35g4imxjv61yfm2j21gbh5q8v8d9"))))
17199 (build-system cargo-build-system)
17200 (arguments
17201 `(#:cargo-inputs
17202 (("rust-rawpointer" ,rust-rawpointer-0.1)
17203 ("rust-rawslice" ,rust-rawslice-0.1)
17204 ("rust-unchecked-index" ,rust-unchecked-index-0.2))
17205 #:cargo-development-inputs
17206 (("rust-itertools" ,rust-itertools-0.7)
17207 ("rust-lazy-static" ,rust-lazy-static-0.2)
17208 ("rust-memchr" ,rust-memchr-2)
17209 ("rust-quickcheck" ,rust-quickcheck-0.4))))
17210 (home-page "https://github.com/bluss/odds")
17211 (synopsis "Extra functionality for slices, strings and other things")
17212 (description
17213 "Odds and ends collection miscellania. Extra functionality for
17214 slices (@code{.find()}, @code{RevSlice}), strings and other things.
17215 Things in odds may move to more appropriate crates if we find them.")
17216 (license (list license:asl2.0 license:expat))))
17217
17218 (define-public rust-odds-0.2
17219 (package
17220 (inherit rust-odds-0.3)
17221 (name "rust-odds")
17222 (version "0.2.26")
17223 (source
17224 (origin
17225 (method url-fetch)
17226 (uri (crate-uri "odds" version))
17227 (file-name
17228 (string-append name "-" version ".tar.gz"))
17229 (sha256
17230 (base32
17231 "08pvngx0nf7yl9cgk4bahn1a0s8na5g9knbhq7y29kysp58h3bjf"))))
17232 (arguments
17233 `(#:tests? #f ; doc tests fail
17234 #:cargo-inputs
17235 (("rust-rawpointer" ,rust-rawpointer-0.1)
17236 ("rust-rawslice" ,rust-rawslice-0.1)
17237 ("rust-unchecked-index" ,rust-unchecked-index-0.2))
17238 #:cargo-development-inputs
17239 (("rust-itertools" ,rust-itertools-0.5)
17240 ("rust-lazy-static" ,rust-lazy-static-0.2)
17241 ("rust-memchr" ,rust-memchr-2)
17242 ("rust-quickcheck" ,rust-quickcheck-0.4))))))
17243
17244 (define-public rust-onig-5.0
17245 (package
17246 (name "rust-onig")
17247 (version "5.0.0")
17248 (source
17249 (origin
17250 (method url-fetch)
17251 (uri (crate-uri "onig" version))
17252 (file-name
17253 (string-append name "-" version ".tar.gz"))
17254 (sha256
17255 (base32
17256 "0ivr0wq1zlyjhhkxpsnmpncg92sjx3rha8pnp3m1mzvgk7y27rz4"))))
17257 (build-system cargo-build-system)
17258 (arguments
17259 `(#:skip-build? #t
17260 #:cargo-inputs
17261 (("rust-libc" ,rust-libc-0.2)
17262 ("rust-bitflags" ,rust-bitflags-1)
17263 ("rust-lazy-static" ,rust-lazy-static-1)
17264 ("rust-onig-sys" ,rust-onig-sys-69.2))))
17265 (home-page "https://github.com/rust-onig/rust-onig")
17266 (synopsis
17267 "Rust bindings for the Oniguruma regular expression library")
17268 (description
17269 "Rust-Onig is a set of Rust bindings for the Oniguruma regular expression
17270 library. Oniguruma is a modern regex library with support for multiple
17271 character encodings and regex syntaxes.")
17272 (license license:expat)))
17273
17274 (define-public rust-onig-sys-69.2
17275 (package
17276 (name "rust-onig-sys")
17277 (version "69.2.0")
17278 (source
17279 (origin
17280 (method url-fetch)
17281 (uri (crate-uri "onig_sys" version))
17282 (file-name
17283 (string-append name "-" version ".tar.gz"))
17284 (sha256
17285 (base32
17286 "0kjijq29yx05xxg9snvqnfn53dl52hchb4sk3zhfr77mypxlx38a"))))
17287 (build-system cargo-build-system)
17288 (arguments
17289 `(#:skip-build? #t
17290 #:cargo-inputs
17291 (("rust-pkg-config" ,rust-pkg-config-0.3)
17292 ("rust-bindgen" ,rust-bindgen-0.50)
17293 ("rust-cc" ,rust-cc-1))))
17294 (home-page "https://github.com/rust-onig/rust-onig")
17295 (synopsis
17296 "Rust bindings to the oniguruma library.")
17297 (description
17298 "The @code{onig_sys} crate contains raw rust bindings to the oniguruma
17299 library. This crate exposes a set of unsafe functions which can then be used by
17300 other crates to create safe wrappers around Oniguruma.
17301 You probably don't want to link to this crate directly; instead check out the
17302 @code{onig} crate.")
17303 (license license:expat)))
17304
17305 (define-public rust-once-cell-1
17306 (package
17307 (name "rust-once-cell")
17308 (version "1.4.1")
17309 (source
17310 (origin
17311 (method url-fetch)
17312 (uri (crate-uri "once-cell" version))
17313 (file-name
17314 (string-append name "-" version ".tar.gz"))
17315 (sha256
17316 (base32
17317 "1ba56vr8n85xgajnn78pg6iag4inwil3mqg90wi5jaz6xzkm23i6"))))
17318 (build-system cargo-build-system)
17319 (arguments
17320 `(#:cargo-inputs
17321 (("rust-parking-lot" ,rust-parking-lot-0.11))
17322 #:cargo-development-inputs
17323 (("rust-crossbeam-utils" ,rust-crossbeam-utils-0.7)
17324 ("rust-lazy-static" ,rust-lazy-static-1)
17325 ("rust-regex" ,rust-regex-1))))
17326 (home-page "https://github.com/matklad/once_cell")
17327 (synopsis "Single assignment cells and lazy values")
17328 (description
17329 "Single assignment cells and lazy values.")
17330 (license (list license:expat license:asl2.0))))
17331
17332 (define-public rust-once-cell-0.1
17333 (package
17334 (inherit rust-once-cell-1)
17335 (name "rust-once-cell")
17336 (version "0.1.8")
17337 (source
17338 (origin
17339 (method url-fetch)
17340 (uri (crate-uri "once-cell" version))
17341 (file-name
17342 (string-append name "-" version ".tar.gz"))
17343 (sha256
17344 (base32
17345 "0drcjs7si0hygc0v64y55hkxv9fpvlvrb3wl5374b2hnc6i2jb2k"))))
17346 (arguments
17347 `(#:cargo-inputs
17348 (("rust-parking-lot" ,rust-parking-lot-0.7))
17349 #:cargo-development-inputs
17350 (("rust-crossbeam-utils" ,rust-crossbeam-utils-0.6))))))
17351
17352 (define-public rust-oorandom-11.1
17353 (package
17354 (name "rust-oorandom")
17355 (version "11.1.0")
17356 (source
17357 (origin
17358 (method url-fetch)
17359 (uri (crate-uri "oorandom" version))
17360 (file-name
17361 (string-append name "-" version ".tar.gz"))
17362 (sha256
17363 (base32
17364 "01clxfnz1zwg4maynvbgj09wlkj5m3c8kjqfrp3sqp59qb4wgkpb"))))
17365 (build-system cargo-build-system)
17366 (arguments `(#:skip-build? #t))
17367 (home-page "https://hg.sr.ht/~icefox/oorandom")
17368 (synopsis "A tiny, robust PRNG implementation.")
17369 (description
17370 "This package provides a tiny, robust PRNG implementation.")
17371 (license license:expat)))
17372
17373 (define-public rust-opaque-debug-0.3
17374 (package
17375 (name "rust-opaque-debug")
17376 (version "0.3.0")
17377 (source
17378 (origin
17379 (method url-fetch)
17380 (uri (crate-uri "opaque-debug" version))
17381 (file-name
17382 (string-append name "-" version ".tar.gz"))
17383 (sha256
17384 (base32
17385 "1m8kzi4nd6shdqimn0mgb24f0hxslhnqd1whakyq06wcqd086jk2"))))
17386 (build-system cargo-build-system)
17387 (home-page "https://github.com/RustCrypto/utils")
17388 (synopsis "Macro for opaque debug trait implementation")
17389 (description
17390 "This package provides a macro for opaque debug trait implementation.")
17391 (license (list license:expat license:asl2.0))))
17392
17393 (define-public rust-opaque-debug-0.2
17394 (package
17395 (inherit rust-opaque-debug-0.3)
17396 (name "rust-opaque-debug")
17397 (version "0.2.2")
17398 (source
17399 (origin
17400 (method url-fetch)
17401 (uri (crate-uri "opaque-debug" version))
17402 (file-name
17403 (string-append name "-" version ".tar.gz"))
17404 (sha256
17405 (base32
17406 "02942l2gc7w5r4js7i9063x99szic5mzzk1055j83v4diqpbpxck"))))))
17407
17408 (define-public rust-openssl-0.10
17409 (package
17410 (name "rust-openssl")
17411 (version "0.10.26")
17412 (source
17413 (origin
17414 (method url-fetch)
17415 (uri (crate-uri "openssl" version))
17416 (file-name
17417 (string-append name "-" version ".tar.gz"))
17418 (sha256
17419 (base32
17420 "11d505lwlrh5a0jc2l6q36gvsaqic3vizq5q860hiqcqkmwwag1s"))))
17421 (build-system cargo-build-system)
17422 (arguments
17423 `(#:skip-build? #t
17424 #:cargo-inputs
17425 (("rust-bitflags" ,rust-bitflags-1)
17426 ("rust-cfg-if" ,rust-cfg-if-0.1)
17427 ("rust-foreign-types" ,rust-foreign-types-0.3)
17428 ("rust-lazy-static" ,rust-lazy-static-1)
17429 ("rust-libc" ,rust-libc-0.2)
17430 ("rust-openssl-sys" ,rust-openssl-sys-0.9))
17431 #:cargo-development-inputs
17432 (("rust-hex" ,rust-hex-0.3)
17433 ("rust-tempdir" ,rust-tempdir-0.3))))
17434 (home-page "https://github.com/sfackler/rust-openssl")
17435 (synopsis "OpenSSL bindings")
17436 (description "OpenSSL bindings.")
17437 (license license:asl2.0)))
17438
17439 (define-public rust-openssl-0.7
17440 (package
17441 (inherit rust-openssl-0.10)
17442 (name "rust-openssl")
17443 (version "0.7.14")
17444 (source
17445 (origin
17446 (method url-fetch)
17447 (uri (crate-uri "openssl" version))
17448 (file-name
17449 (string-append name "-" version ".tar.gz"))
17450 (sha256
17451 (base32
17452 "0cw767rbasg4dbsfcsnxqm3q5ljkv6s1jq0a2p82xi5a8ii7n4f4"))))
17453 (arguments
17454 `(#:tests? #f ; Test directory not included in release
17455 #:cargo-inputs
17456 (("rust-bitflags" ,rust-bitflags-0.7)
17457 ("rust-gcc" ,rust-gcc-0.3)
17458 ("rust-lazy-static" ,rust-lazy-static-0.2)
17459 ("rust-libc" ,rust-libc-0.2)
17460 ("rust-openssl-sys" ,rust-openssl-sys-0.7)
17461 ("rust-openssl-sys-extras" ,rust-openssl-sys-extras-0.7))
17462 #:cargo-development-inputs
17463 (("rust-net2" ,rust-net2-0.2)
17464 ("rust-rustc-serialize" ,rust-rustc-serialize-0.3)
17465 ("rust-winapi" ,rust-winapi-0.2)
17466 ("rust-ws2-32-sys" ,rust-ws2-32-sys-0.2))
17467 #:phases
17468 (modify-phases %standard-phases
17469 (add-after 'unpack 'fix-cargo-toml
17470 (lambda _
17471 (substitute* "Cargo.toml"
17472 ((", path =.*}") "}"))
17473 #t)))))
17474 (inputs
17475 `(("openssl" ,openssl-1.0))))) ; for openssl-sys-extras
17476
17477 (define-public rust-openssl-probe-0.1
17478 (package
17479 (name "rust-openssl-probe")
17480 (version "0.1.2")
17481 (source
17482 (origin
17483 (method url-fetch)
17484 (uri (crate-uri "openssl-probe" version))
17485 (file-name (string-append name "-" version ".crate"))
17486 (sha256
17487 (base32
17488 "1pijrdifgsdwd45b08c2g0dsmnhz7c3kmagb70839ngrd7d29bvp"))))
17489 (build-system cargo-build-system)
17490 (home-page "https://github.com/alexcrichton/openssl-probe")
17491 (synopsis "Find SSL certificate locations")
17492 (description
17493 "This package provides a tool to find SSL certificate locations on the
17494 system for OpenSSL.")
17495 (license (list license:asl2.0
17496 license:expat))))
17497
17498 (define-public rust-openssl-sys-0.9
17499 (package
17500 (name "rust-openssl-sys")
17501 (version "0.9.58")
17502 (source
17503 (origin
17504 (method url-fetch)
17505 (uri (crate-uri "openssl-sys" version))
17506 (file-name (string-append name "-" version ".tar.gz"))
17507 (sha256
17508 (base32 "1pkq3x8w16kqvkg75g4w7nny56w9clssww0ibpzg015n153xnhm8"))
17509 (patches (search-patches "rust-openssl-sys-no-vendor.patch"))))
17510 (build-system cargo-build-system)
17511 (arguments
17512 `(#:cargo-inputs
17513 (("rust-libc" ,rust-libc-0.2)
17514 ;; Build dependencies:
17515 ("rust-autocfg" ,rust-autocfg-1.0)
17516 ("rust-cc" ,rust-cc-1)
17517 ("rust-pkg-config" ,rust-pkg-config-0.3)
17518 ("rust-vcpkg" ,rust-vcpkg-0.2))))
17519 (native-inputs
17520 `(("pkg-config" ,pkg-config)))
17521 (inputs
17522 `(("openssl" ,openssl)))
17523 (home-page "https://github.com/sfackler/rust-openssl")
17524 (synopsis "FFI bindings to OpenSSL")
17525 (description
17526 "This package provides FFI bindings to OpenSSL for use in rust crates.")
17527 (license license:expat)))
17528
17529 (define-public rust-openssl-sys-0.7
17530 (package
17531 (inherit rust-openssl-sys-0.9)
17532 (name "rust-openssl-sys")
17533 (version "0.7.17")
17534 (source
17535 (origin
17536 (method url-fetch)
17537 (uri (crate-uri "openssl-sys" version))
17538 (file-name
17539 (string-append name "-" version ".tar.gz"))
17540 (sha256
17541 (base32
17542 "0gswbbfkhhj8f9jifwvdssv3p2lpgyz69qzqvafylbim9klpxi49"))
17543 (modules '((guix build utils)))
17544 (snippet
17545 '(begin
17546 ;; rust-libressl-pnacl-sys vendors libressl.
17547 (substitute* "Cargo.toml"
17548 ((".*nacl.*") ""))
17549 #t))))
17550 (build-system cargo-build-system)
17551 (arguments
17552 `(#:cargo-inputs
17553 (("rust-gdi32-sys" ,rust-gdi32-sys-0.2)
17554 ("rust-libc" ,rust-libc-0.2)
17555 ("rust-user32-sys" ,rust-user32-sys-0.2)
17556 ("rust-pkg-config" ,rust-pkg-config-0.3))))))
17557
17558 (define-public rust-openssl-sys-extras-0.7
17559 (package
17560 (name "rust-openssl-sys-extras")
17561 (version "0.7.14")
17562 (source
17563 (origin
17564 (method url-fetch)
17565 (uri (crate-uri "openssl-sys-extras" version))
17566 (file-name
17567 (string-append name "-" version ".tar.gz"))
17568 (sha256
17569 (base32
17570 "1ymrmfnknyjji74fflbnnq9r5ihx25h0vgs5y203vl6klzdy3i8i"))))
17571 (build-system cargo-build-system)
17572 (arguments
17573 `(#:cargo-inputs
17574 (("rust-libc" ,rust-libc-0.2)
17575 ("rust-openssl-sys" ,rust-openssl-sys-0.7)
17576 ("rust-gcc" ,rust-gcc-0.3))
17577 #:phases
17578 (modify-phases %standard-phases
17579 (add-after 'unpack 'fix-cargo-toml
17580 (lambda _
17581 (substitute* "Cargo.toml"
17582 ((", path =.*}") "}"))
17583 #t)))))
17584 (inputs
17585 `(("openssl" ,openssl-1.0))) ; openssl-1.0 specifically
17586 (home-page "https://github.com/sfackler/rust-openssl")
17587 (synopsis
17588 "Extra FFI bindings to OpenSSL that require a C shim")
17589 (description
17590 "Extra FFI bindings to OpenSSL that require a C shim.")
17591 (license license:expat)))
17592
17593 (define-public rust-ord-subset-3
17594 (package
17595 (name "rust-ord-subset")
17596 (version "3.1.1")
17597 (source
17598 (origin
17599 (method url-fetch)
17600 (uri (crate-uri "ord-subset" version))
17601 (file-name
17602 (string-append name "-" version ".tar.gz"))
17603 (sha256
17604 (base32
17605 "1vvb6zmz279nb59dki7kbsvixbk8zpg2gxvgcpsjfnxg9ik19knp"))))
17606 (build-system cargo-build-system)
17607 (home-page "https://github.com/emerentius/ord_subset")
17608 (synopsis "Tools for working with the Ord subset of certain PartialOrd types")
17609 (description
17610 "This package provides tools for working with the Ord subset of certain
17611 PartialOrd types, like floats.")
17612 (license (list license:expat license:asl2.0))))
17613
17614 (define-public rust-ordered-float-1.0
17615 (package
17616 (name "rust-ordered-float")
17617 (version "1.0.2")
17618 (source
17619 (origin
17620 (method url-fetch)
17621 (uri (crate-uri "ordered-float" version))
17622 (file-name
17623 (string-append name "-" version ".tar.gz"))
17624 (sha256
17625 (base32
17626 "0625x96987kspdxbikry5mb7hsf5pdc5bbanxd8wjwqlx0ar71hq"))))
17627 (build-system cargo-build-system)
17628 (arguments
17629 `(#:cargo-inputs
17630 (("rust-num-traits" ,rust-num-traits-0.2)
17631 ("rust-serde" ,rust-serde-1))
17632 #:cargo-development-inputs
17633 (("rust-serde-test" ,rust-serde-test-1))))
17634 (home-page "https://github.com/reem/rust-ordered-float")
17635 (synopsis "Wrappers for total ordering on floats")
17636 (description
17637 "This package provides wrappers for total ordering on floats in Rust.")
17638 (license license:expat)))
17639
17640 (define-public rust-ordermap-0.3
17641 (package
17642 (name "rust-ordermap")
17643 (version "0.3.5")
17644 (source
17645 (origin
17646 (method url-fetch)
17647 (uri (crate-uri "ordermap" version))
17648 (file-name
17649 (string-append name "-" version ".tar.gz"))
17650 (sha256
17651 (base32
17652 "0qr0a50l0qakbjcck93qdayd0xl8gzpp42x0n7b75cs4ybsx6vm8"))))
17653 (build-system cargo-build-system)
17654 (arguments
17655 `(#:skip-build? #t
17656 #:cargo-inputs
17657 (("rust-serde" ,rust-serde-1))
17658 #:cargo-development-inputs
17659 (("rust-fnv" ,rust-fnv-1)
17660 ("rust-itertools" ,rust-itertools-0.8)
17661 ("rust-lazy-static" ,rust-lazy-static-1)
17662 ("rust-quickcheck" ,rust-quickcheck-0.8)
17663 ("rust-rand" ,rust-rand-0.4)
17664 ("rust-serde-test" ,rust-serde-test-1))))
17665 (home-page "https://github.com/bluss/indexmap")
17666 (synopsis "Hash table with consistent order and fast iteration")
17667 (description
17668 "This package provides a hash table with consistent order and fast
17669 iteration. NOTE: This crate was renamed to @code{indexmap}. Please use it
17670 under its new name.")
17671 (license (list license:asl2.0 license:expat))))
17672
17673 (define-public rust-os-pipe-0.8
17674 (package
17675 (name "rust-os-pipe")
17676 (version "0.8.2")
17677 (source
17678 (origin
17679 (method url-fetch)
17680 (uri (crate-uri "os-pipe" version))
17681 (file-name
17682 (string-append name "-" version ".tar.gz"))
17683 (sha256
17684 (base32
17685 "049ax8shxik7mm68r2nf7xnrcq3z3p7hz54sbrcxwywxqsjdzs41"))))
17686 (build-system cargo-build-system)
17687 (arguments
17688 `(#:skip-build? #t
17689 #:cargo-inputs
17690 (("rust-nix" ,rust-nix-0.15)
17691 ("rust-winapi" ,rust-winapi-0.3))))
17692 (home-page
17693 "https://github.com/oconnor663/os_pipe.rs")
17694 (synopsis
17695 "Cross-platform library for opening OS pipes")
17696 (description
17697 "A cross-platform library for opening OS pipes.")
17698 (license license:expat)))
17699
17700 (define-public rust-output-vt100-0.1
17701 (package
17702 (name "rust-output-vt100")
17703 (version "0.1.2")
17704 (source
17705 (origin
17706 (method url-fetch)
17707 (uri (crate-uri "output_vt100" version))
17708 (file-name
17709 (string-append name "-" version ".tar.gz"))
17710 (sha256
17711 (base32
17712 "1ygqplpxz4gg3i8f3rkan2q69pqll7gv65l2mmd8r9dphnvwbkak"))))
17713 (build-system cargo-build-system)
17714 (arguments
17715 `(#:skip-build? #t
17716 #:cargo-inputs
17717 (("rust-winapi" ,rust-winapi-0.3))))
17718 (home-page "https://github.com/Phundrak/output-vt100-rs")
17719 (synopsis
17720 "Utility to activate escape codes in Windows' CMD and PowerShell")
17721 (description
17722 "Utility to activate escape codes in Windows' CMD and PowerShell.")
17723 (license license:expat)))
17724
17725 (define-public rust-owning-ref-0.4
17726 (package
17727 (name "rust-owning-ref")
17728 (version "0.4.1")
17729 (source
17730 (origin
17731 (method url-fetch)
17732 (uri (crate-uri "owning_ref" version))
17733 (file-name (string-append name "-" version ".crate"))
17734 (sha256
17735 (base32
17736 "1kjj9m28wjv452jw49p1mp3d8ql058x78v4bz00avr7rvsnmpxbg"))))
17737 (build-system cargo-build-system)
17738 (arguments
17739 `(#:cargo-inputs
17740 (("rust-stable-deref-trait" ,rust-stable-deref-trait-1))))
17741 (home-page "https://github.com/Kimundi/owning-ref-rs")
17742 (synopsis "Create references that carry their owner with them")
17743 (description
17744 "This package provides a library for creating references that carry their
17745 owner with them. This can sometimes be useful because Rust borrowing rules
17746 normally prevent moving a type that has been borrowed from.")
17747 (license license:expat)))
17748
17749 (define-public rust-packed-simd-0.3
17750 (package
17751 (name "rust-packed-simd")
17752 (version "0.3.3")
17753 (source
17754 (origin
17755 (method url-fetch)
17756 (uri (crate-uri "packed_simd" version))
17757 (file-name
17758 (string-append name "-" version ".tar.gz"))
17759 (sha256
17760 (base32
17761 "0822wqf6kzw4ig9ykndg348w2bxkhs3x64brzsvdxh2a1pyajpm8"))))
17762 (build-system cargo-build-system)
17763 (arguments
17764 `(#:skip-build? #t
17765 #:cargo-inputs
17766 (("rust-cfg-if" ,rust-cfg-if-0.1)
17767 ("rust-core-arch" ,rust-core-arch-0.1)
17768 ("rust-sleef-sys" ,rust-sleef-sys-0.1))
17769 #:cargo-development-inputs
17770 (("rust-arrayvec" ,rust-arrayvec-0.4)
17771 ("rust-paste" ,rust-paste-0.1)
17772 ("rust-wasm-bindgen" ,rust-wasm-bindgen-0.2)
17773 ("rust-wasm-bindgen-test" ,rust-wasm-bindgen-test-0.2))))
17774 (home-page "https://github.com/rust-lang/packed_simd")
17775 (synopsis "Portable Packed SIMD vectors")
17776 (description "Portable Packed SIMD vectors.")
17777 (license (list license:asl2.0 license:expat))))
17778
17779 (define-public rust-pad-0.1
17780 (package
17781 (name "rust-pad")
17782 (version "0.1.6")
17783 (source
17784 (origin
17785 (method url-fetch)
17786 (uri (crate-uri "pad" version))
17787 (file-name
17788 (string-append name "-" version ".tar.gz"))
17789 (sha256
17790 (base32
17791 "1qy0r26r52gp034fv252mmg0s599a55h9nr4xswy04hvky49pbfj"))))
17792 (build-system cargo-build-system)
17793 (arguments
17794 `(#:cargo-inputs
17795 (("rust-unicode-width" ,rust-unicode-width-0.1))))
17796 (home-page "https://github.com/ogham/rust-pad")
17797 (synopsis "Library for padding strings at runtime")
17798 (description
17799 "This package provides a library for padding strings at runtime.")
17800 (license license:expat)))
17801
17802 (define-public rust-palette-0.5
17803 (package
17804 (name "rust-palette")
17805 (version "0.5.0")
17806 (source
17807 (origin
17808 (method url-fetch)
17809 (uri (crate-uri "palette" version))
17810 (file-name
17811 (string-append name "-" version ".tar.gz"))
17812 (sha256
17813 (base32
17814 "0nfc4ycdsx2qgf2wkcpxqxc0vmx7188jjjx3ppgs8qlf8qs06p50"))))
17815 (build-system cargo-build-system)
17816 (arguments
17817 `(#:skip-build? #t
17818 #:cargo-inputs
17819 (("rust-num-traits" ,rust-num-traits-0.2)
17820 ("rust-approx" ,rust-approx-0.3)
17821 ("rust-palette-derive" ,rust-palette-derive-0.5)
17822 ("rust-phf" ,rust-phf-0.8)
17823 ("rust-phf-codegen" ,rust-phf-codegen-0.8)
17824 ("rust-serde" ,rust-serde-1))))
17825 (home-page "https://github.com/Ogeon/palette")
17826 (synopsis "Linear color calculations and conversion")
17827 (description
17828 "This package makes linear color calculations and conversion accessible.")
17829 (license (list license:expat license:asl2.0))))
17830
17831 (define-public rust-palette-derive-0.5
17832 (package
17833 (name "rust-palette-derive")
17834 (version "0.5.0")
17835 (source
17836 (origin
17837 (method url-fetch)
17838 (uri (crate-uri "palette_derive" version))
17839 (file-name
17840 (string-append name "-" version ".tar.gz"))
17841 (sha256
17842 (base32
17843 "1x5icddb877923rpl27bg4cjsf1x0d3layxmgwa3mpb01rh5yjqb"))))
17844 (build-system cargo-build-system)
17845 (arguments
17846 `(#:skip-build? #t
17847 #:cargo-inputs
17848 (("rust-proc-macro2" ,rust-proc-macro2-1)
17849 ("rust-syn" ,rust-syn-1)
17850 ("rust-quote" ,rust-quote-1))))
17851 (home-page "https://github.com/Ogeon/palette")
17852 (synopsis "Automatically implement traits from the palette crate")
17853 (description
17854 "Automatically implement traits from the palette crate.")
17855 (license (list license:expat license:asl2.0))))
17856
17857 (define-public rust-parity-tokio-ipc-0.4
17858 (package
17859 (name "rust-parity-tokio-ipc")
17860 (version "0.4.0")
17861 (source
17862 (origin
17863 (method url-fetch)
17864 (uri (crate-uri "parity-tokio-ipc" version))
17865 (file-name (string-append name "-" version ".tar.gz"))
17866 (sha256
17867 (base32 "1gzifrrpiw78p6dq9ax64vhffc4h6mwg6jazpfgkz8zy0jjzwmqy"))))
17868 (build-system cargo-build-system)
17869 (arguments
17870 `(#:cargo-inputs
17871 (("rust-bytes" ,rust-bytes-0.4)
17872 ("rust-futures" ,rust-futures-0.1)
17873 ("rust-libc" ,rust-libc-0.2)
17874 ("rust-log" ,rust-log-0.4)
17875 ("rust-mio-named-pipes" ,rust-mio-named-pipes-0.1)
17876 ("rust-miow" ,rust-miow-0.3)
17877 ("rust-rand" ,rust-rand-0.7)
17878 ("rust-tokio" ,rust-tokio-0.1)
17879 ("rust-tokio-named-pipes" ,rust-tokio-named-pipes-0.1)
17880 ("rust-tokio-uds" ,rust-tokio-uds-0.2)
17881 ("rust-winapi" ,rust-winapi-0.3))))
17882 (home-page "https://github.com/nikvolf/parity-tokio-ipc")
17883 (synopsis "Interprocess communication library for tokio")
17884 (description "Interprocess communication library for tokio.")
17885 (license (list license:expat license:asl2.0))))
17886
17887 (define-public rust-parity-wasm-0.41
17888 (package
17889 (name "rust-parity-wasm")
17890 (version "0.41.0")
17891 (source
17892 (origin
17893 (method url-fetch)
17894 (uri (crate-uri "parity-wasm" version))
17895 (file-name
17896 (string-append name "-" version ".tar.gz"))
17897 (sha256
17898 (base32
17899 "0rfqgjyxrxrfjq5r5n81mdklahl8g4az6yhyyvw25nh0mj6qgz6x"))))
17900 (build-system cargo-build-system)
17901 (arguments `(#:skip-build? #t))
17902 (home-page
17903 "https://github.com/paritytech/parity-wasm")
17904 (synopsis "WebAssembly low-level format library")
17905 (description
17906 "WebAssembly low-level format library")
17907 (license (list license:expat license:asl2.0))))
17908
17909 (define-public rust-parity-wasm-0.40
17910 (package
17911 (name "rust-parity-wasm")
17912 (version "0.40.3")
17913 (source
17914 (origin
17915 (method url-fetch)
17916 (uri (crate-uri "parity-wasm" version))
17917 (file-name (string-append name "-" version ".crate"))
17918 (sha256
17919 (base32
17920 "03qycy21avz4970zc7aj8rj5h4wvi4qsrc90a6hpws1a56mglf8y"))))
17921 (build-system cargo-build-system)
17922 (arguments
17923 `(#:tests? #f
17924 #:cargo-development-inputs
17925 (("rust-time" ,rust-time-0.1))))
17926 (home-page "https://github.com/paritytech/parity-wasm")
17927 (synopsis "Low-level WebAssembly format library")
17928 (description
17929 "This package provides a WebAssembly binary format serialization,
17930 deserialization, and interpreter in Rust.")
17931 (license (list license:asl2.0
17932 license:expat))))
17933
17934 (define-public rust-parking-lot-0.11
17935 (package
17936 (name "rust-parking-lot")
17937 (version "0.11.0")
17938 (source
17939 (origin
17940 (method url-fetch)
17941 (uri (crate-uri "parking_lot" version))
17942 (file-name (string-append name "-" version ".tar.gz"))
17943 (sha256
17944 (base32
17945 "0cw73942xhxb7a49mp9gkjnlwc8acr30wpfs8zk758icz92ki2d4"))))
17946 (build-system cargo-build-system)
17947 (arguments
17948 `(#:cargo-inputs
17949 (("rust-instant" ,rust-instant-0.1)
17950 ("rust-lock-api" ,rust-lock-api-0.4)
17951 ("rust-parking-lot-core" ,rust-parking-lot-core-0.8))
17952 #:cargo-development-inputs
17953 (("rust-bincode" ,rust-bincode-1)
17954 ("rust-rand" ,rust-rand-0.7))))
17955 (home-page "https://github.com/Amanieu/parking_lot")
17956 (synopsis "More compact and efficient implementations of the standard synchronization primitives")
17957 (description "This package provides more compact and efficient
17958 implementations of the standard synchronization primitives.")
17959 (license (list license:asl2.0 license:expat))))
17960
17961 (define-public rust-parking-lot-0.10
17962 (package
17963 (name "rust-parking-lot")
17964 (version "0.10.2")
17965 (source
17966 (origin
17967 (method url-fetch)
17968 (uri (crate-uri "parking_lot" version))
17969 (file-name (string-append name "-" version ".tar.gz"))
17970 (sha256
17971 (base32
17972 "0pjhcbyk6n0g6jsr6s9nf4x8wribm1b2yf8fgc8drbqa77mh99yk"))))
17973 (build-system cargo-build-system)
17974 (arguments
17975 `(#:cargo-inputs
17976 (("rust-lock-api" ,rust-lock-api-0.3)
17977 ("rust-parking-lot-core" ,rust-parking-lot-core-0.7))
17978 #:cargo-development-inputs
17979 (("rust-bincode" ,rust-bincode-1)
17980 ("rust-lazy-static" ,rust-lazy-static-1)
17981 ("rust-rand" ,rust-rand-0.7))))
17982 (home-page "https://github.com/Amanieu/parking_lot")
17983 (synopsis "Compact standard synchronization primitives")
17984 (description
17985 "More compact and efficient implementations of the standard
17986 synchronization primitives.")
17987 (license (list license:asl2.0 license:expat))))
17988
17989 (define-public rust-parking-lot-0.9
17990 (package
17991 (inherit rust-parking-lot-0.10)
17992 (name "rust-parking-lot")
17993 (version "0.9.0")
17994 (source
17995 (origin
17996 (method url-fetch)
17997 (uri (crate-uri "parking_lot" version))
17998 (file-name
17999 (string-append name "-" version ".tar.gz"))
18000 (sha256
18001 (base32
18002 "0lk2vq3hp88ygpgsrypdr3ss71fidnqbykva0csgxhmn5scb2hpq"))))
18003 (arguments
18004 `(#:skip-build? #t
18005 #:cargo-inputs
18006 (("rust-lock-api" ,rust-lock-api-0.3)
18007 ("rust-parking-lot-core" ,rust-parking-lot-core-0.6))
18008 #:cargo-development-inputs
18009 (("rust-bincode" ,rust-bincode-1)
18010 ("rust-lazy-static" ,rust-lazy-static-1)
18011 ("rust-rand" ,rust-rand-0.4)
18012 ("rust-rustc-version" ,rust-rustc-version-0.2))))))
18013
18014 (define-public rust-parking-lot-0.8
18015 (package
18016 (inherit rust-parking-lot-0.9)
18017 (name "rust-parking-lot")
18018 (version "0.8.0")
18019 (source
18020 (origin
18021 (method url-fetch)
18022 (uri (crate-uri "parking_lot" version))
18023 (file-name
18024 (string-append name "-" version ".tar.gz"))
18025 (sha256
18026 (base32
18027 "1rrcdalr8l5zx3bw28l376321l6dnd6rqnsqsl0ygk01fy0nfxzs"))))
18028 (arguments
18029 `(#:skip-build? #t
18030 #:cargo-inputs
18031 (("rust-lock-api" ,rust-lock-api-0.2)
18032 ("rust-parking-lot-core" ,rust-parking-lot-core-0.5))
18033 #:cargo-development-inputs
18034 (("rust-bincode" ,rust-bincode-1)
18035 ("rust-lazy-static" ,rust-lazy-static-1)
18036 ("rust-rand" ,rust-rand-0.4)
18037 ("rust-rustc-version" ,rust-rustc-version-0.2))))))
18038
18039 (define-public rust-parking-lot-0.7
18040 (package
18041 (inherit rust-parking-lot-0.9)
18042 (name "rust-parking-lot")
18043 (version "0.7.1")
18044 (source
18045 (origin
18046 (method url-fetch)
18047 (uri (crate-uri "parking_lot" version))
18048 (file-name
18049 (string-append name "-" version ".tar.gz"))
18050 (sha256
18051 (base32
18052 "0dz32cqx9200n1lk3kwyb599vabfid3f8sj1aq85sw42s2pb8hdb"))))
18053 (arguments
18054 `(#:skip-build? #t
18055 #:cargo-inputs
18056 (("rust-lock-api" ,rust-lock-api-0.1)
18057 ("rust-parking-lot-core" ,rust-parking-lot-core-0.4))
18058 #:cargo-development-inputs
18059 (("rust-bincode" ,rust-bincode-1)
18060 ("rust-lazy-static" ,rust-lazy-static-1)
18061 ("rust-rand" ,rust-rand-0.4)
18062 ("rust-rustc-version" ,rust-rustc-version-0.2))))))
18063
18064 (define-public rust-parking-lot-core-0.8
18065 (package
18066 (name "rust-parking-lot-core")
18067 (version "0.8.0")
18068 (source
18069 (origin
18070 (method url-fetch)
18071 (uri (crate-uri "parking_lot_core" version))
18072 (file-name (string-append name "-" version ".tar.gz"))
18073 (sha256
18074 (base32
18075 "16yazfg3sq9mz6cfdkhgbv8yvc1kkasyhys4y7r3g16hgmralqf3"))))
18076 (build-system cargo-build-system)
18077 (arguments
18078 `(#:cargo-inputs
18079 (("rust-backtrace" ,rust-backtrace-0.3)
18080 ("rust-cfg-if" ,rust-cfg-if-0.1)
18081 ("rust-cloudabi" ,rust-cloudabi-0.1)
18082 ("rust-instant" ,rust-instant-0.1)
18083 ("rust-libc" ,rust-libc-0.2)
18084 ("rust-petgraph" ,rust-petgraph-0.5)
18085 ("rust-redox-syscall" ,rust-redox-syscall-0.1)
18086 ("rust-smallvec" ,rust-smallvec-1)
18087 ("rust-thread-id" ,rust-thread-id-3)
18088 ("rust-winapi" ,rust-winapi-0.3))))
18089 (home-page "https://github.com/Amanieu/parking_lot")
18090 (synopsis "API for creating custom synchronization primitives")
18091 (description "This package provides an advanced API for creating custom
18092 synchronization primitives.")
18093 (license (list license:asl2.0 license:expat))))
18094
18095 (define-public rust-parking-lot-core-0.7
18096 (package
18097 (inherit rust-parking-lot-core-0.8)
18098 (name "rust-parking-lot-core")
18099 (version "0.7.2")
18100 (source
18101 (origin
18102 (method url-fetch)
18103 (uri (crate-uri "parking_lot_core" version))
18104 (file-name
18105 (string-append name "-" version ".tar.gz"))
18106 (sha256
18107 (base32
18108 "18s0cw5y32447c06fhg2mp3xfng22fn1h9fpx3il98sbimv7r36m"))))
18109 (arguments
18110 `(#:cargo-inputs
18111 (("rust-backtrace" ,rust-backtrace-0.3)
18112 ("rust-cfg-if" ,rust-cfg-if-0.1)
18113 ("rust-cloudabi" ,rust-cloudabi-0.0)
18114 ("rust-libc" ,rust-libc-0.2)
18115 ("rust-petgraph" ,rust-petgraph-0.5)
18116 ("rust-redox-syscall" ,rust-redox-syscall-0.1)
18117 ("rust-smallvec" ,rust-smallvec-1)
18118 ("rust-thread-id" ,rust-thread-id-3)
18119 ("rust-winapi" ,rust-winapi-0.3))))))
18120
18121 (define-public rust-parking-lot-core-0.6
18122 (package
18123 (inherit rust-parking-lot-core-0.7)
18124 (name "rust-parking-lot-core")
18125 (version "0.6.2")
18126 (source
18127 (origin
18128 (method url-fetch)
18129 (uri (crate-uri "parking_lot_core" version))
18130 (file-name
18131 (string-append name "-" version ".tar.gz"))
18132 (sha256
18133 (base32
18134 "0ay67dpnrn68ryyvp720m9i8hzp189fd4d6slrs1lvmcwywv2xmq"))))
18135 (arguments
18136 `(#:skip-build? #t
18137 #:cargo-inputs
18138 (("rust-backtrace" ,rust-backtrace-0.3)
18139 ("rust-cfg-if" ,rust-cfg-if-0.1)
18140 ("rust-cloudabi" ,rust-cloudabi-0.0)
18141 ("rust-libc" ,rust-libc-0.2)
18142 ("rust-petgraph" ,rust-petgraph-0.4)
18143 ("rust-rand" ,rust-rand-0.4)
18144 ("rust-redox-syscall" ,rust-redox-syscall-0.1)
18145 ("rust-smallvec" ,rust-smallvec-0.6)
18146 ("rust-thread-id" ,rust-thread-id-3)
18147 ("rust-winapi" ,rust-winapi-0.3))
18148 #:cargo-development-inputs
18149 (("rust-rustc-version" ,rust-rustc-version-0.2))))))
18150
18151 (define-public rust-parking-lot-core-0.5
18152 (package
18153 (inherit rust-parking-lot-core-0.6)
18154 (name "rust-parking-lot-core")
18155 (version "0.5.0")
18156 (source
18157 (origin
18158 (method url-fetch)
18159 (uri (crate-uri "parking_lot_core" version))
18160 (file-name
18161 (string-append name "-" version ".tar.gz"))
18162 (sha256
18163 (base32
18164 "1317j5a1yd03baza2kqqrxb4kr1vxa7rckw4frksl2vrncfcp26b"))))
18165 (arguments
18166 `(#:cargo-inputs
18167 (("rust-backtrace" ,rust-backtrace-0.3)
18168 ("rust-cfg-if" ,rust-cfg-if-0.1)
18169 ("rust-cloudabi" ,rust-cloudabi-0.0)
18170 ("rust-libc" ,rust-libc-0.2)
18171 ("rust-petgraph" ,rust-petgraph-0.4)
18172 ("rust-rand" ,rust-rand-0.6)
18173 ("rust-redox-syscall" ,rust-redox-syscall-0.1)
18174 ("rust-smallvec" ,rust-smallvec-0.6)
18175 ("rust-thread-id" ,rust-thread-id-3)
18176 ("rust-winapi" ,rust-winapi-0.3)
18177 ("rust-rustc-version" ,rust-rustc-version-0.2))))))
18178
18179 (define-public rust-parking-lot-core-0.4
18180 (package
18181 (inherit rust-parking-lot-core-0.6)
18182 (name "rust-parking-lot-core")
18183 (version "0.4.0")
18184 (source
18185 (origin
18186 (method url-fetch)
18187 (uri (crate-uri "parking_lot_core" version))
18188 (file-name
18189 (string-append name "-" version ".tar.gz"))
18190 (sha256
18191 (base32
18192 "1jcq8aq4wv9y5fip7jg12jdwjd5g5r3x857xdma8vcin769cgj4l"))))
18193 (arguments
18194 `(#:cargo-inputs
18195 (("rust-backtrace" ,rust-backtrace-0.3)
18196 ("rust-libc" ,rust-libc-0.2)
18197 ("rust-petgraph" ,rust-petgraph-0.4)
18198 ("rust-rand" ,rust-rand-0.6)
18199 ("rust-smallvec" ,rust-smallvec-0.6)
18200 ("rust-thread-id" ,rust-thread-id-3)
18201 ("rust-winapi" ,rust-winapi-0.3)
18202 ("rust-rustc-version" ,rust-rustc-version-0.2))))))
18203
18204 (define-public rust-partial-io-0.3
18205 (package
18206 (name "rust-partial-io")
18207 (version "0.3.1")
18208 (source
18209 (origin
18210 (method url-fetch)
18211 (uri (crate-uri "partial-io" version))
18212 (file-name (string-append name "-" version ".tar.gz"))
18213 (sha256
18214 (base32
18215 "0b9a2bvqmaj2r4rkbshjsg8zzvp23b67qfvj2y6jwjckrn6zhb38"))))
18216 (build-system cargo-build-system)
18217 (arguments
18218 `(#:cargo-inputs
18219 (("rust-futures" ,rust-futures-0.1)
18220 ("rust-quickcheck" ,rust-quickcheck-0.6)
18221 ("rust-tokio-io" ,rust-tokio-io-0.1))
18222 #:cargo-development-inputs
18223 (("rust-lazy-static" ,rust-lazy-static-1)
18224 ("rust-quickcheck" ,rust-quickcheck-0.6)
18225 ("rust-tokio-core" ,rust-tokio-core-0.1))))
18226 (home-page "https://github.com/facebookincubator/rust-partial-io")
18227 (synopsis "Helpers to test partial, interrupted and would-block I/O operations")
18228 (description "This package provides helpers to test partial, interrupted
18229 and would-block I/O operations.")
18230 (license license:expat)))
18231
18232 (define-public rust-partial-io-0.2
18233 (package
18234 (inherit rust-partial-io-0.3)
18235 (name "rust-partial-io")
18236 (version "0.2.5")
18237 (source
18238 (origin
18239 (method url-fetch)
18240 (uri (crate-uri "partial-io" version))
18241 (file-name
18242 (string-append name "-" version ".tar.gz"))
18243 (sha256
18244 (base32
18245 "03iynvayh11a4mckhwflm5y1qmnkw5m3b20gzi1crpasndy3h8xx"))))
18246 (arguments
18247 `(#:cargo-inputs
18248 (("rust-futures" ,rust-futures-0.1)
18249 ("rust-quickcheck" ,rust-quickcheck-0.4)
18250 ("rust-tokio-io" ,rust-tokio-io-0.1))
18251 #:cargo-development-inputs
18252 (("rust-lazy-static" ,rust-lazy-static-0.2)
18253 ("rust-quickcheck" ,rust-quickcheck-0.4)
18254 ("rust-tokio-core" ,rust-tokio-core-0.1))))
18255 (license license:bsd-3)))
18256
18257 (define-public rust-paste-0.1
18258 (package
18259 (name "rust-paste")
18260 (version "0.1.10")
18261 (source
18262 (origin
18263 (method url-fetch)
18264 (uri (crate-uri "paste" version))
18265 (file-name
18266 (string-append name "-" version ".tar.gz"))
18267 (sha256
18268 (base32
18269 "0yk4zbi7128dcrklsbwfa63d39x0dv8f7pdbrylvdlcj0s9v2kxb"))))
18270 (build-system cargo-build-system)
18271 (arguments
18272 `(#:cargo-inputs
18273 (("rust-paste-impl" ,rust-paste-impl-0.1)
18274 ("rust-proc-macro-hack" ,rust-proc-macro-hack-0.5))
18275 #:cargo-development-inputs
18276 (("rust-rustversion" ,rust-rustversion-1)
18277 ("rust-trybuild" ,rust-trybuild-1))))
18278 (home-page "https://github.com/dtolnay/paste")
18279 (synopsis "Macros for all your token pasting needs")
18280 (description
18281 "Macros for all your token pasting needs.")
18282 (license (list license:asl2.0 license:expat))))
18283
18284 (define-public rust-paste-impl-0.1
18285 (package
18286 (name "rust-paste-impl")
18287 (version "0.1.10")
18288 (source
18289 (origin
18290 (method url-fetch)
18291 (uri (crate-uri "paste-impl" version))
18292 (file-name
18293 (string-append name "-" version ".tar.gz"))
18294 (sha256
18295 (base32
18296 "12jsm83dnsqnrcabfacnwcxh3h4kykl622vi7glv2wg527hqc956"))))
18297 (build-system cargo-build-system)
18298 (arguments
18299 `(#:cargo-inputs
18300 (("rust-proc-macro-hack" ,rust-proc-macro-hack-0.5)
18301 ("rust-proc-macro2" ,rust-proc-macro2-1)
18302 ("rust-quote" ,rust-quote-1)
18303 ("rust-syn" ,rust-syn-1))))
18304 (home-page "https://github.com/dtolnay/paste")
18305 (synopsis "Implementation detail of the paste crate")
18306 (description
18307 "Implementation detail of the paste crate.")
18308 (license (list license:asl2.0 license:expat))))
18309
18310 (define-public rust-path-clean-0.1
18311 (package
18312 (name "rust-path-clean")
18313 (version "0.1.0")
18314 (source
18315 (origin
18316 (method url-fetch)
18317 (uri (crate-uri "path-clean" version))
18318 (file-name (string-append name "-" version ".tar.gz"))
18319 (sha256
18320 (base32
18321 "1pcgqxw0mgg3ha5hi5xkjhyjf488bw5rw1g3qlr9awbq4szh3fpc"))))
18322 (build-system cargo-build-system)
18323 (home-page "https://github.com/danreeves/path-clean")
18324 (synopsis "Rust implementation of cleanname or path.Clean")
18325 (description "This package provides a Rust implementation of cleanname or
18326 path.Clean.")
18327 (license (list license:expat license:asl2.0))))
18328
18329 (define-public rust-pathdiff-0.1
18330 (package
18331 (name "rust-pathdiff")
18332 (version "0.1.0")
18333 (source
18334 (origin
18335 (method url-fetch)
18336 (uri (crate-uri "pathdiff" version))
18337 (file-name
18338 (string-append name "-" version ".tar.gz"))
18339 (sha256
18340 (base32
18341 "0cfg3isnx6mf3wbi7rsg4nmvywby40sbcs589n20fgi09l4p1gx3"))))
18342 (build-system cargo-build-system)
18343 (home-page "https://github.com/Manishearth/pathdiff")
18344 (synopsis "Library for diffing paths to obtain relative paths")
18345 (description
18346 "Use diff_paths to construct a relative path from a provided base
18347 directory path to the provided path.")
18348 (license (list license:asl2.0 license:expat))))
18349
18350 (define-public rust-pbkdf2-0.4
18351 (package
18352 (name "rust-pbkdf2")
18353 (version "0.4.0")
18354 (source
18355 (origin
18356 (method url-fetch)
18357 (uri (crate-uri "pbkdf2" version))
18358 (file-name
18359 (string-append name "-" version ".tar.gz"))
18360 (sha256
18361 (base32
18362 "1g8cm3nwrsydazjc1gjs549hzafgxq8qb49gixrhl3qrd9calvi1"))))
18363 (build-system cargo-build-system)
18364 (arguments
18365 `(#:cargo-inputs
18366 (("rust-base64" ,rust-base64-0.12)
18367 ("rust-crypto-mac" ,rust-crypto-mac-0.8)
18368 ("rust-hmac" ,rust-hmac-0.8)
18369 ("rust-rand" ,rust-rand-0.7)
18370 ("rust-rand-core" ,rust-rand-core-0.5)
18371 ("rust-rayon" ,rust-rayon-1)
18372 ("rust-sha2" ,rust-sha2-0.9)
18373 ("rust-subtle" ,rust-subtle-2))
18374 #:cargo-development-inputs
18375 (("rust-hmac" ,rust-hmac-0.8)
18376 ("rust-sha-1" ,rust-sha-1-0.9)
18377 ("rust-sha2" ,rust-sha2-0.9))))
18378 (home-page "https://github.com/RustCrypto/password-hashing")
18379 (synopsis "Generic implementation of PBKDF2")
18380 (description "This package contains a collection of password hashing
18381 algorithms, otherwise known as password-based key derivation functions, written
18382 in pure Rust.")
18383 (license (list license:expat license:asl2.0))))
18384
18385 (define-public rust-pbkdf2-0.3
18386 (package
18387 (inherit rust-pbkdf2-0.4)
18388 (name "rust-pbkdf2")
18389 (version "0.3.0")
18390 (source
18391 (origin
18392 (method url-fetch)
18393 (uri (crate-uri "pbkdf2" version))
18394 (file-name
18395 (string-append name "-" version ".tar.gz"))
18396 (sha256
18397 (base32
18398 "1na2fmmfcmksz4xk7m0ihl778501c1krx88dcylrand48f506v00"))))
18399 (arguments
18400 `(#:cargo-inputs
18401 (("rust-base64" ,rust-base64-0.9)
18402 ("rust-byteorder" ,rust-byteorder-1)
18403 ("rust-crypto-mac" ,rust-crypto-mac-0.7)
18404 ("rust-hmac" ,rust-hmac-0.7)
18405 ("rust-rand" ,rust-rand-0.5)
18406 ("rust-rayon" ,rust-rayon-1)
18407 ("rust-sha2" ,rust-sha2-0.8)
18408 ("rust-subtle" ,rust-subtle-1.0))
18409 #:cargo-development-inputs
18410 (("rust-hmac" ,rust-hmac-0.7)
18411 ("rust-sha-1" ,rust-sha-1-0.8)
18412 ("rust-sha2" ,rust-sha2-0.8))))))
18413
18414 (define-public rust-pcre2-0.2
18415 (package
18416 (name "rust-pcre2")
18417 (version "0.2.3")
18418 (source
18419 (origin
18420 (method url-fetch)
18421 (uri (crate-uri "pcre2" version))
18422 (file-name
18423 (string-append name "-" version ".tar.gz"))
18424 (sha256
18425 (base32
18426 "1c8sn70h72llf26sya9v26zmaamq350q57nwv6fl6fwhd4phzcw5"))))
18427 (build-system cargo-build-system)
18428 (arguments
18429 `(#:cargo-inputs
18430 (("rust-libc" ,rust-libc-0.2)
18431 ("rust-log" ,rust-log-0.4)
18432 ("rust-pcre2-sys" ,rust-pcre2-sys-0.2)
18433 ("rust-thread-local" ,rust-thread-local-1.0))))
18434 (native-inputs
18435 `(("pcre2" ,pcre2)
18436 ("pkg-config" ,pkg-config)))
18437 (home-page "https://github.com/BurntSushi/rust-pcre2")
18438 (synopsis "High level wrapper library for PCRE2")
18439 (description
18440 "This package provides a high level wrapper library for PCRE2.")
18441 (license (list license:expat license:unlicense))))
18442
18443 (define-public rust-pcre2-sys-0.2
18444 (package
18445 (name "rust-pcre2-sys")
18446 (version "0.2.5")
18447 (source
18448 (origin
18449 (method url-fetch)
18450 (uri (crate-uri "pcre2-sys" version))
18451 (file-name
18452 (string-append name "-" version ".tar.gz"))
18453 (sha256
18454 (base32
18455 "08mp6yxrvadplwd0drdydzskvzapr6dri9fyy7xvhzn3krg0xhyy"))
18456 (modules '((guix build utils)))
18457 (snippet
18458 '(begin (delete-file-recursively "pcre2") #t))))
18459 (build-system cargo-build-system)
18460 (arguments
18461 `(#:cargo-inputs
18462 (("rust-libc" ,rust-libc-0.2)
18463 ("rust-pkg-config" ,rust-pkg-config-0.3)
18464 ("rust-cc" ,rust-cc-1))))
18465 (native-inputs
18466 `(("pcre2" ,pcre2)
18467 ("pkg-config" ,pkg-config)))
18468 (home-page
18469 "https://github.com/BurntSushi/rust-pcre2")
18470 (synopsis "Low level bindings to PCRE2")
18471 (description "Low level bindings to PCRE2.")
18472 (license (list license:expat license:unlicense))))
18473
18474 (define-public rust-peeking-take-while-0.1
18475 (package
18476 (name "rust-peeking-take-while")
18477 (version "0.1.2")
18478 (source
18479 (origin
18480 (method url-fetch)
18481 (uri (crate-uri "peeking_take_while" version))
18482 (file-name (string-append name "-" version ".crate"))
18483 (sha256
18484 (base32
18485 "16bhqr6rdyrp12zv381cxaaqqd0pwysvm1q8h2ygihvypvfprc8r"))))
18486 (build-system cargo-build-system)
18487 (home-page "https://github.com/fitzgen/peeking_take_while")
18488 (synopsis "Provides the peeking_take_while iterator adaptor method")
18489 (description
18490 "Like @code{Iterator::take_while}, but calls the predicate on a peeked
18491 value. This allows you to use @code{Iterator::by_ref} and
18492 @code{Iterator::take_while} together, and still get the first value for which
18493 the @code{take_while} predicate returned false after dropping the @code{by_ref}.")
18494 (license (list license:asl2.0
18495 license:expat))))
18496
18497 (define-public rust-peg-0.6
18498 (package
18499 (name "rust-peg")
18500 (version "0.6.2")
18501 (source
18502 (origin
18503 (method url-fetch)
18504 (uri (crate-uri "peg" version))
18505 (file-name
18506 (string-append name "-" version ".tar.gz"))
18507 (sha256
18508 (base32
18509 "15rfp12dgsynplphp443zfw47m2d5snvdm6a25gz48dv2if8fxch"))))
18510 (build-system cargo-build-system)
18511 (arguments
18512 `(#:tests? #f
18513 #:cargo-inputs
18514 (("rust-peg-macros" ,rust-peg-macros-0.6)
18515 ("rust-peg-runtime" ,rust-peg-runtime-0.6))
18516 #:cargo-development-inputs
18517 (("rust-trybuild" ,rust-trybuild-1))))
18518 (home-page "https://github.com/kevinmehall/rust-peg")
18519 (synopsis "Simple Parsing Expression Grammar (PEG) parser generator")
18520 (description
18521 "PEG provides a simple Parsing Expression Grammar (PEG) parser generator
18522 in Rust.")
18523 (license license:expat)))
18524
18525 (define-public rust-peg-0.5
18526 (package
18527 (inherit rust-peg-0.6)
18528 (name "rust-peg")
18529 (version "0.5.7")
18530 (source
18531 (origin
18532 (method url-fetch)
18533 (uri (crate-uri "peg" version))
18534 (file-name
18535 (string-append name "-" version ".tar.gz"))
18536 (sha256
18537 (base32
18538 "11az3bs3ngvfip920xfr0zwblfkyg6cjgz1v9hmfsdnqw7fi5ps0"))))
18539 (build-system cargo-build-system)
18540 (arguments
18541 `(#:cargo-inputs (("rust-quote" ,rust-quote-0.3))))))
18542
18543 (define-public rust-peg-macros-0.6
18544 (package
18545 (name "rust-peg-macros")
18546 (version "0.6.2")
18547 (source
18548 (origin
18549 (method url-fetch)
18550 (uri (crate-uri "peg-macros" version))
18551 (file-name
18552 (string-append name "-" version ".tar.gz"))
18553 (sha256
18554 (base32
18555 "0li8qrb8hyqr7v5mhrkym0xp7ijnbksqviqc2i3556cysdgick62"))))
18556 (build-system cargo-build-system)
18557 (arguments
18558 `(#:cargo-inputs
18559 (("rust-peg-runtime" ,rust-peg-runtime-0.6)
18560 ("rust-proc-macro2" ,rust-proc-macro2-1)
18561 ("rust-quote" ,rust-quote-1))))
18562 (home-page "https://github.com/kevinmehall/rust-peg")
18563 (synopsis "Procedural macros for rust-peg")
18564 (description
18565 "PEG provides a Parsing Expression Grammar. This package provides
18566 procedural macros for rust-peg. To use rust-peg, see the peg package.")
18567 (license license:expat)))
18568
18569 (define-public rust-peg-runtime-0.6
18570 (package
18571 (name "rust-peg-runtime")
18572 (version "0.6.2")
18573 (source
18574 (origin
18575 (method url-fetch)
18576 (uri (crate-uri "peg-runtime" version))
18577 (file-name
18578 (string-append name "-" version ".tar.gz"))
18579 (sha256
18580 (base32
18581 "0r583cq923v0narrpq73qmp780yg4pablzklhrwnr64xwsbjh6hc"))))
18582 (build-system cargo-build-system)
18583 (home-page "https://github.com/kevinmehall/rust-peg")
18584 (synopsis "Runtime support for rust-peg grammars")
18585 (description
18586 "PEG provides a Parsing Expression Grammar. This package provides
18587 runtime support for rust-peg grammars. To use rust-peg, see the peg crate.")
18588 (license license:expat)))
18589
18590 (define-public rust-percent-encoding-2
18591 (package
18592 (name "rust-percent-encoding")
18593 (version "2.1.0")
18594 (source
18595 (origin
18596 (method url-fetch)
18597 (uri (crate-uri "percent-encoding" version))
18598 (file-name (string-append name "-" version ".crate"))
18599 (sha256
18600 (base32
18601 "0bp3zrsk3kr47fbpipyczidbbx4g54lzxdm77ni1i3qws10mdzfl"))))
18602 (build-system cargo-build-system)
18603 (home-page "https://github.com/servo/rust-url/")
18604 (synopsis "Percent encoding and decoding")
18605 (description "This crate provides percent encoding and decoding.")
18606 (license (list license:asl2.0
18607 license:expat))))
18608
18609 (define-public rust-percent-encoding-1.0
18610 (package
18611 (inherit rust-percent-encoding-2)
18612 (name "rust-percent-encoding")
18613 (version "1.0.1")
18614 (source
18615 (origin
18616 (method url-fetch)
18617 (uri (crate-uri "percent-encoding" version))
18618 (file-name (string-append name "-" version ".crate"))
18619 (sha256
18620 (base32
18621 "0cgq08v1fvr6bs5fvy390cz830lq4fak8havdasdacxcw790s09i"))))))
18622
18623 (define-public rust-permutohedron-0.2
18624 (package
18625 (name "rust-permutohedron")
18626 (version "0.2.4")
18627 (source
18628 (origin
18629 (method url-fetch)
18630 (uri (crate-uri "permutohedron" version))
18631 (file-name (string-append name "-" version ".crate"))
18632 (sha256
18633 (base32
18634 "0b1pzh48j86v46wxngch6k1kx9cdw3jr3lwa86gd6jd4bmxzz1xn"))))
18635 (build-system cargo-build-system)
18636 (arguments '(#:skip-build? #t))
18637 (home-page "https://github.com/bluss/permutohedron")
18638 (synopsis "Generate permutations of sequences")
18639 (description
18640 "Generate permutations of sequences. Either lexicographical order
18641 permutations, or a minimal swaps permutation sequence implemented using Heap's
18642 algorithm.")
18643 (license (list license:asl2.0
18644 license:expat))))
18645
18646 (define-public rust-pest-2
18647 (package
18648 (name "rust-pest")
18649 (version "2.1.1")
18650 (source
18651 (origin
18652 (method url-fetch)
18653 (uri (crate-uri "pest" version))
18654 (file-name
18655 (string-append name "-" version ".tar.gz"))
18656 (sha256
18657 (base32
18658 "134686mwxm73asbiads53zfchqvvcrsrsyax2cghfcizmvg8ac4k"))))
18659 (build-system cargo-build-system)
18660 (arguments
18661 `(#:skip-build? #t
18662 #:cargo-inputs
18663 (("rust-serde" ,rust-serde-1)
18664 ("rust-serde-json" ,rust-serde-json-1)
18665 ("rust-ucd-trie" ,rust-ucd-trie-0.1))))
18666 (home-page "https://pest.rs/")
18667 (synopsis "The Elegant Parser")
18668 (description "The Elegant Parser.")
18669 (license (list license:asl2.0 license:expat))))
18670
18671 (define-public rust-pest-derive-2
18672 (package
18673 (name "rust-pest-derive")
18674 (version "2.1.0")
18675 (source
18676 (origin
18677 (method url-fetch)
18678 (uri (crate-uri "pest_derive" version))
18679 (file-name
18680 (string-append name "-" version ".tar.gz"))
18681 (sha256
18682 (base32
18683 "1l5jfa6ril71cw5nsiw0r45br54dd8cj2r1nc2d1wq6wb3jilgc3"))))
18684 (build-system cargo-build-system)
18685 (arguments
18686 `(#:skip-build? #t
18687 #:cargo-inputs
18688 (("rust-pest" ,rust-pest-2)
18689 ("rust-pest-generator" ,rust-pest-generator-2.1))))
18690 (home-page "https://pest.rs/")
18691 (synopsis "Pest's derive macro")
18692 (description "Pest's derive macro.")
18693 (license (list license:asl2.0 license:expat))))
18694
18695 (define-public rust-pest-generator-2.1
18696 (package
18697 (name "rust-pest-generator")
18698 (version "2.1.1")
18699 (source
18700 (origin
18701 (method url-fetch)
18702 (uri (crate-uri "pest_generator" version))
18703 (file-name
18704 (string-append name "-" version ".tar.gz"))
18705 (sha256
18706 (base32
18707 "1h3z8jccki87mn7gppy4292s1ah98z4md998w5pd04jpkclwz7vv"))))
18708 (build-system cargo-build-system)
18709 (arguments
18710 `(#:skip-build? #t
18711 #:cargo-inputs
18712 (("rust-pest" ,rust-pest-2)
18713 ("rust-pest-meta" ,rust-pest-meta-2.1)
18714 ("rust-proc-macro2" ,rust-proc-macro2-1)
18715 ("rust-quote" ,rust-quote-1)
18716 ("rust-syn" ,rust-syn-1))))
18717 (home-page "https://pest.rs/")
18718 (synopsis "Pest code generator")
18719 (description "Pest code generator.")
18720 (license (list license:asl2.0 license:expat))))
18721
18722 (define-public rust-pest-meta-2.1
18723 (package
18724 (name "rust-pest-meta")
18725 (version "2.1.2")
18726 (source
18727 (origin
18728 (method url-fetch)
18729 (uri (crate-uri "pest_meta" version))
18730 (file-name
18731 (string-append name "-" version ".tar.gz"))
18732 (sha256
18733 (base32
18734 "0iymvrh7lcfi8iarkgq0hwgarr00np3l4xg4bx42rmvgi6czshyz"))))
18735 (build-system cargo-build-system)
18736 (arguments
18737 `(#:skip-build? #t
18738 #:cargo-inputs
18739 (("rust-maplit" ,rust-maplit-1.0)
18740 ("rust-pest" ,rust-pest-2)
18741 ("rust-sha-1" ,rust-sha-1-0.8))))
18742 (home-page "https://pest.rs")
18743 (synopsis "Pest meta language parser and validator")
18744 (description
18745 "Pest meta language parser and validator.")
18746 (license (list license:asl2.0 license:expat))))
18747
18748 (define-public rust-petgraph-0.5
18749 (package
18750 (name "rust-petgraph")
18751 (version "0.5.1")
18752 (source
18753 (origin
18754 (method url-fetch)
18755 (uri (crate-uri "petgraph" version))
18756 (file-name
18757 (string-append name "-" version ".tar.gz"))
18758 (sha256
18759 (base32
18760 "1dzxda6z17sfxly11m8ja3iargh73pw0s1sdgjyp0qp5dm51cza6"))))
18761 (build-system cargo-build-system)
18762 (arguments
18763 `(#:cargo-inputs
18764 (("rust-fixedbitset" ,rust-fixedbitset-0.2)
18765 ("rust-ordermap" ,rust-ordermap-0.3)
18766 ("rust-quickcheck" ,rust-quickcheck-0.8)
18767 ("rust-serde" ,rust-serde-1)
18768 ("rust-serde-derive" ,rust-serde-derive-1))
18769 #:cargo-development-inputs
18770 (("rust-defmac" ,rust-defmac-0.1)
18771 ("rust-itertools" ,rust-itertools-0.8)
18772 ("rust-odds" ,rust-odds-0.2)
18773 ("rust-rand" ,rust-rand-0.5))))
18774 (home-page "https://github.com/petgraph/petgraph")
18775 (synopsis "Graph data structure library")
18776 (description
18777 "Graph data structure library. Provides graph types and graph
18778 algorithms.")
18779 (license (list license:expat license:asl2.0))))
18780
18781 (define-public rust-petgraph-0.4
18782 (package
18783 (inherit rust-petgraph-0.5)
18784 (name "rust-petgraph")
18785 (version "0.4.13")
18786 (source
18787 (origin
18788 (method url-fetch)
18789 (uri (crate-uri "petgraph" version))
18790 (file-name
18791 (string-append name "-" version ".tar.gz"))
18792 (sha256
18793 (base32
18794 "0kyfmca854s54jk26g2x1kjb04c3k7cjilaxyr0if8lhxv8mjdlw"))))
18795 (arguments
18796 `(#:cargo-inputs
18797 (("rust-fixedbitset" ,rust-fixedbitset-0.1)
18798 ("rust-odds" ,rust-odds-0.2)
18799 ("rust-ordermap" ,rust-ordermap-0.3)
18800 ("rust-quickcheck" ,rust-quickcheck-0.4)
18801 ("rust-serde" ,rust-serde-1)
18802 ("rust-serde-derive" ,rust-serde-derive-1))
18803 #:cargo-development-inputs
18804 (("rust-defmac" ,rust-defmac-0.1)
18805 ("rust-itertools" ,rust-itertools-0.7)
18806 ("rust-rand" ,rust-rand-0.4))
18807 #:phases
18808 (modify-phases %standard-phases
18809 (add-before 'check 'ignore-failing-test
18810 (lambda _
18811 (substitute* "tests/graph.rs"
18812 (("fn dot\\(\\) \\{" all)
18813 (string-append "#[ignore] " all))))))))))
18814
18815 (define-public rust-phf-0.8
18816 (package
18817 (name "rust-phf")
18818 (version "0.8.0")
18819 (source
18820 (origin
18821 (method url-fetch)
18822 (uri (crate-uri "phf" version))
18823 (file-name
18824 (string-append name "-" version ".tar.gz"))
18825 (sha256
18826 (base32
18827 "04pyv8bzqvw69rd5dynd5nb85py1hf7wa4ixyhrvdz1l5qin3yrx"))))
18828 (build-system cargo-build-system)
18829 (arguments
18830 `(#:skip-build? #t
18831 #:cargo-inputs
18832 (("rust-proc-macro-hack" ,rust-proc-macro-hack-0.5)
18833 ("rust-phf-shared" ,rust-phf-shared-0.8)
18834 ("rust-phf-macros" ,rust-phf-macros-0.8))))
18835 (home-page "https://github.com/sfackler/rust-phf")
18836 (synopsis "Runtime support for perfect hash function data structures")
18837 (description "This package provides runtime support for perfect hash
18838 function data structures.")
18839 (license license:expat)))
18840
18841 (define-public rust-phf-0.7
18842 (package
18843 (name "rust-phf")
18844 (version "0.7.24")
18845 (source
18846 (origin
18847 (method url-fetch)
18848 (uri (crate-uri "phf" version))
18849 (file-name
18850 (string-append name "-" version ".tar.gz"))
18851 (sha256
18852 (base32
18853 "066xwv4dr6056a9adlkarwp4n94kbpwngbmd47ngm3cfbyw49nmk"))))
18854 (build-system cargo-build-system)
18855 (arguments
18856 `(#:skip-build? #t
18857 #:cargo-inputs
18858 (("rust-phf-macros" ,rust-phf-macros-0.7)
18859 ("rust-phf-shared" ,rust-phf-shared-0.7))))
18860 (home-page "https://github.com/sfackler/rust-phf")
18861 (synopsis "Runtime support for perfect hash function data structures")
18862 (description
18863 "Runtime support for perfect hash function data structures.")
18864 (license license:expat)))
18865
18866 (define-public rust-phf-codegen-0.8
18867 (package
18868 (name "rust-phf-codegen")
18869 (version "0.8.0")
18870 (source
18871 (origin
18872 (method url-fetch)
18873 (uri (crate-uri "phf_codegen" version))
18874 (file-name
18875 (string-append name "-" version ".tar.gz"))
18876 (sha256
18877 (base32
18878 "05d8w7aqqjb6039pfm6404gk5dlwrrf97kiy1n21212vb1hyxzyb"))))
18879 (build-system cargo-build-system)
18880 (arguments
18881 `(#:skip-build? #t
18882 #:cargo-inputs
18883 (("rust-phf-generator" ,rust-phf-generator-0.8)
18884 ("rust-phf-shared" ,rust-phf-shared-0.8))))
18885 (home-page "https://github.com/sfackler/rust-phf")
18886 (synopsis "Codegen library for PHF types")
18887 (description "Codegen library for PHF types.")
18888 (license license:expat)))
18889
18890 (define-public rust-phf-codegen-0.7
18891 (package
18892 (name "rust-phf-codegen")
18893 (version "0.7.24")
18894 (source
18895 (origin
18896 (method url-fetch)
18897 (uri (crate-uri "phf-codegen" version))
18898 (file-name
18899 (string-append name "-" version ".tar.gz"))
18900 (sha256
18901 (base32
18902 "0zjiblicfm0nrmr2xxrs6pnf6zz2394wgch6dcbd8jijkq98agmh"))))
18903 (build-system cargo-build-system)
18904 (arguments
18905 `(#:cargo-inputs
18906 (("rust-phf-generator" ,rust-phf-generator-0.7)
18907 ("rust-phf-shared" ,rust-phf-shared-0.7))))
18908 (home-page
18909 "https://github.com/sfackler/rust-phf")
18910 (synopsis "Codegen library for PHF types")
18911 (description "Codegen library for PHF types.")
18912 (license license:expat)))
18913
18914 (define-public rust-phf-generator-0.8
18915 (package
18916 (name "rust-phf-generator")
18917 (version "0.8.0")
18918 (source
18919 (origin
18920 (method url-fetch)
18921 (uri (crate-uri "phf_generator" version))
18922 (file-name
18923 (string-append name "-" version ".tar.gz"))
18924 (sha256
18925 (base32
18926 "09i5338d1kixq6a60fcayz6awgxjlxcfw9ic5f02abbgr067ydhp"))))
18927 (build-system cargo-build-system)
18928 (arguments
18929 `(#:skip-build? #t
18930 #:cargo-inputs
18931 (("rust-criterion" ,rust-criterion-0.3)
18932 ("rust-rand" ,rust-rand-0.7)
18933 ("rust-phf-shared" ,rust-phf-shared-0.8))))
18934 (home-page "https://github.com/sfackler/rust-phf")
18935 (synopsis "PHF generation logic")
18936 (description "PHF generation logic.")
18937 (license license:expat)))
18938
18939 (define-public rust-phf-generator-0.7
18940 (package
18941 (name "rust-phf-generator")
18942 (version "0.7.24")
18943 (source
18944 (origin
18945 (method url-fetch)
18946 (uri (crate-uri "phf_generator" version))
18947 (file-name
18948 (string-append name "-" version ".tar.gz"))
18949 (sha256
18950 (base32
18951 "0qi62gxk3x3whrmw5c4i71406icqk11qmpgln438p6qm7k4lqdh9"))))
18952 (build-system cargo-build-system)
18953 (arguments
18954 `(#:cargo-inputs
18955 (("rust-phf-shared" ,rust-phf-shared-0.7)
18956 ("rust-rand" ,rust-rand-0.6))))
18957 (home-page "https://github.com/sfackler/rust-phf")
18958 (synopsis "PHF generation logic")
18959 (description "PHF generation logic")
18960 (license license:expat)))
18961
18962 (define-public rust-phf-macros-0.8
18963 (package
18964 (name "rust-phf-macros")
18965 (version "0.8.0")
18966 (source
18967 (origin
18968 (method url-fetch)
18969 (uri (crate-uri "phf_macros" version))
18970 (file-name
18971 (string-append name "-" version ".tar.gz"))
18972 (sha256
18973 (base32
18974 "170qm6yqn6b9mjlwb2xmm3iad9d5nzwgfawfwy7zr7s2zwcdwvvz"))))
18975 (build-system cargo-build-system)
18976 (arguments
18977 `(#:skip-build? #t
18978 #:cargo-inputs
18979 (("rust-proc-macro-hack" ,rust-proc-macro-hack-0.5)
18980 ("rust-phf-generator" ,rust-phf-generator-0.8)
18981 ("rust-phf-shared" ,rust-phf-shared-0.8)
18982 ("rust-proc-macro2" ,rust-proc-macro2-1)
18983 ("rust-syn" ,rust-syn-1)
18984 ("rust-quote" ,rust-quote-1))))
18985 (home-page "https://github.com/sfackler/rust-phf")
18986 (synopsis "Macros to generate types in the phf crate")
18987 (description
18988 "This package contains macros to generate types in the phf crate.")
18989 (license license:expat)))
18990
18991 (define-public rust-phf-macros-0.7
18992 (package
18993 (name "rust-phf-macros")
18994 (version "0.7.24")
18995 (source
18996 (origin
18997 (method url-fetch)
18998 (uri (crate-uri "phf_macros" version))
18999 (file-name
19000 (string-append name "-" version ".tar.gz"))
19001 (sha256
19002 (base32
19003 "0dzylcy14ksy60h265l433j9ra8xhg8xlq3pd5qk658m6f1mxd5x"))))
19004 (build-system cargo-build-system)
19005 (arguments
19006 `(#:tests? #f ; Depends on features not in Rust's stable release channel.
19007 #:cargo-inputs
19008 (("rust-phf-generator" ,rust-phf-generator-0.7)
19009 ("rust-phf-shared" ,rust-phf-shared-0.7)
19010 ("rust-proc-macro2" ,rust-proc-macro2-0.4)
19011 ("rust-quote" ,rust-quote-0.6)
19012 ("rust-syn" ,rust-syn-0.15))
19013 #:cargo-development-inputs
19014 (("rust-compiletest-rs" ,rust-compiletest-rs-0.3))))
19015 (home-page
19016 "https://github.com/sfackler/rust-phf")
19017 (synopsis
19018 "Macros to generate types in the phf crate")
19019 (description
19020 "Macros to generate types in the phf crate.")
19021 (license license:expat)))
19022
19023 (define-public rust-phf-shared-0.8
19024 (package
19025 (name "rust-phf-shared")
19026 (version "0.8.0")
19027 (source
19028 (origin
19029 (method url-fetch)
19030 (uri (crate-uri "phf_shared" version))
19031 (file-name
19032 (string-append name "-" version ".tar.gz"))
19033 (sha256
19034 (base32
19035 "1xssnqrrcn0nr9ayqrnm8xm37ac4xvwcx8pax7jxss7yxawzh360"))))
19036 (build-system cargo-build-system)
19037 (arguments
19038 `(#:skip-build? #t
19039 #:cargo-inputs
19040 (("rust-siphasher" ,rust-siphasher-0.3)
19041 ("rust-unicase" ,rust-unicase-2))))
19042 (home-page "https://github.com/sfackler/rust-phf")
19043 (synopsis "Support code shared by PHF libraries")
19044 (description
19045 "This package provides support code shared by PHF libraries.")
19046 (license license:expat)))
19047
19048 (define-public rust-phf-shared-0.7
19049 (package
19050 (name "rust-phf-shared")
19051 (version "0.7.24")
19052 (source
19053 (origin
19054 (method url-fetch)
19055 (uri (crate-uri "phf-shared" version))
19056 (file-name
19057 (string-append name "-" version ".tar.gz"))
19058 (sha256
19059 (base32
19060 "18371fla0vsj7d6d5rlfb747xbr2in11ar9vgv5qna72bnhp2kr3"))))
19061 (build-system cargo-build-system)
19062 (arguments
19063 `(#:cargo-inputs
19064 (("rust-siphasher" ,rust-siphasher-0.2)
19065 ("rust-unicase" ,rust-unicase-1))))
19066 (home-page "https://github.com/sfackler/rust-phf")
19067 (synopsis "Support code shared by PHF libraries")
19068 (description
19069 "Support code shared by PHF libraries.")
19070 (license license:expat)))
19071
19072 (define-public rust-pico-sys-0.0
19073 (package
19074 (name "rust-pico-sys")
19075 (version "0.0.1")
19076 (source
19077 (origin
19078 (method url-fetch)
19079 (uri (crate-uri "pico-sys" version))
19080 (file-name (string-append name "-" version ".crate"))
19081 (sha256
19082 (base32
19083 "1q5pg0ms6szz6b5h26h4k40zb76zbwwjgyigac4wly9qngdj4yl5"))))
19084 (build-system cargo-build-system)
19085 (arguments
19086 `(#:cargo-inputs
19087 (("rust-libc" ,rust-libc-0.2)
19088 ("rust-gcc" ,rust-gcc-0.3))))
19089 (home-page "https://github.com/reem/rust-pico-sys")
19090 (synopsis "Bindings to the PicoHTTPParser")
19091 (description
19092 "This package provides bindings to the PicoHTTPParser.")
19093 (license license:expat)))
19094
19095 (define-public rust-pin-utils-0.1
19096 (package
19097 (name "rust-pin-utils")
19098 (version "0.1.0-alpha.4")
19099 (source
19100 (origin
19101 (method url-fetch)
19102 (uri (crate-uri "pin-utils" version))
19103 (file-name (string-append name "-" version ".crate"))
19104 (sha256
19105 (base32
19106 "11xmyx00n4m37d546by2rxb8ryxs12v55cc172i3yak1rqccd52q"))))
19107 (build-system cargo-build-system)
19108 (home-page "https://github.com/rust-lang-nursery/pin-utils")
19109 (synopsis "Utilities for pinning")
19110 (description "This crate provides utilities for pinning values on the stack.")
19111 (license (list license:asl2.0
19112 license:expat))))
19113
19114 (define-public rust-pin-project-0.4
19115 (package
19116 (name "rust-pin-project")
19117 (version "0.4.22")
19118 (source
19119 (origin
19120 (method url-fetch)
19121 (uri (crate-uri "pin-project" version))
19122 (file-name (string-append name "-" version ".tar.gz"))
19123 (sha256
19124 (base32 "05wwxy46j9z27ibbiisjqk0rivf0z00h4al1f92mwjp9pz6sdqqj"))))
19125 (build-system cargo-build-system)
19126 (arguments
19127 `(#:tests? #f ; XXX: Fix-me.
19128 #:cargo-inputs
19129 (("rust-pin-project-internal" ,rust-pin-project-internal-0.4))))
19130 (home-page "https://crates.io/crates/pin-project")
19131 (synopsis "A crate for safe and ergonomic pin-projection")
19132 (description "A crate for safe and ergonomic pin-projection.")
19133 (license (list license:asl2.0 license:expat))))
19134
19135 (define-public rust-pin-project-internal-0.4
19136 (package
19137 (name "rust-pin-project-internal")
19138 (version "0.4.22")
19139 (source
19140 (origin
19141 (method url-fetch)
19142 (uri (crate-uri "pin-project-internal" version))
19143 (file-name (string-append name "-" version ".tar.gz"))
19144 (sha256
19145 (base32 "1xxac6f3ip45zqbfcmmk748ywjw9sbavz1fcswvqgn3rrx2zs3va"))))
19146 (build-system cargo-build-system)
19147 (arguments
19148 `(#:tests? #f ; XXX: Fix-me.
19149 #:cargo-inputs
19150 (("rust-proc-macro2" ,rust-proc-macro2-1)
19151 ("rust-quote" ,rust-quote-1)
19152 ("rust-syn" ,rust-syn-1))))
19153 (home-page "https://crates.io/crates/pin-project-internal")
19154 (synopsis "An internal crate to support pin_project")
19155 (description "An internal crate to support pin_project")
19156 (license (list license:asl2.0 license:expat))))
19157
19158 (define-public rust-pin-project-lite-0.1
19159 (package
19160 (name "rust-pin-project-lite")
19161 (version "0.1.4")
19162 (source
19163 (origin
19164 (method url-fetch)
19165 (uri (crate-uri "pin-project-lite" version))
19166 (file-name (string-append name "-" version ".tar.gz"))
19167 (sha256
19168 (base32 "1bljczwz9yyb6jskjhbkilcbdg7v1mhfwzp2mxknzf7v1isl8y13"))))
19169 (build-system cargo-build-system)
19170 (arguments
19171 `(#:cargo-development-inputs
19172 (("rust-rustversion" ,rust-rustversion-1)
19173 ("rust-trybuild" ,rust-trybuild-1))))
19174 (home-page "https://github.com/taiki-e/pin-project-lite")
19175 (synopsis "Lightweight version of pin-project written with declarative
19176 macros")
19177 (description "This package provides a lightweight version of pin-project
19178 written with declarative macros.")
19179 (license (list license:asl2.0 license:expat))))
19180
19181 (define-public rust-pkg-config-0.3
19182 (package
19183 (name "rust-pkg-config")
19184 (version "0.3.17")
19185 (source
19186 (origin
19187 (method url-fetch)
19188 (uri (crate-uri "pkg-config" version))
19189 (file-name (string-append name "-" version ".crate"))
19190 (sha256
19191 (base32
19192 "0xynnaxdv0gzadlw4h79j855k0q7rj4zb9xb1vk00nc6ss559nh5"))))
19193 (build-system cargo-build-system)
19194 (arguments
19195 `(#:cargo-development-inputs
19196 (("rust-lazy-static" ,rust-lazy-static-1))))
19197 (native-inputs
19198 `(("pkg-config" ,pkg-config)))
19199 (home-page "https://github.com/rust-lang/pkg-config-rs")
19200 (synopsis "Library to run the pkg-config system tool")
19201 (description
19202 "A library to run the pkg-config system tool at build time in order to be
19203 used in Cargo build scripts.")
19204 (license (list license:asl2.0
19205 license:expat))))
19206
19207 (define-public rust-plain-0.2
19208 (package
19209 (name "rust-plain")
19210 (version "0.2.3")
19211 (source
19212 (origin
19213 (method url-fetch)
19214 (uri (crate-uri "plain" version))
19215 (file-name (string-append name "-" version ".crate"))
19216 (sha256
19217 (base32
19218 "19n1xbxb4wa7w891268bzf6cbwq4qvdb86bik1z129qb0xnnnndl"))))
19219 (build-system cargo-build-system)
19220 (home-page "https://github.com/randomites/plain")
19221 (synopsis "Rust library that allows reinterpreting data safely")
19222 (description "This package provides a small Rust library that allows users
19223 to reinterpret data of certain types safely.")
19224 (license (list license:asl2.0
19225 license:expat))))
19226
19227 (define-public rust-plist-0.4
19228 (package
19229 (name "rust-plist")
19230 (version "0.4.2")
19231 (source
19232 (origin
19233 (method url-fetch)
19234 (uri (crate-uri "plist" version))
19235 (file-name
19236 (string-append name "-" version ".tar.gz"))
19237 (sha256
19238 (base32
19239 "0zqnxc5i4y6mj119vr0lzpb5j67vffpx2phhgh711533bw3ryajz"))))
19240 (build-system cargo-build-system)
19241 (arguments
19242 `(#:skip-build? #t
19243 #:cargo-inputs
19244 (("rust-line-wrap" ,rust-line-wrap-0.1)
19245 ("rust-base64" ,rust-base64-0.10)
19246 ("rust-xml-rs" ,rust-xml-rs-0.8)
19247 ("rust-serde" ,rust-serde-1)
19248 ("rust-humantime" ,rust-humantime-1)
19249 ("rust-byteorder" ,rust-byteorder-1))))
19250 (home-page "https://github.com/ebarnard/rust-plist/")
19251 (synopsis "Rusty plist parser")
19252 (description
19253 "This package provides a rusty plist parser. Supports Serde serialization.")
19254 (license license:expat)))
19255
19256 (define-public rust-plotters-0.2
19257 (package
19258 (name "rust-plotters")
19259 (version "0.2.12")
19260 (source
19261 (origin
19262 (method url-fetch)
19263 (uri (crate-uri "plotters" version))
19264 (file-name
19265 (string-append name "-" version ".tar.gz"))
19266 (sha256
19267 (base32
19268 "1ssycy9an23vs9hq098c7kl1dvp5ych20d994lhsw9vx4kdbhfsf"))))
19269 (build-system cargo-build-system)
19270 (arguments
19271 `(#:skip-build? #t
19272 #:cargo-inputs
19273 (("rust-gif" ,rust-gif-0.10)
19274 ("rust-piston-window" ,rust-piston-window-0.105)
19275 ("rust-num-traits" ,rust-num-traits-0.2)
19276 ("rust-wasm-bindgen" ,rust-wasm-bindgen-0.2)
19277 ("rust-image" ,rust-image-0.22)
19278 ("rust-js-sys" ,rust-js-sys-0.3)
19279 ("rust-web-sys" ,rust-web-sys-0.3)
19280 ("rust-font-kit" ,rust-font-kit-0.4)
19281 ("rust-chrono" ,rust-chrono-0.4)
19282 ("rust-palette" ,rust-palette-0.5)
19283 ("rust-cairo-rs" ,rust-cairo-rs-0.7)
19284 ("rust-rusttype" ,rust-rusttype-0.8)
19285 ("rust-lazy-static" ,rust-lazy-static-1))))
19286 (home-page "https://github.com/38/plotters")
19287 (synopsis "Rust drawing library focus on data plotting")
19288 (description
19289 "This package provides a Rust drawing library focus on data plotting for
19290 both WASM and native applications")
19291 (license license:expat)))
19292
19293 (define-public rust-plugin-0.2
19294 (package
19295 (name "rust-plugin")
19296 (version "0.2.6")
19297 (source
19298 (origin
19299 (method url-fetch)
19300 (uri (crate-uri "plugin" version))
19301 (file-name (string-append name "-" version ".crate"))
19302 (sha256
19303 (base32
19304 "1q7nghkpvxxr168y2jnzh3w7qc9vfrby9n7ygy3xpj0bj71hsshs"))))
19305 (build-system cargo-build-system)
19306 (arguments
19307 `(#:cargo-inputs
19308 (("rust-typemap" ,rust-typemap-0.3))
19309 #:cargo-development-inputs
19310 (("rust-void" ,rust-void-1))))
19311 (home-page "https://github.com/reem/rust-plugin")
19312 (synopsis "Lazily evaluated, order-independent plugins for extensible types")
19313 (description
19314 "Lazily evaluated, order-independent plugins for extensible types.")
19315 (license license:expat)))
19316
19317 (define-public rust-pmutil-0.5
19318 (package
19319 (name "rust-pmutil")
19320 (version "0.5.3")
19321 (source
19322 (origin
19323 (method url-fetch)
19324 (uri (crate-uri "pmutil" version))
19325 (file-name (string-append name "-" version ".tar.gz"))
19326 (sha256
19327 (base32
19328 "0170zgziivri4qsch682pga3qq3z4wpr4wngzr5f9jyc97ayb51q"))))
19329 (build-system cargo-build-system)
19330 (arguments
19331 `(#:cargo-inputs
19332 (("rust-proc-macro2" ,rust-proc-macro2-1)
19333 ("rust-quote" ,rust-quote-1)
19334 ("rust-syn" ,rust-syn-1))))
19335 (home-page "https://github.com/kdy1/rust-pmutil")
19336 (synopsis "Utils for proc-macro")
19337 (description "This package provides utils for proc-macro.")
19338 (license (list license:asl2.0 license:expat))))
19339
19340 (define-public rust-pnacl-build-helper-1.4
19341 (package
19342 (name "rust-pnacl-build-helper")
19343 (version "1.4.11")
19344 (source
19345 (origin
19346 (method url-fetch)
19347 (uri (crate-uri "pnacl-build-helper" version))
19348 (file-name
19349 (string-append name "-" version ".tar.gz"))
19350 (sha256
19351 (base32
19352 "145hxz3m3sg8mm9sfqqqaarnna43v65l6whwswrvcvy0fzp17gnz"))))
19353 (build-system cargo-build-system)
19354 (arguments
19355 `(#:cargo-inputs
19356 (("rust-tempdir" ,rust-tempdir-0.3)
19357 ("rust-walkdir" ,rust-walkdir-1))))
19358 (home-page "https://github.com/DiamondLovesYou/cargo-pnacl-helper")
19359 (synopsis
19360 "Build script helper for building PNaCl/NaCl C/CXX libraries from source")
19361 (description
19362 "Build script helper for building PNaCl/NaCl C/CXX libraries from source")
19363 (license license:mpl2.0)))
19364
19365 (define-public rust-pocket-resources-0.3
19366 (package
19367 (name "rust-pocket-resources")
19368 (version "0.3.2")
19369 (source
19370 (origin
19371 (method url-fetch)
19372 (uri (crate-uri "pocket-resources" version))
19373 (file-name (string-append name "-" version ".crate"))
19374 (sha256
19375 (base32
19376 "1n2i5vmi8fdbw89wm5nz1ws1z9f1qax911p6ksg4scmdg23z6df1"))))
19377 (build-system cargo-build-system)
19378 (home-page "https://github.com/tomaka/pocket-resources")
19379 (synopsis "Include resources in your applications")
19380 (description "This crate allows you to include resources in your
19381 applications.")
19382 (license license:expat)))
19383
19384 (define-public rust-podio-0.1
19385 (package
19386 (name "rust-podio")
19387 (version "0.1.7")
19388 (source
19389 (origin
19390 (method url-fetch)
19391 (uri (crate-uri "podio" version))
19392 (file-name
19393 (string-append name "-" version ".tar.gz"))
19394 (sha256
19395 (base32
19396 "06bzjxrl0h8rp5860n51dlr1g143grg2jmx4g6y1mdn2ignyz2xi"))))
19397 (build-system cargo-build-system)
19398 (home-page "https://github.com/mvdnes/podio.git")
19399 (synopsis "Additional trait to read and write Plain Old Data")
19400 (description
19401 "Additional trait for Read and Write to read and write Plain Old Data.")
19402 (license (list license:expat license:asl2.0))))
19403
19404 (define-public rust-polyval-0.4
19405 (package
19406 (name "rust-polyval")
19407 (version "0.4.0")
19408 (source
19409 (origin
19410 (method url-fetch)
19411 (uri (crate-uri "polyval" version))
19412 (file-name (string-append name "-" version ".tar.gz"))
19413 (sha256
19414 (base32
19415 "1p0765j30qxr50zh74aflafx540xkxqb7pv8kw7fvcssnm1039fr"))))
19416 (build-system cargo-build-system)
19417 (arguments
19418 `(#:cargo-inputs
19419 (("rust-cfg-if" ,rust-cfg-if-0.1)
19420 ("rust-universal-hash" ,rust-universal-hash-0.4)
19421 ("rust-zeroize" ,rust-zeroize-1))
19422 #:cargo-development-inputs
19423 (("rust-criterion" ,rust-criterion-0.3)
19424 ("rust-criterion-cycles-per-byte"
19425 ,rust-criterion-cycles-per-byte-0.1)
19426 ("rust-hex-literal" ,rust-hex-literal-0.1))))
19427 (home-page "https://github.com/RustCrypto/universal-hashes")
19428 (synopsis "GHASH-like universal hash")
19429 (description "POLYVAL is a GHASH-like universal hash over GF(2^128) useful
19430 for constructing a Message Authentication Code (MAC).")
19431 (license (list license:asl2.0 license:expat))))
19432
19433 (define-public rust-pom-3
19434 (package
19435 (name "rust-pom")
19436 (version "3.2.0")
19437 (source
19438 (origin
19439 (method url-fetch)
19440 (uri (crate-uri "pom" version))
19441 (file-name
19442 (string-append name "-" version ".tar.gz"))
19443 (sha256
19444 (base32
19445 "1v14c2p1irblagnljkw4n0f1w5r8mbybzycz0j1f5y79h0kikqh7"))))
19446 (build-system cargo-build-system)
19447 (home-page "https://github.com/J-F-Liu/pom")
19448 (synopsis "PEG parser combinators using operator overloading without macros")
19449 (description "This package provides a PEG parser combinators using operator
19450 overloading without macros in Rust.")
19451 (license license:expat)))
19452
19453 (define-public rust-ppv-lite86-0.2
19454 (package
19455 (name "rust-ppv-lite86")
19456 (version "0.2.8")
19457 (source
19458 (origin
19459 (method url-fetch)
19460 (uri (crate-uri "ppv-lite86" version))
19461 (file-name (string-append name "-" version ".crate"))
19462 (sha256
19463 (base32
19464 "1shj4q7jwj0azssr8cg51dk3kh7d4lg9rmbbz1kbqk971vc5wyi3"))))
19465 (build-system cargo-build-system)
19466 (home-page "https://github.com/cryptocorrosion/cryptocorrosion")
19467 (synopsis "Implementation of the crypto-simd API for x86")
19468 (description "This crate provides an implementation of the crypto-simd API
19469 for x86.")
19470 (license (list license:asl2.0
19471 license:expat))))
19472
19473 (define-public rust-pq-sys-0.4
19474 (package
19475 (name "rust-pq-sys")
19476 (version "0.4.6")
19477 (source
19478 (origin
19479 (method url-fetch)
19480 (uri (crate-uri "pq-sys" version))
19481 (file-name (string-append name "-" version ".tar.gz"))
19482 (sha256
19483 (base32
19484 "1npz9756283pjq3lcpwss8xh1rw4sx8f6dz8cxdg90h5bbp5xhka"))))
19485 (build-system cargo-build-system)
19486 (arguments
19487 `(#:cargo-inputs
19488 (("rust-pkg-config" ,rust-pkg-config-0.3)
19489 ("rust-vcpkg" ,rust-vcpkg-0.2))))
19490 (native-inputs
19491 `(("postgresql" ,postgresql)))
19492 (home-page "https://crates.io/crates/pq-sys")
19493 (synopsis "Auto-generated rust bindings for libpq")
19494 (description "This package provides auto-generated rust bindings for
19495 libpq.")
19496 (license (list license:expat license:asl2.0))))
19497
19498 (define-public rust-precomputed-hash-0.1
19499 (package
19500 (name "rust-precomputed-hash")
19501 (version "0.1.1")
19502 (source
19503 (origin
19504 (method url-fetch)
19505 (uri (crate-uri "precomputed-hash" version))
19506 (file-name
19507 (string-append name "-" version ".tar.gz"))
19508 (sha256
19509 (base32
19510 "075k9bfy39jhs53cb2fpb9klfakx2glxnf28zdw08ws6lgpq6lwj"))))
19511 (build-system cargo-build-system)
19512 (arguments `(#:skip-build? #t))
19513 (home-page
19514 "https://github.com/emilio/precomputed-hash")
19515 (synopsis
19516 "Base dependency to expose a precomputed hash")
19517 (description
19518 "This package provides a library intending to be a base
19519 dependency to expose a precomputed hash.")
19520 (license license:expat)))
19521
19522 (define-public rust-predicates-1
19523 (package
19524 (name "rust-predicates")
19525 (version "1.0.4")
19526 (source
19527 (origin
19528 (method url-fetch)
19529 (uri (crate-uri "predicates" version))
19530 (file-name
19531 (string-append name "-" version ".tar.gz"))
19532 (sha256
19533 (base32
19534 "0c0hafd7z7v97218na8nampmy64f7fw61yvjk2y3dri11dpinyil"))))
19535 (build-system cargo-build-system)
19536 (arguments
19537 `(#:cargo-inputs
19538 (("rust-difference" ,rust-difference-2)
19539 ("rust-float-cmp" ,rust-float-cmp-0.6)
19540 ("rust-normalize-line-endings" ,rust-normalize-line-endings-0.3)
19541 ("rust-predicates-core" ,rust-predicates-core-1)
19542 ("rust-regex" ,rust-regex-1))
19543 #:cargo-development-inputs
19544 (("rust-predicates-tree" ,rust-predicates-tree-1))))
19545 (home-page "https://github.com/assert-rs/predicates-rs")
19546 (synopsis
19547 "Implementation of boolean-valued predicate functions")
19548 (description
19549 "An implementation of boolean-valued predicate functions.")
19550 (license (list license:expat license:asl2.0))))
19551
19552 (define-public rust-predicates-core-1
19553 (package
19554 (name "rust-predicates-core")
19555 (version "1.0.0")
19556 (source
19557 (origin
19558 (method url-fetch)
19559 (uri (crate-uri "predicates-core" version))
19560 (file-name
19561 (string-append name "-" version ".tar.gz"))
19562 (sha256
19563 (base32
19564 "0y3ingf2i4xx7r61f1a8wizs57j8hh32hylyjbw9ymcj7qx5q1q6"))))
19565 (build-system cargo-build-system)
19566 (home-page
19567 "https://github.com/assert-rs/predicates-rs/tree/master/predicates-core")
19568 (synopsis "API for boolean-valued predicate functions")
19569 (description
19570 "An API for boolean-valued predicate functions.")
19571 (license (list license:expat license:asl2.0))))
19572
19573 (define-public rust-predicates-tree-1
19574 (package
19575 (name "rust-predicates-tree")
19576 (version "1.0.0")
19577 (source
19578 (origin
19579 (method url-fetch)
19580 (uri (crate-uri "predicates-tree" version))
19581 (file-name
19582 (string-append name "-" version ".tar.gz"))
19583 (sha256
19584 (base32
19585 "090148qjilm2c722l873z7g31fhzj5j4qhd2xiv8mcqkj22w8qwf"))))
19586 (build-system cargo-build-system)
19587 (arguments
19588 `(#:cargo-inputs
19589 (("rust-predicates-core" ,rust-predicates-core-1)
19590 ("rust-treeline" ,rust-treeline-0.1))))
19591 (home-page
19592 "https://github.com/assert-rs/predicates-rs/tree/master/predicates-tree")
19593 (synopsis
19594 "Render boolean-valued predicate functions results as a tree")
19595 (description
19596 "Render boolean-valued predicate functions results as a tree.")
19597 (license (list license:expat license:asl2.0))))
19598
19599 (define-public rust-pretty-assertions-0.6
19600 (package
19601 (name "rust-pretty-assertions")
19602 (version "0.6.1")
19603 (source
19604 (origin
19605 (method url-fetch)
19606 (uri (crate-uri "pretty_assertions" version))
19607 (file-name
19608 (string-append name "-" version ".tar.gz"))
19609 (sha256
19610 (base32
19611 "09yl14gnmpygiqrdlsa64lcl4w6ydjl9m8jri6kgam0v9rjf309z"))))
19612 (build-system cargo-build-system)
19613 (arguments
19614 `(#:skip-build? #t
19615 #:cargo-inputs
19616 (("rust-ctor" ,rust-ctor-0.1)
19617 ("rust-output-vt100" ,rust-output-vt100-0.1)
19618 ("rust-ansi-term" ,rust-ansi-term-0.11)
19619 ("rust-difference" ,rust-difference-2))))
19620 (home-page "https://github.com/colin-kiegel/rust-pretty-assertions")
19621 (synopsis "Drop-in replacements for assert_eq! and assert_ne!")
19622 (description
19623 "Overwrite @code{assert_eq!} and @code{assert_ne!} with drop-in
19624 replacements, adding colorful diffs.")
19625 (license (list license:expat license:asl2.0))))
19626
19627 (define-public rust-pretty-assertions-0.4
19628 (package
19629 (inherit rust-pretty-assertions-0.6)
19630 (name "rust-pretty-assertions")
19631 (version "0.4.1")
19632 (source
19633 (origin
19634 (method url-fetch)
19635 (uri (crate-uri "pretty_assertions" version))
19636 (file-name
19637 (string-append name "-" version ".tar.gz"))
19638 (sha256
19639 (base32
19640 "1llxlnhh4qz9kda27v6nllgzvgi1fv08i3djfk4zn6zlw8c53si8"))))
19641 (build-system cargo-build-system)
19642 (arguments
19643 `(#:tests? #f
19644 #:cargo-inputs
19645 (("rust-ansi-term" ,rust-ansi-term-0.9)
19646 ("rust-difference" ,rust-difference-1))))))
19647
19648 (define-public rust-pretty-assertions-0.2
19649 (package
19650 (name "rust-pretty-assertions")
19651 (version "0.2.1")
19652 (source
19653 (origin
19654 (method url-fetch)
19655 (uri (crate-uri "pretty-assertions" version))
19656 (file-name (string-append name "-" version ".tar.gz"))
19657 (sha256
19658 (base32 "1b3nv70i16737w3qkk1q5vqswwnb19znz8r9v2kcg1qyhh3h0l8x"))))
19659 (build-system cargo-build-system)
19660 (arguments
19661 `(#:cargo-inputs
19662 (("rust-difference" ,rust-difference-1))))
19663 (home-page "https://github.com/colin-kiegel/rust-pretty-assertions")
19664 (synopsis "Colorful diffs for `assert_eq!` and `assert_ne!`")
19665 (description "Overwrite `assert_eq!` and `assert_ne!` with drop-in
19666 replacements, adding colorful diffs.")
19667 (license (list license:expat license:asl2.0))))
19668
19669 (define-public rust-pretty-env-logger-0.4
19670 (package
19671 (name "rust-pretty-env-logger")
19672 (version "0.4.0")
19673 (source
19674 (origin
19675 (method url-fetch)
19676 (uri (crate-uri "pretty-env-logger" version))
19677 (file-name
19678 (string-append name "-" version ".tar.gz"))
19679 (sha256
19680 (base32
19681 "17gva1rlf9fhgr0jr19kv39f8bir3f4pa4jz02qbhl9qanwkcvcj"))))
19682 (build-system cargo-build-system)
19683 (arguments
19684 `(#:cargo-inputs
19685 (("rust-env-logger" ,rust-env-logger-0.7)
19686 ("rust-log" ,rust-log-0.4))))
19687 (home-page "https://github.com/seanmonstar/pretty-env-logger")
19688 (synopsis "Visually pretty env_logger")
19689 (description "This package provides a visually pretty env_logger.")
19690 (license (list license:expat license:asl2.0))))
19691
19692 (define-public rust-pretty-env-logger-0.3
19693 (package
19694 (inherit rust-pretty-env-logger-0.4)
19695 (name "rust-pretty-env-logger")
19696 (version "0.3.1")
19697 (source
19698 (origin
19699 (method url-fetch)
19700 (uri (crate-uri "pretty_env_logger" version))
19701 (file-name
19702 (string-append name "-" version ".tar.gz"))
19703 (sha256
19704 (base32
19705 "0x4hyjlnvvhyk9m74iypzybm22w3dl2k8img4b956239n5vf8zki"))))
19706 (arguments
19707 `(#:skip-build? #t
19708 #:cargo-inputs
19709 (("rust-log" ,rust-log-0.4)
19710 ("rust-chrono" ,rust-chrono-0.4)
19711 ("rust-env-logger" ,rust-env-logger-0.6))))))
19712
19713 (define-public rust-prettytable-rs-0.8
19714 (package
19715 (name "rust-prettytable-rs")
19716 (version "0.8.0")
19717 (source
19718 (origin
19719 (method url-fetch)
19720 (uri (crate-uri "prettytable-rs" version))
19721 (file-name (string-append name "-" version ".tar.gz"))
19722 (sha256
19723 (base32 "0bmcsxkcy94hi0jz5db0fz137w5aaf17z2j1ryn2vyh400blpl0g"))))
19724 (build-system cargo-build-system)
19725 (arguments
19726 `(#:cargo-inputs
19727 (("rust-atty" ,rust-atty-0.2)
19728 ("rust-csv" ,rust-csv-1.1)
19729 ("rust-encode-unicode" ,rust-encode-unicode-0.3)
19730 ("rust-lazy-static" ,rust-lazy-static-1)
19731 ("rust-term" ,rust-term-0.5)
19732 ("rust-unicode-width" ,rust-unicode-width-0.1))))
19733 (home-page "https://github.com/phsym/prettytable-rs")
19734 (synopsis "Library for printing pretty formatted tables in terminal")
19735 (description "This package provides a library for printing pretty
19736 formatted tables in terminal.")
19737 (license license:bsd-3)))
19738
19739 (define-public rust-proc-macro-error-0.4
19740 (package
19741 (name "rust-proc-macro-error")
19742 (version "0.4.12")
19743 (source
19744 (origin
19745 (method url-fetch)
19746 (uri (crate-uri "proc-macro-error" version))
19747 (file-name
19748 (string-append name "-" version ".tar.gz"))
19749 (sha256
19750 (base32
19751 "1rvpaadwv7vmsp142qqh2axqrr9v78f1nvdsi9nhmfhy10kk1wqq"))))
19752 (build-system cargo-build-system)
19753 (arguments
19754 `(#:skip-build? #t
19755 #:cargo-inputs
19756 (("rust-proc-macro-error-attr" ,rust-proc-macro-error-attr-0.4)
19757 ("rust-version-check" ,rust-version-check-0.9)
19758 ("rust-proc-macro2" ,rust-proc-macro2-1)
19759 ("rust-syn" ,rust-syn-1)
19760 ("rust-quote" ,rust-quote-1))))
19761 (home-page "https://gitlab.com/CreepySkeleton/proc-macro-error")
19762 (synopsis "Almost drop-in replacement to panics in proc-macros")
19763 (description
19764 "Almost drop-in replacement to panics in proc-macros.")
19765 (license (list license:expat license:asl2.0))))
19766
19767 (define-public rust-proc-macro-error-attr-0.4
19768 (package
19769 (name "rust-proc-macro-error-attr")
19770 (version "0.4.12")
19771 (source
19772 (origin
19773 (method url-fetch)
19774 (uri (crate-uri "proc-macro-error-attr" version))
19775 (file-name
19776 (string-append name "-" version ".tar.gz"))
19777 (sha256
19778 (base32
19779 "1pk9mwcfnpf8favgc2cl4sqlmi818p96hg8pfb51wg5nzmvlnnwa"))))
19780 (build-system cargo-build-system)
19781 (arguments
19782 `(#:skip-build? #t
19783 #:cargo-inputs
19784 (("rust-syn-mid" ,rust-syn-mid-0.5)
19785 ("rust-version-check" ,rust-version-check-0.9)
19786 ("rust-proc-macro2" ,rust-proc-macro2-1)
19787 ("rust-syn" ,rust-syn-1)
19788 ("rust-quote" ,rust-quote-1))))
19789 (home-page "https://gitlab.com/CreepySkeleton/proc-macro-error")
19790 (synopsis "Attribute macro for proc-macro-error crate")
19791 (description
19792 "Attribute macro for proc-macro-error crate.")
19793 (license (list license:expat license:asl2.0))))
19794
19795 (define-public rust-proc-macro-hack-0.5
19796 (package
19797 (name "rust-proc-macro-hack")
19798 (version "0.5.16")
19799 (source
19800 (origin
19801 (method url-fetch)
19802 (uri (crate-uri "proc-macro-hack" version))
19803 (file-name
19804 (string-append name "-" version ".tar.gz"))
19805 (sha256
19806 (base32
19807 "1r657v7d9vh1ivrvq65rvg9gjb29dpa0l3zg2fgrn5j8znz5c13y"))))
19808 (build-system cargo-build-system)
19809 (arguments
19810 `(#:cargo-development-inputs
19811 (("rust-quote" ,rust-quote-1)
19812 ("rust-rustversion" ,rust-rustversion-1)
19813 ("rust-syn" ,rust-syn-1)
19814 ("rust-trybuild" ,rust-trybuild-1)
19815 ("rust-demo-hack" ,rust-demo-hack-0.0)
19816 ("rust-demo-hack-impl" ,rust-demo-hack-impl-0.0))))
19817 (home-page "https://github.com/dtolnay/proc-macro-hack")
19818 (synopsis
19819 "Procedural macros in expression position")
19820 (description
19821 "Procedural macros in expression position.")
19822 (license (list license:expat license:asl2.0))))
19823
19824 (define-public rust-proc-macro-hack-0.4
19825 (package
19826 (inherit rust-proc-macro-hack-0.5)
19827 (name "rust-proc-macro-hack")
19828 (version "0.4.2")
19829 (source
19830 (origin
19831 (method url-fetch)
19832 (uri (crate-uri "proc-macro-hack" version))
19833 (file-name
19834 (string-append name "-" version ".tar.gz"))
19835 (sha256
19836 (base32
19837 "0fxn3qfhw76c518dfal2qqjwj5dbf0a1f7z0r5c4wd0igygg4fs6"))))
19838 (arguments
19839 `(#:skip-build? #t
19840 #:cargo-inputs
19841 (("rust-proc-macro-hack-impl" ,rust-proc-macro-hack-impl-0.4))
19842 #:cargo-development-inputs
19843 (("rust-demo-hack" ,rust-demo-hack-0.0)
19844 ("rust-demo-hack-impl" ,rust-demo-hack-impl-0.0))))))
19845
19846 (define-public rust-proc-macro-hack-impl-0.4
19847 (package
19848 (name "rust-proc-macro-hack-impl")
19849 (version "0.4.2")
19850 (source
19851 (origin
19852 (method url-fetch)
19853 (uri (crate-uri "proc-macro-hack-impl" version))
19854 (file-name
19855 (string-append name "-" version ".tar.gz"))
19856 (sha256
19857 (base32
19858 "0hk8g6s0zsi1ps0w48la2s8q5iqq42g8jfrgq3l2v04l2p5pvi1q"))))
19859 (build-system cargo-build-system)
19860 (home-page "https://github.com/dtolnay/proc-macro-hack")
19861 (synopsis "Procedural functionlike!() macros using only Macros 1.1")
19862 (description
19863 "Procedural functionlike!() macros using only Macros 1.1.")
19864 (license (list license:expat license:asl2.0))))
19865
19866 (define-public rust-proc-macro-nested-0.1
19867 (package
19868 (name "rust-proc-macro-nested")
19869 (version "0.1.6")
19870 (source
19871 (origin
19872 (method url-fetch)
19873 (uri (crate-uri "proc-macro-nested" version))
19874 (file-name
19875 (string-append name "-" version ".tar.gz"))
19876 (sha256
19877 (base32
19878 "0nnwm9bvp1fmr8nqjp8ynrkj97yzpsdh3062li8b0f4hzgd818gb"))))
19879 (build-system cargo-build-system)
19880 (home-page "https://github.com/dtolnay/proc-macro-hack")
19881 (synopsis
19882 "Support for nested proc-macro-hack invocations")
19883 (description
19884 "Support for nested proc-macro-hack invocations.")
19885 (license (list license:expat license:asl2.0))))
19886
19887 (define-public rust-proc-macro2-1
19888 (package
19889 (name "rust-proc-macro2")
19890 (version "1.0.24")
19891 (source
19892 (origin
19893 (method url-fetch)
19894 (uri (crate-uri "proc-macro2" version))
19895 (file-name (string-append name "-" version ".crate"))
19896 (sha256
19897 (base32
19898 "0wcabxzrddcjmryndw8fpyxcq6rw63m701vx86xxf03y3bp081qy"))))
19899 (build-system cargo-build-system)
19900 (arguments
19901 `(#:cargo-test-flags '("--lib")
19902 #:cargo-inputs
19903 (("rust-unicode-xid" ,rust-unicode-xid-0.2))
19904 #:cargo-development-inputs
19905 (("rust-quote" ,rust-quote-1))))
19906 (home-page "https://github.com/alexcrichton/proc-macro2")
19907 (synopsis "Stable implementation of the upcoming new `proc_macro` API")
19908 (description "This package provides a stable implementation of the upcoming new
19909 `proc_macro` API. Comes with an option, off by default, to also reimplement itself
19910 in terms of the upstream unstable API.")
19911 (license (list license:asl2.0 license:expat))))
19912
19913 (define-public rust-proc-macro2-0.4
19914 (package
19915 (inherit rust-proc-macro2-1)
19916 (name "rust-proc-macro2")
19917 (version "0.4.30")
19918 (source
19919 (origin
19920 (method url-fetch)
19921 (uri (crate-uri "proc-macro2" version))
19922 (file-name (string-append name "-" version ".tar.gz"))
19923 (sha256
19924 (base32
19925 "0nd71fl24sys066jrha6j7i34nfkjv44yzw8yww9742wmc8j0gfg"))))
19926 (arguments
19927 `(#:tests? #f ; doc tests fail
19928 #:cargo-inputs
19929 (("rust-unicode-xid" ,rust-unicode-xid-0.1))
19930 #:cargo-development-inputs
19931 (("rust-quote" ,rust-quote-0.6))))))
19932
19933 (define-public rust-proc-macro2-0.3
19934 (package
19935 (name "rust-proc-macro2")
19936 (version "0.3.8")
19937 (source
19938 (origin
19939 (method url-fetch)
19940 (uri (crate-uri "proc-macro2" version))
19941 (file-name
19942 (string-append name "-" version ".tar.gz"))
19943 (sha256
19944 (base32
19945 "1ryaynnaj39l4zphcg5w8wszndd80vsrv89m5d2293gl6pry41hv"))))
19946 (build-system cargo-build-system)
19947 (arguments
19948 `(#:skip-build? #t
19949 #:cargo-inputs
19950 (("rust-unicode-xid" ,rust-unicode-xid-0.1))))
19951 (home-page "https://github.com/alexcrichton/proc-macro2")
19952 (synopsis
19953 "Substitute implementation of the compiler's `proc_macro` API")
19954 (description
19955 "This package provides a substitute implementation of the compiler's
19956 @code{proc_macro} API to decouple token-based libraries from the procedural
19957 macro use case.")
19958 (license (list license:expat license:asl2.0))))
19959
19960 (define-public rust-procedural-masquerade-0.1
19961 (package
19962 (name "rust-procedural-masquerade")
19963 (version "0.1.7")
19964 (source
19965 (origin
19966 (method url-fetch)
19967 (uri (crate-uri "procedural-masquerade" version))
19968 (file-name
19969 (string-append name "-" version ".tar.gz"))
19970 (sha256
19971 (base32
19972 "17dnfdk0qadh2h38bkwcy14cq8a1ild3j3hqmh1yjbq9ykgq64wg"))))
19973 (build-system cargo-build-system)
19974 (home-page "https://github.com/servo/rust-cssparser")
19975 (synopsis "Macro rules for proc-macro-derive")
19976 (description
19977 "This package provides @code{macro_rules} for making
19978 @code{proc_macro_derive} pretend to be @code{proc_macro}.")
19979 (license (list license:expat license:asl2.0))))
19980
19981 (define-public rust-progrs-0.1
19982 (package
19983 (name "rust-progrs")
19984 (version "0.1.1")
19985 (source
19986 (origin
19987 (method url-fetch)
19988 (uri (crate-uri "progrs" version))
19989 (file-name
19990 (string-append name "-" version ".tar.gz"))
19991 (sha256
19992 (base32
19993 "108jx8jrv2r1brhvbqfw6fwx298k5fnw3m46kn7lv0jx2wmf0ifz"))))
19994 (build-system cargo-build-system)
19995 (arguments '(#:tests? #f))
19996 (home-page "https://nest.pijul.com/laumann/progrs")
19997 (synopsis "Small library for displaying compact progress bars")
19998 (description
19999 "There are a number of libraries out there that can be used for progress
20000 display, but in the author's opinion these libraries do it almost right -
20001 either they eat up too much screen real estate (by not sticking to one line
20002 per thing that should use progress) or they try to align stuff left and right.
20003
20004 In the author's humble opinion, the best example of just the right amount of
20005 information vs screen real-estate is in the Git progress output (when cloning,
20006 pulling, etc). It uses one line per thing, and may display both percentage
20007 complete (in cases where it's known) and even throughput (for network
20008 transfer).
20009
20010 This library mimics the Git way of showing progress.")
20011 (license license:gpl2+)))
20012
20013 (define-public rust-proptest-0.9
20014 (package
20015 (name "rust-proptest")
20016 (version "0.9.6")
20017 (source
20018 (origin
20019 (method url-fetch)
20020 (uri (crate-uri "proptest" version))
20021 (file-name
20022 (string-append name "-" version ".tar.gz"))
20023 (sha256
20024 (base32
20025 "0nsslp46lvf3ll5rd83rin652qlz1kqyp0rmsciy0pw4kf0pgi01"))))
20026 (build-system cargo-build-system)
20027 (arguments
20028 `(#:cargo-inputs
20029 (("rust-bit-set" ,rust-bit-set-0.5)
20030 ("rust-bitflags" ,rust-bitflags-1)
20031 ("rust-byteorder" ,rust-byteorder-1)
20032 ("rust-lazy-static" ,rust-lazy-static-1)
20033 ("rust-num-traits" ,rust-num-traits-0.2)
20034 ("rust-quick-error" ,rust-quick-error-1.2)
20035 ("rust-rand" ,rust-rand-0.6)
20036 ("rust-rand-chacha" ,rust-rand-chacha-0.1)
20037 ("rust-rand-xorshift" ,rust-rand-xorshift-0.1)
20038 ("rust-regex-syntax" ,rust-regex-syntax-0.6)
20039 ("rust-rusty-fork" ,rust-rusty-fork-0.2)
20040 ("rust-tempfile" ,rust-tempfile-3))
20041 #:cargo-development-inputs
20042 (("rust-regex" ,rust-regex-1))))
20043 (home-page
20044 "https://altsysrq.github.io/proptest-book/proptest/index.html")
20045 (synopsis
20046 "Hypothesis-like property-based testing and shrinking")
20047 (description
20048 "Hypothesis-like property-based testing and shrinking.")
20049 (license (list license:asl2.0 license:expat))))
20050
20051 (define-public rust-proptest-0.8
20052 (package
20053 (inherit rust-proptest-0.9)
20054 (name "rust-proptest")
20055 (version "0.8.7")
20056 (source
20057 (origin
20058 (method url-fetch)
20059 (uri (crate-uri "proptest" version))
20060 (file-name
20061 (string-append name "-" version ".tar.gz"))
20062 (sha256
20063 (base32
20064 "07qrxwsd72wr1cqs0b5b159lnagjffp0l4s4zriz8jak8w20cvcj"))))
20065 (build-system cargo-build-system)
20066 (arguments
20067 `(#:tests? #f ; 1 doc test fails
20068 #:cargo-inputs
20069 (("rust-bit-set" ,rust-bit-set-0.5)
20070 ("rust-bitflags" ,rust-bitflags-1)
20071 ("rust-byteorder" ,rust-byteorder-1)
20072 ("rust-lazy-static" ,rust-lazy-static-1)
20073 ("rust-num-traits" ,rust-num-traits-0.2)
20074 ("rust-quick-error" ,rust-quick-error-1.2)
20075 ("rust-rand" ,rust-rand-0.5)
20076 ("rust-regex-syntax" ,rust-regex-syntax-0.6)
20077 ("rust-rusty-fork" ,rust-rusty-fork-0.2)
20078 ("rust-tempfile" ,rust-tempfile-3))
20079 #:cargo-development-inputs
20080 (("rust-regex" ,rust-regex-1))))))
20081
20082 (define-public rust-proptest-0.7
20083 (package
20084 (inherit rust-proptest-0.9)
20085 (name "rust-proptest")
20086 (version "0.7.2")
20087 (source
20088 (origin
20089 (method url-fetch)
20090 (uri (crate-uri "proptest" version))
20091 (file-name
20092 (string-append name "-" version ".tar.gz"))
20093 (sha256
20094 (base32
20095 "13giz85f7jkjc8miplzj4zh3fr704c1y1cg0dh218iw2dfkpbwi7"))))
20096 (arguments
20097 `(#:cargo-inputs
20098 (("rust-bit-set" ,rust-bit-set-0.5)
20099 ("rust-bitflags" ,rust-bitflags-1)
20100 ("rust-lazy-static" ,rust-lazy-static-1)
20101 ("rust-num-traits" ,rust-num-traits-0.2)
20102 ("rust-quick-error" ,rust-quick-error-1.2)
20103 ("rust-rand" ,rust-rand-0.4)
20104 ("rust-regex-syntax" ,rust-regex-syntax-0.4)
20105 ("rust-rusty-fork" ,rust-rusty-fork-0.2)
20106 ("rust-tempfile" ,rust-tempfile-3))
20107 #:cargo-development-inputs
20108 (("rust-regex" ,rust-regex-0.2))))))
20109
20110 (define-public rust-proptest-0.3
20111 (package
20112 (inherit rust-proptest-0.7)
20113 (name "rust-proptest")
20114 (version "0.3.4")
20115 (source
20116 (origin
20117 (method url-fetch)
20118 (uri (crate-uri "proptest" version))
20119 (file-name
20120 (string-append name "-" version ".tar.gz"))
20121 (sha256
20122 (base32
20123 "15633iq8x3x0im5vyij2gr8ncpflv4fa9w63rh94k20xhzv4m308"))))
20124 (arguments
20125 `(#:cargo-inputs
20126 (("rust-bit-set" ,rust-bit-set-0.4)
20127 ("rust-lazy-static" ,rust-lazy-static-0.2)
20128 ("rust-quick-error" ,rust-quick-error-1.2)
20129 ("rust-rand" ,rust-rand-0.3)
20130 ("rust-regex-syntax" ,rust-regex-syntax-0.4))
20131 #:cargo-development-inputs
20132 (("rust-regex" ,rust-regex-0.2))))))
20133
20134 (define-public rust-proptest-derive-0.1
20135 (package
20136 (name "rust-proptest-derive")
20137 (version "0.1.2")
20138 (source
20139 (origin
20140 (method url-fetch)
20141 (uri (crate-uri "proptest-derive" version))
20142 (file-name (string-append name "-" version ".tar.gz"))
20143 (sha256
20144 (base32
20145 "0nziczbm7w0jisjrd216hh2j45fs5m363ga7r6nawwxcxlbxn7nk"))))
20146 (build-system cargo-build-system)
20147 (arguments
20148 `(#:cargo-inputs
20149 (("rust-proc-macro2" ,rust-proc-macro2-0.4)
20150 ("rust-quote" ,rust-quote-0.6)
20151 ("rust-syn" ,rust-syn-0.15))
20152 #:cargo-development-inputs
20153 (("rust-compiletest-rs" ,rust-compiletest-rs-0.3)
20154 ("rust-criterion" ,rust-criterion-0.2)
20155 ("rust-proptest" ,rust-proptest-0.9))))
20156 (home-page
20157 "https://altsysrq.github.io/proptest-book/proptest-derive/index.html")
20158 (synopsis "Custom-derive for the Arbitrary trait of proptest")
20159 (description "This package provides a Custom-derive for the Arbitrary
20160 trait of proptest.")
20161 (license (list license:expat license:asl2.0))))
20162
20163 (define-public rust-psm-0.1
20164 (package
20165 (name "rust-psm")
20166 (version "0.1.10")
20167 (source
20168 (origin
20169 (method url-fetch)
20170 (uri (crate-uri "psm" version))
20171 (file-name
20172 (string-append name "-" version ".tar.gz"))
20173 (sha256
20174 (base32
20175 "1kr9sal8g9zil4ch8ra0ry96d5cl15xslk1p0wnqk1504ib3hb89"))))
20176 (build-system cargo-build-system)
20177 (arguments
20178 `(#:cargo-development-inputs
20179 (("rust-cc" ,rust-cc-1))))
20180 (home-page "https://github.com/rust-lang/stacker/")
20181 (synopsis "Stack manipulation and introspection routines")
20182 (description "This crate provides very portable functions to control the
20183 stack pointer and inspect the properties of the stack.")
20184 (license (list license:isc license:asl2.0))))
20185
20186 (define-public rust-publicsuffix-1
20187 (package
20188 (name "rust-publicsuffix")
20189 (version "1.5.4")
20190 (source
20191 (origin
20192 (method url-fetch)
20193 (uri (crate-uri "publicsuffix" version))
20194 (file-name (string-append name "-" version ".tar.gz"))
20195 (sha256
20196 (base32
20197 "0yvmjpywfyypfr17kxiwy6ssykgv8nmcdhfakas6548pfn8a9fiv"))))
20198 (build-system cargo-build-system)
20199 (arguments
20200 `(#:cargo-inputs
20201 (("rust-error-chain" ,rust-error-chain-0.12)
20202 ("rust-idna" ,rust-idna-0.2)
20203 ("rust-lazy-static" ,rust-lazy-static-1)
20204 ("rust-native-tls" ,rust-native-tls-0.2)
20205 ("rust-regex" ,rust-regex-1)
20206 ("rust-url" ,rust-url-2))
20207 #:cargo-development-inputs
20208 (("rust-rspec" ,rust-rspec-1))))
20209 (home-page "https://github.com/rushmorem/publicsuffix")
20210 (synopsis "Domain name parsing and email address validation")
20211 (description "This package provides robust domain name parsing and RFC
20212 compliant email address validation.")
20213 (license (list license:expat license:asl2.0))))
20214
20215 (define-public rust-pulldown-cmark-0.4
20216 (package
20217 (name "rust-pulldown-cmark")
20218 (version "0.4.1")
20219 (source
20220 (origin
20221 (method url-fetch)
20222 (uri (crate-uri "pulldown-cmark" version))
20223 (file-name
20224 (string-append name "-" version ".tar.gz"))
20225 (sha256
20226 (base32
20227 "1db8vlhm3n72051bkq4am80q28rfrh88796i3y9ajf5hhk3lrdyi"))))
20228 (build-system cargo-build-system)
20229 (arguments
20230 `(#:skip-build? #t
20231 #:cargo-inputs
20232 (("rust-bitflags" ,rust-bitflags-1)
20233 ("rust-getopts" ,rust-getopts-0.2)
20234 ("rust-memchr" ,rust-memchr-2)
20235 ("rust-unicase" ,rust-unicase-2))
20236 #:cargo-development-inputs
20237 (("rust-criterion" ,rust-criterion-0.2)
20238 ("rust-html5ever" ,rust-html5ever-0.23)
20239 ("rust-lazy-static" ,rust-lazy-static-1)
20240 ("rust-regex" ,rust-regex-1)
20241 ("rust-tendril" ,rust-tendril-0.4))))
20242 (home-page "https://github.com/raphlinus/pulldown-cmark")
20243 (synopsis "Pull parser for CommonMark")
20244 (description
20245 "This package provides a pull parser for CommonMark.")
20246 (license license:expat)))
20247
20248 (define-public rust-pulldown-cmark-0.2
20249 (package
20250 (name "rust-pulldown-cmark")
20251 (version "0.2.0")
20252 (source
20253 (origin
20254 (method url-fetch)
20255 (uri (crate-uri "pulldown-cmark" version))
20256 (file-name
20257 (string-append name "-" version ".tar.gz"))
20258 (sha256
20259 (base32
20260 "05gfnqa0wzix5m17jrmgj0yyr9sflqm0knn79ndppsnhcan2zxgf"))))
20261 (build-system cargo-build-system)
20262 (arguments
20263 `(#:skip-build? #t
20264 #:cargo-inputs
20265 (("rust-getopts" ,rust-getopts-0.2)
20266 ("rust-bitflags" ,rust-bitflags-1))))
20267 (home-page "https://github.com/raphlinus/pulldown-cmark")
20268 (synopsis "Pull parser for CommonMark")
20269 (description
20270 "This package provides a pull parser for CommonMark.")
20271 (license license:expat)))
20272
20273 (define-public rust-pulldown-cmark-0.1
20274 (package
20275 (inherit rust-pulldown-cmark-0.2)
20276 (name "rust-pulldown-cmark")
20277 (version "0.1.2")
20278 (source
20279 (origin
20280 (method url-fetch)
20281 (uri (crate-uri "pulldown-cmark" version))
20282 (file-name
20283 (string-append name "-" version ".tar.gz"))
20284 (sha256
20285 (base32
20286 "0ckflr6w5vfvgb2xnzbnph9b6c0k8cfncm4a8bjzmbbcv9fgizfn"))))
20287 (arguments
20288 `(#:tests? #f
20289 #:cargo-inputs
20290 (("rust-bitflags" ,rust-bitflags-0.9)
20291 ("rust-getopts" ,rust-getopts-0.2))))))
20292
20293 (define-public rust-pulldown-cmark-0.0.8
20294 (package/inherit rust-pulldown-cmark-0.4
20295 (name "rust-pulldown-cmark")
20296 (version "0.0.8")
20297 (source
20298 (origin
20299 (method url-fetch)
20300 (uri (crate-uri "pulldown-cmark" version))
20301 (file-name (string-append name "-" version ".tar.gz"))
20302 (sha256
20303 (base32 "0hbg68h1w48cp72n95hjmbm70jrb5khc9vipcmjng83wjaxxfn0h"))))
20304 (build-system cargo-build-system)
20305 (arguments
20306 `(#:cargo-inputs
20307 (("rust-bitflags" ,rust-bitflags-0.5)
20308 ("rust-getopts" ,rust-getopts-0.2))))))
20309
20310 (define-public rust-pulse-0.5
20311 (package
20312 (name "rust-pulse")
20313 (version "0.5.3")
20314 (source
20315 (origin
20316 (method url-fetch)
20317 (uri (crate-uri "pulse" version))
20318 (file-name (string-append name "-" version ".tar.gz"))
20319 (sha256
20320 (base32
20321 "1w4skcnwmavm8ra9blf1hy7bc9grnin2kziiyc18lsnrr2v14mk5"))))
20322 (build-system cargo-build-system)
20323 (arguments
20324 `(#:cargo-inputs
20325 (("rust-atom" ,rust-atom-0.3)
20326 ("rust-time" ,rust-time-0.1))))
20327 (home-page "https://github.com/csherratt/pulse")
20328 (synopsis "Async wake signals library")
20329 (description "This package provides a library for async wake signals.")
20330 (license license:asl2.0)))
20331
20332 (define-public rust-quantiles-0.7
20333 (package
20334 (name "rust-quantiles")
20335 (version "0.7.1")
20336 (source
20337 (origin
20338 (method url-fetch)
20339 (uri (crate-uri "quantiles" version))
20340 (file-name
20341 (string-append name "-" version ".tar.gz"))
20342 (sha256
20343 (base32
20344 "1wjp16a3d4bmldq9w2wds0q4gjz4mnsqac3g38r6ryr6zc9sh3y1"))))
20345 (build-system cargo-build-system)
20346 (arguments
20347 `(#:cargo-inputs
20348 (("rust-serde" ,rust-serde-1)
20349 ("rust-serde-derive" ,rust-serde-derive-1))
20350 #:cargo-development-inputs
20351 (("rust-quickcheck" ,rust-quickcheck-0.5))))
20352 (home-page "https://github.com/postmates/quantiles")
20353 (synopsis "Collection of approximate quantile algorithms")
20354 (description
20355 "This package provides a collection of approximate quantile algorithms.")
20356 (license license:expat)))
20357
20358 (define-public rust-quasi-0.32
20359 (package
20360 (name "rust-quasi")
20361 (version "0.32.0")
20362 (source
20363 (origin
20364 (method url-fetch)
20365 (uri (crate-uri "quasi" version))
20366 (file-name
20367 (string-append name "-" version ".tar.gz"))
20368 (sha256
20369 (base32
20370 "1csqqgz3aw85q570ywmhb34r3sqgi1sprf8xadfwzlfnai45ri0q"))))
20371 (build-system cargo-build-system)
20372 (arguments
20373 `(#:skip-build? #t
20374 #:cargo-inputs
20375 (("rust-clippy" ,rust-clippy-0.0)
20376 ("rust-syntex-errors" ,rust-syntex-errors-0.58)
20377 ("rust-syntex-syntax" ,rust-syntex-syntax-0.58))))
20378 (home-page "https://github.com/serde-rs/quasi")
20379 (synopsis "Quasi-quoting macro system")
20380 (description
20381 "This package provides a quasi-quoting macro system.")
20382 (license (list license:expat license:asl2.0))))
20383
20384 (define-public rust-quasi-codegen-0.32
20385 (package
20386 (name "rust-quasi-codegen")
20387 (version "0.32.0")
20388 (source
20389 (origin
20390 (method url-fetch)
20391 (uri (crate-uri "quasi_codegen" version))
20392 (file-name
20393 (string-append name "-" version ".tar.gz"))
20394 (sha256
20395 (base32
20396 "1m3nwzn5ip8y86cyfk6hdnbhiinsk2faag7l0cc4q11wl9gy5fai"))))
20397 (build-system cargo-build-system)
20398 (arguments
20399 `(#:cargo-inputs
20400 (("rust-aster" ,rust-aster-0.41)
20401 ("rust-clippy" ,rust-clippy-0.0)
20402 ("rust-syntex" ,rust-syntex-0.58)
20403 ("rust-syntex-errors" ,rust-syntex-errors-0.58)
20404 ("rust-syntex-syntax" ,rust-syntex-syntax-0.58))))
20405 (home-page "https://github.com/serde-rs/quasi")
20406 (synopsis "Quasi-quoting macro system")
20407 (description "This package provides a quasi-quoting macro system.")
20408 (license (list license:expat license:asl2.0))))
20409
20410 (define-public rust-quasi-macros-0.32
20411 (package
20412 (name "rust-quasi-macros")
20413 (version "0.32.0")
20414 (source
20415 (origin
20416 (method url-fetch)
20417 (uri (crate-uri "quasi_macros" version))
20418 (file-name
20419 (string-append name "-" version ".tar.gz"))
20420 (sha256
20421 (base32
20422 "1p825s96wa9xcc01pm5f4nlb01nx0pah50qnwkbncrw1q9xwiki9"))))
20423 (build-system cargo-build-system)
20424 (arguments
20425 `(#:skip-build? #t
20426 #:cargo-inputs
20427 (("rust-clippy" ,rust-clippy-0.0)
20428 ("rust-quasi-codegen" ,rust-quasi-codegen-0.32))
20429 #:cargo-development-inputs
20430 (("rust-aster" ,rust-aster-0.41)
20431 ("rust-quasi" ,rust-quasi-0.32))))
20432 (home-page "https://github.com/serde-rs/quasi")
20433 (synopsis "Quasi-quoting macro system")
20434 (description "This package provides a quasi-quoting macro system.")
20435 (license (list license:expat license:asl2.0))))
20436
20437 (define-public rust-quick-error-1.2
20438 (package
20439 (name "rust-quick-error")
20440 (version "1.2.3")
20441 (source
20442 (origin
20443 (method url-fetch)
20444 (uri (crate-uri "quick-error" version))
20445 (file-name (string-append name "-" version ".crate"))
20446 (sha256
20447 (base32
20448 "1q6za3v78hsspisc197bg3g7rpc989qycy8ypr8ap8igv10ikl51"))))
20449 (build-system cargo-build-system)
20450 (home-page "https://github.com/tailhook/quick-error")
20451 (synopsis "Macro which makes error types pleasant to write")
20452 (description "This crate provides a macro which makes error types pleasant
20453 to write.")
20454 (license (list license:asl2.0
20455 license:expat))))
20456
20457 (define-public rust-quickcheck-0.9
20458 (package
20459 (name "rust-quickcheck")
20460 (version "0.9.2")
20461 (source
20462 (origin
20463 (method url-fetch)
20464 (uri (crate-uri "quickcheck" version))
20465 (file-name
20466 (string-append name "-" version ".tar.gz"))
20467 (sha256
20468 (base32
20469 "0pwl7j21wmf843kpa9gr0byb40hg975ghjrwp0yxcym99bkq6j54"))))
20470 (build-system cargo-build-system)
20471 (arguments
20472 `(#:cargo-inputs
20473 (("rust-env-logger" ,rust-env-logger-0.7)
20474 ("rust-log" ,rust-log-0.4)
20475 ("rust-rand" ,rust-rand-0.7)
20476 ("rust-rand-core" ,rust-rand-core-0.5))))
20477 (home-page "https://github.com/BurntSushi/quickcheck")
20478 (synopsis "Automatic property based testing with shrinking")
20479 (description
20480 "QuickCheck is a way to do property based testing using randomly generated
20481 input. This crate comes with the ability to randomly generate and shrink
20482 integers, floats, tuples, booleans, lists, strings, options and results.")
20483 (license (list license:unlicense license:expat))))
20484
20485 (define-public rust-quickcheck-0.8
20486 (package
20487 (inherit rust-quickcheck-0.9)
20488 (name "rust-quickcheck")
20489 (version "0.8.5")
20490 (source
20491 (origin
20492 (method url-fetch)
20493 (uri (crate-uri "quickcheck" version))
20494 (file-name
20495 (string-append name "-" version ".tar.gz"))
20496 (sha256
20497 (base32
20498 "0mkl4wnvvjk4m32aq3an4ayfyvnmbxnzcybfm7n3fbsndb1xjdcw"))))
20499 (arguments
20500 `(#:cargo-inputs
20501 (("rust-env-logger" ,rust-env-logger-0.6)
20502 ("rust-log" ,rust-log-0.4)
20503 ("rust-rand" ,rust-rand-0.6)
20504 ("rust-rand-core" ,rust-rand-core-0.4))))))
20505
20506 (define-public rust-quickcheck-0.7
20507 (package
20508 (inherit rust-quickcheck-0.9)
20509 (name "rust-quickcheck")
20510 (version "0.7.2")
20511 (source
20512 (origin
20513 (method url-fetch)
20514 (uri (crate-uri "quickcheck" version))
20515 (file-name
20516 (string-append name "-" version ".tar.gz"))
20517 (sha256
20518 (base32
20519 "05pqzja6fwdyrs1za5vmxb9ifb993knmpdsrs1fs2wyz9qz7slyl"))))
20520 (arguments
20521 `(#:cargo-inputs
20522 (("rust-env-logger" ,rust-env-logger-0.5)
20523 ("rust-log" ,rust-log-0.4)
20524 ("rust-rand" ,rust-rand-0.5)
20525 ("rust-rand-core" ,rust-rand-core-0.2))))))
20526
20527 (define-public rust-quickcheck-0.6
20528 (package
20529 (inherit rust-quickcheck-0.9)
20530 (name "rust-quickcheck")
20531 (version "0.6.2")
20532 (source
20533 (origin
20534 (method url-fetch)
20535 (uri (crate-uri "quickcheck" version))
20536 (file-name
20537 (string-append name "-" version ".tar.gz"))
20538 (sha256
20539 (base32
20540 "1dyazm2fcq0v9fscq1a7597zsvdl9f0j8c2bfj1jm2nlzz2sn6y0"))))
20541 (arguments
20542 `(#:cargo-inputs
20543 (("rust-env-logger" ,rust-env-logger-0.5)
20544 ("rust-log" ,rust-log-0.4)
20545 ("rust-rand" ,rust-rand-0.4))))))
20546
20547 (define-public rust-quickcheck-0.5
20548 (package
20549 (inherit rust-quickcheck-0.9)
20550 (name "rust-quickcheck")
20551 (version "0.5.0")
20552 (source
20553 (origin
20554 (method url-fetch)
20555 (uri (crate-uri "quickcheck" version))
20556 (file-name (string-append name "-" version ".tar.gz"))
20557 (sha256
20558 (base32
20559 "1jzm1ygfbn4igaq14b9nipc8yvsn6c8panpgd1qiy5r2insjllyd"))))
20560 (arguments
20561 `(#:cargo-inputs
20562 (("rust-env-logger" ,rust-env-logger-0.4)
20563 ("rust-log" ,rust-log-0.3)
20564 ("rust-rand" ,rust-rand-0.3))))))
20565
20566 (define-public rust-quickcheck-0.4
20567 (package
20568 (inherit rust-quickcheck-0.5)
20569 (name "rust-quickcheck")
20570 (version "0.4.1")
20571 (source
20572 (origin
20573 (method url-fetch)
20574 (uri (crate-uri "quickcheck" version))
20575 (file-name
20576 (string-append name "-" version ".tar.gz"))
20577 (sha256
20578 (base32
20579 "01hligcv1h4pvc8ykch65qjzi7jgcq2s462v69j27slc84fl3hh2"))))
20580 (arguments
20581 `(#:cargo-inputs
20582 (("rust-env-logger" ,rust-env-logger-0.3)
20583 ("rust-log" ,rust-log-0.3)
20584 ("rust-rand" ,rust-rand-0.3))))))
20585
20586 (define-public rust-quickcheck-0.2
20587 (package
20588 (inherit rust-quickcheck-0.4)
20589 (name "rust-quickcheck")
20590 (version "0.2.27")
20591 (source
20592 (origin
20593 (method url-fetch)
20594 (uri (crate-uri "quickcheck" version))
20595 (file-name (string-append name "-" version ".tar.gz"))
20596 (sha256
20597 (base32
20598 "1vb4acppaavlnchzc1jmn5wlkgir9x9gmhgp97bavyxxqxgsg1nh"))))))
20599
20600 (define-public rust-quickcheck-macros-0.9
20601 (package
20602 (name "rust-quickcheck-macros")
20603 (version "0.9.1")
20604 (source
20605 (origin
20606 (method url-fetch)
20607 (uri (crate-uri "quickcheck_macros" version))
20608 (file-name
20609 (string-append name "-" version ".tar.gz"))
20610 (sha256
20611 (base32
20612 "0zsb9b4jpg7qvbiym4v8y9pgqk7p1g4f5hn9gp0fnzz9v1pib330"))))
20613 (build-system cargo-build-system)
20614 (arguments
20615 `(#:cargo-inputs
20616 (("rust-proc-macro2" ,rust-proc-macro2-1)
20617 ("rust-quote" ,rust-quote-1)
20618 ("rust-syn" ,rust-syn-1))
20619 #:cargo-development-inputs
20620 (("rust-quickcheck" ,rust-quickcheck-0.9))))
20621 (home-page "https://github.com/BurntSushi/quickcheck")
20622 (synopsis "Macro attribute for quickcheck")
20623 (description
20624 "This package provides a macro attribute for quickcheck.")
20625 (license (list license:unlicense license:expat))))
20626
20627 (define-public rust-quickcheck-macros-0.8
20628 (package
20629 (inherit rust-quickcheck-macros-0.9)
20630 (name "rust-quickcheck-macros")
20631 (version "0.8.0")
20632 (source
20633 (origin
20634 (method url-fetch)
20635 (uri (crate-uri "quickcheck_macros" version))
20636 (file-name
20637 (string-append name "-" version ".tar.gz"))
20638 (sha256
20639 (base32
20640 "0b3mhn0xcrdd3fkbkx3rghhivwzwil8w991ngp6gaj70l72c3pyp"))))
20641 (arguments
20642 `(#:cargo-inputs
20643 (("rust-proc-macro2" ,rust-proc-macro2-0.4)
20644 ("rust-quote" ,rust-quote-0.6)
20645 ("rust-syn" ,rust-syn-0.15))
20646 #:cargo-development-inputs
20647 (("rust-quickcheck" ,rust-quickcheck-0.8))))))
20648
20649 (define-public rust-quote-1
20650 (package
20651 (name "rust-quote")
20652 (version "1.0.3")
20653 (source
20654 (origin
20655 (method url-fetch)
20656 (uri (crate-uri "quote" version))
20657 (file-name (string-append name "-" version ".crate"))
20658 (sha256
20659 (base32
20660 "0zwd6fp74xfg4jnnnwj4v84lkzif2giwj4ch1hka9g35ghc6rp1b"))))
20661 (build-system cargo-build-system)
20662 (arguments
20663 `(#:cargo-inputs
20664 (("rust-proc-macro2" ,rust-proc-macro2-1))
20665 #:cargo-development-inputs
20666 (("rust-rustversion" ,rust-rustversion-1)
20667 ("rust-trybuild" ,rust-trybuild-1))))
20668 (home-page "https://github.com/dtolnay/quote")
20669 (synopsis "Quasi-quoting macro quote!(...)")
20670 (description "Quasi-quoting macro quote!(...)")
20671 (license (list license:asl2.0 license:expat))))
20672
20673 (define-public rust-quote-0.6
20674 (package
20675 (inherit rust-quote-1)
20676 (name "rust-quote")
20677 (version "0.6.13")
20678 (source
20679 (origin
20680 (method url-fetch)
20681 (uri (crate-uri "quote" version))
20682 (file-name (string-append name "-" version ".tar.gz"))
20683 (sha256
20684 (base32
20685 "1qgqq48jymp5h4y082aanf25hrw6bpb678xh3zw993qfhxmkpqkc"))))
20686 (arguments
20687 `(#:cargo-inputs (("rust-proc-macro2" ,rust-proc-macro2-0.4))))))
20688
20689 (define-public rust-quote-0.5
20690 (package
20691 (inherit rust-quote-0.6)
20692 (name "rust-quote")
20693 (version "0.5.2")
20694 (source
20695 (origin
20696 (method url-fetch)
20697 (uri (crate-uri "quote" version))
20698 (file-name
20699 (string-append name "-" version ".tar.gz"))
20700 (sha256
20701 (base32
20702 "1s01fh0jl8qv4xggs85yahw0h507nzrxkjbf7vay3zw8d3kcyjcr"))))
20703 (arguments
20704 `(#:cargo-inputs
20705 (("rust-proc-macro2" ,rust-proc-macro2-0.3))))))
20706
20707 (define-public rust-quote-0.3
20708 (package
20709 (inherit rust-quote-0.6)
20710 (name "rust-quote")
20711 (version "0.3.15")
20712 (source
20713 (origin
20714 (method url-fetch)
20715 (uri (crate-uri "quote" version))
20716 (file-name
20717 (string-append name "-" version ".tar.gz"))
20718 (sha256
20719 (base32
20720 "0yhnnix4dzsv8y4wwz4csbnqjfh73al33j35msr10py6cl5r4vks"))))
20721 (arguments '())))
20722
20723 (define-public rust-r2d2
20724 (package
20725 (name "rust-r2d2")
20726 (version "0.8.9")
20727 (source
20728 (origin
20729 (method url-fetch)
20730 (uri (crate-uri "r2d2" version))
20731 (file-name (string-append name "-" version ".tar.gz"))
20732 (sha256
20733 (base32
20734 "0vxjgh83bss63mkx308p16iwl33s80c781p422f3r5w0p315np2l"))))
20735 (build-system cargo-build-system)
20736 (arguments
20737 `(#:cargo-inputs
20738 (("rust-log" ,rust-log-0.4)
20739 ("rust-parking-lot" ,rust-parking-lot-0.11)
20740 ("rust-scheduled-thread-pool" ,rust-scheduled-thread-pool-0.2))))
20741 (home-page "https://github.com/sfackler/r2d2")
20742 (synopsis "A generic connection pool")
20743 (description "This package provides a generic connection pool.")
20744 (license (list license:expat license:asl2.0))))
20745
20746 (define-public rust-racer-cargo-metadata-0.1
20747 (package
20748 (name "rust-racer-cargo-metadata")
20749 (version "0.1.1")
20750 (source
20751 (origin
20752 (method url-fetch)
20753 (uri (crate-uri "racer-cargo-metadata" version))
20754 (file-name
20755 (string-append name "-" version ".tar.gz"))
20756 (sha256
20757 (base32
20758 "0vvwbfi991gjbk2k9a7yl7fqc8amvwlf7sa9lsx1sr0s55rcsq1b"))))
20759 (build-system cargo-build-system)
20760 (arguments
20761 `(#:tests? #f
20762 #:cargo-inputs
20763 (("rust-racer-interner" ,rust-racer-interner-0.1)
20764 ("rust-serde" ,rust-serde-1)
20765 ("rust-serde-json" ,rust-serde-json-1))))
20766 (home-page "https://github.com/racer-rust/racer")
20767 (synopsis "Lightweight cargo metadata parser for racer")
20768 (description
20769 "This crate provides parsing for cargo metadata. It is used mostly in
20770 Racer.")
20771 (license license:expat)))
20772
20773 (define-public rust-racer-interner-0.1
20774 (package
20775 (name "rust-racer-interner")
20776 (version "0.1.0")
20777 (source
20778 (origin
20779 (method url-fetch)
20780 (uri (crate-uri "racer-interner" version))
20781 (file-name
20782 (string-append name "-" version ".tar.gz"))
20783 (sha256
20784 (base32
20785 "0k7ssjjcr4kr9r1jbz93rglisfsx1m6fkx3wz6yng5rizm528si0"))))
20786 (build-system cargo-build-system)
20787 (arguments
20788 `(#:cargo-inputs (("rust-serde" ,rust-serde-1))))
20789 (home-page "https://github.com/racer-rust/racer")
20790 (synopsis "Thread-local string interner for Racer")
20791 (description
20792 "This package allows one to intern strings in Rust in a thread-local
20793 fashion. It is mostly used in Racer.")
20794 (license license:expat)))
20795
20796 (define-public rust-radix-fmt-1
20797 (package
20798 (name "rust-radix-fmt")
20799 (version "1.0.0")
20800 (source
20801 (origin
20802 (method url-fetch)
20803 (uri (crate-uri "radix_fmt" version))
20804 (file-name (string-append name "-" version ".tar.gz"))
20805 (sha256
20806 (base32
20807 "09jlq152iwn56215kghqby4pi8vamhg0nzcb9any5b5782cjl26f"))))
20808 (build-system cargo-build-system)
20809 (arguments
20810 `(#:cargo-development-inputs
20811 (("rust-fluid" ,rust-fluid-0.4))))
20812 (home-page "https://gitlab.com/Boiethios/radix_fmt_rs")
20813 (synopsis "Format a number in an arbitrary radix")
20814 (description "This package lets you format a number in an arbitrary
20815 radix.")
20816 (license license:asl2.0)))
20817
20818 (define-public rust-rand-0.7
20819 (package
20820 (name "rust-rand")
20821 (version "0.7.3")
20822 (source
20823 (origin
20824 (method url-fetch)
20825 (uri (crate-uri "rand" version))
20826 (file-name (string-append name "-" version ".crate"))
20827 (sha256
20828 (base32
20829 "00sdaimkbz491qgi6qxkv582yivl32m2jd401kzbn94vsiwicsva"))))
20830 (build-system cargo-build-system)
20831 (arguments
20832 `(#:cargo-inputs
20833 (("rust-getrandom" ,rust-getrandom-0.1)
20834 ("rust-libc" ,rust-libc-0.2)
20835 ("rust-log" ,rust-log-0.4)
20836 ("rust-packed-simd" ,rust-packed-simd-0.3)
20837 ("rust-rand-chacha" ,rust-rand-chacha-0.2)
20838 ("rust-rand-core" ,rust-rand-core-0.5)
20839 ("rust-rand-hc" ,rust-rand-hc-0.2)
20840 ("rust-rand-pcg" ,rust-rand-pcg-0.2))
20841 #:cargo-development-inputs
20842 (("rust-rand-hc" ,rust-rand-hc-0.2)
20843 ("rust-rand-pcg" ,rust-rand-pcg-0.2))))
20844 (home-page "https://crates.io/crates/rand")
20845 (synopsis "Random number generators and other randomness functionality")
20846 (description
20847 "Rand provides utilities to generate random numbers, to convert them to
20848 useful types and distributions, and some randomness-related algorithms.")
20849 (license (list license:asl2.0
20850 license:expat))))
20851
20852 (define-public rust-rand-0.6
20853 (package
20854 (inherit rust-rand-0.7)
20855 (name "rust-rand")
20856 (version "0.6.5")
20857 (source
20858 (origin
20859 (method url-fetch)
20860 (uri (crate-uri "rand" version))
20861 (file-name (string-append name "-" version ".crate"))
20862 (sha256
20863 (base32
20864 "1jl4449jcl4wgmzld6ffwqj5gwxrp8zvx8w573g1z368qg6xlwbd"))))
20865 (arguments
20866 `(#:cargo-inputs
20867 (("rust-libc" ,rust-libc-0.2)
20868 ("rust-log" ,rust-log-0.4)
20869 ("rust-packed-simd" ,rust-packed-simd-0.3)
20870 ("rust-rand-chacha" ,rust-rand-chacha-0.1)
20871 ("rust-rand-core" ,rust-rand-core-0.4)
20872 ("rust-rand-hc" ,rust-rand-hc-0.1)
20873 ("rust-rand-isaac" ,rust-rand-isaac-0.1)
20874 ("rust-rand-jitter" ,rust-rand-jitter-0.1)
20875 ("rust-rand-os" ,rust-rand-os-0.1)
20876 ("rust-rand-pcg" ,rust-rand-pcg-0.1)
20877 ("rust-rand-xorshift" ,rust-rand-xorshift-0.1)
20878 ("rust-winapi" ,rust-winapi-0.3)
20879 ("rust-autocfg" ,rust-autocfg-0.1)) ; build-dependency
20880 #:cargo-development-inputs
20881 (("rust-average" ,rust-average-0.9)
20882 ("rust-rand-xoshiro" ,rust-rand-xoshiro-0.1))))))
20883
20884 (define-public rust-rand-0.5
20885 (package
20886 (inherit rust-rand-0.7)
20887 (name "rust-rand")
20888 (version "0.5.6")
20889 (source
20890 (origin
20891 (method url-fetch)
20892 (uri (crate-uri "rand" version))
20893 (file-name
20894 (string-append name "-" version ".tar.gz"))
20895 (sha256
20896 (base32
20897 "1fdcgja9167hlzkf4g5daqwp498lwiyq7aqm05whklpbsdyc8666"))))
20898 (arguments
20899 `(#:skip-build? #t
20900 #:cargo-inputs
20901 (("rust-cloudabi" ,rust-cloudabi-0.0)
20902 ("rust-fuchsia-cprng" ,rust-fuchsia-cprng-0.1)
20903 ("rust-libc" ,rust-libc-0.2)
20904 ("rust-log" ,rust-log-0.4)
20905 ("rust-rand-core" ,rust-rand-core-0.3)
20906 ("rust-serde" ,rust-serde-1)
20907 ("rust-serde-derive" ,rust-serde-derive-1)
20908 ("rust-stdweb" ,rust-stdweb-0.4)
20909 ("rust-winapi" ,rust-winapi-0.3))
20910 #:cargo-development-inputs
20911 (("rust-bincode" ,rust-bincode-1))))))
20912
20913 (define-public rust-rand-0.4
20914 (package
20915 (inherit rust-rand-0.6)
20916 (name "rust-rand")
20917 (version "0.4.6")
20918 (source
20919 (origin
20920 (method url-fetch)
20921 (uri (crate-uri "rand" version))
20922 (file-name (string-append name "-" version ".tar.gz"))
20923 (sha256
20924 (base32
20925 "14qjfv3gggzhnma20k0sc1jf8y6pplsaq7n1j9ls5c8kf2wl0a2m"))))
20926 (arguments
20927 `(#:cargo-inputs
20928 (("rust-fuchsia-cprng" ,rust-fuchsia-cprng-0.1)
20929 ("rust-rand-core" ,rust-rand-core-0.3)
20930 ("rust-rdrand" ,rust-rdrand-0.4)
20931 ("rust-libc" ,rust-libc-0.2)
20932 ("rust-winapi" ,rust-winapi-0.3))))))
20933
20934 (define-public rust-rand-0.3
20935 (package
20936 (inherit rust-rand-0.6)
20937 (name "rust-rand")
20938 (version "0.3.23")
20939 (source
20940 (origin
20941 (method url-fetch)
20942 (uri (crate-uri "rand" version))
20943 (file-name (string-append name "-" version ".crate"))
20944 (sha256
20945 (base32
20946 "0v679h38pjjqj5h4md7v2slsvj6686qgcn7p9fbw3h43iwnk1b34"))))
20947 (arguments
20948 `(#:cargo-inputs
20949 (("rust-libc" ,rust-libc-0.2)
20950 ("rust-rand" ,rust-rand-0.4))))))
20951
20952 (define-public rust-rand-chacha-0.2
20953 (package
20954 (name "rust-rand-chacha")
20955 (version "0.2.2")
20956 (source
20957 (origin
20958 (method url-fetch)
20959 (uri (crate-uri "rand_chacha" version))
20960 (file-name
20961 (string-append name "-" version ".tar.gz"))
20962 (sha256
20963 (base32
20964 "00il36fkdbsmpr99p9ksmmp6dn1md7rmnwmz0rr77jbrca2yvj7l"))))
20965 (build-system cargo-build-system)
20966 (arguments
20967 `(#:cargo-inputs
20968 (("rust-c2-chacha" ,rust-c2-chacha-0.2)
20969 ("rust-rand-core" ,rust-rand-core-0.5))))
20970 (home-page "https://crates.io/crates/rand-chacha")
20971 (synopsis "ChaCha random number generator")
20972 (description "ChaCha random number generator.")
20973 (license (list license:asl2.0 license:expat))))
20974
20975 (define-public rust-rand-chacha-0.1
20976 (package
20977 (inherit rust-rand-chacha-0.2)
20978 (name "rust-rand-chacha")
20979 (version "0.1.1")
20980 (source
20981 (origin
20982 (method url-fetch)
20983 (uri (crate-uri "rand_chacha" version))
20984 (file-name (string-append name "-" version ".crate"))
20985 (sha256
20986 (base32
20987 "1vxwyzs4fy1ffjc8l00fsyygpiss135irjf7nyxgq2v0lqf3lvam"))))
20988 (arguments
20989 `(#:cargo-inputs
20990 (("rust-rand-core" ,rust-rand-core-0.3))
20991 #:cargo-development-inputs
20992 (("rust-autocfg" ,rust-autocfg-0.1))))))
20993
20994 (define-public rust-rand-core-0.5
20995 (package
20996 (name "rust-rand-core")
20997 (version "0.5.1")
20998 (source
20999 (origin
21000 (method url-fetch)
21001 (uri (crate-uri "rand_core" version))
21002 (file-name
21003 (string-append name "-" version ".tar.gz"))
21004 (sha256
21005 (base32
21006 "06bdvx08v3rkz451cm7z59xwwqn1rkfh6v9ay77b14f8dwlybgch"))))
21007 (build-system cargo-build-system)
21008 (arguments
21009 `(#:cargo-inputs
21010 (("rust-getrandom" ,rust-getrandom-0.1)
21011 ("rust-serde" ,rust-serde-1))))
21012 (home-page "https://crates.io/crates/rand-core")
21013 (synopsis
21014 "Core random number generator traits and tools for implementation")
21015 (description
21016 "Core random number generator traits and tools for implementation.")
21017 (license (list license:expat license:asl2.0))))
21018
21019 (define-public rust-rand-core-0.4
21020 (package
21021 (inherit rust-rand-core-0.5)
21022 (name "rust-rand-core")
21023 (version "0.4.2")
21024 (source
21025 (origin
21026 (method url-fetch)
21027 (uri (crate-uri "rand_core" version))
21028 (file-name (string-append name "-" version ".crate"))
21029 (sha256
21030 (base32
21031 "1p09ynysrq1vcdlmcqnapq4qakl2yd1ng3kxh3qscpx09k2a6cww"))))
21032 (arguments
21033 `(#:cargo-inputs
21034 (("rust-serde" ,rust-serde-1)
21035 ("rust-serde-derive" ,rust-serde-derive-1))))))
21036
21037 (define-public rust-rand-core-0.3
21038 (package
21039 (inherit rust-rand-core-0.4)
21040 (name "rust-rand-core")
21041 (version "0.3.1")
21042 (source
21043 (origin
21044 (method url-fetch)
21045 (uri (crate-uri "rand_core" version))
21046 (file-name (string-append name "-" version ".crate"))
21047 (sha256
21048 (base32
21049 "0jzdgszfa4bliigiy4hi66k7fs3gfwi2qxn8vik84ph77fwdwvvs"))))
21050 ;; This version is a 0.3 API wrapper around the 0.4 version.
21051 (arguments
21052 `(#:skip-build? #t
21053 #:cargo-inputs (("rand-core" ,rust-rand-core-0.4))))))
21054
21055 (define-public rust-rand-core-0.2
21056 (package
21057 (inherit rust-rand-core-0.5)
21058 (name "rust-rand-core")
21059 (version "0.2.2")
21060 (source
21061 (origin
21062 (method url-fetch)
21063 (uri (crate-uri "rand-core" version))
21064 (file-name
21065 (string-append name "-" version ".tar.gz"))
21066 (sha256
21067 (base32
21068 "0wikbw2a36bz8ywjyycjrd7db6ra3yzj14zs1ysxz2fiqhia8q8r"))))
21069 (arguments
21070 `(#:skip-build? #t
21071 #:cargo-inputs
21072 (("rust-rand-core" ,rust-rand-core-0.3))))))
21073
21074 (define-public rust-rand-distr-0.2
21075 (package
21076 (name "rust-rand-distr")
21077 (version "0.2.2")
21078 (source
21079 (origin
21080 (method url-fetch)
21081 (uri (crate-uri "rand-distr" version))
21082 (file-name
21083 (string-append name "-" version ".tar.gz"))
21084 (sha256
21085 (base32
21086 "1cpz577qid09lirjjhhn98yqdwsv0c01jf973pxpcr9svp5pm5wn"))))
21087 (build-system cargo-build-system)
21088 (arguments
21089 `(#:cargo-inputs
21090 (("rust-rand" ,rust-rand-0.7))
21091 #:cargo-development-inputs
21092 (("rust-average" ,rust-average-0.10)
21093 ("rust-rand-pcg" ,rust-rand-pcg-0.2))))
21094 (home-page "https://crates.io/crates/rand_distr")
21095 (synopsis "Sampling from random number distributions")
21096 (description
21097 "Sampling from random number distributions.")
21098 (license (list license:expat license:asl2.0))))
21099
21100 (define-public rust-rand-hc-0.2
21101 (package
21102 (name "rust-rand-hc")
21103 (version "0.2.0")
21104 (source
21105 (origin
21106 (method url-fetch)
21107 (uri (crate-uri "rand_hc" version))
21108 (file-name (string-append name "-" version ".crate"))
21109 (sha256
21110 (base32
21111 "0g31sqwpmsirdlwr0svnacr4dbqyz339im4ssl9738cjgfpjjcfa"))))
21112 (build-system cargo-build-system)
21113 (arguments
21114 `(#:cargo-inputs
21115 (("rust-rand-hc" ,rust-rand-core-0.5))))
21116 (home-page "https://crates.io/crates/rand_hc")
21117 (synopsis "HC128 random number generator")
21118 (description "This package provides a cryptographically secure random number
21119 generator that uses the HC-128 algorithm.")
21120 (license (list license:asl2.0
21121 license:expat))))
21122
21123 (define-public rust-rand-hc-0.1
21124 (package
21125 (inherit rust-rand-hc-0.2)
21126 (name "rust-rand-hc")
21127 (version "0.1.0")
21128 (source
21129 (origin
21130 (method url-fetch)
21131 (uri (crate-uri "rand_hc" version))
21132 (file-name (string-append name "-" version ".crate"))
21133 (sha256
21134 (base32
21135 "1i0vl8q5ddvvy0x8hf1zxny393miyzxkwqnw31ifg6p0gdy6fh3v"))))
21136 (arguments
21137 `(#:cargo-inputs (("rust-rand-core" ,rust-rand-core-0.3))))))
21138
21139 (define-public rust-rand-isaac-0.2
21140 (package
21141 (name "rust-rand-isaac")
21142 (version "0.2.0")
21143 (source
21144 (origin
21145 (method url-fetch)
21146 (uri (crate-uri "rand_isaac" version))
21147 (file-name
21148 (string-append name "-" version ".tar.gz"))
21149 (sha256
21150 (base32
21151 "0xlb9415x518ffkazxhvk8b04i9i548nva4i5l5s34crvjrv1xld"))))
21152 (build-system cargo-build-system)
21153 (arguments
21154 `(#:cargo-inputs
21155 (("rust-rand-core" ,rust-rand-core-0.5)
21156 ("rust-serde" ,rust-serde-1))
21157 #:cargo-development-inputs
21158 (("rust-bincode" ,rust-bincode-1))))
21159 (home-page "https://crates.io/crates/rand_isaac")
21160 (synopsis "ISAAC random number generator")
21161 (description "This package implements the @code{ISAAC} and @code{ISAAC-64}
21162 random number generators. ISAAC stands for \"Indirection, Shift, Accumulate,
21163 Add, and Count\" which are the principal bitwise operations employed.")
21164 (license (list license:expat license:asl2.0))))
21165
21166 (define-public rust-rand-isaac-0.1
21167 (package
21168 (inherit rust-rand-isaac-0.2)
21169 (name "rust-rand-isaac")
21170 (version "0.1.1")
21171 (source
21172 (origin
21173 (method url-fetch)
21174 (uri (crate-uri "rand_isaac" version))
21175 (file-name (string-append name "-" version ".crate"))
21176 (sha256
21177 (base32
21178 "027flpjr4znx2csxk7gxb7vrf9c7y5mydmvg5az2afgisp4rgnfy"))))
21179 (arguments
21180 `(#:cargo-inputs
21181 (("rust-rand-core" ,rust-rand-core-0.3)
21182 ("rust-serde" ,rust-serde-1)
21183 ("rust-serde-derive" ,rust-serde-derive-1))
21184 #:cargo-development-inputs
21185 (("rust-bincode" ,rust-bincode-1))))))
21186
21187 (define-public rust-rand-jitter-0.1
21188 (package
21189 (name "rust-rand-jitter")
21190 (version "0.1.4")
21191 (source
21192 (origin
21193 (method url-fetch)
21194 (uri (crate-uri "rand_jitter" version))
21195 (file-name (string-append name "-" version ".crate"))
21196 (sha256
21197 (base32
21198 "16z387y46bfz3csc42zxbjq89vcr1axqacncvv8qhyy93p4xarhi"))))
21199 (build-system cargo-build-system)
21200 (arguments
21201 `(#:cargo-inputs
21202 (("rust-libc" ,rust-libc-0.2)
21203 ("rust-rand-core" ,rust-rand-core-0.4)
21204 ("rust-winapi" ,rust-winapi-0.3)
21205 ("rust-log" ,rust-log-0.4))))
21206 (home-page "https://github.com/rust-random/rand")
21207 (synopsis "Random number generator based on timing jitter")
21208 (description "This package provides a non-physical true random number
21209 generator based on timing jitter.")
21210 (license (list license:asl2.0
21211 license:expat))))
21212
21213 (define-public rust-rand-os-0.2
21214 (package
21215 (name "rust-rand-os")
21216 (version "0.2.2")
21217 (source
21218 (origin
21219 (method url-fetch)
21220 (uri (crate-uri "rand_os" version))
21221 (file-name
21222 (string-append name "-" version ".tar.gz"))
21223 (sha256
21224 (base32
21225 "12m59l42aa07khcjnhq8lkw2332brj4d7gqr3jxgqv39vczax257"))))
21226 (build-system cargo-build-system)
21227 (arguments
21228 `(#:cargo-inputs
21229 (("rust-getrandom" ,rust-getrandom-0.1)
21230 ("rust-rand-core" ,rust-rand-core-0.5))))
21231 (home-page "https://crates.io/crates/rand-os")
21232 (synopsis "OS backed Random Number Generator")
21233 (description "OS backed Random Number Generator.")
21234 (license (list license:asl2.0
21235 license:expat))))
21236
21237 (define-public rust-rand-os-0.1
21238 (package
21239 (inherit rust-rand-os-0.2)
21240 (name "rust-rand-os")
21241 (version "0.1.3")
21242 (source
21243 (origin
21244 (method url-fetch)
21245 (uri (crate-uri "rand_os" version))
21246 (file-name (string-append name "-" version ".crate"))
21247 (sha256
21248 (base32
21249 "0wahppm0s64gkr2vmhcgwc0lij37in1lgfxg5rbgqlz0l5vgcxbv"))))
21250 (arguments
21251 `(#:cargo-inputs
21252 (("rust-cloudabi" ,rust-cloudabi-0.0)
21253 ("rust-fuchsia-cprng" ,rust-fuchsia-cprng-0.1)
21254 ("rust-libc" ,rust-libc-0.2)
21255 ("rust-log" ,rust-log-0.4)
21256 ("rust-rand-core" ,rust-rand-core-0.4)
21257 ("rust-rdrand" ,rust-rdrand-0.4)
21258 ("rust-stdweb" ,rust-stdweb-0.4)
21259 ("rust-wasm-bindgen" ,rust-wasm-bindgen-0.2)
21260 ("rust-winapi" ,rust-winapi-0.3))))))
21261
21262 (define-public rust-rand-pcg-0.2
21263 (package
21264 (name "rust-rand-pcg")
21265 (version "0.2.1")
21266 (source
21267 (origin
21268 (method url-fetch)
21269 (uri (crate-uri "rand_pcg" version))
21270 (file-name (string-append name "-" version ".crate"))
21271 (sha256
21272 (base32
21273 "0ab4h6s6x3py833jk61lwadq83qd1c8bih2hgi6yps9rnv0x1aqn"))))
21274 (build-system cargo-build-system)
21275 (arguments
21276 `(#:cargo-inputs
21277 (("rust-rand-core" ,rust-rand-core-0.5)
21278 ("rust-serde" ,rust-serde-1))
21279 #:cargo-development-inputs
21280 (("rust-bincode" ,rust-bincode-1))))
21281 (home-page "https://crates.io/crates/rand_pcg")
21282 (synopsis
21283 "Selected PCG random number generators")
21284 (description
21285 "Implements a selection of PCG random number generators.")
21286 (license (list license:asl2.0
21287 license:expat))))
21288
21289 (define-public rust-rand-pcg-0.1
21290 (package
21291 (inherit rust-rand-pcg-0.2)
21292 (name "rust-rand-pcg")
21293 (version "0.1.2")
21294 (source
21295 (origin
21296 (method url-fetch)
21297 (uri (crate-uri "rand_pcg" version))
21298 (file-name (string-append name "-" version ".crate"))
21299 (sha256
21300 (base32
21301 "0i0bdla18a8x4jn1w0fxsbs3jg7ajllz6azmch1zw33r06dv1ydb"))))
21302 (arguments
21303 `(#:cargo-inputs
21304 (("rust-autocfg" ,rust-autocfg-0.1)
21305 ("rust-rand-core" ,rust-rand-core-0.4)
21306 ("rust-serde" ,rust-serde-1)
21307 ("rust-serde-derive" ,rust-serde-derive-1))
21308 #:cargo-development-inputs
21309 (("rust-bincode" ,rust-bincode-1))))))
21310
21311 (define-public rust-rand-xorshift-0.2
21312 (package
21313 (name "rust-rand-xorshift")
21314 (version "0.2.0")
21315 (source
21316 (origin
21317 (method url-fetch)
21318 (uri (crate-uri "rand_xorshift" version))
21319 (file-name
21320 (string-append name "-" version ".tar.gz"))
21321 (sha256
21322 (base32
21323 "1a6wy76lc5fimm1n9n8fzhp4cfjwfwxh4hx63bg3vlh1d2w1dm3p"))))
21324 (build-system cargo-build-system)
21325 (arguments
21326 `(#:cargo-inputs
21327 (("rust-rand-core" ,rust-rand-core-0.5)
21328 ("rust-serde" ,rust-serde-1))
21329 #:cargo-development-inputs
21330 (("rust-bincode" ,rust-bincode-1))))
21331 (home-page "https://crates.io/crates/rand-xorshift")
21332 (synopsis "Xorshift random number generator")
21333 (description
21334 "Xorshift random number generator.")
21335 (license (list license:expat license:asl2.0))))
21336
21337 (define-public rust-rand-xorshift-0.1
21338 (package
21339 (name "rust-rand-xorshift")
21340 (version "0.1.1")
21341 (source
21342 (origin
21343 (method url-fetch)
21344 (uri (crate-uri "rand_xorshift" version))
21345 (file-name (string-append name "-" version ".crate"))
21346 (sha256
21347 (base32
21348 "0p2x8nr00hricpi2m6ca5vysiha7ybnghz79yqhhx6sl4gkfkxyb"))))
21349 (build-system cargo-build-system)
21350 (arguments
21351 `(#:cargo-inputs
21352 (("rust-rand-core" ,rust-rand-core-0.3)
21353 ("rust-serde" ,rust-serde-1)
21354 ("rust-serde-derive" ,rust-serde-derive-1))
21355 #:cargo-development-inputs
21356 (("rust-bincode" ,rust-bincode-1))))
21357 (home-page "https://crates.io/crates/rand-xorshift")
21358 (synopsis "Xorshift random number generator")
21359 (description
21360 "Xorshift random number generator")
21361 (license (list license:asl2.0
21362 license:expat))))
21363
21364 (define-public rust-rand-xoshiro-0.4
21365 (package
21366 (name "rust-rand-xoshiro")
21367 (version "0.4.0")
21368 (source
21369 (origin
21370 (method url-fetch)
21371 (uri (crate-uri "rand-xoshiro" version))
21372 (file-name
21373 (string-append name "-" version ".tar.gz"))
21374 (sha256
21375 (base32
21376 "013h45rikipv5bda2ixmwx5rwsk9wpc7mr0a77cz20hxi0pdvz59"))))
21377 (build-system cargo-build-system)
21378 (arguments
21379 `(#:cargo-inputs
21380 (("rust-rand-core" ,rust-rand-core-0.5)
21381 ("rust-serde" ,rust-serde-1))
21382 #:cargo-development-inputs
21383 (("rust-bincode" ,rust-bincode-1))))
21384 (home-page "https://crates.io/crates/rand_xoshiro")
21385 (synopsis "Xoshiro, xoroshiro and splitmix64 random number generators")
21386 (description "This package provides the xoshiro, xoroshiro and splitmix64
21387 random number generators.")
21388 (license (list license:expat license:asl2.0))))
21389
21390 (define-public rust-rand-xoshiro-0.3
21391 (package
21392 (inherit rust-rand-xoshiro-0.4)
21393 (name "rust-rand-xoshiro")
21394 (version "0.3.0")
21395 (source
21396 (origin
21397 (method url-fetch)
21398 (uri (crate-uri "rand_xoshiro" version))
21399 (file-name
21400 (string-append name "-" version ".tar.gz"))
21401 (sha256
21402 (base32
21403 "07w3qgrac8r356lz5vqff42rly6yd9vs3g5lx5pbn13rcmb05rqb"))))
21404 (arguments
21405 `(#:cargo-inputs
21406 (("rust-byteorder" ,rust-byteorder-1)
21407 ("rust-rand-core" ,rust-rand-core-0.5)
21408 ("rust-serde" ,rust-serde-1))
21409 #:cargo-development-inputs
21410 (("rust-bincode" ,rust-bincode-1))))))
21411
21412 (define-public rust-rand-xoshiro-0.1
21413 (package
21414 (inherit rust-rand-xoshiro-0.4)
21415 (name "rust-rand-xoshiro")
21416 (version "0.1.0")
21417 (source
21418 (origin
21419 (method url-fetch)
21420 (uri (crate-uri "rand_xoshiro" version))
21421 (file-name
21422 (string-append name "-" version ".tar.gz"))
21423 (sha256
21424 (base32
21425 "0ac9ha6ll8b6l1930bd99k29jrjpsbpddvr6ycrnbi5rkwb1id03"))))
21426 (build-system cargo-build-system)
21427 (arguments
21428 `(#:cargo-inputs
21429 (("rust-byteorder" ,rust-byteorder-1)
21430 ("rust-rand-core" ,rust-rand-core-0.3))
21431 #:cargo-development-inputs
21432 (("rust-rand" ,rust-rand-0.6))))))
21433
21434 (define-public rust-rawpointer-0.2
21435 (package
21436 (name "rust-rawpointer")
21437 (version "0.2.1")
21438 (source
21439 (origin
21440 (method url-fetch)
21441 (uri (crate-uri "rawpointer" version))
21442 (file-name (string-append name "-" version ".crate"))
21443 (sha256
21444 (base32
21445 "1qy1qvj17yh957vhffnq6agq0brvylw27xgks171qrah75wmg8v0"))))
21446 (build-system cargo-build-system)
21447 (home-page "https://github.com/bluss/rawpointer/")
21448 (synopsis "Extra methods for raw pointers")
21449 (description "Extra methods for raw pointers. For example
21450 @code{.post_inc()} and @code{.pre_dec()} (c.f. @code{ptr++} and @code{--ptr})
21451 and @code{ptrdistance}.")
21452 (license (list license:asl2.0
21453 license:expat))))
21454
21455 (define-public rust-rawpointer-0.1
21456 (package
21457 (inherit rust-rawpointer-0.2)
21458 (name "rust-rawpointer")
21459 (version "0.1.0")
21460 (source
21461 (origin
21462 (method url-fetch)
21463 (uri (crate-uri "rawpointer" version))
21464 (file-name (string-append name "-" version ".crate"))
21465 (sha256
21466 (base32
21467 "06ghpm9y7gacks78s3maakha07kbnwrxif5q37r2l7z1sali3b7b"))))))
21468
21469 (define-public rust-rawslice-0.1
21470 (package
21471 (name "rust-rawslice")
21472 (version "0.1.1")
21473 (source
21474 (origin
21475 (method url-fetch)
21476 (uri (crate-uri "rawslice" version))
21477 (file-name
21478 (string-append name "-" version ".tar.gz"))
21479 (sha256
21480 (base32
21481 "1kfidydpw770wfzp2c4y7jfq1vr5jbql5sk86xg2wx3an84cj8wf"))))
21482 (build-system cargo-build-system)
21483 (arguments
21484 `(#:cargo-inputs
21485 (("rust-rawpointer" ,rust-rawpointer-0.2))
21486 #:cargo-development-inputs
21487 (("rust-quickcheck" ,rust-quickcheck-0.4))))
21488 (home-page "https://github.com/bluss/rawslice/")
21489 (synopsis "Reimplementation of the slice iterators, with extra features")
21490 (description
21491 "Reimplementation of the slice iterators, with extra features.
21492 For example creation from raw pointers and start, end pointer
21493 accessors.")
21494 (license (list license:asl2.0 license:expat))))
21495
21496 (define-public rust-rayon-1
21497 (package
21498 (name "rust-rayon")
21499 (version "1.3.1")
21500 (source
21501 (origin
21502 (method url-fetch)
21503 (uri (crate-uri "rayon" version))
21504 (file-name
21505 (string-append name "-" version ".tar.gz"))
21506 (sha256
21507 (base32
21508 "104h6i5lcp9kx8g80jgqf6z7wcqa186q57wj4qzf011xfmb2iw32"))))
21509 (build-system cargo-build-system)
21510 (arguments
21511 `(#:cargo-inputs
21512 (("rust-autocfg" ,rust-autocfg-1.0)
21513 ("rust-crossbeam-deque" ,rust-crossbeam-deque-0.7)
21514 ("rust-either" ,rust-either-1)
21515 ("rust-rayon-core" ,rust-rayon-core-1))
21516 #:cargo-development-inputs
21517 (("rust-docopt" ,rust-docopt-1.1)
21518 ("rust-lazy-static" ,rust-lazy-static-1)
21519 ("rust-rand" ,rust-rand-0.7)
21520 ("rust-rand-xorshift" ,rust-rand-xorshift-0.2)
21521 ("rust-serde" ,rust-serde-1))))
21522 (home-page "https://github.com/rayon-rs/rayon")
21523 (synopsis "Simple work-stealing parallelism for Rust")
21524 (description
21525 "Simple work-stealing parallelism for Rust.")
21526 (license (list license:asl2.0 license:expat))))
21527
21528 (define-public rust-rayon-0.8
21529 (package
21530 (inherit rust-rayon-1)
21531 (name "rust-rayon")
21532 (version "0.8.2")
21533 (source
21534 (origin
21535 (method url-fetch)
21536 (uri (crate-uri "rayon" version))
21537 (file-name (string-append name "-" version ".tar.gz"))
21538 (sha256
21539 (base32 "1j2l9x98ma63qkh9w8zik0vcpwqf9cvc2ynh66ibjp36nq4gw55n"))))
21540 (arguments
21541 `(#:skip-build? #t
21542 #:cargo-inputs
21543 (("rust-rayon-core" ,rust-rayon-core-1))
21544 #:cargo-development-inputs
21545 (("rust-compiletest-rs" ,rust-compiletest-rs-0.2)
21546 ("rust-docopt" ,rust-docopt-0.7)
21547 ("rust-futures" ,rust-futures-0.1)
21548 ("rust-rand" ,rust-rand-0.3)
21549 ("rust-rustc-serialize" ,rust-rustc-serialize-0.3))))))
21550
21551 (define-public rust-rayon-core-1
21552 (package
21553 (name "rust-rayon-core")
21554 (version "1.7.1")
21555 (source
21556 (origin
21557 (method url-fetch)
21558 (uri (crate-uri "rayon-core" version))
21559 (file-name
21560 (string-append name "-" version ".tar.gz"))
21561 (sha256
21562 (base32
21563 "101jjwkcfw5jk31695gbdm163iicc2pz349q6l8lwj43j3c1abp9"))))
21564 (build-system cargo-build-system)
21565 (arguments
21566 `(;; One of the tests attempts to overflow the stack, but the compiler
21567 ;; has since gotten smarter and the test became defective.
21568 #:tests? #f
21569 #:cargo-inputs
21570 (("rust-crossbeam-deque" ,rust-crossbeam-deque-0.7)
21571 ("rust-crossbeam-queue" ,rust-crossbeam-queue-0.2)
21572 ("rust-crossbeam-utils" ,rust-crossbeam-utils-0.7)
21573 ("rust-lazy-static" ,rust-lazy-static-1)
21574 ("rust-num-cpus" ,rust-num-cpus-1))
21575 #:cargo-development-inputs
21576 (("rust-libc" ,rust-libc-0.2)
21577 ("rust-rand" ,rust-rand-0.7)
21578 ("rust-rand-xorshift" ,rust-rand-xorshift-0.2)
21579 ("rust-scoped-tls" ,rust-scoped-tls-1.0))))
21580 (home-page "https://github.com/rayon-rs/rayon")
21581 (synopsis "Core APIs for Rayon")
21582 (description "Core APIs for Rayon.")
21583 (license (list license:expat license:asl2.0))))
21584
21585 (define-public rust-rctree-0.3
21586 (package
21587 (name "rust-rctree")
21588 (version "0.3.3")
21589 (source
21590 (origin
21591 (method url-fetch)
21592 (uri (crate-uri "rctree" version))
21593 (file-name
21594 (string-append name "-" version ".tar.gz"))
21595 (sha256
21596 (base32
21597 "1a54z2b850albiqx9vw009p9xg363vqzh1ybkwb89zn8375jk7my"))))
21598 (build-system cargo-build-system)
21599 (home-page "https://github.com/RazrFalcon/rctree")
21600 (synopsis "DOM-like tree implemented using reference counting")
21601 (description "This package provides a @code{DOM-like} tree implemented using
21602 reference counting.")
21603 (license license:expat)))
21604
21605 (define-public rust-rdrand-0.4
21606 (package
21607 (name "rust-rdrand")
21608 (version "0.4.0")
21609 (source
21610 (origin
21611 (method url-fetch)
21612 (uri (crate-uri "rdrand" version))
21613 (file-name (string-append name "-" version ".crate"))
21614 (sha256
21615 (base32
21616 "1cjq0kwx1bk7jx3kzyciiish5gqsj7620dm43dc52sr8fzmm9037"))))
21617 (build-system cargo-build-system)
21618 (arguments
21619 `(#:skip-build? #t
21620 #:cargo-inputs
21621 (("rust-rand-core" ,rust-rand-core-0.3))))
21622 (home-page "https://github.com/nagisa/rust_rdrand/")
21623 (synopsis "Random number generator")
21624 (description
21625 "This package is an implementation of random number generator based on
21626 @code{rdrand} and @code{rdseed} instructions")
21627 (license license:isc)))
21628
21629 (define-public rust-read-color-1.0
21630 (package
21631 (name "rust-read-color")
21632 (version "1.0.0")
21633 (source
21634 (origin
21635 (method url-fetch)
21636 (uri (crate-uri "read_color" version))
21637 (file-name
21638 (string-append name "-" version ".tar.gz"))
21639 (sha256
21640 (base32
21641 "1np0pk31ak7hni4hri3m75mbf8py1wdfjshmrj5krbd4p9c8hk4z"))))
21642 (build-system cargo-build-system)
21643 (arguments `(#:skip-build? #t))
21644 (home-page
21645 "https://github.com/pistondevelopers/read_color")
21646 (synopsis
21647 "A simple library for reading hex colors")
21648 (description
21649 "This package provides a simple library for reading hex colors")
21650 (license (list license:expat license:asl2.0))))
21651
21652 (define-public rust-recycler-0.1
21653 (package
21654 (name "rust-recycler")
21655 (version "0.1.4")
21656 (source
21657 (origin
21658 (method url-fetch)
21659 (uri (crate-uri "recycler" version))
21660 (file-name
21661 (string-append name "-" version ".tar.gz"))
21662 (sha256
21663 (base32
21664 "1yll0sqswy6afk9ik7r22djqafa3wfgvgdzqqh7jbczyiqr2gp4q"))))
21665 (build-system cargo-build-system)
21666 (home-page "https://github.com/frankmcsherry/recycler")
21667 (synopsis "Rust library for recycling types containing owned memory")
21668 (description
21669 "This package provides a small Rust library for recycling types containing
21670 owned memory.")
21671 (license license:expat)))
21672
21673 ;; This package requires features which are unavailable
21674 ;; on the stable releases of Rust.
21675 (define-public rust-redox-syscall-0.1
21676 (package
21677 (name "rust-redox-syscall")
21678 (version "0.1.57")
21679 (source
21680 (origin
21681 (method url-fetch)
21682 (uri (crate-uri "redox_syscall" version))
21683 (file-name (string-append name "-" version ".crate"))
21684 (sha256
21685 (base32
21686 "1kh59fpwy33w9nwd5iyc283yglq8pf2s41hnhvl48iax9mz0zk21"))))
21687 (build-system cargo-build-system)
21688 (arguments '(#:skip-build? #t))
21689 (home-page "https://gitlab.redox-os.org/redox-os/syscall")
21690 (synopsis "Rust library to access raw Redox system calls")
21691 (description "This package provides a Rust library to access raw Redox
21692 system calls.")
21693 (license license:expat)))
21694
21695 (define-public rust-redox-termios-0.1
21696 (package
21697 (name "rust-redox-termios")
21698 (version "0.1.1")
21699 (source
21700 (origin
21701 (method url-fetch)
21702 (uri (crate-uri "redox-termios" version))
21703 (file-name (string-append name "-" version ".crate"))
21704 (sha256
21705 (base32
21706 "0xhgvdh62mymgdl3jqrngl8hr4i8xwpnbsxnldq0l47993z1r2by"))))
21707 (build-system cargo-build-system)
21708 (arguments
21709 `(#:skip-build? #t
21710 #:cargo-inputs
21711 (("rust-redox-syscall" ,rust-redox-syscall-0.1))))
21712 (home-page "https://github.com/redox-os/termios")
21713 (synopsis "Rust library to access Redox termios functions")
21714 (description
21715 "This package provides a Rust library to access Redox termios functions.")
21716 (license license:expat)))
21717
21718 (define-public rust-redox-users-0.3
21719 (package
21720 (name "rust-redox-users")
21721 (version "0.3.4")
21722 (source
21723 (origin
21724 (method url-fetch)
21725 (uri (crate-uri "redox_users" version))
21726 (file-name
21727 (string-append name "-" version ".tar.gz"))
21728 (sha256
21729 (base32
21730 "0cbl5w16l3bqm22i4vszclf6hzpljxicghmllw7j13az4s9k1ch9"))))
21731 (build-system cargo-build-system)
21732 (arguments
21733 `(#:skip-build? #t
21734 #:cargo-inputs
21735 (("rust-getrandom" ,rust-getrandom-0.1)
21736 ("rust-redox-syscall" ,rust-redox-syscall-0.1)
21737 ("rust-rust-argon2" ,rust-rust-argon2-0.7))))
21738 (home-page "https://gitlab.redox-os.org/redox-os/users")
21739 (synopsis "Access Redox users and groups")
21740 (description
21741 "This package provides a Rust library to access Redox users and groups
21742 functionality.")
21743 (license license:expat)))
21744
21745 (define-public rust-ref-cast-1.0
21746 (package
21747 (name "rust-ref-cast")
21748 (version "1.0.2")
21749 (source
21750 (origin
21751 (method url-fetch)
21752 (uri (crate-uri "ref-cast" version))
21753 (file-name
21754 (string-append name "-" version ".tar.gz"))
21755 (sha256
21756 (base32
21757 "08r6qz7228k55nlyl5v7ykdzxrasnawgzmb1jrbfbnkx2s3ifp3l"))))
21758 (build-system cargo-build-system)
21759 (arguments
21760 `(#:cargo-inputs
21761 (("rust-ref-cast-impl" ,rust-ref-cast-impl-1.0))
21762 #:cargo-development-inputs
21763 (("rust-rustversion" ,rust-rustversion-1)
21764 ("rust-trybuild" ,rust-trybuild-1))))
21765 (home-page "https://github.com/dtolnay/ref-cast")
21766 (synopsis "Safely cast &T to &U")
21767 (description
21768 "Safely cast &T to &U where the struct U contains a single field of type T.")
21769 (license (list license:expat license:asl2.0))))
21770
21771 (define-public rust-ref-cast-0.2
21772 (package
21773 (name "rust-ref-cast")
21774 (version "0.2.7")
21775 (source
21776 (origin
21777 (method url-fetch)
21778 (uri (crate-uri "ref-cast" version))
21779 (file-name
21780 (string-append name "-" version ".tar.gz"))
21781 (sha256
21782 (base32
21783 "1fcbpfb7xhr992qvyfg9hr5p63xqykjp48pm3f7a1q21vmhzksvv"))))
21784 (build-system cargo-build-system)
21785 (arguments
21786 `(#:cargo-inputs
21787 (("rust-ref-cast-impl" ,rust-ref-cast-impl-0.2))
21788 #:cargo-development-inputs
21789 (("rust-rustversion" ,rust-rustversion-0.1)
21790 ("rust-trybuild" ,rust-trybuild-1))))
21791 (home-page "https://github.com/dtolnay/ref-cast")
21792 (synopsis "Safely cast &T to &U")
21793 (description
21794 "Safely cast &T to &U where the struct U contains a single field of type T.")
21795 (license (list license:asl2.0 license:expat))))
21796
21797 (define-public rust-ref-cast-impl-1.0
21798 (package
21799 (name "rust-ref-cast-impl")
21800 (version "1.0.2")
21801 (source
21802 (origin
21803 (method url-fetch)
21804 (uri (crate-uri "ref-cast-impl" version))
21805 (file-name
21806 (string-append name "-" version ".tar.gz"))
21807 (sha256
21808 (base32
21809 "0i1i3an8si070aqg2mvz6yqc6y2pl9zhd6dd2piz17l7mdsv88bx"))))
21810 (build-system cargo-build-system)
21811 (arguments
21812 `(#:cargo-inputs
21813 (("rust-proc-macro2" ,rust-proc-macro2-1)
21814 ("rust-quote" ,rust-quote-1)
21815 ("rust-syn" ,rust-syn-1))))
21816 (home-page "https://github.com/dtolnay/ref-cast")
21817 (synopsis "Derive implementation for @code{ref_cast::RefCast}")
21818 (description
21819 "Derive implementation for @code{ref_cast::RefCast}.")
21820 (license (list license:expat license:asl2.0))))
21821
21822 (define-public rust-ref-cast-impl-0.2
21823 (package
21824 (inherit rust-ref-cast-impl-1.0)
21825 (name "rust-ref-cast-impl")
21826 (version "0.2.7")
21827 (source
21828 (origin
21829 (method url-fetch)
21830 (uri (crate-uri "ref-cast-impl" version))
21831 (file-name
21832 (string-append name "-" version ".tar.gz"))
21833 (sha256
21834 (base32
21835 "0av43xxjlinfqklb67rpj217cmaxfjsf8151gs0hbs4hnr5664ck"))))))
21836
21837 (define-public rust-regex-1
21838 (package
21839 (name "rust-regex")
21840 (version "1.3.9")
21841 (source
21842 (origin
21843 (method url-fetch)
21844 (uri (crate-uri "regex" version))
21845 (file-name
21846 (string-append name "-" version ".tar.gz"))
21847 (sha256
21848 (base32
21849 "1rnqga94ypykl2apgj26l2j1s9bvr2ix4dlzs323n6abyky80dww"))))
21850 (build-system cargo-build-system)
21851 (arguments
21852 `(#:cargo-inputs
21853 (("rust-aho-corasick" ,rust-aho-corasick-0.7)
21854 ("rust-memchr" ,rust-memchr-2)
21855 ("rust-regex-syntax" ,rust-regex-syntax-0.6)
21856 ("rust-thread-local" ,rust-thread-local-1.0))
21857 #:cargo-development-inputs
21858 (("rust-lazy-static" ,rust-lazy-static-1)
21859 ("rust-quickcheck" ,rust-quickcheck-0.8)
21860 ("rust-rand" ,rust-rand-0.6))))
21861 (home-page "https://github.com/rust-lang/regex")
21862 (synopsis "Regular expressions for Rust")
21863 (description
21864 "An implementation of regular expressions for Rust. This implementation
21865 uses finite automata and guarantees linear time matching on all inputs.")
21866 (license (list license:expat license:asl2.0))))
21867
21868 (define-public rust-regex-0.2
21869 (package
21870 (inherit rust-regex-1)
21871 (name "rust-regex")
21872 (version "0.2.11")
21873 (source
21874 (origin
21875 (method url-fetch)
21876 (uri (crate-uri "regex" version))
21877 (file-name
21878 (string-append name "-" version ".tar.gz"))
21879 (sha256
21880 (base32
21881 "1163ir1k5zjspirfjl4wqbviwrxlhmfwy95xxb69y4irkv4snack"))))
21882 (build-system cargo-build-system)
21883 (arguments
21884 `(#:skip-build? #t
21885 #:cargo-inputs
21886 (("rust-aho-corasick" ,rust-aho-corasick-0.6)
21887 ("rust-memchr" ,rust-memchr-2)
21888 ("rust-regex-syntax" ,rust-regex-syntax-0.5)
21889 ("rust-thread-local" ,rust-thread-local-0.3)
21890 ("rust-utf8-ranges" ,rust-utf8-ranges-1.0))
21891 #:cargo-development-inputs
21892 (("rust-lazy-static" ,rust-lazy-static-1)
21893 ("rust-quickcheck" ,rust-quickcheck-0.6)
21894 ("rust-rand" ,rust-rand-0.4))))))
21895
21896 (define-public rust-regex-0.1
21897 (package
21898 (inherit rust-regex-0.2)
21899 (name "rust-regex")
21900 (version "0.1.80")
21901 (source
21902 (origin
21903 (method url-fetch)
21904 (uri (crate-uri "regex" version))
21905 (file-name
21906 (string-append name "-" version ".tar.gz"))
21907 (sha256
21908 (base32
21909 "0bs036h3vzc6pj5jj4vc909s9rppq7b808ic99qn0y6gm3karm2g"))))
21910 (arguments
21911 `(#:skip-build? #t ; Can't find dependent crates.
21912 #:cargo-inputs
21913 (("rust-aho-corasick" ,rust-aho-corasick-0.5)
21914 ("rust-memchr" ,rust-memchr-0.1)
21915 ("rust-regex-syntax" ,rust-regex-syntax-0.3)
21916 ("rust-simd" ,rust-simd-0.2) ; 0.1?
21917 ("rust-thread-local" ,rust-thread-local-0.2)
21918 ("rust-utf8-ranges" ,rust-utf8-ranges-0.1))
21919 #:cargo-development-inputs
21920 (("rust-lazy-static" ,rust-lazy-static-0.1)
21921 ("rust-quickcheck" ,rust-quickcheck-0.2)
21922 ("rust-rand" ,rust-rand-0.3))))))
21923
21924 (define-public rust-regex-automata-0.1
21925 (package
21926 (name "rust-regex-automata")
21927 (version "0.1.9")
21928 (source
21929 (origin
21930 (method url-fetch)
21931 (uri (crate-uri "regex-automata" version))
21932 (file-name
21933 (string-append name "-" version ".tar.gz"))
21934 (sha256
21935 (base32
21936 "1r3aqa9c0s9sfrmd2w0mli16ldjzbar0rzb1x7srfjkasrqys7df"))))
21937 (build-system cargo-build-system)
21938 (arguments
21939 `(#:skip-build? #t
21940 #:cargo-inputs
21941 (("rust-fst" ,rust-fst-0.4)
21942 ("rust-byteorder" ,rust-byteorder-1)
21943 ("rust-regex-syntax" ,rust-regex-syntax-0.6))
21944 #:cargo-development-inputs
21945 (("rust-bstr" ,rust-bstr-0.2)
21946 ("rust-lazy-static" ,rust-lazy-static-1)
21947 ("rust-regex" ,rust-regex-1)
21948 ("rust-serde" ,rust-serde-1)
21949 ("rust-serde-bytes" ,rust-serde-bytes-0.11)
21950 ("rust-serde-derive" ,rust-serde-derive-1)
21951 ("rust-toml" ,rust-toml-0.5)))) ; 0.4
21952 (home-page "https://github.com/BurntSushi/regex-automata")
21953 (synopsis
21954 "Automata construction and matching using regular expressions")
21955 (description
21956 "Automata construction and matching using regular expressions.")
21957 (license (list license:expat license:unlicense))))
21958
21959 (define-public rust-regex-syntax-0.6
21960 (package
21961 (name "rust-regex-syntax")
21962 (version "0.6.18")
21963 (source
21964 (origin
21965 (method url-fetch)
21966 (uri (crate-uri "regex-syntax" version))
21967 (file-name (string-append name "-" version ".crate"))
21968 (sha256
21969 (base32
21970 "1s648w7rwpxnq9iqwbyy43ar4al07906jpz0jxlql23bgjwjwh96"))))
21971 (build-system cargo-build-system)
21972 (home-page "https://github.com/rust-lang/regex")
21973 (synopsis "Regular expression parser")
21974 (description
21975 "This package provides a regular expression parser.")
21976 (license (list license:asl2.0
21977 license:expat))))
21978
21979 (define-public rust-regex-syntax-0.5
21980 (package
21981 (inherit rust-regex-syntax-0.6)
21982 (name "rust-regex-syntax")
21983 (version "0.5.6")
21984 (source
21985 (origin
21986 (method url-fetch)
21987 (uri (crate-uri "regex-syntax" version))
21988 (file-name
21989 (string-append name "-" version ".tar.gz"))
21990 (sha256
21991 (base32
21992 "19zp25jr3dhmclg3qqjk3bh1yrn7bqi05zgr5v52szv3l97plw3x"))))
21993 (arguments
21994 `(#:skip-build? #t
21995 #:cargo-inputs
21996 (("rust-ucd-util" ,rust-ucd-util-0.1))))))
21997
21998 (define-public rust-regex-syntax-0.4
21999 (package
22000 (inherit rust-regex-syntax-0.6)
22001 (name "rust-regex-syntax")
22002 (version "0.4.2")
22003 (source
22004 (origin
22005 (method url-fetch)
22006 (uri (crate-uri "regex-syntax" version))
22007 (file-name
22008 (string-append name "-" version ".tar.gz"))
22009 (sha256
22010 (base32
22011 "03p24bsfg2rw2cc5h8ri4fp7j06xwyyd5grlqy0g11ixp5c1r4wf"))))
22012 (arguments
22013 `(#:cargo-development-inputs
22014 (("rust-quickcheck" ,rust-quickcheck-0.6)
22015 ("rust-rand" ,rust-rand-0.4))))))
22016
22017 (define-public rust-regex-syntax-0.3
22018 (package
22019 (inherit rust-regex-syntax-0.6)
22020 (name "rust-regex-syntax")
22021 (version "0.3.9")
22022 (source
22023 (origin
22024 (method url-fetch)
22025 (uri (crate-uri "regex-syntax" version))
22026 (file-name (string-append name "-" version ".tar.gz"))
22027 (sha256
22028 (base32
22029 "0ms9hgdhhsxw9w920i7gipydvagf100bb56jbs192rz86ln01v7r"))))
22030 (arguments
22031 `(#:cargo-development-inputs
22032 (("rust-quickcheck" ,rust-quickcheck-0.2)
22033 ("rust-rand" ,rust-rand-0.3))))))
22034
22035 (define-public rust-relative-path-1
22036 (package
22037 (name "rust-relative-path")
22038 (version "1.3.2")
22039 (source
22040 (origin
22041 (method url-fetch)
22042 (uri (crate-uri "relative_path" version))
22043 (file-name (string-append name "-" version ".tar.gz"))
22044 (sha256
22045 (base32
22046 "152zdks8chgsq4vmp562bx6whvixm7gzivab1cf8rs1r634ggbv5"))))
22047 (build-system cargo-build-system)
22048 (arguments
22049 `(#:cargo-inputs
22050 (("rust-serde" ,rust-serde-1))
22051 #:cargo-development-inputs
22052 (("rust-serde" ,rust-serde-1))))
22053 (home-page "https://docs.rs/crate/relative-path/")
22054 (synopsis "Portable, relative paths for Rust")
22055 (description "This package provides portable, relative paths for Rust.")
22056 (license (list license:expat license:asl2.0))))
22057
22058 (define-public rust-remove-dir-all-0.5
22059 (package
22060 (name "rust-remove-dir-all")
22061 (version "0.5.3")
22062 (source
22063 (origin
22064 (method url-fetch)
22065 (uri (crate-uri "remove_dir_all" version))
22066 (file-name (string-append name "-" version ".tar.gz"))
22067 (sha256
22068 (base32
22069 "1rzqbsgkmr053bxxl04vmvsd1njyz0nxvly97aip6aa2cmb15k9s"))
22070 (modules '((guix build utils)))
22071 (snippet
22072 '(begin
22073 ;; 'doctest' isn't stable until rust-1.40
22074 (substitute* "src/lib.rs"
22075 (("\\(doctest") "(test"))
22076 #t))))
22077 (build-system cargo-build-system)
22078 (arguments
22079 `(#:cargo-inputs
22080 (("rust-winapi" ,rust-winapi-0.3))
22081 #:cargo-development-inputs
22082 (("rust-doc-comment" ,rust-doc-comment-0.3))))
22083 (home-page "https://github.com/XAMPPRocky/remove_dir_all")
22084 (synopsis "Implementation of remove_dir_all for Windows")
22085 (description
22086 "This package provides a safe, reliable implementation of
22087 @code{remove_dir_all} for Windows")
22088 (license (list license:asl2.0
22089 license:expat))))
22090
22091 (define-public rust-reopen-0.3
22092 (package
22093 (name "rust-reopen")
22094 (version "0.3.0")
22095 (source
22096 (origin
22097 (method url-fetch)
22098 (uri (crate-uri "reopen" version))
22099 (file-name
22100 (string-append name "-" version ".tar.gz"))
22101 (sha256
22102 (base32
22103 "12b3mfxkwb8akdfa701nzvqr6lsc6n84vrq088gmjy8lxlmr4an6"))))
22104 (build-system cargo-build-system)
22105 (arguments
22106 `(#:skip-build? #t
22107 #:cargo-inputs
22108 (("rust-signal-hook" ,rust-signal-hook-0.1)
22109 ("rust-libc" ,rust-libc-0.2))))
22110 (home-page "https://github.com/vorner/reopen")
22111 (synopsis "File reopening utility")
22112 (description "File reopening utility.")
22113 (license (list license:asl2.0 license:expat))))
22114
22115 (define-public rust-reqwest-0.10
22116 (package
22117 (name "rust-reqwest")
22118 (version "0.10.8")
22119 (source
22120 (origin
22121 (method url-fetch)
22122 (uri (crate-uri "reqwest" version))
22123 (file-name (string-append name "-" version ".tar.gz"))
22124 (sha256
22125 (base32
22126 "07nnj0qzj8g64iagx7xzk02493yqdahqy49xa2vkif6pqmxa3sp9"))))
22127 (build-system cargo-build-system)
22128 (arguments
22129 `(#:cargo-inputs
22130 (("rust-async-compression" ,rust-async-compression-0.3)
22131 ("rust-base64" ,rust-base64-0.12)
22132 ("rust-bytes" ,rust-bytes-0.5)
22133 ("rust-cookie" ,rust-cookie-0.14)
22134 ("rust-cookie-store" ,rust-cookie-store-0.12)
22135 ("rust-encoding-rs" ,rust-encoding-rs-0.8)
22136 ("rust-futures-core" ,rust-futures-core-0.3)
22137 ("rust-futures-util" ,rust-futures-util-0.3)
22138 ("rust-http" ,rust-http-0.2)
22139 ("rust-http-body" ,rust-http-body-0.3)
22140 ("rust-hyper" ,rust-hyper-0.13)
22141 ("rust-hyper-rustls" ,rust-hyper-rustls-0.21)
22142 ("rust-hyper-tls" ,rust-hyper-tls-0.4)
22143 ("rust-ipnet" ,rust-ipnet-2)
22144 ("rust-js-sys" ,rust-js-sys-0.3)
22145 ("rust-lazy-static" ,rust-lazy-static-1)
22146 ("rust-log" ,rust-log-0.4)
22147 ("rust-mime" ,rust-mime-0.3)
22148 ("rust-mime-guess" ,rust-mime-guess-2)
22149 ("rust-native-tls" ,rust-native-tls-0.2)
22150 ("rust-percent-encoding" ,rust-percent-encoding-2)
22151 ("rust-pin-project-lite" ,rust-pin-project-lite-0.1)
22152 ("rust-rustls" ,rust-rustls-0.18)
22153 ("rust-serde" ,rust-serde-1)
22154 ("rust-serde-json" ,rust-serde-json-1)
22155 ("rust-serde-urlencoded" ,rust-serde-urlencoded-0.6)
22156 ("rust-time" ,rust-time-0.2)
22157 ("rust-tokio" ,rust-tokio-0.2)
22158 ("rust-tokio-rustls" ,rust-tokio-rustls-0.14)
22159 ("rust-tokio-socks" ,rust-tokio-socks-0.2)
22160 ("rust-tokio-tls" ,rust-tokio-tls-0.3)
22161 ("rust-trust-dns-resolver" ,rust-trust-dns-resolver-0.19)
22162 ("rust-url" ,rust-url-2)
22163 ("rust-wasm-bindgen" ,rust-wasm-bindgen-0.2)
22164 ("rust-wasm-bindgen-futures" ,rust-wasm-bindgen-futures-0.4)
22165 ("rust-web-sys" ,rust-web-sys-0.3)
22166 ("rust-webpki-roots" ,rust-webpki-roots-0.19)
22167 ("rust-winreg" ,rust-winreg-0.7))
22168 #:cargo-development-inputs
22169 (("rust-brotli" ,rust-brotli-3)
22170 ("rust-doc-comment" ,rust-doc-comment-0.3)
22171 ("rust-env-logger" ,rust-env-logger-0.7)
22172 ("rust-hyper" ,rust-hyper-0.13)
22173 ("rust-libflate" ,rust-libflate-1)
22174 ("rust-serde" ,rust-serde-1)
22175 ("rust-tokio" ,rust-tokio-0.2))))
22176 (home-page "https://github.com/seanmonstar/reqwest")
22177 (synopsis "High level HTTP client library")
22178 (description "This package provides a high level HTTP client library.")
22179 (license (list license:expat license:asl2.0))))
22180
22181 (define-public rust-resolv-conf-0.6
22182 (package
22183 (name "rust-resolv-conf")
22184 (version "0.6.3")
22185 (source
22186 (origin
22187 (method url-fetch)
22188 (uri (crate-uri "resolv-conf" version))
22189 (file-name (string-append name "-" version ".crate"))
22190 (sha256
22191 (base32
22192 "0jlzifww1h7j23jnjj49xz8q0fpd9rqpd0ks8c4y651vgw9lx0qi"))))
22193 (build-system cargo-build-system)
22194 (arguments
22195 `(#:tests? #f ; Not all test files included.
22196 #:cargo-inputs
22197 (("rust-quick-error" ,rust-quick-error-1.2)
22198 ("rust-hostname" ,rust-hostname-0.3))))
22199 (home-page "https://github.com/tailhook/resolv-conf")
22200 (synopsis "Parser for /etc/resolv.conf")
22201 (description
22202 "An /etc/resolv.conf parser crate for Rust.")
22203 (license (list license:asl2.0
22204 license:expat))))
22205
22206 (define-public rust-retain-mut-0.1
22207 (package
22208 (name "rust-retain-mut")
22209 (version "0.1.1")
22210 (source
22211 (origin
22212 (method url-fetch)
22213 (uri (crate-uri "retain_mut" version))
22214 (file-name (string-append name "-" version ".tar.gz"))
22215 (sha256
22216 (base32
22217 "0cgmm1q7sr31r9wk7syh53ipgqpl37jzsvahdhmwrsi6mmcdc1g0"))))
22218 (build-system cargo-build-system)
22219 (home-page "https://github.com/upsuper/retain_mut")
22220 (synopsis "Mutable borrow for the retain predicate")
22221 (description "This package provides retain_mut method that has the same
22222 functionality as retain but gives mutable borrow to the predicate.")
22223 (license license:expat)))
22224
22225 (define-public rust-ring-0.16
22226 (package
22227 (name "rust-ring")
22228 (version "0.16.12")
22229 (source
22230 (origin
22231 (method url-fetch)
22232 (uri (crate-uri "ring" version))
22233 (file-name (string-append name "-" version ".tar.gz"))
22234 (sha256
22235 (base32 "033sb54dlmiqdivc8v9ykkq3v08lzy0syjf5k1nag2gfcknai98v"))))
22236 (build-system cargo-build-system)
22237 (arguments
22238 `(#:cargo-inputs
22239 (("rust-lazy-static" ,rust-lazy-static-1.3)
22240 ("rust-libc" ,rust-libc-0.2)
22241 ("rust-spin" ,rust-spin-0.5)
22242 ("rust-untrusted" ,rust-untrusted-0.7)
22243 ("rust-web-sys" ,rust-web-sys-0.3)
22244 ("rust-winapi" ,rust-winapi-0.3)
22245 ;; build dependencies
22246 ("rust-cc" ,rust-cc-1))
22247 #:cargo-development-inputs
22248 (("rust-libc" ,rust-libc-0.2)
22249 ("rust-wasm-bindgen-test" ,rust-wasm-bindgen-test-0.2))))
22250 (home-page "https://github.com/briansmith/ring")
22251 (synopsis "Safe, fast, small crypto using Rust")
22252 (description "This package provided safe, fast, small crypto using Rust.")
22253 (license (list license:isc license:openssl))))
22254
22255 (define-public rust-ring-0.14
22256 (package
22257 (inherit rust-ring-0.16)
22258 (name "rust-ring")
22259 (version "0.14.6")
22260 (source
22261 (origin
22262 (method url-fetch)
22263 (uri (crate-uri "ring" version))
22264 (file-name
22265 (string-append name "-" version ".tar.gz"))
22266 (sha256
22267 (base32
22268 "0g091akf4dpg9qj05z3gc4nlrs57mjj2bqab98gaqp79wf3c2ss2"))))
22269 (arguments
22270 `(#:cargo-inputs
22271 (("rust-lazy-static" ,rust-lazy-static-1)
22272 ("rust-libc" ,rust-libc-0.2)
22273 ("rust-spin" ,rust-spin-0.5)
22274 ("rust-untrusted" ,rust-untrusted-0.6)
22275 ("rust-winapi" ,rust-winapi-0.3)
22276 ("rust-cc" ,rust-cc-1))))))
22277
22278 (define-public rust-ring-0.13
22279 (package/inherit rust-ring-0.16
22280 (name "rust-ring")
22281 (version "0.13.5")
22282 (source
22283 (origin
22284 (method url-fetch)
22285 (uri (crate-uri "ring" version))
22286 (file-name (string-append name "-" version ".tar.gz"))
22287 (sha256
22288 (base32 "12j580by6a438i5mw3136cj3lxylywymdr5p8rqlkwrm5s5bck9c"))))
22289 (build-system cargo-build-system)
22290 (arguments
22291 `(#:cargo-inputs
22292 (("rust-lazy-static" ,rust-lazy-static-1)
22293 ("rust-libc" ,rust-libc-0.2)
22294 ("rust-untrusted" ,rust-untrusted-0.6)
22295 ;; build dependencies
22296 ("rust-cc" ,rust-cc-1))))))
22297
22298 (define-public rust-rle-decode-fast-1
22299 (package
22300 (name "rust-rle-decode-fast")
22301 (version "1.0.1")
22302 (source
22303 (origin
22304 (method url-fetch)
22305 (uri (crate-uri "rle-decode-fast" version))
22306 (file-name (string-append name "-" version ".tar.gz"))
22307 (sha256
22308 (base32 "1b4h7qs4mssc5dnlhs3f91ya8pb40bv72zzshl18gify2jllzgna"))))
22309 (build-system cargo-build-system)
22310 (arguments
22311 `(#:cargo-inputs
22312 (("rust-criterion" ,rust-criterion-0.2))))
22313 (home-page "https://github.com/WanzenBug/rle-decode-helper")
22314 (synopsis "Implement decoding for Run Length Encoded data in Rust")
22315 (description
22316 "This crate provides a fast way to implement any kind of decoding
22317 for Run Length Encoded data in Rust.
22318
22319 Writing a fast decoder that is also safe can be quite challenging, so
22320 this crate is here to save you the hassle of maintaining and testing
22321 your own implementation.")
22322 (license (list license:expat license:asl2.0))))
22323
22324 (define-public rust-rls-span-0.5
22325 (package
22326 (name "rust-rls-span")
22327 (version "0.5.2")
22328 (source
22329 (origin
22330 (method url-fetch)
22331 (uri (crate-uri "rls-span" version))
22332 (file-name
22333 (string-append name "-" version ".tar.gz"))
22334 (sha256
22335 (base32
22336 "0d6rwya5zsyw6vmrj8d8g3fgvic0xyp1lvfhv62vswk2dzavxsgj"))))
22337 (build-system cargo-build-system)
22338 (arguments
22339 `(#:cargo-inputs
22340 (("rust-rustc-serialize" ,rust-rustc-serialize-0.3)
22341 ("rust-serde" ,rust-serde-1)
22342 ("rust-serde-derive" ,rust-serde-derive-1))))
22343 (home-page "https://github.com/rust-lang/rls")
22344 (synopsis "Types for identifying code spans/ranges")
22345 (description
22346 "Identify Rust code spans and ranges using these types - for use with the
22347 Rust Language Server.")
22348 (license (list license:expat license:asl2.0))))
22349
22350 (define-public rust-ron-0.5
22351 (package
22352 (name "rust-ron")
22353 (version "0.5.1")
22354 (source
22355 (origin
22356 (method url-fetch)
22357 (uri (crate-uri "ron" version))
22358 (file-name (string-append name "-" version ".tar.gz"))
22359 (sha256 (base32 "1mb2bavvp8jg5wx0kx9n45anrsbjwhjzddim987bjaa11hg45kif"))))
22360 (build-system cargo-build-system)
22361 (arguments
22362 `(#:cargo-inputs
22363 (("rust-base64" ,rust-base64-0.10)
22364 ("rust-bitflags" ,rust-bitflags-1)
22365 ("rust-serde" ,rust-serde-1))
22366 #:cargo-development-inputs
22367 (("rust-serde-bytes" ,rust-serde-bytes-0.10)
22368 ("rust-serde-json" ,rust-serde-json-1))))
22369 (home-page "https://github.com/ron-rs/ron")
22370 (synopsis "Rusty Object Notation")
22371 (description "This package provides Rusty Object Notation (RON).")
22372 (license (list license:expat license:asl2.0))))
22373
22374 (define-public rust-ron-0.4
22375 (package
22376 (inherit rust-ron-0.5)
22377 (name "rust-ron")
22378 (version "0.4.2")
22379 (source
22380 (origin
22381 (method url-fetch)
22382 (uri (crate-uri "ron" version))
22383 (file-name
22384 (string-append name "-" version ".tar.gz"))
22385 (sha256
22386 (base32
22387 "13ypx80ac1minrmn9w9sgnbxlknwiv7qhx5n50azh0s484j2mx8p"))))
22388 (arguments
22389 `(#:skip-build? #t
22390 #:cargo-inputs
22391 (("rust-base64" ,rust-base64-0.10)
22392 ("rust-bitflags" ,rust-bitflags-1)
22393 ("rust-serde" ,rust-serde-1))
22394 #:cargo-development-inputs
22395 (;("rust-serde-bytes" ,rust-serde-bytes-0.10)
22396 ("rust-serde-json" ,rust-serde-json-1))))))
22397
22398 (define-public rust-rspec-1
22399 (package
22400 (name "rust-rspec")
22401 (version "1.0.0-beta.4")
22402 (source
22403 (origin
22404 (method url-fetch)
22405 (uri (crate-uri "rspec" version))
22406 (file-name (string-append name "-" version ".tar.gz"))
22407 (sha256
22408 (base32 "1abfzwkbxlwahb243k8d3fp6i135lx1aqmbfl79w9zlpng182ndk"))))
22409 (build-system cargo-build-system)
22410 (arguments
22411 `(#:skip-build? #t ;; TODO unpackaged dev-dependencies
22412 #:cargo-inputs
22413 (("rust-colored" ,rust-colored-1)
22414 ("rust-derive-new" ,rust-derive-new-0.5)
22415 ("rust-derive-builder" ,rust-derive-builder-0.5)
22416 ("rust-expectest" ,rust-expectest-0.9)
22417 ("rust-rayon" ,rust-rayon-0.8))
22418 #:cargo-development-inputs
22419 (("rust-clippy" ,rust-clippy-0.0)))) ;; requires 0.0.153
22420 (home-page "https://github.com/rust-rspec/rspec")
22421 (synopsis "Write Rspec-like tests with stable rust")
22422 (description "This package helps writing Rspec-like tests with stable
22423 rust.")
22424 (license license:mpl2.0)))
22425
22426 (define-public rust-rpassword-5
22427 (package
22428 (name "rust-rpassword")
22429 (version "5.0.0")
22430 (source
22431 (origin
22432 (method url-fetch)
22433 (uri (crate-uri "rpassword" version))
22434 (file-name (string-append name "-" version ".tar.gz"))
22435 (sha256
22436 (base32 "1j96nc3dmqhxwb4ql50r5xjs0imwr2x6mrj02mj9i7grq1zj6mfp"))))
22437 (build-system cargo-build-system)
22438 (arguments
22439 `(#:skip-build? #t
22440 #:cargo-inputs
22441 (("rust-libc" ,rust-libc-0.2)
22442 ("rust-winapi" ,rust-winapi-0.3))))
22443 (home-page "https://github.com/conradkleinespel/rpassword")
22444 (synopsis "Read passwords in Rust console applications")
22445 (description "This package provides a crate for reading passwords in
22446 console applications.")
22447 (license license:asl2.0)))
22448
22449 (define-public rust-rpassword-4
22450 (package
22451 (inherit rust-rpassword-5)
22452 (name "rust-rpassword")
22453 (version "4.0.5")
22454 (source
22455 (origin
22456 (method url-fetch)
22457 (uri (crate-uri "rpassword" version))
22458 (file-name (string-append name "-" version ".tar.gz"))
22459 (sha256
22460 (base32 "17z99xazhhbaczw0ib1vnnq450j0zacdn8b2zcbdir68sdbicdwr"))))))
22461
22462 (define-public rust-rpassword-3
22463 (package
22464 (inherit rust-rpassword-4)
22465 (name "rust-rpassword")
22466 (version "3.0.2")
22467 (source
22468 (origin
22469 (method url-fetch)
22470 (uri (crate-uri "rpassword" version))
22471 (file-name
22472 (string-append name "-" version ".tar.gz"))
22473 (sha256
22474 (base32
22475 "0vkifbbs160d7i7wy3kb0vw9mbf3pf470hg8f623rjkzmsyafky3"))))
22476 (arguments
22477 `(#:cargo-inputs
22478 (("rust-kernel32-sys" ,rust-kernel32-sys-0.2)
22479 ("rust-libc" ,rust-libc-0.2)
22480 ("rust-winapi" ,rust-winapi-0.2))))))
22481
22482 (define-public rust-rpassword-2
22483 (package
22484 (inherit rust-rpassword-3)
22485 (name "rust-rpassword")
22486 (version "2.1.0")
22487 (source
22488 (origin
22489 (method url-fetch)
22490 (uri (crate-uri "rpassword" version))
22491 (file-name
22492 (string-append name "-" version ".tar.gz"))
22493 (sha256
22494 (base32
22495 "1v255xqkig5lwnczvm3achydhxx6kf9jcdxdlgzndgpd18bp6x6k"))))))
22496
22497 (define-public rust-rusqlite-0.19
22498 (package
22499 (name "rust-rusqlite")
22500 (version "0.19.0")
22501 (source
22502 (origin
22503 (method url-fetch)
22504 (uri (crate-uri "rusqlite" version))
22505 (file-name (string-append name "-" version ".tar.gz"))
22506 (sha256
22507 (base32 "19xq7s0kzhlljm3hqx0vidr91ia8hl49r4m5gwdj9dyywgks5g3f"))))
22508 (build-system cargo-build-system)
22509 (inputs
22510 `(("sqlite" ,sqlite)))
22511 (arguments
22512 `(#:cargo-inputs
22513 (("rust-bitflags" ,rust-bitflags-1)
22514 ("rust-byteorder" ,rust-byteorder-1)
22515 ("rust-chrono" ,rust-chrono-0.4)
22516 ("rust-csv" ,rust-csv-1.1)
22517 ("rust-fallible-iterator" ,rust-fallible-iterator-0.2)
22518 ("rust-fallible-streaming-iterator"
22519 ,rust-fallible-streaming-iterator-0.1)
22520 ("rust-lazy-static" ,rust-lazy-static-1)
22521 ("rust-libsqlite3-sys" ,rust-libsqlite3-sys-0.15)
22522 ("rust-lru-cache" ,rust-lru-cache-0.1)
22523 ("rust-memchr" ,rust-memchr-2)
22524 ("rust-serde-json" ,rust-serde-json-1)
22525 ("rust-time" ,rust-time-0.1)
22526 ("rust-url" ,rust-url-1)
22527 ("rust-uuid" ,rust-uuid-0.7))
22528 #:cargo-development-inputs
22529 (("rust-lazy-static" ,rust-lazy-static-1)
22530 ("rust-regex" ,rust-regex-1)
22531 ("rust-tempdir" ,rust-tempdir-0.3)
22532 ("rust-unicase" ,rust-unicase-2)
22533 ("rust-uuid" ,rust-uuid-0.7))))
22534 (home-page "https://github.com/rusqlite/rusqlite")
22535 (synopsis "Wrapper for SQLite")
22536 (description "This prackage provides a wrapper for SQLite.")
22537 (license license:expat)))
22538
22539 (define-public rust-rust-argon2-0.7
22540 (package
22541 (name "rust-rust-argon2")
22542 (version "0.7.0")
22543 (source
22544 (origin
22545 (method url-fetch)
22546 (uri (crate-uri "rust-argon2" version))
22547 (file-name
22548 (string-append name "-" version ".tar.gz"))
22549 (sha256
22550 (base32
22551 "05xh5wfxgzq3b6jys8r34f3hmqqfs8ylvf934n9z87wfv95szj1b"))))
22552 (build-system cargo-build-system)
22553 (arguments
22554 `(#:skip-build? #t
22555 #:cargo-inputs
22556 (("rust-constant-time-eq" ,rust-constant-time-eq-0.1)
22557 ("rust-base64" ,rust-base64-0.11)
22558 ("rust-blake2b-simd" ,rust-blake2b-simd-0.5)
22559 ("rust-crossbeam-utils" ,rust-crossbeam-utils-0.7))))
22560 (home-page "https://github.com/sru-systems/rust-argon2")
22561 (synopsis
22562 "Rust implementation of the Argon2 password hashing function")
22563 (description
22564 "This package provides a Rust implementation of the Argon2 password
22565 hashing function.")
22566 (license (list license:expat license:asl2.0))))
22567
22568 (define-public rust-rust-argon2-0.5
22569 (package
22570 (name "rust-rust-argon2")
22571 (version "0.5.1")
22572 (source
22573 (origin
22574 (method url-fetch)
22575 (uri (crate-uri "rust-argon2" version))
22576 (file-name
22577 (string-append name "-" version ".tar.gz"))
22578 (sha256
22579 (base32
22580 "1krjkmyfn37hy7sfs6lqia0fsvw130nn1z2850glsjcva7pym92c"))))
22581 (build-system cargo-build-system)
22582 (arguments
22583 `(#:skip-build? #t
22584 #:cargo-inputs
22585 (("rust-base64" ,rust-base64-0.10)
22586 ("rust-blake2b-simd" ,rust-blake2b-simd-0.5)
22587 ("rust-crossbeam-utils" ,rust-crossbeam-utils-0.6))
22588 #:cargo-development-inputs
22589 (("rust-hex" ,rust-hex-0.3))))
22590 (home-page "https://github.com/sru-systems/rust-argon2")
22591 (synopsis "Rust implementation of the Argon2 password hashing function")
22592 (description "This package contains a rust implementation of the Argon2
22593 password hashing function.")
22594 (license (list license:expat license:asl2.0))))
22595
22596 (define-public rust-rust-base58-0.0
22597 (package
22598 (name "rust-rust-base58")
22599 (version "0.0.4")
22600 (source
22601 (origin
22602 (method url-fetch)
22603 (uri (crate-uri "rust-base58" version))
22604 (file-name
22605 (string-append name "-" version ".tar.gz"))
22606 (sha256
22607 (base32
22608 "0fa4y2jjjmg1a0cr3gz4z8rkic0hx2vx5nm23za9lwf6rlgvj4xk"))
22609 (modules '((guix build utils)))
22610 (snippet
22611 '(begin
22612 ;; Otherwise we get an error: no method named `gen_iter` found
22613 ;; for type `rand::prelude::ThreadRng`
22614 (substitute* "Cargo.toml"
22615 (("rand.*") "rand = \"<0.6\"\n"))
22616 #t))))
22617 (build-system cargo-build-system)
22618 (arguments
22619 `(#:cargo-inputs
22620 (("rust-num" ,rust-num-0.1))
22621 #:cargo-development-inputs
22622 (("rust-rand" ,rust-rand-0.4))))
22623 (home-page "https://github.com/nham/rust-base58")
22624 (synopsis
22625 "Simple library for converting to and from base-58 strings")
22626 (description
22627 "Convert to and from base-58 strings with a simple Rust api.
22628 Currently the conversion uses the Bitcoin base58 alphabet.")
22629 (license (list license:asl2.0 license:expat))))
22630
22631 (define-public rust-rust-hawktracer-0.7
22632 (package
22633 (name "rust-rust-hawktracer")
22634 (version "0.7.0")
22635 (source
22636 (origin
22637 (method url-fetch)
22638 (uri (crate-uri "rust_hawktracer" version))
22639 (file-name
22640 (string-append name "-" version ".tar.gz"))
22641 (sha256
22642 (base32
22643 "1h9an3b73pmhhpzc2kk93nh93lplkvsffysj0rp6rxi7p4lhlj73"))))
22644 (build-system cargo-build-system)
22645 (arguments
22646 `(#:skip-build? #t
22647 #:cargo-inputs
22648 (("rust-rust-hawktracer-normal-macro"
22649 ,rust-rust-hawktracer-normal-macro-0.4)
22650 ("rust-rust-hawktracer-proc-macro"
22651 ,rust-rust-hawktracer-proc-macro-0.4))))
22652 (home-page "https://github.com/AlexEne/rust_hawktracer")
22653 (synopsis "Rust bindings for hawktracer profiling library")
22654 (description
22655 "Rust bindings for hawktracer profiling library.")
22656 (license (list license:expat license:asl2.0))))
22657
22658 (define-public rust-rust-hawktracer-proc-macro-0.4
22659 (package
22660 (name "rust-rust-hawktracer-proc-macro")
22661 (version "0.4.1")
22662 (source
22663 (origin
22664 (method url-fetch)
22665 (uri (crate-uri "rust_hawktracer_proc_macro" version))
22666 (file-name
22667 (string-append name "-" version ".tar.gz"))
22668 (sha256
22669 (base32
22670 "1qfksscfv8rbbzv2zb0i9sbbqmig0dr0vrma3c1kzsfmpsynlqnb"))))
22671 (build-system cargo-build-system)
22672 (arguments
22673 `(#:skip-build? #t
22674 #:cargo-inputs
22675 (("rust-rust-hawktracer-sys" ,rust-rust-hawktracer-sys-0.4))))
22676 (home-page "https://github.com/AlexEne/rust_hawktracer_proc_macro")
22677 (synopsis
22678 "Helper crate for hawktracer profiling library")
22679 (description
22680 "This package is a helper crate for hawktracer profiling library.")
22681 (license (list license:expat license:asl2.0))))
22682
22683 (define-public rust-rust-hawktracer-normal-macro-0.4
22684 (package
22685 (name "rust-rust-hawktracer-normal-macro")
22686 (version "0.4.1")
22687 (source
22688 (origin
22689 (method url-fetch)
22690 (uri (crate-uri
22691 "rust_hawktracer_normal_macro"
22692 version))
22693 (file-name
22694 (string-append name "-" version ".tar.gz"))
22695 (sha256
22696 (base32
22697 "1sfjmipdbb5s498c150czr6wihjlkwwgla2jyg3cs7cyjich0mwa"))))
22698 (build-system cargo-build-system)
22699 (arguments
22700 `(#:skip-build? #t
22701 #:cargo-inputs
22702 (("rust-rust-hawktracer-sys" ,rust-rust-hawktracer-sys-0.4))))
22703 (home-page "https://github.com/AlexEne/rust_hawktracer_normal_macro")
22704 (synopsis "Helper crate for hawktracer profiling library")
22705 (description
22706 "This package provides a helper crate for hawktracer profiling library.")
22707 (license (list license:expat license:asl2.0))))
22708
22709 (define-public rust-rust-hawktracer-sys-0.4
22710 (package
22711 (name "rust-rust-hawktracer-sys")
22712 (version "0.4.2")
22713 (source
22714 (origin
22715 (method url-fetch)
22716 (uri (crate-uri "rust_hawktracer_sys" version))
22717 (file-name
22718 (string-append name "-" version ".tar.gz"))
22719 (sha256
22720 (base32
22721 "15acrj881y2g7cwsgf1nr22cixrknp8m4x08dkx1an6zf4q8bk37"))))
22722 (build-system cargo-build-system)
22723 (arguments
22724 `(#:skip-build? #t
22725 #:cargo-inputs
22726 (("rust-cmake" ,rust-cmake-0.1)
22727 ("rust-pkg-config" ,rust-pkg-config-0.3)
22728 ("rust-bindgen" ,rust-bindgen-0.37)
22729 ("rust-itertools" ,rust-itertools-0.8))))
22730 (home-page "https://github.com/AlexEne/rust_hawktracer_sys")
22731 (synopsis
22732 "Sys crate for the rust_hawktracer library")
22733 (description
22734 "This package provides a sys crate for the rust_hawktracer library.")
22735 (license (list license:expat license:asl2.0))))
22736
22737 (define-public rust-rustc-ap-arena-654
22738 (package
22739 (name "rust-rustc-ap-arena")
22740 (version "654.0.0")
22741 (source
22742 (origin
22743 (method url-fetch)
22744 (uri (crate-uri "rustc-ap-arena" version))
22745 (file-name
22746 (string-append name "-" version ".tar.gz"))
22747 (sha256
22748 (base32
22749 "18yc4i5m2vf6w8na29i5jv8l4l0yknsf6xn0z2mk7mfz1nxwzpw1"))))
22750 (build-system cargo-build-system)
22751 (arguments
22752 `(#:skip-build? #t
22753 #:cargo-inputs
22754 (("rust-rustc-ap-rustc-data-structures"
22755 ,rust-rustc-ap-rustc-data-structures-654)
22756 ("rust-smallvec" ,rust-smallvec-1))))
22757 (home-page "https://github.com/alexcrichton/rustc-auto-publish")
22758 (synopsis
22759 "Automatically published version of the arena package used in rustc")
22760 (description
22761 "Use the arena library used in the Rust compiler with this crate.
22762 It is automatically published using the compiler repository at
22763 @url{https://www.github.com/rust-lang/rust}")
22764 (license (list license:expat license:asl2.0))))
22765
22766 (define-public rust-rustc-ap-graphviz-654
22767 (package
22768 (name "rust-rustc-ap-graphviz")
22769 (version "654.0.0")
22770 (source
22771 (origin
22772 (method url-fetch)
22773 (uri (crate-uri "rustc-ap-graphviz" version))
22774 (file-name
22775 (string-append name "-" version ".tar.gz"))
22776 (sha256
22777 (base32
22778 "1z8rs3k9zcd1i2clrnzgvfaq1q05m02wjcyy3d9zk9qln03vp43l"))))
22779 (build-system cargo-build-system)
22780 (home-page "https://github.com/alexcrichton/rustc-auto-publish")
22781 (synopsis
22782 "Automatically published versions of the graphviz crate used in rustc")
22783 (description
22784 "Use the graphviz library used in the Rust compiler with this crate.
22785 It is automatically published using the compiler repository at
22786 @url{https://www.github.com/rust-lang/rust}")
22787 (license (list license:expat license:asl2.0))))
22788
22789 (define-public rust-rustc-ap-rustc-ast-654
22790 (package
22791 (name "rust-rustc-ap-rustc-ast")
22792 (version "654.0.0")
22793 (source
22794 (origin
22795 (method url-fetch)
22796 (uri (crate-uri "rustc-ap-rustc_ast" version))
22797 (file-name
22798 (string-append name "-" version ".tar.gz"))
22799 (sha256
22800 (base32
22801 "0n4yhkd7x0c3nqyqz99lwjiix7mf1j5xbkn9fj90h4fxp3did7qq"))))
22802 (build-system cargo-build-system)
22803 (arguments
22804 `(#:skip-build? #t
22805 #:cargo-inputs
22806 (("rust-bitflags" ,rust-bitflags-1)
22807 ("rust-log" ,rust-log-0.4)
22808 ("rust-rustc-ap-rustc-data-structures"
22809 ,rust-rustc-ap-rustc-data-structures-654)
22810 ("rust-rustc-ap-rustc-index" ,rust-rustc-ap-rustc-index-654)
22811 ("rust-rustc-ap-rustc-lexer" ,rust-rustc-ap-rustc-lexer-654)
22812 ("rust-rustc-ap-rustc-macros" ,rust-rustc-ap-rustc-macros-654)
22813 ("rust-rustc-ap-serialize" ,rust-rustc-ap-serialize-654)
22814 ("rust-rustc-ap-rustc-span" ,rust-rustc-ap-rustc-span-654)
22815 ("rust-scoped-tls" ,rust-scoped-tls-1.0)
22816 ("rust-smallvec" ,rust-smallvec-1))))
22817 (home-page "https://github.com/alexcrichton/rustc-auto-publish")
22818 (synopsis
22819 "Automatically published version of the Rust ast used in rustc")
22820 (description
22821 "Use the Rust ast used in the Rust compiler with this crate.
22822 It is automatically published using the compiler repository at
22823 @url{https://www.github.com/rust-lang/rust}")
22824 (license (list license:expat license:asl2.0))))
22825
22826 (define-public rust-rustc-ap-rustc-data-structures-654
22827 (package
22828 (name "rust-rustc-ap-rustc-data-structures")
22829 (version "654.0.0")
22830 (source
22831 (origin
22832 (method url-fetch)
22833 (uri (crate-uri "rustc-ap-rustc_data_structures" version))
22834 (file-name
22835 (string-append name "-" version ".tar.gz"))
22836 (sha256
22837 (base32
22838 "0fhppy18n1i2iykdihfs05d6s1ivwz882ipc9cpnjcvqcsbhj4yj"))))
22839 (build-system cargo-build-system)
22840 (arguments
22841 `(#:skip-build? #t
22842 #:cargo-inputs
22843 (("rust-bitflags" ,rust-bitflags-1)
22844 ("rust-cfg-if" ,rust-cfg-if-0.1)
22845 ("rust-crossbeam-utils" ,rust-crossbeam-utils-0.7)
22846 ("rust-ena" ,rust-ena-0.13)
22847 ("rust-indexmap" ,rust-indexmap-1)
22848 ("rust-jobserver" ,rust-jobserver-0.1)
22849 ("rust-lazy-static" ,rust-lazy-static-1)
22850 ("rust-libc" ,rust-libc-0.2)
22851 ("rust-log" ,rust-log-0.4)
22852 ("rust-measureme" ,rust-measureme-0.7)
22853 ("rust-parking-lot" ,rust-parking-lot-0.10)
22854 ("rust-rustc-ap-graphviz" ,rust-rustc-ap-graphviz-654)
22855 ("rust-rustc-ap-rustc-index" ,rust-rustc-ap-rustc-index-654)
22856 ("rust-rustc-ap-serialize" ,rust-rustc-ap-serialize-654)
22857 ("rust-rustc-hash" ,rust-rustc-hash-1)
22858 ("rust-rustc-rayon" ,rust-rustc-rayon-0.3)
22859 ("rust-rustc-rayon-core" ,rust-rustc-rayon-core-0.3)
22860 ("rust-smallvec" ,rust-smallvec-1)
22861 ("rust-stable-deref-trait" ,rust-stable-deref-trait-1)
22862 ("rust-winapi" ,rust-winapi-0.3))))
22863 (home-page "https://github.com/alexcrichton/rustc-auto-publish")
22864 (synopsis "Automatically published versions of rustc data structures")
22865 (description
22866 "Use data structures used in the Rust compiler with this crate.
22867 It is automatically published using the compiler repository at
22868 @url{https://www.github.com/rust-lang/rust}.")
22869 (license (list license:expat license:asl2.0))))
22870
22871 (define-public rust-rustc-ap-rustc-index-654
22872 (package
22873 (name "rust-rustc-ap-rustc-index")
22874 (version "654.0.0")
22875 (source
22876 (origin
22877 (method url-fetch)
22878 (uri (crate-uri "rustc-ap-rustc_index" version))
22879 (file-name
22880 (string-append name "-" version ".tar.gz"))
22881 (sha256
22882 (base32
22883 "0qqnvdn3zbwrn884ziw0nrmi1wqmr9yp8js7whw6y8nzdhz0q8ij"))))
22884 (build-system cargo-build-system)
22885 (arguments
22886 `(#:skip-build? #t
22887 #:cargo-inputs
22888 (("rust-rustc-ap-serialize" ,rust-rustc-ap-serialize-654)
22889 ("rust-smallvec" ,rust-smallvec-1))))
22890 (home-page "https://github.com/alexcrichton/rustc-auto-publish")
22891 (synopsis
22892 "Automatically published version of the types of indexes in rustc")
22893 (description
22894 "Use the types of index used in the Rust compiler with this crate.
22895 It is automatically published using the compiler repository at
22896 @url{https://www.github.com/rust-lang/rust}")
22897 (license (list license:expat license:asl2.0))))
22898
22899 (define-public rust-rustc-ap-rustc-lexer-654
22900 (package
22901 (name "rust-rustc-ap-rustc-lexer")
22902 (version "654.0.0")
22903 (source
22904 (origin
22905 (method url-fetch)
22906 (uri (crate-uri "rustc-ap-rustc_lexer" version))
22907 (file-name
22908 (string-append name "-" version ".tar.gz"))
22909 (sha256
22910 (base32
22911 "19bx2z4gxxzqfjh9m11jp52lgdzz0k5fb0p1ad739bdc5cm4sciv"))))
22912 (build-system cargo-build-system)
22913 (arguments
22914 `(#:cargo-inputs
22915 (("rust-unicode-xid" ,rust-unicode-xid-0.2))))
22916 (home-page "https://github.com/alexcrichton/rustc-auto-publish")
22917 (synopsis "Automatically published versions of rustc macros")
22918 (description
22919 "Use the lexer used in the Rust compiler with this crate.
22920 It is automatically published using the compiler repository at
22921 @url{https://www.github.com/rust-lang/rust}.")
22922 (license (list license:expat license:asl2.0))))
22923
22924 (define-public rust-rustc-ap-rustc-macros-654
22925 (package
22926 (name "rust-rustc-ap-rustc-macros")
22927 (version "654.0.0")
22928 (source
22929 (origin
22930 (method url-fetch)
22931 (uri (crate-uri "rustc-ap-rustc_macros" version))
22932 (file-name
22933 (string-append name "-" version ".tar.gz"))
22934 (sha256
22935 (base32
22936 "03zfp8a10jz43z8lsx1drx7g5jimxmbw4w7hs13yvczismb6qs2r"))))
22937 (build-system cargo-build-system)
22938 (arguments
22939 `(#:skip-build? #t
22940 #:cargo-inputs
22941 (("rust-proc-macro2" ,rust-proc-macro2-1)
22942 ("rust-quote" ,rust-quote-1)
22943 ("rust-syn" ,rust-syn-1)
22944 ("rust-synstructure" ,rust-synstructure-0.12))))
22945 (home-page "https://github.com/alexcrichton/rustc-auto-publish")
22946 (synopsis "Automatically published versions of rustc macros")
22947 (description
22948 "Use macros used in the Rust compiler with this crate.
22949 It is automatically published using the compiler repository at
22950 @url{https://www.github.com/rust-lang/rust}.")
22951 (license (list license:expat license:asl2.0))))
22952
22953 (define-public rust-rustc-ap-rustc-span-654
22954 (package
22955 (name "rust-rustc-ap-rustc-span")
22956 (version "654.0.0")
22957 (source
22958 (origin
22959 (method url-fetch)
22960 (uri (crate-uri "rustc-ap-rustc_span" version))
22961 (file-name
22962 (string-append name "-" version ".tar.gz"))
22963 (sha256
22964 (base32
22965 "0hj23syxxqqmk1y4kdvb0cb0xxi8wy429hhyd27bbmpya1h18j56"))))
22966 (build-system cargo-build-system)
22967 (arguments
22968 `(#:skip-build? #t
22969 #:cargo-inputs
22970 (("rust-cfg-if" ,rust-cfg-if-0.1)
22971 ("rust-log" ,rust-log-0.4)
22972 ("rust-md-5" ,rust-md-5-0.8)
22973 ("rust-rustc-ap-arena" ,rust-rustc-ap-arena-654)
22974 ("rust-rustc-ap-rustc-data-structures"
22975 ,rust-rustc-ap-rustc-data-structures-654)
22976 ("rust-rustc-ap-rustc-index" ,rust-rustc-ap-rustc-index-654)
22977 ("rust-rustc-ap-rustc-macros" ,rust-rustc-ap-rustc-macros-654)
22978 ("rust-rustc-ap-serialize" ,rust-rustc-ap-serialize-654)
22979 ("rust-scoped-tls" ,rust-scoped-tls-1.0)
22980 ("rust-sha-1" ,rust-sha-1-0.8)
22981 ("rust-unicode-width" ,rust-unicode-width-0.1))))
22982 (home-page "https://github.com/alexcrichton/rustc-auto-publish")
22983 (synopsis
22984 "Automatically published version of the source code spans used in rustc")
22985 (description
22986 "Use the spans used in the Rust compiler to represent source code with
22987 this crate. It is automatically published using the compiler repository at
22988 @url{https://www.github.com/rust-lang/rust}")
22989 (license (list license:expat license:asl2.0))))
22990
22991 (define-public rust-rustc-ap-rustc-target-654
22992 (package
22993 (name "rust-rustc-ap-rustc-target")
22994 (version "654.0.0")
22995 (source
22996 (origin
22997 (method url-fetch)
22998 (uri (crate-uri "rustc-ap-rustc_target" version))
22999 (file-name
23000 (string-append name "-" version ".tar.gz"))
23001 (sha256
23002 (base32
23003 "0i579l4jx4ky5wm0ah8zdy6dd6201rii6rv1wc4bi209ixwjikr8"))))
23004 (build-system cargo-build-system)
23005 (arguments
23006 `(#:skip-build? #t
23007 #:cargo-inputs
23008 (("rust-bitflags" ,rust-bitflags-1)
23009 ("rust-log" ,rust-log-0.4)
23010 ("rust-rustc-ap-rustc-data-structures"
23011 ,rust-rustc-ap-rustc-data-structures-654)
23012 ("rust-rustc-ap-rustc-index" ,rust-rustc-ap-rustc-index-654)
23013 ("rust-rustc-ap-rustc-macros" ,rust-rustc-ap-rustc-macros-654)
23014 ("rust-rustc-ap-serialize" ,rust-rustc-ap-serialize-654)
23015 ("rust-rustc-ap-rustc-span" ,rust-rustc-ap-rustc-span-654))))
23016 (home-page "https://github.com/alexcrichton/rustc-auto-publish")
23017 (synopsis
23018 "Automatically published version of the compile targets used in rustc")
23019 (description
23020 "Use the compile targets as expressed in the Rust compiler with this
23021 crate. It is automatically published using the compiler repository at
23022 @url{https://www.github.com/rust-lang/rust}")
23023 (license (list license:expat license:asl2.0))))
23024
23025 (define-public rust-rustc-ap-serialize-654
23026 (package
23027 (name "rust-rustc-ap-serialize")
23028 (version "654.0.0")
23029 (source
23030 (origin
23031 (method url-fetch)
23032 (uri (crate-uri "rustc-ap-serialize" version))
23033 (file-name
23034 (string-append name "-" version ".tar.gz"))
23035 (sha256
23036 (base32
23037 "1vwfa3q4f9k0nfryr53jnwmf8vhaq7ijbgw8449nx467dr98yvkm"))))
23038 (build-system cargo-build-system)
23039 (arguments
23040 `(#:skip-build? #t
23041 #:cargo-inputs
23042 (("rust-indexmap" ,rust-indexmap-1)
23043 ("rust-smallvec" ,rust-smallvec-1))))
23044 (home-page "https://github.com/alexcrichton/rustc-auto-publish")
23045 (synopsis
23046 "Automatically published versions of the serialize crate used in rustc")
23047 (description
23048 "Use the serialize library 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-demangle-0.1
23054 (package
23055 (name "rust-rustc-demangle")
23056 (version "0.1.16")
23057 (source
23058 (origin
23059 (method url-fetch)
23060 (uri (crate-uri "rustc-demangle" version))
23061 (file-name (string-append name "-" version ".crate"))
23062 (sha256
23063 (base32
23064 "10qp42sl1wrdbgbbh8rnay2grm976z7hqgz32c4y09l1c071qsac"))))
23065 (build-system cargo-build-system)
23066 (arguments
23067 `(#:skip-build? #t
23068 #:cargo-inputs
23069 (("rust-compiler-builtins" ,rust-compiler-builtins-0.1)
23070 ("rust-rustc-std-workspace-core" ,rust-rustc-std-workspace-core-1))))
23071 (home-page "https://github.com/alexcrichton/rustc-demangle")
23072 (synopsis "Rust compiler symbol demangling")
23073 (description
23074 "This package demanges the symbols from the Rust compiler.")
23075 (license (list license:asl2.0
23076 license:expat))))
23077
23078 (define-public rust-rustc-hash-1
23079 (package
23080 (name "rust-rustc-hash")
23081 (version "1.1.0")
23082 (source
23083 (origin
23084 (method url-fetch)
23085 (uri (crate-uri "rustc-hash" version))
23086 (file-name
23087 (string-append name "-" version ".tar.gz"))
23088 (sha256
23089 (base32
23090 "1qkc5khrmv5pqi5l5ca9p5nl5hs742cagrndhbrlk3dhlrx3zm08"))))
23091 (build-system cargo-build-system)
23092 (arguments `(#:skip-build? #t))
23093 (home-page "https://github.com/rust-lang/rustc-hash")
23094 (synopsis "Speedy, non-cryptographic hash used in rustc")
23095 (description
23096 "This package provides a speedy, non-cryptographic hash used in rustc.")
23097 (license (list license:asl2.0 license:expat))))
23098
23099 (define-public rust-rustc-hash-1.0
23100 (package
23101 (inherit rust-rustc-hash-1)
23102 (name "rust-rustc-hash")
23103 (version "1.0.1")
23104 (source
23105 (origin
23106 (method url-fetch)
23107 (uri (crate-uri "rustc-hash" version))
23108 (file-name (string-append name "-" version ".tar.gz"))
23109 (sha256
23110 (base32
23111 "1f4cnbcmz2c3zjidqszc9c4fip37ch4xl74nkkp9dw291j5zqh3m"))))))
23112
23113 (define-public rust-rustc-rayon-0.3
23114 (package
23115 (name "rust-rustc-rayon")
23116 (version "0.3.0")
23117 (source
23118 (origin
23119 (method url-fetch)
23120 (uri (crate-uri "rustc-rayon" version))
23121 (file-name
23122 (string-append name "-" version ".tar.gz"))
23123 (sha256
23124 (base32
23125 "0fjvy8bf0hd1zq9d3fdxbdp4z4p1k8jfyx51k5qip3wk1pwnf9zk"))))
23126 (build-system cargo-build-system)
23127 (arguments
23128 `(#:tests? #f
23129 #:cargo-inputs
23130 (("rust-crossbeam-deque" ,rust-crossbeam-deque-0.7)
23131 ("rust-either" ,rust-either-1)
23132 ("rust-rustc-rayon-core" ,rust-rustc-rayon-core-0.3))
23133 #:cargo-development-inputs
23134 (("rust-doc-comment" ,rust-doc-comment-0.3)
23135 ("rust-docopt" ,rust-docopt-1.1)
23136 ("rust-lazy-static" ,rust-lazy-static-1)
23137 ("rust-rand" ,rust-rand-0.6)
23138 ("rust-rand-xorshift" ,rust-rand-xorshift-0.1)
23139 ("rust-serde" ,rust-serde-1)
23140 ("rust-serde-derive" ,rust-serde-derive-1))))
23141 (home-page "https://github.com/rust-lang/rustc-rayon")
23142 (synopsis
23143 "Simple work-stealing parallelism for Rust - fork for rustc")
23144 (description
23145 "Rustc-rayon is a fork of the Rayon crate. It adds a few \"in progress\"
23146 features that rustc is using, mostly around deadlock detection. These features
23147 are not stable and should not be used by others -- though they may find their
23148 way into rayon proper at some point. In general, if you are not rustc, you
23149 should be using the real rayon crate, not rustc-rayon.")
23150 (license (list license:asl2.0 license:expat))))
23151
23152 (define-public rust-rustc-rayon-core-0.3
23153 (package
23154 (name "rust-rustc-rayon-core")
23155 (version "0.3.0")
23156 (source
23157 (origin
23158 (method url-fetch)
23159 (uri (crate-uri "rustc-rayon-core" version))
23160 (file-name
23161 (string-append name "-" version ".tar.gz"))
23162 (sha256
23163 (base32
23164 "1cwc50mcclzfmhmi87953fjk6cc9ppmchn9mlwzfllq03y1jf97a"))))
23165 (build-system cargo-build-system)
23166 (arguments
23167 `(#:tests? #f
23168 #:cargo-inputs
23169 (("rust-crossbeam-deque" ,rust-crossbeam-deque-0.7)
23170 ("rust-crossbeam-queue" ,rust-crossbeam-queue-0.1)
23171 ("rust-crossbeam-utils" ,rust-crossbeam-utils-0.6)
23172 ("rust-lazy-static" ,rust-lazy-static-1)
23173 ("rust-num-cpus" ,rust-num-cpus-1))
23174 #:cargo-development-inputs
23175 (("rust-libc" ,rust-libc-0.2)
23176 ("rust-rand" ,rust-rand-0.6)
23177 ("rust-rand-xorshift" ,rust-rand-xorshift-0.1)
23178 ("rust-scoped-tls" ,rust-scoped-tls-1.0))))
23179 (home-page "https://github.com/rust-lang/rustc-rayon")
23180 (synopsis "Core APIs for Rayon - fork for rustc")
23181 (description
23182 "Note: This package is an unstable fork made for use in rustc
23183
23184 Rayon-core represents the \"core, stable\" APIs of Rayon: join, scope, and so
23185 forth, as well as the ability to create custom thread-pools with ThreadPool.")
23186 (license (list license:asl2.0 license:expat))))
23187
23188 (define-public rust-rustc-serialize-0.3
23189 (package
23190 (name "rust-rustc-serialize")
23191 (version "0.3.24")
23192 (source
23193 (origin
23194 (method url-fetch)
23195 (uri (crate-uri "rustc-serialize" version))
23196 (file-name (string-append name "-" version ".crate"))
23197 (sha256
23198 (base32
23199 "1nkg3vasg7nk80ffkazizgiyv3hb1l9g3d8h17cajbkx538jiwfw"))))
23200 (build-system cargo-build-system)
23201 (arguments
23202 `(#:skip-build? #t
23203 #:cargo-inputs
23204 (("rust-rand" ,rust-rand-0.3))))
23205 (home-page "https://github.com/rust-lang-deprecated/rustc-serialize")
23206 (synopsis "Generic serialization/deserialization support")
23207 (description
23208 "This package provides generic serialization/deserialization support
23209 corresponding to the @code{derive(RustcEncodable, RustcDecodable)} mode in the
23210 compiler. Also includes support for hex, base64, and json encoding and
23211 decoding.")
23212 (license (list license:asl2.0
23213 license:expat))))
23214
23215 (define-public rust-rustc-std-workspace-alloc-1
23216 (package
23217 (name "rust-rustc-std-workspace-alloc")
23218 (version "1.0.0")
23219 (source
23220 (origin
23221 (method url-fetch)
23222 (uri (crate-uri "rustc-std-workspace-alloc" version))
23223 (file-name
23224 (string-append name "-" version ".tar.gz"))
23225 (sha256
23226 (base32
23227 "11psmqk6glglxl3zwh8slz6iynfxaifh4spd2wcnws552dqdarpz"))))
23228 (build-system cargo-build-system)
23229 (arguments `(#:skip-build? #t))
23230 (home-page "https://crates.io/crates/rustc-std-workspace-alloc")
23231 (synopsis "Rust workspace hack")
23232 (description "This package is a Rust workspace hack.")
23233 (license (list license:asl2.0 license:expat))))
23234
23235 (define-public rust-rustc-std-workspace-core-1
23236 (package
23237 (name "rust-rustc-std-workspace-core")
23238 (version "1.0.0")
23239 (source
23240 (origin
23241 (method url-fetch)
23242 (uri (crate-uri "rustc-std-workspace-core" version))
23243 (file-name (string-append name "-" version ".crate"))
23244 (sha256
23245 (base32
23246 "1309xhwyai9xpz128xrfjqkmnkvgjwddznmj7brbd8i8f58zamhr"))))
23247 (build-system cargo-build-system)
23248 (arguments '(#:skip-build? #t))
23249 (home-page "https://crates.io/crates/rustc-std-workspace-core")
23250 (synopsis "Explicitly empty crate for rust-lang/rust integration")
23251 (description "This crate provides an explicitly empty crate for
23252 rust-lang/rust integration.")
23253 (license (list license:asl2.0
23254 license:expat))))
23255
23256 (define-public rust-rustc-std-workspace-std-1.0
23257 (package
23258 (name "rust-rustc-std-workspace-std")
23259 (version "1.0.1")
23260 (source
23261 (origin
23262 (method url-fetch)
23263 (uri (crate-uri "rustc-std-workspace-std" version))
23264 (file-name
23265 (string-append name "-" version ".tar.gz"))
23266 (sha256
23267 (base32
23268 "1vq4vaclamwhk0alf4f7wq3i9wxa993sxpmhy6qfaimy1ai7d9mb"))))
23269 (build-system cargo-build-system)
23270 (arguments '(#:skip-build? #t))
23271 (home-page "https://crates.io/crates/rustc-std-workspace-std")
23272 (synopsis "Workaround for rustbuild")
23273 (description "This package provides a workaround for rustbuild.")
23274 (license (list license:expat license:asl2.0))))
23275
23276 (define-public rust-rustc-test-0.3
23277 (package
23278 (name "rust-rustc-test")
23279 (version "0.3.0")
23280 (source
23281 (origin
23282 (method url-fetch)
23283 (uri (crate-uri "rustc-test" version))
23284 (file-name
23285 (string-append name "-" version ".tar.gz"))
23286 (sha256
23287 (base32
23288 "0a27mlcg0ck0hgsdvwk792x9z1k1qq1wj091f1l5yggbdbcsnx5w"))))
23289 (build-system cargo-build-system)
23290 (arguments
23291 `(#:skip-build? #t
23292 #:cargo-inputs
23293 (("rust-getopts" ,rust-getopts-0.2)
23294 ("rust-libc" ,rust-libc-0.2)
23295 ("rust-rustc-serialize" ,rust-rustc-serialize-0.3)
23296 ("rust-term" ,rust-term-0.4)
23297 ("rust-time" ,rust-time-0.1)
23298 ("rust-rustc-version" ,rust-rustc-version-0.2))))
23299 (home-page "https://github.com/servo/rustc-test")
23300 (synopsis "Fork of Rust's test crate")
23301 (description
23302 "This package provides a fork of Rust's test crate that doesn't
23303 require unstable language features.")
23304 (license (list license:asl2.0 license:expat))))
23305
23306 (define-public rust-rustc-tools-util-0.2
23307 (package
23308 (name "rust-rustc-tools-util")
23309 (version "0.2.0")
23310 (source
23311 (origin
23312 (method url-fetch)
23313 (uri (crate-uri "rustc_tools_util" version))
23314 (file-name
23315 (string-append name "-" version ".tar.gz"))
23316 (sha256
23317 (base32
23318 "1vj4ymv29igs7n52m12k138zbsn5k5d7ya4sys6lig7sx7ddl9dp"))))
23319 (build-system cargo-build-system)
23320 (arguments '(#:skip-build? #t))
23321 (home-page
23322 "https://github.com/rust-lang/rust-clippy")
23323 (synopsis
23324 "small helper to generate version information for git packages")
23325 (description
23326 "small helper to generate version information for git packages")
23327 (license (list license:expat license:asl2.0))))
23328
23329 (define-public rust-rustc-version-0.2
23330 (package
23331 (name "rust-rustc-version")
23332 (version "0.2.3")
23333 (source
23334 (origin
23335 (method url-fetch)
23336 (uri (crate-uri "rustc_version" version))
23337 (file-name
23338 (string-append name "-" version ".tar.gz"))
23339 (sha256
23340 (base32
23341 "02h3x57lcr8l2pm0a645s9whdh33pn5cnrwvn5cb57vcrc53x3hk"))))
23342 (build-system cargo-build-system)
23343 (arguments
23344 `(#:skip-build? #t
23345 #:cargo-inputs (("rust-semver" ,rust-semver-0.9))))
23346 (home-page "https://github.com/Kimundi/rustc-version-rs")
23347 (synopsis
23348 "Library for querying the version of a installed rustc compiler")
23349 (description
23350 "This package provides a library for querying the version of a installed
23351 rustc compiler.")
23352 (license (list license:expat license:asl2.0))))
23353
23354 (define-public rust-rustdoc-stripper-0.1
23355 (package
23356 (name "rust-rustdoc-stripper")
23357 (version "0.1.9")
23358 (source
23359 (origin
23360 (method url-fetch)
23361 (uri (crate-uri "rustdoc-stripper" version))
23362 (file-name
23363 (string-append name "-" version ".tar.gz"))
23364 (sha256
23365 (base32
23366 "13rf65a0xk1zyb92jd8p12x529rsbfchwk9zvjr0snr9savpxw19"))))
23367 (build-system cargo-build-system)
23368 (arguments
23369 `(#:cargo-development-inputs
23370 (("rust-tempfile" ,rust-tempfile-3))))
23371 (home-page "https://github.com/GuillaumeGomez/rustdoc-stripper")
23372 (synopsis "Nanipulate rustdoc comments")
23373 (description
23374 "This package provides a tool to manipulate rustdoc comments.")
23375 (license license:asl2.0)))
23376
23377 (define-public rust-rustfix-0.4
23378 (package
23379 (name "rust-rustfix")
23380 (version "0.4.6")
23381 (source
23382 (origin
23383 (method url-fetch)
23384 (uri (crate-uri "rustfix" version))
23385 (file-name
23386 (string-append name "-" version ".tar.gz"))
23387 (sha256
23388 (base32
23389 "01zn0ysnass3mmrhxk90584y713vjfq1x97mi4saac99g9vsql3i"))))
23390 (build-system cargo-build-system)
23391 (arguments
23392 `(#:skip-build? #t
23393 #:cargo-inputs
23394 (("rust-failure" ,rust-failure-0.1)
23395 ("rust-log" ,rust-log-0.4)
23396 ("rust-serde" ,rust-serde-1)
23397 ("rust-serde-json" ,rust-serde-json-1))
23398 #:cargo-development-inputs
23399 (("rust-difference" ,rust-difference-2)
23400 ("rust-duct" ,rust-duct-0.13)
23401 ("rust-env-logger" ,rust-env-logger-0.6)
23402 ("rust-log" ,rust-log-0.4)
23403 ("rust-proptest" ,rust-proptest-0.9)
23404 ("rust-tempdir" ,rust-tempdir-0.3))))
23405 (home-page "https://github.com/rust-lang/rustfix")
23406 (synopsis "Automatically apply the suggestions made by rustc")
23407 (description
23408 "Automatically apply the suggestions made by rustc.")
23409 (license (list license:expat license:asl2.0))))
23410
23411 (define-public rust-rustls-0.18
23412 (package
23413 (name "rust-rustls")
23414 (version "0.18.1")
23415 (source
23416 (origin
23417 (method url-fetch)
23418 (uri (crate-uri "rustls" version))
23419 (file-name
23420 (string-append name "-" version ".tar.gz"))
23421 (sha256
23422 (base32
23423 "108cf3bfw5high066shz9xrfv4jz7djdmnwqs3kwx4wfypf2c4ax"))))
23424 (build-system cargo-build-system)
23425 (arguments
23426 `(#:cargo-inputs
23427 (("rust-base64" ,rust-base64-0.12)
23428 ("rust-log" ,rust-log-0.4)
23429 ("rust-ring" ,rust-ring-0.16)
23430 ("rust-sct" ,rust-sct-0.6)
23431 ("rust-webpki" ,rust-webpki-0.21))
23432 #:cargo-development-inputs
23433 (("rust-criterion" ,rust-criterion-0.3)
23434 ("rust-env-logger" ,rust-env-logger-0.7)
23435 ("rust-log" ,rust-log-0.4)
23436 ("rust-webpki-roots" ,rust-webpki-roots-0.20))))
23437 (home-page "https://github.com/ctz/rustls")
23438 (synopsis "Modern TLS library written in Rust.")
23439 (description "This package provides a modern TLS library written in
23440 Rust.")
23441 (license
23442 (list license:asl2.0 license:isc license:expat))))
23443
23444 (define-public rust-rustls-0.17
23445 (package
23446 (inherit rust-rustls-0.18)
23447 (name "rust-rustls")
23448 (version "0.17.0")
23449 (source
23450 (origin
23451 (method url-fetch)
23452 (uri (crate-uri "rustls" version))
23453 (file-name
23454 (string-append name "-" version ".tar.gz"))
23455 (sha256
23456 (base32
23457 "1q8m835viqrf4bbd2fa8rnmaj48fkd984saxf0238hb8blgs7m60"))))
23458 (arguments
23459 `(#:cargo-inputs
23460 (("rust-base64" ,rust-base64-0.11)
23461 ("rust-log" ,rust-log-0.4)
23462 ("rust-ring" ,rust-ring-0.16)
23463 ("rust-sct" ,rust-sct-0.6)
23464 ("rust-webpki" ,rust-webpki-0.21))
23465 #:cargo-development-inputs
23466 (("rust-criterion" ,rust-criterion-0.3)
23467 ("rust-env-logger" ,rust-env-logger-0.7)
23468 ("rust-log" ,rust-log-0.4)
23469 ("rust-tempfile" ,rust-tempfile-3)
23470 ("rust-webpki-roots" ,rust-webpki-roots-0.19))))))
23471
23472 (define-public rust-rustls-0.16
23473 (package
23474 (inherit rust-rustls-0.17)
23475 (name "rust-rustls")
23476 (version "0.16.0")
23477 (source
23478 (origin
23479 (method url-fetch)
23480 (uri (crate-uri "rustls" version))
23481 (file-name (string-append name "-" version ".tar.gz"))
23482 (sha256
23483 (base32 "17n0fx3fpkg4fhpdplrdhkissnl003kj90vzbqag11vkpyqihnmj"))))
23484 (arguments
23485 `(#:tests? #f ;; 1/114 tests fail (test file not found)
23486 #:cargo-inputs
23487 (("rust-base64" ,rust-base64-0.10)
23488 ("rust-log" ,rust-log-0.4)
23489 ("rust-ring" ,rust-ring-0.16)
23490 ("rust-sct" ,rust-sct-0.6)
23491 ("rust-webpki" ,rust-webpki-0.21))
23492 #:cargo-development-inputs
23493 (("rust-criterion" ,rust-criterion-0.2)
23494 ("rust-env-logger" ,rust-env-logger-0.6)
23495 ("rust-log" ,rust-log-0.4)
23496 ("rust-tempfile" ,rust-tempfile-3)
23497 ("rust-webpki-roots" ,rust-webpki-roots-0.17))))))
23498
23499 (define-public rust-rustls-0.15
23500 (package
23501 (inherit rust-rustls-0.16)
23502 (name "rust-rustls")
23503 (version "0.15.2")
23504 (source
23505 (origin
23506 (method url-fetch)
23507 (uri (crate-uri "rustls" version))
23508 (file-name
23509 (string-append name "-" version ".tar.gz"))
23510 (sha256
23511 (base32
23512 "0vh93fhqfbn4ysw4xzkpkpqdz36xixz4mhs1qllgldfq5iay6wgj"))))
23513 (arguments
23514 `(#:tests? #f ;; 1/111 tests fail (test file not found)
23515 #:cargo-inputs
23516 (("rust-base64" ,rust-base64-0.10)
23517 ("rust-log" ,rust-log-0.4)
23518 ("rust-ring" ,rust-ring-0.14)
23519 ("rust-sct" ,rust-sct-0.5)
23520 ("rust-untrusted" ,rust-untrusted-0.6)
23521 ("rust-webpki" ,rust-webpki-0.19))
23522 #:cargo-development-inputs
23523 (("rust-env-logger" ,rust-env-logger-0.6)
23524 ("rust-log" ,rust-log-0.4)
23525 ("rust-tempfile" ,rust-tempfile-3)
23526 ("rust-webpki-roots" ,rust-webpki-roots-0.16))))))
23527
23528 (define-public rust-rustls-0.12
23529 (package/inherit rust-rustls-0.16
23530 (name "rust-rustls")
23531 (version "0.12.0")
23532 (source
23533 (origin
23534 (method url-fetch)
23535 (uri (crate-uri "rustls" version))
23536 (file-name (string-append name "-" version ".tar.gz"))
23537 (sha256
23538 (base32 "1k8b8cc0pjkv5cxdgs43jif7nslzsxair9b2sifgvjag7a4f8wmb"))))
23539 (build-system cargo-build-system)
23540 (arguments
23541 `(#:tests? #f ;; 1/45 tests fails due to some missing file
23542 #:cargo-inputs
23543 (("rust-base64" ,rust-base64-0.9)
23544 ("rust-log" ,rust-log-0.4)
23545 ("rust-ring" ,rust-ring-0.13)
23546 ("rust-sct" ,rust-sct-0.3)
23547 ("rust-untrusted" ,rust-untrusted-0.6)
23548 ("rust-webpki" ,rust-webpki-0.18))
23549 #:cargo-development-inputs
23550 (("rust-ct-logs" ,rust-ct-logs-0.3)
23551 ("rust-docopt" ,rust-docopt-0.8)
23552 ("rust-env-logger" ,rust-env-logger-0.4)
23553 ("rust-log" ,rust-log-0.4)
23554 ("rust-mio" ,rust-mio-0.6)
23555 ("rust-regex" ,rust-regex-0.2)
23556 ("rust-serde" ,rust-serde-1)
23557 ("rust-serde-derive" ,rust-serde-derive-1)
23558 ("rust-webpki-roots" ,rust-webpki-roots-0.14))))))
23559
23560 (define-public rust-rustls-native-certs-0.4
23561 (package
23562 (name "rust-rustls-native-certs")
23563 (version "0.4.0")
23564 (source
23565 (origin
23566 (method url-fetch)
23567 (uri (crate-uri "rustls-native-certs" version))
23568 (file-name (string-append name "-" version ".tar.gz"))
23569 (sha256
23570 (base32
23571 "1f2rkvdkz92qcmwryyqiw9phkqkf95g4962ljpfq5nkjfsd477b2"))))
23572 (build-system cargo-build-system)
23573 (arguments
23574 `(#:cargo-inputs
23575 (("rust-openssl-probe" ,rust-openssl-probe-0.1)
23576 ("rust-rustls" ,rust-rustls-0.18)
23577 ("rust-schannel" ,rust-schannel-0.1)
23578 ("rust-security-framework"
23579 ,rust-security-framework-1))
23580 #:cargo-development-inputs
23581 (("rust-ring" ,rust-ring-0.16)
23582 ("rust-untrusted" ,rust-untrusted-0.7)
23583 ("rust-webpki" ,rust-webpki-0.21)
23584 ("rust-webpki-roots" ,rust-webpki-roots-0.20))))
23585 (home-page "https://github.com/ctz/rustls-native-certs")
23586 (synopsis "Use the platform native certificate store with rustls")
23587 (description "@code{rustls-native-certs} allows rustls to use the platform
23588 native certificate store.")
23589 (license
23590 (list license:asl2.0 license:isc license:expat))))
23591
23592 (define-public rust-rusttype-0.8
23593 (package
23594 (name "rust-rusttype")
23595 (version "0.8.2")
23596 (source
23597 (origin
23598 (method url-fetch)
23599 (uri (crate-uri "rusttype" version))
23600 (file-name
23601 (string-append name "-" version ".tar.gz"))
23602 (sha256
23603 (base32
23604 "12hwfg85iii7sbgsyyr23yw862dzp7f8zwn9xv5iqydm5w1i3a8l"))))
23605 (build-system cargo-build-system)
23606 (arguments
23607 `(#:tests? #f ; Artifacts for tests not included.
23608 #:cargo-inputs
23609 (("rust-approx" ,rust-approx-0.3)
23610 ("rust-arrayvec" ,rust-arrayvec-0.5)
23611 ("rust-crossbeam-deque" ,rust-crossbeam-deque-0.7)
23612 ("rust-crossbeam-utils" ,rust-crossbeam-utils-0.7)
23613 ("rust-libm" ,rust-libm-0.2)
23614 ("rust-linked-hash-map" ,rust-linked-hash-map-0.5)
23615 ("rust-num-cpus" ,rust-num-cpus-1)
23616 ("rust-ordered-float" ,rust-ordered-float-1.0)
23617 ("rust-rustc-hash" ,rust-rustc-hash-1)
23618 ("rust-stb-truetype" ,rust-stb-truetype-0.3))))
23619 (home-page "https://gitlab.redox-os.org/redox-os/rusttype")
23620 (synopsis "Pure Rust alternative to libraries like FreeType")
23621 (description
23622 "This package provides a pure Rust alternative to libraries like FreeType.
23623 RustType provides an API for loading, querying and rasterising TrueType fonts.
23624 It also provides an implementation of a dynamic GPU glyph cache for hardware
23625 font rendering.")
23626 (license (list license:expat license:asl2.0))))
23627
23628 (define-public rust-rusttype-0.7
23629 (package
23630 (inherit rust-rusttype-0.8)
23631 (name "rust-rusttype")
23632 (version "0.7.9")
23633 (source
23634 (origin
23635 (method url-fetch)
23636 (uri (crate-uri "rusttype" version))
23637 (file-name
23638 (string-append name "-" version ".tar.gz"))
23639 (sha256
23640 (base32
23641 "1m9ms4p94cgif74y1rzkj04rx8i1la193c0jgvnip61rd904429i"))))
23642 (arguments
23643 `(#:tests? #f ; Artifacts for tests not included.
23644 #:cargo-inputs
23645 (("rust-rusttype" ,rust-rusttype-0.8))
23646 #:cargo-development-inputs
23647 (("rust-arrayvec" ,rust-arrayvec-0.4)
23648 ("rust-blake2" ,rust-blake2-0.8)
23649 ("rust-glium" ,rust-glium-0.25)
23650 ("rust-image" ,rust-image-0.21)
23651 ("rust-lazy-static" ,rust-lazy-static-1)
23652 ("rust-unicode-normalization" ,rust-unicode-normalization-0.1))))))
23653
23654 (define-public rust-rustversion-1
23655 (package
23656 (name "rust-rustversion")
23657 (version "1.0.2")
23658 (source
23659 (origin
23660 (method url-fetch)
23661 (uri (crate-uri "rustversion" version))
23662 (file-name
23663 (string-append name "-" version ".tar.gz"))
23664 (sha256
23665 (base32
23666 "1xkr1g792w728py2qpg2zj0vfviv2xzmxkkd9w6035l9d5ss3fxk"))))
23667 (build-system cargo-build-system)
23668 (arguments
23669 `(#:cargo-inputs
23670 (("rust-proc-macro2" ,rust-proc-macro2-1)
23671 ("rust-quote" ,rust-quote-1)
23672 ("rust-syn" ,rust-syn-1))))
23673 (home-page "https://github.com/dtolnay/rustversion")
23674 (synopsis "Conditional compilation according to rustc compiler version")
23675 (description
23676 "This package provides conditional compilation according to the
23677 @code{rustc} compiler version.")
23678 (license (list license:expat license:asl2.0))))
23679
23680 (define-public rust-rustversion-0.1
23681 (package
23682 (name "rust-rustversion")
23683 (version "0.1.4")
23684 (source
23685 (origin
23686 (method url-fetch)
23687 (uri (crate-uri "rustversion" version))
23688 (file-name
23689 (string-append name "-" version ".tar.gz"))
23690 (sha256
23691 (base32
23692 "1s3ib2paa5gq17x4qsmjmnsw68z7b5d5av1wsiqcrihmqb7kk0dl"))))
23693 (build-system cargo-build-system)
23694 (arguments
23695 `(#:cargo-inputs
23696 (("rust-proc-macro2" ,rust-proc-macro2-1)
23697 ("rust-quote" ,rust-quote-1)
23698 ("rust-syn" ,rust-syn-1))))
23699 (home-page "https://github.com/dtolnay/rustversion")
23700 (synopsis "Conditional compilation according to rustc compiler version")
23701 (description "This package provides conditional compilation according to
23702 rustc compiler version.")
23703 (license (list license:expat license:asl2.0))))
23704
23705 (define-public rust-rusty-fork-0.2
23706 (package
23707 (name "rust-rusty-fork")
23708 (version "0.2.2")
23709 (source
23710 (origin
23711 (method url-fetch)
23712 (uri (crate-uri "rusty-fork" version))
23713 (file-name
23714 (string-append name "-" version ".tar.gz"))
23715 (sha256
23716 (base32
23717 "1bjg8adk0i921088j52rn0hmvsry34q19g96x41pamqcw5j35n9x"))))
23718 (build-system cargo-build-system)
23719 (arguments
23720 `(#:skip-build? #t
23721 #:cargo-inputs
23722 (("rust-fnv" ,rust-fnv-1)
23723 ("rust-quick-error" ,rust-quick-error-1.2)
23724 ("rust-tempfile" ,rust-tempfile-3)
23725 ("rust-wait-timeout" ,rust-wait-timeout-0.2))))
23726 (home-page "https://github.com/altsysrq/rusty-fork")
23727 (synopsis "Library for running Rust tests in sub-processes")
23728 (description
23729 "Cross-platform library for running Rust tests in sub-processes
23730 using a fork-like interface.")
23731 (license (list license:asl2.0 license:expat))))
23732
23733 (define-public rust-ryu-1.0
23734 (package
23735 (name "rust-ryu")
23736 (version "1.0.3")
23737 (source
23738 (origin
23739 (method url-fetch)
23740 (uri (crate-uri "ryu" version))
23741 (file-name (string-append name "-" version ".crate"))
23742 (sha256
23743 (base32
23744 "0xlx9ybzncrb7d6r9533g8ydlg6mr252pfzl4g9cqaqkpvk24mjk"))))
23745 (build-system cargo-build-system)
23746 (arguments
23747 `(#:cargo-inputs
23748 (("rust-no-panic" ,rust-no-panic-0.1))
23749 #:cargo-development-inputs
23750 (("rust-num-cpus" ,rust-num-cpus-1)
23751 ("rust-rand" ,rust-rand-0.7)
23752 ("rust-rand-xorshift" ,rust-rand-xorshift-0.2))))
23753 (home-page "https://github.com/dtolnay/ryu")
23754 (synopsis "Fast floating point to string conversion")
23755 (description
23756 "This package provides a pure Rust implementation of Ryū, an algorithm to
23757 quickly convert floating point numbers to decimal strings.")
23758 (license (list license:asl2.0 license:boost1.0))))
23759
23760 (define-public rust-safemem-0.3
23761 (package
23762 (name "rust-safemem")
23763 (version "0.3.3")
23764 (source
23765 (origin
23766 (method url-fetch)
23767 (uri (crate-uri "safemem" version))
23768 (file-name (string-append name "-" version ".crate"))
23769 (sha256
23770 (base32
23771 "0wp0d2b2284lw11xhybhaszsczpbq1jbdklkxgifldcknmy3nw7g"))))
23772 (build-system cargo-build-system)
23773 (arguments '(#:skip-build? #t))
23774 (home-page "https://github.com/abonander/safemem")
23775 (synopsis "Safe wrappers for memory-accessing functions")
23776 (description
23777 "Safe wrappers for memory-accessing functions, like @code{std::ptr::copy()}.")
23778 (license (list license:asl2.0
23779 license:expat))))
23780
23781 (define-public rust-same-file-1.0
23782 (package
23783 (name "rust-same-file")
23784 (version "1.0.6")
23785 (source
23786 (origin
23787 (method url-fetch)
23788 (uri (crate-uri "same-file" version))
23789 (file-name (string-append name "-" version ".crate"))
23790 (sha256
23791 (base32
23792 "00h5j1w87dmhnvbv9l8bic3y7xxsnjmssvifw2ayvgx9mb1ivz4k"))))
23793 (build-system cargo-build-system)
23794 (arguments
23795 `(#:cargo-inputs
23796 (("rust-winapi-util" ,rust-winapi-util-0.1))
23797 #:cargo-development-inputs
23798 (("rust-doc-comment" ,rust-doc-comment-0.3))))
23799 (home-page "https://github.com/BurntSushi/same-file")
23800 (synopsis "Determine whether two file paths point to the same file")
23801 (description
23802 "This package provides a simple crate for determining whether two file
23803 paths point to the same file.")
23804 (license (list license:unlicense
23805 license:expat))))
23806
23807 (define-public rust-same-file-0.1
23808 (package
23809 (inherit rust-same-file-1.0)
23810 (name "rust-same-file")
23811 (version "0.1.3")
23812 (source
23813 (origin
23814 (method url-fetch)
23815 (uri (crate-uri "same-file" version))
23816 (file-name
23817 (string-append name "-" version ".tar.gz"))
23818 (sha256
23819 (base32
23820 "19qpl6j8s3ph9jm8rh1k0wp2nkyw5ah34xly00vqcfx4v97s8cfr"))))
23821 (build-system cargo-build-system)
23822 (arguments
23823 `(#:cargo-inputs
23824 (("rust-kernel32-sys" ,rust-kernel32-sys-0.2)
23825 ("rust-winapi" ,rust-winapi-0.2))
23826 #:cargo-development-inputs
23827 (("rust-rand" ,rust-rand-0.3))))))
23828
23829 (define-public rust-sanakirja-0.10
23830 (package
23831 (name "rust-sanakirja")
23832 (version "0.10.3")
23833 (source
23834 (origin
23835 (method url-fetch)
23836 (uri (crate-uri "sanakirja" version))
23837 (file-name
23838 (string-append name "-" version ".tar.gz"))
23839 (sha256
23840 (base32
23841 "1fhn5lb6jn0pimnk0nbf5h4xvp28xdkdh33d57gq1ixy8b2y091y"))))
23842 (build-system cargo-build-system)
23843 (arguments
23844 `(#:tests? #f ; tests::test_del_medium_fork fails
23845 #:cargo-inputs
23846 (("rust-fs2" ,rust-fs2-0.4)
23847 ("rust-log" ,rust-log-0.4)
23848 ("rust-memmap" ,rust-memmap-0.7)
23849 ("rust-rand" ,rust-rand-0.6)
23850 ("rust-uuid" ,rust-uuid-0.7))
23851 #:cargo-development-inputs
23852 (("rust-env-logger" ,rust-env-logger-0.6)
23853 ("rust-hex" ,rust-hex-0.3)
23854 ("rust-tempdir" ,rust-tempdir-0.3))))
23855 (home-page "https://nest.pijul.com/pijul_org/sanakirja")
23856 (synopsis "Key-value dictionary, using copy-on-write and B-trees")
23857 (description
23858 "This package provides a key-value dictionary, using copy-on-write and B
23859 trees. It features:
23860 @itemize
23861 @item ACID semantics.
23862 @item B trees with copy-on-write.
23863 @item Support for referential transparency: databases can be cloned in time
23864 O(log n) (where n is the size of the database). This was the original
23865 motivation for writing this library.
23866 @end itemize")
23867 (license (list license:asl2.0 license:expat))))
23868
23869 (define-public rust-scan-fmt-0.2
23870 (package
23871 (name "rust-scan-fmt")
23872 (version "0.2.5")
23873 (source
23874 (origin
23875 (method url-fetch)
23876 (uri (crate-uri "scan_fmt" version))
23877 (file-name
23878 (string-append name "-" version ".tar.gz"))
23879 (sha256
23880 (base32
23881 "1gmaa07z8bkkdv5xhq2lrgml6ri7fqyyrjpiks3phmpmq3p8d0i4"))))
23882 (build-system cargo-build-system)
23883 (arguments
23884 `(#:skip-build? #t
23885 #:cargo-inputs
23886 (("rust-regex" ,rust-regex-1))))
23887 (home-page "https://github.com/wlentz/scan_fmt")
23888 (synopsis "Simple scanf()-like input for Rust")
23889 (description
23890 "This package provides a simple scanf()-like input for Rust")
23891 (license license:expat)))
23892
23893 (define-public rust-schannel-0.1
23894 (package
23895 (name "rust-schannel")
23896 (version "0.1.16")
23897 (source
23898 (origin
23899 (method url-fetch)
23900 (uri (crate-uri "schannel" version))
23901 (file-name (string-append name "-" version ".crate"))
23902 (sha256
23903 (base32
23904 "08d0p5iy574vdrax4l3laazic0crj7rp7vp3if5rrfkcdfq51xc7"))))
23905 (build-system cargo-build-system)
23906 (arguments
23907 `(#:skip-build? #t
23908 #:cargo-inputs
23909 (("rust-lazy-static" ,rust-lazy-static-1)
23910 ("rust-winapi" ,rust-winapi-0.3))))
23911 (home-page "https://github.com/steffengy/schannel-rs")
23912 (synopsis "Rust bindings to the Windows SChannel APIs")
23913 (description
23914 "Rust bindings to the Windows SChannel APIs providing TLS client and
23915 server functionality.")
23916 (license license:expat)))
23917
23918 (define-public rust-scheduled-thread-pool-0.2
23919 (package
23920 (name "rust-scheduled-thread-pool")
23921 (version "0.2.5")
23922 (source
23923 (origin
23924 (method url-fetch)
23925 (uri (crate-uri "scheduled-thread-pool" version))
23926 (file-name (string-append name "-" version ".tar.gz"))
23927 (sha256
23928 (base32
23929 "1mz7s21q1d7xn9j15dlhhv1y86q2r2z6hpax5nh3y1q42byp8vyw"))))
23930 (build-system cargo-build-system)
23931 (arguments
23932 `(#:cargo-inputs
23933 (("rust-parking-lot" ,rust-parking-lot-0.11))))
23934 (home-page "https://github.com/sfackler/scheduled-thread-pool")
23935 (synopsis "A scheduled thread pool")
23936 (description "This package provides a scheduled thread pool.")
23937 (license (list license:expat license:asl2.0))))
23938
23939 (define-public rust-scoped-threadpool-0.1
23940 (package
23941 (name "rust-scoped-threadpool")
23942 (version "0.1.9")
23943 (source
23944 (origin
23945 (method url-fetch)
23946 (uri (crate-uri "scoped_threadpool" version))
23947 (file-name (string-append name "-" version ".crate"))
23948 (sha256
23949 (base32
23950 "1a26d3lk40s9mrf4imhbik7caahmw2jryhhb6vqv6fplbbgzal8x"))))
23951 (build-system cargo-build-system)
23952 (arguments
23953 `(#:skip-build? #t
23954 #:cargo-development-inputs
23955 (("rust-lazy-static" ,rust-lazy-static-1))))
23956 (home-page "https://github.com/Kimundi/scoped-threadpool-rs")
23957 (synopsis "Library for scoped and cached threadpools")
23958 (description
23959 "This crate provides a stable, safe and scoped threadpool. It can be used
23960 to execute a number of short-lived jobs in parallel without the need to respawn
23961 the underlying threads. Jobs are runnable by borrowing the pool for a given
23962 scope, during which an arbitrary number of them can be executed. These jobs can
23963 access data of any lifetime outside of the pools scope, which allows working on
23964 non-'static references in parallel.")
23965 (license (list license:asl2.0
23966 license:expat))))
23967
23968 (define-public rust-scoped-tls-1.0
23969 (package
23970 (name "rust-scoped-tls")
23971 (version "1.0.0")
23972 (source
23973 (origin
23974 (method url-fetch)
23975 (uri (crate-uri "scoped-tls" version))
23976 (file-name (string-append name "-" version ".crate"))
23977 (sha256
23978 (base32
23979 "1hj8lifzvivdb1z02lfnzkshpvk85nkgzxsy2hc0zky9wf894spa"))))
23980 (build-system cargo-build-system)
23981 (arguments '(#:skip-build? #t))
23982 (home-page "https://github.com/alexcrichton/scoped-tls")
23983 (synopsis "Rust library providing the old standard library's scoped_thread_local")
23984 (description "This crate provides a library implementation of the standard
23985 library's old @code{scoped_thread_local!} macro for providing scoped access to
23986 @dfn{thread local storage} (TLS) so any type can be stored into TLS.")
23987 (license (list license:asl2.0
23988 license:expat))))
23989
23990 (define-public rust-scoped-tls-0.1
23991 (package
23992 (inherit rust-scoped-tls-1.0)
23993 (name "rust-scoped-tls")
23994 (version "0.1.2")
23995 (source
23996 (origin
23997 (method url-fetch)
23998 (uri (crate-uri "scoped-tls" version))
23999 (file-name (string-append name "-" version ".crate"))
24000 (sha256
24001 (base32
24002 "0a2bn9d2mb07c6l16sadijy4p540g498zddfxyiq4rsqpwrglbrk"))))))
24003
24004 (define-public rust-scopeguard-1
24005 (package
24006 (name "rust-scopeguard")
24007 (version "1.1.0")
24008 (source
24009 (origin
24010 (method url-fetch)
24011 (uri (crate-uri "scopeguard" version))
24012 (file-name (string-append name "-" version ".crate"))
24013 (sha256
24014 (base32
24015 "1kbqm85v43rq92vx7hfiay6pmcga03vrjbbfwqpyj3pwsg3b16nj"))))
24016 (build-system cargo-build-system)
24017 (home-page "https://github.com/bluss/scopeguard")
24018 (synopsis "Scope guard which will run a closure even out of scope")
24019 (description "This package provides a RAII scope guard that will run a
24020 given closure when it goes out of scope, even if the code between panics
24021 (assuming unwinding panic). Defines the macros @code{defer!},
24022 @code{defer_on_unwind!}, @code{defer_on_success!} as shorthands for guards
24023 with one of the implemented strategies.")
24024 (license (list license:asl2.0
24025 license:expat))))
24026
24027 (define-public rust-scopeguard-1.0
24028 (package
24029 (inherit rust-scopeguard-1)
24030 (name "rust-scopeguard")
24031 (version "1.0.0")
24032 (source
24033 (origin
24034 (method url-fetch)
24035 (uri (crate-uri "scopeguard" version))
24036 (file-name (string-append name "-" version ".crate"))
24037 (sha256
24038 (base32
24039 "03aay84r1f6w87ckbpj6cc4rnsxkxcfs13n5ynxjia0qkgjiabml"))))
24040 (arguments '(#:skip-build? #t))))
24041
24042 (define-public rust-scopeguard-0.3
24043 (package
24044 (inherit rust-scopeguard-1)
24045 (name "rust-scopeguard")
24046 (version "0.3.3")
24047 (source
24048 (origin
24049 (method url-fetch)
24050 (uri (crate-uri "scopeguard" version))
24051 (file-name
24052 (string-append name "-" version ".crate"))
24053 (sha256
24054 (base32
24055 "09sy9wbqp409pkwmqni40qmwa99ldqpl48pp95m1xw8sc19qy9cl"))))))
24056
24057 (define-public rust-scrypt-0.3
24058 (package
24059 (name "rust-scrypt")
24060 (version "0.3.0")
24061 (source
24062 (origin
24063 (method url-fetch)
24064 (uri (crate-uri "scrypt" version))
24065 (file-name
24066 (string-append name "-" version ".tar.gz"))
24067 (sha256
24068 (base32
24069 "1apicbvp7cgc1z2nl5l48g8h3kp7p592r4zbkx9vsri2ivnvgv43"))))
24070 (build-system cargo-build-system)
24071 (arguments
24072 `(#:cargo-inputs
24073 (("rust-base64" ,rust-base64-0.12)
24074 ("rust-hmac" ,rust-hmac-0.8)
24075 ("rust-pbkdf2" ,rust-pbkdf2-0.4)
24076 ("rust-rand" ,rust-rand-0.7)
24077 ("rust-rand-core" ,rust-rand-core-0.5)
24078 ("rust-sha2" ,rust-sha2-0.9)
24079 ("rust-subtle" ,rust-subtle-2))))
24080 (home-page "https://github.com/RustCrypto/password-hashes")
24081 (synopsis "Scrypt password-based key derivation function")
24082 (description
24083 "Scrypt password-based key derivation function.")
24084 (license (list license:expat license:asl2.0))))
24085
24086 (define-public rust-scrypt-0.2
24087 (package
24088 (inherit rust-scrypt-0.3)
24089 (name "rust-scrypt")
24090 (version "0.2.0")
24091 (source
24092 (origin
24093 (method url-fetch)
24094 (uri (crate-uri "scrypt" version))
24095 (file-name
24096 (string-append name "-" version ".tar.gz"))
24097 (sha256
24098 (base32
24099 "1pfgqgzdjxjf7c8r1wfka0ackfpv1g8w7wvbr25b42hdx787jv35"))))
24100 (arguments
24101 `(#:cargo-inputs
24102 (("rust-base64" ,rust-base64-0.9)
24103 ("rust-byte-tools" ,rust-byte-tools-0.3)
24104 ("rust-byteorder" ,rust-byteorder-1)
24105 ("rust-hmac" ,rust-hmac-0.7)
24106 ("rust-pbkdf2" ,rust-pbkdf2-0.3)
24107 ("rust-rand" ,rust-rand-0.5)
24108 ("rust-sha2" ,rust-sha2-0.8)
24109 ("rust-subtle" ,rust-subtle-1.0))))))
24110
24111 (define-public rust-scroll-0.10
24112 (package
24113 (name "rust-scroll")
24114 (version "0.10.1")
24115 (source
24116 (origin
24117 (method url-fetch)
24118 (uri (crate-uri "scroll" version))
24119 (file-name
24120 (string-append name "-" version ".tar.gz"))
24121 (sha256
24122 (base32
24123 "1cbcns8538sqmfnmdbphqy0fd4j8z75z802pvmz3zlwmnln37cmb"))))
24124 (build-system cargo-build-system)
24125 (arguments
24126 `(#:skip-build? #t
24127 #:cargo-inputs
24128 (("rust-scroll-derive" ,rust-scroll-derive-0.10))))
24129 (home-page "https://github.com/m4b/scroll")
24130 (synopsis "Endian-aware Read/Write traits for byte buffers")
24131 (description
24132 "This package provides a suite of powerful, extensible, generic,
24133 endian-aware Read/Write traits for byte buffers.")
24134 (license license:expat)))
24135
24136 (define-public rust-scroll-0.9
24137 (package
24138 (name "rust-scroll")
24139 (version "0.9.2")
24140 (source
24141 (origin
24142 (method url-fetch)
24143 (uri (crate-uri "scroll" version))
24144 (file-name
24145 (string-append name "-" version ".tar.gz"))
24146 (sha256
24147 (base32
24148 "10q3w86bn22xrjlfg1c90dfi9c26qjkzn26nad0i9z8pxwad311g"))))
24149 (build-system cargo-build-system)
24150 (arguments
24151 `(#:skip-build? #t
24152 #:cargo-inputs
24153 (("rust-scroll-derive" ,rust-scroll-derive-0.9)
24154 ("rust-rustc-version" ,rust-rustc-version-0.2))
24155 #:cargo-development-inputs
24156 (("rust-byteorder" ,rust-byteorder-1)
24157 ("rust-rayon" ,rust-rayon-1))))
24158 (home-page "https://github.com/m4b/scroll")
24159 (synopsis "Read/Write traits for byte buffers")
24160 (description
24161 "This package provides a suite of powerful, extensible, generic,
24162 endian-aware Read/Write traits for byte buffers.")
24163 (license license:expat)))
24164
24165 (define-public rust-scroll-derive-0.10
24166 (package
24167 (name "rust-scroll-derive")
24168 (version "0.10.1")
24169 (source
24170 (origin
24171 (method url-fetch)
24172 (uri (crate-uri "scroll_derive" version))
24173 (file-name
24174 (string-append name "-" version ".tar.gz"))
24175 (sha256
24176 (base32
24177 "0a7f0xybi27p1njs4bqmxh9zyb2dqal4dbvgnhjjix4zkgm4wn7q"))))
24178 (build-system cargo-build-system)
24179 (arguments
24180 `(#:skip-build? #t
24181 #:cargo-inputs
24182 (("rust-proc-macro2" ,rust-proc-macro2-1)
24183 ("rust-syn" ,rust-syn-1)
24184 ("rust-quote" ,rust-quote-1))))
24185 (home-page "https://github.com/m4b/scroll")
24186 (synopsis "Pread and Pwrite traits from the scroll crate")
24187 (description
24188 "This package provides a macros 1.1 derive implementation for Pread and
24189 Pwrite traits from the scroll crate.")
24190 (license license:expat)))
24191
24192 (define-public rust-scroll-derive-0.9
24193 (package
24194 (name "rust-scroll-derive")
24195 (version "0.9.5")
24196 (source
24197 (origin
24198 (method url-fetch)
24199 (uri (crate-uri "scroll_derive" version))
24200 (file-name
24201 (string-append name "-" version ".tar.gz"))
24202 (sha256
24203 (base32
24204 "1jqg5mm8nvii6avl1z1rc89agzh2kwkppgpsnwfakxg78mnaj6lg"))))
24205 (build-system cargo-build-system)
24206 (arguments
24207 `(#:cargo-inputs
24208 (("rust-proc-macro2" ,rust-proc-macro2-0.4)
24209 ("rust-quote" ,rust-quote-0.6)
24210 ("rust-syn" ,rust-syn-0.15))
24211 #:cargo-development-inputs
24212 (("rust-scroll" ,rust-scroll-0.9))))
24213 (home-page "https://github.com/m4b/scroll_derive")
24214 (synopsis "Derive Pread and Pwrite traits from the scroll crate")
24215 (description
24216 "This package provides a macros 1.1 derive implementation for Pread and
24217 Pwrite traits from the scroll crate.")
24218 (license license:expat)))
24219
24220 (define-public rust-sct-0.6
24221 (package
24222 (name "rust-sct")
24223 (version "0.6.0")
24224 (source
24225 (origin
24226 (method url-fetch)
24227 (uri (crate-uri "sct" version))
24228 (file-name (string-append name "-" version ".tar.gz"))
24229 (sha256
24230 (base32 "0g4dz7las43kcpi9vqv9c6l1afjkdv3g3w3s7d2w7a7w77wjl173"))))
24231 (build-system cargo-build-system)
24232 (arguments
24233 `(#:cargo-inputs
24234 (("rust-ring" ,rust-ring-0.16)
24235 ("rust-untrusted" ,rust-untrusted-0.7))
24236 #:cargo-development-inputs
24237 (("rust-cc" ,rust-cc-1))))
24238 (home-page "https://github.com/ctz/sct.rs")
24239 (synopsis "Certificate transparency SCT verification library")
24240 (description "Certificate transparency SCT verification library")
24241 (license (list license:asl2.0 license:isc license:expat))))
24242
24243 (define-public rust-sct-0.5
24244 (package
24245 (inherit rust-sct-0.6)
24246 (name "rust-sct")
24247 (version "0.5.0")
24248 (source
24249 (origin
24250 (method url-fetch)
24251 (uri (crate-uri "sct" version))
24252 (file-name
24253 (string-append name "-" version ".tar.gz"))
24254 (sha256
24255 (base32
24256 "1fb9ym5bwswx01yyggn7v2vfryih4vnqpp4r4ssv3qaqpn7xynig"))))
24257 (arguments
24258 `(#:cargo-inputs
24259 (("rust-ring" ,rust-ring-0.14)
24260 ("rust-untrusted" ,rust-untrusted-0.6))))))
24261
24262 (define-public rust-sct-0.3
24263 (package/inherit rust-sct-0.6
24264 (name "rust-sct")
24265 (version "0.3.0")
24266 (source
24267 (origin
24268 (method url-fetch)
24269 (uri (crate-uri "sct" version))
24270 (file-name (string-append name "-" version ".tar.gz"))
24271 (sha256
24272 (base32 "0z090j3lvy0lqbhmpswm4vb2n4i8dqswy0l93abdx9biipnhlm5l"))))
24273 (build-system cargo-build-system)
24274 (arguments
24275 `(#:cargo-inputs
24276 (("rust-ring" ,rust-ring-0.13)
24277 ("rust-untrusted" ,rust-untrusted-0.6))
24278 #:cargo-development-inputs
24279 (("rust-cc" ,rust-cc-1))))))
24280
24281
24282 (define-public rust-seahash-3
24283 (package
24284 (name "rust-seahash")
24285 (version "3.0.7")
24286 (source
24287 (origin
24288 (method url-fetch)
24289 (uri (crate-uri "seahash" version))
24290 (file-name
24291 (string-append name "-" version ".tar.gz"))
24292 (sha256
24293 (base32
24294 "0iqg12lxkn0ivsfa1gkylcwj5wmi6zl87mbizlrkg918s6hprxaq"))))
24295 (build-system cargo-build-system)
24296 (home-page
24297 "https://gitlab.redox-os.org/redox-os/seahash")
24298 (synopsis
24299 "Hash function with proven statistical guarantees")
24300 (description
24301 "This package provides a blazingly fast, portable hash function with
24302 proven statistical guarantees.")
24303 (license license:expat)))
24304
24305 (define-public rust-section-testing-0.0
24306 (package
24307 (name "rust-section-testing")
24308 (version "0.0.4")
24309 (source
24310 (origin
24311 (method url-fetch)
24312 (uri (crate-uri "section-testing" version))
24313 (file-name
24314 (string-append name "-" version ".tar.gz"))
24315 (sha256
24316 (base32
24317 "0a1zwpcs2dqhky2wd8y82cm25l3s9i5dbyn4ypgmvdysizcxgr7c"))))
24318 (build-system cargo-build-system)
24319 (home-page "https://github.com/evanw/section_testing")
24320 (synopsis "Library for section-style testing")
24321 (description
24322 "This package provides a library for section-style testing.")
24323 (license license:expat)))
24324
24325 (define-public rust-security-framework-1
24326 (package
24327 (name "rust-security-framework")
24328 (version "1.0.0")
24329 (source
24330 (origin
24331 (method url-fetch)
24332 (uri (crate-uri "security-framework" version))
24333 (file-name (string-append name "-" version ".tar.gz"))
24334 (sha256
24335 (base32
24336 "0axwlax65j1f79rsm4ylc8rc6p2knbi3dgnpbdq7a1bzh5k2hl5d"))))
24337 (build-system cargo-build-system)
24338 (arguments
24339 `(#:cargo-inputs
24340 (("rust-bitflags" ,rust-bitflags-1)
24341 ("rust-core-foundation" ,rust-core-foundation-0.7)
24342 ("rust-core-foundation-sys" ,rust-core-foundation-sys-0.7)
24343 ("rust-libc" ,rust-libc-0.2)
24344 ("rust-security-framework-sys" ,rust-security-framework-sys-1))
24345 #:cargo-development-inputs
24346 (("rust-hex" ,rust-hex-0.4)
24347 ("rust-tempdir" ,rust-tempdir-0.3))))
24348 (home-page "https://lib.rs/crates/security_framework")
24349 (synopsis "@code{Security.framework} bindings for macOS and iOS")
24350 (description "This package provides @code{Security.framework} bindings for
24351 macOS and iOS.")
24352 (license (list license:expat license:asl2.0))))
24353
24354 (define-public rust-security-framework-0.3
24355 (package
24356 (inherit rust-security-framework-1)
24357 (name "rust-security-framework")
24358 (version "0.3.4")
24359 (source
24360 (origin
24361 (method url-fetch)
24362 (uri (crate-uri "security-framework" version))
24363 (file-name
24364 (string-append name "-" version ".tar.gz"))
24365 (sha256
24366 (base32
24367 "1pqn79cl9njnnhsmjvvphkzx8is5jhfd8bhxpllgvrgggjfl5wlf"))))
24368 (arguments
24369 `(#:tests? #f ; Some test files not included in release.
24370 #:cargo-inputs
24371 (("rust-core-foundation" ,rust-core-foundation-0.6)
24372 ("rust-core-foundation-sys" ,rust-core-foundation-sys-0.6)
24373 ("rust-libc" ,rust-libc-0.2)
24374 ("rust-security-framework-sys" ,rust-security-framework-sys-0.3))
24375 #:cargo-development-inputs
24376 (("rust-hex" ,rust-hex-0.4)
24377 ("rust-tempdir" ,rust-tempdir-0.3))))))
24378
24379 (define-public rust-security-framework-0.2
24380 (package
24381 (inherit rust-security-framework-0.3)
24382 (name "rust-security-framework")
24383 (version "0.2.4")
24384 (source
24385 (origin
24386 (method url-fetch)
24387 (uri (crate-uri "security-framework" version))
24388 (file-name
24389 (string-append name "-" version ".tar.gz"))
24390 (sha256
24391 (base32
24392 "0gw3xxg8yzbjb4ny5cy07gky177c1nbgpxqjsw3hfzpfgrxji9bz"))))
24393 (arguments
24394 `(#:cargo-inputs
24395 (("rust-core-foundation"
24396 ,rust-core-foundation-0.6)
24397 ("rust-core-foundation-sys"
24398 ,rust-core-foundation-sys-0.6)
24399 ("rust-libc" ,rust-libc-0.2)
24400 ("rust-security-framework-sys"
24401 ,rust-security-framework-sys-0.2))
24402 #:cargo-development-inputs
24403 (("rust-hex" ,rust-hex-0.3)
24404 ("rust-tempdir" ,rust-tempdir-0.3))))))
24405
24406 (define-public rust-security-framework-sys-1
24407 (package
24408 (name "rust-security-framework-sys")
24409 (version "1.0.0")
24410 (source
24411 (origin
24412 (method url-fetch)
24413 (uri (crate-uri "security-framework-sys" version))
24414 (file-name (string-append name "-" version ".tar.gz"))
24415 (sha256
24416 (base32
24417 "1iynsjz53lqkkw4zbq8l99xn799chbx90lsmrlfnsyxii14v1kji"))))
24418 (build-system cargo-build-system)
24419 (arguments
24420 `(#:cargo-inputs
24421 (("rust-core-foundation-sys" ,rust-core-foundation-sys-0.7)
24422 ("rust-libc" ,rust-libc-0.2))))
24423 (home-page "https://lib.rs/crates/security-framework-sys")
24424 (synopsis "Low-level FFI bindings to Apple @code{Security.framework}")
24425 (description "This package provides low level FFI bindings to Apple
24426 @code{Security.framework}.")
24427 (license (list license:expat license:asl2.0))))
24428
24429 (define-public rust-security-framework-sys-0.3
24430 (package
24431 (inherit rust-security-framework-sys-1)
24432 (name "rust-security-framework-sys")
24433 (version "0.3.3")
24434 (source
24435 (origin
24436 (method url-fetch)
24437 (uri (crate-uri "security-framework-sys" version))
24438 (file-name (string-append name "-" version ".crate"))
24439 (sha256
24440 (base32
24441 "15gqhhi206lzynd0pcbswxhvqc4p9bmpl2h9qnwfnpb16zy96573"))))
24442 (build-system cargo-build-system)
24443 (arguments
24444 `(#:cargo-inputs
24445 (("rust-core-foundation-sys" ,rust-core-foundation-sys-0.6))))))
24446
24447 (define-public rust-security-framework-sys-0.2
24448 (package
24449 (inherit rust-security-framework-sys-0.3)
24450 (name "rust-security-framework-sys")
24451 (version "0.2.4")
24452 (source
24453 (origin
24454 (method url-fetch)
24455 (uri (crate-uri "security-framework-sys" version))
24456 (file-name (string-append name "-" version ".tar.gz"))
24457 (sha256
24458 (base32
24459 "07zv0szz2kfy1hn251h0qsq0q9i1zia768d8vzril1g6xarj7mcj"))))
24460 (arguments
24461 `(#:cargo-inputs
24462 (("rust-core-foundation-sys" ,rust-core-foundation-sys-0.6)
24463 ("rust-libc" ,rust-libc-0.2))))))
24464
24465 (define-public rust-selectors-0.22
24466 (package
24467 (name "rust-selectors")
24468 (version "0.22.0")
24469 (source
24470 (origin
24471 (method url-fetch)
24472 (uri (crate-uri "selectors" version))
24473 (file-name
24474 (string-append name "-" version ".tar.gz"))
24475 (sha256
24476 (base32
24477 "1zhjpvww238lh4nz7kdw4ywlpmjbmzvrm76w1jyacjxci4c0ycnz"))))
24478 (build-system cargo-build-system)
24479 (arguments
24480 `(#:cargo-inputs
24481 (("rust-bitflags" ,rust-bitflags-1)
24482 ("rust-cssparser" ,rust-cssparser-0.27)
24483 ("rust-derive-more" ,rust-derive-more-0.99)
24484 ("rust-fxhash" ,rust-fxhash-0.2)
24485 ("rust-log" ,rust-log-0.4)
24486 ("rust-matches" ,rust-matches-0.1)
24487 ("rust-phf" ,rust-phf-0.8)
24488 ("rust-precomputed-hash" ,rust-precomputed-hash-0.1)
24489 ("rust-servo-arc" ,rust-servo-arc-0.1)
24490 ("rust-smallvec" ,rust-smallvec-1)
24491 ("rust-thin-slice" ,rust-thin-slice-0.1))
24492 #:cargo-development-inputs
24493 (("rust-phf-codegen" ,rust-phf-codegen-0.8))))
24494 (home-page "https://github.com/servo/servo")
24495 (synopsis "CSS Selectors matching for Rust")
24496 (description "This package provides CSS Selectors matching for Rust.")
24497 (license license:mpl2.0)))
24498
24499 (define-public rust-sema-0.1
24500 (package
24501 (name "rust-sema")
24502 (version "0.1.4")
24503 (source
24504 (origin
24505 (method url-fetch)
24506 (uri (crate-uri "sema" version))
24507 (file-name
24508 (string-append name "-" version ".tar.gz"))
24509 (sha256
24510 (base32
24511 "0ckq33sg84785p195m54h03jcn7fai8w08hjnb94nzaakgzibbz3"))
24512 (modules '((guix build utils)))
24513 (snippet
24514 '(begin (substitute* "Cargo.toml"
24515 (("libc.*") "libc = \"0.2\"\n"))
24516 #t))))
24517 (build-system cargo-build-system)
24518 (arguments
24519 `( #:cargo-inputs
24520 (("rust-libc" ,rust-libc-0.2)
24521 ("rust-rand" ,rust-rand-0.3)
24522 ("rust-time" ,rust-time-0.1))
24523 #:cargo-development-inputs
24524 (("rust-lazy-static" ,rust-lazy-static-1)
24525 ("rust-nix" ,rust-nix-0.15))))
24526 (home-page "https://github.com/cpjreynolds/sema")
24527 (synopsis "Rust semaphore library")
24528 (description "Rust semaphore library.")
24529 (license license:expat)))
24530
24531 (define-public rust-semver-0.10
24532 (package
24533 (name "rust-semver")
24534 (version "0.10.0")
24535 (source
24536 (origin
24537 (method url-fetch)
24538 (uri (crate-uri "semver" version))
24539 (file-name (string-append name "-" version ".tar.gz"))
24540 (sha256
24541 (base32
24542 "1401i88135h2paxwvf0b51hf585rdzxa8yxg7j800gk2z8lfqk1r"))))
24543 (build-system cargo-build-system)
24544 (arguments
24545 `(#:cargo-inputs
24546 (("rust-diesel" ,rust-diesel-1)
24547 ("rust-semver-parser" ,rust-semver-parser-0.7)
24548 ("rust-serde" ,rust-serde-1))
24549 #:cargo-development-inputs
24550 (("rust-serde-derive" ,rust-serde-derive-1)
24551 ("rust-serde-json" ,rust-serde-json-1))))
24552 (home-page "https://docs.rs/crate/semver/")
24553 (synopsis "Semantic version parsing and comparison")
24554 (description "This package provides semantic version parsing and
24555 comparison.")
24556 (license (list license:expat license:asl2.0))))
24557
24558 (define-public rust-semver-0.9
24559 (package
24560 (name "rust-semver")
24561 (version "0.9.0")
24562 (source
24563 (origin
24564 (method url-fetch)
24565 (uri (crate-uri "semver" version))
24566 (file-name
24567 (string-append name "-" version ".tar.gz"))
24568 (sha256
24569 (base32
24570 "00q4lkcj0rrgbhviv9sd4p6qmdsipkwkbra7rh11jrhq5kpvjzhx"))))
24571 (build-system cargo-build-system)
24572 (arguments
24573 `(#:skip-build? #t
24574 #:cargo-inputs
24575 (("rust-semver-parser" ,rust-semver-parser-0.7)
24576 ("rust-serde" ,rust-serde-1))
24577 #:cargo-development-inputs
24578 (("rust-crates-index" ,rust-crates-index-0.13)
24579 ("rust-serde-derive" ,rust-serde-derive-1)
24580 ("rust-serde-json" ,rust-serde-json-1)
24581 ("rust-tempdir" ,rust-tempdir-0.3))))
24582 (home-page "https://docs.rs/crate/semver")
24583 (synopsis
24584 "Semantic version parsing and comparison")
24585 (description
24586 "Semantic version parsing and comparison.")
24587 (license (list license:expat license:asl2.0))))
24588
24589 (define-public rust-semver-parser-0.9
24590 (package
24591 (name "rust-semver-parser")
24592 (version "0.9.0")
24593 (source
24594 (origin
24595 (method url-fetch)
24596 (uri (crate-uri "semver-parser" version))
24597 (file-name (string-append name "-" version ".crate"))
24598 (sha256
24599 (base32
24600 "1ahqhvgpzhcsd28id7xnrjv4419i9yyalhm7d7zi430qx0hi2vml"))))
24601 (build-system cargo-build-system)
24602 (home-page "https://github.com/steveklabnik/semver-parser")
24603 (synopsis "Parsing of the semver spec")
24604 (description "This package provides for parsing of the semver spec.")
24605 (license (list license:asl2.0
24606 license:expat))))
24607
24608 (define-public rust-semver-parser-0.7
24609 (package
24610 (inherit rust-semver-parser-0.9)
24611 (name "rust-semver-parser")
24612 (version "0.7.0")
24613 (source
24614 (origin
24615 (method url-fetch)
24616 (uri (crate-uri "semver-parser" version))
24617 (file-name (string-append name "-" version ".crate"))
24618 (sha256
24619 (base32
24620 "18vhypw6zgccnrlm5ps1pwa0khz7ry927iznpr88b87cagr1v2iq"))))))
24621
24622 (define-public rust-sequoia-openpgp-0.9
24623 (package
24624 (name "rust-sequoia-openpgp")
24625 (version "0.9.0")
24626 (source
24627 (origin
24628 (method url-fetch)
24629 (uri (crate-uri "sequoia-openpgp" version))
24630 (file-name
24631 (string-append name "-" version ".tar.gz"))
24632 (sha256
24633 (base32
24634 "007h2pi7lcph5jf5bxjydm7hjwjai33yk6dic3cxknki22lxlkfw"))))
24635 (build-system cargo-build-system)
24636 (arguments
24637 `(#:cargo-inputs
24638 (("rust-base64" ,rust-base64-0.9)
24639 ("rust-buffered-reader" ,rust-buffered-reader-0.9)
24640 ("rust-bzip2" ,rust-bzip2-0.3)
24641 ("rust-failure" ,rust-failure-0.1)
24642 ("rust-flate2" ,rust-flate2-1)
24643 ("rust-idna" ,rust-idna-0.1)
24644 ("rust-lalrpop" ,rust-lalrpop-0.17)
24645 ("rust-lalrpop-util" ,rust-lalrpop-util-0.17)
24646 ("rust-lazy-static" ,rust-lazy-static-1)
24647 ("rust-memsec" ,rust-memsec-0.5)
24648 ("rust-nettle" ,rust-nettle-5)
24649 ("rust-quickcheck" ,rust-quickcheck-0.8)
24650 ("rust-rand" ,rust-rand-0.6)
24651 ("rust-sequoia-rfc2822" ,rust-sequoia-rfc2822-0.9)
24652 ("rust-time" ,rust-time-0.1))
24653 #:cargo-development-inputs
24654 (("rust-rpassword" ,rust-rpassword-3))))
24655 (native-inputs
24656 `(("pkg-config" ,pkg-config)))
24657 (inputs
24658 `(("clang" ,clang)
24659 ("nettle" ,nettle)))
24660 (home-page "https://sequoia-pgp.org/")
24661 (synopsis "OpenPGP data types and associated machinery")
24662 (description
24663 "This crate aims to provide a complete implementation of OpenPGP as
24664 defined by RFC 4880 as well as some extensions (e.g., RFC 6637, which
24665 describes ECC cryptography) for OpenPGP. This includes support for unbuffered
24666 message processing.
24667
24668 A few features that the OpenPGP community considers to be deprecated (e.g.,
24669 version 3 compatibility) have been left out. We have also updated some
24670 OpenPGP defaults to avoid foot guns (e.g., we selected modern algorithm
24671 defaults). If some functionality is missing, please file a bug report.")
24672 (license license:gpl3)))
24673
24674 (define-public rust-sequoia-rfc2822-0.9
24675 (package
24676 (name "rust-sequoia-rfc2822")
24677 (version "0.9.0")
24678 (source
24679 (origin
24680 (method url-fetch)
24681 (uri (crate-uri "sequoia-rfc2822" version))
24682 (file-name
24683 (string-append name "-" version ".tar.gz"))
24684 (sha256
24685 (base32
24686 "1aj34i6862718m162rqfv69fkmvdw063s6ws7hbp42n73gb08p5c"))))
24687 (build-system cargo-build-system)
24688 (arguments
24689 `(#:cargo-inputs
24690 (("rust-failure" ,rust-failure-0.1)
24691 ("rust-lalrpop" ,rust-lalrpop-0.17)
24692 ("rust-lalrpop-util" ,rust-lalrpop-util-0.17))
24693 #:cargo-development-inputs
24694 (("rust-lazy-static" ,rust-lazy-static-1)
24695 ("rust-quickcheck" ,rust-quickcheck-0.8)
24696 ("rust-rand" ,rust-rand-0.6))))
24697 (home-page "https://sequoia-pgp.org/")
24698 (synopsis "RFC 2822 name-addr parser")
24699 (description
24700 "Currently, this crate only recognizes the RFC 2822 name-addr and
24701 addr-spec productions, i.e., things of the form:
24702
24703 Name (Comment) <email@@example.org>
24704
24705 and
24706
24707 email@@example.org
24708
24709 Although the above appear simple to parse, RFC 2822's whitespace and comment
24710 rules are rather complex. This crate implements the whole grammar." )
24711 (license license:gpl3)))
24712
24713 (define-public rust-serde-1
24714 (package
24715 (name "rust-serde")
24716 (version "1.0.117")
24717 (source
24718 (origin
24719 (method url-fetch)
24720 (uri (crate-uri "serde" version))
24721 (file-name (string-append name "-" version ".crate"))
24722 (sha256
24723 (base32
24724 "06nwyyma9hch1abjqj0y9cb09m1y6lbzbsc7jff6483pvs1sk3xq"))))
24725 (build-system cargo-build-system)
24726 (arguments
24727 `(#:cargo-inputs
24728 (("rust-serde-derive" ,rust-serde-derive-1))
24729 #:cargo-development-inputs
24730 (("rust-serde-derive" ,rust-serde-derive-1))))
24731 (home-page "https://serde.rs")
24732 (synopsis "Generic serialization/deserialization framework")
24733 (description
24734 "This package provides a generic serialization/deserialization framework.")
24735 (license (list license:expat license:asl2.0))))
24736
24737 (define-public rust-serde-0.9
24738 (package
24739 (inherit rust-serde-1)
24740 (name "rust-serde")
24741 (version "0.9.15")
24742 (source
24743 (origin
24744 (method url-fetch)
24745 (uri (crate-uri "serde" version))
24746 (file-name
24747 (string-append name "-" version ".tar.gz"))
24748 (sha256
24749 (base32
24750 "1bsla8l5xr9pp5sirkal6mngxcq6q961km88jvf339j5ff8j7dil"))))
24751 (arguments
24752 `(#:phases
24753 (modify-phases %standard-phases
24754 (add-after 'unpack 'fix-cargo-toml
24755 (lambda _
24756 (substitute* "Cargo.toml"
24757 ((", path =.*}") "}"))
24758 #t)))
24759 #:cargo-inputs
24760 (("rust-serde-derive" ,rust-serde-derive-0.9))
24761 #:cargo-development-inputs
24762 (("rust-serde-derive" ,rust-serde-derive-0.9))))))
24763
24764 (define-public rust-serde-0.8
24765 (package
24766 (inherit rust-serde-1)
24767 (name "rust-serde")
24768 (version "0.8.23")
24769 (source
24770 (origin
24771 (method url-fetch)
24772 (uri (crate-uri "serde" version))
24773 (file-name (string-append name "-" version ".tar.gz"))
24774 (sha256
24775 (base32
24776 "1j4ajipn0sf4ya0crgcb94s848qp7mfc35n6d0q2rf8rk5skzbcx"))))
24777 (arguments
24778 `(#:cargo-development-inputs
24779 (("rust-clippy" ,rust-clippy-0.0))
24780 #:tests? #f))))
24781
24782 (define-public rust-serde-0.4
24783 (package
24784 (inherit rust-serde-0.9)
24785 (name "rust-serde")
24786 (version "0.4.3")
24787 (source
24788 (origin
24789 (method url-fetch)
24790 (uri (crate-uri "serde" version))
24791 (file-name
24792 (string-append name "-" version ".tar.gz"))
24793 (sha256
24794 (base32
24795 "06s2ayx1p5zzj4q7bfld60c9iprsk1256pnh8qj6h794mjinw11b"))))
24796 (arguments
24797 `(#:skip-build? #t
24798 #:cargo-inputs (("rust-num" ,rust-num-0.2))))))
24799
24800 (define-public rust-serde-big-array-0.2
24801 (package
24802 (name "rust-serde-big-array")
24803 (version "0.2.0")
24804 (source
24805 (origin
24806 (method url-fetch)
24807 (uri (crate-uri "serde-big-array" version))
24808 (file-name
24809 (string-append name "-" version ".tar.gz"))
24810 (sha256
24811 (base32
24812 "0kj0h99y7ma9nsayv87fj2n680bcrwv2mrcbmc774lgak18ywgl8"))))
24813 (build-system cargo-build-system)
24814 (arguments
24815 `(#:cargo-inputs
24816 (("rust-serde" ,rust-serde-1)
24817 ("rust-serde-derive" ,rust-serde-derive-1))
24818 #:cargo-development-inputs
24819 (("rust-serde-json" ,rust-serde-json-1))))
24820 (home-page "https://github.com/est31/serde-big-array")
24821 (synopsis "Big array helper for serde")
24822 (description "This package provides a big array helper for serde.")
24823 (license (list license:asl2.0 license:expat))))
24824
24825 (define-public rust-serde-big-array-0.1
24826 (package
24827 (inherit rust-serde-big-array-0.2)
24828 (name "rust-serde-big-array")
24829 (version "0.1.5")
24830 (source
24831 (origin
24832 (method url-fetch)
24833 (uri (crate-uri "serde-big-array" version))
24834 (file-name
24835 (string-append name "-" version ".tar.gz"))
24836 (sha256
24837 (base32
24838 "0gkyqxk760mp1lfcg6lhjk95ajc89nr0qdd0vl4ic0g8pyxcy9mr"))))))
24839
24840 (define-public rust-serde-bytes-0.11
24841 (package
24842 (name "rust-serde-bytes")
24843 (version "0.11.5")
24844 (source
24845 (origin
24846 (method url-fetch)
24847 (uri (crate-uri "serde_bytes" version))
24848 (file-name
24849 (string-append name "-" version ".tar.gz"))
24850 (sha256
24851 (base32 "1fcb6sw8wkrj4ylm118wkb31hw124nkjnqyhbgqnd8w85zfhgbhn"))))
24852 (build-system cargo-build-system)
24853 (arguments
24854 `(#:skip-build? #t
24855 #:cargo-inputs
24856 (("rust-serde" ,rust-serde-1))
24857 #:cargo-development-inputs
24858 (("rust-bincode" ,rust-bincode-1)
24859 ("rust-serde-derive" ,rust-serde-derive-1)
24860 ("rust-serde-test" ,rust-serde-test-1))))
24861 (home-page "https://github.com/serde-rs/bytes")
24862 (synopsis "Handle integer arrays and vectors for Serde")
24863 (description
24864 "Optimized handling of @code{&[u8]} and @code{Vec<u8>} for Serde.")
24865 (license (list license:expat license:asl2.0))))
24866
24867 (define-public rust-serde-bytes-0.10
24868 (package
24869 (inherit rust-serde-bytes-0.11)
24870 (name "rust-serde-bytes")
24871 (version "0.10.5")
24872 (source
24873 (origin
24874 (method url-fetch)
24875 (uri (crate-uri "serde_bytes" version))
24876 (file-name
24877 (string-append name "-" version ".tar.gz"))
24878 (sha256
24879 (base32
24880 "127c9br02ygajs4z3bw850i48nc25f4yn7kmh21wqd3z7nlbiyyy"))))))
24881
24882 (define-public rust-serde-cbor-0.11
24883 (package
24884 (name "rust-serde-cbor")
24885 (version "0.11.1")
24886 (source
24887 (origin
24888 (method url-fetch)
24889 (uri (crate-uri "serde-cbor" version))
24890 (file-name
24891 (string-append name "-" version ".tar.gz"))
24892 (sha256
24893 (base32
24894 "08m62mfqjnpa543kd9r9cyxlqc6y73avhsl3n8svgs4h5zxaq60y"))))
24895 (build-system cargo-build-system)
24896 (arguments
24897 `(#:cargo-inputs
24898 (("rust-half" ,rust-half-1)
24899 ("rust-serde" ,rust-serde-1))
24900 #:cargo-development-inputs
24901 (("rust-serde-derive" ,rust-serde-derive-1))))
24902 (home-page "https://github.com/pyfisch/cbor")
24903 (synopsis "CBOR support for serde")
24904 (description "CBOR support for serde.")
24905 (license (list license:expat license:asl2.0))))
24906
24907 (define-public rust-serde-cbor-0.10
24908 (package
24909 (inherit rust-serde-cbor-0.11)
24910 (name "rust-serde-cbor")
24911 (version "0.10.2")
24912 (source
24913 (origin
24914 (method url-fetch)
24915 (uri (crate-uri "serde_cbor" version))
24916 (file-name
24917 (string-append name "-" version ".tar.gz"))
24918 (sha256
24919 (base32
24920 "0kyizacjabsa78p9f7qvj31zirpnsgsr4zpfv1p6lwpcb3biw27p"))))
24921 (arguments
24922 `(#:skip-build? #t
24923 #:cargo-inputs
24924 (("rust-byteorder" ,rust-byteorder-1)
24925 ("rust-half" ,rust-half-1)
24926 ("rust-serde" ,rust-serde-1))
24927 #:cargo-development-inputs
24928 (("rust-serde-derive" ,rust-serde-derive-1))))))
24929
24930 (define-public rust-serde-codegen-0.4
24931 (package
24932 (name "rust-serde-codegen")
24933 (version "0.4.3")
24934 (source
24935 (origin
24936 (method url-fetch)
24937 (uri (crate-uri "serde_codegen" version))
24938 (file-name
24939 (string-append name "-" version ".tar.gz"))
24940 (sha256
24941 (base32
24942 "0167ghvqs0n8qin8fjx2ihn3gx92m55685qpv4nzihw48h4rq0vq"))))
24943 (build-system cargo-build-system)
24944 (arguments
24945 `(#:skip-build? #t
24946 #:cargo-inputs
24947 (("rust-aster" ,rust-aster-0.41)
24948 ("rust-quasi" ,rust-quasi-0.32)
24949 ("rust-quasi-macros" ,rust-quasi-macros-0.32)
24950 ("rust-syntex" ,rust-syntex-0.58)
24951 ("rust-syntex-syntax" ,rust-syntex-syntax-0.58))
24952 #:cargo-development-inputs
24953 (("rust-quasi-codegen" ,rust-quasi-codegen-0.32)
24954 ("rust-syntex" ,rust-syntex-0.58))))
24955 (home-page "https://serde.rs")
24956 (synopsis "Macros for the serde framework")
24957 (description "This package provides macros to auto-generate implementations
24958 for the serde framework.")
24959 (license (list license:expat license:asl2.0))))
24960
24961 (define-public rust-serde-codegen-internals-0.14
24962 (package
24963 (name "rust-serde-codegen-internals")
24964 (version "0.14.2")
24965 (source
24966 (origin
24967 (method url-fetch)
24968 (uri (crate-uri "serde_codegen_internals" version))
24969 (file-name
24970 (string-append name "-" version ".tar.gz"))
24971 (sha256
24972 (base32
24973 "0004s3wlc85vi6hq62hq84cv5b6qbbin1n6hdaqj095xhg98p25w"))))
24974 (build-system cargo-build-system)
24975 (arguments
24976 `(#:cargo-inputs (("rust-syn" ,rust-syn-0.11))))
24977 (home-page "https://serde.rs")
24978 (synopsis "AST representation used by Serde codegen")
24979 (description
24980 "Unstable AST representation used by Serde codegen.")
24981 (license (list license:expat license:asl2.0))))
24982
24983 (define-public rust-serde-derive-1
24984 (package
24985 (name "rust-serde-derive")
24986 (version "1.0.117")
24987 (source
24988 (origin
24989 (method url-fetch)
24990 (uri (crate-uri "serde-derive" version))
24991 (file-name (string-append name "-" version ".crate"))
24992 (sha256
24993 (base32
24994 "0kn7ais3zv9ajbyc216qm14r61zwlm229815yd4anjmlmmraxlfb"))))
24995 (build-system cargo-build-system)
24996 (arguments
24997 `(#:cargo-inputs
24998 (("rust-proc-macro2" ,rust-proc-macro2-1)
24999 ("rust-quote" ,rust-quote-1)
25000 ("rust-syn" ,rust-syn-1))
25001 #:cargo-development-inputs
25002 (("rust-serde" ,rust-serde-1))))
25003 (home-page "https://serde.rs")
25004 (synopsis
25005 "Macros 1.1 implementation of #[derive(Serialize, Deserialize)]")
25006 (description
25007 "Macros 1.1 implementation of #[derive(Serialize, Deserialize)]")
25008 (license (list license:expat license:asl2.0))))
25009
25010 (define-public rust-serde-derive-0.9
25011 (package
25012 (inherit rust-serde-derive-1)
25013 (name "rust-serde-derive")
25014 (version "0.9.15")
25015 (source
25016 (origin
25017 (method url-fetch)
25018 (uri (crate-uri "serde-derive" version))
25019 (file-name
25020 (string-append name "-" version ".tar.gz"))
25021 (sha256
25022 (base32
25023 "1fkldf0lnl6pwxs00qpyp79m30qmfpi3bk0wm22211ylyikdi3wp"))))
25024 (arguments
25025 `(#:phases
25026 (modify-phases %standard-phases
25027 (add-after 'unpack 'fix-cargo-toml
25028 (lambda _
25029 (substitute* "Cargo.toml"
25030 ((", path =.*}") "}"))
25031 #t)))
25032 #:cargo-inputs
25033 (("rust-quote" ,rust-quote-0.3)
25034 ("rust-serde-codegen-internals" ,rust-serde-codegen-internals-0.14)
25035 ("rust-syn" ,rust-syn-0.11))))))
25036
25037 (define-public rust-serde-json-1
25038 (package
25039 (name "rust-serde-json")
25040 (version "1.0.50")
25041 (source
25042 (origin
25043 (method url-fetch)
25044 (uri (crate-uri "serde-json" version))
25045 (file-name (string-append name "-" version ".crate"))
25046 (sha256
25047 (base32
25048 "0rs8rsk59kgkgsrw8hyyjrlhas9k1by2jwxxqcz3c2bq2qna39vq"))))
25049 (build-system cargo-build-system)
25050 (arguments
25051 `(#:skip-build? #t
25052 #:cargo-inputs
25053 (("rust-indexmap" ,rust-indexmap-1)
25054 ("rust-itoa" ,rust-itoa-0.4)
25055 ("rust-ryu" ,rust-ryu-1.0)
25056 ("rust-serde" ,rust-serde-1))
25057 #:cargo-development-inputs
25058 (;("rust-automod" ,rust-automod-0.1)
25059 ("rust-rustversion" ,rust-rustversion-1)
25060 ("rust-serde-bytes" ,rust-serde-bytes-0.11)
25061 ("rust-serde-derive" ,rust-serde-derive-1)
25062 ;("rust-serde-stacker" ,rust-serde-stacker-0.1)
25063 ("rust-trybuild" ,rust-trybuild-1))))
25064 (home-page "https://github.com/serde-rs/json")
25065 (synopsis "JSON serialization file format")
25066 (description
25067 "This package provides a JSON serialization file format.")
25068 (license (list license:expat license:asl2.0))))
25069
25070 (define-public rust-serde-json-0.9
25071 (package
25072 (inherit rust-serde-json-1)
25073 (name "rust-serde-json")
25074 (version "0.9.10")
25075 (source
25076 (origin
25077 (method url-fetch)
25078 (uri (crate-uri "serde_json" version))
25079 (file-name
25080 (string-append name "-" version ".tar.gz"))
25081 (sha256
25082 (base32
25083 "188nbf56m7p6mnh3xd71rwqxd4g95lqh8gsl7mfy3lp7gd4cz2xd"))))
25084 (build-system cargo-build-system)
25085 (arguments
25086 `(#:cargo-inputs
25087 (("rust-dtoa" ,rust-dtoa-0.4)
25088 ("rust-itoa" ,rust-itoa-0.3)
25089 ("rust-linked-hash-map" ,rust-linked-hash-map-0.4)
25090 ("rust-num-traits" ,rust-num-traits-0.1)
25091 ("rust-serde" ,rust-serde-0.9))
25092 #:cargo-development-inputs
25093 (("rust-serde-derive" ,rust-serde-derive-0.9))))))
25094
25095 (define-public rust-serde-macros-0.4
25096 (package
25097 (name "rust-serde-macros")
25098 (version "0.4.4")
25099 (source
25100 (origin
25101 (method url-fetch)
25102 (uri (crate-uri "serde_macros" version))
25103 (file-name
25104 (string-append name "-" version ".tar.gz"))
25105 (sha256
25106 (base32
25107 "1717rpncvvyvyrpb7hdjgxpiki9vdgygwv2r3d9aal5n8cm8xi8i"))))
25108 (build-system cargo-build-system)
25109 (arguments
25110 `(#:skip-build? #t
25111 #:phases
25112 (modify-phases %standard-phases
25113 (add-after 'unpack 'fix-cargo-toml
25114 (lambda _
25115 (substitute* "Cargo.toml"
25116 ((", path =.*}") "}"))
25117 #t)))
25118 #:cargo-inputs
25119 (("rust-serde-codegen" ,rust-serde-codegen-0.4))
25120 #:cargo-development-inputs
25121 (("rust-num" ,rust-num-0.2)
25122 ("rust-rustc-serialize" ,rust-rustc-serialize-0.3)
25123 ("rust-serde" ,rust-serde-0.4))))
25124 (home-page "https://serde.rs")
25125 (synopsis
25126 "Macros to auto-generate implementations for the serde framework")
25127 (description
25128 "Macros to auto-generate implementations for the serde framework.")
25129 (license (list license:expat license:asl2.0))))
25130
25131 (define-public rust-serde-test-1
25132 (package
25133 (name "rust-serde-test")
25134 (version "1.0.113")
25135 (source
25136 (origin
25137 (method url-fetch)
25138 (uri (crate-uri "serde_test" version))
25139 (file-name
25140 (string-append name "-" version ".tar.gz"))
25141 (sha256
25142 (base32
25143 "02s7zjs12m5abk13j5farc00rzissk1anpl015vawpzz914jsan3"))))
25144 (build-system cargo-build-system)
25145 (arguments
25146 `(#:cargo-inputs
25147 (("rust-serde" ,rust-serde-1))
25148 #:cargo-development-inputs
25149 (("rust-serde" ,rust-serde-1)
25150 ("rust-serde-derive" ,rust-serde-derive-1))))
25151 (home-page "https://serde.rs")
25152 (synopsis
25153 "Token De/Serializer for testing De/Serialize implementations")
25154 (description
25155 "Token De/Serializer for testing De/Serialize implementations.")
25156 (license (list license:expat license:asl2.0))))
25157
25158 (define-public rust-serde-test-0.9
25159 (package
25160 (inherit rust-serde-test-1)
25161 (name "rust-serde-test")
25162 (version "0.9.15")
25163 (source
25164 (origin
25165 (method url-fetch)
25166 (uri (crate-uri "serde_test" version))
25167 (file-name
25168 (string-append name "-" version ".tar.gz"))
25169 (sha256
25170 (base32
25171 "193mf0qkhvjywd06x6hhmkixlqcyfbpfwfmr75dp2b8xwzpsvxwf"))))
25172 (arguments
25173 `(#:phases
25174 (modify-phases %standard-phases
25175 (add-after 'unpack 'fix-cargo-toml
25176 (lambda _
25177 (substitute* "Cargo.toml"
25178 ((", path =.*}") "}"))
25179 #t)))
25180 #:cargo-inputs (("rust-serde" ,rust-serde-0.9))))))
25181
25182 (define-public rust-serde-test-0.8
25183 (package
25184 (inherit rust-serde-test-1)
25185 (name "rust-serde-test")
25186 (version "0.8.23")
25187 (source
25188 (origin
25189 (method url-fetch)
25190 (uri (crate-uri "serde-test" version))
25191 (file-name (string-append name "-" version ".tar.gz"))
25192 (sha256
25193 (base32
25194 "1m939j7cgs7i58r6vxf0ffp3nbr8advr8p9dqa9w8zk0z2yks2qi"))))
25195 (arguments
25196 `(#:cargo-inputs (("rust-serde" ,rust-serde-0.8))
25197 #:phases
25198 (modify-phases %standard-phases
25199 (add-after 'unpack 'fix-Cargo-toml
25200 (lambda _
25201 (substitute* "Cargo.toml"
25202 ((", path = \"../serde\"") ""))
25203 #t)))))))
25204
25205 (define-public rust-serde-urlencoded-0.6
25206 (package
25207 (name "rust-serde-urlencoded")
25208 (version "0.6.1")
25209 (source
25210 (origin
25211 (method url-fetch)
25212 (uri (crate-uri "serde_urlencoded" version))
25213 (file-name (string-append name "-" version ".tar.gz"))
25214 (sha256
25215 (base32
25216 "15rcwfkff0md5i231m2ym5756ksw1mkh5b5g2rw72wsc5mzdgicy"))))
25217 (build-system cargo-build-system)
25218 (arguments
25219 `(#:cargo-inputs
25220 (("rust-dtoa" ,rust-dtoa-0.4)
25221 ("rust-itoa" ,rust-itoa-0.4)
25222 ("rust-serde" ,rust-serde-1)
25223 ("rust-url" ,rust-url-2))
25224 #:cargo-development-inputs
25225 (("rust-serde-derive" ,rust-serde-derive-1))))
25226 (home-page "https://github.com/nox/serde_urlencoded")
25227 (synopsis "x-www-form-urlencoded meets serde")
25228 (description "x-www-form-urlencoded meets serde.")
25229 (license (list license:expat license:asl2.0))))
25230
25231 (define-public rust-serde-yaml-0.8
25232 (package
25233 (name "rust-serde-yaml")
25234 (version "0.8.11")
25235 (source
25236 (origin
25237 (method url-fetch)
25238 (uri (crate-uri "serde_yaml" version))
25239 (file-name
25240 (string-append name "-" version ".tar.gz"))
25241 (sha256
25242 (base32
25243 "0d9wdjrlx9gxg80kzc6pvdwz5pwhja2n8n0bxja9vv61kzqif6v9"))))
25244 (build-system cargo-build-system)
25245 (arguments
25246 `(#:skip-build? #t
25247 #:cargo-inputs
25248 (("rust-dtoa" ,rust-dtoa-0.4)
25249 ("rust-linked-hash-map" ,rust-linked-hash-map-0.5)
25250 ("rust-serde" ,rust-serde-1)
25251 ("rust-yaml-rust" ,rust-yaml-rust-0.4))
25252 #:cargo-development-inputs
25253 (("rust-serde-derive" ,rust-serde-derive-1)
25254 ("rust-unindent" ,rust-unindent-0.1))))
25255 (home-page
25256 "https://github.com/dtolnay/serde-yaml")
25257 (synopsis "YAML support for Serde")
25258 (description "YAML support for Serde.")
25259 (license (list license:asl2.0 license:expat))))
25260
25261 (define-public rust-serial-test-0.1
25262 (package
25263 (name "rust-serial-test")
25264 (version "0.1.0")
25265 (source
25266 (origin
25267 (method url-fetch)
25268 (uri (crate-uri "serial-test" version))
25269 (file-name
25270 (string-append name "-" version ".tar.gz"))
25271 (sha256
25272 (base32
25273 "0qywhzjc4jh6dqqng90maai0mjlmafk9aa5rrl9g3d2g01wdn8ms"))))
25274 (build-system cargo-build-system)
25275 (arguments
25276 `(#:cargo-inputs
25277 (("rust-lazy-static" ,rust-lazy-static-1))))
25278 (home-page "https://github.com/palfrey/serial_test/")
25279 (synopsis "Serialised Rust tests")
25280 (description
25281 "Allows for the creation of serialised Rust tests.")
25282 (license license:expat)))
25283
25284 (define-public rust-serial-test-derive-0.1
25285 (package
25286 (name "rust-serial-test-derive")
25287 (version "0.1.0")
25288 (source
25289 (origin
25290 (method url-fetch)
25291 (uri (crate-uri "serial-test-derive" version))
25292 (file-name
25293 (string-append name "-" version ".tar.gz"))
25294 (sha256
25295 (base32
25296 "17fkqrba233sjhdak986y4w3z4yjxa4idjkh46l7zxgcgjlvrnic"))))
25297 (build-system cargo-build-system)
25298 (arguments
25299 `(#:cargo-inputs
25300 (("rust-quote" ,rust-quote-0.6)
25301 ("rust-syn" ,rust-syn-0.15))))
25302 (home-page "https://github.com/palfrey/serial_test/")
25303 (synopsis "Helper crate for serial_test")
25304 (description "This package provides a helper crate for @code{serial_test}.")
25305 (license license:expat)))
25306
25307 (define-public rust-servo-arc-0.1
25308 (package
25309 (name "rust-servo-arc")
25310 (version "0.1.1")
25311 (source
25312 (origin
25313 (method url-fetch)
25314 (uri (crate-uri "servo-arc" version))
25315 (file-name
25316 (string-append name "-" version ".tar.gz"))
25317 (sha256
25318 (base32
25319 "0cjljr9znwahry6p95xvd3p4pmy24wlf6gbfidnmglg002w3i0nr"))))
25320 (build-system cargo-build-system)
25321 (arguments
25322 `(#:cargo-inputs
25323 (("rust-nodrop" ,rust-nodrop-0.1)
25324 ("rust-serde" ,rust-serde-1)
25325 ("rust-stable-deref-trait" ,rust-stable-deref-trait-1))))
25326 (home-page "https://github.com/servo/servo")
25327 (synopsis "Fork of std::sync::Arc with some extra functionality")
25328 (description
25329 "This package provides a fork of @code{std::sync::Arc} with some extra
25330 functionality and without weak references.")
25331 (license (list license:expat license:asl2.0))))
25332
25333 (define-public rust-serial-test-derive-0.4
25334 (package
25335 (name "rust-serial-test-derive")
25336 (version "0.4.0")
25337 (source
25338 (origin
25339 (method url-fetch)
25340 (uri (crate-uri "serial_test_derive" version))
25341 (file-name
25342 (string-append name "-" version ".tar.gz"))
25343 (sha256
25344 (base32
25345 "05b5xr36zi8damfg3bmbh1kwdxc3k1y2r8b8pmi7q8jb0bc3i0yh"))))
25346 (build-system cargo-build-system)
25347 (arguments
25348 `(#:cargo-inputs
25349 (("rust-env-logger" ,rust-env-logger-0.7)
25350 ("rust-proc-macro2" ,rust-proc-macro2-1)
25351 ("rust-quote" ,rust-quote-1)
25352 ("rust-syn" ,rust-syn-1))))
25353 (home-page
25354 "https://github.com/palfrey/serial_test_derive/")
25355 (synopsis "Serialising Rust tests")
25356 (description "Serialising Rust tests")
25357 (license license:expat)))
25358
25359 (define-public rust-serial-test-0.4
25360 (package
25361 (name "rust-serial-test")
25362 (version "0.4.0")
25363 (source
25364 (origin
25365 (method url-fetch)
25366 (uri (crate-uri "serial_test" version))
25367 (file-name
25368 (string-append name "-" version ".tar.gz"))
25369 (sha256
25370 (base32
25371 "1mkz246ax07nar0bmh3m98kl27lacja98vywi9cjqbsb8g3zgxgy"))))
25372 (build-system cargo-build-system)
25373 (arguments
25374 `(#:cargo-inputs
25375 (("rust-lazy-static" ,rust-lazy-static-1)
25376 ("rust-parking-lot" ,rust-parking-lot-0.10)
25377 ("rust-serial-test-derive" ,rust-serial-test-derive-0.4))))
25378 (home-page
25379 "https://github.com/palfrey/serial_test/")
25380 (synopsis "Serialising Rust tests")
25381 (description "Serialising Rust tests")
25382 (license license:expat)))
25383
25384 (define-public rust-servo-fontconfig-0.4
25385 (package
25386 (name "rust-servo-fontconfig")
25387 (version "0.4.0")
25388 (source
25389 (origin
25390 (method url-fetch)
25391 (uri (crate-uri "servo-fontconfig" version))
25392 (file-name
25393 (string-append name "-" version ".tar.gz"))
25394 (sha256
25395 (base32
25396 "1nach6s4hdf86jz5hlm4p5r7vin91cs7gg89mr533id5fpbzi250"))))
25397 (build-system cargo-build-system)
25398 (arguments
25399 `(#:cargo-inputs
25400 (("rust-libc" ,rust-libc-0.2)
25401 ("rust-servo-fontconfig-sys" ,rust-servo-fontconfig-sys-4))))
25402 (native-inputs
25403 `(("pkg-config" ,pkg-config)))
25404 (inputs
25405 `(("fontconfig" ,fontconfig)))
25406 (home-page "https://github.com/servo/rust-fontconfig/")
25407 (synopsis "Rust bindings for fontconfig")
25408 (description "This package provides Rust bindings for fontconfig.")
25409 (license (list license:expat license:asl2.0))))
25410
25411 (define-public rust-servo-fontconfig-sys-4
25412 (package
25413 (name "rust-servo-fontconfig-sys")
25414 (version "4.0.9")
25415 (source
25416 (origin
25417 (method url-fetch)
25418 (uri (crate-uri "servo-fontconfig-sys" version))
25419 (file-name
25420 (string-append name "-" version ".tar.gz"))
25421 (sha256
25422 (base32
25423 "0v0mbicy74wd6cjd5jyqnm4nvrrr5lmg053cn16kylhg8mkf3cv2"))
25424 (modules '((guix build utils)))
25425 (snippet
25426 '(begin
25427 (for-each delete-file-recursively
25428 (find-files "." "[^Cargo.toml,^build\\.rs]"))
25429 #t))))
25430 (build-system cargo-build-system)
25431 (arguments
25432 `(#:cargo-inputs
25433 (("rust-expat-sys" ,rust-expat-sys-2.1)
25434 ("rust-servo-freetype-sys" ,rust-servo-freetype-sys-4)
25435 ("rust-pkg-config" ,rust-pkg-config-0.3))))
25436 (native-inputs
25437 `(("pkg-config" ,pkg-config)))
25438 (inputs
25439 `(("fontconfig" ,fontconfig)))
25440 (home-page "https://crates.io/crates/servo-fontconfig-sys")
25441 (synopsis "Rust wrapper around Fontconfig")
25442 (description
25443 "This package provides a Rust wrapper around Fontxonfig.")
25444 (license license:mpl2.0))) ; build.rs is mpl2.0
25445
25446 (define-public rust-servo-freetype-sys-4
25447 (package
25448 (name "rust-servo-freetype-sys")
25449 (version "4.0.5")
25450 (source
25451 (origin
25452 (method url-fetch)
25453 (uri (crate-uri "servo-freetype-sys" version))
25454 (file-name
25455 (string-append name "-" version ".tar.gz"))
25456 (sha256
25457 (base32
25458 "1z0dvnakans4vn4vlpx4nxg984427lh8dskxxz9pglij1mnwnk1c"))
25459 (modules '((guix build utils)))
25460 (snippet
25461 '(begin (delete-file-recursively "freetype2") #t))))
25462 (build-system cargo-build-system)
25463 (arguments
25464 `(#:cargo-inputs
25465 (("rust-cmake" ,rust-cmake-0.1)
25466 ("rust-pkg-config" ,rust-pkg-config-0.3))))
25467 (native-inputs
25468 `(("pkg-config" ,pkg-config)))
25469 (inputs
25470 `(("freetype" ,freetype)))
25471 (home-page "http://www.freetype.org/")
25472 (synopsis "Rust wrapper around freetype")
25473 (description
25474 "This package provides a Rust wrapper around the FreeType library.")
25475 (license license:mpl2.0))) ; build.rs is mpl2.0
25476
25477 (define-public rust-sha-1-0.9
25478 (package
25479 (name "rust-sha-1")
25480 (version "0.9.1")
25481 (source
25482 (origin
25483 (method url-fetch)
25484 (uri (crate-uri "sha-1" version))
25485 (file-name
25486 (string-append name "-" version ".tar.gz"))
25487 (sha256
25488 (base32
25489 "0w37j7swjkbzgi9mf7ihkw0zfik6vl97fs6jdpqs6r68hvm3c2hp"))))
25490 (build-system cargo-build-system)
25491 (arguments
25492 `(#:cargo-inputs
25493 (("rust-block-buffer" ,rust-block-buffer-0.9)
25494 ("rust-cfg-if" ,rust-cfg-if-0.1)
25495 ("rust-cpuid-bool" ,rust-cpuid-bool-0.1)
25496 ("rust-digest" ,rust-digest-0.9)
25497 ("rust-libc" ,rust-libc-0.2)
25498 ("rust-opaque-debug" ,rust-opaque-debug-0.3)
25499 ("rust-sha1-asm" ,rust-sha1-asm-0.4))
25500 #:cargo-development-inputs
25501 (("rust-digest" ,rust-digest-0.9)
25502 ("rust-hex-literal" ,rust-hex-literal-0.2))))
25503 (home-page "https://github.com/RustCrypto/hashes")
25504 (synopsis "SHA-1 hash function")
25505 (description "SHA-1 hash function.")
25506 (license (list license:expat license:asl2.0))))
25507
25508 (define-public rust-sha-1-0.8
25509 (package
25510 (inherit rust-sha-1-0.9)
25511 (name "rust-sha-1")
25512 (version "0.8.2")
25513 (source
25514 (origin
25515 (method url-fetch)
25516 (uri (crate-uri "sha-1" version))
25517 (file-name
25518 (string-append name "-" version ".tar.gz"))
25519 (sha256
25520 (base32
25521 "1pv387q0r7llk2cqzyq0nivzvkgqgzsiygqzlv7b68z9xl5lvngp"))))
25522 (arguments
25523 `(#:cargo-inputs
25524 (("rust-block-buffer" ,rust-block-buffer-0.7)
25525 ("rust-digest" ,rust-digest-0.8)
25526 ("rust-fake-simd" ,rust-fake-simd-0.1)
25527 ("rust-opaque-debug" ,rust-opaque-debug-0.2)
25528 ("rust-libc" ,rust-libc-0.2)
25529 ("rust-sha1-asm" ,rust-sha1-asm-0.4))
25530 #:cargo-development-inputs
25531 (("rust-digest" ,rust-digest-0.8)
25532 ("rust-hex-literal" ,rust-hex-literal-0.1))))))
25533
25534 (define-public rust-sha1-0.6
25535 (package
25536 (name "rust-sha1")
25537 (version "0.6.0")
25538 (source
25539 (origin
25540 (method url-fetch)
25541 (uri (crate-uri "sha1" version))
25542 (file-name
25543 (string-append name "-" version ".tar.gz"))
25544 (sha256
25545 (base32
25546 "03gs2q4m67rn2p8xcdfxhip6mpgahdwm12bnb3vh90ahv9grhy95"))))
25547 (build-system cargo-build-system)
25548 (arguments
25549 `(#:skip-build? #t
25550 #:cargo-inputs
25551 (("rust-serde" ,rust-serde-1))
25552 #:cargo-development-inputs
25553 (("rust-openssl" ,rust-openssl-0.10)
25554 ("rust-rand" ,rust-rand-0.4)
25555 ("rust-serde-json" ,rust-serde-json-1))))
25556 (home-page "https://github.com/mitsuhiko/rust-sha1")
25557 (synopsis "Minimal implementation of SHA1 for Rust")
25558 (description
25559 "Minimal implementation of SHA1 for Rust.")
25560 (license license:bsd-3)))
25561
25562 (define-public rust-sha1-0.2
25563 (package
25564 (inherit rust-sha1-0.6)
25565 (name "rust-sha1")
25566 (version "0.2.0")
25567 (source
25568 (origin
25569 (method url-fetch)
25570 (uri (crate-uri "sha1" version))
25571 (file-name
25572 (string-append name "-" version ".tar.gz"))
25573 (sha256
25574 (base32
25575 "0p09zfhd27z6yr5in07gfjcx345010rw51ivlcf14364x3hv2c6c"))))
25576 (arguments
25577 `(#:cargo-development-inputs
25578 (("rust-openssl" ,rust-openssl-0.7)
25579 ("rust-rand" ,rust-rand-0.3))
25580 #:phases
25581 (modify-phases %standard-phases
25582 (add-after 'unpack 'fix-cargo-toml
25583 (lambda _
25584 (substitute* "Cargo.toml"
25585 ((", path =.*}") "}"))
25586 #t)))))
25587 (inputs
25588 `(("openssl" ,openssl-1.0))))) ; for openssl-sys-extras
25589
25590 (define-public rust-sha1-asm-0.4
25591 (package
25592 (name "rust-sha1-asm")
25593 (version "0.4.3")
25594 (source
25595 (origin
25596 (method url-fetch)
25597 (uri (crate-uri "sha1-asm" version))
25598 (file-name
25599 (string-append name "-" version ".tar.gz"))
25600 (sha256
25601 (base32
25602 "1i1i8viy6y30mv9v5hwhg9w6b722qkyh9c6n8bn4d27jpv14pg0s"))))
25603 (build-system cargo-build-system)
25604 (arguments
25605 `(#:cargo-inputs
25606 (("rust-cc" ,rust-cc-1))))
25607 (home-page "https://github.com/RustCrypto/asm-hashes")
25608 (synopsis "Assembly implementation of SHA-1 compression function")
25609 (description
25610 "Assembly implementation of SHA-1 compression function.")
25611 (license license:expat)))
25612
25613 (define-public rust-sha2-0.9
25614 (package
25615 (name "rust-sha2")
25616 (version "0.9.1")
25617 (source
25618 (origin
25619 (method url-fetch)
25620 (uri (crate-uri "sha2" version))
25621 (file-name
25622 (string-append name "-" version ".tar.gz"))
25623 (sha256
25624 (base32
25625 "1hdqrx2d9073hgf34y6ilgw6ni5vv3d5nmccyhkfm9zdvy6kfcr9"))))
25626 (build-system cargo-build-system)
25627 (arguments
25628 `(#:cargo-inputs
25629 (("rust-block-buffer" ,rust-block-buffer-0.9)
25630 ("rust-cfg-if" ,rust-cfg-if-0.1)
25631 ("rust-cpuid-bool" ,rust-cpuid-bool-0.1)
25632 ("rust-digest" ,rust-digest-0.9)
25633 ("rust-libc" ,rust-libc-0.2)
25634 ("rust-opaque-debug" ,rust-opaque-debug-0.3)
25635 ("rust-sha2-asm" ,rust-sha2-asm-0.5))
25636 #:cargo-development-inputs
25637 (("rust-digest" ,rust-digest-0.9)
25638 ("rust-hex-literal" ,rust-hex-literal-0.2))))
25639 (home-page "https://github.com/RustCrypto/hashes")
25640 (synopsis "SHA-2 hash functions")
25641 (description
25642 "This package provides a pure Rust implementation of the SHA-2 hash
25643 function family including SHA-224, SHA-256, SHA-384, and SHA-512.")
25644 (license (list license:expat license:asl2.0))))
25645
25646 (define-public rust-sha2-0.8
25647 (package
25648 (inherit rust-sha2-0.9)
25649 (name "rust-sha2")
25650 (version "0.8.2")
25651 (source
25652 (origin
25653 (method url-fetch)
25654 (uri (crate-uri "sha2" version))
25655 (file-name (string-append name "-" version ".tar.gz"))
25656 (sha256
25657 (base32 "0s9yddvyg6anaikdl86wmwfim25c0d4m0xq0y2ghs34alxpg8mm2"))))
25658 (arguments
25659 `(#:cargo-inputs
25660 (("rust-block-buffer" ,rust-block-buffer-0.7)
25661 ("rust-digest" ,rust-digest-0.8)
25662 ("rust-fake-simd" ,rust-fake-simd-0.1)
25663 ("rust-libc" ,rust-libc-0.2)
25664 ("rust-opaque-debug" ,rust-opaque-debug-0.2)
25665 ("rust-sha2-asm" ,rust-sha2-asm-0.5))
25666 #:cargo-development-inputs
25667 (("rust-digest" ,rust-digest-0.8)
25668 ("rust-hex-literal" ,rust-hex-literal-0.1))))))
25669
25670 (define-public rust-sha2-asm-0.5
25671 (package
25672 (name "rust-sha2-asm")
25673 (version "0.5.4")
25674 (source
25675 (origin
25676 (method url-fetch)
25677 (uri (crate-uri "sha2-asm" version))
25678 (file-name (string-append name "-" version ".tar.gz"))
25679 (sha256
25680 (base32 "0y4n8r4362y2fa6p2j0dgny4zfi194gdf01l6j850n9vf8ha3kwj"))))
25681 (build-system cargo-build-system)
25682 (arguments
25683 `(#:cargo-inputs
25684 (("rust-cc" ,rust-cc-1)))) ;; build dependency
25685 (home-page "https://github.com/RustCrypto/asm-hashes")
25686 (synopsis "Assembly implementation of SHA-2")
25687 (description "This package provides an assembly implementations of hash
25688 functions core functionality.")
25689 (license license:expat)))
25690
25691 (define-public rust-shader-version-0.6
25692 (package
25693 (name "rust-shader-version")
25694 (version "0.6.0")
25695 (source
25696 (origin
25697 (method url-fetch)
25698 (uri (crate-uri "shader_version" version))
25699 (file-name
25700 (string-append name "-" version ".tar.gz"))
25701 (sha256
25702 (base32
25703 "1yk651xc9irl3pl0rlplypzyzy44d0j03ji0j7hjjdjknwzpi3j7"))))
25704 (build-system cargo-build-system)
25705 (arguments
25706 `(#:skip-build? #t
25707 #:cargo-inputs
25708 (("rust-piston-graphics-api-version"
25709 ,rust-piston-graphics-api-version-0.2))))
25710 (home-page "https://github.com/pistondevelopers/shader_version")
25711 (synopsis
25712 "Helper library for detecting and picking compatible shaders")
25713 (description "This package provides a helper library for detecting and
25714 picking compatible shaders.")
25715 (license license:expat)))
25716
25717 (define-public rust-shared-child-0.3
25718 (package
25719 (name "rust-shared-child")
25720 (version "0.3.4")
25721 (source
25722 (origin
25723 (method url-fetch)
25724 (uri (crate-uri "shared-child" version))
25725 (file-name
25726 (string-append name "-" version ".tar.gz"))
25727 (sha256
25728 (base32
25729 "1lmjmr7931dr9cpalw2n7ss4i9mnl7285j2dygxflk9y80xczswc"))))
25730 (build-system cargo-build-system)
25731 (arguments
25732 `(#:skip-build? #t
25733 #:cargo-inputs
25734 (("rust-libc" ,rust-libc-0.2)
25735 ("rust-winapi" ,rust-winapi-0.3))))
25736 (home-page "https://github.com/oconnor663/shared_child.rs")
25737 (synopsis "Use child processes from multiple threads")
25738 (description
25739 "A library for using child processes from multiple threads.")
25740 (license license:expat)))
25741
25742 (define-public rust-shared-library-0.1
25743 (package
25744 (name "rust-shared-library")
25745 (version "0.1.9")
25746 (source
25747 (origin
25748 (method url-fetch)
25749 (uri (crate-uri "shared_library" version))
25750 (file-name
25751 (string-append name "-" version ".tar.gz"))
25752 (sha256
25753 (base32
25754 "04fs37kdak051hm524a360978g58ayrcarjsbf54vqps5c7px7js"))))
25755 (build-system cargo-build-system)
25756 (arguments
25757 `(#:cargo-inputs
25758 (("rust-lazy-static" ,rust-lazy-static-1)
25759 ("rust-libc" ,rust-libc-0.2))))
25760 (home-page "https://github.com/tomaka/shared_library/")
25761 (synopsis "Bind to and load shared libraries")
25762 (description
25763 "This package allows easy binding to, and loading of, shared libraries.")
25764 (license (list license:asl2.0 license:expat))))
25765
25766 (define-public rust-shell-escape-0.1
25767 (package
25768 (name "rust-shell-escape")
25769 (version "0.1.4")
25770 (source
25771 (origin
25772 (method url-fetch)
25773 (uri (crate-uri "shell-escape" version))
25774 (file-name
25775 (string-append name "-" version ".tar.gz"))
25776 (sha256
25777 (base32
25778 "1fgs1iyx3b124b7njjmhfn9q5ipmhxrafavh8mxbfl9a9zk162hp"))))
25779 (build-system cargo-build-system)
25780 (home-page "https://github.com/sfackler/shell-escape")
25781 (synopsis
25782 "Escape characters that may have a special meaning in a shell")
25783 (description
25784 "Escape characters that may have a special meaning in a shell.")
25785 (license (list license:asl2.0 license:expat))))
25786
25787 (define-public rust-shell-words-0.1
25788 (package
25789 (name "rust-shell-words")
25790 (version "0.1.0")
25791 (source
25792 (origin
25793 (method url-fetch)
25794 (uri (crate-uri "shell-words" version))
25795 (file-name
25796 (string-append name "-" version ".tar.gz"))
25797 (sha256
25798 (base32
25799 "0jnrw3f174974fsi2hg48l0klpy24767ib28w0xcvi2ll5axxb1r"))))
25800 (build-system cargo-build-system)
25801 (home-page "https://github.com/tmiasko/shell-words")
25802 (synopsis
25803 "Process command line according to parsing rules of UNIX shell")
25804 (description
25805 "Process command line according to parsing rules of UNIX shell.")
25806 (license (list license:expat license:asl2.0))))
25807
25808 (define-public rust-shlex-0.1
25809 (package
25810 (name "rust-shlex")
25811 (version "0.1.1")
25812 (source
25813 (origin
25814 (method url-fetch)
25815 (uri (crate-uri "shlex" version))
25816 (file-name (string-append name "-" version ".crate"))
25817 (sha256
25818 (base32
25819 "1lmv6san7g8dv6jdfp14m7bdczq9ss7j7bgsfqyqjc3jnjfippvz"))))
25820 (build-system cargo-build-system)
25821 (home-page "https://github.com/comex/rust-shlex")
25822 (synopsis "Split a string into shell words, like Python's shlex")
25823 (description "This crate provides a method to split a string into shell
25824 words, like Python's shlex.")
25825 (license (list license:asl2.0
25826 license:expat))))
25827
25828 (define-public rust-signal-hook-0.1
25829 (package
25830 (name "rust-signal-hook")
25831 (version "0.1.13")
25832 (source
25833 (origin
25834 (method url-fetch)
25835 (uri (crate-uri "signal-hook" version))
25836 (file-name
25837 (string-append name "-" version ".tar.gz"))
25838 (sha256
25839 (base32
25840 "0b0yh6hlb5hs5kq6adyk0bn168y1ncymxvlizlygaabad2hz7f8h"))))
25841 (build-system cargo-build-system)
25842 (arguments
25843 `(#:cargo-inputs
25844 (("rust-futures" ,rust-futures-0.1)
25845 ("rust-libc" ,rust-libc-0.2)
25846 ("rust-mio" ,rust-mio-0.6)
25847 ("rust-mio-uds" ,rust-mio-uds-0.6)
25848 ("rust-signal-hook-registry" ,rust-signal-hook-registry-1)
25849 ("rust-tokio-reactor" ,rust-tokio-reactor-0.1))
25850 #:cargo-development-inputs
25851 (("rust-tokio" ,rust-tokio-0.1)
25852 ("rust-version-sync" ,rust-version-sync-0.8))))
25853 (home-page "https://github.com/vorner/signal-hook")
25854 (synopsis "Unix signal handling")
25855 (description "Unix signal handling.")
25856 (license (list license:asl2.0 license:expat))))
25857
25858 (define-public rust-signal-hook-registry-1
25859 (package
25860 (name "rust-signal-hook-registry")
25861 (version "1.2.0")
25862 (source
25863 (origin
25864 (method url-fetch)
25865 (uri (crate-uri "signal-hook-registry" version))
25866 (file-name
25867 (string-append name "-" version ".tar.gz"))
25868 (sha256
25869 (base32
25870 "0haz828bif1lbp3alx17zkcy5hwy15bbpmvks72j8iznx7npix4l"))))
25871 (build-system cargo-build-system)
25872 (arguments
25873 `(#:cargo-inputs
25874 (("rust-arc-swap" ,rust-arc-swap-0.4)
25875 ("rust-libc" ,rust-libc-0.2))
25876 #:cargo-development-inputs
25877 (("rust-signal-hook" ,rust-signal-hook-0.1)
25878 ("rust-version-sync" ,rust-version-sync-0.8))))
25879 (home-page "https://github.com/vorner/signal-hook")
25880 (synopsis "Backend crate for signal-hook")
25881 (description "Backend crate for signal-hook.")
25882 (license (list license:asl2.0 license:expat))))
25883
25884 (define-public rust-simba-0.1
25885 (package
25886 (name "rust-simba")
25887 (version "0.1.5")
25888 (source
25889 (origin
25890 (method url-fetch)
25891 (uri (crate-uri "simba" version))
25892 (file-name
25893 (string-append name "-" version ".tar.gz"))
25894 (sha256
25895 (base32
25896 "1chz3abrvrj4qz86gwrrzajsl5zcc2l0dhxi39mymbgscw9ip4zv"))))
25897 (build-system cargo-build-system)
25898 (arguments
25899 `(#:cargo-inputs
25900 (("rust-approx" ,rust-approx-0.3)
25901 ("rust-cordic" ,rust-cordic-0.1)
25902 ("rust-decimal" ,rust-decimal-2.0)
25903 ("rust-fixed" ,rust-fixed-1)
25904 ("rust-num-complex" ,rust-num-complex-0.2)
25905 ("rust-num-traits" ,rust-num-traits-0.2)
25906 ("rust-packed-simd" ,rust-packed-simd-0.3)
25907 ("rust-paste" ,rust-paste-0.1)
25908 ("rust-rand" ,rust-rand-0.7)
25909 ("rust-wide" ,rust-wide-0.4))))
25910 (home-page "https://github.com/dimforge/simba")
25911 (synopsis "SIMD algebra for Rust")
25912 (description "This package provides a set of mathematical traits to
25913 facilitate the use of SIMD-based @dfn{Array of Struct of Array} (AoSoA) storage
25914 pattern in Rust.")
25915 (license license:bsd-3)))
25916
25917 (define-public rust-simd-0.2
25918 (package
25919 (name "rust-simd")
25920 (version "0.2.4")
25921 (source
25922 (origin
25923 (method url-fetch)
25924 (uri (crate-uri "simd" version))
25925 (file-name
25926 (string-append name "-" version ".tar.gz"))
25927 (sha256
25928 (base32
25929 "1dgpmfzd4favsckd5m0p6bna1dcgw19hjigkqcgwfhc4d05hxczj"))))
25930 (build-system cargo-build-system)
25931 (arguments
25932 `(#:skip-build? #t ; Crate no longer builds on Rust 1.33+
25933 #:cargo-inputs
25934 (("rust-serde" ,rust-serde-1)
25935 ("rust-serde-derive" ,rust-serde-derive-1))
25936 #:cargo-development-inputs
25937 (("rust-cfg-if" ,rust-cfg-if-0.1))))
25938 (home-page "https://github.com/hsivonen/simd")
25939 (synopsis "Limited cross-platform access to SIMD instructions on CPUs")
25940 (description
25941 "@code{simd} offers limited cross-platform access to SIMD instructions on
25942 CPUs, as well as raw interfaces to platform-specific instructions.
25943 (To be obsoleted by the @code{std::simd} implementation RFC 2366.)
25944 ")
25945 (license (list license:expat license:asl2.0))))
25946
25947 (define-public rust-simd-0.1
25948 (package
25949 (inherit rust-simd-0.2)
25950 (name "rust-simd")
25951 (version "0.1.1")
25952 (source
25953 (origin
25954 (method url-fetch)
25955 (uri (crate-uri "simd" version))
25956 (file-name
25957 (string-append name "-" version ".tar.gz"))
25958 (sha256
25959 (base32
25960 "08vhhz1w5m7amfp1d9lvfyyzl0jqjm82hrr7fb7afv3n5my89db3"))))
25961 (arguments
25962 `(#:skip-build? #t
25963 #:cargo-inputs
25964 (("rust-serde" ,rust-serde-0.4)
25965 ("rust-serde-macros" ,rust-serde-macros-0.4))
25966 #:cargo-development-inputs
25967 (("rust-cfg-if" ,rust-cfg-if-0.1))))))
25968
25969 (define-public rust-simd-helpers-0.1
25970 (package
25971 (name "rust-simd-helpers")
25972 (version "0.1.0")
25973 (source
25974 (origin
25975 (method url-fetch)
25976 (uri (crate-uri "simd_helpers" version))
25977 (file-name
25978 (string-append name "-" version ".tar.gz"))
25979 (sha256
25980 (base32
25981 "19idqicn9k4vhd04ifh2ff41wvna79zphdf2c81rlmpc7f3hz2cm"))))
25982 (build-system cargo-build-system)
25983 (arguments
25984 `(#:skip-build? #t
25985 #:cargo-inputs
25986 (("rust-quote" ,rust-quote-1))))
25987 (home-page "https://github.com/lu-zero/simd_helpers")
25988 (synopsis "Helpers to write more compact simd code")
25989 (description
25990 "This package provides helpers to write more compact simd code.")
25991 (license license:expat)))
25992
25993 (define-public rust-siphasher-0.3
25994 (package
25995 (name "rust-siphasher")
25996 (version "0.3.2")
25997 (source
25998 (origin
25999 (method url-fetch)
26000 (uri (crate-uri "siphasher" version))
26001 (file-name
26002 (string-append name "-" version ".tar.gz"))
26003 (sha256
26004 (base32
26005 "08xvk3yi4vawppm1f81s4zrkksf95psz8gczh36y808candgi24f"))))
26006 (build-system cargo-build-system)
26007 (arguments
26008 `(#:skip-build? #t
26009 #:cargo-inputs
26010 (("rust-serde" ,rust-serde-1))))
26011 (home-page "https://docs.rs/siphasher")
26012 (synopsis "SipHash-2-4, SipHash-1-3 and 128-bit variants in pure Rust")
26013 (description "This package provides SipHash-2-4, SipHash-1-3 and 128-bit
26014 variants in pure Rust.")
26015 (license (list license:expat license:asl2.0))))
26016
26017 (define-public rust-siphasher-0.2
26018 (package
26019 (name "rust-siphasher")
26020 (version "0.2.3")
26021 (source
26022 (origin
26023 (method url-fetch)
26024 (uri (crate-uri "siphasher" version))
26025 (file-name
26026 (string-append name "-" version ".tar.gz"))
26027 (sha256
26028 (base32
26029 "1b53m53l24lyhr505lwqzrpjyq5qfnic71mynrcfvm43rybf938b"))))
26030 (build-system cargo-build-system)
26031 (home-page "https://docs.rs/siphasher")
26032 (synopsis "SipHash functions from rust-core < 1.13")
26033 (description
26034 "SipHash functions from rust-core < 1.13.")
26035 (license (list license:asl2.0 license:expat))))
26036
26037 (define-public rust-skeptic-0.9
26038 (package
26039 (name "rust-skeptic")
26040 (version "0.9.0")
26041 (source
26042 (origin
26043 (method url-fetch)
26044 (uri (crate-uri "skeptic" version))
26045 (file-name (string-append name "-" version ".tar.gz"))
26046 (sha256
26047 (base32 "0savk91xy74izw9z6vn6ialkaqrp81w7dayha801b52h670qszfx"))))
26048 (build-system cargo-build-system)
26049 (arguments
26050 `(#:cargo-inputs
26051 (("rust-pulldown-cmark" ,rust-pulldown-cmark-0.0.8)
26052 ("rust-tempdir" ,rust-tempdir-0.3))))
26053 (home-page "https://github.com/budziq/rust-skeptic")
26054 (synopsis "Test your Rust markdown documentation via Cargo")
26055 (description "Test your Rust markdown documentation via Cargo")
26056 (license (list license:expat license:asl2.0))))
26057
26058 (define-public rust-skeptic-0.13
26059 (package
26060 (name "rust-skeptic")
26061 (version "0.13.4")
26062 (source
26063 (origin
26064 (method url-fetch)
26065 (uri (crate-uri "skeptic" version))
26066 (file-name
26067 (string-append name "-" version ".tar.gz"))
26068 (sha256
26069 (base32
26070 "0rai61hbs65nbvbhqlk1nap5hlav5qx3zmjjjzh9rhgxagc8xyyn"))))
26071 (build-system cargo-build-system)
26072 (arguments
26073 `(#:skip-build? #t
26074 #:cargo-inputs
26075 (("rust-error-chain" ,rust-error-chain-0.12)
26076 ("rust-pulldown-cmark" ,rust-pulldown-cmark-0.2)
26077 ("rust-glob" ,rust-glob-0.2)
26078 ("rust-tempdir" ,rust-tempdir-0.3)
26079 ("rust-bytecount" ,rust-bytecount-0.4)
26080 ("rust-cargo-metadata" ,rust-cargo-metadata-0.6)
26081 ("rust-serde-json" ,rust-serde-json-1)
26082 ("rust-walkdir" ,rust-walkdir-2))))
26083 (home-page "https://github.com/budziq/rust-skeptic")
26084 (synopsis "Test your Rust markdown documentation via Cargo")
26085 (description
26086 "Test your Rust markdown documentation via Cargo.")
26087 (license (list license:expat license:asl2.0))))
26088
26089 (define-public rust-slab-0.4
26090 (package
26091 (name "rust-slab")
26092 (version "0.4.2")
26093 (source
26094 (origin
26095 (method url-fetch)
26096 (uri (crate-uri "slab" version))
26097 (file-name (string-append name "-" version ".crate"))
26098 (sha256
26099 (base32
26100 "1y59xsa27jk84sxzswjk60xcjf8b4fm5960jwpznrrcmasyva4f1"))))
26101 (build-system cargo-build-system)
26102 (home-page "https://github.com/carllerche/slab")
26103 (synopsis "Pre-allocated storage for a uniform data type")
26104 (description "This create provides a pre-allocated storage for a uniform
26105 data type.")
26106 (license license:expat)))
26107
26108 (define-public rust-sleef-sys-0.1
26109 (package
26110 (name "rust-sleef-sys")
26111 (version "0.1.2")
26112 (source
26113 (origin
26114 (method url-fetch)
26115 (uri (crate-uri "sleef-sys" version))
26116 (file-name
26117 (string-append name "-" version ".tar.gz"))
26118 (sha256
26119 (base32
26120 "1881q2yc17j2m1yvh01447c93ws1mspnrj3k2nbvwbvcm8z81kkv"))))
26121 (build-system cargo-build-system)
26122 (arguments
26123 `(#:skip-build? #t
26124 #:cargo-inputs
26125 (("rust-cfg-if" ,rust-cfg-if-0.1)
26126 ("rust-libc" ,rust-libc-0.2))
26127 #:cargo-development-inputs
26128 (("rust-bindgen" ,rust-bindgen-0.50)
26129 ("rust-cmake" ,rust-cmake-0.1)
26130 ("rust-env-logger" ,rust-env-logger-0.6))))
26131 (home-page "https://github.com/gnzlbg/sleef-sys")
26132 (synopsis
26133 "Rust FFI bindings to the SLEEF Vectorized Math Library")
26134 (description
26135 "Rust FFI bindings to the SLEEF Vectorized Math Library.")
26136 (license (list license:asl2.0 license:expat))))
26137
26138 (define-public rust-slog-2
26139 (package
26140 (name "rust-slog")
26141 (version "2.5.2")
26142 (source
26143 (origin
26144 (method url-fetch)
26145 (uri (crate-uri "slog" version))
26146 (file-name
26147 (string-append name "-" version ".tar.gz"))
26148 (sha256
26149 (base32
26150 "16bv6zrdn1sm315vbnia02g31xvsmbjyz5gv3z0vrgxdli0cdj8w"))))
26151 (build-system cargo-build-system)
26152 (arguments
26153 `(#:skip-build? #t
26154 #:cargo-inputs
26155 (("rust-erased-serde" ,rust-erased-serde-0.3))))
26156 (home-page "https://github.com/slog-rs/slog")
26157 (synopsis "Structured, extensible, composable logging for Rust")
26158 (description
26159 "This package provides structured, extensible, composable logging for Rust.")
26160 (license
26161 (list license:mpl2.0
26162 license:expat
26163 license:asl2.0))))
26164
26165 (define-public rust-smallvec-1
26166 (package
26167 (name "rust-smallvec")
26168 (version "1.4.1")
26169 (source
26170 (origin
26171 (method url-fetch)
26172 (uri (crate-uri "smallvec" version))
26173 (file-name
26174 (string-append name "-" version ".tar.gz"))
26175 (sha256
26176 (base32
26177 "0gqgmbfj8228lc55xxg331flizzwq6hfyy6gw4j2y6hni6fwnmrp"))))
26178 (build-system cargo-build-system)
26179 (arguments
26180 `(#:cargo-inputs
26181 (("rust-serde" ,rust-serde-1))
26182 #:cargo-development-inputs
26183 (("rust-bincode" ,rust-bincode-1))))
26184 (home-page "https://github.com/servo/rust-smallvec")
26185 (synopsis "Small vector optimization")
26186 (description
26187 "'Small vector' optimization: store up to a small number of items on the
26188 stack.")
26189 (license (list license:expat license:asl2.0))))
26190
26191 (define-public rust-smallvec-0.6
26192 (package
26193 (inherit rust-smallvec-1)
26194 (name "rust-smallvec")
26195 (version "0.6.13")
26196 (source
26197 (origin
26198 (method url-fetch)
26199 (uri (crate-uri "smallvec" version))
26200 (file-name
26201 (string-append name "-" version ".tar.gz"))
26202 (sha256
26203 (base32
26204 "1dl219vnfkmsfx28lm3f83lyw24zap6fdsli6rg8nnp1aa67bc7p"))))
26205 (arguments
26206 `(#:cargo-inputs
26207 (("rust-maybe-uninit" ,rust-maybe-uninit-2.0)
26208 ("rust-serde" ,rust-serde-1))
26209 #:cargo-development-inputs
26210 (("rust-bincode" ,rust-bincode-1))))))
26211
26212 (define-public rust-socket2-0.3
26213 (package
26214 (name "rust-socket2")
26215 (version "0.3.11")
26216 (source
26217 (origin
26218 (method url-fetch)
26219 (uri (crate-uri "socket2" version))
26220 (file-name (string-append name "-" version ".crate"))
26221 (sha256
26222 (base32
26223 "11bdcz04i106g4q7swkll0qxrb4287srqd2k3aq2q6i22zjlvdz8"))))
26224 (build-system cargo-build-system)
26225 (arguments
26226 `(#:tests? #f ; tests require network access
26227 #:cargo-inputs
26228 (("rust-cfg-if" ,rust-cfg-if-0.1)
26229 ("rust-libc" ,rust-libc-0.2)
26230 ("rust-redox-syscall" ,rust-redox-syscall-0.1)
26231 ("rust-winapi" ,rust-winapi-0.3))
26232 #:cargo-development-inputs
26233 (("rust-tempdir" ,rust-tempdir-0.3))))
26234 (home-page "https://github.com/alexcrichton/socket2-rs")
26235 (synopsis "Networking sockets in Rust")
26236 (description
26237 "This package provides utilities for handling networking sockets with a
26238 maximal amount of configuration possible intended.")
26239 (license (list license:asl2.0
26240 license:expat))))
26241
26242 (define-public rust-socks-0.3
26243 (package
26244 (name "rust-socks")
26245 (version "0.3.2")
26246 (source
26247 (origin
26248 (method url-fetch)
26249 (uri (crate-uri "socks" version))
26250 (file-name
26251 (string-append name "-" version ".tar.gz"))
26252 (sha256
26253 (base32
26254 "1hnbw4c4j7dn9n3bd1v7ddkdzlxlzkfw3z29da1nxlj6jgx4r9p6"))))
26255 (build-system cargo-build-system)
26256 (arguments
26257 `(#:tests? #f ; Tests require network connection.
26258 #:cargo-inputs
26259 (("rust-byteorder" ,rust-byteorder-1)
26260 ("rust-libc" ,rust-libc-0.2)
26261 ("rust-winapi" ,rust-winapi-0.2)
26262 ("rust-ws2-32-sys" ,rust-ws2-32-sys-0.2))))
26263 (home-page "https://github.com/sfackler/rust-socks")
26264 (synopsis "Rust SOCKS proxy clients")
26265 (description
26266 "You can write SOCKS proxy clients with this crate.")
26267 (license (list license:asl2.0 license:expat))))
26268
26269 (define-public rust-sourcefile-0.1
26270 (package
26271 (name "rust-sourcefile")
26272 (version "0.1.4")
26273 (source
26274 (origin
26275 (method url-fetch)
26276 (uri (crate-uri "sourcefile" version))
26277 (file-name (string-append name "-" version ".crate"))
26278 (sha256
26279 (base32
26280 "1lwa6973zs4bgj29my7agfjgk4nw9hp6j7dfnr13nid85fw7rxsb"))))
26281 (build-system cargo-build-system)
26282 (arguments
26283 `(#:cargo-development-inputs
26284 (("rust-tempfile" ,rust-tempfile-3))))
26285 (home-page "https://github.com/derekdreery/sourcefile-rs")
26286 (synopsis "Concatenate source from multiple files")
26287 (description
26288 "A library for concatenating source from multiple files, whilst keeping
26289 track of where each new file and line starts.")
26290 (license (list license:asl2.0
26291 license:expat))))
26292
26293 (define-public rust-sourcemap-6
26294 (package
26295 (name "rust-sourcemap")
26296 (version "6.0.1")
26297 (source
26298 (origin
26299 (method url-fetch)
26300 (uri (crate-uri "sourcemap" version))
26301 (file-name (string-append name "-" version ".tar.gz"))
26302 (sha256
26303 (base32
26304 "1sv1rxc6d2rfvd5xrqzqq0i2y0z1q7sqj3wm9krxbggcccj1y0vf"))
26305 (modules '((guix build utils)))
26306 (snippet
26307 '(begin
26308 ;; Enable unstable features
26309 (substitute* "src/lib.rs"
26310 (("//! This library" all)
26311 (string-append "#![feature(inner_deref)]" "\n" all)))
26312 #t))))
26313 (build-system cargo-build-system)
26314 (arguments
26315 `(#:cargo-inputs
26316 (("rust-base64" ,rust-base64-0.11)
26317 ("rust-if-chain" ,rust-if-chain-1)
26318 ("rust-lazy-static" ,rust-lazy-static-1)
26319 ("rust-regex" ,rust-regex-1)
26320 ("rust-scroll" ,rust-scroll-0.10)
26321 ("rust-serde" ,rust-serde-1)
26322 ("rust-serde-json" ,rust-serde-json-1)
26323 ("rust-url" ,rust-url-2))
26324 #:cargo-development-inputs
26325 (("rust-rustc-version" ,rust-rustc-version-0.2))
26326 #:phases
26327 (modify-phases %standard-phases
26328 (add-after 'unpack 'enable-unstable-features
26329 (lambda _
26330 (setenv "RUSTC_BOOTSTRAP" "1")
26331 #t)))))
26332 (home-page "https://github.com/getsentry/rust-sourcemap")
26333 (synopsis "Basic sourcemap handling for Rust")
26334 (description "This package provides basic sourcemap handling for Rust.")
26335 (license license:bsd-3)))
26336
26337 (define-public rust-speculate-0.1
26338 (package
26339 (name "rust-speculate")
26340 (version "0.1.2")
26341 (source
26342 (origin
26343 (method url-fetch)
26344 (uri (crate-uri "speculate" version))
26345 (file-name
26346 (string-append name "-" version ".tar.gz"))
26347 (sha256
26348 (base32
26349 "0ph01n3fqkmnfr1wd13dqsi4znv06xy6p4h3hqqdzk81r0r5vd1w"))))
26350 (build-system cargo-build-system)
26351 (arguments
26352 `(#:skip-build? #t
26353 #:cargo-inputs
26354 (("rust-proc-macro2" ,rust-proc-macro2-0.4)
26355 ("rust-quote" ,rust-quote-1)
26356 ("rust-syn" ,rust-syn-0.15)
26357 ("rust-unicode-xid" ,rust-unicode-xid-0.1))))
26358 (home-page "https://github.com/utkarshkukreti/speculate.rs")
26359 (synopsis "RSpec inspired testing framework for Rust")
26360 (description
26361 "An RSpec inspired minimal testing framework for Rust.")
26362 (license license:expat)))
26363
26364 (define-public rust-spin-0.5
26365 (package
26366 (name "rust-spin")
26367 (version "0.5.2")
26368 (source
26369 (origin
26370 (method url-fetch)
26371 (uri (crate-uri "spin" version))
26372 (file-name (string-append name "-" version ".crate"))
26373 (sha256
26374 (base32
26375 "0b84m6dbzrwf2kxylnw82d3dr8w06av7rfkr8s85fb5f43rwyqvf"))))
26376 (build-system cargo-build-system)
26377 (home-page "https://github.com/mvdnes/spin-rs")
26378 (synopsis "Synchronization primitives based on spinning")
26379 (description "This crate provides synchronization primitives based on
26380 spinning. They may contain data, are usable without @code{std},and static
26381 initializers are available.")
26382 (license license:expat)))
26383
26384 (define-public rust-spin-0.4
26385 (package
26386 (inherit rust-spin-0.5)
26387 (name "rust-spin")
26388 (version "0.4.10")
26389 (source
26390 (origin
26391 (method url-fetch)
26392 (uri (crate-uri "spin" version))
26393 (file-name
26394 (string-append name "-" version ".tar.gz"))
26395 (sha256
26396 (base32
26397 "07ywqn1vrpi3c43fmvsx7pawk9h3rb77yyqbnhap2micl454kb6f"))))
26398 (arguments '(#:skip-build? #t))))
26399
26400 (define-public rust-spmc-0.3
26401 (package
26402 (name "rust-spmc")
26403 (version "0.3.0")
26404 (source
26405 (origin
26406 (method url-fetch)
26407 (uri (crate-uri "spmc" version))
26408 (file-name (string-append name "-" version ".tar.gz"))
26409 (sha256
26410 (base32 "1rgcqgj6b3d0cshi7277akr2xk0cx11rkmviaahy7a3pla6l5a02"))))
26411 (build-system cargo-build-system)
26412 (arguments
26413 `(#:tests? #f ;; tests hang
26414 #:cargo-development-inputs
26415 (("rust-loom" ,rust-loom-0.2))))
26416 (home-page "https://github.com/seanmonstar/spmc")
26417 (synopsis "Simple SPMC channel")
26418 (description "Simple SPMC channel")
26419 (license (list license:expat license:asl2.0))))
26420
26421 (define-public rust-spsc-buffer-0.1
26422 (package
26423 (name "rust-spsc-buffer")
26424 (version "0.1.1")
26425 (source
26426 (origin
26427 (method url-fetch)
26428 (uri (crate-uri "spsc-buffer" version))
26429 (file-name
26430 (string-append name "-" version ".tar.gz"))
26431 (sha256
26432 (base32
26433 "0fsv5zpxkax2n46flxhyajq1yblgh8f33la39gp86hksqcwkyv5y"))))
26434 (build-system cargo-build-system)
26435 (arguments
26436 `(#:cargo-development-inputs
26437 (("rust-criterion" ,rust-criterion-0.2))))
26438 (home-page "https://github.com/davidhewitt/spsc-buffer")
26439 (synopsis "Single-producer single-consumer lock-free buffer")
26440 (description
26441 "This package provides a single-producer single-consumer lock-free buffer.")
26442 (license license:expat)))
26443
26444 (define-public rust-st-map-0.1
26445 (package
26446 (name "rust-st-map")
26447 (version "0.1.4")
26448 (source
26449 (origin
26450 (method url-fetch)
26451 (uri (crate-uri "st-map" version))
26452 (file-name (string-append name "-" version ".tar.gz"))
26453 (sha256
26454 (base32
26455 "1l820pisfi134v3wy0na480wl7rf69kgxzvmgc560ngqb0xb3biw"))))
26456 (build-system cargo-build-system)
26457 (arguments
26458 `(#:cargo-inputs
26459 (("rust-arrayvec" ,rust-arrayvec-0.5)
26460 ("rust-static-map-macro" ,rust-static-map-macro-0.2))))
26461 (home-page "https://github.com/kdy1/rust-static-map")
26462 (synopsis "Runtime for a stack-alocated map")
26463 (description "This package provides a runtime for a stack-alocated map.")
26464 (license license:expat)))
26465
26466 (define-public rust-stable-deref-trait-1
26467 (package
26468 (name "rust-stable-deref-trait")
26469 (version "1.2.0")
26470 (source
26471 (origin
26472 (method url-fetch)
26473 (uri (crate-uri "stable_deref_trait" version))
26474 (file-name (string-append name "-" version ".tar.gz"))
26475 (sha256
26476 (base32
26477 "1lxjr8q2n534b2lhkxd6l6wcddzjvnksi58zv11f9y0jjmr15wd8"))))
26478 (build-system cargo-build-system)
26479 (home-page "https://github.com/storyyeller/stable_deref_trait0")
26480 (synopsis "Defines an unsafe marker trait, StableDeref")
26481 (description
26482 "This crate defines an unsafe marker trait, StableDeref, for container
26483 types which deref to a fixed address which is valid even when the containing
26484 type is moved. For example, Box, Vec, Rc, Arc and String implement this trait.
26485 Additionally, it defines CloneStableDeref for types like Rc where clones deref
26486 to the same address.")
26487 (license (list license:asl2.0
26488 license:expat))))
26489
26490 (define-public rust-stacker-0.1
26491 (package
26492 (name "rust-stacker")
26493 (version "0.1.6")
26494 (source
26495 (origin
26496 (method url-fetch)
26497 (uri (crate-uri "stacker" version))
26498 (file-name (string-append name "-" version ".crate"))
26499 (sha256
26500 (base32
26501 "12igajfgqz96c7vcwi91xdfsphawik6g36ndlglqih0a7bqw8vyr"))))
26502 (build-system cargo-build-system)
26503 (arguments
26504 `(#:cargo-inputs
26505 (("rust-cfg-if" ,rust-cfg-if-0.1)
26506 ("rust-libc" ,rust-libc-0.2)
26507 ("rust-psm" ,rust-psm-0.1)
26508 ("rust-winapi" ,rust-winapi-0.3))
26509 #:cargo-development-inputs
26510 (("rust-cc" ,rust-cc-1))))
26511 (home-page "https://github.com/rust-lang/stacker")
26512 (synopsis "Manual segmented stacks for Rust")
26513 (description
26514 "This package provides a stack growth library useful when implementing
26515 deeply recursive algorithms that may accidentally blow the stack.")
26516 (license (list license:asl2.0
26517 license:expat))))
26518
26519 (define-public rust-stackvector-1.0
26520 (package
26521 (name "rust-stackvector")
26522 (version "1.0.6")
26523 (source
26524 (origin
26525 (method url-fetch)
26526 (uri (crate-uri "stackvector" version))
26527 (file-name
26528 (string-append name "-" version ".tar.gz"))
26529 (sha256
26530 (base32
26531 "1bv820fhdad16islwli1g3iksk39ivf0zaqz4j1m08vq15jjaiqw"))))
26532 (build-system cargo-build-system)
26533 (arguments
26534 `(#:skip-build? #t
26535 #:cargo-inputs
26536 (("rust-unreachable" ,rust-unreachable-1.0))
26537 #:cargo-development-inputs
26538 (("rust-rustc-version" ,rust-rustc-version-0.2))))
26539 (home-page "https://github.com/Alexhuszagh/rust-stackvector")
26540 (synopsis "Vector-like facade for stack-allocated arrays")
26541 (description
26542 "StackVec: vector-like facade for stack-allocated arrays.")
26543 (license (list license:asl2.0 license:expat))))
26544
26545 (define-public rust-standback-0.2
26546 (package
26547 (name "rust-standback")
26548 (version "0.2.10")
26549 (source
26550 (origin
26551 (method url-fetch)
26552 (uri (crate-uri "standback" version))
26553 (file-name (string-append name "-" version ".tar.gz"))
26554 (sha256
26555 (base32
26556 "1rnqv9dbq9c4nz7097v0f1d04fjwwsvvyy8rmz8lg1szxahix9rk"))))
26557 (build-system cargo-build-system)
26558 (arguments
26559 `(#:cargo-development-inputs
26560 (("rust-version-check" ,rust-version-check-0.9))))
26561 (home-page "https://github.com/jhpratt/standback")
26562 (synopsis "New standard library, old compiler")
26563 (description "New standard library, old compiler.")
26564 (license (list license:expat license:asl2.0))))
26565
26566 (define-public rust-static-assertions-1
26567 (package
26568 (name "rust-static-assertions")
26569 (version "1.1.0")
26570 (source
26571 (origin
26572 (method url-fetch)
26573 (uri (crate-uri "static-assertions" version))
26574 (file-name (string-append name "-" version ".crate"))
26575 (sha256
26576 (base32
26577 "0gsl6xmw10gvn3zs1rv99laj5ig7ylffnh71f9l34js4nr4r7sx2"))))
26578 (build-system cargo-build-system)
26579 (home-page "https://github.com/nvzqz/static-assertions-rs")
26580 (synopsis "Compile-time assertions for rust")
26581 (description
26582 "This package provides compile-time assertions to ensure that invariants
26583 are met.")
26584 (license (list license:expat license:asl2.0))))
26585
26586 (define-public rust-static-assertions-0.3
26587 (package
26588 (inherit rust-static-assertions-1)
26589 (name "rust-static-assertions")
26590 (version "0.3.4")
26591 (source
26592 (origin
26593 (method url-fetch)
26594 (uri (crate-uri "static-assertions" version))
26595 (file-name (string-append name "-" version ".crate"))
26596 (sha256
26597 (base32
26598 "1lw33i89888yb3x29c6dv4mrkg3534n0rlg3r7qzh4p58xmv6gkz"))))))
26599
26600 (define-public rust-static-map-macro-0.2
26601 (package
26602 (name "rust-static-map-macro")
26603 (version "0.2.1")
26604 (source
26605 (origin
26606 (method url-fetch)
26607 (uri (crate-uri "static-map-macro" version))
26608 (file-name (string-append name "-" version ".tar.gz"))
26609 (sha256
26610 (base32
26611 "1zcm28d46dggdpbn06xlpa274z25l228cmzxpc8qh8s8y43kwl6m"))))
26612 (build-system cargo-build-system)
26613 (arguments
26614 `(#:cargo-inputs
26615 (("rust-pmutil" ,rust-pmutil-0.5)
26616 ("rust-proc-macro2" ,rust-proc-macro2-1)
26617 ("rust-quote" ,rust-quote-1)
26618 ("rust-syn" ,rust-syn-1))))
26619 (home-page "https://github.com/kdy1/rust-static-map")
26620 (synopsis "Macro to create a stack-alocated map")
26621 (description "This package provides a macro to create a stack-alocated
26622 map.")
26623 (license license:expat)))
26624
26625 (define-public rust-stb-truetype-0.3
26626 (package
26627 (name "rust-stb-truetype")
26628 (version "0.3.1")
26629 (source
26630 (origin
26631 (method url-fetch)
26632 (uri (crate-uri "stb_truetype" version))
26633 (file-name
26634 (string-append name "-" version ".tar.gz"))
26635 (sha256
26636 (base32
26637 "0lgvnh3ma6cz811bk8imj45djz76zs47b8327sgnmik2x03nnyzp"))))
26638 (build-system cargo-build-system)
26639 (arguments
26640 `(#:tests? #f ; tests not included in release
26641 #:cargo-inputs
26642 (("rust-byteorder" ,rust-byteorder-1)
26643 ("rust-libm" ,rust-libm-0.2))
26644 #:cargo-development-inputs
26645 (("rust-approx" ,rust-approx-0.3))))
26646 (home-page "https://gitlab.redox-os.org/redox-os/stb_truetype-rs")
26647 (synopsis "Translation of the font loading code to Rust")
26648 (description
26649 "This package provides a straight translation of the font loading code
26650 in @code{stb_truetype.h} from C to Rust.")
26651 (license (list license:expat license:asl2.0))))
26652
26653 (define-public rust-std-prelude-0.2
26654 (package
26655 (name "rust-std-prelude")
26656 (version "0.2.12")
26657 (source
26658 (origin
26659 (method url-fetch)
26660 (uri (crate-uri "std_prelude" version))
26661 (file-name
26662 (string-append name "-" version ".tar.gz"))
26663 (sha256
26664 (base32
26665 "1ghcwnhnqn3rphyhlknmxpj5clzqva46z1vh25k5bpzzan2ff1w2"))))
26666 (build-system cargo-build-system)
26667 (home-page "https://github.com/vitiral/std_prelude")
26668 (synopsis
26669 "Prelude that the rust stdlib should have always had")
26670 (description
26671 "A package that simply uses all of the items often included in a Rust
26672 codebase.")
26673 (license license:expat)))
26674
26675 (define-public rust-stdweb-0.4
26676 (package
26677 (name "rust-stdweb")
26678 (version "0.4.20")
26679 (source
26680 (origin
26681 (method url-fetch)
26682 (uri (crate-uri "stdweb" version))
26683 (file-name
26684 (string-append name "-" version ".tar.gz"))
26685 (sha256
26686 (base32
26687 "1md14n9rzxzdskz3hpgln8vxfwqsw2cswc0f5nslh4r82rmlj8nh"))))
26688 (build-system cargo-build-system)
26689 (arguments
26690 `(#:skip-build? #t
26691 #:cargo-inputs
26692 (("rust-discard" ,rust-discard-1.0)
26693 ("rust-futures-channel-preview" ,rust-futures-channel-preview-0.3)
26694 ("rust-futures-core-preview" ,rust-futures-core-preview-0.3)
26695 ("rust-futures-executor-preview" ,rust-futures-executor-preview-0.3)
26696 ("rust-futures-util-preview" ,rust-futures-util-preview-0.3)
26697 ("rust-serde" ,rust-serde-1)
26698 ("rust-serde-json" ,rust-serde-json-1)
26699 ("rust-stdweb-derive" ,rust-stdweb-derive-0.5)
26700 ("rust-stdweb-internal-macros" ,rust-stdweb-internal-macros-0.2)
26701 ("rust-stdweb-internal-runtime" ,rust-stdweb-internal-runtime-0.1)
26702 ("rust-wasm-bindgen" ,rust-wasm-bindgen-0.2)
26703 ("rust-rustc-version" ,rust-rustc-version-0.2))
26704 #:cargo-development-inputs
26705 (("rust-serde-derive" ,rust-serde-derive-1)
26706 ("rust-serde-json" ,rust-serde-json-1)
26707 ("rust-stdweb-internal-test-macro" ,rust-stdweb-internal-test-macro-0.1)
26708 ("rust-wasm-bindgen-test" ,rust-wasm-bindgen-test-0.2))))
26709 (home-page "https://github.com/koute/stdweb")
26710 (synopsis "Standard library for the client-side Web")
26711 (description
26712 "This package provides a standard library for the client-side
26713 Web.")
26714 (license (list license:expat license:asl2.0))))
26715
26716 (define-public rust-stdweb-derive-0.5
26717 (package
26718 (name "rust-stdweb-derive")
26719 (version "0.5.3")
26720 (source
26721 (origin
26722 (method url-fetch)
26723 (uri (crate-uri "stdweb-derive" version))
26724 (file-name
26725 (string-append name "-" version ".tar.gz"))
26726 (sha256
26727 (base32
26728 "1vsh7g0gaxn4kxqq3knhymdn02p2pfxmnd2j0vplpj6c1yj60yn8"))))
26729 (build-system cargo-build-system)
26730 (arguments
26731 `(#:tests? #f
26732 #:cargo-inputs
26733 (("rust-proc-macro2" ,rust-proc-macro2-1)
26734 ("rust-quote" ,rust-quote-1)
26735 ("rust-serde" ,rust-serde-1)
26736 ("rust-serde-derive" ,rust-serde-derive-1)
26737 ("rust-syn" ,rust-syn-1))))
26738 (home-page "https://github.com/koute/stdweb")
26739 (synopsis "Derive macros for the stdweb crate")
26740 (description
26741 "This crate currently defines a derive macro for @code{stdweb} which allows
26742 you to define custom reference types outside of the @code{stdweb} library.")
26743 (license (list license:expat license:asl2.0))))
26744
26745 (define-public rust-stdweb-internal-macros-0.2
26746 (package
26747 (name "rust-stdweb-internal-macros")
26748 (version "0.2.9")
26749 (source
26750 (origin
26751 (method url-fetch)
26752 (uri (crate-uri "stdweb-internal-macros" version))
26753 (file-name
26754 (string-append name "-" version ".tar.gz"))
26755 (sha256
26756 (base32
26757 "049fq8fl5ny9l5if2qv7kxwng7g6ns95h4fbm3zx360dmpv5zyjq"))))
26758 (build-system cargo-build-system)
26759 (arguments
26760 `(#:cargo-inputs
26761 (("rust-base-x" ,rust-base-x-0.2)
26762 ("rust-proc-macro2" ,rust-proc-macro2-1)
26763 ("rust-quote" ,rust-quote-1)
26764 ("rust-serde" ,rust-serde-1)
26765 ("rust-serde-derive" ,rust-serde-derive-1)
26766 ("rust-serde-json" ,rust-serde-json-1)
26767 ("rust-sha1" ,rust-sha1-0.6)
26768 ("rust-syn" ,rust-syn-1))))
26769 (home-page "https://github.com/koute/stdweb")
26770 (synopsis "Internal procedural macros for the stdweb crate")
26771 (description
26772 "Internal procedural macros for the @code{stdweb} crate.")
26773 (license (list license:expat license:asl2.0))))
26774
26775 (define-public rust-stdweb-internal-runtime-0.1
26776 (package
26777 (name "rust-stdweb-internal-runtime")
26778 (version "0.1.5")
26779 (source
26780 (origin
26781 (method url-fetch)
26782 (uri (crate-uri "stdweb-internal-runtime" version))
26783 (file-name (string-append name "-" version ".crate"))
26784 (sha256
26785 (base32
26786 "1h0nkppb4r8dbrbms2hw9n5xdcs392m0r5hj3b6lsx3h6fx02dr1"))))
26787 (build-system cargo-build-system)
26788 (home-page "https://github.com/koute/stdweb")
26789 (synopsis "Internal runtime for the @code{stdweb} crate")
26790 (description "This crate provides internal runtime for the @code{stdweb}
26791 crate.")
26792 (license (list license:asl2.0
26793 license:expat))))
26794
26795 (define-public rust-stdweb-internal-test-macro-0.1
26796 (package
26797 (name "rust-stdweb-internal-test-macro")
26798 (version "0.1.1")
26799 (source
26800 (origin
26801 (method url-fetch)
26802 (uri (crate-uri "stdweb-internal-test-macro" version))
26803 (file-name (string-append name "-" version ".crate"))
26804 (sha256
26805 (base32
26806 "0wx3jlm98qrg1pdw149fprzs9x3x3igqkm5ll23jv2v62yddfrjf"))))
26807 (build-system cargo-build-system)
26808 (arguments
26809 `(#:cargo-inputs
26810 (("rust-proc-macro2" ,rust-proc-macro2-1)
26811 ("rust-quote" ,rust-quote-1))))
26812 (home-page "https://github.com/koute/stdweb")
26813 (synopsis "Internal crate of the `stdweb` crate")
26814 (description
26815 "Internal crate of the @code{stdweb} crate.")
26816 (license (list license:asl2.0
26817 license:expat))))
26818
26819 (define-public rust-stfu8-0.2
26820 (package
26821 (name "rust-stfu8")
26822 (version "0.2.4")
26823 (source
26824 (origin
26825 (method url-fetch)
26826 (uri (crate-uri "stfu8" version))
26827 (file-name
26828 (string-append name "-" version ".tar.gz"))
26829 (sha256
26830 (base32
26831 "0xyv4axwc9rihg3f5fjdy7s0ahnz1iq6lq06blwkq2ihwcrh9xsb"))))
26832 (build-system cargo-build-system)
26833 (arguments
26834 `(#:cargo-inputs
26835 (("rust-lazy-static" ,rust-lazy-static-1)
26836 ("rust-regex" ,rust-regex-0.2))
26837 #:cargo-development-inputs
26838 (("rust-pretty-assertions" ,rust-pretty-assertions-0.4)
26839 ("rust-proptest" ,rust-proptest-0.3))))
26840 (home-page "https://github.com/vitiral/stfu8")
26841 (synopsis "Sorta Text Format in UTF-8")
26842 (description
26843 "STFU-8 is a hacky text encoding/decoding protocol for files that
26844 partially uses UTF-8. Its primary purpose is to allow a human to visualize and
26845 edit data that is mostly UTF-8. It will encode all non-UTF8-compliant bytes as
26846 longform text (e.g., ESC becomes @code{r\x1B}) and tries to encode ill-formed
26847 UTF-8.")
26848 (license (list license:expat license:asl2.0))))
26849
26850 (define-public rust-stream-cipher-0.4
26851 (package
26852 (name "rust-stream-cipher")
26853 (version "0.4.1")
26854 (source
26855 (origin
26856 (method url-fetch)
26857 (uri (crate-uri "stream-cipher" version))
26858 (file-name (string-append name "-" version ".tar.gz"))
26859 (sha256
26860 (base32
26861 "120y04k3d2jyfnvyrlf38x6bf0yckyk30c7zf8v8qaq4fjcyvy09"))))
26862 (build-system cargo-build-system)
26863 (arguments
26864 `(#:cargo-inputs
26865 (("rust-blobby" ,rust-blobby-0.1)
26866 ("rust-block-cipher" ,rust-block-cipher-0.7)
26867 ("rust-generic-array" ,rust-generic-array-0.14))))
26868 (home-page "https://github.com/RustCrypto/traits")
26869 (synopsis "Stream cipher traits")
26870 (description "This package provides stream cipher traits.")
26871 (license (list license:expat license:asl2.0))))
26872
26873 (define-public rust-stream-cipher-0.3
26874 (package
26875 (inherit rust-stream-cipher-0.4)
26876 (name "rust-stream-cipher")
26877 (version "0.3.0")
26878 (source
26879 (origin
26880 (method url-fetch)
26881 (uri (crate-uri "stream-cipher" version))
26882 (file-name
26883 (string-append name "-" version ".tar.gz"))
26884 (sha256
26885 (base32
26886 "1g1nd8r6pph70rzk5yyvg7a9ji7pkap9ddiqpp4v9xa9ys0bqqc8"))))
26887 (arguments
26888 `(#:skip-build? #t
26889 #:cargo-inputs
26890 (("rust-blobby" ,rust-blobby-0.1)
26891 ("rust-generic-array" ,rust-generic-array-0.13))))))
26892
26893 (define-public rust-streaming-stats-0.2
26894 (package
26895 (name "rust-streaming-stats")
26896 (version "0.2.3")
26897 (source
26898 (origin
26899 (method url-fetch)
26900 (uri (crate-uri "streaming-stats" version))
26901 (file-name (string-append name "-" version ".crate"))
26902 (sha256
26903 (base32
26904 "0iz5dlq51w5hxjrv6a4hpf8rrj91kgvy0s9mhj0j12il9v771mmh"))))
26905 (build-system cargo-build-system)
26906 (arguments
26907 `(#:cargo-inputs
26908 (("rust-num-traits" ,rust-num-traits-0.2))))
26909 (home-page "https://github.com/BurntSushi/rust-stats")
26910 (synopsis "Compute basic statistics on streams")
26911 (description
26912 "Experimental crate for computing basic statistics on streams.")
26913 (license (list license:unlicense
26914 license:expat))))
26915
26916 (define-public rust-string-0.2
26917 (package
26918 (name "rust-string")
26919 (version "0.2.1")
26920 (source
26921 (origin
26922 (method url-fetch)
26923 (uri (crate-uri "string" version))
26924 (file-name (string-append name "-" version ".tar.gz"))
26925 (sha256
26926 (base32 "0vaxz85ja52fn66akgvggb29wqa5bpj3y38syykpr1pbrjzi8hfj"))))
26927 (build-system cargo-build-system)
26928 (arguments
26929 `(#:cargo-inputs (("rust-bytes" ,rust-bytes-0.4))))
26930 (home-page "https://github.com/carllerche/string")
26931 (synopsis "UTF-8 encoded string with configurable byte storage")
26932 (description "This package provides a UTF-8 encoded string with
26933 configurable byte storage.")
26934 (license license:expat)))
26935
26936 (define-public rust-string-cache-0.8
26937 (package
26938 (name "rust-string-cache")
26939 (version "0.8.0")
26940 (source
26941 (origin
26942 (method url-fetch)
26943 (uri (crate-uri "string-cache" version))
26944 (file-name
26945 (string-append name "-" version ".tar.gz"))
26946 (sha256
26947 (base32
26948 "12i0synp8l0qpnzi5qki4pjq3jx28ykikyffjjjg6fsfxddwfh19"))))
26949 (build-system cargo-build-system)
26950 (arguments
26951 `(#:cargo-inputs
26952 (("rust-lazy-static" ,rust-lazy-static-1)
26953 ("rust-new-debug-unreachable" ,rust-new-debug-unreachable-1)
26954 ("rust-phf-shared" ,rust-phf-shared-0.8)
26955 ("rust-precomputed-hash" ,rust-precomputed-hash-0.1)
26956 ("rust-serde" ,rust-serde-1))))
26957 (home-page "https://github.com/servo/string-cache")
26958 (synopsis "String interning library for Rust")
26959 (description
26960 "This package provides a string interning library for Rust,
26961 developed as part of the Servo project.")
26962 (license (list license:asl2.0 license:expat))))
26963
26964 (define-public rust-string-cache-0.7
26965 (package
26966 (inherit rust-string-cache-0.8)
26967 (name "rust-string-cache")
26968 (version "0.7.5")
26969 (source
26970 (origin
26971 (method url-fetch)
26972 (uri (crate-uri "string_cache" version))
26973 (file-name
26974 (string-append name "-" version ".tar.gz"))
26975 (sha256
26976 (base32
26977 "0rrdb822gc1fs3qq4camgj3kh4182bs79hpqxhdrpmlz5yl5ih49"))))
26978 (arguments
26979 `(#:cargo-inputs
26980 (("rust-lazy-static" ,rust-lazy-static-1)
26981 ("rust-new-debug-unreachable"
26982 ,rust-new-debug-unreachable-1)
26983 ("rust-phf-shared" ,rust-phf-shared-0.7)
26984 ("rust-precomputed-hash" ,rust-precomputed-hash-0.1)
26985 ("rust-serde" ,rust-serde-1)
26986 ("rust-string-cache-codegen" ,rust-string-cache-codegen-0.4)
26987 ("rust-string-cache-shared" ,rust-string-cache-shared-0.3))
26988 #:cargo-development-inputs
26989 (("rust-rand" ,rust-rand-0.4))))))
26990
26991 (define-public rust-string-cache-codegen-0.5
26992 (package
26993 (name "rust-string-cache-codegen")
26994 (version "0.5.1")
26995 (source
26996 (origin
26997 (method url-fetch)
26998 (uri (crate-uri "string-cache-codegen" version))
26999 (file-name
27000 (string-append name "-" version ".tar.gz"))
27001 (sha256
27002 (base32
27003 "15vbk5i7kkj5bbx7f0fi477js4svw5py39gi4rk74anj35g8wk7j"))))
27004 (build-system cargo-build-system)
27005 (arguments
27006 `(#:cargo-inputs
27007 (("rust-phf-generator" ,rust-phf-generator-0.8)
27008 ("rust-phf-shared" ,rust-phf-shared-0.8)
27009 ("rust-proc-macro2" ,rust-proc-macro2-1)
27010 ("rust-quote" ,rust-quote-1))))
27011 (home-page "https://github.com/servo/string-cache")
27012 (synopsis "Codegen library for string-cache")
27013 (description
27014 "This package provides a codegen library for string-cache,
27015 developed as part of the Servo project.")
27016 (license (list license:asl2.0 license:expat))))
27017
27018 (define-public rust-string-cache-codegen-0.4
27019 (package
27020 (inherit rust-string-cache-codegen-0.5)
27021 (name "rust-string-cache-codegen")
27022 (version "0.4.4")
27023 (source
27024 (origin
27025 (method url-fetch)
27026 (uri (crate-uri "string-cache-codegen" version))
27027 (file-name
27028 (string-append name "-" version ".tar.gz"))
27029 (sha256
27030 (base32
27031 "1ik78h9gs874i24rkyh0myg6x4ni2a9cazbv5yzs9yavnv8mxx7h"))))
27032 (arguments
27033 `(#:cargo-inputs
27034 (("rust-phf-generator" ,rust-phf-generator-0.7)
27035 ("rust-phf-shared" ,rust-phf-shared-0.7)
27036 ("rust-proc-macro2" ,rust-proc-macro2-1)
27037 ("rust-quote" ,rust-quote-1)
27038 ("rust-string-cache-shared" ,rust-string-cache-shared-0.3))))))
27039
27040 (define-public rust-string-cache-shared-0.3
27041 (package
27042 (name "rust-string-cache-shared")
27043 (version "0.3.0")
27044 (source
27045 (origin
27046 (method url-fetch)
27047 (uri (crate-uri "string-cache-shared" version))
27048 (file-name
27049 (string-append name "-" version ".tar.gz"))
27050 (sha256
27051 (base32
27052 "1z7dpdix1m42x6ddshdcpjf91ml9mhvnskmiv5kd8hcpq0dlv25i"))))
27053 (build-system cargo-build-system)
27054 (home-page "https://github.com/servo/string-cache")
27055 (synopsis "Code share between string_cache and string_cache_codegen")
27056 (description
27057 "Code share between string_cache and string_cache_codegen.")
27058 (license (list license:asl2.0 license:expat))))
27059
27060 (define-public rust-strsim-0.9
27061 (package
27062 (name "rust-strsim")
27063 (version "0.9.3")
27064 (source
27065 (origin
27066 (method url-fetch)
27067 (uri (crate-uri "strsim" version))
27068 (file-name (string-append name "-" version ".crate"))
27069 (sha256
27070 (base32
27071 "0k497pv882qn3q977ckznm13vxx927g8s1swvcv68j3c1pccwik4"))))
27072 (build-system cargo-build-system)
27073 (home-page "https://github.com/dguo/strsim-rs")
27074 (synopsis "Rust implementations of string similarity metrics")
27075 (description "This crate includes implementations of string similarity
27076 metrics. It includes Hamming, Levenshtein, OSA, Damerau-Levenshtein, Jaro,
27077 and Jaro-Winkler.")
27078 (license license:expat)))
27079
27080 (define-public rust-strsim-0.8
27081 (package
27082 (inherit rust-strsim-0.9)
27083 (name "rust-strsim")
27084 (version "0.8.0")
27085 (source
27086 (origin
27087 (method url-fetch)
27088 (uri (crate-uri "strsim" version))
27089 (file-name (string-append name "-" version ".crate"))
27090 (sha256
27091 (base32
27092 "0sjsm7hrvjdifz661pjxq5w4hf190hx53fra8dfvamacvff139cf"))))))
27093
27094 (define-public rust-strsim-0.6
27095 (package
27096 (inherit rust-strsim-0.9)
27097 (name "rust-strsim")
27098 (version "0.6.0")
27099 (source
27100 (origin
27101 (method url-fetch)
27102 (uri (crate-uri "strsim" version))
27103 (file-name
27104 (string-append name "-" version ".tar.gz"))
27105 (sha256
27106 (base32
27107 "151ngha649cyybr3j50qg331b206zrinxqz7fzw1ra8r0n0mrldl"))))))
27108
27109 (define-public rust-strsim-0.5
27110 (package
27111 (inherit rust-strsim-0.9)
27112 (name "rust-strsim")
27113 (version "0.5.2")
27114 (source
27115 (origin
27116 (method url-fetch)
27117 (uri (crate-uri "strsim" version))
27118 (file-name
27119 (string-append name "-" version ".tar.gz"))
27120 (sha256
27121 (base32
27122 "0z3zzvmilfldp4xw42qbkjf901dcnbk58igrzsvivydjzd24ry37"))))))
27123
27124 (define-public rust-structopt-0.3
27125 (package
27126 (name "rust-structopt")
27127 (version "0.3.12")
27128 (source
27129 (origin
27130 (method url-fetch)
27131 (uri (crate-uri "structopt" version))
27132 (file-name
27133 (string-append name "-" version ".tar.gz"))
27134 (sha256
27135 (base32
27136 "178m7wxnjyy9a8a961z74nazjsg79rfv3gv9g3bykfrrjmqs5yn8"))))
27137 (build-system cargo-build-system)
27138 (arguments
27139 `(#:skip-build? #t
27140 #:cargo-inputs
27141 (("rust-structopt-derive" ,rust-structopt-derive-0.4)
27142 ("rust-lazy-static" ,rust-lazy-static-1)
27143 ("rust-clap" ,rust-clap-2))))
27144 (home-page "https://github.com/TeXitoi/structopt")
27145 (synopsis "Parse command line argument by defining a struct")
27146 (description
27147 "Parse command line argument by defining a struct.")
27148 (license (list license:asl2.0 license:expat))))
27149
27150 (define-public rust-structopt-0.2
27151 (package
27152 (name "rust-structopt")
27153 (version "0.2.18")
27154 (source
27155 (origin
27156 (method url-fetch)
27157 (uri (crate-uri "structopt" version))
27158 (file-name (string-append name "-" version ".tar.gz"))
27159 (sha256
27160 (base32
27161 "1mvfv1l8vp3y402fkl2wcl34hi7gmr4bqha13dfz2xf3kjzwvhhn"))))
27162 (build-system cargo-build-system)
27163 (arguments
27164 `(#:tests? #f
27165 #:cargo-inputs
27166 (("rust-clap" ,rust-clap-2)
27167 ("rust-structopt-derive" ,rust-structopt-derive-0.2))))
27168 (home-page "https://github.com/TeXitoi/structopt")
27169 (synopsis "Parse command line arguments by defining a struct")
27170 (description
27171 "Parse command line arguments by defining a struct.")
27172 (license (list license:asl2.0 license:expat))))
27173
27174 (define-public rust-structopt-derive-0.4
27175 (package
27176 (name "rust-structopt-derive")
27177 (version "0.4.5")
27178 (source
27179 (origin
27180 (method url-fetch)
27181 (uri (crate-uri "structopt-derive" version))
27182 (file-name
27183 (string-append name "-" version ".tar.gz"))
27184 (sha256
27185 (base32
27186 "0c04bbzc5bmr2ns6qy35yz55nn3xvlq4dpwxdynnljb9ikhvi21z"))))
27187 (build-system cargo-build-system)
27188 (arguments
27189 `(#:skip-build? #t
27190 #:cargo-inputs
27191 (("rust-heck" ,rust-heck-0.3)
27192 ("rust-proc-macro-error" ,rust-proc-macro-error-0.4)
27193 ("rust-proc-macro2" ,rust-proc-macro2-1)
27194 ("rust-syn" ,rust-syn-1)
27195 ("rust-quote" ,rust-quote-1))))
27196 (home-page "https://github.com/TeXitoi/structopt")
27197 (synopsis "Parse command line argument by defining a struct, derive crate")
27198 (description
27199 "Parse command line argument by defining a struct, derive crate.")
27200 (license (list license:asl2.0 license:expat))))
27201
27202 (define-public rust-structopt-derive-0.2
27203 (package
27204 (name "rust-structopt-derive")
27205 (version "0.2.18")
27206 (source
27207 (origin
27208 (method url-fetch)
27209 (uri (crate-uri "structopt-derive" version))
27210 (file-name (string-append name "-" version ".tar.gz"))
27211 (sha256
27212 (base32
27213 "01sis9z5kqmyhvzbnmlzpdxcry99a0b9blypksgnhdsbm1hh40ak"))))
27214 (build-system cargo-build-system)
27215 (arguments
27216 `(#:cargo-inputs
27217 (("rust-heck" ,rust-heck-0.3)
27218 ("rust-proc-macro2" ,rust-proc-macro2-0.4)
27219 ("rust-quote" ,rust-quote-0.6)
27220 ("rust-syn" ,rust-syn-0.15))))
27221 (home-page "https://github.com/TeXitoi/structopt")
27222 (synopsis
27223 "Parse command line argument by defining a struct, derive crate")
27224 (description
27225 "Parse command line argument by defining a struct, derive crate.")
27226 (license (list license:asl2.0 license:expat))))
27227
27228 (define-public rust-subtle-2
27229 (package
27230 (name "rust-subtle")
27231 (version "2.2.3")
27232 (source
27233 (origin
27234 (method url-fetch)
27235 (uri (crate-uri "subtle" version))
27236 (file-name
27237 (string-append name "-" version ".tar.gz"))
27238 (sha256
27239 (base32
27240 "1h9jd7v0imksyl5mvnjk2rw54sa3xrril76z0md61mq2gh056bah"))))
27241 (build-system cargo-build-system)
27242 (home-page "https://dalek.rs/")
27243 (synopsis
27244 "Pure-Rust traits and utilities for cryptographic implementations")
27245 (description
27246 "This package provides Pure-Rust traits and utilities for constant-time
27247 cryptographic implementations.")
27248 (license license:bsd-3)))
27249
27250 (define-public rust-subtle-1.0
27251 (package
27252 (inherit rust-subtle-2)
27253 (name "rust-subtle")
27254 (version "1.0.0")
27255 (source
27256 (origin
27257 (method url-fetch)
27258 (uri (crate-uri "subtle" version))
27259 (file-name
27260 (string-append name "-" version ".tar.gz"))
27261 (sha256
27262 (base32
27263 "1vm80mxbwfj334izwm8x8l65v1xl9hr0kwrg36r1rq565fkaarrd"))))))
27264
27265 (define-public rust-sval-0.4
27266 (package
27267 (name "rust-sval")
27268 (version "0.4.7")
27269 (source
27270 (origin
27271 (method url-fetch)
27272 (uri (crate-uri "sval" version))
27273 (file-name
27274 (string-append name "-" version ".tar.gz"))
27275 (sha256
27276 (base32
27277 "1aljggx64481q4wp3wx9hxsfh2bs7d64nqsrwbb2zxcpmdnbn6yk"))))
27278 (build-system cargo-build-system)
27279 (arguments
27280 `(#:skip-build? #t
27281 #:cargo-inputs
27282 (("rust-sval-derive" ,rust-sval-derive-0.4)
27283 ("rust-smallvec" ,rust-smallvec-0.6)
27284 ("rust-serde" ,rust-serde-1))))
27285 (home-page "https://github.com/sval-rs/sval")
27286 (synopsis "No-std, object-safe serialization framework")
27287 (description
27288 "This package provides a no-std, object-safe serialization framework.")
27289 (license (list license:asl2.0 license:expat))))
27290
27291 (define-public rust-sval-derive-0.4
27292 (package
27293 (name "rust-sval-derive")
27294 (version "0.4.7")
27295 (source
27296 (origin
27297 (method url-fetch)
27298 (uri (crate-uri "sval_derive" version))
27299 (file-name
27300 (string-append name "-" version ".tar.gz"))
27301 (sha256
27302 (base32
27303 "07s7jqsdczsg0wnydfnxyrsj8zyrjmiwl4is1dfgn8dfvyi8n2bj"))))
27304 (build-system cargo-build-system)
27305 (arguments
27306 `(#:skip-build? #t
27307 #:cargo-inputs
27308 (("rust-proc-macro2" ,rust-proc-macro2-1)
27309 ("rust-syn" ,rust-syn-1)
27310 ("rust-quote" ,rust-quote-1))))
27311 (home-page "https://github.com/sval-rs/sval")
27312 (synopsis "Custom derive for sval")
27313 (description "Custom derive for sval.")
27314 (license (list license:asl2.0 license:expat))))
27315
27316 (define-public rust-swc-1
27317 (package
27318 (name "rust-swc")
27319 (version "1.2.24")
27320 (source
27321 (origin
27322 (method git-fetch)
27323 (uri (git-reference
27324 (url "https://github.com/swc-project/swc")
27325 (commit (string-append "v" version))))
27326 (file-name (git-file-name name version))
27327 (sha256
27328 (base32
27329 "1w9al035x0gmard80vqvah8sy8szs6bnd1ynnyssiiylzg7vhyyv"))))
27330 (build-system cargo-build-system)
27331 (arguments
27332 `(#:cargo-inputs
27333 (("rust-ansi-term" ,rust-ansi-term-0.12)
27334 ("rust-base64" ,rust-base64-0.12)
27335 ("rust-console-error-panic-hook" ,rust-console-error-panic-hook-0.1)
27336 ("rust-crc" ,rust-crc-1)
27337 ("rust-darling" ,rust-darling-0.10)
27338 ("rust-dashmap" ,rust-dashmap-3)
27339 ("rust-either" ,rust-either-1)
27340 ("rust-fxhash" ,rust-fxhash-0.2)
27341 ("rust-is-macro" ,rust-is-macro-0.1)
27342 ("rust-jemallocator" ,rust-jemallocator-0.3)
27343 ("rust-log" ,rust-log-0.4)
27344 ("rust-mimalloc" ,rust-mimalloc-0.1)
27345 ("rust-napi" ,rust-napi-0.5)
27346 ("rust-napi-build" ,rust-napi-build-0.2)
27347 ("rust-napi-derive" ,rust-napi-derive-0.5)
27348 ("rust-nom" ,rust-nom-5)
27349 ("rust-once-cell" ,rust-once-cell-1)
27350 ("rust-parking-lot" ,rust-parking-lot-0.7)
27351 ("rust-path-clean" ,rust-path-clean-0.1)
27352 ("rust-petgraph" ,rust-petgraph-0.5)
27353 ("rust-proc-macro2" ,rust-proc-macro2-1)
27354 ("rust-radix-fmt" ,rust-radix-fmt-1)
27355 ("rust-regex" ,rust-regex-1)
27356 ("rust-relative-path" ,rust-relative-path-1)
27357 ("rust-retain-mut" ,rust-retain-mut-0.1)
27358 ("rust-scoped-tls" ,rust-scoped-tls-1.0)
27359 ("rust-st-map" ,rust-st-map-0.1)
27360 ("rust-string-cache" ,rust-string-cache-0.8)
27361 ("rust-walkdir" ,rust-walkdir-2)
27362 ("rust-wasm-bindgen-futures" ,rust-wasm-bindgen-futures-0.4))
27363 #:cargo-development-inputs
27364 (("rust-anyhow" ,rust-anyhow-1.0)
27365 ("rust-env-logger" ,rust-env-logger-0.7)
27366 ("rust-num-bigint" ,rust-num-bigint-0.2)
27367 ("rust-pretty-assertions" ,rust-pretty-assertions-0.6)
27368 ("rust-pretty-env-logger" ,rust-pretty-env-logger-0.3)
27369 ("rust-serde" ,rust-serde-1)
27370 ("rust-serde-json" ,rust-serde-json-1)
27371 ("rust-sourcemap" ,rust-sourcemap-6)
27372 ("rust-string-cache-codegen" ,rust-string-cache-codegen-0.5)
27373 ("rust-tempfile" ,rust-tempfile-3))
27374 #:tests? #f ;; tests env_query_chrome_71 and project_env fail
27375 #:phases
27376 (modify-phases %standard-phases
27377 (add-after 'unpack 'enable-unstable-features
27378 (lambda _
27379 (setenv "RUSTC_BOOTSTRAP" "1")
27380 (substitute* "ecmascript/jsdoc/src/lib.rs"
27381 (("pub use self" all)
27382 (string-append "#![feature(non_exhaustive)]\n" all)))
27383 (substitute* "ecmascript/parser/src/lib.rs"
27384 (("//! es2019" all)
27385 (string-append "#![feature(non_exhaustive)]
27386 #![feature(mem_take)]
27387 #![feature(proc_macro_hygiene)]
27388 " all)))
27389 (substitute* "ecmascript/transforms/src/lib.rs"
27390 (("#!\\[cfg_attr" all)
27391 (string-append "#![feature(mem_take)]\n" all)))
27392 #t))
27393 (add-after 'enable-unstable-features 'patch-build-failures
27394 (lambda _
27395 (chmod ".cargo/config" 420)
27396 (substitute* "ecmascript/transforms/macros/src/lib.rs"
27397 (("use proc_macro::")
27398 "extern crate proc_macro;\nuse proc_macro::"))
27399 (substitute* "common/src/errors/emitter.rs"
27400 ((" #\\[cfg\\(feature = \"tty-emitter\"\\)\\]\n") ""))
27401 #t)))))
27402 (home-page "https://swc.rs/")
27403 (synopsis "Typescript/javascript compiler")
27404 (description "@code{rust-swc} is a typescript/javascript compiler. It
27405 consumes a javascript or typescript file which uses recently added features
27406 like async-await and emits javascript code which can be executed on old
27407 browsers.")
27408 (license (list license:expat
27409 license:asl2.0))))
27410
27411 (define-public rust-syn-test-suite-0
27412 (package
27413 (name "rust-syn-test-suite")
27414 (version "0.0.0+test")
27415 (source
27416 (origin
27417 (method url-fetch)
27418 (uri (crate-uri "syn-test-suite" version))
27419 (file-name (string-append name "-" version ".tar.gz"))
27420 (sha256
27421 (base32
27422 "1d9ffrbgci1qjdcpvgrsg3sh24qdsdh66zcsvn5prrk05ycn3mm0"))))
27423 (build-system cargo-build-system)
27424 (home-page "https://github.com/dtolnay/syn")
27425 (synopsis "Test suite of the syn crate")
27426 (description "This package provides the test suite of the syn crate.")
27427 (license (list license:expat license:asl2.0))))
27428
27429 (define-public rust-syn-1
27430 (package
27431 (name "rust-syn")
27432 (version "1.0.40")
27433 (source
27434 (origin
27435 (method url-fetch)
27436 (uri (crate-uri "syn" version))
27437 (file-name (string-append name "-" version ".crate"))
27438 (sha256
27439 (base32
27440 "0l437lsnv289y64pgl2mfvr1vgrb2hix5bb5a4rbjncvqly7sgwn"))))
27441 (build-system cargo-build-system)
27442 (arguments
27443 `(#:skip-build? #t
27444 #:cargo-inputs
27445 (("rust-unicode-xid" ,rust-unicode-xid-0.2)
27446 ("rust-proc-macro2" ,rust-proc-macro2-1)
27447 ("rust-quote" ,rust-quote-1))
27448 #:cargo-development-inputs
27449 (("rust-anyhow" ,rust-anyhow-1.0)
27450 ("rust-flate2" ,rust-flate2-1)
27451 ("rust-insta" ,rust-insta-0.16)
27452 ("rust-rayon" ,rust-rayon-1)
27453 ("rust-ref-cast" ,rust-ref-cast-1.0)
27454 ("rust-regex" ,rust-regex-1)
27455 ("rust-reqwest" ,rust-reqwest-0.10)
27456 ("rust-syn-test-suite" ,rust-syn-test-suite-0)
27457 ("rust-tar" ,rust-tar-0.4)
27458 ("rust-termcolor" ,rust-termcolor-1)
27459 ("rust-walkdir" ,rust-walkdir-2))))
27460 (home-page "https://github.com/dtolnay/syn")
27461 (synopsis "Parser for Rust source code")
27462 (description "Parser for Rust source code")
27463 (license (list license:expat license:asl2.0))))
27464
27465 (define-public rust-syn-0.15
27466 (package
27467 (inherit rust-syn-1)
27468 (name "rust-syn")
27469 (version "0.15.44")
27470 (source
27471 (origin
27472 (method url-fetch)
27473 (uri (crate-uri "syn" version))
27474 (file-name
27475 (string-append name "-" version ".tar.gz"))
27476 (sha256
27477 (base32
27478 "1id5g6x6zihv3j7hwrw3m1jp636bg8dpi671r7zy3jvpkavb794w"))))
27479 (arguments
27480 `(#:cargo-test-flags '("--release" "--all-features")
27481 #:cargo-inputs
27482 (("rust-proc-macro2" ,rust-proc-macro2-0.4)
27483 ("rust-quote" ,rust-quote-0.6)
27484 ("rust-unicode-xid" ,rust-unicode-xid-0.1))
27485 #:cargo-development-inputs
27486 (("rust-insta" ,rust-insta-0.8)
27487 ("rust-rayon" ,rust-rayon-1)
27488 ("rust-ref-cast" ,rust-ref-cast-0.2)
27489 ("rust-regex" ,rust-regex-1)
27490 ("rust-termcolor" ,rust-termcolor-1)
27491 ("rust-walkdir" ,rust-walkdir-2))))
27492 (properties '())))
27493
27494 (define-public rust-syn-0.14
27495 (package
27496 (inherit rust-syn-0.15)
27497 (name "rust-syn")
27498 (version "0.14.9")
27499 (source
27500 (origin
27501 (method url-fetch)
27502 (uri (crate-uri "syn" version))
27503 (file-name
27504 (string-append name "-" version ".tar.gz"))
27505 (sha256
27506 (base32
27507 "0hgpgi8lcvkfd5jnma5fxq41ycb9kna635b4c2wl4z1rmbnfj6i6"))))
27508 (arguments
27509 `(#:cargo-inputs
27510 (("rust-proc-macro2" ,rust-proc-macro2-0.4)
27511 ("rust-quote" ,rust-quote-0.6)
27512 ("rust-unicode-xid" ,rust-unicode-xid-0.1))
27513 #:cargo-development-inputs
27514 (("rust-rayon" ,rust-rayon-1)
27515 ("rust-walkdir" ,rust-walkdir-2))))))
27516
27517 (define-public rust-syn-0.13
27518 (package
27519 (inherit rust-syn-0.14)
27520 (name "rust-syn")
27521 (version "0.13.11")
27522 (source
27523 (origin
27524 (method url-fetch)
27525 (uri (crate-uri "syn" version))
27526 (file-name
27527 (string-append name "-" version ".tar.gz"))
27528 (sha256
27529 (base32
27530 "16qvx8qyb5v4vjbg9rk8848bw6x4i6vzs8v7f4n1v9pkj9ibzy8l"))))
27531 (arguments
27532 `(#:tests? #f
27533 #:cargo-inputs
27534 (("rust-proc-macro2" ,rust-proc-macro2-0.3)
27535 ("rust-quote" ,rust-quote-0.5)
27536 ("rust-unicode-xid" ,rust-unicode-xid-0.1))
27537 #:cargo-development-inputs
27538 (("rust-rayon" ,rust-rayon-1)
27539 ("rust-walkdir" ,rust-walkdir-2))))))
27540
27541 (define-public rust-syn-0.11
27542 (package
27543 (inherit rust-syn-0.15)
27544 (name "rust-syn")
27545 (version "0.11.11")
27546 (source
27547 (origin
27548 (method url-fetch)
27549 (uri (crate-uri "syn" version))
27550 (file-name
27551 (string-append name "-" version ".tar.gz"))
27552 (sha256
27553 (base32
27554 "1b8x8jdsmj6r9ck7n1pg371526n1q90kx6rv6ivcb22w06wr3f6k"))))
27555 (arguments
27556 `(#:phases
27557 (modify-phases %standard-phases
27558 (add-before 'build 'fixup-cargo-toml
27559 (lambda _
27560 (substitute* "Cargo.toml"
27561 ((", path =.*,") ","))
27562 #t)))
27563 #:cargo-inputs
27564 (("rust-quote" ,rust-quote-0.3)
27565 ("rust-synom" ,rust-synom-0.11)
27566 ("rust-unicode-xid" ,rust-unicode-xid-0.0))
27567 #:cargo-development-inputs
27568 (("rust-syntex-pos" ,rust-syntex-pos-0.58)
27569 ("rust-syntex-syntax" ,rust-syntex-syntax-0.58)
27570 ("rust-tempdir" ,rust-tempdir-0.3)
27571 ("rust-walkdir" ,rust-walkdir-1))))))
27572
27573 (define-public rust-syn-mid-0.5
27574 (package
27575 (name "rust-syn-mid")
27576 (version "0.5.0")
27577 (source
27578 (origin
27579 (method url-fetch)
27580 (uri (crate-uri "syn-mid" version))
27581 (file-name
27582 (string-append name "-" version ".tar.gz"))
27583 (sha256
27584 (base32
27585 "12ikg5jfklixq0wsgfl7sdzjqlxgq50ygklxy4f972hjdjgm7qvv"))))
27586 (build-system cargo-build-system)
27587 (arguments
27588 `(#:skip-build? #t
27589 #:cargo-inputs
27590 (("rust-proc-macro2" ,rust-proc-macro2-1)
27591 ("rust-syn" ,rust-syn-1)
27592 ("rust-quote" ,rust-quote-1))))
27593 (home-page "https://github.com/taiki-e/syn-mid")
27594 (synopsis
27595 "Provide the features between \"full\" and \"derive\" of syn.")
27596 (description
27597 "This package provides the features between \"full\" and \"derive\" of syn.")
27598 (license (list license:asl2.0 license:expat))))
27599
27600 (define-public rust-synom-0.11
27601 (package
27602 (name "rust-synom")
27603 (version "0.11.3")
27604 (source
27605 (origin
27606 (method url-fetch)
27607 (uri (crate-uri "synom" version))
27608 (file-name
27609 (string-append name "-" version ".tar.gz"))
27610 (sha256
27611 (base32
27612 "1dj536sh5xxhan2h0znxhv0sl6sb7lvzmsmrc3nvl3h1v5p0d4x3"))))
27613 (build-system cargo-build-system)
27614 (arguments
27615 `(#:tests? #f ; doc tests fail
27616 #:phases
27617 (modify-phases %standard-phases
27618 (add-before 'build 'fixup-cargo-toml
27619 (lambda _
27620 (substitute* "Cargo.toml"
27621 (("^path =.*") ""))
27622 #t)))
27623 #:cargo-inputs
27624 (("rust-unicode-xid" ,rust-unicode-xid-0.0))
27625 #:cargo-development-inputs
27626 (("rust-syn" ,rust-syn-0.11))))
27627 (home-page "https://github.com/dtolnay/syn")
27628 (synopsis "Stripped-down Nom parser used by Syn")
27629 (description
27630 "Stripped-down Nom parser used by Syn.")
27631 (license (list license:expat license:asl2.0))))
27632
27633 (define-public rust-synstructure-0.12
27634 (package
27635 (name "rust-synstructure")
27636 (version "0.12.3")
27637 (source
27638 (origin
27639 (method url-fetch)
27640 (uri (crate-uri "synstructure" version))
27641 (file-name
27642 (string-append name "-" version ".tar.gz"))
27643 (sha256
27644 (base32
27645 "0igmc5fzpk6fg7kgff914j05lbpc6ai2wmji312v2h8vvjhnwrb7"))))
27646 (build-system cargo-build-system)
27647 (arguments
27648 `(#:skip-build? #t
27649 #:cargo-inputs
27650 (("rust-unicode-xid" ,rust-unicode-xid-0.2)
27651 ("rust-proc-macro2" ,rust-proc-macro2-1)
27652 ("rust-syn" ,rust-syn-1)
27653 ("rust-quote" ,rust-quote-1))))
27654 (home-page "https://github.com/mystor/synstructure")
27655 (synopsis "Helper methods and macros for custom derives")
27656 (description
27657 "This package provides helper methods and macros for custom derives.")
27658 (license license:expat)))
27659
27660 (define-public rust-synstructure-0.10
27661 (package
27662 (name "rust-synstructure")
27663 (version "0.10.2")
27664 (source
27665 (origin
27666 (method url-fetch)
27667 (uri (crate-uri "synstructure" version))
27668 (file-name
27669 (string-append name "-" version ".tar.gz"))
27670 (sha256
27671 (base32
27672 "0grirdkgh2wl4hf9a3nbiazpgccxgq54kn52ms0xrr6njvgkwd82"))))
27673 (build-system cargo-build-system)
27674 (arguments
27675 `(#:cargo-inputs
27676 (("rust-proc-macro2" ,rust-proc-macro2-0.4)
27677 ("rust-quote" ,rust-quote-0.6)
27678 ("rust-syn" ,rust-syn-0.15)
27679 ("rust-unicode-xid" ,rust-unicode-xid-0.1))
27680 #:cargo-development-inputs
27681 (("rust-synstructure-test-traits" ,rust-synstructure-test-traits-0.1))))
27682 (home-page "https://github.com/mystor/synstructure")
27683 (synopsis "Helper methods and macros for custom derives")
27684 (description
27685 "Helper methods and macros for custom derives.")
27686 (license license:expat)))
27687
27688 (define-public rust-synstructure-test-traits-0.1
27689 (package
27690 (name "rust-synstructure-test-traits")
27691 (version "0.1.0")
27692 (source
27693 (origin
27694 (method url-fetch)
27695 (uri (crate-uri "synstructure_test_traits" version))
27696 (file-name (string-append name "-" version ".crate"))
27697 (sha256
27698 (base32
27699 "1b3fs2b9kc1gy9dilaxqjbdl4z0mlrbbxjzkprdx953rif1c3q66"))))
27700 (build-system cargo-build-system)
27701 (home-page "https://crates.io/crates/synstructure_test_traits")
27702 (synopsis "Helper test traits for synstructure doctests")
27703 (description
27704 "This package provides helper test traits for synstructure doctests.")
27705 (license license:expat)))
27706
27707 (define-public rust-syntect-3.3
27708 (package
27709 (name "rust-syntect")
27710 (version "3.3.0")
27711 (source
27712 (origin
27713 (method url-fetch)
27714 (uri (crate-uri "syntect" version))
27715 (file-name
27716 (string-append name "-" version ".tar.gz"))
27717 (sha256
27718 (base32
27719 "1f6qn1yy15b0hq9h6q1rikqnm3lh56ic6bq3ywsmdsjy8ni9splm"))))
27720 (build-system cargo-build-system)
27721 (arguments
27722 `(#:skip-build? #t
27723 #:cargo-inputs
27724 (("rust-plist" ,rust-plist-0.4)
27725 ("rust-yaml-rust" ,rust-yaml-rust-0.4)
27726 ("rust-regex-syntax" ,rust-regex-syntax-0.6)
27727 ("rust-serde" ,rust-serde-1)
27728 ("rust-serde-derive" ,rust-serde-derive-1)
27729 ("rust-flate2" ,rust-flate2-1)
27730 ("rust-serde-json" ,rust-serde-json-1)
27731 ("rust-fnv" ,rust-fnv-1)
27732 ("rust-bitflags" ,rust-bitflags-1)
27733 ("rust-lazycell" ,rust-lazycell-1)
27734 ("rust-bincode" ,rust-bincode-1)
27735 ("rust-lazy-static" ,rust-lazy-static-1)
27736 ("rust-walkdir" ,rust-walkdir-2)
27737 ("rust-onig" ,rust-onig-5.0))))
27738 (home-page "https://github.com/trishume/syntect")
27739 (synopsis "Library for syntax highlighting and code intelligence")
27740 (description
27741 "This package provides a library for syntax highlighting and code
27742 intelligence using Sublime Text's grammars.")
27743 (license license:expat)))
27744
27745 (define-public rust-syntex-0.58
27746 (package
27747 (name "rust-syntex")
27748 (version "0.58.1")
27749 (source
27750 (origin
27751 (method url-fetch)
27752 (uri (crate-uri "syntex" version))
27753 (file-name
27754 (string-append name "-" version ".tar.gz"))
27755 (sha256
27756 (base32
27757 "03lgd36cxhc6gzaab0wqvckbhml00s6s73lk34ymf6cklymf7xd8"))))
27758 (build-system cargo-build-system)
27759 (arguments
27760 `(#:skip-build? #t
27761 #:cargo-inputs
27762 (("rust-syntex-errors" ,rust-syntex-errors-0.58)
27763 ("rust-syntex-syntax" ,rust-syntex-syntax-0.58))))
27764 (home-page "https://github.com/erickt/rust-syntex")
27765 (synopsis "Compile time syntax extension expansion")
27766 (description
27767 "This package provides a library that enables compile time
27768 syntax extension expansion.")
27769 (license (list license:expat license:asl2.0))))
27770
27771 (define-public rust-syntex-errors-0.58
27772 (package
27773 (name "rust-syntex-errors")
27774 (version "0.58.1")
27775 (source
27776 (origin
27777 (method url-fetch)
27778 (uri (crate-uri "syntex_errors" version))
27779 (file-name
27780 (string-append name "-" version ".tar.gz"))
27781 (sha256
27782 (base32
27783 "176vma7sjv6li17q7dsilryac66b76zyis9ampmff2hlsz1caz46"))))
27784 (build-system cargo-build-system)
27785 (arguments
27786 `(#:skip-build? #t
27787 #:cargo-inputs
27788 (("rust-libc" ,rust-libc-0.2)
27789 ("rust-rustc-serialize" ,rust-rustc-serialize-0.3)
27790 ("rust-syntex-pos" ,rust-syntex-pos-0.58)
27791 ("rust-term" ,rust-term-0.4)
27792 ("rust-unicode-xid" ,rust-unicode-xid-0.0))))
27793 (home-page "https://github.com/serde-rs/syntex")
27794 (synopsis "Backport of librustc_errors")
27795 (description "This package provides a backport of @code{librustc_errors}.")
27796 (license (list license:expat license:asl2.0))))
27797
27798 (define-public rust-syntex-pos-0.58
27799 (package
27800 (name "rust-syntex-pos")
27801 (version "0.58.1")
27802 (source
27803 (origin
27804 (method url-fetch)
27805 (uri (crate-uri "syntex_pos" version))
27806 (file-name
27807 (string-append name "-" version ".tar.gz"))
27808 (sha256
27809 (base32
27810 "0iqhircpr723da1g97xrrj8smqqz3gxw91cf03sckasjzri4gb8k"))))
27811 (build-system cargo-build-system)
27812 (arguments
27813 `(#:cargo-inputs
27814 (("rust-rustc-serialize" ,rust-rustc-serialize-0.3))))
27815 (home-page "https://github.com/serde-rs/syntex")
27816 (synopsis "Backport of libsyntax_pos")
27817 (description "This package provides a backport of @code{libsyntax_pos}.")
27818 (license (list license:expat license:asl2.0))))
27819
27820 (define-public rust-syntex-syntax-0.58
27821 (package
27822 (name "rust-syntex-syntax")
27823 (version "0.58.1")
27824 (source
27825 (origin
27826 (method url-fetch)
27827 (uri (crate-uri "syntex_syntax" version))
27828 (file-name
27829 (string-append name "-" version ".tar.gz"))
27830 (sha256
27831 (base32
27832 "14f74l7yzwl6fr9i23k4j23k66qn0gakvhk4jjc9ipb3w6x4s3kf"))))
27833 (build-system cargo-build-system)
27834 (arguments
27835 `(#:skip-build? #t
27836 #:cargo-inputs
27837 (("rust-bitflags" ,rust-bitflags-0.8)
27838 ("rust-log" ,rust-log-0.3)
27839 ("rust-rustc-serialize" ,rust-rustc-serialize-0.3)
27840 ("rust-syntex-errors" ,rust-syntex-errors-0.58)
27841 ("rust-syntex-pos" ,rust-syntex-pos-0.58)
27842 ("rust-unicode-xid" ,rust-unicode-xid-0.0))))
27843 (home-page "https://github.com/serde-rs/syntex")
27844 (synopsis "Backport of libsyntax")
27845 (description "This package provides a backport of libsyntax.")
27846 (license (list license:expat license:asl2.0))))
27847
27848 (define-public rust-sysctl-0.4
27849 (package
27850 (name "rust-sysctl")
27851 (version "0.4.0")
27852 (source
27853 (origin
27854 (method url-fetch)
27855 (uri (crate-uri "sysctl" version))
27856 (file-name
27857 (string-append name "-" version ".tar.gz"))
27858 (sha256
27859 (base32
27860 "0p6bfjsw3v12nb2qsgm6r9klwb5qyh4w55zzmccv8r5aqb8g0085"))))
27861 (build-system cargo-build-system)
27862 (arguments
27863 `(#:skip-build? #t
27864 #:cargo-inputs
27865 (("rust-bitflags" ,rust-bitflags-1)
27866 ("rust-byteorder" ,rust-byteorder-1)
27867 ("rust-failure" ,rust-failure-0.1)
27868 ("rust-libc" ,rust-libc-0.2)
27869 ("rust-walkdir" ,rust-walkdir-2))))
27870 (home-page "https://github.com/johalun/sysctl-rs")
27871 (synopsis "Simplified interface to libc::sysctl")
27872 (description
27873 "Simplified interface to libc::sysctl.")
27874 (license license:expat)))
27875
27876 (define-public rust-sysctl-0.1
27877 (package
27878 (inherit rust-sysctl-0.4)
27879 (name "rust-sysctl")
27880 (version "0.1.4")
27881 (source
27882 (origin
27883 (method url-fetch)
27884 (uri (crate-uri "sysctl" version))
27885 (file-name
27886 (string-append name "-" version ".tar.gz"))
27887 (sha256
27888 (base32
27889 "10wxlk4nkzlxp4fg435jmdmfwl4hy0y4w2rcsgs634lvbp8pgksb"))))
27890 (arguments
27891 `(#:skip-build? #t ; Unsupported on Linux.
27892 #:cargo-inputs
27893 (("rust-byteorder" ,rust-byteorder-1)
27894 ("rust-errno" ,rust-errno-0.2)
27895 ("rust-libc" ,rust-libc-0.2))))))
27896
27897 (define-public rust-syslog-4.0
27898 (package
27899 (name "rust-syslog")
27900 (version "4.0.1")
27901 (source
27902 (origin
27903 (method url-fetch)
27904 (uri (crate-uri "syslog" version))
27905 (file-name
27906 (string-append name "-" version ".tar.gz"))
27907 (sha256
27908 (base32
27909 "09ykcbvwx8icvf303mqyz76ji8j6fgyyx97zpr23s788ni112r50"))))
27910 (build-system cargo-build-system)
27911 (arguments
27912 `(#:skip-build? #t
27913 #:cargo-inputs
27914 (("rust-time" ,rust-time-0.1)
27915 ("rust-error-chain" ,rust-error-chain-0.11)
27916 ("rust-libc" ,rust-libc-0.2)
27917 ("rust-log" ,rust-log-0.4))))
27918 (home-page "https://github.com/Geal/rust-syslog")
27919 (synopsis "Send log messages to syslog")
27920 (description "Send log messages to syslog.")
27921 (license license:expat)))
27922
27923 (define-public rust-syslog-3.3
27924 (package
27925 (name "rust-syslog")
27926 (version "3.3.0")
27927 (source
27928 (origin
27929 (method url-fetch)
27930 (uri (crate-uri "syslog" version))
27931 (file-name
27932 (string-append name "-" version ".tar.gz"))
27933 (sha256
27934 (base32
27935 "0hpdnk2zm6xawpz6fv6qbn0ncfm5p0wm5c6gq7yhaz2gvsnb1jdv"))))
27936 (build-system cargo-build-system)
27937 (arguments
27938 `(#:skip-build? #t
27939 #:cargo-inputs
27940 (("rust-time" ,rust-time-0.1)
27941 ("rust-libc" ,rust-libc-0.2)
27942 ("rust-log" ,rust-log-0.3)
27943 ("rust-unix-socket" ,rust-unix-socket-0.5))))
27944 (home-page "https://github.com/Geal/rust-syslog")
27945 (synopsis "Send log messages to syslog")
27946 (description "Send log messages to syslog.")
27947 (license license:expat)))
27948
27949 (define-public rust-take-mut-0.2
27950 (package
27951 (name "rust-take-mut")
27952 (version "0.2.2")
27953 (source
27954 (origin
27955 (method url-fetch)
27956 (uri (crate-uri "take_mut" version))
27957 (file-name (string-append name "-" version ".tar.gz"))
27958 (sha256
27959 (base32
27960 "0q2d7w6nd5bl7bay5csq065sjg8fw0jcx6hl1983cpzf25fh0r7p"))))
27961 (build-system cargo-build-system)
27962 (home-page "https://github.com/Sgeo/take_mut")
27963 (synopsis "Take a T from a &mut T temporarily")
27964 (description "This package lets you temporarily take a T from a &mut T.")
27965 (license license:expat)))
27966
27967 (define-public rust-takeable-option-0.4
27968 (package
27969 (name "rust-takeable-option")
27970 (version "0.4.0")
27971 (source
27972 (origin
27973 (method url-fetch)
27974 (uri (crate-uri "takeable-option" version))
27975 (file-name
27976 (string-append name "-" version ".tar.gz"))
27977 (sha256
27978 (base32
27979 "0hvd6vk4ksgg2y99498jw52ric4lxm0i6ygpzqm95gdrhvsxyynp"))))
27980 (build-system cargo-build-system)
27981 (home-page "https://docs.rs/takeable-option/")
27982 (synopsis "A small wrapper around option.")
27983 (description
27984 "This package provides a small wrapper around option.")
27985 (license (list license:asl2.0 license:expat))))
27986
27987 (define-public rust-tar-0.4
27988 (package
27989 (name "rust-tar")
27990 (version "0.4.26")
27991 (source
27992 (origin
27993 (method url-fetch)
27994 (uri (crate-uri "tar" version))
27995 (file-name (string-append name "-" version ".crate"))
27996 (sha256
27997 (base32
27998 "1lr6v3cpkfxd2lk5ll2jd8wr1xdskwj35smnh5sfb8xvzzxnn6dk"))))
27999 (build-system cargo-build-system)
28000 (arguments
28001 `(#:tests? #f ; Test tarballs not included in crate.
28002 #:cargo-inputs
28003 (("rust-filetime" ,rust-filetime-0.2)
28004 ("rust-libc" ,rust-libc-0.2)
28005 ("rust-redox-syscall" ,rust-redox-syscall-0.1)
28006 ("rust-xattr" ,rust-xattr-0.2))
28007 #:cargo-development-inputs
28008 (("rust-tempdir" ,rust-tempdir-0.3))))
28009 (home-page "https://github.com/alexcrichton/tar-rs")
28010 (synopsis "Tar file reading/writing for Rust")
28011 (description
28012 "This package provides a Rust implementation of a TAR file reader and
28013 writer. This library does not currently handle compression, but it is abstract
28014 over all I/O readers and writers. Additionally, great lengths are taken to
28015 ensure that the entire contents are never required to be entirely resident in
28016 memory all at once.")
28017 (license (list license:asl2.0
28018 license:expat))))
28019
28020 (define-public rust-target-build-utils-0.3
28021 (package
28022 (name "rust-target-build-utils")
28023 (version "0.3.1")
28024 (source
28025 (origin
28026 (method url-fetch)
28027 (uri (crate-uri "target_build_utils" version))
28028 (file-name
28029 (string-append name "-" version ".tar.gz"))
28030 (sha256
28031 (base32
28032 "0p7713x4bpbwi11l196z1mi8ym8qj1cdnab1mm2ffpm2wi516g81"))))
28033 (build-system cargo-build-system)
28034 (arguments
28035 `(#:cargo-inputs
28036 (("rust-phf" ,rust-phf-0.7)
28037 ("rust-serde-json" ,rust-serde-json-0.9)
28038 ("rust-phf-codegen" ,rust-phf-codegen-0.7))))
28039 (home-page "https://github.com/nagisa/target_build_utils.rs")
28040 (synopsis "Rust utility to handle TARGET environment variable")
28041 (description
28042 "Utility crate to handle the @code{TARGET} environment variable passed into
28043 @code{build.rs} scripts.")
28044 (license (list license:isc license:asl2.0))))
28045
28046 (define-public rust-target-lexicon-0.10
28047 (package
28048 (name "rust-target-lexicon")
28049 (version "0.10.0")
28050 (source
28051 (origin
28052 (method url-fetch)
28053 (uri (crate-uri "target-lexicon" version))
28054 (file-name
28055 (string-append name "-" version ".tar.gz"))
28056 (sha256
28057 (base32
28058 "17diw9c3d1vb5rmwwk2ghsyhfs0gj5jm78hrwxxhmd67vhw743mb"))))
28059 (build-system cargo-build-system)
28060 (arguments `(#:skip-build? #t))
28061 (home-page
28062 "https://github.com/CraneStation/target-lexicon")
28063 (synopsis
28064 "Targeting utilities for compilers and related tools")
28065 (description
28066 "Targeting utilities for compilers and related tools")
28067 (license license:asl2.0)))
28068
28069 (define-public rust-tempdir-0.3
28070 (package
28071 (name "rust-tempdir")
28072 (version "0.3.7")
28073 (source
28074 (origin
28075 (method url-fetch)
28076 (uri (crate-uri "tempdir" version))
28077 (file-name (string-append name "-" version ".crate"))
28078 (sha256
28079 (base32
28080 "1n5n86zxpgd85y0mswrp5cfdisizq2rv3la906g6ipyc03xvbwhm"))))
28081 (build-system cargo-build-system)
28082 (arguments
28083 `(#:cargo-inputs
28084 (("rust-rand" ,rust-rand-0.4)
28085 ("rust-remove-dir-all" ,rust-remove-dir-all-0.5))))
28086 (home-page "https://github.com/rust-lang-deprecated/tempdir")
28087 (synopsis "Temporary directory management for Rust")
28088 (description
28089 "This package provides a library for managing a temporary directory and
28090 deleting all contents when it's dropped.")
28091 (license (list license:asl2.0
28092 license:expat))))
28093
28094 (define-public rust-tempfile-3
28095 (package
28096 (name "rust-tempfile")
28097 (version "3.1.0")
28098 (source
28099 (origin
28100 (method url-fetch)
28101 (uri (crate-uri "tempfile" version))
28102 (file-name (string-append name "-" version ".crate"))
28103 (sha256
28104 (base32
28105 "1a9cfdqw70n7bcnkx05aih9xdba8lqazmqlkjpkmn2la6gcj8vks"))))
28106 (build-system cargo-build-system)
28107 (arguments
28108 `(#:skip-build? #t
28109 #:cargo-inputs
28110 (("rust-cfg-if" ,rust-cfg-if-0.1)
28111 ("rust-libc" ,rust-libc-0.2)
28112 ("rust-rand" ,rust-rand-0.7)
28113 ("rust-redox-syscall" ,rust-redox-syscall-0.1)
28114 ("rust-remove-dir-all" ,rust-remove-dir-all-0.5)
28115 ("rust-winapi" ,rust-winapi-0.3))))
28116 (home-page "https://stebalien.com/projects/tempfile-rs")
28117 (synopsis "Library for managing temporary files and directories")
28118 (description
28119 "This package provides a library for managing temporary files and
28120 directories.")
28121 (license (list license:asl2.0
28122 license:expat))))
28123
28124 (define-public rust-tempfile-2
28125 (package
28126 (inherit rust-tempfile-3)
28127 (name "rust-tempfile")
28128 (version "2.2.0")
28129 (source
28130 (origin
28131 (method url-fetch)
28132 (uri (crate-uri "tempfile" version))
28133 (file-name (string-append name "-" version ".tar.gz"))
28134 (sha256
28135 (base32
28136 "1q61byf232rra0vqxp4qp10wwwqsqqd45qjj80ql5f34vgljzkhi"))))
28137 (build-system cargo-build-system)
28138 (arguments
28139 `(#:cargo-inputs
28140 (("rust-kernel32-sys" ,rust-kernel32-sys-0.2)
28141 ("rust-libc" ,rust-libc-0.2)
28142 ("rust-rand" ,rust-rand-0.3)
28143 ("rust-redox-syscall" ,rust-redox-syscall-0.1)
28144 ("rust-winapi" ,rust-winapi-0.2))))))
28145
28146 (define-public rust-tendril-0.4
28147 (package
28148 (name "rust-tendril")
28149 (version "0.4.1")
28150 (source
28151 (origin
28152 (method url-fetch)
28153 (uri (crate-uri "tendril" version))
28154 (file-name
28155 (string-append name "-" version ".tar.gz"))
28156 (sha256
28157 (base32
28158 "0fsx7blrrzgca8aa2yqy8zxyi8s7amskhgkk1ml5sbaqyalyszvh"))))
28159 (build-system cargo-build-system)
28160 (arguments
28161 `(#:skip-build? #t
28162 #:cargo-inputs
28163 (("rust-encoding" ,rust-encoding-0.2)
28164 ("rust-encoding-rs" ,rust-encoding-rs-0.8)
28165 ("rust-futf" ,rust-futf-0.1)
28166 ("rust-mac" ,rust-mac-0.1)
28167 ("rust-utf-8" ,rust-utf-8-0.7))
28168 #:cargo-development-inputs
28169 (("rust-rand" ,rust-rand-0.4))))
28170 (home-page "https://github.com/servo/tendril")
28171 (synopsis "Compact buffer/string type for zero-copy parsing")
28172 (description
28173 "Compact buffer/string type for zero-copy parsing.")
28174 (license (list license:expat license:asl2.0))))
28175
28176 (define-public rust-term-0.6
28177 (package
28178 (name "rust-term")
28179 (version "0.6.1")
28180 (source
28181 (origin
28182 (method url-fetch)
28183 (uri (crate-uri "term" version))
28184 (file-name
28185 (string-append name "-" version ".tar.gz"))
28186 (sha256
28187 (base32
28188 "1ddqxq9hrk8zqq1f8pqhz72vrlfc8vh2xcza2gb623z78lrkm1n0"))))
28189 (build-system cargo-build-system)
28190 (arguments
28191 `(#:cargo-inputs
28192 (("rust-dirs" ,rust-dirs-2.0)
28193 ("rust-winapi" ,rust-winapi-0.3))))
28194 (home-page "https://github.com/Stebalien/term")
28195 (synopsis "Terminal formatting library")
28196 (description
28197 "This package provides a terminal formatting library.")
28198 (license (list license:expat license:asl2.0))))
28199
28200 (define-public rust-term-0.5
28201 (package
28202 (inherit rust-term-0.6)
28203 (name "rust-term")
28204 (version "0.5.2")
28205 (source
28206 (origin
28207 (method url-fetch)
28208 (uri (crate-uri "term" version))
28209 (file-name
28210 (string-append name "-" version ".tar.gz"))
28211 (sha256
28212 (base32
28213 "0hkgjrfisj6zjwz525639pmsvzhlc48a0h65nw87qrdp6jihdlgd"))))
28214 (arguments
28215 `(#:cargo-inputs
28216 (("rust-byteorder" ,rust-byteorder-1)
28217 ("rust-dirs" ,rust-dirs-1.0)
28218 ("rust-winapi" ,rust-winapi-0.3))))))
28219
28220 (define-public rust-term-0.4
28221 (package
28222 (inherit rust-term-0.6)
28223 (name "rust-term")
28224 (version "0.4.6")
28225 (source
28226 (origin
28227 (method url-fetch)
28228 (uri (crate-uri "term" version))
28229 (file-name (string-append name "-" version ".crate"))
28230 (sha256
28231 (base32
28232 "1wbh8ngqkqr3f6wz902yplf60bd5yapnckvrkgmzp5nffi7n8qzs"))))
28233 (arguments
28234 `(#:cargo-inputs
28235 (("rust-kernel32-sys" ,rust-kernel32-sys-0.2)
28236 ("rust-winapi" ,rust-winapi-0.2))))))
28237
28238 (define-public rust-term-0.2
28239 (package/inherit rust-term-0.4
28240 (name "rust-term")
28241 (version "0.2.14")
28242 (source
28243 (origin
28244 (method url-fetch)
28245 (uri (crate-uri "term" version))
28246 (file-name (string-append name "-" version ".crate"))
28247 (sha256
28248 (base32 "109jmzddq1kz6wm2ndgddy7yrlqcw2i36ygxl0fcymc0sda7w1zj"))))
28249 (arguments
28250 `(#:cargo-inputs
28251 (("rust-kernel32-sys" ,rust-kernel32-sys-0.2)
28252 ("rust-winapi" ,rust-winapi-0.2))))))
28253
28254 (define-public rust-term-grid-0.1
28255 (package
28256 (name "rust-term-grid")
28257 (version "0.1.7")
28258 (source
28259 (origin
28260 (method url-fetch)
28261 (uri (crate-uri "term_grid" version))
28262 (file-name
28263 (string-append name "-" version ".tar.gz"))
28264 (sha256
28265 (base32
28266 "1kq2sy3b8329jrsrpcvijvyz4gbqjyvyy6c3n0wmmvda9y03w393"))))
28267 (build-system cargo-build-system)
28268 (arguments
28269 `(#:cargo-inputs
28270 (("rust-unicode-width" ,rust-unicode-width-0.1))))
28271 (home-page "https://github.com/ogham/rust-term-grid")
28272 (synopsis "Library for formatting strings into a grid layout")
28273 (description "This package provides a library for formatting strings into a
28274 grid layout.")
28275 (license license:expat)))
28276
28277 (define-public rust-term-size-1.0
28278 (package
28279 (name "rust-term-size")
28280 (version "1.0.0-beta1")
28281 (source
28282 (origin
28283 (method url-fetch)
28284 (uri (crate-uri "term_size" version))
28285 (file-name
28286 (string-append name "-" version ".tar.gz"))
28287 (sha256
28288 (base32
28289 "13w9cqjhzh3mmx6zami8lxyf42xx53yy866zxhxqcm71k637v8d8"))))
28290 (build-system cargo-build-system)
28291 (arguments
28292 `(#:skip-build? #t
28293 #:cargo-inputs
28294 (("rust-clippy" ,rust-clippy-0.0)
28295 ("rust-kernel32-sys" ,rust-kernel32-sys-0.2)
28296 ("rust-libc" ,rust-libc-0.2)
28297 ("rust-winapi" ,rust-winapi-0.3))))
28298 (home-page "https://github.com/clap-rs/term_size-rs")
28299 (synopsis "Determine terminal sizes and dimensions")
28300 (description
28301 "Functions for determining terminal sizes and dimensions")
28302 (license (list license:asl2.0 license:expat))))
28303
28304 (define-public rust-term-size-0.3
28305 (package
28306 (inherit rust-term-size-1.0)
28307 (name "rust-term-size")
28308 (version "0.3.2")
28309 (source
28310 (origin
28311 (method url-fetch)
28312 (uri (crate-uri "term_size" version))
28313 (file-name
28314 (string-append name "-" version ".tar.gz"))
28315 (sha256
28316 (base32
28317 "1n885cykajsppx86xl7d0dqkgmgsp8v914lvs12qzvd0dij2jh8y"))))
28318 (arguments
28319 `(#:cargo-inputs
28320 (("rust-libc" ,rust-libc-0.2)
28321 ("rust-winapi" ,rust-winapi-0.3))))))
28322
28323 (define-public rust-termcolor-1
28324 (package
28325 (name "rust-termcolor")
28326 (version "1.1.0")
28327 (source
28328 (origin
28329 (method url-fetch)
28330 (uri (crate-uri "termcolor" version))
28331 (file-name (string-append name "-" version ".crate"))
28332 (sha256
28333 (base32
28334 "0pyp8vc0gx7124y80ixdl6plbfn1yjhw04i875k5fz2dk8lglsxv"))))
28335 (build-system cargo-build-system)
28336 (arguments
28337 `(#:cargo-inputs
28338 (("rust-winapi-util" ,rust-winapi-util-0.1))
28339 #:cargo-development-inputs
28340 (("rust-doc-comment" ,rust-doc-comment-0.3))))
28341 (home-page "https://github.com/BurntSushi/termcolor")
28342 (synopsis "Library for writing colored text to a terminal")
28343 (description "This package provides a simple cross platform library for
28344 writing colored text to a terminal.")
28345 (license (list license:unlicense
28346 license:expat))))
28347
28348 (define-public rust-terminal-size-0.1
28349 (package
28350 (name "rust-terminal-size")
28351 (version "0.1.13")
28352 (source
28353 (origin
28354 (method url-fetch)
28355 (uri (crate-uri "terminal-size" version))
28356 (file-name
28357 (string-append name "-" version ".tar.gz"))
28358 (sha256
28359 (base32
28360 "04qy9i0k3qkhl749xk30xga0l7w61rf4bj5zy0r44w3jijgws54s"))))
28361 (build-system cargo-build-system)
28362 (arguments
28363 `(#:tests? #f ; Tests expect access to /dev/stderr
28364 #:cargo-inputs
28365 (("rust-libc" ,rust-libc-0.2)
28366 ("rust-winapi" ,rust-winapi-0.3))))
28367 (home-page "https://github.com/eminence/terminal-size")
28368 (synopsis "Gets the size of your Linux or Windows terminal")
28369 (description
28370 "This package gets the size of your Linux or Windows terminal.")
28371 (license (list license:expat license:asl2.0))))
28372
28373 (define-public rust-terminfo-0.6
28374 (package
28375 (name "rust-terminfo")
28376 (version "0.6.1")
28377 (source
28378 (origin
28379 (method url-fetch)
28380 (uri (crate-uri "terminfo" version))
28381 (file-name
28382 (string-append name "-" version ".tar.gz"))
28383 (sha256
28384 (base32
28385 "17k8vqvicd6yg0iqmkjnxjhz8h8pknv86r03nq3f3ayjmxdhclcf"))))
28386 (build-system cargo-build-system)
28387 (arguments
28388 `(#:cargo-inputs
28389 (("rust-fnv" ,rust-fnv-1)
28390 ("rust-nom" ,rust-nom-4.2)
28391 ("rust-phf" ,rust-phf-0.7)
28392 ("rust-phf-codegen" ,rust-phf-codegen-0.7))))
28393 (home-page "https://github.com/meh/rust-terminfo")
28394 (synopsis "Terminal information")
28395 (description "Terminal capabilities with type-safe getters.")
28396 (license license:wtfpl2)))
28397
28398 (define-public rust-termion-1.5
28399 (package
28400 (name "rust-termion")
28401 (version "1.5.5")
28402 (source
28403 (origin
28404 (method url-fetch)
28405 (uri (crate-uri "termion" version))
28406 (file-name (string-append name "-" version ".crate"))
28407 (sha256
28408 (base32
28409 "01f9787d5nx445bqbj644v38bn0hl2swwjy9baz0dnbqi6fyqb62"))))
28410 (build-system cargo-build-system)
28411 (arguments
28412 `(#:tests? #f ; Tests want a terminal.
28413 #:cargo-inputs
28414 (("rust-libc" ,rust-libc-0.2)
28415 ("rust-numtoa" ,rust-numtoa-0.1)
28416 ("rust-redox-syscall" ,rust-redox-syscall-0.1)
28417 ("rust-redox-termios" ,rust-redox-termios-0.1))))
28418 (home-page "https://gitlab.redox-os.org/redox-os/termion")
28419 (synopsis "Library for manipulating terminals")
28420 (description
28421 "This package provides a bindless library for manipulating terminals.")
28422 (license license:expat)))
28423
28424 (define-public rust-termios-0.3
28425 (package
28426 (name "rust-termios")
28427 (version "0.3.1")
28428 (source
28429 (origin
28430 (method url-fetch)
28431 (uri (crate-uri "termios" version))
28432 (file-name (string-append name "-" version ".crate"))
28433 (sha256
28434 (base32
28435 "09any1p4jp4bphvb5ikagnvwjc3xn2djchy96nkpa782xb2j1dkj"))))
28436 (build-system cargo-build-system)
28437 (arguments
28438 `(#:cargo-inputs
28439 (("rust-libc" ,rust-libc-0.2))))
28440 (home-page "https://github.com/dcuddeback/termios-rs")
28441 (synopsis "Safe bindings for the termios library")
28442 (description
28443 "The termios crate provides safe bindings for the Rust programming language
28444 to the terminal I/O interface implemented by Unix operating systems. The safe
28445 bindings are a small wrapper around the raw C functions, which converts integer
28446 return values to @code{std::io::Result} to indicate success or failure.")
28447 (license license:expat)))
28448
28449 (define-public rust-termios-0.2
28450 (package
28451 (inherit rust-termios-0.3)
28452 (name "rust-termios")
28453 (version "0.2.2")
28454 (source
28455 (origin
28456 (method url-fetch)
28457 (uri (crate-uri "termios" version))
28458 (file-name (string-append name "-" version ".tar.gz"))
28459 (sha256
28460 (base32
28461 "0fk8nl0rmk43jrh6hjz6c6d83ri7l6fikag6lh0ffz3di9cwznfm"))))))
28462
28463 (define-public rust-test-assembler-0.1
28464 (package
28465 (name "rust-test-assembler")
28466 (version "0.1.5")
28467 (source
28468 (origin
28469 (method url-fetch)
28470 (uri (crate-uri "test-assembler" version))
28471 (file-name
28472 (string-append name "-" version ".tar.gz"))
28473 (sha256
28474 (base32
28475 "1sdx9hk0dk3z9crm8834ysyxsi92chls8arpd0gs796kis6lik2w"))))
28476 (build-system cargo-build-system)
28477 (arguments
28478 `(#:skip-build? #t
28479 #:cargo-inputs
28480 (("rust-byteorder" ,rust-byteorder-1))))
28481 (home-page "https://github.com/luser/rust-test-assembler")
28482 (synopsis "Build complex binary streams")
28483 (description
28484 "This package provides a set of types for building complex binary
28485 streams.")
28486 (license license:expat)))
28487
28488 (define-public rust-tester-0.5
28489 (package
28490 (name "rust-tester")
28491 (version "0.5.0")
28492 (source
28493 (origin
28494 (method url-fetch)
28495 (uri (crate-uri "tester" version))
28496 (file-name
28497 (string-append name "-" version ".tar.gz"))
28498 (sha256
28499 (base32
28500 "1xkgapz2i4j977f6kh1zp6sa5llbhy5vbnr6kfj8czsrdjr2r0ay"))))
28501 (build-system cargo-build-system)
28502 (arguments
28503 `(#:skip-build? #t
28504 #:cargo-inputs
28505 (("rust-getopts" ,rust-getopts-0.2)
28506 ("rust-libc" ,rust-libc-0.2)
28507 ("rust-term" ,rust-term-0.4))))
28508 (home-page
28509 "https://github.com/messense/rustc-test")
28510 (synopsis
28511 "Fork of Rust's test crate")
28512 (description
28513 "This package provides a fork of Rust's test crate that doesn't require
28514 unstable language features.")
28515 (license (list license:expat license:asl2.0))))
28516
28517 (define-public rust-textwrap-0.11
28518 (package
28519 (name "rust-textwrap")
28520 (version "0.11.0")
28521 (source
28522 (origin
28523 (method url-fetch)
28524 (uri (crate-uri "textwrap" version))
28525 (file-name (string-append name "-" version ".tar.gz"))
28526 (sha256
28527 (base32
28528 "0q5hky03ik3y50s9sz25r438bc4nwhqc6dqwynv4wylc807n29nk"))))
28529 (build-system cargo-build-system)
28530 (arguments
28531 `(#:skip-build? #t
28532 #:cargo-inputs
28533 (;("rust-hyphenation" ,rust-hyphenation-0.7)
28534 ("rust-term-size" ,rust-term-size-0.3)
28535 ("rust-unicode-width" ,rust-unicode-width-0.1))
28536 #:cargo-development-inputs
28537 (;("rust-lipsum" ,rust-lipsum-0.6)
28538 ("rust-rand" ,rust-rand-0.6)
28539 ("rust-rand-xorshift" ,rust-rand-xorshift-0.1)
28540 ("rust-version-sync" ,rust-version-sync-0.6))))
28541 (home-page "https://github.com/mgeisler/textwrap")
28542 (synopsis "Library for word wrapping, indenting, and dedenting strings")
28543 (description
28544 "Textwrap is a small library for word wrapping, indenting, and dedenting
28545 strings. You can use it to format strings (such as help and error messages)
28546 for display in commandline applications. It is designed to be efficient and
28547 handle Unicode characters correctly.")
28548 (license license:expat)))
28549
28550 (define-public rust-thin-slice-0.1
28551 (package
28552 (name "rust-thin-slice")
28553 (version "0.1.1")
28554 (source
28555 (origin
28556 (method url-fetch)
28557 (uri (crate-uri "thin-slice" version))
28558 (file-name
28559 (string-append name "-" version ".tar.gz"))
28560 (sha256
28561 (base32
28562 "0g4z51g3yarah89ijpakbwhrrknw6d7k3ry0m1zqcn3hbhiq3alf"))))
28563 (build-system cargo-build-system)
28564 (home-page "https://github.com/heycam/thin-slice")
28565 (synopsis
28566 "Owned slice that packs the slice storage into a single word when possible")
28567 (description
28568 "An owned slice that packs the slice storage into a single word when possible.")
28569 (license license:mpl2.0)))
28570
28571 (define-public rust-thiserror-1
28572 (package
28573 (name "rust-thiserror")
28574 (version "1.0.9")
28575 (source
28576 (origin
28577 (method url-fetch)
28578 (uri (crate-uri "thiserror" version))
28579 (file-name
28580 (string-append name "-" version ".tar.gz"))
28581 (sha256
28582 (base32
28583 "0zlp3kzjssl1ndqmn7cipqnyggq4851ghhqj4bfc4fxk2hc7sdbg"))))
28584 (build-system cargo-build-system)
28585 (arguments
28586 `(#:skip-build? #t
28587 #:cargo-inputs
28588 (("rust-thiserror-impl" ,rust-thiserror-impl-1.0))
28589 #:cargo-development-inputs
28590 (("rust-anyhow" ,rust-anyhow-1.0)
28591 ("rust-ref-cast" ,rust-ref-cast-1.0)
28592 ("rust-rustversion" ,rust-rustversion-1)
28593 ("rust-trybuild" ,rust-trybuild-1))))
28594 (home-page "https://github.com/dtolnay/thiserror")
28595 (synopsis "derive(Error)")
28596 (description "This package provides @code{derive(Error)} in Rust.")
28597 (license (list license:expat license:asl2.0))))
28598
28599 (define-public rust-thiserror-impl-1.0
28600 (package
28601 (name "rust-thiserror-impl")
28602 (version "1.0.9")
28603 (source
28604 (origin
28605 (method url-fetch)
28606 (uri (crate-uri "thiserror-impl" version))
28607 (file-name
28608 (string-append name "-" version ".tar.gz"))
28609 (sha256
28610 (base32
28611 "1vxzhb98pm5yrq9mmcz50bgpml35iyx7lwjgi4v89sq7ag92abpb"))))
28612 (build-system cargo-build-system)
28613 (arguments
28614 `(#:skip-build? #t
28615 #:cargo-inputs
28616 (("rust-proc-macro2" ,rust-proc-macro2-1)
28617 ("rust-quote" ,rust-quote-1)
28618 ("rust-syn" ,rust-syn-1))))
28619 (home-page "https://github.com/dtolnay/thiserror")
28620 (synopsis "Implementation detail of the thiserror crate")
28621 (description "This package provides an implementation detail of the
28622 @code{thiserror} crate.")
28623 (license (list license:expat license:asl2.0))))
28624
28625 (define-public rust-thread-id-3
28626 (package
28627 (name "rust-thread-id")
28628 (version "3.3.0")
28629 (source
28630 (origin
28631 (method url-fetch)
28632 (uri (crate-uri "thread-id" version))
28633 (file-name (string-append name "-" version ".crate"))
28634 (sha256
28635 (base32
28636 "1h90v19fjz3x9b25ywh68z5yf2zsmm6h5zb4rl302ckbsp4z9yy7"))))
28637 (build-system cargo-build-system)
28638 (arguments
28639 `(#:cargo-inputs
28640 (("rust-libc" ,rust-libc-0.2)
28641 ("rust-redox-syscall" ,rust-redox-syscall-0.1)
28642 ("rust-winapi" ,rust-winapi-0.3))))
28643 (home-page "https://github.com/ruuda/thread-id")
28644 (synopsis "Get a unique ID for the current thread in Rust")
28645 (description
28646 "For diagnostics and debugging it can often be useful to get an ID that is
28647 different for every thread.")
28648 (license (list license:asl2.0
28649 license:expat))))
28650
28651 (define-public rust-thread-id-2.0
28652 (package
28653 (inherit rust-thread-id-3)
28654 (name "rust-thread-id")
28655 (version "2.0.0")
28656 (source
28657 (origin
28658 (method url-fetch)
28659 (uri (crate-uri "thread-id" version))
28660 (file-name
28661 (string-append name "-" version ".tar.gz"))
28662 (sha256
28663 (base32
28664 "00zzs2bx1xw8aqm5plqqgr7bc2zz6zkqrdxq8vpiqb8hc2srslx9"))))
28665 (arguments
28666 `(#:cargo-inputs
28667 (("rust-kernel32-sys" ,rust-kernel32-sys-0.2)
28668 ("rust-libc" ,rust-libc-0.2))))))
28669
28670 (define-public rust-thread-local-1.0
28671 (package
28672 (name "rust-thread-local")
28673 (version "1.0.1")
28674 (source
28675 (origin
28676 (method url-fetch)
28677 (uri (crate-uri "thread_local" version))
28678 (file-name (string-append name "-" version ".crate"))
28679 (sha256
28680 (base32
28681 "054vlrr1vsdy1h4b7n99mr24pnj8928ig9qwzg36wnkld4dns36l"))))
28682 (build-system cargo-build-system)
28683 (arguments
28684 `(#:skip-build? #t
28685 #:cargo-inputs (("rust-lazy-static" ,rust-lazy-static-1))))
28686 (home-page "https://github.com/Amanieu/thread_local-rs")
28687 (synopsis "Per-object thread-local storage")
28688 (description "Per-object thread-local storage.")
28689 (license (list license:asl2.0
28690 license:expat))))
28691
28692 (define-public rust-thread-local-0.3
28693 (package
28694 (inherit rust-thread-local-1.0)
28695 (name "rust-thread-local")
28696 (version "0.3.6")
28697 (source
28698 (origin
28699 (method url-fetch)
28700 (uri (crate-uri "thread_local" version))
28701 (file-name (string-append name "-" version ".crate"))
28702 (sha256
28703 (base32
28704 "06rzik99p8c5js8238yhc8rk6np543ylb1dy9nrw5v80j0r3xdf6"))))
28705 (arguments
28706 `(#:skip-build? #t
28707 #:cargo-inputs (("rust-lazy-static" ,rust-lazy-static-1))))))
28708
28709 (define-public rust-thread-local-0.2
28710 (package
28711 (inherit rust-thread-local-0.3)
28712 (name "rust-thread-local")
28713 (version "0.2.7")
28714 (source
28715 (origin
28716 (method url-fetch)
28717 (uri (crate-uri "thread_local" version))
28718 (file-name
28719 (string-append name "-" version ".tar.gz"))
28720 (sha256
28721 (base32
28722 "1mgxikqvhpsic6xk7pan95lvgsky1sdxzw2w5m2l35pgrazxnxl5"))))
28723 (arguments
28724 `(#:cargo-inputs
28725 (("rust-thread-id" ,rust-thread-id-2.0))))))
28726
28727 (define-public rust-threadpool-1.7
28728 (package
28729 (name "rust-threadpool")
28730 (version "1.7.1")
28731 (source
28732 (origin
28733 (method url-fetch)
28734 (uri (crate-uri "threadpool" version))
28735 (file-name (string-append name "-" version ".crate"))
28736 (sha256
28737 (base32
28738 "0rd89n1q7vy47w4c32cnynibffv9kj3jy3dwr0536n9lbw5ckw72"))))
28739 (build-system cargo-build-system)
28740 (arguments
28741 `(#:cargo-inputs
28742 (("rust-num-cpus" ,rust-num-cpus-1))))
28743 (home-page "https://github.com/rust-threadpool/rust-threadpool")
28744 (synopsis "Thread pool for running jobs on a fixed set of worker threads")
28745 (description
28746 "This package provides a thread pool for running a number of jobs on a
28747 fixed set of worker threads.")
28748 (license (list license:asl2.0
28749 license:expat))))
28750
28751 (define-public rust-thrussh-libsodium-0.1
28752 (package
28753 (name "rust-thrussh-libsodium")
28754 (version "0.1.4")
28755 (source
28756 (origin
28757 (method url-fetch)
28758 (uri (crate-uri "thrussh-libsodium" version))
28759 (file-name
28760 (string-append name "-" version ".tar.gz"))
28761 (sha256
28762 (base32
28763 "0fjssjiwnmbxjvajk37l7k0fcw1ys97j7n8bpn3q3bbnz2qfrphv"))))
28764 (build-system cargo-build-system)
28765 (arguments
28766 `(#:cargo-inputs
28767 (("rust-libc" ,rust-libc-0.2)
28768 ("rust-pkg-config" ,rust-pkg-config-0.3))))
28769 (native-inputs
28770 `(("pkg-config" ,pkg-config)))
28771 (inputs
28772 `(("libsodium" ,libsodium)))
28773 (home-page "https://nest.pijul.com/pijul_org/thrussh")
28774 (synopsis "Straightforward bindings to libsodium")
28775 (description
28776 "You can bind to libsodium from Rust with this crate.")
28777 (license (list license:asl2.0 license:expat))))
28778
28779 (define-public rust-time-0.2
28780 (package
28781 (name "rust-time")
28782 (version "0.2.19")
28783 (source
28784 (origin
28785 (method url-fetch)
28786 (uri (crate-uri "time" version))
28787 (file-name (string-append name "-" version ".tar.gz"))
28788 (sha256
28789 (base32
28790 "18bhl0nmfyd8drksskw830ybw9pr47pisfn4245wabqijgys3hc0"))))
28791 (build-system cargo-build-system)
28792 (arguments
28793 `(#:cargo-inputs
28794 (("rust-const-fn" ,rust-const-fn-0.4)
28795 ("rust-libc" ,rust-libc-0.2)
28796 ("rust-rand" ,rust-rand-0.7)
28797 ("rust-serde" ,rust-serde-1)
28798 ("rust-standback" ,rust-standback-0.2)
28799 ("rust-stdweb" ,rust-stdweb-0.4)
28800 ("rust-time-macros" ,rust-time-macros-0.1)
28801 ("rust-winapi" ,rust-winapi-0.3))
28802 #:cargo-development-inputs
28803 (("rust-version-check" ,rust-version-check-0.9))))
28804 (home-page "https://github.com/time-rs/time")
28805 (synopsis "Date and time library")
28806 (description "This package provides a date and time library. It is fully
28807 interoperable with the standard library, and is mostly compatible with
28808 @code{#![no_std]}.")
28809 (license (list license:expat license:asl2.0))))
28810
28811 (define-public rust-time-0.1
28812 (package
28813 (name "rust-time")
28814 (version "0.1.43")
28815 (source
28816 (origin
28817 (method url-fetch)
28818 (uri (crate-uri "time" version))
28819 (file-name (string-append name "-" version ".crate"))
28820 (sha256
28821 (base32
28822 "0f14wrgxj7ya2v4msg5mni7046bsm2angm7cn3pd3yv04gpm12na"))))
28823 (build-system cargo-build-system)
28824 (arguments
28825 `(#:skip-build? #t
28826 #:cargo-inputs
28827 (("rust-libc" ,rust-libc-0.2)
28828 ("rust-redox-syscall" ,rust-redox-syscall-0.1)
28829 ("rust-rustc-serialize" ,rust-rustc-serialize-0.3)
28830 ("rust-winapi" ,rust-winapi-0.3))
28831 #:cargo-development-inputs
28832 (("rust-log" ,rust-log-0.4)
28833 ("rust-winapi" ,rust-winapi-0.3))))
28834 (home-page "https://github.com/time-rs/time")
28835 (synopsis "Simple time handling in Rust")
28836 (description
28837 "This package provides utilities for working with time-related functions
28838 in Rust.")
28839 (license (list license:asl2.0
28840 license:expat))))
28841
28842 (define-public rust-time-macros-0.1
28843 (package
28844 (name "rust-time-macros")
28845 (version "0.1.0")
28846 (source
28847 (origin
28848 (method url-fetch)
28849 (uri (crate-uri "time-macros" version))
28850 (file-name (string-append name "-" version ".tar.gz"))
28851 (sha256
28852 (base32
28853 "0bdbxjgbxb81xgy08h5dh4qvwy95sy9x8g1y31g11g4my3lvdscs"))))
28854 (build-system cargo-build-system)
28855 (arguments
28856 `(#:cargo-inputs
28857 (("rust-proc-macro-hack" ,rust-proc-macro-hack-0.5)
28858 ("rust-time-macros-impl" ,rust-time-macros-impl-0.1))))
28859 (home-page "https://github.com/time-rs/time")
28860 (synopsis "Procedural macros for the time crate")
28861 (description "This package provides procedural macros for the time
28862 crate.")
28863 (license (list license:expat license:asl2.0))))
28864
28865 (define-public rust-time-macros-impl-0.1
28866 (package
28867 (name "rust-time-macros-impl")
28868 (version "0.1.1")
28869 (source
28870 (origin
28871 (method url-fetch)
28872 (uri (crate-uri "time-macros-impl" version))
28873 (file-name (string-append name "-" version ".tar.gz"))
28874 (sha256
28875 (base32
28876 "1ymqhvnvry3giiw45xvarlgagl8hnd6cz4alkz32fq5dvwgbxhz5"))))
28877 (build-system cargo-build-system)
28878 (arguments
28879 `(#:cargo-inputs
28880 (("rust-proc-macro-hack" ,rust-proc-macro-hack-0.5)
28881 ("rust-proc-macro2" ,rust-proc-macro2-1)
28882 ("rust-quote" ,rust-quote-1)
28883 ("rust-standback" ,rust-standback-0.2)
28884 ("rust-syn" ,rust-syn-1))))
28885 (home-page "https://github.com/time-rs/time")
28886 (synopsis "Procedural macros for the time crate")
28887 (description "This package provides procedural macros for the time
28888 crate.")
28889 (license (list license:expat license:asl2.0))))
28890
28891 (define-public rust-timebomb-0.1
28892 (package
28893 (name "rust-timebomb")
28894 (version "0.1.2")
28895 (source
28896 (origin
28897 (method url-fetch)
28898 (uri (crate-uri "timebomb" version))
28899 (file-name (string-append name "-" version ".tar.gz"))
28900 (sha256
28901 (base32
28902 "0fl8bxi9bf5bv44i1afii63695cx4jlki869v0kp01ipnvs8c23z"))))
28903 (build-system cargo-build-system)
28904 (arguments
28905 `(#:cargo-inputs
28906 (("rust-pulse" ,rust-pulse-0.5)
28907 ("rust-time" ,rust-time-0.2))))
28908 (home-page "https://github.com/csherratt/timebomb")
28909 (synopsis "Timeout mechanism for unit tests")
28910 (description "This package provides a timeout mechanism for unit tests.")
28911 (license license:asl2.0)))
28912
28913 (define-public rust-tinytemplate-1
28914 (package
28915 (name "rust-tinytemplate")
28916 (version "1.1.0")
28917 (source
28918 (origin
28919 (method url-fetch)
28920 (uri (crate-uri "tinytemplate" version))
28921 (file-name
28922 (string-append name "-" version ".tar.gz"))
28923 (sha256
28924 (base32
28925 "0by1k1hdz6jgv4ykd0izirwsm6p3qb6s9g1jb4ffqg500ihcfgbd"))))
28926 (build-system cargo-build-system)
28927 (arguments
28928 `(#:skip-build? #t
28929 #:cargo-inputs
28930 (("rust-serde" ,rust-serde-1)
28931 ("rust-serde-json" ,rust-serde-json-1))
28932 #:cargo-development-inputs
28933 (("rust-criterion" ,rust-criterion-0.3)
28934 ("rust-serde-derive" ,rust-serde-derive-1))))
28935 (home-page "https://github.com/bheisler/TinyTemplate")
28936 (synopsis "Simple, lightweight template engine")
28937 (description
28938 "Simple, lightweight template engine.")
28939 (license (list license:asl2.0 license:expat))))
28940
28941 (define-public rust-tinyvec-0.3
28942 (package
28943 (name "rust-tinyvec")
28944 (version "0.3.4")
28945 (source
28946 (origin
28947 (method url-fetch)
28948 (uri (crate-uri "tinyvec" version))
28949 (file-name
28950 (string-append name "-" version ".tar.gz"))
28951 (sha256
28952 (base32
28953 "05vijqpckjsnbv07rwadwcny4pkcq7z1wi9ikl7p3ib7s9qy1313"))))
28954 (build-system cargo-build-system)
28955 (arguments
28956 `(#:cargo-development-inputs
28957 (("rust-criterion" ,rust-criterion-0.3))))
28958 (home-page "https://crates.io/crates/tinyvec")
28959 (synopsis "Tiny vec-like types for Rust")
28960 (description
28961 "A 100% safe crate of vec-like types.")
28962 (license (list license:zlib license:asl2.0 license:expat))))
28963
28964 (define-public rust-tokio-0.2
28965 (package
28966 (name "rust-tokio")
28967 (version "0.2.21")
28968 (source
28969 (origin
28970 (method url-fetch)
28971 (uri (crate-uri "tokio" version))
28972 (file-name (string-append name "-" version ".tar.gz"))
28973 (sha256
28974 (base32 "0n1dxsjv9fxv3kmr3nh4n8v8pqckwgdlls942msysavhp4kzm6fh"))))
28975 (build-system cargo-build-system)
28976 (arguments
28977 `(#:skip-build? #t
28978 #:cargo-inputs
28979 (("rust-bytes" ,rust-bytes-0.5)
28980 ("rust-fnv" ,rust-fnv-1)
28981 ("rust-futures-core" ,rust-futures-core-0.3)
28982 ("rust-iovec" ,rust-iovec-0.1)
28983 ("rust-lazy-static" ,rust-lazy-static-1)
28984 ("rust-libc" ,rust-libc-0.2)
28985 ("rust-memchr" ,rust-memchr-2)
28986 ("rust-mio" ,rust-mio-0.6)
28987 ("rust-mio-named-pipes" ,rust-mio-named-pipes-0.1)
28988 ("rust-mio-uds" ,rust-mio-uds-0.6)
28989 ("rust-num-cpus" ,rust-num-cpus-1)
28990 ("rust-parking-lot" ,rust-parking-lot-0.10)
28991 ("rust-pin-project-lite" ,rust-pin-project-lite-0.1)
28992 ("rust-signal-hook-registry" ,rust-signal-hook-registry-1)
28993 ("rust-slab" ,rust-slab-0.4)
28994 ("rust-tokio-macros" ,rust-tokio-macros-0.2)
28995 ("rust-winapi" ,rust-winapi-0.3))
28996 #:cargo-development-inputs
28997 (("rust-futures" ,rust-futures-0.3)
28998 ("rust-loom" ,rust-loom-0.3)
28999 ("rust-proptest" ,rust-proptest-0.9)
29000 ("rust-tempfile" ,rust-tempfile-3)
29001 ("rust-tokio-test" ,rust-tokio-test-0.2))))
29002 (home-page "https://tokio.rs")
29003 (synopsis "Event-driven, non-blocking I/O platform")
29004 (description
29005 "An event-driven, non-blocking I/O platform for writing asynchronous I/O
29006 backed applications.")
29007 (license license:expat)))
29008
29009 (define-public rust-tokio-0.1
29010 (package
29011 (name "rust-tokio")
29012 (version "0.1.21")
29013 (source
29014 (origin
29015 (method url-fetch)
29016 (uri (crate-uri "tokio" version))
29017 (file-name
29018 (string-append name "-" version ".tar.gz"))
29019 (sha256
29020 (base32
29021 "11ra8jp3fj70a2zrqmd6as7wgpwiiyzjf50gz89i8r7wpksgqbzc"))))
29022 (build-system cargo-build-system)
29023 (arguments
29024 `(#:cargo-inputs
29025 (("rust-bytes" ,rust-bytes-0.4)
29026 ("rust-futures" ,rust-futures-0.1)
29027 ("rust-mio" ,rust-mio-0.6)
29028 ("rust-miow" ,rust-miow-0.3)
29029 ("rust-num-cpus" ,rust-num-cpus-1)
29030 ("rust-tokio-codec" ,rust-tokio-codec-0.1)
29031 ("rust-tokio-current-thread" ,rust-tokio-current-thread-0.1)
29032 ("rust-tokio-executor" ,rust-tokio-executor-0.1)
29033 ("rust-tokio-fs" ,rust-tokio-fs-0.1)
29034 ("rust-tokio-io" ,rust-tokio-io-0.1)
29035 ("rust-tokio-reactor" ,rust-tokio-reactor-0.1)
29036 ("rust-tokio-sync" ,rust-tokio-sync-0.1)
29037 ("rust-tokio-tcp" ,rust-tokio-tcp-0.1)
29038 ("rust-tokio-threadpool" ,rust-tokio-threadpool-0.1)
29039 ("rust-tokio-timer" ,rust-tokio-timer-0.2)
29040 ("rust-tokio-trace-core" ,rust-tokio-trace-core-0.2)
29041 ("rust-tokio-udp" ,rust-tokio-udp-0.1)
29042 ("rust-tokio-uds" ,rust-tokio-uds-0.2))
29043 #:cargo-development-inputs
29044 (("rust-env-logger" ,rust-env-logger-0.5)
29045 ("rust-flate2" ,rust-flate2-1)
29046 ("rust-futures-cpupool" ,rust-futures-cpupool-0.1)
29047 ("rust-http" ,rust-http-0.1)
29048 ("rust-httparse" ,rust-httparse-1)
29049 ("rust-libc" ,rust-libc-0.2)
29050 ("rust-num-cpus" ,rust-num-cpus-1)
29051 ("rust-serde" ,rust-serde-1)
29052 ("rust-serde-derive" ,rust-serde-derive-1)
29053 ("rust-serde-json" ,rust-serde-json-1)
29054 ("rust-time" ,rust-time-0.1))))
29055 (home-page "https://tokio.rs")
29056 (synopsis "Event-driven, non-blocking I/O platform")
29057 (description
29058 "An event-driven, non-blocking I/O platform for writing asynchronous I/O
29059 backed applications.")
29060 (license license:expat)))
29061
29062 (define-public rust-tokio-buf-0.1
29063 (package
29064 (name "rust-tokio-buf")
29065 (version "0.1.1")
29066 (source
29067 (origin
29068 (method url-fetch)
29069 (uri (crate-uri "tokio-buf" version))
29070 (file-name (string-append name "-" version ".tar.gz"))
29071 (sha256
29072 (base32 "0inwrkh8knqy44mr9h2i305zyy4pxhfy90y0gr5rm1akdks21clg"))))
29073 (build-system cargo-build-system)
29074 (arguments
29075 `(#:cargo-inputs
29076 (("rust-bytes" ,rust-bytes-0.4)
29077 ("rust-either" ,rust-either-1)
29078 ("rust-futures" ,rust-futures-0.1))
29079 #:cargo-development-inputs
29080 (("rust-tokio-mock-task" ,rust-tokio-mock-task-0.1))))
29081 (home-page "https://tokio.rs")
29082 (synopsis "Asynchronous stream of byte buffers")
29083 (description "Asynchronous stream of byte buffers")
29084 (license license:expat)))
29085
29086 ;; Cyclic dependency with tokio-io
29087 (define-public rust-tokio-codec-0.1
29088 (package
29089 (name "rust-tokio-codec")
29090 (version "0.1.1")
29091 (source
29092 (origin
29093 (method url-fetch)
29094 (uri (crate-uri "tokio-codec" version))
29095 (file-name
29096 (string-append name "-" version ".tar.gz"))
29097 (sha256
29098 (base32
29099 "17y3hi3dd0bdfkrzshx9qhwcf49xv9iynszj7iwy3w4nmz71wl2w"))))
29100 (build-system cargo-build-system)
29101 (arguments
29102 `(#:skip-build? #t
29103 #:cargo-inputs
29104 (("rust-bytes" ,rust-bytes-0.4)
29105 ("rust-futures" ,rust-futures-0.1)
29106 ("rust-tokio-io" ,rust-tokio-io-0.1))))
29107 (home-page "https://tokio.rs")
29108 (synopsis
29109 "Utilities for encoding and decoding frames")
29110 (description
29111 "Utilities for encoding and decoding frames.")
29112 (license license:expat)))
29113
29114 (define-public rust-tokio-core-0.1
29115 (package
29116 (name "rust-tokio-core")
29117 (version "0.1.17")
29118 (source
29119 (origin
29120 (method url-fetch)
29121 (uri (crate-uri "tokio-core" version))
29122 (file-name
29123 (string-append name "-" version ".tar.gz"))
29124 (sha256
29125 (base32
29126 "0wbgg59mxfvrhzv97y56nh3gmnmw3jj9dhgkmvz27410jjxzpvxf"))))
29127 (build-system cargo-build-system)
29128 (arguments
29129 `(#:cargo-inputs
29130 (("rust-bytes" ,rust-bytes-0.4)
29131 ("rust-futures" ,rust-futures-0.1)
29132 ("rust-iovec" ,rust-iovec-0.1)
29133 ("rust-log" ,rust-log-0.4)
29134 ("rust-mio" ,rust-mio-0.6)
29135 ("rust-scoped-tls" ,rust-scoped-tls-0.1)
29136 ("rust-tokio" ,rust-tokio-0.1)
29137 ("rust-tokio-executor" ,rust-tokio-executor-0.1)
29138 ("rust-tokio-io" ,rust-tokio-io-0.1)
29139 ("rust-tokio-reactor" ,rust-tokio-reactor-0.1)
29140 ("rust-tokio-timer" ,rust-tokio-timer-0.2))
29141 #:cargo-development-inputs
29142 (("rust-env-logger" ,rust-env-logger-0.4)
29143 ("rust-flate2" ,rust-flate2-1)
29144 ("rust-futures-cpupool" ,rust-futures-cpupool-0.1)
29145 ("rust-http" ,rust-http-0.1)
29146 ("rust-httparse" ,rust-httparse-1)
29147 ("rust-libc" ,rust-libc-0.2)
29148 ("rust-num-cpus" ,rust-num-cpus-1)
29149 ("rust-serde" ,rust-serde-1)
29150 ("rust-serde-derive" ,rust-serde-derive-1)
29151 ("rust-serde-json" ,rust-serde-json-1)
29152 ("rust-time" ,rust-time-0.1))))
29153 (home-page "https://tokio.rs")
29154 (synopsis
29155 "Core I/O and event loop primitives for asynchronous I/O in Rust")
29156 (description
29157 "Core I/O and event loop primitives for asynchronous I/O in Rust.
29158 Foundation for the rest of the tokio crates.")
29159 (license (list license:expat license:asl2.0))))
29160
29161 (define-public rust-tokio-current-thread-0.1
29162 (package
29163 (name "rust-tokio-current-thread")
29164 (version "0.1.6")
29165 (source
29166 (origin
29167 (method url-fetch)
29168 (uri (crate-uri "tokio-current-thread" version))
29169 (file-name
29170 (string-append name "-" version ".tar.gz"))
29171 (sha256
29172 (base32
29173 "0hx4c8v88kk0ih8x5s564gsgwwf8n11kryvxm72l1f7isz51fqni"))))
29174 (build-system cargo-build-system)
29175 (arguments
29176 `(#:skip-build? #t
29177 #:cargo-inputs
29178 (("rust-futures" ,rust-futures-0.1)
29179 ("rust-tokio-executor" ,rust-tokio-executor-0.1))))
29180 (home-page "https://github.com/tokio-rs/tokio")
29181 (synopsis
29182 "Manage many tasks concurrently on the current thread")
29183 (description
29184 "Single threaded executor which manage many tasks concurrently on
29185 the current thread.")
29186 (license license:expat)))
29187
29188 (define-public rust-tokio-executor-0.2
29189 (package
29190 (name "rust-tokio-executor")
29191 (version "0.2.0-alpha.6")
29192 (source
29193 (origin
29194 (method url-fetch)
29195 (uri (crate-uri "tokio-executor" version))
29196 (file-name (string-append name "-" version ".tar.gz"))
29197 (sha256
29198 (base32
29199 "1j67p4g9y20bvlbphjmpfzc0yy8clhmz6wza6hw94iciyvncxscy"))))
29200 (build-system cargo-build-system)
29201 (arguments
29202 `(#:cargo-inputs
29203 (("rust-crossbeam-channel" ,rust-crossbeam-channel-0.3)
29204 ("rust-crossbeam-deque" ,rust-crossbeam-deque-0.7)
29205 ("rust-crossbeam-queue" ,rust-crossbeam-queue-0.1)
29206 ("rust-crossbeam-utils" ,rust-crossbeam-utils-0.6)
29207 ("rust-futures-core-preview" ,rust-futures-core-preview-0.3)
29208 ("rust-futures-util-preview" ,rust-futures-util-preview-0.3)
29209 ("rust-lazy-static" ,rust-lazy-static-1)
29210 ("rust-num-cpus" ,rust-num-cpus-1)
29211 ("rust-slab" ,rust-slab-0.4)
29212 ("rust-tokio-sync" ,rust-tokio-sync-0.2)
29213 ("rust-tracing" ,rust-tracing-0.1))))
29214 (home-page "https://github.com/tokio-rs/tokio")
29215 (synopsis "Future execution primitives")
29216 (description "This package provides future execution primitives.")
29217 (license license:expat)))
29218
29219 ;; Cyclic dependency with rust-tokio.
29220 (define-public rust-tokio-executor-0.1
29221 (package
29222 (name "rust-tokio-executor")
29223 (version "0.1.7")
29224 (source
29225 (origin
29226 (method url-fetch)
29227 (uri (crate-uri "tokio-executor" version))
29228 (file-name
29229 (string-append name "-" version ".tar.gz"))
29230 (sha256
29231 (base32
29232 "0pjmgpg58k3hf5q9w6xjljsv8xy66lf734qnfwsc0g3pq3349sl3"))))
29233 (build-system cargo-build-system)
29234 (arguments
29235 `(#:skip-build? #t
29236 #:cargo-inputs
29237 (("rust-crossbeam-utils" ,rust-crossbeam-utils-0.6)
29238 ("rust-futures" ,rust-futures-0.1))
29239 #:cargo-development-inputs
29240 (("rust-tokio" ,rust-tokio-0.1))))
29241 (home-page "https://github.com/tokio-rs/tokio")
29242 (synopsis "Future execution primitives")
29243 (description "Future execution primitives.")
29244 (license license:expat)))
29245
29246 (define-public rust-tokio-fs-0.1
29247 (package
29248 (name "rust-tokio-fs")
29249 (version "0.1.6")
29250 (source
29251 (origin
29252 (method url-fetch)
29253 (uri (crate-uri "tokio-fs" version))
29254 (file-name
29255 (string-append name "-" version ".tar.gz"))
29256 (sha256
29257 (base32
29258 "1bxp8585pi4j5g39ci2gkk99qnyilyhhila7cs8r6scdn0idrriz"))))
29259 (build-system cargo-build-system)
29260 (arguments
29261 `(#:skip-build? #t
29262 #:cargo-inputs
29263 (("rust-futures" ,rust-futures-0.1)
29264 ("rust-tokio-io" ,rust-tokio-io-0.1)
29265 ("rust-tokio-threadpool" ,rust-tokio-threadpool-0.1))
29266 #:cargo-development-inputs
29267 (("rust-rand" ,rust-rand-0.4)
29268 ("rust-tempdir" ,rust-tempdir-0.3)
29269 ("rust-tempfile" ,rust-tempfile-3)
29270 ("rust-tokio" ,rust-tokio-0.1)
29271 ("rust-tokio-codec" ,rust-tokio-codec-0.1)
29272 ("rust-tokio-io" ,rust-tokio-io-0.1))))
29273 (home-page "https://tokio.rs")
29274 (synopsis "File system API for Tokio")
29275 (description "File system API for Tokio.")
29276 (license license:expat)))
29277
29278 ;; Cyclic dependencies with tokio and tokio-current-thread
29279 (define-public rust-tokio-io-0.1
29280 (package
29281 (name "rust-tokio-io")
29282 (version "0.1.13")
29283 (source
29284 (origin
29285 (method url-fetch)
29286 (uri (crate-uri "tokio-io" version))
29287 (file-name
29288 (string-append name "-" version ".tar.gz"))
29289 (sha256
29290 (base32
29291 "0x06zyzinans1pn90g6i150lgixijdf1cg8y2gipjd09ms58dz2p"))))
29292 (build-system cargo-build-system)
29293 (arguments
29294 `(#:skip-build? #t
29295 #:cargo-inputs
29296 (("rust-bytes" ,rust-bytes-0.4)
29297 ("rust-futures" ,rust-futures-0.1)
29298 ("rust-log" ,rust-log-0.4))
29299 #:cargo-development-inputs
29300 (("rust-tokio-current-thread" ,rust-tokio-current-thread-0.1))))
29301 (home-page "https://tokio.rs")
29302 (synopsis
29303 "Core I/O primitives for asynchronous I/O in Rust")
29304 (description
29305 "Core I/O primitives for asynchronous I/O in Rust.")
29306 (license license:expat)))
29307
29308 (define-public rust-tokio-io-pool-0.1
29309 (package
29310 (name "rust-tokio-io-pool")
29311 (version "0.1.6")
29312 (source
29313 (origin
29314 (method url-fetch)
29315 (uri (crate-uri "tokio-io-pool" version))
29316 (file-name
29317 (string-append name "-" version ".tar.gz"))
29318 (sha256
29319 (base32
29320 "17lrjj7lcw13wchpbvr8cynmypd29h40clf9qxabh6fxva40kwm5"))))
29321 (build-system cargo-build-system)
29322 (arguments
29323 `(#:cargo-inputs
29324 (("rust-futures" ,rust-futures-0.1)
29325 ("rust-num-cpus" ,rust-num-cpus-1)
29326 ("rust-tokio" ,rust-tokio-0.1)
29327 ("rust-tokio-executor" ,rust-tokio-executor-0.1))
29328 #:cargo-development-inputs
29329 (("rust-tokio-current-thread" ,rust-tokio-current-thread-0.1))))
29330 (home-page "https://github.com/jonhoo/tokio-io-pool")
29331 (synopsis "Execute short, I/O-heavy futures efficiently")
29332 (description
29333 "Alternative tokio thread pool for executing short, I/O-heavy
29334 futures efficiently")
29335 (license (list license:asl2.0 license:expat))))
29336
29337 (define-public rust-tokio-macros-0.2
29338 (package
29339 (name "rust-tokio-macros")
29340 (version "0.2.5")
29341 (source
29342 (origin
29343 (method url-fetch)
29344 (uri (crate-uri "tokio-macros" version))
29345 (file-name (string-append name "-" version ".tar.gz"))
29346 (sha256
29347 (base32 "1283aq0l7rnh79zzqk4r34dgimvwcymrzmg1yah9ai2nmb3arhzh"))))
29348 (build-system cargo-build-system)
29349 (arguments
29350 `(#:cargo-inputs
29351 (("rust-proc-macro2" ,rust-proc-macro2-1)
29352 ("rust-quote" ,rust-quote-1)
29353 ("rust-syn" ,rust-syn-1))
29354 #:cargo-development-inputs
29355 (("rust-tokio" ,rust-tokio-0.2))))
29356 (home-page "https://tokio.rs")
29357 (synopsis "Tokio's proc macros")
29358 (description "This package provides Tokio's proc macros.")
29359 (license license:expat)))
29360
29361 (define-public rust-tokio-mock-task-0.1
29362 (package
29363 (name "rust-tokio-mock-task")
29364 (version "0.1.1")
29365 (source
29366 (origin
29367 (method url-fetch)
29368 (uri (crate-uri "tokio-mock-task" version))
29369 (file-name (string-append name "-" version ".crate"))
29370 (sha256
29371 (base32
29372 "1y7q83qfk9ljjfvs82b453pmz9x1v3d6kr4x55j8mal01s6790dw"))))
29373 (build-system cargo-build-system)
29374 (arguments
29375 `(#:cargo-inputs
29376 (("rust-futures" ,rust-futures-0.1))))
29377 (home-page "https://github.com/carllerche/tokio-mock-task")
29378 (synopsis "Mock a Tokio task")
29379 (description "Mock a Tokio task.")
29380 (license license:expat)))
29381
29382 (define-public rust-tokio-mockstream-1
29383 (package
29384 (name "rust-tokio-mockstream")
29385 (version "1.1.0")
29386 (source
29387 (origin
29388 (method url-fetch)
29389 (uri (crate-uri "tokio-mockstream" version))
29390 (file-name (string-append name "-" version ".tar.gz"))
29391 (sha256
29392 (base32 "0mg1i39cl8x32wxwbn74hlirks8a6f3g0gfzkb0n0zwbxwvc9gs1"))))
29393 (build-system cargo-build-system)
29394 (arguments
29395 `(#:cargo-inputs
29396 (("rust-futures" ,rust-futures-0.1)
29397 ("rust-tokio-io" ,rust-tokio-io-0.1))
29398 #:cargo-development-inputs
29399 (("rust-bytes" ,rust-bytes-0.4))))
29400 (home-page "https://github.com/aatxe/tokio-mockstream")
29401 (synopsis "Fake stream for testing network applications backed by
29402 buffers")
29403 (description "This package provides a fake stream for testing network
29404 applications backed by buffers.")
29405 (license (list license:expat license:asl2.0))))
29406
29407 (define-public rust-tokio-named-pipes-0.1
29408 (package
29409 (name "rust-tokio-named-pipes")
29410 (version "0.1.0")
29411 (source
29412 (origin
29413 (method url-fetch)
29414 (uri (crate-uri "tokio-named-pipes" version))
29415 (file-name (string-append name "-" version ".tar.gz"))
29416 (sha256
29417 (base32 "1bjy59wdl2anl22w6qyzkff1afv7ynayfpms10iqna2j6142sa4x"))))
29418 (build-system cargo-build-system)
29419 (arguments
29420 `(#:cargo-inputs
29421 (("rust-bytes" ,rust-bytes-0.4)
29422 ("rust-futures" ,rust-futures-0.1)
29423 ("rust-mio" ,rust-mio-0.6)
29424 ("rust-mio-named-pipes" ,rust-mio-named-pipes-0.1)
29425 ("rust-tokio" ,rust-tokio-0.1))))
29426 (home-page "https://github.com/nikvolf/tokio-named-pipes")
29427 (synopsis "Windows named pipe bindings for tokio")
29428 (description "This package provides bindings for Windows named pipe for
29429 Tokio.")
29430 (license (list license:expat license:asl2.0))))
29431
29432 (define-public rust-tokio-net-0.2
29433 (package
29434 (name "rust-tokio-net")
29435 (version "0.2.0-alpha.4")
29436 (source
29437 (origin
29438 (method url-fetch)
29439 (uri (crate-uri "tokio-net" version))
29440 (file-name
29441 (string-append name "-" version ".tar.gz"))
29442 (sha256
29443 (base32
29444 "15vm0bndn6zcpkp1yb6v736rbhqgim5skc76rz299xd3y0pr249a"))))
29445 (build-system cargo-build-system)
29446 (arguments
29447 `(#:cargo-inputs
29448 (("rust-bytes" ,rust-bytes-0.4)
29449 ("rust-crossbeam-queue" ,rust-crossbeam-queue-0.1)
29450 ("rust-crossbeam-utils" ,rust-crossbeam-utils-0.6)
29451 ("rust-futures-core-preview" ,rust-futures-core-preview-0.3)
29452 ("rust-futures-sink-preview" ,rust-futures-sink-preview-0.3)
29453 ("rust-futures-util-preview" ,rust-futures-util-preview-0.3)
29454 ("rust-iovec" ,rust-iovec-0.1)
29455 ("rust-lazy-static" ,rust-lazy-static-1)
29456 ("rust-libc" ,rust-libc-0.2)
29457 ("rust-mio" ,rust-mio-0.6)
29458 ("rust-mio-named-pipes" ,rust-mio-named-pipes-0.1)
29459 ("rust-mio-uds" ,rust-mio-uds-0.6)
29460 ("rust-num-cpus" ,rust-num-cpus-1)
29461 ("rust-parking-lot" ,rust-parking-lot-0.8)
29462 ("rust-signal-hook-registry" ,rust-signal-hook-registry-1)
29463 ("rust-slab" ,rust-slab-0.4)
29464 ("rust-tokio-codec" ,rust-tokio-codec-0.1)
29465 ("rust-tokio-executor" ,rust-tokio-executor-0.1)
29466 ("rust-tokio-io" ,rust-tokio-io-0.1)
29467 ("rust-tokio-sync" ,rust-tokio-sync-0.1)
29468 ("rust-tracing" ,rust-tracing-0.1)
29469 ("rust-winapi" ,rust-winapi-0.3))))
29470 (home-page "https://tokio.rs")
29471 (synopsis "Event loop that drives Tokio I/O resources")
29472 (description
29473 "This package provides the event loop that drives Tokio I/O resources.")
29474 (license license:expat)))
29475
29476 (define-public rust-tokio-openssl-0.4
29477 (package
29478 (name "rust-tokio-openssl")
29479 (version "0.4.0")
29480 (source
29481 (origin
29482 (method url-fetch)
29483 (uri (crate-uri "tokio-openssl" version))
29484 (file-name (string-append name "-" version ".tar.gz"))
29485 (sha256
29486 (base32
29487 "15751d47984ncvllagz35ldl10ifr8555wixvsg6k3i0yk2hhjrw"))))
29488 (build-system cargo-build-system)
29489 (arguments
29490 `(#:cargo-inputs
29491 (("rust-openssl" ,rust-openssl-0.10)
29492 ("rust-tokio" ,rust-tokio-0.2))
29493 #:cargo-development-inputs
29494 (("rust-futures" ,rust-futures-0.3)
29495 ("rust-tokio" ,rust-tokio-0.2))))
29496 (home-page "https://github.com/alexcrichton/tokio-openssl")
29497 (synopsis "SSL streams for Tokio backed by OpenSSL")
29498 (description "This package is an implementation of SSL streams for Tokio
29499 backed by OpenSSL.")
29500 (license (list license:expat license:asl2.0))))
29501
29502 (define-public rust-tokio-process-0.2
29503 (package
29504 (name "rust-tokio-process")
29505 (version "0.2.4")
29506 (source
29507 (origin
29508 (method url-fetch)
29509 (uri (crate-uri "tokio-process" version))
29510 (file-name
29511 (string-append name "-" version ".tar.gz"))
29512 (sha256
29513 (base32
29514 "1s6vi5n5iax4ksx3bzpfdhfbngj49mvq5n40np1d4aycp3qnxgdg"))))
29515 (build-system cargo-build-system)
29516 (arguments
29517 `(#:skip-build? #t
29518 #:cargo-inputs
29519 (("rust-crossbeam-queue" ,rust-crossbeam-queue-0.1)
29520 ("rust-futures" ,rust-futures-0.1)
29521 ("rust-lazy-static" ,rust-lazy-static-1)
29522 ("rust-libc" ,rust-libc-0.2)
29523 ("rust-log" ,rust-log-0.4)
29524 ("rust-mio" ,rust-mio-0.6)
29525 ("rust-mio-named-pipes" ,rust-mio-named-pipes-0.1)
29526 ("rust-tokio-io" ,rust-tokio-io-0.1)
29527 ("rust-tokio-reactor" ,rust-tokio-reactor-0.1)
29528 ("rust-tokio-signal" ,rust-tokio-signal-0.2)
29529 ("rust-winapi" ,rust-winapi-0.3))
29530 #:cargo-development-inputs
29531 (("rust-failure" ,rust-failure-0.1)
29532 ("rust-log" ,rust-log-0.4)
29533 ("rust-tokio" ,rust-tokio-0.1))))
29534 (home-page "https://github.com/tokio-rs/tokio")
29535 (synopsis
29536 "Asynchronous process management backed futures")
29537 (description
29538 "An implementation of an asynchronous process management backed
29539 futures.")
29540 (license license:expat)))
29541
29542 (define-public rust-tokio-reactor-0.1
29543 (package
29544 (name "rust-tokio-reactor")
29545 (version "0.1.9")
29546 (source
29547 (origin
29548 (method url-fetch)
29549 (uri (crate-uri "tokio-reactor" version))
29550 (file-name
29551 (string-append name "-" version ".tar.gz"))
29552 (sha256
29553 (base32
29554 "1khip64cn63xvayq1db68kxcnhgw3cb449a4n2lbw4p1qzx6pwba"))))
29555 (build-system cargo-build-system)
29556 (arguments
29557 `(#:cargo-inputs
29558 (("rust-crossbeam-utils" ,rust-crossbeam-utils-0.6)
29559 ("rust-futures" ,rust-futures-0.1)
29560 ("rust-lazy-static" ,rust-lazy-static-1)
29561 ("rust-log" ,rust-log-0.4)
29562 ("rust-mio" ,rust-mio-0.6)
29563 ("rust-num-cpus" ,rust-num-cpus-1)
29564 ("rust-parking-lot" ,rust-parking-lot-0.7)
29565 ("rust-slab" ,rust-slab-0.4)
29566 ("rust-tokio-executor" ,rust-tokio-executor-0.1)
29567 ("rust-tokio-io" ,rust-tokio-io-0.1)
29568 ("rust-tokio-sync" ,rust-tokio-sync-0.1))
29569 #:cargo-development-inputs
29570 (("rust-num-cpus" ,rust-num-cpus-1)
29571 ("rust-tokio" ,rust-tokio-0.1)
29572 ("rust-tokio-io-pool" ,rust-tokio-io-pool-0.1))))
29573 (home-page "https://tokio.rs")
29574 (synopsis
29575 "Event loop that drives Tokio I/O resources")
29576 (description
29577 "Event loop that drives Tokio I/O resources.")
29578 (license license:expat)))
29579
29580 (define-public rust-tokio-rustls-0.14
29581 (package
29582 (name "rust-tokio-rustls")
29583 (version "0.14.1")
29584 (source
29585 (origin
29586 (method url-fetch)
29587 (uri (crate-uri "tokio-rustls" version))
29588 (file-name (string-append name "-" version ".tar.gz"))
29589 (sha256
29590 (base32
29591 "16l8kx3j7i3jxq36qs3hnmys6cd2zqcixc1n0kf3kymwanr32a71"))))
29592 (build-system cargo-build-system)
29593 (arguments
29594 `(;; These tests require network access.
29595 #:cargo-test-flags '("--release" "--" "--skip=tls12" "--skip=modern")
29596 #:cargo-inputs
29597 (("rust-bytes" ,rust-bytes-0.5)
29598 ("rust-futures-core" ,rust-futures-core-0.3)
29599 ("rust-rustls" ,rust-rustls-0.18)
29600 ("rust-tokio" ,rust-tokio-0.2)
29601 ("rust-webpki" ,rust-webpki-0.21))
29602 #:cargo-development-inputs
29603 (("rust-futures-util" ,rust-futures-util-0.3)
29604 ("rust-lazy-static" ,rust-lazy-static-1)
29605 ("rust-tokio" ,rust-tokio-0.2)
29606 ("rust-webpki-roots" ,rust-webpki-roots-0.20))))
29607 (home-page "https://github.com/tokio-rs/tls")
29608 (synopsis "Asynchronous TLS/SSL streams for Tokio")
29609 (description "This package provides asynchronous TLS/SSL streams for Tokio
29610 using Rustls.")
29611 (license (list license:expat license:asl2.0))))
29612
29613 (define-public rust-tokio-rustls-0.13
29614 (package
29615 (inherit rust-tokio-rustls-0.14)
29616 (name "rust-tokio-rustls")
29617 (version "0.13.1")
29618 (source
29619 (origin
29620 (method url-fetch)
29621 (uri (crate-uri "tokio-rustls" version))
29622 (file-name (string-append name "-" version ".tar.gz"))
29623 (sha256
29624 (base32
29625 "1d2iy01v5psvm0ygcflzjna7zwgwk36w36bfr6mqf1vpsah65jqm"))))
29626 (arguments
29627 `(;; These tests require network access.
29628 #:cargo-test-flags '("--release" "--" "--skip=tls12" "--skip=modern")
29629 #:cargo-inputs
29630 (("rust-bytes" ,rust-bytes-0.5)
29631 ("rust-futures-core" ,rust-futures-core-0.3)
29632 ("rust-rustls" ,rust-rustls-0.17)
29633 ("rust-tokio" ,rust-tokio-0.2)
29634 ("rust-webpki" ,rust-webpki-0.21))
29635 #:cargo-development-inputs
29636 (("rust-futures-util" ,rust-futures-util-0.3)
29637 ("rust-lazy-static" ,rust-lazy-static-1)
29638 ("rust-tokio" ,rust-tokio-0.2)
29639 ("rust-webpki-roots" ,rust-webpki-roots-0.19))))
29640 (license (list license:expat license:asl2.0))))
29641
29642 (define-public rust-tokio-rustls-0.12
29643 (package
29644 (inherit rust-tokio-rustls-0.13)
29645 (name "rust-tokio-rustls")
29646 (version "0.12.2")
29647 (source
29648 (origin
29649 (method url-fetch)
29650 (uri (crate-uri "tokio-rustls" version))
29651 (file-name (string-append name "-" version ".tar.gz"))
29652 (sha256
29653 (base32 "1k6rpw4nmgsamh8vbf8xqrf4rr5sqs18i93561bydflajz0gw6hl"))))
29654 (arguments
29655 `(;; These tests require network access.
29656 #:cargo-test-flags '("--release" "--" "--skip=tls12" "--skip=modern")
29657 #:cargo-inputs
29658 (("rust-bytes" ,rust-bytes-0.5)
29659 ("rust-futures-core" ,rust-futures-core-0.3)
29660 ("rust-rustls" ,rust-rustls-0.16)
29661 ("rust-tokio" ,rust-tokio-0.2)
29662 ("rust-webpki" ,rust-webpki-0.21))
29663 #:cargo-development-inputs
29664 (("rust-futures-util" ,rust-futures-util-0.3)
29665 ("rust-lazy-static" ,rust-lazy-static-1)
29666 ("rust-tokio" ,rust-tokio-0.2)
29667 ("rust-webpki-roots" ,rust-webpki-roots-0.18))))
29668 (license (list license:expat license:asl2.0))))
29669
29670 (define-public rust-tokio-rustls-0.9
29671 (package
29672 (inherit rust-tokio-rustls-0.12)
29673 (name "rust-tokio-rustls")
29674 (version "0.9.4")
29675 (source
29676 (origin
29677 (method url-fetch)
29678 (uri (crate-uri "tokio-rustls" version))
29679 (file-name
29680 (string-append name "-" version ".tar.gz"))
29681 (sha256
29682 (base32
29683 "1jd63sl177sxacnksaxhazzmamwds98xk3niprh2qib75a1rk8cm"))))
29684 (build-system cargo-build-system)
29685 (arguments
29686 `(#:cargo-inputs
29687 (("rust-bytes" ,rust-bytes-0.4)
29688 ("rust-futures" ,rust-futures-0.1)
29689 ("rust-iovec" ,rust-iovec-0.1)
29690 ("rust-rustls" ,rust-rustls-0.15)
29691 ("rust-tokio-io" ,rust-tokio-io-0.1)
29692 ("rust-webpki" ,rust-webpki-0.19))
29693 #:cargo-development-inputs
29694 (("rust-lazy-static" ,rust-lazy-static-1)
29695 ("rust-tokio" ,rust-tokio-0.1))))))
29696
29697 (define-public rust-tokio-signal-0.2
29698 (package
29699 (name "rust-tokio-signal")
29700 (version "0.2.7")
29701 (source
29702 (origin
29703 (method url-fetch)
29704 (uri (crate-uri "tokio-signal" version))
29705 (file-name
29706 (string-append name "-" version ".tar.gz"))
29707 (sha256
29708 (base32
29709 "15l27cvhfcjsahwnm2pgsm0690w0xj1h1sbdl5wy6p50dqkwavfx"))))
29710 (build-system cargo-build-system)
29711 (arguments
29712 `(#:skip-build? #t
29713 #:cargo-inputs
29714 (("rust-futures" ,rust-futures-0.1)
29715 ("rust-libc" ,rust-libc-0.2)
29716 ("rust-mio" ,rust-mio-0.6)
29717 ("rust-mio-uds" ,rust-mio-uds-0.6)
29718 ("rust-signal-hook" ,rust-signal-hook-0.1)
29719 ("rust-tokio-executor" ,rust-tokio-executor-0.1)
29720 ("rust-tokio-io" ,rust-tokio-io-0.1)
29721 ("rust-tokio-reactor" ,rust-tokio-reactor-0.1)
29722 ("rust-winapi" ,rust-winapi-0.3))
29723 #:cargo-development-inputs
29724 (("rust-tokio" ,rust-tokio-0.1))))
29725 (home-page "https://github.com/tokio-rs/tokio")
29726 (synopsis
29727 "Asynchronous Unix signal handling backed futures")
29728 (description
29729 "An implementation of an asynchronous Unix signal handling backed
29730 futures.")
29731 (license license:expat)))
29732
29733 (define-public rust-tokio-socks-0.2
29734 (package
29735 (name "rust-tokio-socks")
29736 (version "0.2.2")
29737 (source
29738 (origin
29739 (method url-fetch)
29740 (uri (crate-uri "tokio-socks" version))
29741 (file-name (string-append name "-" version ".tar.gz"))
29742 (sha256
29743 (base32
29744 "1bwdjafbbs0907w42dl899inykflz4gbm026wh097q151s57i5qr"))))
29745 (build-system cargo-build-system)
29746 (arguments
29747 `(#:cargo-inputs
29748 (("rust-bytes" ,rust-bytes-0.4)
29749 ("rust-either" ,rust-either-1)
29750 ("rust-futures" ,rust-futures-0.3)
29751 ("rust-thiserror" ,rust-thiserror-1)
29752 ("rust-tokio" ,rust-tokio-0.2))
29753 #:cargo-development-inputs
29754 (("rust-hyper" ,rust-hyper-0.13)
29755 ("rust-once-cell" ,rust-once-cell-1)
29756 ("rust-tokio" ,rust-tokio-0.2))))
29757 (home-page "https://github.com/sticnarf/tokio-socks")
29758 (synopsis "Asynchronous SOCKS proxy support for Rust")
29759 (description "This package provides asynchronous SOCKS proxy support for
29760 Rust.")
29761 (license license:expat)))
29762
29763 (define-public rust-tokio-sync-0.2
29764 (package
29765 (name "rust-tokio-sync")
29766 (version "0.2.0-alpha.6")
29767 (source
29768 (origin
29769 (method url-fetch)
29770 (uri (crate-uri "tokio-sync" version))
29771 (file-name (string-append name "-" version ".tar.gz"))
29772 (sha256
29773 (base32
29774 "1lirf9s9pibgv8cypqzlddy8q9bxfp4z29qfx83p83slhnvaw6jg"))))
29775 (build-system cargo-build-system)
29776 (arguments
29777 `(#:cargo-inputs
29778 (("rust-fnv" ,rust-fnv-1)
29779 ("rust-futures-core-preview" ,rust-futures-core-preview-0.3)
29780 ("rust-futures-sink-preview" ,rust-futures-sink-preview-0.3)
29781 ("rust-futures-util-preview" ,rust-futures-util-preview-0.3))))
29782 (home-page "https://tokio.rs")
29783 (synopsis "Synchronization utilities")
29784 (description "This package provides synchronization utilities.")
29785 (license license:expat)))
29786
29787 (define-public rust-tokio-sync-0.1
29788 (package
29789 (inherit rust-tokio-sync-0.2)
29790 (name "rust-tokio-sync")
29791 (version "0.1.6")
29792 (source
29793 (origin
29794 (method url-fetch)
29795 (uri (crate-uri "tokio-sync" version))
29796 (file-name
29797 (string-append name "-" version ".tar.gz"))
29798 (sha256
29799 (base32
29800 "1ryalh7dcmnz46xj1va8aaw3if6vd4mj87r67dqvrqhpyf7j8qi1"))))
29801 (arguments
29802 `(#:skip-build? #t
29803 #:cargo-inputs
29804 (("rust-fnv" ,rust-fnv-1)
29805 ("rust-futures" ,rust-futures-0.1))
29806 #:cargo-development-inputs
29807 (("rust-env-logger" ,rust-env-logger-0.6)
29808 ("rust-loom" ,rust-loom-0.1)
29809 ("rust-tokio" ,rust-tokio-0.1)
29810 ("rust-tokio-mock-task" ,rust-tokio-mock-task-0.1))))))
29811
29812 (define-public rust-tokio-test-0.2
29813 (package
29814 (name "rust-tokio-test")
29815 (version "0.2.1")
29816 (source
29817 (origin
29818 (method url-fetch)
29819 (uri (crate-uri "tokio-test" version))
29820 (file-name (string-append name "-" version ".tar.gz"))
29821 (sha256
29822 (base32 "0v81p2n853b1kzyla3dbfmnazirn6s3n8p3z8k20bmdn370lj07d"))))
29823 (build-system cargo-build-system)
29824 (arguments
29825 `(#:cargo-inputs
29826 (("rust-bytes" ,rust-bytes-0.5)
29827 ("rust-futures-core" ,rust-futures-core-0.3)
29828 ("rust-tokio" ,rust-tokio-0.2))
29829 #:cargo-development-inputs
29830 (("rust-futures-util" ,rust-futures-util-0.3)
29831 ("rust-tokio" ,rust-tokio-0.2))))
29832 (home-page "https://tokio.rs")
29833 (synopsis "Testing utilities for Tokio- and futures-based code")
29834 (description "Testing utilities for Tokio- and futures-based code")
29835 (license license:expat)))
29836
29837 (define-public rust-tokio-tcp-0.1
29838 (package
29839 (name "rust-tokio-tcp")
29840 (version "0.1.3")
29841 (source
29842 (origin
29843 (method url-fetch)
29844 (uri (crate-uri "tokio-tcp" version))
29845 (file-name
29846 (string-append name "-" version ".tar.gz"))
29847 (sha256
29848 (base32
29849 "06a15vg8bcd33ng3h9ldzlq7wl4jsw0p9qpy7v22ls5yah3b250x"))))
29850 (build-system cargo-build-system)
29851 (arguments
29852 `(#:skip-build? #t
29853 #:cargo-inputs
29854 (("rust-bytes" ,rust-bytes-0.4)
29855 ("rust-futures" ,rust-futures-0.1)
29856 ("rust-iovec" ,rust-iovec-0.1)
29857 ("rust-mio" ,rust-mio-0.6)
29858 ("rust-tokio-io" ,rust-tokio-io-0.1)
29859 ("rust-tokio-reactor" ,rust-tokio-reactor-0.1))
29860 #:cargo-development-inputs
29861 (("rust-env-logger" ,rust-env-logger-0.6)
29862 ("rust-tokio" ,rust-tokio-0.1))))
29863 (home-page "https://tokio.rs")
29864 (synopsis "TCP bindings for tokio")
29865 (description "TCP bindings for tokio.")
29866 (license license:expat)))
29867
29868 (define-public rust-tokio-threadpool-0.1
29869 (package
29870 (name "rust-tokio-threadpool")
29871 (version "0.1.14")
29872 (source
29873 (origin
29874 (method url-fetch)
29875 (uri (crate-uri "tokio-threadpool" version))
29876 (file-name
29877 (string-append name "-" version ".tar.gz"))
29878 (sha256
29879 (base32
29880 "1wkj3wixicsqvllm8w74b24knw6mdn00zslm8l9fm1p81gr8lmbj"))))
29881 (build-system cargo-build-system)
29882 (arguments
29883 `(#:cargo-inputs
29884 (("rust-crossbeam-deque" ,rust-crossbeam-deque-0.7)
29885 ("rust-crossbeam-queue" ,rust-crossbeam-queue-0.1)
29886 ("rust-crossbeam-utils" ,rust-crossbeam-utils-0.6)
29887 ("rust-lazy-static" ,rust-lazy-static-1)
29888 ("rust-futures" ,rust-futures-0.1)
29889 ("rust-log" ,rust-log-0.4)
29890 ("rust-num-cpus" ,rust-num-cpus-1)
29891 ("rust-rand" ,rust-rand-0.6)
29892 ("rust-slab" ,rust-slab-0.4)
29893 ("rust-tokio-executor" ,rust-tokio-executor-0.1))
29894 #:cargo-development-inputs
29895 (("rust-env-logger" ,rust-env-logger-0.5)
29896 ("rust-futures-cpupool" ,rust-futures-cpupool-0.1)
29897 ("rust-threadpool" ,rust-threadpool-1.7))))
29898 (home-page "https://github.com/tokio-rs/tokio")
29899 (synopsis
29900 "Task scheduler backed by a work-stealing thread pool")
29901 (description
29902 "This package provides a task scheduler backed by a work-stealing thread
29903 pool.")
29904 (license license:expat)))
29905
29906 (define-public rust-tokio-timer-0.2
29907 (package
29908 (name "rust-tokio-timer")
29909 (version "0.2.11")
29910 (source
29911 (origin
29912 (method url-fetch)
29913 (uri (crate-uri "tokio-timer" version))
29914 (file-name
29915 (string-append name "-" version ".tar.gz"))
29916 (sha256
29917 (base32
29918 "03m68ainkdy3b5pf20rjyknhk2ppx35bjdc2yfj2bv80sl96h47j"))))
29919 (build-system cargo-build-system)
29920 (arguments
29921 `(#:skip-build? #t
29922 #:cargo-inputs
29923 (("rust-crossbeam-utils" ,rust-crossbeam-utils-0.6)
29924 ("rust-futures" ,rust-futures-0.1)
29925 ("rust-slab" ,rust-slab-0.4)
29926 ("rust-tokio-executor" ,rust-tokio-executor-0.1))
29927 #:cargo-development-inputs
29928 (("rust-rand" ,rust-rand-0.4)
29929 ("rust-tokio" ,rust-tokio-0.1)
29930 ("rust-tokio-mock-task" ,rust-tokio-mock-task-0.1))))
29931 (home-page "https://github.com/tokio-rs/tokio")
29932 (synopsis "Timer facilities for Tokio")
29933 (description "Timer facilities for Tokio.")
29934 (license license:expat)))
29935
29936 (define-public rust-tokio-tls-0.3
29937 (package
29938 (name "rust-tokio-tls")
29939 (version "0.3.1")
29940 (source
29941 (origin
29942 (method url-fetch)
29943 (uri (crate-uri "tokio-tls" version))
29944 (file-name (string-append name "-" version ".tar.gz"))
29945 (sha256
29946 (base32
29947 "0hv375949532p32d0w6bm2f6d3r0d00mcdzqjjqlzcmkszyg8w4s"))))
29948 (build-system cargo-build-system)
29949 (arguments
29950 `(#:cargo-inputs
29951 (("rust-native-tls" ,rust-native-tls-0.2)
29952 ("rust-tokio" ,rust-tokio-0.2))
29953 #:cargo-development-inputs
29954 (("rust-cfg-if" ,rust-cfg-if-0.1)
29955 ("rust-env-logger" ,rust-env-logger-0.6)
29956 ("rust-futures" ,rust-futures-0.3)
29957 ("rust-openssl" ,rust-openssl-0.10)
29958 ("rust-schannel" ,rust-schannel-0.1)
29959 ("rust-security-framework" ,rust-security-framework-0.2)
29960 ("rust-tokio" ,rust-tokio-0.2)
29961 ("rust-tokio-util" ,rust-tokio-util-0.3)
29962 ("rust-winapi" ,rust-winapi-0.3))))
29963 (home-page "https://tokio.rs")
29964 (synopsis "TLS/SSL streams for Tokio")
29965 (description "An implementation of TLS/SSL streams for Tokio giving an
29966 implementation of TLS for nonblocking I/O streams.")
29967 (license license:expat)))
29968
29969 (define-public rust-tokio-trace-core-0.2
29970 (package
29971 (name "rust-tokio-trace-core")
29972 (version "0.2.0")
29973 (source
29974 (origin
29975 (method url-fetch)
29976 (uri (crate-uri "tokio-trace-core" version))
29977 (file-name
29978 (string-append name "-" version ".tar.gz"))
29979 (sha256
29980 (base32
29981 "04y6c2r4ddzk02xb3hn60s9a1w92h0g8pzmxwaspqvwmsrba5j59"))))
29982 (build-system cargo-build-system)
29983 (arguments
29984 `(#:skip-build? #t
29985 #:cargo-inputs
29986 (("rust-lazy-static" ,rust-lazy-static-1))))
29987 (home-page "https://tokio.rs")
29988 (synopsis "Core primitives for tokio-trace")
29989 (description "Core primitives for tokio-trace.")
29990 (license license:expat)))
29991
29992 (define-public rust-tokio-udp-0.1
29993 (package
29994 (name "rust-tokio-udp")
29995 (version "0.1.3")
29996 (source
29997 (origin
29998 (method url-fetch)
29999 (uri (crate-uri "tokio-udp" version))
30000 (file-name
30001 (string-append name "-" version ".tar.gz"))
30002 (sha256
30003 (base32
30004 "14kfj35s465czcspayacnzlxrazfvxzhhggq1rqlljhgp1sqa9k6"))))
30005 (build-system cargo-build-system)
30006 (arguments
30007 `(#:skip-build? #t
30008 #:cargo-inputs
30009 (("rust-bytes" ,rust-bytes-0.4)
30010 ("rust-futures" ,rust-futures-0.1)
30011 ("rust-log" ,rust-log-0.4)
30012 ("rust-mio" ,rust-mio-0.6)
30013 ("rust-tokio-codec" ,rust-tokio-codec-0.1)
30014 ("rust-tokio-io" ,rust-tokio-io-0.1)
30015 ("rust-tokio-reactor" ,rust-tokio-reactor-0.1))
30016 #:cargo-development-inputs
30017 (("rust-env-logger" ,rust-env-logger-0.6))))
30018 (home-page "https://tokio.rs")
30019 (synopsis "UDP bindings for tokio")
30020 (description "UDP bindings for tokio.")
30021 (license license:expat)))
30022
30023 (define-public rust-tokio-uds-0.2
30024 (package
30025 (name "rust-tokio-uds")
30026 (version "0.2.5")
30027 (source
30028 (origin
30029 (method url-fetch)
30030 (uri (crate-uri "tokio-uds" version))
30031 (file-name
30032 (string-append name "-" version ".tar.gz"))
30033 (sha256
30034 (base32
30035 "0i94kxma6l7iy5hd5k7nvn7v9pnyw0s54bm9mjs0lap1l0xzqzq3"))))
30036 (build-system cargo-build-system)
30037 (arguments
30038 `(#:skip-build? #t
30039 #:cargo-inputs
30040 (("rust-bytes" ,rust-bytes-0.4)
30041 ("rust-futures" ,rust-futures-0.1)
30042 ("rust-iovec" ,rust-iovec-0.1)
30043 ("rust-libc" ,rust-libc-0.2)
30044 ("rust-log" ,rust-log-0.4)
30045 ("rust-mio" ,rust-mio-0.6)
30046 ("rust-mio-uds" ,rust-mio-uds-0.6)
30047 ("rust-tokio-codec" ,rust-tokio-codec-0.1)
30048 ("rust-tokio-io" ,rust-tokio-io-0.1)
30049 ("rust-tokio-reactor" ,rust-tokio-reactor-0.1))
30050 #:cargo-development-inputs
30051 (("rust-tempfile" ,rust-tempfile-3)
30052 ("rust-tokio" ,rust-tokio-0.1))))
30053 (home-page "https://github.com/tokio-rs/tokio")
30054 (synopsis "Unix Domain sockets for Tokio")
30055 (description "Unix Domain sockets for Tokio.")
30056 (license license:expat)))
30057
30058 (define-public rust-tokio-util-0.3
30059 (package
30060 (name "rust-tokio-util")
30061 (version "0.3.1")
30062 (source
30063 (origin
30064 (method url-fetch)
30065 (uri (crate-uri "tokio-util" version))
30066 (file-name (string-append name "-" version ".tar.gz"))
30067 (sha256
30068 (base32
30069 "16b48dl6sbc9x944jgjvsd65ab1w2c2qcziddbrbwv1b3y4l50my"))))
30070 (build-system cargo-build-system)
30071 (arguments
30072 `(#:tests? #f
30073 #:cargo-inputs
30074 (("rust-bytes" ,rust-bytes-0.5)
30075 ("rust-futures-core" ,rust-futures-core-0.3)
30076 ("rust-futures-io" ,rust-futures-io-0.3)
30077 ("rust-futures-sink" ,rust-futures-sink-0.3)
30078 ("rust-log" ,rust-log-0.4)
30079 ("rust-pin-project-lite" ,rust-pin-project-lite-0.1)
30080 ("rust-tokio" ,rust-tokio-0.2))
30081 #:cargo-development-inputs
30082 (("rust-futures" ,rust-futures-0.3)
30083 ("rust-tokio" ,rust-tokio-0.2)
30084 ("rust-tokio-test" ,rust-tokio-test-0.2))))
30085 (home-page "https://tokio.rs")
30086 (synopsis "Additional utilities for working with Tokio")
30087 (description "This package provides additional utilities for working with
30088 Tokio.")
30089 (license license:expat)))
30090
30091 (define-public rust-toml-0.5
30092 (package
30093 (name "rust-toml")
30094 (version "0.5.7")
30095 (source
30096 (origin
30097 (method url-fetch)
30098 (uri (crate-uri "toml" version))
30099 (file-name (string-append name "-" version ".crate"))
30100 (sha256
30101 (base32
30102 "0iannv6pb226h0q9vlqg7hdn36fs146yrahw016n107g1fxlbkvm"))))
30103 (build-system cargo-build-system)
30104 (arguments
30105 `(#:cargo-inputs
30106 (("rust-indexmap" ,rust-indexmap-1)
30107 ("rust-serde" ,rust-serde-1))
30108 #:cargo-development-inputs
30109 (("rust-serde-derive" ,rust-serde-derive-1)
30110 ("rust-serde-json" ,rust-serde-json-1))))
30111 (home-page "https://github.com/alexcrichton/toml-rs")
30112 (synopsis "Rust encoder and decoder of TOML-formatted files and streams")
30113 (description
30114 "This package provides a native Rust encoder and decoder of TOML-formatted
30115 files and streams. Provides implementations of the standard
30116 Serialize/Deserialize traits for TOML data to facilitate deserializing and
30117 serializing Rust structures.")
30118 (license (list license:asl2.0
30119 license:expat))))
30120
30121 (define-public rust-toml-0.4
30122 (package
30123 (inherit rust-toml-0.5)
30124 (name "rust-toml")
30125 (version "0.4.10")
30126 (source
30127 (origin
30128 (method url-fetch)
30129 (uri (crate-uri "toml" version))
30130 (file-name
30131 (string-append name "-" version ".tar.gz"))
30132 (sha256
30133 (base32
30134 "07qilkzinn8z13vq2sss65n2lza7wrmqpvkbclw919m3f7y691km"))))
30135 (arguments
30136 `(#:cargo-inputs
30137 (("rust-serde" ,rust-serde-1))
30138 #:cargo-development-inputs
30139 (("rust-serde-derive" ,rust-serde-derive-1)
30140 ("rust-serde-json" ,rust-serde-json-1))))))
30141
30142 (define-public rust-toml-0.2
30143 (package
30144 (name "rust-toml")
30145 (version "0.2.1")
30146 (source
30147 (origin
30148 (method url-fetch)
30149 (uri (crate-uri "toml" version))
30150 (file-name
30151 (string-append name "-" version ".tar.gz"))
30152 (sha256
30153 (base32
30154 "1d1cz43bxrx4fd6j2p6myckf81f72bp47akg36y3flxjkhj60svk"))))
30155 (build-system cargo-build-system)
30156 (arguments
30157 `(#:skip-build? #t
30158 #:cargo-inputs
30159 (("rust-rustc-serialize" ,rust-rustc-serialize-0.3)
30160 ("rust-serde" ,rust-serde-0.8))))
30161 (home-page "https://github.com/alexcrichton/toml-rs")
30162 (synopsis "Rust encoder and decoder of TOML-formatted files and streams")
30163 (description
30164 "This package provides a native Rust encoder and decoder of TOML-formatted
30165 files and streams. Provides implementations of the standard
30166 Serialize/Deserialize traits for TOML data to facilitate deserializing and
30167 serializing Rust structures.")
30168 (license (list license:asl2.0
30169 license:expat))))
30170
30171 (define-public rust-tower-layer-0.3
30172 (package
30173 (name "rust-tower-layer")
30174 (version "0.3.0")
30175 (source
30176 (origin
30177 (method url-fetch)
30178 (uri (crate-uri "tower-layer" version))
30179 (file-name (string-append name "-" version ".tar.gz"))
30180 (sha256
30181 (base32
30182 "1p6i9rn5d98wsx6hi4hbxh2xqh2clwz0blcm6jrqiciq4rpnapd3"))))
30183 (build-system cargo-build-system)
30184 (arguments
30185 `(#:cargo-development-inputs
30186 (("rust-tower-service" ,rust-tower-service-0.3))))
30187 (home-page "https://github.com/tower-rs/tower")
30188 (synopsis "Easy composition between @code{Service}s")
30189 (description "This package decorates a @code{Service} to allow easy
30190 composition between @code{Service}s.")
30191 (license license:expat)))
30192
30193 (define-public rust-tower-service-0.3
30194 (package
30195 (name "rust-tower-service")
30196 (version "0.3.0")
30197 (source
30198 (origin
30199 (method url-fetch)
30200 (uri (crate-uri "tower-service" version))
30201 (file-name (string-append name "-" version ".tar.gz"))
30202 (sha256
30203 (base32
30204 "0q4q53w82w1wd71x7vbspg2l3jicb6al2w1qdwxmnjrz8jzvd1z9"))))
30205 (build-system cargo-build-system)
30206 (arguments
30207 `(#:cargo-development-inputs
30208 (("rust-http" ,rust-http-0.1))))
30209 (home-page "https://github.com/tower-rs/tower")
30210 (synopsis "Asynchronous, request / response based, client or server.")
30211 (description "This package provides a trait representing an asynchronous,
30212 request/response based, client or server.")
30213 (license license:expat)))
30214
30215 (define-public rust-tower-test-0.3
30216 (package
30217 (name "rust-tower-test")
30218 (version "0.3.0")
30219 (source
30220 (origin
30221 (method url-fetch)
30222 (uri (crate-uri "tower-test" version))
30223 (file-name (string-append name "-" version ".tar.gz"))
30224 (sha256
30225 (base32
30226 "1j2k07g3z8ascq7r30bmw3b75v8lhd63mhfl60y59a74q71bp94v"))))
30227 (build-system cargo-build-system)
30228 (arguments
30229 `(#:cargo-inputs
30230 (("rust-futures-util" ,rust-futures-util-0.3)
30231 ("rust-pin-project" ,rust-pin-project-0.4)
30232 ("rust-tokio" ,rust-tokio-0.2)
30233 ("rust-tokio-test" ,rust-tokio-test-0.2)
30234 ("rust-tower-layer" ,rust-tower-layer-0.3)
30235 ("rust-tower-service" ,rust-tower-service-0.3))
30236 #:cargo-development-inputs
30237 (("rust-tokio" ,rust-tokio-0.2))))
30238 (home-page "https://github.com/tower-rs/tower")
30239 (synopsis "Utilities for writing client and server @code{Service} tests")
30240 (description "This package provides utilities for writing client and
30241 server @code{Service} tests.")
30242 (license license:expat)))
30243
30244 (define-public rust-tower-util-0.3
30245 (package
30246 (name "rust-tower-util")
30247 (version "0.3.1")
30248 (source
30249 (origin
30250 (method url-fetch)
30251 (uri (crate-uri "tower-util" version))
30252 (file-name (string-append name "-" version ".tar.gz"))
30253 (sha256
30254 (base32
30255 "0x4np2s7h891spvxaarcyainj12a7gvnh7jif9y80cvdh8ckq2fi"))))
30256 (build-system cargo-build-system)
30257 (arguments
30258 `(#:cargo-inputs
30259 (("rust-futures-core" ,rust-futures-core-0.3)
30260 ("rust-futures-util" ,rust-futures-util-0.3)
30261 ("rust-pin-project" ,rust-pin-project-0.4)
30262 ("rust-tower-service" ,rust-tower-service-0.3))
30263 #:cargo-development-inputs
30264 (("rust-tokio" ,rust-tokio-0.2)
30265 ("rust-tokio-test" ,rust-tokio-test-0.2)
30266 ("rust-tower-test" ,rust-tower-test-0.3))))
30267 (home-page "https://github.com/tower-rs/tower")
30268 (synopsis "Utilities for working with @code{Service}")
30269 (description "This package provides utilities for working with
30270 @code{Service}.")
30271 (license license:expat)))
30272
30273 (define-public rust-tracing-0.1
30274 (package
30275 (name "rust-tracing")
30276 (version "0.1.20")
30277 (source
30278 (origin
30279 (method url-fetch)
30280 (uri (crate-uri "tracing" version))
30281 (file-name (string-append name "-" version ".tar.gz"))
30282 (sha256
30283 (base32
30284 "0hwgbyflibmsz7x6v7ndchnx1qvv43pg18419ji2y7pflzkmngbi"))))
30285 (build-system cargo-build-system)
30286 (arguments
30287 `(#:cargo-inputs
30288 (("rust-cfg-if" ,rust-cfg-if-0.1)
30289 ("rust-log" ,rust-log-0.4)
30290 ("rust-tracing-attributes" ,rust-tracing-attributes-0.1)
30291 ("rust-tracing-core" ,rust-tracing-core-0.1))
30292 #:cargo-development-inputs
30293 (("rust-criterion" ,rust-criterion-0.3)
30294 ("rust-futures" ,rust-futures-0.1)
30295 ("rust-log" ,rust-log-0.4))))
30296 (home-page "https://tokio.rs")
30297 (synopsis "Application-level tracing for Rust")
30298 (description "@code{rust-tracing} is a framework for instrumenting Rust
30299 programs to collect structured, event-based diagnostic information.")
30300 (license license:expat)))
30301
30302 (define-public rust-tracing-attributes-0.1
30303 (package
30304 (name "rust-tracing-attributes")
30305 (version "0.1.11")
30306 (source
30307 (origin
30308 (method url-fetch)
30309 (uri (crate-uri "tracing-attributes" version))
30310 (file-name (string-append name "-" version ".tar.gz"))
30311 (sha256
30312 (base32
30313 "1njady03jycfarjbmbhnrpsl6s9pd9knp50c4z70rnkq6gycrq40"))))
30314 (build-system cargo-build-system)
30315 (arguments
30316 `(#:cargo-inputs
30317 (("rust-proc-macro2" ,rust-proc-macro2-1)
30318 ("rust-quote" ,rust-quote-1)
30319 ("rust-syn" ,rust-syn-1))
30320 #:cargo-development-inputs
30321 (("rust-async-trait" ,rust-async-trait-0.1)
30322 ("rust-tokio-test" ,rust-tokio-test-0.2)
30323 ("rust-tracing" ,rust-tracing-0.1)
30324 ("rust-tracing-core" ,rust-tracing-core-0.1)
30325 ("rust-tracing-futures" ,rust-tracing-futures-0.2))))
30326 (home-page "https://tokio.rs")
30327 (synopsis "Automatically instrument functions")
30328 (description "This package provides procedural macro attributes for
30329 automatically instrumenting functions.")
30330 (license license:expat)))
30331
30332 (define-public rust-tracing-core-0.1
30333 (package
30334 (name "rust-tracing-core")
30335 (version "0.1.16")
30336 (source
30337 (origin
30338 (method url-fetch)
30339 (uri (crate-uri "tracing-core" version))
30340 (file-name (string-append name "-" version ".crate"))
30341 (sha256
30342 (base32
30343 "16hisz8nvbav9q6r5lbar2baac097n33q7xqssifwsphy70ldksv"))))
30344 (build-system cargo-build-system)
30345 (arguments
30346 `(#:cargo-inputs
30347 (("rust-lazy-static" ,rust-lazy-static-1))))
30348 (home-page "https://tokio.rs")
30349 (synopsis "Core primitives for application-level tracing")
30350 (description
30351 "Core primitives for application-level tracing.")
30352 (license (list license:asl2.0
30353 license:expat))))
30354
30355 (define-public rust-tracing-futures-0.2
30356 (package
30357 (name "rust-tracing-futures")
30358 (version "0.2.4")
30359 (source
30360 (origin
30361 (method url-fetch)
30362 (uri (crate-uri "tracing-futures" version))
30363 (file-name (string-append name "-" version ".tar.gz"))
30364 (sha256
30365 (base32
30366 "0k4vd3jyqz9cx8rbwbp0p93qfp1w6rfk7sc6c1jh1ai18zqvcyxb"))))
30367 (build-system cargo-build-system)
30368 (arguments
30369 `(#:cargo-inputs
30370 (("rust-futures" ,rust-futures-0.3)
30371 ("rust-futures-task" ,rust-futures-task-0.3)
30372 ("rust-pin-project" ,rust-pin-project-0.4)
30373 ("rust-tokio" ,rust-tokio-0.1)
30374 ("rust-tokio-executor" ,rust-tokio-executor-0.1)
30375 ("rust-tracing" ,rust-tracing-0.1))
30376 #:cargo-development-inputs
30377 (("rust-tokio" ,rust-tokio-0.1)
30378 ("rust-tokio-test" ,rust-tokio-test-0.2)
30379 ("rust-tracing-core" ,rust-tracing-core-0.1))))
30380 (home-page "https://tokio.rs")
30381 (synopsis "Utilities for instrumenting @code{futures} with @code{tracing}")
30382 (description "This package provides utilities for instrumenting
30383 @code{futures} with @code{tracing}.")
30384 (license license:expat)))
30385
30386 (define-public rust-tracing-fmt-0.1
30387 (package
30388 (name "rust-tracing-fmt")
30389 (version "0.1.1")
30390 (source
30391 (origin
30392 (method url-fetch)
30393 (uri (crate-uri "tracing-fmt" version))
30394 (file-name
30395 (string-append name "-" version ".tar.gz"))
30396 (sha256
30397 (base32
30398 "0wagcrd6w8d3k7zdvg6sy2bwfh8w87i6ndia69p54fc7p3z4f1c8"))))
30399 (build-system cargo-build-system)
30400 (arguments
30401 `(#:cargo-inputs
30402 (("rust-tracing-subscriber" ,rust-tracing-subscriber-0.1))
30403 #:cargo-development-inputs
30404 (("rust-tracing" ,rust-tracing-0.1))))
30405 (home-page "https://tokio.rs")
30406 (synopsis "Tracing subscriber that formats and logs trace data")
30407 (description
30408 "This package provides a tracing subscriber that formats and logs trace
30409 data. Moved to the tracing-subscriber crate.")
30410 (license license:expat)))
30411
30412 (define-public rust-tracing-log-0.1
30413 (package
30414 (name "rust-tracing-log")
30415 (version "0.1.1")
30416 (source
30417 (origin
30418 (method url-fetch)
30419 (uri (crate-uri "tracing-log" version))
30420 (file-name
30421 (string-append name "-" version ".tar.gz"))
30422 (sha256
30423 (base32
30424 "1fdr0az98q9m5kiybvdvsb2m9mg86fdidgb5czzq2d71g1qqq3sy"))))
30425 (build-system cargo-build-system)
30426 (arguments
30427 `(#:cargo-inputs
30428 (("rust-env-logger" ,rust-env-logger-0.6)
30429 ("rust-lazy-static" ,rust-lazy-static-1)
30430 ("rust-log" ,rust-log-0.4)
30431 ("rust-tracing-core" ,rust-tracing-core-0.1))
30432 #:cargo-development-inputs
30433 (("rust-tracing" ,rust-tracing-0.1))))
30434 (home-page "https://tokio.rs")
30435 (synopsis
30436 "Provides compatibility between tracing the log crates")
30437 (description
30438 "Tracing is a framework for instrumenting Rust programs with
30439 context-aware, structured, event-based diagnostic information. This crate
30440 provides compatibility layers for using tracing alongside the logging facade
30441 provided by the log crate.
30442
30443 This crate provides:
30444
30445 @itemize
30446 @item @code{AsTrace} and @code{AsLog} traits for converting between tracing
30447 and log types.
30448 @item @code{LogTracer}, a @code{log::Log} implementation that consumes
30449 @code{log::Records} and outputs them as @code{tracing::Events}.
30450 @item An @code{env_logger} module, with helpers for using the env_logger crate
30451 with tracing (optional, enabled by the env-logger feature).
30452 @end itemize")
30453 (license license:expat)))
30454
30455 (define-public rust-tracing-subscriber-0.1
30456 (package
30457 (name "rust-tracing-subscriber")
30458 (version "0.1.6")
30459 (source
30460 (origin
30461 (method url-fetch)
30462 (uri (crate-uri "tracing-subscriber" version))
30463 (file-name
30464 (string-append name "-" version ".tar.gz"))
30465 (sha256
30466 (base32
30467 "0i9fhlyz8mn2znpgmi5bv9y24pwpkkgfxs0rwcf6dl6djmjs2b0r"))))
30468 (build-system cargo-build-system)
30469 (arguments
30470 `(#:tests? #f ; Some test files missing.
30471 #:cargo-inputs
30472 (("rust-ansi-term" ,rust-ansi-term-0.11)
30473 ("rust-chrono" ,rust-chrono-0.4)
30474 ("rust-lazy-static" ,rust-lazy-static-1)
30475 ("rust-matchers" ,rust-matchers-0.0)
30476 ("rust-owning-ref" ,rust-owning-ref-0.4)
30477 ("rust-parking-lot" ,rust-parking-lot-0.9)
30478 ("rust-regex" ,rust-regex-1)
30479 ("rust-smallvec" ,rust-smallvec-0.6)
30480 ("rust-tracing-core" ,rust-tracing-core-0.1)
30481 ("rust-tracing-log" ,rust-tracing-log-0.1))
30482 #:cargo-development-inputs
30483 (("rust-criterion" ,rust-criterion-0.3)
30484 ("rust-log" ,rust-log-0.4)
30485 ("rust-tracing" ,rust-tracing-0.1)
30486 ("rust-tracing-log" ,rust-tracing-log-0.1))))
30487 (home-page "https://tokio.rs")
30488 (synopsis "Implement and compose tracing subscribers")
30489 (description
30490 "Utilities for implementing and composing tracing subscribers.
30491
30492 Tracing is a framework for instrumenting Rust programs to collect
30493 scoped, structured, and async-aware diagnostics. The Subscriber trait
30494 represents the functionality necessary to collect this trace
30495 data. This crate contains tools for composing subscribers out of
30496 smaller units of behaviour, and batteries-included implementations of
30497 common subscriber functionality.
30498
30499 Tracing-subscriber is intended for use by both Subscriber authors and
30500 application authors using tracing to instrument their applications.")
30501 (license license:expat)))
30502
30503 (define-public rust-traitobject-0.1
30504 (package
30505 (name "rust-traitobject")
30506 (version "0.1.0")
30507 (source
30508 (origin
30509 (method url-fetch)
30510 (uri (crate-uri "traitobject" version))
30511 (file-name (string-append name "-" version ".crate"))
30512 (sha256
30513 (base32
30514 "0yb0n8822mr59j200fyr2fxgzzgqljyxflx9y8bdy3rlaqngilgg"))))
30515 (build-system cargo-build-system)
30516 (home-page "https://github.com/reem/rust-traitobject")
30517 (synopsis "Unsafe helpers for dealing with raw trait objects")
30518 (description "Unsafe helpers for dealing with raw trait objects.")
30519 (license (list license:asl2.0
30520 license:expat))))
30521
30522 (define-public rust-treeline-0.1
30523 (package
30524 (name "rust-treeline")
30525 (version "0.1.0")
30526 (source
30527 (origin
30528 (method url-fetch)
30529 (uri (crate-uri "treeline" version))
30530 (file-name
30531 (string-append name "-" version ".tar.gz"))
30532 (sha256
30533 (base32
30534 "0hcdgyk5xzcx2ylm0fr9czzs9cjznm7l9q5qz51qi97i82r43xx7"))))
30535 (build-system cargo-build-system)
30536 (home-page "https://github.com/softprops/treeline")
30537 (synopsis "Library for visualizing tree structured data")
30538 (description
30539 "This package provides a library for visualizing tree structured data.")
30540 (license license:expat)))
30541
30542 (define-public rust-trust-dns-https-0.19
30543 (package
30544 (name "rust-trust-dns-https")
30545 (version "0.19.5")
30546 (source
30547 (origin
30548 (method url-fetch)
30549 (uri (crate-uri "trust-dns-https" version))
30550 (file-name (string-append name "-" version ".tar.gz"))
30551 (sha256
30552 (base32
30553 "0s6yiqy98wddc2vid0dypj4cdnvycd4vrrj6l9s7yymq0iqpky5g"))))
30554 (build-system cargo-build-system)
30555 (arguments
30556 `(#:cargo-inputs
30557 (("rust-backtrace" ,rust-backtrace-0.3)
30558 ("rust-bytes" ,rust-bytes-0.5)
30559 ("rust-data-encoding" ,rust-data-encoding-2)
30560 ("rust-futures" ,rust-futures-0.3)
30561 ("rust-h2" ,rust-h2-0.2)
30562 ("rust-http" ,rust-http-0.2)
30563 ("rust-log" ,rust-log-0.4)
30564 ("rust-rustls" ,rust-rustls-0.17)
30565 ("rust-thiserror" ,rust-thiserror-1)
30566 ("rust-tokio" ,rust-tokio-0.2)
30567 ("rust-tokio-rustls" ,rust-tokio-rustls-0.13)
30568 ("rust-trust-dns-proto" ,rust-trust-dns-proto-0.19)
30569 ("rust-trust-dns-rustls" ,rust-trust-dns-rustls-0.19)
30570 ("rust-typed-headers" ,rust-typed-headers-0.2)
30571 ("rust-webpki" ,rust-webpki-0.21)
30572 ("rust-webpki-roots" ,rust-webpki-roots-0.19))
30573 #:cargo-development-inputs
30574 (("rust-env-logger" ,rust-env-logger-0.7)
30575 ("rust-futures" ,rust-futures-0.3))))
30576 (home-page "http://www.trust-dns.org/index.html")
30577 (synopsis "DNS over HTTPS extension for the Trust-DNS client")
30578 (description "Trust-DNS is a safe and secure DNS library. This is an
30579 extension for the Trust-DNS client to use DNS over HTTPS.")
30580 (license (list license:expat license:asl2.0))))
30581
30582 (define-public rust-trust-dns-native-tls-0.19
30583 (package
30584 (name "rust-trust-dns-native-tls")
30585 (version "0.19.5")
30586 (source
30587 (origin
30588 (method url-fetch)
30589 (uri (crate-uri "trust-dns-native-tls" version))
30590 (file-name (string-append name "-" version ".tar.gz"))
30591 (sha256
30592 (base32
30593 "173443yivsiyzvnai4h53v71br8jsz4zjwhp83q3x4hnh6306ymv"))))
30594 (build-system cargo-build-system)
30595 (arguments
30596 `(#:cargo-inputs
30597 (("rust-futures" ,rust-futures-0.3)
30598 ("rust-native-tls" ,rust-native-tls-0.2)
30599 ("rust-tokio" ,rust-tokio-0.2)
30600 ("rust-tokio-tls" ,rust-tokio-tls-0.3)
30601 ("rust-trust-dns-proto" ,rust-trust-dns-proto-0.19))))
30602 (home-page "http://www.trust-dns.org/index.html")
30603 (synopsis "native-tls extension for the Trust-DNS client")
30604 (description "Trust-DNS is a safe and secure DNS library. This is an
30605 extension for the Trust-DNS client to use native-tls for TLS.")
30606 (license (list license:expat license:asl2.0))))
30607
30608 (define-public rust-trust-dns-openssl-0.19
30609 (package
30610 (name "rust-trust-dns-openssl")
30611 (version "0.19.5")
30612 (source
30613 (origin
30614 (method url-fetch)
30615 (uri (crate-uri "trust-dns-openssl" version))
30616 (file-name (string-append name "-" version ".tar.gz"))
30617 (sha256
30618 (base32
30619 "0as4jzrscjlmgj04l2aa2lf09vpd0fg5v0vfz019ybxgiqn89g45"))))
30620 (build-system cargo-build-system)
30621 (arguments
30622 `(#:cargo-inputs
30623 (("rust-futures" ,rust-futures-0.3)
30624 ("rust-openssl" ,rust-openssl-0.10)
30625 ("rust-tokio" ,rust-tokio-0.2)
30626 ("rust-tokio-openssl" ,rust-tokio-openssl-0.4)
30627 ("rust-trust-dns-proto" ,rust-trust-dns-proto-0.19))
30628 #:cargo-development-inputs
30629 (("rust-openssl" ,rust-openssl-0.10)
30630 ("rust-tokio" ,rust-tokio-0.2))))
30631 (home-page "http://www.trust-dns.org/index.html")
30632 (synopsis "tokio-openssl extension for the Trust-DNS client")
30633 (description "Trust-DNS is a safe and secure DNS library. This is an
30634 extension for the Trust-DNS client to use tokio-openssl for TLS.")
30635 (license (list license:expat license:asl2.0))))
30636
30637 (define-public rust-trust-dns-proto-0.19
30638 (package
30639 (name "rust-trust-dns-proto")
30640 (version "0.19.5")
30641 (source
30642 (origin
30643 (method url-fetch)
30644 (uri (crate-uri "trust-dns-proto" version))
30645 (file-name (string-append name "-" version ".tar.gz"))
30646 (sha256
30647 (base32
30648 "0a4zlv60kkbg1nvy3zh18fdg681z83yzppzy39rdkm7llqdhdmyd"))))
30649 (build-system cargo-build-system)
30650 (arguments
30651 `(#:cargo-inputs
30652 (("rust-async-trait" ,rust-async-trait-0.1)
30653 ("rust-backtrace" ,rust-backtrace-0.3)
30654 ("rust-data-encoding" ,rust-data-encoding-2)
30655 ("rust-enum-as-inner" ,rust-enum-as-inner-0.3)
30656 ("rust-futures" ,rust-futures-0.3)
30657 ("rust-idna" ,rust-idna-0.2)
30658 ("rust-js-sys" ,rust-js-sys-0.3)
30659 ("rust-lazy-static" ,rust-lazy-static-1)
30660 ("rust-log" ,rust-log-0.4)
30661 ("rust-openssl" ,rust-openssl-0.10)
30662 ("rust-rand" ,rust-rand-0.7)
30663 ("rust-ring" ,rust-ring-0.16)
30664 ("rust-serde" ,rust-serde-1)
30665 ("rust-smallvec" ,rust-smallvec-1)
30666 ("rust-socket2" ,rust-socket2-0.3)
30667 ("rust-thiserror" ,rust-thiserror-1)
30668 ("rust-tokio" ,rust-tokio-0.2)
30669 ("rust-url" ,rust-url-2)
30670 ("rust-wasm-bindgen" ,rust-wasm-bindgen-0.2))
30671 #:cargo-development-inputs
30672 (("rust-env-logger" ,rust-env-logger-0.7)
30673 ("rust-futures" ,rust-futures-0.3)
30674 ("rust-tokio" ,rust-tokio-0.2))))
30675 (home-page "http://www.trust-dns.org/index.html")
30676 (synopsis "Safe and secure DNS library")
30677 (description "Trust-DNS is a safe and secure DNS library. This is the
30678 foundational DNS protocol library for all Trust-DNS projects.")
30679 (license (list license:expat license:asl2.0))))
30680
30681 (define-public rust-trust-dns-proto-0.7
30682 (package
30683 (inherit rust-trust-dns-proto-0.19)
30684 (name "rust-trust-dns-proto")
30685 (version "0.7.4")
30686 (source
30687 (origin
30688 (method url-fetch)
30689 (uri (crate-uri "trust-dns-proto" version))
30690 (file-name
30691 (string-append name "-" version ".tar.gz"))
30692 (sha256
30693 (base32
30694 "0099dm57nnizx4apik9sh3mnvr7rp9mivc903v8xss13dkgynnam"))))
30695 (arguments
30696 `(#:cargo-inputs
30697 (("rust-byteorder" ,rust-byteorder-1)
30698 ("rust-data-encoding" ,rust-data-encoding-2)
30699 ("rust-enum-as-inner" ,rust-enum-as-inner-0.2)
30700 ("rust-failure" ,rust-failure-0.1)
30701 ("rust-futures" ,rust-futures-0.1)
30702 ("rust-idna" ,rust-idna-0.1)
30703 ("rust-lazy-static" ,rust-lazy-static-1)
30704 ("rust-log" ,rust-log-0.4)
30705 ("rust-openssl" ,rust-openssl-0.10)
30706 ("rust-rand" ,rust-rand-0.6)
30707 ("rust-ring" ,rust-ring-0.14)
30708 ("rust-serde" ,rust-serde-1)
30709 ("rust-smallvec" ,rust-smallvec-0.6)
30710 ("rust-socket2" ,rust-socket2-0.3)
30711 ("rust-tokio-executor" ,rust-tokio-executor-0.1)
30712 ("rust-tokio-io" ,rust-tokio-io-0.1)
30713 ("rust-tokio-reactor" ,rust-tokio-reactor-0.1)
30714 ("rust-tokio-tcp" ,rust-tokio-tcp-0.1)
30715 ("rust-tokio-timer" ,rust-tokio-timer-0.2)
30716 ("rust-tokio-udp" ,rust-tokio-udp-0.1)
30717 ("rust-untrusted" ,rust-untrusted-0.6)
30718 ("rust-url" ,rust-url-1))
30719 #:cargo-development-inputs
30720 (("rust-env-logger" ,rust-env-logger-0.6)
30721 ("rust-tokio" ,rust-tokio-0.1))))))
30722
30723 (define-public rust-trust-dns-resolver-0.19
30724 (package
30725 (name "rust-trust-dns-resolver")
30726 (version "0.19.5")
30727 (source
30728 (origin
30729 (method url-fetch)
30730 (uri (crate-uri "trust-dns-resolver" version))
30731 (file-name (string-append name "-" version ".tar.gz"))
30732 (sha256
30733 (base32
30734 "0xqv31gndybcrr5gi6jjp47qcvdxsc147s69a0y0nc6qqgyws8qg"))))
30735 (build-system cargo-build-system)
30736 (arguments
30737 `(#:cargo-inputs
30738 (("rust-backtrace" ,rust-backtrace-0.3)
30739 ("rust-cfg-if" ,rust-cfg-if-0.1)
30740 ("rust-futures" ,rust-futures-0.3)
30741 ("rust-ipconfig" ,rust-ipconfig-0.2)
30742 ("rust-lazy-static" ,rust-lazy-static-1)
30743 ("rust-log" ,rust-log-0.4)
30744 ("rust-lru-cache" ,rust-lru-cache-0.1)
30745 ("rust-resolv-conf" ,rust-resolv-conf-0.6)
30746 ("rust-rustls" ,rust-rustls-0.17)
30747 ("rust-serde" ,rust-serde-1)
30748 ("rust-smallvec" ,rust-smallvec-1)
30749 ("rust-thiserror" ,rust-thiserror-1)
30750 ("rust-tokio" ,rust-tokio-0.2)
30751 ("rust-tokio-openssl" ,rust-tokio-openssl-0.4)
30752 ("rust-tokio-rustls" ,rust-tokio-rustls-0.13)
30753 ("rust-tokio-tls" ,rust-tokio-tls-0.3)
30754 ("rust-trust-dns-https" ,rust-trust-dns-https-0.19)
30755 ("rust-trust-dns-native-tls" ,rust-trust-dns-native-tls-0.19)
30756 ("rust-trust-dns-openssl" ,rust-trust-dns-openssl-0.19)
30757 ("rust-trust-dns-proto" ,rust-trust-dns-proto-0.19)
30758 ("rust-trust-dns-rustls" ,rust-trust-dns-rustls-0.19)
30759 ("rust-webpki-roots" ,rust-webpki-roots-0.19))
30760 #:cargo-development-inputs
30761 (("rust-env-logger" ,rust-env-logger-0.7)
30762 ("rust-futures" ,rust-futures-0.3))))
30763 (home-page "http://www.trust-dns.org/index.html")
30764 (synopsis "Safe and secure DNS library")
30765 (description "Trust-DNS is a safe and secure DNS library. This Resolver
30766 library uses the Client library to perform all DNS queries. The Resolver is
30767 intended to be a high-level library for any DNS record resolution see Resolver
30768 and AsyncResolver for supported resolution types. The Client can be used for
30769 other queries.")
30770 (license (list license:expat license:asl2.0))))
30771
30772 (define-public rust-trust-dns-rustls-0.19
30773 (package
30774 (name "rust-trust-dns-rustls")
30775 (version "0.19.5")
30776 (source
30777 (origin
30778 (method url-fetch)
30779 (uri (crate-uri "trust-dns-rustls" version))
30780 (file-name (string-append name "-" version ".tar.gz"))
30781 (sha256
30782 (base32
30783 "1hj4fx2x4ncj7v8pf6bbn7634zq76hjigm1s2h6b6yjzzmz4yprn"))))
30784 (build-system cargo-build-system)
30785 (arguments
30786 `(#:cargo-inputs
30787 (("rust-futures" ,rust-futures-0.3)
30788 ("rust-log" ,rust-log-0.4)
30789 ("rust-rustls" ,rust-rustls-0.17)
30790 ("rust-tokio" ,rust-tokio-0.2)
30791 ("rust-tokio-rustls" ,rust-tokio-rustls-0.13)
30792 ("rust-trust-dns-proto" ,rust-trust-dns-proto-0.19)
30793 ("rust-webpki" ,rust-webpki-0.21))
30794 #:cargo-development-inputs
30795 (("rust-openssl" ,rust-openssl-0.10))))
30796 (home-page "http://www.trust-dns.org/index.html")
30797 (synopsis "rustls extension for the Trust-DNS client")
30798 (description "Trust-DNS is a safe and secure DNS library. This is an
30799 extension for the Trust-DNS client to use rustls for TLS.")
30800 (license (list license:expat license:asl2.0))))
30801
30802 (define-public rust-trust-dns-rustls-0.6
30803 (package
30804 (inherit rust-trust-dns-rustls-0.19)
30805 (name "rust-trust-dns-rustls")
30806 (version "0.6.4")
30807 (source
30808 (origin
30809 (method url-fetch)
30810 (uri (crate-uri "trust-dns-rustls" version))
30811 (file-name
30812 (string-append name "-" version ".tar.gz"))
30813 (sha256
30814 (base32
30815 "0vbh2y7w2s5gcw33fn4hb5f927kgjm6603vw63slg9riikmsiq43"))))
30816 (native-inputs
30817 `(("pkg-config" ,pkg-config)))
30818 (inputs
30819 `(("openssl" ,openssl)))
30820 (arguments
30821 `(#:cargo-test-flags
30822 '("--release" "--" "--skip=tests::test_tls_client_stream_ipv4")
30823 #:cargo-inputs
30824 (("rust-futures" ,rust-futures-0.1)
30825 ("rust-log" ,rust-log-0.4)
30826 ("rust-rustls" ,rust-rustls-0.15)
30827 ("rust-tokio-rustls" ,rust-tokio-rustls-0.9)
30828 ("rust-tokio-tcp" ,rust-tokio-tcp-0.1)
30829 ("rust-trust-dns-proto" ,rust-trust-dns-proto-0.7)
30830 ("rust-webpki" ,rust-webpki-0.19))
30831 #:cargo-development-inputs
30832 (("rust-openssl" ,rust-openssl-0.10)
30833 ("rust-tokio" ,rust-tokio-0.1))))))
30834
30835 (define-public rust-try-from-0.3
30836 (package
30837 (name "rust-try-from")
30838 (version "0.3.2")
30839 (source
30840 (origin
30841 (method url-fetch)
30842 (uri (crate-uri "try_from" version))
30843 (file-name (string-append name "-" version ".crate"))
30844 (sha256
30845 (base32
30846 "12wdd4ja7047sd3rx70hv2056hyc8gcdllcx3a41g1rnw64kng98"))))
30847 (build-system cargo-build-system)
30848 (arguments
30849 `(#:cargo-inputs
30850 (("rust-cfg-if" ,rust-cfg-if-0.1))))
30851 (home-page "https://github.com/derekjw/try_from")
30852 (synopsis "TryFrom and TryInto traits for failable conversions")
30853 (description
30854 "TryFrom and TryInto traits for failable conversions that return a Result.")
30855 (license license:expat)))
30856
30857 (define-public rust-try-lock-0.2
30858 (package
30859 (name "rust-try-lock")
30860 (version "0.2.2")
30861 (source
30862 (origin
30863 (method url-fetch)
30864 (uri (crate-uri "try-lock" version))
30865 (file-name (string-append name "-" version ".crate"))
30866 (sha256
30867 (base32
30868 "10p36rx6pqi9d0zr876xa8vksx2m66ha45myakl50rn08dxyn176"))))
30869 (build-system cargo-build-system)
30870 (home-page "https://github.com/seanmonstar/try-lock")
30871 (synopsis "Lightweight atomic lock")
30872 (description
30873 "This package provides a lightweight atomic lock.")
30874 (license license:expat)))
30875
30876 (define-public rust-trybuild-1
30877 (package
30878 (name "rust-trybuild")
30879 (version "1.0.23")
30880 (source
30881 (origin
30882 (method url-fetch)
30883 (uri (crate-uri "trybuild" version))
30884 (file-name
30885 (string-append name "-" version ".tar.gz"))
30886 (sha256
30887 (base32
30888 "080j808nv6nyr1mmw23vwdp4rkk7r38nmms850rih8lsclc1pzr6"))))
30889 (build-system cargo-build-system)
30890 (arguments
30891 `(#:cargo-inputs
30892 (("rust-dissimilar" ,rust-dissimilar-1.0)
30893 ("rust-glob" ,rust-glob-0.3)
30894 ("rust-lazy-static" ,rust-lazy-static-1)
30895 ("rust-serde" ,rust-serde-1)
30896 ("rust-serde-json" ,rust-serde-json-1)
30897 ("rust-termcolor" ,rust-termcolor-1)
30898 ("rust-toml" ,rust-toml-0.5))))
30899 (home-page "https://github.com/dtolnay/trybuild")
30900 (synopsis "Test harness for ui tests of compiler diagnostics")
30901 (description
30902 "Test harness for ui tests of compiler diagnostics.")
30903 (license (list license:expat license:asl2.0))))
30904
30905 (define-public rust-typeable-0.1
30906 (package
30907 (name "rust-typeable")
30908 (version "0.1.2")
30909 (source
30910 (origin
30911 (method url-fetch)
30912 (uri (crate-uri "typeable" version))
30913 (file-name (string-append name "-" version ".crate"))
30914 (sha256
30915 (base32
30916 "11w8dywgnm32hb291izjvh4zjd037ccnkk77ahk63l913zwzc40l"))))
30917 (build-system cargo-build-system)
30918 (home-page "https://github.com/reem/rust-typeable")
30919 (synopsis "Exposes Typeable, for getting TypeIds at runtime")
30920 (description "Exposes Typeable, for getting TypeIds at runtime.")
30921 (license license:expat)))
30922
30923 (define-public rust-typed-arena-1.4
30924 (package
30925 (name "rust-typed-arena")
30926 (version "1.4.1")
30927 (source
30928 (origin
30929 (method url-fetch)
30930 (uri (crate-uri "typed-arena" version))
30931 (file-name
30932 (string-append name "-" version ".tar.gz"))
30933 (sha256
30934 (base32
30935 "1i8yczhwcy0nnrxqck1lql3i7hvg95l0vw0dbgfb92zkms96mh66"))))
30936 (build-system cargo-build-system)
30937 (arguments `(#:skip-build? #t))
30938 (home-page "https://github.com/SimonSapin/rust-typed-arena")
30939 (synopsis "The arena allocator")
30940 (description
30941 "The arena, a fast but limited type of allocator.")
30942 (license license:expat)))
30943
30944 (define-public rust-typed-headers-0.2
30945 (package
30946 (name "rust-typed-headers")
30947 (version "0.2.0")
30948 (source
30949 (origin
30950 (method url-fetch)
30951 (uri (crate-uri "typed-headers" version))
30952 (file-name (string-append name "-" version ".tar.gz"))
30953 (sha256
30954 (base32
30955 "0jm2xzvvml3a9hhvzf9q4v22l5ifrxrx2kspy7aymknckqgacy9i"))))
30956 (build-system cargo-build-system)
30957 (arguments
30958 `(#:cargo-inputs
30959 (("rust-base64" ,rust-base64-0.11)
30960 ("rust-bytes" ,rust-bytes-0.5)
30961 ("rust-chrono" ,rust-chrono-0.4)
30962 ("rust-http" ,rust-http-0.2)
30963 ("rust-mime" ,rust-mime-0.3))))
30964 (home-page "https://github.com/sfackler/typed-headers")
30965 (synopsis "Typed HTTP header serialization and deserialization")
30966 (description "This package provides typed HTTP header serialization and
30967 deserialization.")
30968 (license (list license:expat license:asl2.0))))
30969
30970 (define-public rust-typemap-0.3
30971 (package
30972 (name "rust-typemap")
30973 (version "0.3.3")
30974 (source
30975 (origin
30976 (method url-fetch)
30977 (uri (crate-uri "typemap" version))
30978 (file-name (string-append name "-" version ".crate"))
30979 (sha256
30980 (base32
30981 "1xm1gbvz9qisj1l6d36hrl9pw8imr8ngs6qyanjnsad3h0yfcfv5"))))
30982 (build-system cargo-build-system)
30983 (arguments
30984 `(#:cargo-inputs
30985 (("rust-unsafe-any" ,rust-unsafe-any-0.4))))
30986 (home-page "https://github.com/reem/rust-typemap")
30987 (synopsis "Typesafe store for many value types")
30988 (description
30989 "A typesafe store for many value types.")
30990 (license license:expat)))
30991
30992 (define-public rust-typenum-1
30993 (package
30994 (name "rust-typenum")
30995 (version "1.12.0")
30996 (source
30997 (origin
30998 (method url-fetch)
30999 (uri (crate-uri "typenum" version))
31000 (file-name (string-append name "-" version ".crate"))
31001 (sha256
31002 (base32
31003 "0cvbksljz61ian21fnn0h51kphl0pwpzb932bv4s0rwy1wh8lg1p"))))
31004 (build-system cargo-build-system)
31005 (home-page "https://github.com/paholg/typenum")
31006 (synopsis "Rust library for type-level numbers evaluated at compile time")
31007 (description "Typenum is a Rust library for type-level numbers evaluated at
31008 compile time. It currently supports bits, unsigned integers, and signed
31009 integers. It also provides a type-level array of type-level numbers, but its
31010 implementation is incomplete.")
31011 (license (list license:asl2.0
31012 license:expat))))
31013
31014 (define-public rust-ucd-parse-0.1
31015 (package
31016 (name "rust-ucd-parse")
31017 (version "0.1.3")
31018 (source
31019 (origin
31020 (method url-fetch)
31021 (uri (crate-uri "ucd-parse" version))
31022 (file-name
31023 (string-append name "-" version ".tar.gz"))
31024 (sha256
31025 (base32
31026 "13mq6c85r6ak10gjlq74mzdhsi0g0vps2y73by420513gfnipm97"))))
31027 (build-system cargo-build-system)
31028 (arguments
31029 `(#:skip-build? #t
31030 #:cargo-inputs
31031 (("rust-lazy-static" ,rust-lazy-static-1)
31032 ("rust-regex" ,rust-regex-1))))
31033 (home-page "https://github.com/BurntSushi/ucd-generate")
31034 (synopsis "Parse data files in the Unicode character database")
31035 (description
31036 "This package provides a library for parsing data files in the
31037 Unicode character database.")
31038 (license (list license:asl2.0 license:expat))))
31039
31040 (define-public rust-ucd-trie-0.1
31041 (package
31042 (name "rust-ucd-trie")
31043 (version "0.1.2")
31044 (source
31045 (origin
31046 (method url-fetch)
31047 (uri (crate-uri "ucd-trie" version))
31048 (file-name (string-append name "-" version ".crate"))
31049 (sha256
31050 (base32
31051 "1hh6kyzh5xygwy96wfmsf8v8czlzhps2lgbcyhj1xzy1w1xys04g"))))
31052 (build-system cargo-build-system)
31053 (arguments
31054 `(#:cargo-development-inputs
31055 (("rust-lazy-static" ,rust-lazy-static-1))))
31056 (home-page "https://github.com/BurntSushi/ucd-generate")
31057 (synopsis "Trie for storing Unicode codepoint sets and maps")
31058 (description
31059 "This package provides a trie for storing Unicode codepoint sets and maps.")
31060 (license (list license:asl2.0
31061 license:expat))))
31062
31063 (define-public rust-ucd-util-0.1
31064 (package
31065 (name "rust-ucd-util")
31066 (version "0.1.7")
31067 (source
31068 (origin
31069 (method url-fetch)
31070 (uri (crate-uri "ucd-util" version))
31071 (file-name (string-append name "-" version ".crate"))
31072 (sha256
31073 (base32
31074 "13ng291mkc9b132jjf4laj76f5nqm5qd2447rm8bry3wxbdc5kaw"))))
31075 (build-system cargo-build-system)
31076 (home-page "https://github.com/BurntSushi/ucd-generate")
31077 (synopsis "library for working with the Unicode character database")
31078 (description "This package provides a small utility library for working
31079 with the Unicode character database.")
31080 (license (list license:asl2.0
31081 license:expat))))
31082
31083 (define-public rust-ufmt-0.1
31084 (package
31085 (name "rust-ufmt")
31086 (version "0.1.0")
31087 (source
31088 (origin
31089 (method url-fetch)
31090 (uri (crate-uri "ufmt" version))
31091 (file-name (string-append name "-" version ".tar.gz"))
31092 (sha256
31093 (base32
31094 "1844qwbmc4m69nfi6xmdcdf4fmjjvypi9rpfg3wgilvrxykwwzif"))))
31095 (build-system cargo-build-system)
31096 (arguments
31097 `(#:cargo-inputs
31098 (("rust-proc-macro-hack" ,rust-proc-macro-hack-0.5)
31099 ("rust-ufmt-macros" ,rust-ufmt-macros-0.1)
31100 ("rust-ufmt-write" ,rust-ufmt-write-0.1))))
31101 (home-page "https://crates.io/crates/ufmt")
31102 (synopsis "Faster and panic-free alternative to @code{core::fmt}")
31103 (description "This package provides a (6-40x) smaller, (2-9x) faster and
31104 panic-free alternative to @code{core::fmt}.")
31105 (license (list license:expat license:asl2.0))))
31106
31107 (define-public rust-ufmt-macros-0.1
31108 (package
31109 (name "rust-ufmt-macros")
31110 (version "0.1.1")
31111 (source
31112 (origin
31113 (method url-fetch)
31114 (uri (crate-uri "ufmt-macros" version))
31115 (file-name (string-append name "-" version ".tar.gz"))
31116 (sha256
31117 (base32
31118 "0sf0z9f6kjw5h15xd1hlj46dgri59lqwin1fxrcdradzl8s3x0gd"))))
31119 (build-system cargo-build-system)
31120 (arguments
31121 `(#:cargo-inputs
31122 (("rust-proc-macro-hack" ,rust-proc-macro-hack-0.5)
31123 ("rust-proc-macro2" ,rust-proc-macro2-1)
31124 ("rust-quote" ,rust-quote-1)
31125 ("rust-syn" ,rust-syn-1))))
31126 (home-page "https://github.com/japaric/ufmt")
31127 (synopsis "μfmt macros")
31128 (description "This package provides μfmt macros.")
31129 (license (list license:expat license:asl2.0))))
31130
31131 (define-public rust-ufmt-write-0.1
31132 (package
31133 (name "rust-ufmt-write")
31134 (version "0.1.0")
31135 (source
31136 (origin
31137 (method url-fetch)
31138 (uri (crate-uri "ufmt-write" version))
31139 (file-name (string-append name "-" version ".tar.gz"))
31140 (sha256
31141 (base32
31142 "0sdx0r6ah9xr3nydrqxj01v25sb956c0jk5rqf6f5i9fnkb2wyp8"))))
31143 (build-system cargo-build-system)
31144 (home-page "https://github.com/japaric/ufmt")
31145 (synopsis "μfmt's uWrite trait")
31146 (description "This package provides @code{μfmt}'s @code{uWrite} trait.")
31147 (license (list license:expat license:asl2.0))))
31148
31149 (define-public rust-unchecked-index-0.2
31150 (package
31151 (name "rust-unchecked-index")
31152 (version "0.2.2")
31153 (source
31154 (origin
31155 (method url-fetch)
31156 (uri (crate-uri "unchecked-index" version))
31157 (file-name
31158 (string-append name "-" version ".tar.gz"))
31159 (sha256
31160 (base32
31161 "0p6qcai1mjayx59cpgk27d0zgw9hz9r1ira5jiqil66f4ba8dfpf"))))
31162 (build-system cargo-build-system)
31163 (arguments `(#:skip-build? #t))
31164 (home-page "https://github.com/bluss/unchecked-index")
31165 (synopsis "Unchecked indexing wrapper using regular index syntax")
31166 (description
31167 "Unchecked indexing wrapper using regular index syntax.")
31168 (license (list license:asl2.0 license:expat))))
31169
31170 (define-public rust-unicase-2
31171 (package
31172 (name "rust-unicase")
31173 (version "2.6.0")
31174 (source
31175 (origin
31176 (method url-fetch)
31177 (uri (crate-uri "unicase" version))
31178 (file-name
31179 (string-append name "-" version ".tar.gz"))
31180 (sha256
31181 (base32
31182 "1xmlbink4ycgxrkjspp0mf7pghcx4m7vxq7fpfm04ikr2zk7pwsh"))))
31183 (build-system cargo-build-system)
31184 (arguments
31185 `(#:skip-build? #t
31186 #:cargo-inputs
31187 (("rust-version-check" ,rust-version-check-0.9))))
31188 (home-page "https://github.com/seanmonstar/unicase")
31189 (synopsis "Case-insensitive wrapper around strings")
31190 (description
31191 "This package provides a case-insensitive wrapper around strings.")
31192 (license (list license:expat license:asl2.0))))
31193
31194 (define-public rust-unicase-1
31195 (package
31196 (inherit rust-unicase-2)
31197 (name "rust-unicase")
31198 (version "1.4.2")
31199 (source
31200 (origin
31201 (method url-fetch)
31202 (uri (crate-uri "unicase" version))
31203 (file-name
31204 (string-append name "-" version ".tar.gz"))
31205 (sha256
31206 (base32
31207 "0cwazh4qsmm9msckjk86zc1z35xg7hjxjykrgjalzdv367w6aivz"))))
31208 (arguments
31209 `(#:cargo-inputs
31210 (("rust-heapsize" ,rust-heapsize-0.3)
31211 ("rust-heapsize-plugin" ,rust-heapsize-plugin-0.1)
31212 ("rust-version-check" ,rust-version-check-0.1))))))
31213
31214 (define-public rust-unicode-bidi-0.3
31215 (package
31216 (name "rust-unicode-bidi")
31217 (version "0.3.4")
31218 (source
31219 (origin
31220 (method url-fetch)
31221 (uri (crate-uri "unicode-bidi" version))
31222 (file-name
31223 (string-append name "-" version ".tar.gz"))
31224 (sha256
31225 (base32
31226 "1malx8ljgm7v1gbaazkn7iicy5wj0bwcyadj3l727a38ch6bvwj9"))))
31227 (build-system cargo-build-system)
31228 (arguments
31229 `(#:skip-build? #t
31230 #:cargo-inputs
31231 (("rust-flame" ,rust-flame-0.2)
31232 ("rust-flamer" ,rust-flamer-0.3)
31233 ("rust-matches" ,rust-matches-0.1)
31234 ("rust-serde" ,rust-serde-1))
31235 #:cargo-development-inputs
31236 (("rust-serde-test" ,rust-serde-test-1))))
31237 (home-page "https://github.com/servo/unicode-bidi")
31238 (synopsis "Implementation of the Unicode Bidirectional Algorithm")
31239 (description
31240 "Implementation of the Unicode Bidirectional Algorithm.")
31241 (license (list license:asl2.0 license:expat))))
31242
31243 (define-public rust-unicode-normalization-0.1
31244 (package
31245 (name "rust-unicode-normalization")
31246 (version "0.1.11")
31247 (source
31248 (origin
31249 (method url-fetch)
31250 (uri (crate-uri "unicode-normalization" version))
31251 (file-name
31252 (string-append name "-" version ".tar.gz"))
31253 (sha256
31254 (base32 "1kxxb5ndb5dzyp1flajjdxnbwyjw6ml9xvy0pz7b8srjn9ky4qdm"))))
31255 (build-system cargo-build-system)
31256 (arguments
31257 `(#:cargo-inputs
31258 (("rust-smallvec" ,rust-smallvec-1))))
31259 (home-page "https://github.com/unicode-rs/unicode-normalization")
31260 (synopsis
31261 "This crate provides functions for normalization of Unicode strings")
31262 (description
31263 "This crate provides functions for normalization of Unicode strings,
31264 including Canonical and Compatible Decomposition and Recomposition, as
31265 described in Unicode Standard Annex #15.")
31266 (license (list license:expat license:asl2.0))))
31267
31268 (define-public rust-unicode-segmentation-1.6
31269 (package
31270 (name "rust-unicode-segmentation")
31271 (version "1.6.0")
31272 (source
31273 (origin
31274 (method url-fetch)
31275 (uri (crate-uri "unicode-segmentation" version))
31276 (file-name
31277 (string-append name "-" version ".tar.gz"))
31278 (sha256
31279 (base32
31280 "1h7d48mzpi8hwf5cvnq07warkv86pvapzzzf32hvbjsk20yiagp8"))))
31281 (build-system cargo-build-system)
31282 (arguments
31283 `(#:cargo-development-inputs
31284 (("rust-quickcheck" ,rust-quickcheck-0.7))))
31285 (home-page "https://github.com/unicode-rs/unicode-segmentation")
31286 (synopsis "Grapheme Cluster, Word and Sentence boundaries")
31287 (description
31288 "This crate provides Grapheme Cluster, Word and Sentence
31289 boundaries according to Unicode Standard Annex #29 rules.")
31290 (license (list license:expat license:asl2.0))))
31291
31292 (define-public rust-unicode-segmentation-1.3
31293 (package
31294 (inherit rust-unicode-segmentation-1.6)
31295 (name "rust-unicode-segmentation")
31296 (version "1.3.0")
31297 (source
31298 (origin
31299 (method url-fetch)
31300 (uri (crate-uri "unicode-segmentation" version))
31301 (file-name
31302 (string-append name "-" version ".tar.gz"))
31303 (sha256
31304 (base32
31305 "1a9jqg7rb1yq6w2xc9jgxcs111yk5vxm9afjfvykfnrmzk6z8rqr"))))))
31306
31307 (define-public rust-unicode-width-0.1
31308 (package
31309 (name "rust-unicode-width")
31310 (version "0.1.8")
31311 (source
31312 (origin
31313 (method url-fetch)
31314 (uri (crate-uri "unicode-width" version))
31315 (file-name (string-append name "-" version ".tar.gz"))
31316 (sha256
31317 (base32
31318 "1qxizyi6xbcqyi4z79p523ywvmgsfcgfqb3zv3c8i6x1jcc5jdwk"))))
31319 (build-system cargo-build-system)
31320 (arguments
31321 `(#:cargo-inputs
31322 (("rust-compiler-builtins" ,rust-compiler-builtins-0.1)
31323 ("rust-rustc-std-workspace-core" ,rust-rustc-std-workspace-core-1)
31324 ("rust-rustc-std-workspace-std" ,rust-rustc-std-workspace-std-1.0))))
31325 (home-page "https://github.com/unicode-rs/unicode-width")
31326 (synopsis "Determine displayed width according to Unicode rules")
31327 (description "This crate allows you to determine displayed width of
31328 @code{char} and @code{str} types according to Unicode Standard Annex #11 rules.")
31329 (license (list license:asl2.0
31330 license:expat))))
31331
31332 (define-public rust-unicode-xid-0.2
31333 (package
31334 (name "rust-unicode-xid")
31335 (version "0.2.1")
31336 (source
31337 (origin
31338 (method url-fetch)
31339 (uri (crate-uri "unicode-xid" version))
31340 (file-name
31341 (string-append name "-" version ".crate"))
31342 (sha256
31343 (base32
31344 "0r6mknipyy9vpz8mwmxvkx65ff2ha1n2pxqjj6f46lcn8yrhpzpp"))))
31345 (build-system cargo-build-system)
31346 (home-page "https://github.com/unicode-rs/unicode-xid")
31347 (synopsis "Determine Unicode XID related properties")
31348 (description "Determine whether characters have the XID_Start
31349 or XID_Continue properties according to Unicode Standard Annex #31.")
31350 (license (list license:asl2.0 license:expat))))
31351
31352 (define-public rust-unicode-xid-0.1
31353 (package
31354 (inherit rust-unicode-xid-0.2)
31355 (name "rust-unicode-xid")
31356 (version "0.1.0")
31357 (source
31358 (origin
31359 (method url-fetch)
31360 (uri (crate-uri "unicode-xid" version))
31361 (file-name (string-append name "-" version ".crate"))
31362 (sha256
31363 (base32
31364 "1z57lqh4s18rr4x0j4fw4fmp9hf9346h0kmdgqsqx0fhjr3k0wpw"))))))
31365
31366 (define-public rust-unicode-xid-0.0
31367 (package
31368 (inherit rust-unicode-xid-0.2)
31369 (name "rust-unicode-xid")
31370 (version "0.0.4")
31371 (source
31372 (origin
31373 (method url-fetch)
31374 (uri (crate-uri "unicode-xid" version))
31375 (file-name
31376 (string-append name "-" version ".tar.gz"))
31377 (sha256
31378 (base32
31379 "1p5l9h3n3i53cp95fb65p8q3vbwib79ryd9z5z5h5kr9gl6qc7wc"))))))
31380
31381 (define-public rust-unindent-0.1
31382 (package
31383 (name "rust-unindent")
31384 (version "0.1.6")
31385 (source
31386 (origin
31387 (method url-fetch)
31388 (uri (crate-uri "unindent" version))
31389 (file-name (string-append name "-" version ".crate"))
31390 (sha256
31391 (base32 "0hl9l4w9mhv5qacx7cirm6rarrphw35b5syw2plx13vz884dfhdg"))))
31392 (build-system cargo-build-system)
31393 (home-page "https://github.com/dtolnay/indoc")
31394 (synopsis "Remove a column of leading whitespace from a string")
31395 (description "This crate allows you to remove a column of leading
31396 whitespace from a string.")
31397 (license (list license:asl2.0
31398 license:expat))))
31399
31400 (define-public rust-universal-hash-0.4
31401 (package
31402 (name "rust-universal-hash")
31403 (version "0.4.0")
31404 (source
31405 (origin
31406 (method url-fetch)
31407 (uri (crate-uri "universal-hash" version))
31408 (file-name (string-append name "-" version ".tar.gz"))
31409 (sha256
31410 (base32
31411 "00hljq64l0p68yrncvyww4cdgkzpzl49vrlnj57kwblkak3b49l3"))))
31412 (build-system cargo-build-system)
31413 (arguments
31414 `(#:cargo-inputs
31415 (("rust-generic-array" ,rust-generic-array-0.14)
31416 ("rust-subtle" ,rust-subtle-2))))
31417 (home-page "https://github.com/RustCrypto/traits")
31418 (synopsis "Trait for universal hash functions")
31419 (description "This package provides traits for universal hash functions.")
31420 (license (list license:expat license:asl2.0))))
31421
31422 (define-public rust-unix-socket-0.5
31423 (package
31424 (name "rust-unix-socket")
31425 (version "0.5.0")
31426 (source
31427 (origin
31428 (method url-fetch)
31429 (uri (crate-uri "unix_socket" version))
31430 (file-name
31431 (string-append name "-" version ".tar.gz"))
31432 (sha256
31433 (base32
31434 "0r0mxf3mmqvimnx4mpks1f6c4haj6jcxc0k9bs7w61f42w2718ka"))))
31435 (build-system cargo-build-system)
31436 (arguments
31437 `(#:skip-build? #t
31438 #:cargo-inputs
31439 (("rust-cfg-if" ,rust-cfg-if-0.1)
31440 ("rust-libc" ,rust-libc-0.2))))
31441 (home-page "https://github.com/rust-lang-nursery/unix-socket")
31442 (synopsis "Unix domain socket bindings")
31443 (description "This package provides unix domain socket bindings.")
31444 (license (list license:expat license:asl2.0))))
31445
31446 (define-public rust-unreachable-1.0
31447 (package
31448 (name "rust-unreachable")
31449 (version "1.0.0")
31450 (source
31451 (origin
31452 (method url-fetch)
31453 (uri (crate-uri "unreachable" version))
31454 (file-name (string-append name "-" version ".crate"))
31455 (sha256
31456 (base32
31457 "0mps2il4xy2mjqc3appas27hhn2xmvixc3bzzhfrjj74gy3i0a1q"))))
31458 (build-system cargo-build-system)
31459 (arguments
31460 `(#:cargo-inputs
31461 (("rust-void" ,rust-void-1))))
31462 (home-page "https://github.com/reem/rust-unreachable")
31463 (synopsis "Unreachable code optimization hint in rust")
31464 (description
31465 "This package provides an unreachable code optimization hint in rust.")
31466 (license (list license:asl2.0
31467 license:expat))))
31468
31469 (define-public rust-unsafe-any-0.4
31470 (package
31471 (name "rust-unsafe-any")
31472 (version "0.4.2")
31473 (source
31474 (origin
31475 (method url-fetch)
31476 (uri (crate-uri "unsafe-any" version))
31477 (file-name (string-append name "-" version ".crate"))
31478 (sha256
31479 (base32
31480 "0zwwphsqkw5qaiqmjwngnfpv9ym85qcsyj7adip9qplzjzbn00zk"))))
31481 (build-system cargo-build-system)
31482 (arguments
31483 `(#:cargo-inputs
31484 (("rust-traitobject" ,rust-traitobject-0.1))))
31485 (home-page "https://tokio.rs")
31486 (synopsis "Traits and implementations for unchecked downcasting")
31487 (description
31488 "Traits and implementations for unchecked downcasting.")
31489 (license license:expat)))
31490
31491 (define-public rust-untrusted-0.7
31492 (package
31493 (name "rust-untrusted")
31494 (version "0.7.1")
31495 (source
31496 (origin
31497 (method url-fetch)
31498 (uri (crate-uri "untrusted" version))
31499 (file-name (string-append name "-" version ".crate"))
31500 (sha256
31501 (base32
31502 "0jkbqaj9d3v5a91pp3wp9mffvng1nhycx6sh4qkdd9qyr62ccmm1"))))
31503 (build-system cargo-build-system)
31504 (home-page "https://github.com/briansmith/untrusted")
31505 (synopsis "Zero-allocation parsing of untrusted inputs in Rust")
31506 (description
31507 "Safe, fast, zero-panic, zero-crashing, zero-allocation parsing of
31508 untrusted inputs in Rust.")
31509 (license license:isc)))
31510
31511 (define-public rust-untrusted-0.6
31512 (package/inherit rust-untrusted-0.7
31513 (name "rust-untrusted")
31514 (version "0.6.2")
31515 (source
31516 (origin
31517 (method url-fetch)
31518 (uri (crate-uri "untrusted" version))
31519 (file-name (string-append name "-" version ".tar.gz"))
31520 (sha256
31521 (base32 "0byf88b7ca1kb5aap8f6npp6xncvg95dnma8ipmnmd4n9r5izkam"))))))
31522
31523 (define-public rust-url-2
31524 (package
31525 (name "rust-url")
31526 (version "2.1.1")
31527 (source
31528 (origin
31529 (method url-fetch)
31530 (uri (crate-uri "url" version))
31531 (file-name
31532 (string-append name "-" version ".tar.gz"))
31533 (sha256
31534 (base32
31535 "1jw7cw8br4xvjb92ddrrh1r7jvqhyhiknnnfpgq9np63fs24m7c2"))))
31536 (build-system cargo-build-system)
31537 (arguments
31538 `(#:skip-build? #t
31539 #:cargo-inputs
31540 (("rust-idna" ,rust-idna-0.2)
31541 ("rust-matches" ,rust-matches-0.1)
31542 ("rust-percent-encoding" ,rust-percent-encoding-2)
31543 ("rust-serde" ,rust-serde-1))
31544 #:cargo-development-inputs
31545 (("rust-bencher" ,rust-bencher-0.1)
31546 ("rust-rustc-test" ,rust-rustc-test-0.3)
31547 ("rust-serde-json" ,rust-serde-json-1))))
31548 (home-page "https://github.com/servo/rust-url")
31549 (synopsis "URL library for Rust, based on the WHATWG URL Standard")
31550 (description
31551 "URL library for Rust, based on the WHATWG URL Standard.")
31552 (license (list license:asl2.0 license:expat))))
31553
31554 (define-public rust-url-1
31555 (package
31556 (inherit rust-url-2)
31557 (name "rust-url")
31558 (version "1.7.2")
31559 (source
31560 (origin
31561 (method url-fetch)
31562 (uri (crate-uri "url" version))
31563 (file-name
31564 (string-append name "-" version ".tar.gz"))
31565 (sha256
31566 (base32
31567 "0nim1c90mxpi9wgdw2xh8dqd72vlklwlzam436akcrhjac6pqknx"))))
31568 (arguments
31569 `(#:skip-build? #t
31570 #:cargo-inputs
31571 (("rust-encoding" ,rust-encoding-0.2)
31572 ("rust-heapsize" ,rust-heapsize-0.4)
31573 ("rust-idna" ,rust-idna-0.1)
31574 ("rust-matches" ,rust-matches-0.1)
31575 ("rust-percent-encoding" ,rust-percent-encoding-1.0)
31576 ("rust-rustc-serialize" ,rust-rustc-serialize-0.3)
31577 ("rust-serde" ,rust-serde-1))
31578 #:cargo-development-inputs
31579 (("rust-bencher" ,rust-bencher-0.1)
31580 ("rust-rustc-serialize" ,rust-rustc-serialize-0.3)
31581 ("rust-rustc-test" ,rust-rustc-test-0.3)
31582 ("rust-serde-json" ,rust-serde-json-1))))))
31583
31584 (define-public rust-urlocator-0.1
31585 (package
31586 (name "rust-urlocator")
31587 (version "0.1.3")
31588 (source
31589 (origin
31590 (method url-fetch)
31591 (uri (crate-uri "urlocator" version))
31592 (file-name
31593 (string-append name "-" version ".tar.gz"))
31594 (sha256
31595 (base32
31596 "0r5ig00np3svjpvb1gha3ni798cwj2w7rnlwrc8jrrw7bvlb2yri"))))
31597 (build-system cargo-build-system)
31598 (home-page "https://github.com/alacritty/urlocator")
31599 (synopsis "Locate URLs in character streams")
31600 (description "Locate URLs in character streams.")
31601 (license (list license:expat license:asl2.0))))
31602
31603 (define-public rust-user32-sys-0.2
31604 (package
31605 (name "rust-user32-sys")
31606 (version "0.2.0")
31607 (source
31608 (origin
31609 (method url-fetch)
31610 (uri (crate-uri "user32-sys" version))
31611 (file-name
31612 (string-append name "-" version ".tar.gz"))
31613 (sha256
31614 (base32
31615 "0ivxc7hmsxax9crdhxdd1nqwik4s9lhb2x59lc8b88bv20fp3x2f"))))
31616 (build-system cargo-build-system)
31617 (arguments
31618 `(#:cargo-inputs
31619 (("rust-winapi" ,rust-winapi-0.2))
31620 #:cargo-development-inputs
31621 (("rust-winapi-build" ,rust-winapi-build-0.1))
31622 #:phases
31623 (modify-phases %standard-phases
31624 (add-after 'unpack 'fix-cargo-toml
31625 (lambda _
31626 (substitute* "Cargo.toml"
31627 ((", path =.*}") "}"))
31628 #t)))))
31629 (home-page "https://github.com/retep998/winapi-rs")
31630 (synopsis "Function definitions for the Windows API library user32")
31631 (description
31632 "Contains function definitions for the Windows API library user32.
31633 See winapi for types and constants.")
31634 (license license:expat)))
31635
31636 (define-public rust-users-0.10
31637 (package
31638 (name "rust-users")
31639 (version "0.10.0")
31640 (source
31641 (origin
31642 (method url-fetch)
31643 (uri (crate-uri "users" version))
31644 (file-name
31645 (string-append name "-" version ".tar.gz"))
31646 (sha256
31647 (base32
31648 "11plda5r3dl8hs0sl0jskazam4ayv3a06vmhzk4l7914agljfhma"))))
31649 (build-system cargo-build-system)
31650 (arguments
31651 `(#:cargo-inputs
31652 (("rust-libc" ,rust-libc-0.2)
31653 ("rust-log" ,rust-log-0.4))
31654 #:cargo-development-inputs
31655 (("rust-env-logger" ,rust-env-logger-0.7))))
31656 (home-page "https://github.com/ogham/rust-users")
31657 (synopsis "Library for getting information on Unix users and groups")
31658 (description "This package provides a library for getting information on
31659 Unix users and groups.")
31660 (license license:expat)))
31661
31662 (define-public rust-users-0.9
31663 (package
31664 (inherit rust-users-0.10)
31665 (name "rust-users")
31666 (version "0.9.1")
31667 (source
31668 (origin
31669 (method url-fetch)
31670 (uri (crate-uri "users" version))
31671 (file-name
31672 (string-append name "-" version ".tar.gz"))
31673 (sha256
31674 (base32
31675 "1kxl3y2hcrqqip7jpqn5mz7xlpbwmmpfmaza0xnyrhx0mrkl4by7"))))
31676 (arguments
31677 `(#:cargo-inputs (("rust-libc" ,rust-libc-0.2))))))
31678
31679 (define-public rust-utf-8-0.7
31680 (package
31681 (name "rust-utf-8")
31682 (version "0.7.5")
31683 (source
31684 (origin
31685 (method url-fetch)
31686 (uri (crate-uri "utf-8" version))
31687 (file-name
31688 (string-append name "-" version ".tar.gz"))
31689 (sha256
31690 (base32
31691 "1iw5rp4i3mfi9k51picbr5bgjqhjcmnxx7001clh5ydq31y2zr05"))))
31692 (build-system cargo-build-system)
31693 (arguments `(#:skip-build? #t))
31694 (home-page "https://github.com/SimonSapin/rust-utf8")
31695 (synopsis
31696 "Incremental, zero-copy UTF-8 decoding with error handling")
31697 (description
31698 "Incremental, zero-copy UTF-8 decoding with error handling.")
31699 (license (list license:expat license:asl2.0))))
31700
31701 (define-public rust-utf8-ranges-1.0
31702 (package
31703 (name "rust-utf8-ranges")
31704 (version "1.0.4")
31705 (source
31706 (origin
31707 (method url-fetch)
31708 (uri (crate-uri "utf8-ranges" version))
31709 (file-name
31710 (string-append name "-" version ".tar.gz"))
31711 (sha256
31712 (base32
31713 "1fpc32znar5v02nwsw7icl41jzzzzhy0si6ngqjylzrbxxpi3bml"))))
31714 (build-system cargo-build-system)
31715 (arguments
31716 `(#:skip-build? #t
31717 #:cargo-development-inputs
31718 (("rust-doc-comment" ,rust-doc-comment-0.3)
31719 ("rust-quickcheck" ,rust-quickcheck-0.8))))
31720 (home-page "https://github.com/BurntSushi/utf8-ranges")
31721 (synopsis
31722 "Convert ranges of Unicode codepoints to UTF-8 byte ranges")
31723 (description
31724 "Convert ranges of Unicode codepoints to UTF-8 byte ranges.")
31725 (license (list license:expat license:unlicense))))
31726
31727 (define-public rust-utf8-ranges-0.1
31728 (package
31729 (inherit rust-utf8-ranges-1.0)
31730 (name "rust-utf8-ranges")
31731 (version "0.1.3")
31732 (source
31733 (origin
31734 (method url-fetch)
31735 (uri (crate-uri "utf8-ranges" version))
31736 (file-name
31737 (string-append name "-" version ".tar.gz"))
31738 (sha256
31739 (base32
31740 "03xf604b2v51ag3jgzw92l97xnb10kw9zv948bhc7ja1ik017jm1"))))
31741 (arguments
31742 `(#:cargo-development-inputs
31743 (("rust-quickcheck" ,rust-quickcheck-0.2))))))
31744
31745 (define-public rust-utf8parse-0.1
31746 (package
31747 (name "rust-utf8parse")
31748 (version "0.1.1")
31749 (source
31750 (origin
31751 (method url-fetch)
31752 (uri (crate-uri "utf8parse" version))
31753 (file-name
31754 (string-append name "-" version ".tar.gz"))
31755 (sha256
31756 (base32
31757 "0zamsj2986shm4x9zncjf2m5qy9scaw7qnxw4f89b2afpg6a8wl7"))))
31758 (build-system cargo-build-system)
31759 (home-page "https://github.com/jwilm/vte")
31760 (synopsis "Table-driven UTF-8 parser")
31761 (description "This package provides a table-driven UTF-8 parser.")
31762 (license (list license:asl2.0 license:expat))))
31763
31764 (define-public rust-uuid-0.8
31765 (package
31766 (name "rust-uuid")
31767 (version "0.8.1")
31768 (source
31769 (origin
31770 (method url-fetch)
31771 (uri (crate-uri "uuid" version))
31772 (file-name
31773 (string-append name "-" version ".tar.gz"))
31774 (sha256
31775 (base32
31776 "049w16qwk3d3b9cmpgvd7fvcnwgs75l8rlsagh06w7ga9dm2zplz"))))
31777 (build-system cargo-build-system)
31778 (arguments
31779 `(#:skip-build? #t
31780 #:cargo-inputs
31781 (("rust-winapi" ,rust-winapi-0.3)
31782 ("rust-sha1" ,rust-sha1-0.6)
31783 ("rust-md5" ,rust-md5-0.6)
31784 ("rust-rand" ,rust-rand-0.7)
31785 ("rust-serde" ,rust-serde-1)
31786 ("rust-slog" ,rust-slog-2))))
31787 (home-page "https://github.com/uuid-rs/uuid")
31788 (synopsis "Library to generate and parse UUIDs")
31789 (description
31790 "This package provides a library to generate and parse UUIDs.")
31791 (license (list license:asl2.0 license:expat))))
31792
31793 (define-public rust-uuid-0.7
31794 (package
31795 (name "rust-uuid")
31796 (version "0.7.4")
31797 (source
31798 (origin
31799 (method url-fetch)
31800 (uri (crate-uri "uuid" version))
31801 (file-name
31802 (string-append name "-" version ".tar.gz"))
31803 (sha256
31804 (base32
31805 "0ank4xk20x3nrz926w8j9mz53bi3v8bykxmhlq2pffa8xc8wdnwh"))))
31806 (build-system cargo-build-system)
31807 (arguments
31808 `(#:skip-build? #t
31809 #:cargo-inputs
31810 (("rust-byteorder" ,rust-byteorder-1)
31811 ("rust-md5" ,rust-md5-0.6)
31812 ("rust-rand" ,rust-rand-0.6)
31813 ("rust-serde" ,rust-serde-1)
31814 ("rust-sha1" ,rust-sha1-0.6)
31815 ("rust-slog" ,rust-slog-2)
31816 ("rust-winapi" ,rust-winapi-0.3))
31817 #:cargo-development-inputs
31818 (("rust-bincode" ,rust-bincode-1)
31819 ("rust-serde-derive" ,rust-serde-derive-1)
31820 ("rust-serde-json" ,rust-serde-json-1)
31821 ("rust-serde-test" ,rust-serde-test-1))))
31822 (home-page "https://github.com/uuid-rs/uuid")
31823 (synopsis "Generate and parse UUIDs")
31824 (description
31825 "This package provides a library to generate and parse UUIDs.")
31826 (license (list license:asl2.0 license:expat))))
31827
31828 (define-public rust-uuid-0.5
31829 (package
31830 (inherit rust-uuid-0.7)
31831 (name "rust-uuid")
31832 (version "0.5.1")
31833 (source
31834 (origin
31835 (method url-fetch)
31836 (uri (crate-uri "uuid" version))
31837 (file-name
31838 (string-append name "-" version ".tar.gz"))
31839 (sha256
31840 (base32
31841 "08nw3famk1w1zf9ck32pmklk24wd4n4nqnr9wl46qvxak2wf7ixw"))))
31842 (arguments
31843 `(#:cargo-inputs
31844 (("rust-md5" ,rust-md5-0.3)
31845 ("rust-rand" ,rust-rand-0.3)
31846 ("rust-rustc-serialize" ,rust-rustc-serialize-0.3)
31847 ("rust-serde" ,rust-serde-1)
31848 ("rust-sha1" ,rust-sha1-0.2))))))
31849
31850 (define-public rust-vcpkg-0.2
31851 (package
31852 (name "rust-vcpkg")
31853 (version "0.2.10")
31854 (source
31855 (origin
31856 (method url-fetch)
31857 (uri (crate-uri "vcpkg" version))
31858 (file-name (string-append name "-" version ".crate"))
31859 (sha256
31860 (base32
31861 "132hlmsc4maava91vl4lh677sl1c7vr8ccl53fnr5w41y6dh4m34"))))
31862 (build-system cargo-build-system)
31863 (arguments
31864 `(#:tests? #f ; Tests want mysql, harfbuzz, graphite2.
31865 #:cargo-development-inputs
31866 (("rust-lazy-static" ,rust-lazy-static-1)
31867 ("rust-tempdir" ,rust-tempdir-0.3))))
31868 (home-page "https://github.com/mcgoo/vcpkg-rs")
31869 (synopsis "Find native dependencies in a vcpkg tree at build time")
31870 (description
31871 "This package provides a library to find native dependencies in a
31872 @code{vcpkg} tree at build time in order to be used in Cargo build scripts.")
31873 (license (list license:asl2.0
31874 license:expat))))
31875
31876 (define-public rust-vec-map-0.8
31877 (package
31878 (name "rust-vec-map")
31879 (version "0.8.2")
31880 (source
31881 (origin
31882 (method url-fetch)
31883 (uri (crate-uri "vec_map" version))
31884 (file-name (string-append name "-" version ".crate"))
31885 (sha256
31886 (base32
31887 "1481w9g1dw9rxp3l6snkdqihzyrd2f8vispzqmwjwsdyhw8xzggi"))))
31888 (build-system cargo-build-system)
31889 (arguments
31890 `(#:cargo-inputs
31891 (("rust-serde" ,rust-serde-1))))
31892 (home-page "https://github.com/contain-rs/vec-map")
31893 (synopsis "Simple map based on a vector for small integer keys")
31894 (description
31895 "This package provides a simple map based on a vector for small integer keys.")
31896 (license (list license:asl2.0
31897 license:expat))))
31898
31899 (define-public rust-vecmath-1.0
31900 (package
31901 (name "rust-vecmath")
31902 (version "1.0.0")
31903 (source
31904 (origin
31905 (method url-fetch)
31906 (uri (crate-uri "vecmath" version))
31907 (file-name
31908 (string-append name "-" version ".tar.gz"))
31909 (sha256
31910 (base32
31911 "0shmj76rj7rqv377vy365xwr5rx23kxqgkqxxrymdjjvv3hf2slm"))))
31912 (build-system cargo-build-system)
31913 (arguments
31914 `(#:skip-build? #t
31915 #:cargo-inputs
31916 (("rust-piston-float" ,rust-piston-float-1.0))))
31917 (home-page "https://github.com/pistondevelopers/vecmath")
31918 (synopsis "Library for vector math designed for reexporting")
31919 (description
31920 "This package provides a simple and type agnostic library for vector math
31921 designed for reexporting.")
31922 (license license:expat)))
31923
31924 (define-public rust-vergen-3.1
31925 (package
31926 (name "rust-vergen")
31927 (version "3.1.0")
31928 (source
31929 (origin
31930 (method url-fetch)
31931 (uri (crate-uri "vergen" version))
31932 (file-name
31933 (string-append name "-" version ".tar.gz"))
31934 (sha256
31935 (base32
31936 "1jrr0wihm9si98qz8ghjfnalfvmfv8rqvkgj2npqa7yzjs4hvrac"))))
31937 (build-system cargo-build-system)
31938 (arguments
31939 `(#:skip-build? #t
31940 #:cargo-inputs
31941 (("rust-chrono" ,rust-chrono-0.4)
31942 ("rust-chrono" ,rust-chrono-0.4)
31943 ("rust-bitflags" ,rust-bitflags-1))))
31944 (home-page "https://github.com/rustyhorde/vergen")
31945 (synopsis "Generate version related functions")
31946 (description
31947 "Generate version related functions.")
31948 (license (list license:expat license:asl2.0))))
31949
31950 (define-public rust-version-check-0.9
31951 (package
31952 (name "rust-version-check")
31953 (version "0.9.2")
31954 (source
31955 (origin
31956 (method url-fetch)
31957 (uri (crate-uri "version_check" version))
31958 (file-name (string-append name "-" version ".crate"))
31959 (sha256
31960 (base32 "1vbaqdf802qinsq8q20w8w0qn2pv0rkq5p73ijcblrwxcvjp5adm"))))
31961 (build-system cargo-build-system)
31962 (home-page "https://github.com/SergioBenitez/version_check")
31963 (synopsis "Check that the installed rustc meets some version requirements")
31964 (description
31965 "This tiny crate checks that the running or installed rustc meets some
31966 version requirements. The version is queried by calling the Rust compiler with
31967 @code{--version}. The path to the compiler is determined first via the
31968 @code{RUSTC} environment variable. If it is not set, then @code{rustc} is used.
31969 If that fails, no determination is made, and calls return None.")
31970 (license (list license:asl2.0
31971 license:expat))))
31972
31973 (define-public rust-version-check-0.1
31974 (package
31975 (inherit rust-version-check-0.9)
31976 (name "rust-version-check")
31977 (version "0.1.5")
31978 (source
31979 (origin
31980 (method url-fetch)
31981 (uri (crate-uri "version_check" version))
31982 (file-name (string-append name "-" version ".crate"))
31983 (sha256
31984 (base32
31985 "1pf91pvj8n6akh7w6j5ypka6aqz08b3qpzgs0ak2kjf4frkiljwi"))))))
31986
31987 (define-public rust-version-compare-0.0
31988 (package
31989 (name "rust-version-compare")
31990 (version "0.0.11")
31991 (source
31992 (origin
31993 (method url-fetch)
31994 (uri (crate-uri "version-compare" version))
31995 (file-name
31996 (string-append name "-" version ".tar.gz"))
31997 (sha256
31998 (base32 "06v688jg6gd00zvm3cp7qh2h3mz8cs2ngr09bnwxhyddxrcwh60w"))))
31999 (build-system cargo-build-system)
32000 (home-page "https://github.com/timvisee/version-compare")
32001 (synopsis "Rust library to easily compare version numbers")
32002 (description
32003 "This package provides a Rust library to easily compare version
32004 numbers, and test them against various comparison operators.")
32005 (license license:expat)))
32006
32007 (define-public rust-version-sync-0.8
32008 (package
32009 (name "rust-version-sync")
32010 (version "0.8.1")
32011 (source
32012 (origin
32013 (method url-fetch)
32014 (uri (crate-uri "version-sync" version))
32015 (file-name
32016 (string-append name "-" version ".tar.gz"))
32017 (sha256
32018 (base32
32019 "01pq0ia7ak7d69c3chjgdmaaq271yrspgbzmk6wmrwb74hx3skw4"))))
32020 (build-system cargo-build-system)
32021 (arguments
32022 `(#:skip-build? #t
32023 #:cargo-inputs
32024 (("rust-itertools" ,rust-itertools-0.8)
32025 ("rust-proc-macro2" ,rust-proc-macro2-0.4)
32026 ("rust-pulldown-cmark" ,rust-pulldown-cmark-0.4)
32027 ("rust-regex" ,rust-regex-1)
32028 ("rust-semver-parser" ,rust-semver-parser-0.9)
32029 ("rust-syn" ,rust-syn-0.15)
32030 ("rust-toml" ,rust-toml-0.5)
32031 ("rust-url" ,rust-url-1))))
32032 (home-page "https://github.com/mgeisler/version-sync")
32033 (synopsis
32034 "Ensure that version numbers are updated when the crate version changes")
32035 (description
32036 "Simple crate for ensuring that version numbers in README files are
32037 updated when the crate version changes.")
32038 (license license:expat)))
32039
32040 (define-public rust-version-sync-0.6
32041 (package
32042 (inherit rust-version-sync-0.8)
32043 (name "rust-version-sync")
32044 (version "0.6.0")
32045 (source
32046 (origin
32047 (method url-fetch)
32048 (uri (crate-uri "version-sync" version))
32049 (file-name
32050 (string-append name "-" version ".tar.gz"))
32051 (sha256
32052 (base32
32053 "0n33s4s4k9sy7rhlrf9lwwyqkjrgwnpfjsz0xzhfh3d3w33jaiq8"))
32054 (modules '((guix build utils)))
32055 (snippet
32056 '(begin (substitute* "Cargo.toml"
32057 (("~1.1") "1.1"))
32058 #t))))
32059 (arguments
32060 `(#:cargo-inputs
32061 (("rust-itertools" ,rust-itertools-0.7)
32062 ("rust-lazy-static" ,rust-lazy-static-1)
32063 ("rust-pulldown-cmark" ,rust-pulldown-cmark-0.1)
32064 ("rust-regex" ,rust-regex-1)
32065 ("rust-semver-parser" ,rust-semver-parser-0.9)
32066 ("rust-syn" ,rust-syn-0.15)
32067 ("rust-toml" ,rust-toml-0.4)
32068 ("rust-url" ,rust-url-1))))))
32069
32070 (define-public rust-void-1
32071 (package
32072 (name "rust-void")
32073 (version "1.0.2")
32074 (source
32075 (origin
32076 (method url-fetch)
32077 (uri (crate-uri "void" version))
32078 (file-name (string-append name "-" version ".crate"))
32079 (sha256
32080 (base32
32081 "0zc8f0ksxvmhvgx4fdg0zyn6vdnbxd2xv9hfx4nhzg6kbs4f80ka"))))
32082 (build-system cargo-build-system)
32083 (home-page "https://github.com/reem/rust-void")
32084 (synopsis "Void type for use in statically impossible cases")
32085 (description
32086 "The uninhabited void type for use in statically impossible cases.")
32087 (license license:expat)))
32088
32089 (define-public rust-vswhom-0.1
32090 (package
32091 (name "rust-vswhom")
32092 (version "0.1.0")
32093 (source
32094 (origin
32095 (method url-fetch)
32096 (uri (crate-uri "vswhom" version))
32097 (file-name
32098 (string-append name "-" version ".tar.gz"))
32099 (sha256
32100 (base32
32101 "12v0fjjzxdc3y5c0lcwycfhphz7zf2s06hl5krwhawah0xzrp5xy"))))
32102 (build-system cargo-build-system)
32103 (arguments
32104 `(#:cargo-inputs
32105 (("rust-libc" ,rust-libc-0.2)
32106 ("rust-vswhom-sys" ,rust-vswhom-sys-0.1))))
32107 (home-page "https://github.com/nabijaczleweli/vswhom.rs")
32108 (synopsis "FFI to Jon Blow's VS discovery script")
32109 (description
32110 "This package provides a pure FFI to Jon Blow's VS discovery script.")
32111 (license license:expat)))
32112
32113 (define-public rust-vswhom-sys-0.1
32114 (package
32115 (name "rust-vswhom-sys")
32116 (version "0.1.0")
32117 (source
32118 (origin
32119 (method url-fetch)
32120 (uri (crate-uri "vswhom-sys" version))
32121 (file-name
32122 (string-append name "-" version ".tar.gz"))
32123 (sha256
32124 (base32
32125 "0clm4dx4amwlhg5lkh52fmvvwq6c7s7b9xqljw39mryhsc158bzw"))))
32126 (build-system cargo-build-system)
32127 (arguments
32128 `(#:cargo-inputs
32129 (("rust-libc" ,rust-libc-0.2)
32130 ("rust-cc" ,rust-cc-1))))
32131 (home-page "https://github.com/nabijaczleweli/vswhom-sys.rs")
32132 (synopsis "Pure FFI to Jon Blow's VS discovery script")
32133 (description
32134 "This package provides a pure FFI to Jon Blow's VS discovery script.")
32135 (license license:expat)))
32136
32137 (define-public rust-vte-0.3
32138 (package
32139 (name "rust-vte")
32140 (version "0.3.3")
32141 (source
32142 (origin
32143 (method url-fetch)
32144 (uri (crate-uri "vte" version))
32145 (file-name
32146 (string-append name "-" version ".tar.gz"))
32147 (sha256
32148 (base32
32149 "1kz8svnqnxclllsgh0ck20rplw3qzp46b5v30yscnzrgw8vgahjg"))))
32150 (build-system cargo-build-system)
32151 (arguments
32152 `(#:tests? #f ; tests not included in release
32153 #:cargo-inputs
32154 (("rust-utf8parse" ,rust-utf8parse-0.1))))
32155 (home-page "https://github.com/jwilm/vte")
32156 (synopsis "Parser for implementing terminal emulators")
32157 (description
32158 "This package provides a parser for implementing terminal emulators.")
32159 (license (list license:asl2.0 license:expat))))
32160
32161 (define-public rust-wait-timeout-0.2
32162 (package
32163 (name "rust-wait-timeout")
32164 (version "0.2.0")
32165 (source
32166 (origin
32167 (method url-fetch)
32168 (uri (crate-uri "wait-timeout" version))
32169 (file-name
32170 (string-append name "-" version ".tar.gz"))
32171 (sha256
32172 (base32
32173 "1xpkk0j5l9pfmjfh1pi0i89invlavfrd9av5xp0zhxgb29dhy84z"))))
32174 (build-system cargo-build-system)
32175 (arguments
32176 `(#:skip-build? #t
32177 #:cargo-inputs (("rust-libc" ,rust-libc-0.2))))
32178 (home-page "https://github.com/alexcrichton/wait-timeout")
32179 (synopsis "Wait on a child process with a timeout")
32180 (description
32181 "This package provides a crate to wait on a child process with a timeout
32182 specified across Unix and Windows platforms.")
32183 (license (list license:expat license:asl2.0))))
32184
32185 (define-public rust-walkdir-2
32186 (package
32187 (name "rust-walkdir")
32188 (version "2.3.1")
32189 (source
32190 (origin
32191 (method url-fetch)
32192 (uri (crate-uri "walkdir" version))
32193 (file-name
32194 (string-append name "-" version ".tar.gz"))
32195 (sha256
32196 (base32
32197 "0z9g39f49cycdm9vzjf8hnfh3f1csxgd65kmlphj8r2vffy84wbp"))))
32198 (build-system cargo-build-system)
32199 (arguments
32200 `(#:skip-build? #t
32201 #:cargo-inputs
32202 (("rust-winapi-util" ,rust-winapi-util-0.1)
32203 ("rust-winapi" ,rust-winapi-0.3)
32204 ("rust-same-file" ,rust-same-file-1.0))))
32205 (home-page "https://github.com/BurntSushi/walkdir")
32206 (synopsis "Recursively walk a directory")
32207 (description "Recursively walk a directory.")
32208 (license (list license:unlicense license:expat))))
32209
32210 (define-public rust-walkdir-1
32211 (package
32212 (inherit rust-walkdir-2)
32213 (name "rust-walkdir")
32214 (version "1.0.7")
32215 (source
32216 (origin
32217 (method url-fetch)
32218 (uri (crate-uri "walkdir" version))
32219 (file-name
32220 (string-append name "-" version ".tar.gz"))
32221 (sha256
32222 (base32
32223 "1zw8safzqpsrvfn0256cngq2fr9d4lmwv5qb8ycn1f7sf3kgj25v"))))
32224 (arguments
32225 `(#:cargo-inputs
32226 (("rust-kernel32-sys" ,rust-kernel32-sys-0.2)
32227 ("rust-same-file" ,rust-same-file-0.1)
32228 ("rust-winapi" ,rust-winapi-0.2))
32229 #:cargo-development-inputs
32230 (("rust-docopt" ,rust-docopt-0.7)
32231 ("rust-quickcheck" ,rust-quickcheck-0.4)
32232 ("rust-rand" ,rust-rand-0.3)
32233 ("rust-rustc-serialize" ,rust-rustc-serialize-0.3))))))
32234
32235 (define-public rust-want-0.3
32236 (package
32237 (name "rust-want")
32238 (version "0.3.0")
32239 (source
32240 (origin
32241 (method url-fetch)
32242 (uri (crate-uri "want" version))
32243 (file-name (string-append name "-" version ".tar.gz"))
32244 (sha256
32245 (base32
32246 "181b2zmwfq389x9n2g1n37cvcvvdand832zz6v8i1l8wrdlaks0w"))))
32247 (build-system cargo-build-system)
32248 (arguments
32249 `(#:cargo-inputs
32250 (("rust-log" ,rust-log-0.4)
32251 ("rust-try-lock" ,rust-try-lock-0.2))
32252 #:cargo-development-inputs
32253 (("rust-tokio-executor" ,rust-tokio-executor-0.2)
32254 ("rust-tokio-sync" ,rust-tokio-sync-0.2))))
32255 (home-page "https://github.com/seanmonstar/want")
32256 (synopsis "Detect when another future wants a result")
32257 (description "This package lets you detect when another future wants a
32258 result.")
32259 (license license:expat)))
32260
32261 (define-public rust-want-0.2
32262 (package
32263 (name "rust-want")
32264 (version "0.2.0")
32265 (source
32266 (origin
32267 (method url-fetch)
32268 (uri (crate-uri "want" version))
32269 (file-name (string-append name "-" version ".tar.gz"))
32270 (sha256
32271 (base32 "0c52g7b4hhj033jc56sx9z3krivyciz0hlblixq2gc448zx5wfdn"))))
32272 (build-system cargo-build-system)
32273 (arguments
32274 `(#:tests? #f ;; 2/5 tests fail
32275 #:cargo-inputs
32276 (("rust-futures" ,rust-futures-0.1)
32277 ("rust-log" ,rust-log-0.4)
32278 ("rust-try-lock" ,rust-try-lock-0.2))))
32279 (home-page "https://github.com/seanmonstar/want")
32280 (synopsis "Detect when another Future wants a result")
32281 (description "Detect when another Future wants a result.")
32282 (license license:expat)))
32283
32284 (define-public rust-wasi-0.9
32285 (package
32286 (name "rust-wasi")
32287 (version "0.9.0+wasi-snapshot-preview1")
32288 (source
32289 (origin
32290 (method url-fetch)
32291 (uri (crate-uri "wasi" version))
32292 (file-name
32293 (string-append name "-" version ".tar.gz"))
32294 (sha256
32295 (base32
32296 "06g5v3vrdapfzvfq662cij7v8a1flwr2my45nnncdv2galrdzkfc"))))
32297 (build-system cargo-build-system)
32298 (arguments
32299 `(#:skip-build? #t
32300 #:cargo-inputs
32301 (("rust-compiler-builtins" ,rust-compiler-builtins-0.1)
32302 ("rust-rustc-std-workspace-alloc" ,rust-rustc-std-workspace-alloc-1)
32303 ("rust-rustc-std-workspace-core" ,rust-rustc-std-workspace-core-1))))
32304 (home-page "https://github.com/bytecodealliance/wasi")
32305 (synopsis "Experimental WASI API bindings for Rust")
32306 (description
32307 "This package provides an experimental WASI API bindings for Rust.")
32308 (license (list license:asl2.0
32309 license:expat))))
32310
32311 (define-public rust-wasi-0.5
32312 (package
32313 (name "rust-wasi")
32314 (version "0.5.0")
32315 (source
32316 (origin
32317 (method url-fetch)
32318 (uri (crate-uri "wasi" version))
32319 (file-name
32320 (string-append name "-" version ".crate"))
32321 (sha256
32322 (base32
32323 "1ir3pd4phdfml0cbziw9bqp7mnk0vfp9biy8bh25lln6raml4m7x"))))
32324 (build-system cargo-build-system)
32325 (home-page "https://github.com/CraneStation/rust-wasi")
32326 (synopsis "Experimental WASI API bindings for Rust")
32327 (description "This package contains experimental WASI API bindings
32328 in Rust.")
32329 (license license:asl2.0)))
32330
32331 (define-public rust-wasm-bindgen-0.2
32332 (package
32333 (name "rust-wasm-bindgen")
32334 (version "0.2.60")
32335 (source
32336 (origin
32337 (method url-fetch)
32338 (uri (crate-uri "wasm-bindgen" version))
32339 (file-name
32340 (string-append name "-" version ".tar.gz"))
32341 (sha256
32342 (base32
32343 "0zx42zryw03w3maz8p65gr5bhhybr2sdzgcck5p3gy47abh7ri9c"))))
32344 (build-system cargo-build-system)
32345 (arguments
32346 `(#:cargo-inputs
32347 (("rust-cfg-if" ,rust-cfg-if-0.1)
32348 ("rust-serde" ,rust-serde-1)
32349 ("rust-serde-json" ,rust-serde-json-1)
32350 ("rust-wasm-bindgen-macro" ,rust-wasm-bindgen-macro-0.2))
32351 #:cargo-development-inputs
32352 (("rust-js-sys" ,rust-js-sys-0.3)
32353 ("rust-serde-derive" ,rust-serde-derive-1)
32354 ("rust-wasm-bindgen-futures" ,rust-wasm-bindgen-futures-0.4)
32355 ("rust-wasm-bindgen-test" ,rust-wasm-bindgen-test-0.3)
32356 ("rust-wasm-bindgen-test-crate-a"
32357 ,rust-wasm-bindgen-test-crate-a-0.1)
32358 ("rust-wasm-bindgen-test-crate-b"
32359 ,rust-wasm-bindgen-test-crate-b-0.1))))
32360 (home-page "https://rustwasm.github.io/")
32361 (synopsis "Easy support for interacting between JS and Rust")
32362 (description
32363 "Easy support for interacting between JS and Rust.")
32364 (license (list license:asl2.0 license:expat))))
32365
32366 (define-public rust-wasm-bindgen-backend-0.2
32367 (package
32368 (name "rust-wasm-bindgen-backend")
32369 (version "0.2.60")
32370 (source
32371 (origin
32372 (method url-fetch)
32373 (uri (crate-uri "wasm-bindgen-backend" version))
32374 (file-name
32375 (string-append name "-" version ".tar.gz"))
32376 (sha256
32377 (base32
32378 "1k9p8a7ng6nqan0m9555wj936lm2s1qz0fnafclwlv61yrxx6ryr"))))
32379 (build-system cargo-build-system)
32380 (arguments
32381 `(#:cargo-inputs
32382 (("rust-bumpalo" ,rust-bumpalo-3)
32383 ("rust-lazy-static" ,rust-lazy-static-1)
32384 ("rust-log" ,rust-log-0.4)
32385 ("rust-proc-macro2" ,rust-proc-macro2-1)
32386 ("rust-quote" ,rust-quote-1)
32387 ("rust-syn" ,rust-syn-1)
32388 ("rust-wasm-bindgen-shared" ,rust-wasm-bindgen-shared-0.2))))
32389 (home-page "https://rustwasm.github.io/wasm-bindgen/")
32390 (synopsis "Backend code generation of the wasm-bindgen tool")
32391 (description
32392 "Backend code generation of the wasm-bindgen tool.")
32393 (license (list license:expat license:asl2.0))))
32394
32395 (define-public rust-wasm-bindgen-console-logger-0.1
32396 (package
32397 (name "rust-wasm-bindgen-console-logger")
32398 (version "0.1.1")
32399 (source
32400 (origin
32401 (method url-fetch)
32402 (uri (crate-uri "wasm-bindgen-console-logger" version))
32403 (file-name
32404 (string-append name "-" version ".tar.gz"))
32405 (sha256
32406 (base32
32407 "1vc506dhrk2yl0snkcn45s5adndq9wj7ipxb7awbbxzswxss4c3m"))))
32408 (build-system cargo-build-system)
32409 (arguments
32410 `(#:cargo-inputs
32411 (("rust-log" ,rust-log-0.4)
32412 ("rust-wasm-bindgen" ,rust-wasm-bindgen-0.2))))
32413 (home-page "https://github.com/blm768/wasm-bindgen-console-logger")
32414 (synopsis "Rust log and JavaScript console logging integration")
32415 (description
32416 "This package provides a logging facility that integrates the
32417 log crate with JavaScript console logging functions with the help of
32418 wasm-bindgen.")
32419 (license license:cc0)))
32420
32421 (define-public rust-wasm-bindgen-futures-0.4
32422 (package
32423 (name "rust-wasm-bindgen-futures")
32424 (version "0.4.8")
32425 (source
32426 (origin
32427 (method url-fetch)
32428 (uri (crate-uri "wasm-bindgen-futures" version))
32429 (file-name
32430 (string-append name "-" version ".tar.gz"))
32431 (sha256
32432 (base32
32433 "1n9ma4kinr4w6r2sh4wm04my6p14k1vx3a4vdbn0vd187sgd9gcb"))))
32434 (build-system cargo-build-system)
32435 (arguments
32436 `(#:skip-build? #t
32437 #:cargo-inputs
32438 (("rust-cfg-if" ,rust-cfg-if-0.1)
32439 ("rust-js-sys" ,rust-js-sys-0.3)
32440 ("rust-wasm-bindgen" ,rust-wasm-bindgen-0.2)
32441 ("rust-web-sys" ,rust-web-sys-0.3))
32442 #:cargo-development-inputs
32443 (("rust-futures-channel-preview" ,rust-futures-channel-preview-0.3)
32444 ("rust-wasm-bindgen-test" ,rust-wasm-bindgen-test-0.3))))
32445 (home-page "https://rustwasm.github.io/wasm-bindgen/")
32446 (synopsis
32447 "Bridging the gap between Rust Futures and JavaScript Promises")
32448 (description
32449 "Bridging the gap between Rust Futures and JavaScript Promises.")
32450 (license (list license:expat license:asl2.0))))
32451
32452 (define-public rust-wasm-bindgen-futures-0.3
32453 (package
32454 (inherit rust-wasm-bindgen-futures-0.4)
32455 (name "rust-wasm-bindgen-futures")
32456 (version "0.3.27")
32457 (source
32458 (origin
32459 (method url-fetch)
32460 (uri (crate-uri "wasm-bindgen-futures" version))
32461 (file-name
32462 (string-append name "-" version ".tar.gz"))
32463 (sha256
32464 (base32 "073p71skp91d9v2wczl6k7z9p0w25vn43br2v2g1ncbc6hvhnhl3"))))
32465 (arguments
32466 `(#:skip-build? #t
32467 #:cargo-inputs
32468 (("rust-futures" ,rust-futures-0.1)
32469 ("rust-futures-channel-preview"
32470 ,rust-futures-channel-preview-0.3)
32471 ("rust-futures-util-preview" ,rust-futures-util-preview-0.3)
32472 ("rust-js-sys" ,rust-js-sys-0.3)
32473 ("rust-lazy-static" ,rust-lazy-static-1)
32474 ("rust-wasm-bindgen" ,rust-wasm-bindgen-0.2))
32475 #:cargo-development-inputs
32476 (("rust-wasm-bindgen-test" ,rust-wasm-bindgen-test-0.2))))))
32477
32478 (define-public rust-wasm-bindgen-macro-0.2
32479 (package
32480 (name "rust-wasm-bindgen-macro")
32481 (version "0.2.60")
32482 (source
32483 (origin
32484 (method url-fetch)
32485 (uri (crate-uri "wasm-bindgen-macro" version))
32486 (file-name
32487 (string-append name "-" version ".tar.gz"))
32488 (sha256
32489 (base32
32490 "1973xr0vr2aj85fkp3smk61z5ki7c4fhxlicfjxq3a0y7sv53lcb"))))
32491 (build-system cargo-build-system)
32492 (arguments
32493 `(#:tests? #f ; 'Async blocks are unstable'
32494 #:cargo-inputs
32495 (("rust-quote" ,rust-quote-1)
32496 ("rust-wasm-bindgen-macro-support"
32497 ,rust-wasm-bindgen-macro-support-0.2))
32498 #:cargo-development-inputs
32499 (("rust-trybuild" ,rust-trybuild-1)
32500 ("rust-wasm-bindgen" ,rust-wasm-bindgen-0.2)
32501 ("rust-wasm-bindgen-futures" ,rust-wasm-bindgen-futures-0.4))))
32502 (home-page "https://rustwasm.github.io/wasm-bindgen/")
32503 (synopsis "Definition of the @code{#[wasm_bindgen]} attribute")
32504 (description
32505 "Definition of the @code{#[wasm_bindgen]} attribute, an internal
32506 dependency.")
32507 (license (list license:expat license:asl2.0))))
32508
32509 (define-public rust-wasm-bindgen-macro-support-0.2
32510 (package
32511 (name "rust-wasm-bindgen-macro-support")
32512 (version "0.2.60")
32513 (source
32514 (origin
32515 (method url-fetch)
32516 (uri (crate-uri "wasm-bindgen-macro-support" version))
32517 (file-name
32518 (string-append name "-" version ".tar.gz"))
32519 (sha256
32520 (base32
32521 "0ca9bb9hnyzcmjww83x8asb76drf55ijhqv8yrl7igpixqv5p2nn"))))
32522 (build-system cargo-build-system)
32523 (arguments
32524 `(#:cargo-inputs
32525 (("rust-proc-macro2" ,rust-proc-macro2-1)
32526 ("rust-quote" ,rust-quote-1)
32527 ("rust-syn" ,rust-syn-1)
32528 ("rust-wasm-bindgen-backend" ,rust-wasm-bindgen-backend-0.2)
32529 ("rust-wasm-bindgen-shared" ,rust-wasm-bindgen-shared-0.2))))
32530 (home-page "https://rustwasm.github.io/wasm-bindgen/")
32531 (synopsis "The @code{#[wasm_bindgen]} macro")
32532 (description
32533 "The part of the implementation of the @code{#[wasm_bindgen]}
32534 attribute that is not in the shared backend crate.")
32535 (license (list license:asl2.0 license:expat))))
32536
32537 (define-public rust-wasm-bindgen-shared-0.2
32538 (package
32539 (name "rust-wasm-bindgen-shared")
32540 (version "0.2.60")
32541 (source
32542 (origin
32543 (method url-fetch)
32544 (uri (crate-uri "wasm-bindgen-shared" version))
32545 (file-name (string-append name "-" version ".crate"))
32546 (sha256
32547 (base32
32548 "0ffn4152w8n629f29lwjgj3adiyixvdbff3mld49gisssbknzxys"))))
32549 (build-system cargo-build-system)
32550 (home-page "https://rustwasm.github.io/wasm-bindgen/")
32551 (synopsis "Shared support between wasm-bindgen and wasm-bindgen cli")
32552 (description "This package provides shared support between
32553 @code{wasm-bindgen} and @code{wasm-bindgen} cli, an internal dependency.")
32554 (license (list license:asl2.0
32555 license:expat))))
32556
32557 (define-public rust-wasm-bindgen-test-0.3
32558 (package
32559 (name "rust-wasm-bindgen-test")
32560 (version "0.3.8")
32561 (source
32562 (origin
32563 (method url-fetch)
32564 (uri (crate-uri "wasm-bindgen-test" version))
32565 (file-name
32566 (string-append name "-" version ".tar.gz"))
32567 (sha256
32568 (base32
32569 "0bn833hghwbcg9cqz1bx9biq271bc4jcbgn2nqk1fkf4ab1hxzcq"))))
32570 (build-system cargo-build-system)
32571 (arguments
32572 `(#:skip-build? #t
32573 #:cargo-inputs
32574 (("rust-console-error-panic-hook" ,rust-console-error-panic-hook-0.1)
32575 ("rust-js-sys" ,rust-js-sys-0.3)
32576 ("rust-scoped-tls" ,rust-scoped-tls-1.0)
32577 ("rust-wasm-bindgen" ,rust-wasm-bindgen-0.2)
32578 ("rust-wasm-bindgen-futures" ,rust-wasm-bindgen-futures-0.4)
32579 ("rust-wasm-bindgen-test-macro" ,rust-wasm-bindgen-test-macro-0.3))))
32580 (home-page "https://github.com/rustwasm/wasm-bindgen")
32581 (synopsis
32582 "Internal testing crate for wasm-bindgen")
32583 (description
32584 "Internal testing crate for wasm-bindgen.")
32585 (license (list license:expat license:asl2.0))))
32586
32587 (define-public rust-wasm-bindgen-test-0.2
32588 (package
32589 (inherit rust-wasm-bindgen-test-0.3)
32590 (name "rust-wasm-bindgen-test")
32591 (version "0.2.50")
32592 (source
32593 (origin
32594 (method url-fetch)
32595 (uri (crate-uri "wasm-bindgen-test" version))
32596 (file-name
32597 (string-append name "-" version ".tar.gz"))
32598 (sha256
32599 (base32 "1h96phc1dmwwqn46k05j2y1mc3ljazh8f1gqqy0x8hm7ccxnknd2"))))
32600 (arguments
32601 `(#:skip-build? #t
32602 #:cargo-inputs
32603 (("rust-console-error-panic-hook" ,rust-console-error-panic-hook-0.1)
32604 ("rust-futures" ,rust-futures-0.1)
32605 ("rust-js-sys" ,rust-js-sys-0.3)
32606 ("rust-scoped-tls" ,rust-scoped-tls-1.0)
32607 ("rust-wasm-bindgen" ,rust-wasm-bindgen-0.2)
32608 ("rust-wasm-bindgen-futures" ,rust-wasm-bindgen-futures-0.3)
32609 ("rust-wasm-bindgen-test-macro" ,rust-wasm-bindgen-test-macro-0.2))))))
32610
32611 (define-public rust-wasm-bindgen-test-crate-a-0.1
32612 (package
32613 (name "rust-wasm-bindgen-test-crate-a")
32614 (version "0.1.0")
32615 (source
32616 (origin
32617 (method url-fetch)
32618 (uri (crate-uri "wasm-bindgen-test-crate-a" version))
32619 (file-name
32620 (string-append name "-" version ".tar.gz"))
32621 (sha256
32622 (base32
32623 "06l9rcxykg2vnp706a6axchjp6lh9ym1awwyyxzmbkv410kqwvsp"))))
32624 (build-system cargo-build-system)
32625 (arguments
32626 `(#:skip-build? #t
32627 #:cargo-inputs
32628 (("rust-wasm-bindgen" ,rust-wasm-bindgen-0.2))))
32629 (home-page "https://github.com/rustwasm/wasm-bindgen")
32630 (synopsis "Internal test crate for wasm-bindgen")
32631 (description
32632 "Internal test crate for wasm-bindgen.")
32633 (license license:expat)))
32634
32635 (define-public rust-wasm-bindgen-test-crate-b-0.1
32636 (package
32637 (name "rust-wasm-bindgen-test-crate-b")
32638 (version "0.1.0")
32639 (source
32640 (origin
32641 (method url-fetch)
32642 (uri (crate-uri "wasm-bindgen-test-crate-b" version))
32643 (file-name
32644 (string-append name "-" version ".tar.gz"))
32645 (sha256
32646 (base32
32647 "16p3gx9vhngdf236zxx2qijqx5sq0lid25j8wy6j522ybxs4vbh8"))))
32648 (build-system cargo-build-system)
32649 (arguments
32650 `(#:skip-build? #t
32651 #:cargo-inputs
32652 (("rust-wasm-bindgen" ,rust-wasm-bindgen-0.2))))
32653 (home-page "https://github.com/rustwasm/wasm-bindgen")
32654 (synopsis "Internal test crate for wasm-bindgen")
32655 (description
32656 "Internal test crate for wasm-bindgen.")
32657 (license (list license:expat license:asl2.0))))
32658
32659 (define-public rust-wasm-bindgen-test-macro-0.3
32660 (package
32661 (name "rust-wasm-bindgen-test-macro")
32662 (version "0.3.8")
32663 (source
32664 (origin
32665 (method url-fetch)
32666 (uri (crate-uri "wasm-bindgen-test-macro" version))
32667 (file-name
32668 (string-append name "-" version ".tar.gz"))
32669 (sha256
32670 (base32
32671 "0kybf3shpp8ysz4v4j259d7vad9kw5bs4i4dlfrs895bhdp7m0wp"))))
32672 (build-system cargo-build-system)
32673 (arguments
32674 `(#:cargo-inputs
32675 (("rust-proc-macro2" ,rust-proc-macro2-1)
32676 ("rust-quote" ,rust-quote-1))))
32677 (home-page "https://github.com/rustwasm/wasm-bindgen")
32678 (synopsis "Internal testing macro for wasm-bindgen")
32679 (description
32680 "This library contains the internal testing macro for wasm-bindgen.")
32681 (license (list license:expat license:asl2.0))))
32682
32683 (define-public rust-wasm-bindgen-test-macro-0.2
32684 (package
32685 (inherit rust-wasm-bindgen-test-macro-0.3)
32686 (name "rust-wasm-bindgen-test-macro")
32687 (version "0.2.50")
32688 (source
32689 (origin
32690 (method url-fetch)
32691 (uri (crate-uri "wasm-bindgen-test-macro" version))
32692 (file-name (string-append name "-" version ".crate"))
32693 (sha256
32694 (base32
32695 "19bvmw8mqlwh6wkbzgs3cnlkywrv8q2kkqggz6y0p158930xm287"))))
32696 (arguments
32697 `(#:cargo-inputs
32698 (("rust-proc-macro2" ,rust-proc-macro2-0.4)
32699 ("rust-quote" ,rust-quote-0.6))))))
32700
32701 (define-public rust-wasm-bindgen-webidl-0.2
32702 (package
32703 (name "rust-wasm-bindgen-webidl")
32704 (version "0.2.58")
32705 (source
32706 (origin
32707 (method url-fetch)
32708 (uri (crate-uri "wasm-bindgen-webidl" version))
32709 (file-name
32710 (string-append name "-" version ".tar.gz"))
32711 (sha256
32712 (base32
32713 "0pcpaw8w3xgfrg9y24ljrsl2bkidgdaaz3ka2bgk417wjc6jl0gg"))))
32714 (build-system cargo-build-system)
32715 (arguments
32716 `(#:skip-build? #t
32717 #:cargo-inputs
32718 (("rust-anyhow" ,rust-anyhow-1.0)
32719 ("rust-heck" ,rust-heck-0.3)
32720 ("rust-log" ,rust-log-0.4)
32721 ("rust-proc-macro2" ,rust-proc-macro2-1)
32722 ("rust-quote" ,rust-quote-1)
32723 ("rust-syn" ,rust-syn-1)
32724 ("rust-wasm-bindgen-backend" ,rust-wasm-bindgen-backend-0.2)
32725 ("rust-weedle" ,rust-weedle-0.10))))
32726 (home-page "https://rustwasm.github.io/wasm-bindgen/")
32727 (synopsis "Support for parsing WebIDL specific to wasm-bindgen")
32728 (description
32729 "Support for parsing WebIDL specific to wasm-bindgen.")
32730 (license (list license:expat license:asl2.0))))
32731
32732 (define-public rust-web-sys-0.3
32733 (package
32734 (name "rust-web-sys")
32735 (version "0.3.37")
32736 (source
32737 (origin
32738 (method url-fetch)
32739 (uri (crate-uri "web-sys" version))
32740 (file-name
32741 (string-append name "-" version ".tar.gz"))
32742 (sha256
32743 (base32
32744 "1jy4q5jawzg3dxzhfwa0g3fsz7h4j0ra6y232ikc6mlcimj52vrd"))))
32745 (build-system cargo-build-system)
32746 (arguments
32747 `(#:cargo-inputs
32748 (("rust-js-sys" ,rust-js-sys-0.3)
32749 ("rust-wasm-bindgen" ,rust-wasm-bindgen-0.2))
32750 #:cargo-development-inputs
32751 (("rust-wasm-bindgen-futures" ,rust-wasm-bindgen-futures-0.4)
32752 ("rust-wasm-bindgen-test" ,rust-wasm-bindgen-test-0.3))))
32753 (home-page "https://rustwasm.github.io/wasm-bindgen/web-sys/index.html")
32754 (synopsis
32755 "Bindings for all Web APIs, a procedurally generated crate from WebIDL")
32756 (description
32757 "Bindings for all Web APIs, a procedurally generated crate from WebIDL.")
32758 (license (list license:expat license:asl2.0))))
32759
32760 (define-public rust-webpki-0.21
32761 (package
32762 (name "rust-webpki")
32763 (version "0.21.2")
32764 (source
32765 (origin
32766 (method url-fetch)
32767 (uri (crate-uri "webpki" version))
32768 (file-name (string-append name "-" version ".tar.gz"))
32769 (sha256
32770 (base32 "1vv3x2alvczfy6jhx79c9h00d1nliqf7s5jlvcd6npc6f8chxxgi"))))
32771 (build-system cargo-build-system)
32772 (arguments
32773 `(#:tests? #f ;; tests fail to build "missing file tests/ed25519/ee.der"
32774 #:cargo-inputs
32775 (("rust-ring" ,rust-ring-0.16)
32776 ("rust-untrusted" ,rust-untrusted-0.7))
32777 #:cargo-development-inputs
32778 (("rust-base64" ,rust-base64-0.9))))
32779 (home-page "https://github.com/briansmith/webpki")
32780 (synopsis "Web PKI X.509 Certificate Verification")
32781 (description "This package provides Web PKI X.509 Certificate
32782 Verification.")
32783 (license license:isc)))
32784
32785 (define-public rust-webpki-0.19
32786 (package
32787 (inherit rust-webpki-0.21)
32788 (name "rust-webpki")
32789 (version "0.19.1")
32790 (source
32791 (origin
32792 (method url-fetch)
32793 (uri (crate-uri "webpki" version))
32794 (file-name
32795 (string-append name "-" version ".tar.gz"))
32796 (sha256
32797 (base32
32798 "10nhyxlqsa4caxlxrijm5h79rdg6ld8hqy78ldjnnfhaj3biqzjg"))))
32799 (arguments
32800 `(#:tests? #f ; tests fail to build "missing file tests/ed25519/ee.der"
32801 #:cargo-inputs
32802 (("rust-ring" ,rust-ring-0.14)
32803 ("rust-untrusted" ,rust-untrusted-0.6))
32804 #:cargo-development-inputs
32805 (("rust-base64" ,rust-base64-0.9))))))
32806
32807 (define-public rust-webpki-0.18
32808 (package/inherit rust-webpki-0.21
32809 (name "rust-webpki")
32810 (version "0.18.1")
32811 (source
32812 (origin
32813 (method url-fetch)
32814 (uri (crate-uri "webpki" version))
32815 (file-name (string-append name "-" version ".tar.gz"))
32816 (sha256
32817 (base32 "0zx1v8afa4ig97dyqfrnlj5i7pib6dnfw88qn2iiqhfq2rrrdmqp"))))
32818 (build-system cargo-build-system)
32819 (arguments
32820 `(#:cargo-inputs
32821 (("rust-ring" ,rust-ring-0.13)
32822 ("rust-untrusted" ,rust-untrusted-0.6))
32823 #:cargo-development-inputs
32824 (("rust-base64" ,rust-base64-0.9))))))
32825
32826 (define-public rust-webpki-roots-0.20
32827 (package
32828 (name "rust-webpki-roots")
32829 (version "0.20.0")
32830 (source
32831 (origin
32832 (method url-fetch)
32833 (uri (crate-uri "webpki-roots" version))
32834 (file-name (string-append name "-" version ".tar.gz"))
32835 (sha256
32836 (base32
32837 "17qpmyym1lsi967b4nc3112nb13ism8731bhjqd9hlajafkxw80g"))))
32838 (build-system cargo-build-system)
32839 (arguments
32840 `(#:cargo-inputs
32841 (("rust-webpki" ,rust-webpki-0.21))))
32842 (home-page "https://github.com/ctz/webpki-roots")
32843 (synopsis "Mozilla's CA root certificates for use with webpki")
32844 (description "This package provides Mozilla's CA root certificates for use
32845 with webpki.")
32846 (license license:mpl2.0)))
32847
32848 (define-public rust-webpki-roots-0.19
32849 (package
32850 (inherit rust-webpki-roots-0.20)
32851 (name "rust-webpki-roots")
32852 (version "0.19.0")
32853 (source
32854 (origin
32855 (method url-fetch)
32856 (uri (crate-uri "webpki-roots" version))
32857 (file-name
32858 (string-append name "-" version ".tar.gz"))
32859 (sha256
32860 (base32
32861 "0fapdqwbfv0kncplpvbgnr0bjd5a9krlpij9jdzk0mvaa6vz9vzq"))))))
32862
32863 (define-public rust-webpki-roots-0.18
32864 (package
32865 (inherit rust-webpki-roots-0.19)
32866 (name "rust-webpki-roots")
32867 (version "0.18.0")
32868 (source
32869 (origin
32870 (method url-fetch)
32871 (uri (crate-uri "webpki-roots" version))
32872 (file-name (string-append name "-" version ".tar.gz"))
32873 (sha256
32874 (base32 "1d4ss607rgi9pj01zzqa13c1p3m35z314yh6lmjaj4kzvwv5gkci"))))))
32875
32876 (define-public rust-webpki-roots-0.17
32877 (package/inherit rust-webpki-roots-0.18
32878 (name "rust-webpki-roots")
32879 (version "0.17.0")
32880 (source
32881 (origin
32882 (method url-fetch)
32883 (uri (crate-uri "webpki-roots" version))
32884 (file-name (string-append name "-" version ".tar.gz"))
32885 (sha256
32886 (base32 "12vi8dh0yik0h4f0b9dnlw5i3gxyky7iblbksh6zcq4xvlvswqm2"))))))
32887
32888 (define-public rust-webpki-roots-0.16
32889 (package
32890 (inherit rust-webpki-roots-0.17)
32891 (name "rust-webpki-roots")
32892 (version "0.16.0")
32893 (source
32894 (origin
32895 (method url-fetch)
32896 (uri (crate-uri "webpki-roots" version))
32897 (file-name
32898 (string-append name "-" version ".tar.gz"))
32899 (sha256
32900 (base32
32901 "03ny02mwqdgd2ff23k03kbwr2rrcaymxhp7jcjjikfh340hs83y1"))))
32902 (arguments
32903 `(#:cargo-inputs
32904 (("rust-untrusted" ,rust-untrusted-0.6)
32905 ("rust-webpki" ,rust-webpki-0.19))))))
32906
32907 (define-public rust-webpki-roots-0.14
32908 (package/inherit rust-webpki-roots-0.18
32909 (name "rust-webpki-roots")
32910 (version "0.14.0")
32911 (source
32912 (origin
32913 (method url-fetch)
32914 (uri (crate-uri "webpki-roots" version))
32915 (file-name (string-append name "-" version ".tar.gz"))
32916 (sha256
32917 (base32 "05zw919077i3jadbvdsvl69wv2siijg2pjbykl6fyi7hmgb7bggd"))))
32918 (arguments
32919 `(#:cargo-inputs
32920 (("rust-untrusted" ,rust-untrusted-0.6)
32921 ("rust-webpki" ,rust-webpki-0.18))))))
32922
32923 (define-public rust-weedle-0.10
32924 (package
32925 (name "rust-weedle")
32926 (version "0.10.0")
32927 (source
32928 (origin
32929 (method url-fetch)
32930 (uri (crate-uri "weedle" version))
32931 (file-name
32932 (string-append name "-" version ".tar.gz"))
32933 (sha256
32934 (base32
32935 "0r0i2kllvkn9jil6cjzxdi1zsc6p1gjyk751w8lyclaii1q3zd1v"))))
32936 (build-system cargo-build-system)
32937 (arguments
32938 `(#:cargo-inputs (("rust-nom" ,rust-nom-4.2))))
32939 (home-page "https://github.com/rustwasm/weedle")
32940 (synopsis "WebIDL Parser")
32941 (description
32942 "This package provides a WebIDL Parser.")
32943 (license license:expat)))
32944
32945 (define-public rust-which-3
32946 (package
32947 (name "rust-which")
32948 (version "3.1.1")
32949 (source
32950 (origin
32951 (method url-fetch)
32952 (uri (crate-uri "which" version))
32953 (file-name
32954 (string-append name "-" version ".tar.gz"))
32955 (sha256
32956 (base32
32957 "094pw9pi48szshn9ln69z2kg7syq1jp80h5ps1qncbsaw4d0f4fh"))))
32958 (build-system cargo-build-system)
32959 (arguments
32960 `(#:skip-build? #t
32961 #:cargo-inputs
32962 (("rust-failure" ,rust-failure-0.1)
32963 ("rust-libc" ,rust-libc-0.2))))
32964 (home-page "https://github.com/harryfei/which-rs.git")
32965 (synopsis "Rust equivalent of Unix command \"which\"")
32966 (description
32967 "This package provides a Rust equivalent of Unix command \"which\". Locate
32968 installed executable in cross platforms.")
32969 (license license:expat)))
32970
32971 (define-public rust-which-2.0
32972 (package
32973 (name "rust-which")
32974 (version "2.0.1")
32975 (source
32976 (origin
32977 (method url-fetch)
32978 (uri (crate-uri "which" version))
32979 (file-name
32980 (string-append name "-" version ".tar.gz"))
32981 (sha256
32982 (base32
32983 "0r7i793sc0xqnd2fxnqbksj7j1kx65bwn81b8z49750v4c8cnymm"))))
32984 (build-system cargo-build-system)
32985 (arguments
32986 `(#:skip-build? #t
32987 #:cargo-inputs
32988 (("rust-failure" ,rust-failure-0.1)
32989 ("rust-libc" ,rust-libc-0.2))
32990 #:cargo-development-inputs
32991 (("rust-tempdir" ,rust-tempdir-0.3))))
32992 (home-page "https://github.com/harryfei/which-rs")
32993 (synopsis "Rust equivalent of Unix command \"which\"")
32994 (description
32995 "This package provides a Rust equivalent of Unix command \"which\".
32996 Locate installed executable in cross platforms.")
32997 (license license:expat)))
32998
32999 (define-public rust-which-1.0
33000 (package
33001 (inherit rust-which-2.0)
33002 (name "rust-which")
33003 (version "1.0.5")
33004 (source
33005 (origin
33006 (method url-fetch)
33007 (uri (crate-uri "which" version))
33008 (file-name
33009 (string-append name "-" version ".tar.gz"))
33010 (sha256
33011 (base32
33012 "1cjwa57kzfgzs681a27m5pjmq580pv3hkcg23smf270bgqz60jp8"))))
33013 (arguments
33014 `(#:tests? #f
33015 #:cargo-inputs
33016 (("rust-libc" ,rust-libc-0.2))
33017 #:cargo-development-inputs
33018 (("rust-tempdir" ,rust-tempdir-0.3))))))
33019
33020 (define-public rust-wide-0.4
33021 (package
33022 (name "rust-wide")
33023 (version "0.4.6")
33024 (source
33025 (origin
33026 (method url-fetch)
33027 (uri (crate-uri "wide" version))
33028 (file-name
33029 (string-append name "-" version ".tar.gz"))
33030 (sha256
33031 (base32
33032 "0ad75vnzygj8qfcl1l9n4wi93xmqzvhqlpqn4hfayrwbn6wa69aq"))))
33033 (build-system cargo-build-system)
33034 (arguments
33035 `(#:cargo-inputs
33036 (("rust-bytemuck" ,rust-bytemuck-1))))
33037 (home-page "https://github.com/Lokathor/wide")
33038 (synopsis "Rust for wide blocks")
33039 (description "This crate has data types for blocks of primitives packed
33040 together and used as a single unit. This works very well with SIMD/vector
33041 hardware of various targets. Both in terms of explicit SIMD usage and also in
33042 terms of allowing LLVM's auto-vectorizer to do its job.")
33043 (license license:zlib)))
33044
33045 (define-public rust-widestring-0.4
33046 (package
33047 (name "rust-widestring")
33048 (version "0.4.2")
33049 (source
33050 (origin
33051 (method url-fetch)
33052 (uri (crate-uri "widestring" version))
33053 (file-name (string-append name "-" version ".crate"))
33054 (sha256
33055 (base32
33056 "13565qy4jhpg4x0xw8mwxzzsh0p8c93p5208lh6kpwp0q01y6qx7"))))
33057 (build-system cargo-build-system)
33058 (arguments
33059 `(#:cargo-development-inputs
33060 (("rust-winapi" ,rust-winapi-0.3))))
33061 (home-page "https://github.com/starkat99/widestring-rs")
33062 (synopsis "Wide string Rust FFI library")
33063 (description
33064 "A wide string Rust FFI library for converting to and from wide strings,
33065 such as those often used in Windows API or other FFI libraries. Both UTF-16 and
33066 UTF-32 types are provided, including support for malformed encoding.")
33067 (license (list license:asl2.0
33068 license:expat))))
33069
33070 (define-public rust-winapi-0.3
33071 (package
33072 (name "rust-winapi")
33073 (version "0.3.9")
33074 (source
33075 (origin
33076 (method url-fetch)
33077 (uri (crate-uri "winapi" version))
33078 (file-name (string-append name "-" version ".crate"))
33079 (sha256
33080 (base32
33081 "06gl025x418lchw1wxj64ycr7gha83m44cjr5sarhynd9xkrm0sw"))))
33082 (build-system cargo-build-system)
33083 ;; This package depends unconditionally on these two crates.
33084 (arguments
33085 `(#:cargo-inputs
33086 (("winapi-i686-pc-windows-gnu" ,rust-winapi-i686-pc-windows-gnu-0.4)
33087 ("winapi-x86-64-pc-windows-gnu" ,rust-winapi-x86-64-pc-windows-gnu-0.4))))
33088 (home-page "https://github.com/retep998/winapi-rs")
33089 (synopsis "Raw FFI bindings for all of Windows API")
33090 (description
33091 "Raw FFI bindings for all of Windows API.")
33092 (license (list license:asl2.0
33093 license:expat))))
33094
33095 (define-public rust-winapi-0.2
33096 (package
33097 (inherit rust-winapi-0.3)
33098 (name "rust-winapi")
33099 (version "0.2.8")
33100 (source
33101 (origin
33102 (method url-fetch)
33103 (uri (crate-uri "winapi" version))
33104 (file-name (string-append name "-" version ".crate"))
33105 (sha256
33106 (base32
33107 "0yh816lh6lf56dpsgxy189c2ai1z3j8mw9si6izqb6wsjkbcjz8n"))))
33108 (arguments '(#:skip-build? #t))))
33109
33110 (define-public rust-winapi-build-0.1
33111 (package
33112 (name "rust-winapi-build")
33113 (version "0.1.1")
33114 (source
33115 (origin
33116 (method url-fetch)
33117 (uri (crate-uri "winapi-build" version))
33118 (file-name (string-append name "-" version ".crate"))
33119 (sha256
33120 (base32
33121 "1g4rqsgjky0a7530qajn2bbfcrl2v0zb39idgdws9b1l7gp5wc9d"))))
33122 (build-system cargo-build-system)
33123 (home-page "https://github.com/retep998/winapi-rs")
33124 (synopsis "Common code for build.rs in WinAPI -sys crates")
33125 (description
33126 "Common code for build.rs in WinAPI -sys crates.")
33127 (license license:expat)))
33128
33129 (define-public rust-winapi-i686-pc-windows-gnu-0.4
33130 (package
33131 (name "rust-winapi-i686-pc-windows-gnu")
33132 (version "0.4.0")
33133 (source
33134 (origin
33135 (method url-fetch)
33136 (uri (crate-uri "winapi-i686-pc-windows-gnu" version))
33137 (file-name (string-append name "-" version ".crate"))
33138 (sha256
33139 (base32
33140 "1dmpa6mvcvzz16zg6d5vrfy4bxgg541wxrcip7cnshi06v38ffxc"))))
33141 (build-system cargo-build-system)
33142 (home-page "https://github.com/retep998/winapi-rs")
33143 (synopsis "Import libraries for the i686-pc-windows-gnu target")
33144 (description "This crate provides import libraries for the
33145 i686-pc-windows-gnu target. Please don't use this crate directly, depend on
33146 @code{winapi} instead.")
33147 (license (list license:asl2.0
33148 license:expat))))
33149
33150 (define-public rust-winapi-util-0.1
33151 (package
33152 (name "rust-winapi-util")
33153 (version "0.1.5")
33154 (source
33155 (origin
33156 (method url-fetch)
33157 (uri (crate-uri "winapi-util" version))
33158 (file-name (string-append name "-" version ".crate"))
33159 (sha256
33160 (base32
33161 "0y71bp7f6d536czj40dhqk0d55wfbbwqfp2ymqf1an5ibgl6rv3h"))))
33162 (build-system cargo-build-system)
33163 (arguments
33164 `(#:cargo-inputs (("rust-winapi" ,rust-winapi-0.3))))
33165 (home-page "https://github.com/BurntSushi/winapi-util")
33166 (synopsis "Dumping ground for high level safe wrappers over winapi")
33167 (description
33168 "This package provides a dumping ground for high level safe wrappers over
33169 winapi.")
33170 (license (list license:unlicense
33171 license:expat))))
33172
33173 (define-public rust-winapi-x86-64-pc-windows-gnu-0.4
33174 (package
33175 (name "rust-winapi-x86-64-pc-windows-gnu")
33176 (version "0.4.0")
33177 (source
33178 (origin
33179 (method url-fetch)
33180 (uri (crate-uri "winapi-x86_64-pc-windows-gnu" version))
33181 (file-name (string-append name "-" version ".crate"))
33182 (sha256
33183 (base32
33184 "0gqq64czqb64kskjryj8isp62m2sgvx25yyj3kpc2myh85w24bki"))))
33185 (build-system cargo-build-system)
33186 (home-page "https://github.com/retep998/winapi-rs")
33187 (synopsis "Import libraries for the x86_64-pc-windows-gnu target")
33188 (description "This package provides import libraries for the
33189 x86_64-pc-windows-gnu target. Please don't use this crate directly, depend on
33190 @code{winapi} instead.")
33191 (license (list license:asl2.0
33192 license:expat))))
33193
33194 (define-public rust-wincolor-1.0
33195 (package
33196 (name "rust-wincolor")
33197 (version "1.0.3")
33198 (source
33199 (origin
33200 (method url-fetch)
33201 (uri (crate-uri "wincolor" version))
33202 (file-name (string-append name "-" version ".crate"))
33203 (sha256
33204 (base32
33205 "017x33ljndwc76cp5z9llgndn0nh7v8jcjaykbizkawmwy9n3pyp"))))
33206 (build-system cargo-build-system)
33207 (arguments
33208 `(#:cargo-inputs
33209 (("rust-winapi" ,rust-winapi-0.3)
33210 ("rust-winapi-util" ,rust-winapi-util-0.1))))
33211 (home-page "https://github.com/BurntSushi/termcolor/tree/master/wincolor")
33212 (synopsis "Windows API for controlling text color in a Windows console")
33213 (description
33214 "This package provides a simple Windows specific API for controlling text
33215 color in a Windows console.")
33216 (license (list license:unlicense
33217 license:expat))))
33218
33219 (define-public rust-winpty-sys-0.4
33220 (package
33221 (name "rust-winpty-sys")
33222 (version "0.4.3")
33223 (source
33224 (origin
33225 (method url-fetch)
33226 (uri (crate-uri "winpty-sys" version))
33227 (file-name
33228 (string-append name "-" version ".tar.gz"))
33229 (sha256
33230 (base32
33231 "0s5m2vvlw7wphc466s47zfmp08zk00wzj999l1w3ajqlxbnfgb9x"))))
33232 (build-system cargo-build-system)
33233 (arguments
33234 `(#:skip-build? #t
33235 #:cargo-inputs
33236 (("rust-bindgen" ,rust-bindgen-0.33)
33237 ("rust-cc" ,rust-cc-1))))
33238 (home-page "https://github.com/rprichard/winpty")
33239 (synopsis "Rust winpty bindings")
33240 (description "Rust winpty bindings.")
33241 (license license:expat)))
33242
33243 (define-public rust-winreg-0.7
33244 (package
33245 (name "rust-winreg")
33246 (version "0.7.0")
33247 (source
33248 (origin
33249 (method url-fetch)
33250 (uri (crate-uri "winreg" version))
33251 (file-name (string-append name "-" version ".tar.gz"))
33252 (sha256
33253 (base32
33254 "0sdxcyvda4v1v6a0k1j2v1400z3ng323k9a56gxvkq51x21dn801"))))
33255 (build-system cargo-build-system)
33256 (arguments
33257 `(#:cargo-inputs
33258 (("rust-chrono" ,rust-chrono-0.4)
33259 ("rust-serde" ,rust-serde-1)
33260 ("rust-winapi" ,rust-winapi-0.3))
33261 #:cargo-development-inputs
33262 (("rust-rand" ,rust-rand-0.3)
33263 ("rust-serde-derive" ,rust-serde-derive-1))))
33264 (home-page "https://github.com/gentoo90/winreg-rs")
33265 (synopsis "Rust bindings to the MS Windows Registry API")
33266 (description "This package provides Rust bindings to MS Windows Registry
33267 API.")
33268 (license license:expat)))
33269
33270 (define-public rust-winreg-0.6
33271 (package
33272 (name "rust-winreg")
33273 (version "0.6.2")
33274 (source
33275 (origin
33276 (method url-fetch)
33277 (uri (crate-uri "winreg" version))
33278 (file-name
33279 (string-append name "-" version ".tar.gz"))
33280 (sha256
33281 (base32
33282 "1jdcqr6zmvwyrp87h48miasfdvv16gjsb60rc8dy2kqwb3mnv65j"))))
33283 (build-system cargo-build-system)
33284 (arguments
33285 `(#:skip-build? #t
33286 #:cargo-inputs
33287 (("rust-chrono" ,rust-chrono-0.4)
33288 ("rust-serde" ,rust-serde-1)
33289 ("rust-winapi" ,rust-winapi-0.3))
33290 #:cargo-development-inputs
33291 (("rust-rand" ,rust-rand-0.3)
33292 ("rust-serde-derive" ,rust-serde-derive-1))))
33293 (home-page "https://github.com/gentoo90/winreg-rs")
33294 (synopsis "Rust bindings to MS Windows Registry API")
33295 (description
33296 "This package provides Rust bindings to MS Windows Registry API.")
33297 (license license:expat)))
33298
33299 (define-public rust-winutil-0.1
33300 (package
33301 (name "rust-winutil")
33302 (version "0.1.1")
33303 (source
33304 (origin
33305 (method url-fetch)
33306 (uri (crate-uri "winutil" version))
33307 (file-name (string-append name "-" version ".crate"))
33308 (sha256
33309 (base32
33310 "0vkyl3fbbf05n5ph5yz8sfaccrk9x3qsr25560w6w68ldf5i7bvx"))))
33311 (arguments
33312 `(#:skip-build? #t
33313 #:cargo-inputs
33314 (("rust-winapi" ,rust-winapi-0.3))))
33315 (build-system cargo-build-system)
33316 (home-page "https://bitbucket.org/DaveLancaster/winutil")
33317 (synopsis "Library wrapping a handful of useful winapi functions")
33318 (description
33319 "A simple library wrapping a handful of useful winapi functions.")
33320 (license license:expat)))
33321
33322 (define-public rust-ws2-32-sys-0.2
33323 (package
33324 (name "rust-ws2-32-sys")
33325 (version "0.2.1")
33326 (source
33327 (origin
33328 (method url-fetch)
33329 (uri (crate-uri "ws2_32-sys" version))
33330 (file-name (string-append name "-" version ".crate"))
33331 (sha256
33332 (base32
33333 "0ppscg5qfqaw0gzwv2a4nhn5bn01ff9iwn6ysqnzm4n8s3myz76m"))))
33334 (build-system cargo-build-system)
33335 (arguments
33336 `(#:skip-build? #t
33337 #:cargo-inputs
33338 (("rust-winapi" ,rust-winapi-0.2)
33339 ("rust-winapi-build" ,rust-winapi-build-0.1))))
33340 (home-page "https://github.com/retep998/winapi-rs")
33341 (synopsis "Function definitions for the Windows API library ws2_32")
33342 (description
33343 "Contains function definitions for the Windows API library ws2_32.")
33344 (license license:expat)))
33345
33346 (define-public rust-xattr-0.2
33347 (package
33348 (name "rust-xattr")
33349 (version "0.2.2")
33350 (source
33351 (origin
33352 (method url-fetch)
33353 (uri (crate-uri "xattr" version))
33354 (file-name (string-append name "-" version ".crate"))
33355 (sha256
33356 (base32
33357 "0k556fb6f5jc907975j9c8iynl2fqz3rf0w6fiig83i4yi0kfk14"))))
33358 (build-system cargo-build-system)
33359 (arguments
33360 `(#:skip-build? #t
33361 #:cargo-inputs
33362 (("rust-libc" ,rust-libc-0.2))
33363 #:cargo-development-inputs
33364 (("rust-tempfile" ,rust-tempfile-3))))
33365 (home-page "https://github.com/Stebalien/xattr")
33366 (synopsis "Unix extended file system attributes")
33367 (description
33368 "This package provide a small library for setting, getting, and listing
33369 extended attributes.")
33370 (license (list license:asl2.0
33371 license:expat))))
33372
33373 (define-public rust-xcb-0.9
33374 (package
33375 (name "rust-xcb")
33376 (version "0.9.0")
33377 (source
33378 (origin
33379 (method url-fetch)
33380 (uri (crate-uri "xcb" version))
33381 (file-name
33382 (string-append name "-" version ".tar.gz"))
33383 (sha256
33384 (base32
33385 "19i2pm8alpn2f0m4jg8bsw6ckw8irj1wjh55h9pi2fcb2diny1b2"))))
33386 (build-system cargo-build-system)
33387 (arguments
33388 `(#:tests? #f ; Building all the features tests the code.
33389 #:cargo-build-flags '("--features" "debug_all")
33390 #:cargo-inputs
33391 (("rust-libc" ,rust-libc-0.2)
33392 ("rust-log" ,rust-log-0.4)
33393 ("rust-x11" ,rust-x11-2))))
33394 (inputs
33395 `(("libx11" ,libx11)
33396 ("libxcb" ,libxcb)
33397 ("xcb-proto" ,xcb-proto)))
33398 (native-inputs
33399 `(("pkg-config" ,pkg-config)
33400 ("python" ,python)))
33401 (home-page "https://github.com/rtbo/rust-xcb")
33402 (synopsis "Rust bindings and wrappers for XCB")
33403 (description
33404 "This package provides Rust bindings and wrappers for XCB.")
33405 (license license:expat)))
33406
33407 (define-public rust-xdg-2.2
33408 (package
33409 (name "rust-xdg")
33410 (version "2.2.0")
33411 (source
33412 (origin
33413 (method url-fetch)
33414 (uri (crate-uri "xdg" version))
33415 (file-name (string-append name "-" version ".crate"))
33416 (sha256
33417 (base32 "0mws8a0fr3cqk5nh7aq9lmkmhzghvasqy4mhw6nnza06l4d6i2fh"))))
33418 (build-system cargo-build-system)
33419 (home-page "https://github.com/whitequark/rust-xdg")
33420 (synopsis "Store and retrieve files according to XDG specification")
33421 (description
33422 "This package provides a library for storing and retrieving files according
33423 to XDG Base Directory specification.")
33424 (license (list license:asl2.0
33425 license:expat))))
33426
33427 (define-public rust-xml-rs-0.8
33428 (package
33429 (name "rust-xml-rs")
33430 (version "0.8.3")
33431 (source
33432 (origin
33433 (method url-fetch)
33434 (uri (crate-uri "xml-rs" version))
33435 (file-name
33436 (string-append name "-" version ".tar.gz"))
33437 (sha256
33438 (base32
33439 "12ndxyhzxw2zdr76ql8nfdwb2vwhvdkrxwk4pbjafqfglmjv0zdh"))
33440 (modules '((guix build utils)))
33441 (snippet
33442 '(begin
33443 ;; 'doctest' isn't stable until rust-1.40
33444 (substitute* "src/lib.rs"
33445 (("\\(doctest") "(test"))
33446 #t))))
33447 (build-system cargo-build-system)
33448 (arguments
33449 `(#:cargo-development-inputs
33450 (("rust-doc-comment" ,rust-doc-comment-0.3)
33451 ("rust-lazy-static" ,rust-lazy-static-1))))
33452 (home-page "https://github.com/netvl/xml-rs")
33453 (synopsis "XML library in pure Rust")
33454 (description "An XML library in pure Rust.")
33455 (license license:expat)))
33456
33457 (define-public rust-xml-rs-0.7
33458 (package
33459 (name "rust-xml-rs")
33460 (version "0.7.0")
33461 (source
33462 (origin
33463 (method url-fetch)
33464 (uri (crate-uri "xml-rs" version))
33465 (file-name
33466 (string-append name "-" version ".tar.gz"))
33467 (sha256
33468 (base32
33469 "1hp9kf80y9qm3aiqg5psyshqfkcrjgifbcm2c2nc5qlzs80vc71w"))))
33470 (build-system cargo-build-system)
33471 (arguments
33472 `(#:cargo-test-flags '("--release" "--lib")
33473 #:cargo-inputs
33474 (("rust-bitflags" ,rust-bitflags-1))))
33475 (home-page "https://github.com/netvl/xml-rs")
33476 (synopsis "XML library in pure Rust")
33477 (description "An XML library in pure Rust.")
33478 (license license:expat)))
33479
33480 (define-public rust-xml5ever-0.16
33481 (package
33482 (name "rust-xml5ever")
33483 (version "0.16.1")
33484 (source
33485 (origin
33486 (method url-fetch)
33487 (uri (crate-uri "xml5ever" version))
33488 (file-name
33489 (string-append name "-" version ".tar.gz"))
33490 (sha256
33491 (base32
33492 "0nbapmdrn4zqry5p01l2mmbb48fcq0gga377p1c4lkb1x3k546qb"))))
33493 (build-system cargo-build-system)
33494 (arguments
33495 `(#:cargo-inputs
33496 (("rust-log" ,rust-log-0.4)
33497 ("rust-mac" ,rust-mac-0.1)
33498 ("rust-markup5ever" ,rust-markup5ever-0.10)
33499 ("rust-time" ,rust-time-0.1))
33500 #:cargo-development-inputs
33501 (("rust-criterion" ,rust-criterion-0.3)
33502 ("rust-rustc-test" ,rust-rustc-test-0.3))))
33503 (home-page
33504 "https://github.com/servo/html5ever/blob/master/xml5ever/README.md")
33505 (synopsis "Push based streaming parser for xml")
33506 (description
33507 "Push based streaming parser for xml.")
33508 (license (list license:expat license:asl2.0))))
33509
33510 (define-public rust-xz2-0.1
33511 (package
33512 (name "rust-xz2")
33513 (version "0.1.6")
33514 (source
33515 (origin
33516 (method url-fetch)
33517 (uri (crate-uri "xz2" version))
33518 (file-name (string-append name "-" version ".tar.gz"))
33519 (sha256
33520 (base32
33521 "0v4jb0193gx8s1kvd2ajsgh0ffmwhqhfmrrw1n1h2z7w6jgqcyf1"))))
33522 (build-system cargo-build-system)
33523 (arguments
33524 `(#:tests? #f ; Not all files included in the tarball.
33525 #:cargo-inputs
33526 (("rust-futures" ,rust-futures-0.1)
33527 ("rust-lzma-sys" ,rust-lzma-sys-0.1)
33528 ("rust-tokio-io" ,rust-tokio-io-0.1))
33529 #:cargo-development-inputs
33530 (("rust-quickcheck" ,rust-quickcheck-0.7)
33531 ("rust-rand" ,rust-rand-0.5)
33532 ("rust-tokio-core" ,rust-tokio-core-0.1))))
33533 (native-inputs
33534 `(("pkg-config" ,pkg-config)
33535 ("xz" ,xz)))
33536 (home-page "https://github.com/alexcrichton/xz2-rs")
33537 (synopsis "Rust bindings to liblzma")
33538 (description "This package provides Rust bindings to liblzma providing
33539 Read/Write streams as well as low-level in-memory encoding and decoding.")
33540 (license (list license:expat license:asl2.0))))
33541
33542 (define-public rust-yaml-rust-0.4
33543 (package
33544 (name "rust-yaml-rust")
33545 (version "0.4.4")
33546 (source
33547 (origin
33548 (method url-fetch)
33549 (uri (crate-uri "yaml-rust" version))
33550 (file-name (string-append name "-" version ".tar.gz"))
33551 (sha256
33552 (base32 "038byay0dxsz6isckviz4qshfpyjqmyvda7pq96i6d53y4ickw1r"))))
33553 (build-system cargo-build-system)
33554 (arguments
33555 `(#:cargo-inputs
33556 (("rust-linked-hash-map" ,rust-linked-hash-map-0.5))
33557 #:cargo-development-inputs
33558 (("rust-quickcheck" ,rust-quickcheck-0.9))))
33559 (home-page "https://chyh1990.github.io/yaml-rust/")
33560 (synopsis "The missing YAML 1.2 parser for rust")
33561 (description
33562 "The missing YAML 1.2 parser for rust.")
33563 (license (list license:asl2.0 license:expat))))
33564
33565 (define-public rust-yaml-rust-0.3
33566 (package
33567 (inherit rust-yaml-rust-0.4)
33568 (name "rust-yaml-rust")
33569 (version "0.3.5")
33570 (source
33571 (origin
33572 (method url-fetch)
33573 (uri (crate-uri "yaml-rust" version))
33574 (file-name (string-append name "-" version ".tar.gz"))
33575 (sha256
33576 (base32
33577 "14m9dzwb8fb05f4jjb4nqp49rxd9c5vcmwpv3a04d2y5iphncqz6"))))
33578 (arguments
33579 `(#:cargo-inputs
33580 (("rust-clippy" ,rust-clippy-0.0)
33581 ("rust-linked-hash-map" ,rust-linked-hash-map-0.3))))))
33582
33583 (define-public rust-zbase32-0.1
33584 (package
33585 (name "rust-zbase32")
33586 (version "0.1.2")
33587 (source
33588 (origin
33589 (method url-fetch)
33590 (uri (crate-uri "zbase32" version))
33591 (file-name (string-append name "-" version ".tar.gz"))
33592 (sha256
33593 (base32 "0gz3nmiaidscb5c85rh3qxi8i584gz5xm3amlxqminl8jq27k40g"))))
33594 (build-system cargo-build-system)
33595 (arguments
33596 `(#:skip-build? #t ;; dependency cypthon not yet availalbe
33597 #:cargo-development-inputs
33598 (;; ("rust-cpython" ,rust-cpython-0.2) TODO
33599 ("rust-quickcheck" ,rust-quickcheck-0.7)
33600 ("rust-rand" ,rust-rand-0.6))))
33601 (home-page "https://gitlab.com/pgerber/zbase32-rust")
33602 (synopsis "Implementation of zbase32")
33603 (description "This package provides an implementation of zbase32.")
33604 (license license:lgpl3+)))
33605
33606 (define-public rust-zeroize-1
33607 (package
33608 (name "rust-zeroize")
33609 (version "1.1.0")
33610 (source
33611 (origin
33612 (method url-fetch)
33613 (uri (crate-uri "zeroize" version))
33614 (file-name
33615 (string-append name "-" version ".tar.gz"))
33616 (sha256
33617 (base32 "1f5547q8l8bpi16yy6lix2gl9rf1qz45lj06bq7wjk525gnw5fiw"))))
33618 (build-system cargo-build-system)
33619 (arguments
33620 `(#:tests? #f ;2 doc tests fail
33621 #:cargo-inputs
33622 (("rust-zeroize-derive" ,rust-zeroize-derive-1))))
33623 (home-page "https://github.com/iqlusioninc/crates/")
33624 (synopsis "Securely clear secrets from memory")
33625 (description
33626 "Zeroize securely clears secrets from memory with a simple trait built on
33627 stable Rust primitives, which guarantee memory is zeroed using an operation
33628 will not be ``optimized away'' by the compiler. It uses a portable pure Rust
33629 implementation that works everywhere, even WASM!")
33630 (license (list license:asl2.0 license:expat))))
33631
33632 (define-public rust-zeroize-derive-1
33633 (package
33634 (name "rust-zeroize-derive")
33635 (version "1.0.0")
33636 (source
33637 (origin
33638 (method url-fetch)
33639 (uri (crate-uri "zeroize-derive" version))
33640 (file-name
33641 (string-append name "-" version ".tar.gz"))
33642 (sha256
33643 (base32 "18lc9xq9dwvmv81y3bqnw20974nbrs7d20rljb1inz7wd7n1w9fy"))))
33644 (build-system cargo-build-system)
33645 (arguments
33646 `(#:cargo-inputs
33647 (("rust-proc-macro2" ,rust-proc-macro2-1)
33648 ("rust-quote" ,rust-quote-1)
33649 ("rust-syn" ,rust-syn-1)
33650 ("rust-synstructure" ,rust-synstructure-0.12))))
33651 (home-page "https://github.com/iqlusioninc/crates/")
33652 (synopsis "Custom derive support for zeroize")
33653 (description "This crate provides custom derive support for Zeroize.")
33654 (license (list license:asl2.0 license:expat))))
33655
33656 (define-public rust-zip-0.5
33657 (package
33658 (name "rust-zip")
33659 (version "0.5.6")
33660 (source
33661 (origin
33662 (method url-fetch)
33663 (uri (crate-uri "zip" version))
33664 (file-name
33665 (string-append name "-" version ".tar.gz"))
33666 (sha256
33667 (base32
33668 "0zfv0ascxl8gqqxgjck99kypcb0f67lg2k1a3zwza1w5swl7qa2q"))))
33669 (build-system cargo-build-system)
33670 (arguments
33671 `(#:cargo-inputs
33672 (("rust-bzip2" ,rust-bzip2-0.3)
33673 ("rust-crc32fast" ,rust-crc32fast-1)
33674 ("rust-flate2" ,rust-flate2-1)
33675 ("rust-podio" ,rust-podio-0.1)
33676 ("rust-time" ,rust-time-0.1))
33677 #:cargo-development-inputs
33678 (("rust-bencher" ,rust-bencher-0.1)
33679 ("rust-rand" ,rust-rand-0.4)
33680 ("rust-walkdir" ,rust-walkdir-1))))
33681 (home-page "https://github.com/mvdnes/zip-rs.git")
33682 (synopsis
33683 "Library to support the reading and writing of zip files")
33684 (description
33685 "Library to support the reading and writing of zip files.")
33686 (license license:expat)))
33687
33688 (define-public rust-zoneinfo-compiled-0.4
33689 (package
33690 (name "rust-zoneinfo-compiled")
33691 (version "0.4.8")
33692 (source
33693 (origin
33694 (method url-fetch)
33695 (uri (crate-uri "zoneinfo_compiled" version))
33696 (file-name
33697 (string-append name "-" version ".tar.gz"))
33698 (sha256
33699 (base32
33700 "0bnm19w791q6kp79s0zl1cj9w51bw5xrifrxfy3g1p05i676y4vf"))))
33701 (build-system cargo-build-system)
33702 (arguments
33703 `(#:cargo-inputs
33704 (("rust-byteorder" ,rust-byteorder-1)
33705 ("rust-datetime" ,rust-datetime-0.4))))
33706 (home-page "https://github.com/rust-datetime/zoneinfo-compiled/")
33707 (synopsis "Library for parsing compiled zoneinfo files")
33708 (description
33709 "This package provides a library for parsing compiled zoneinfo files.")
33710 (license license:expat)))
33711
33712 (define-public rust-zstd-0.5
33713 (package
33714 (name "rust-zstd")
33715 (version "0.5.3+zstd.1.4.5")
33716 (source
33717 (origin
33718 (method url-fetch)
33719 (uri (crate-uri "zstd" version))
33720 (file-name (string-append name "-" version ".tar.gz"))
33721 (sha256
33722 (base32
33723 "1n0cgj9i3dk90kn7jcahq5fligqrjfzmnq08hfg71yhyfypjxcq1"))))
33724 (build-system cargo-build-system)
33725 (arguments
33726 `(#:cargo-inputs
33727 (("rust-futures" ,rust-futures-0.1)
33728 ("rust-tokio-io" ,rust-tokio-io-0.1)
33729 ("rust-zstd-safe" ,rust-zstd-safe-2.0.5))
33730 #:cargo-development-inputs
33731 (("rust-clap" ,rust-clap-2)
33732 ("rust-humansize" ,rust-humansize-1)
33733 ("rust-partial-io" ,rust-partial-io-0.3)
33734 ("rust-quickcheck" ,rust-quickcheck-0.6)
33735 ("rust-walkdir" ,rust-walkdir-2))))
33736 (home-page "https://github.com/gyscos/zstd-rs")
33737 (synopsis "Binding to the zstd compression library")
33738 (description "This package provides a binding to the zstd compression
33739 library.")
33740 (license license:expat)))
33741
33742 (define-public rust-zstd-safe-2
33743 (package
33744 (name "rust-zstd-safe")
33745 (version "2.0.5+zstd.1.4.5")
33746 (source
33747 (origin
33748 (method url-fetch)
33749 (uri (crate-uri "zstd-safe" version))
33750 (file-name (string-append name "-" version ".tar.gz"))
33751 (sha256
33752 (base32
33753 "0m8h1x030cj5bj7zxxf6gdp91bp0ays2vi9rlqllgxi71lp69yqw"))))
33754 (build-system cargo-build-system)
33755 (arguments
33756 `(#:cargo-inputs
33757 (("rust-libc" ,rust-libc-0.2)
33758 ("rust-zstd-sys" ,rust-zstd-sys-1.4.17))))
33759 (home-page "https://github.com/gyscos/zstd-rs")
33760 (synopsis "Safe low-level bindings to the zstd compression library")
33761 (description "This package provides safe low-level bindings to the zstd
33762 compression library.")
33763 (license (list license:expat license:asl2.0))))
33764
33765 (define-public rust-zstd-safe-2.0.5 rust-zstd-safe-2)
33766
33767 ;; TODO: Unbundle zstd.
33768 (define-public rust-zstd-sys-1
33769 (package
33770 (name "rust-zstd-sys")
33771 (version "1.4.17+zstd.1.4.5")
33772 (source
33773 (origin
33774 (method url-fetch)
33775 (uri (crate-uri "zstd-sys" version))
33776 (file-name
33777 (string-append name "-" version ".tar.gz"))
33778 (sha256
33779 (base32
33780 "06zhk1j5v1sm04xxrw72lgzyi1wcq7kvj6vbd4ibamph9mj4k4mq"))))
33781 (build-system cargo-build-system)
33782 (arguments
33783 `(#:cargo-inputs
33784 (("rust-libc" ,rust-libc-0.2)
33785 ("rust-bindgen" ,rust-bindgen-0.54)
33786 ("rust-cc" ,rust-cc-1)
33787 ("rust-glob" ,rust-glob-0.3)
33788 ("rust-itertools" ,rust-itertools-0.9)
33789 ("rust-pkg-config" ,rust-pkg-config-0.3))))
33790 (home-page "https://github.com/gyscos/zstd-rs")
33791 (synopsis "Low-level bindings to the zstd compression library")
33792 (description "This package provides low-level Rust bindings to the zstd
33793 compression library.")
33794 (license (list license:expat license:asl2.0))))
33795
33796 (define-public rust-zstd-sys-1.4.17 rust-zstd-sys-1)
33797
33798 (define-public rust-packed-struct
33799 (package
33800 (name "rust-packed-struct")
33801 (version "0.3.0")
33802 (source
33803 (origin
33804 (method url-fetch)
33805 (uri (crate-uri "packed_struct" version))
33806 (file-name
33807 (string-append name "-" version ".tar.gz"))
33808 (sha256
33809 (base32
33810 "10b2fmxchmcigwagnhi42frj74dl02wyv0xwmbr9839qfh7gijlh"))))
33811 (build-system cargo-build-system)
33812 (arguments
33813 `(#:cargo-inputs
33814 (("rust-serde" ,rust-serde-1)
33815 ("rust-serde-derive" ,rust-serde-derive-1))))
33816 (home-page "http://www.hashmismatch.net/libraries/packed-struct/")
33817 (synopsis "Binary-level structure packing and unpacking generator")
33818 (description "This package provides bit-level packing an unpacking
33819 of structs. The library provides a meta-programming approach, using
33820 attributes to define fields and how they should be packed. The resulting
33821 trait implementations provide safe packing, unpacking and runtime debugging
33822 formatters with per-field documentation generated for each structure.
33823
33824 @itemize
33825 @item Plain Rust structures, decorated with attributes
33826 @item MSB or LSB integers of user-defined bit widths
33827 @item Primitive enum code generation helper
33828 @item MSB0 or LSB0 bit positioning
33829 @item Documents the field's packing table
33830 @item Runtime packing visualization
33831 @item Nested packed types
33832 @item Arrays of packed structures as fields
33833 @item Reserved fields, their bits are always 0 or 1
33834 @end itemize")
33835 ;; User can choose either license.
33836 (license (list license:expat license:asl2.0))))
33837
33838 (define-public rust-xmltree-0.8
33839 (package
33840 (name "rust-xmltree")
33841 (version "0.8.0")
33842 (source
33843 (origin
33844 (method url-fetch)
33845 (uri (crate-uri "xmltree" version))
33846 (file-name
33847 (string-append name "-" version ".tar.gz"))
33848 (sha256
33849 (base32
33850 "0w0y0jz7lhxg05ca6ngfj0lj8sbrjh4vaqv13q7qaqkhs7lsx3pz"))))
33851 (build-system cargo-build-system)
33852 (arguments
33853 `(#:cargo-inputs
33854 (("rust-indexmap" ,rust-indexmap-1)
33855 ("rust-xml-rs" ,rust-xml-rs-0.7))))
33856 (home-page #f)
33857 (synopsis
33858 "Parse an XML file into a simple tree-like structure")
33859 (description
33860 "Parse an XML file into a simple tree-like structure")
33861 (license license:expat)))
33862
33863 (define-public rust-svd-parser-0.9
33864 (package
33865 (name "rust-svd-parser")
33866 (version "0.9.0")
33867 (source
33868 (origin
33869 (method url-fetch)
33870 (uri (crate-uri "svd-parser" version))
33871 (file-name
33872 (string-append name "-" version ".tar.gz"))
33873 (sha256
33874 (base32
33875 "1qhvdz3k76i3sfypcy8c84hhb8sqixrckba21kalzcpgy6an45ml"))))
33876 (build-system cargo-build-system)
33877 (arguments
33878 `(#:cargo-inputs
33879 (("rust-anyhow" ,rust-anyhow-1.0)
33880 ("rust-either" ,rust-either-1)
33881 ("rust-serde" ,rust-serde-1)
33882 ("rust-thiserror" ,rust-thiserror-1)
33883 ("rust-xmltree" ,rust-xmltree-0.8))
33884 #:cargo-development-inputs
33885 (("rust-serde-json" ,rust-serde-json-1))))
33886 (home-page #f)
33887 (synopsis "A CMSIS-SVD file parser")
33888 (description
33889 "This package provides a CMSIS-SVD file parser")
33890 (license (list license:expat license:asl2.0))))
33891
33892 (define-public rust-inflections-1.1
33893 (package
33894 (name "rust-inflections")
33895 (version "1.1.1")
33896 (source
33897 (origin
33898 (method url-fetch)
33899 (uri (crate-uri "inflections" version))
33900 (file-name
33901 (string-append name "-" version ".tar.gz"))
33902 (sha256
33903 (base32
33904 "0yl3gas612q25c72lwf04405i87yxr02vgv3ckcnz2fyvhpmhmx2"))))
33905 (build-system cargo-build-system)
33906 (home-page #f)
33907 (synopsis
33908 "High performance inflection transformation library for changing properties of words like the case.")
33909 (description
33910 "High performance inflection transformation library for changing properties of words like the case.")
33911 (license license:expat)))
33912
33913 (define-public svd2rust
33914 (package
33915 (name "svd2rust")
33916 (version "0.17.0")
33917 (source
33918 (origin
33919 (method url-fetch)
33920 (uri (crate-uri "svd2rust" version))
33921 (file-name
33922 (string-append name "-" version ".tar.gz"))
33923 (sha256
33924 (base32
33925 "0850pn92a5pmrlavdsm4s9wgrgx9gz0vylf9i594nj8sixmddjd9"))))
33926 (build-system cargo-build-system)
33927 (arguments
33928 `(#:cargo-inputs
33929 (("rust-cast" ,rust-cast-0.2)
33930 ("rust-clap" ,rust-clap-2)
33931 ("rust-env-logger" ,rust-env-logger-0.7)
33932 ("rust-error-chain" ,rust-error-chain-0.12)
33933 ("rust-inflections" ,rust-inflections-1.1)
33934 ("rust-log" ,rust-log-0.4)
33935 ("rust-proc-macro2" ,rust-proc-macro2-0.4)
33936 ("rust-quote" ,rust-quote-1)
33937 ("rust-svd-parser" ,rust-svd-parser-0.9)
33938 ("rust-syn" ,rust-syn-1))))
33939 (home-page #f)
33940 (synopsis
33941 "Generate Rust register maps (`struct`s) from SVD files")
33942 (description
33943 "Generate Rust register maps (`struct`s) from SVD files")
33944 (license (list license:expat license:asl2.0))))