Cargo.lock 22 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710
  1. [[package]]
  2. name = "ansi_term"
  3. version = "0.11.0"
  4. source = "registry+https://github.com/rust-lang/crates.io-index"
  5. dependencies = [
  6. "winapi 0.3.5 (registry+https://github.com/rust-lang/crates.io-index)",
  7. ]
  8. [[package]]
  9. name = "atty"
  10. version = "0.2.10"
  11. source = "registry+https://github.com/rust-lang/crates.io-index"
  12. dependencies = [
  13. "libc 0.2.42 (registry+https://github.com/rust-lang/crates.io-index)",
  14. "termion 1.5.1 (registry+https://github.com/rust-lang/crates.io-index)",
  15. "winapi 0.3.5 (registry+https://github.com/rust-lang/crates.io-index)",
  16. ]
  17. [[package]]
  18. name = "bitflags"
  19. version = "1.0.3"
  20. source = "registry+https://github.com/rust-lang/crates.io-index"
  21. [[package]]
  22. name = "cbindgen"
  23. version = "0.5.2"
  24. dependencies = [
  25. "clap 2.32.0 (registry+https://github.com/rust-lang/crates.io-index)",
  26. "log 0.3.9 (registry+https://github.com/rust-lang/crates.io-index)",
  27. "serde 1.0.69 (registry+https://github.com/rust-lang/crates.io-index)",
  28. "serde_derive 1.0.21 (registry+https://github.com/rust-lang/crates.io-index)",
  29. "serde_json 1.0.22 (registry+https://github.com/rust-lang/crates.io-index)",
  30. "standalone-syn 0.13.0 (registry+https://github.com/rust-lang/crates.io-index)",
  31. "tempdir 0.3.7 (registry+https://github.com/rust-lang/crates.io-index)",
  32. "toml 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)",
  33. ]
  34. [[package]]
  35. name = "cc"
  36. version = "1.0.17"
  37. source = "registry+https://github.com/rust-lang/crates.io-index"
  38. [[package]]
  39. name = "cfg-if"
  40. version = "0.1.4"
  41. source = "registry+https://github.com/rust-lang/crates.io-index"
  42. [[package]]
  43. name = "clap"
  44. version = "2.32.0"
  45. source = "registry+https://github.com/rust-lang/crates.io-index"
  46. dependencies = [
  47. "ansi_term 0.11.0 (registry+https://github.com/rust-lang/crates.io-index)",
  48. "atty 0.2.10 (registry+https://github.com/rust-lang/crates.io-index)",
  49. "bitflags 1.0.3 (registry+https://github.com/rust-lang/crates.io-index)",
  50. "strsim 0.7.0 (registry+https://github.com/rust-lang/crates.io-index)",
  51. "textwrap 0.10.0 (registry+https://github.com/rust-lang/crates.io-index)",
  52. "unicode-width 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)",
  53. "vec_map 0.8.1 (registry+https://github.com/rust-lang/crates.io-index)",
  54. ]
  55. [[package]]
  56. name = "compiler_builtins"
  57. version = "0.1.0"
  58. source = "git+https://github.com/rust-lang-nursery/compiler-builtins.git#6eb8f8d710c5d77b0914bec56f68336ad3f06aac"
  59. [[package]]
  60. name = "crt0"
  61. version = "0.1.0"
  62. dependencies = [
  63. "platform 0.1.0",
  64. ]
  65. [[package]]
  66. name = "ctype"
  67. version = "0.1.0"
  68. dependencies = [
  69. "cbindgen 0.5.2",
  70. "platform 0.1.0",
  71. ]
  72. [[package]]
  73. name = "dtoa"
  74. version = "0.4.2"
  75. source = "registry+https://github.com/rust-lang/crates.io-index"
  76. [[package]]
  77. name = "errno"
  78. version = "0.1.0"
  79. dependencies = [
  80. "cbindgen 0.5.2",
  81. "platform 0.1.0",
  82. ]
  83. [[package]]
  84. name = "fcntl"
  85. version = "0.1.0"
  86. dependencies = [
  87. "cbindgen 0.5.2",
  88. "platform 0.1.0",
  89. ]
  90. [[package]]
  91. name = "fenv"
  92. version = "0.1.0"
  93. dependencies = [
  94. "cbindgen 0.5.2",
  95. "platform 0.1.0",
  96. ]
  97. [[package]]
  98. name = "float"
  99. version = "0.1.0"
  100. dependencies = [
  101. "cbindgen 0.5.2",
  102. "fenv 0.1.0",
  103. "platform 0.1.0",
  104. ]
  105. [[package]]
  106. name = "fuchsia-zircon"
  107. version = "0.3.3"
  108. source = "registry+https://github.com/rust-lang/crates.io-index"
  109. dependencies = [
  110. "bitflags 1.0.3 (registry+https://github.com/rust-lang/crates.io-index)",
  111. "fuchsia-zircon-sys 0.3.3 (registry+https://github.com/rust-lang/crates.io-index)",
  112. ]
  113. [[package]]
  114. name = "fuchsia-zircon-sys"
  115. version = "0.3.3"
  116. source = "registry+https://github.com/rust-lang/crates.io-index"
  117. [[package]]
  118. name = "grp"
  119. version = "0.1.0"
  120. dependencies = [
  121. "cbindgen 0.5.2",
  122. "platform 0.1.0",
  123. ]
  124. [[package]]
  125. name = "in_h"
  126. version = "0.1.0"
  127. dependencies = [
  128. "cbindgen 0.5.2",
  129. "platform 0.1.0",
  130. "sys_socket 0.1.0",
  131. ]
  132. [[package]]
  133. name = "inttypes"
  134. version = "0.1.0"
  135. dependencies = [
  136. "cbindgen 0.5.2",
  137. "ctype 0.1.0",
  138. "errno 0.1.0",
  139. "platform 0.1.0",
  140. "stdlib 0.1.0",
  141. ]
  142. [[package]]
  143. name = "itoa"
  144. version = "0.4.1"
  145. source = "registry+https://github.com/rust-lang/crates.io-index"
  146. [[package]]
  147. name = "lazy_static"
  148. version = "1.0.1"
  149. source = "registry+https://github.com/rust-lang/crates.io-index"
  150. dependencies = [
  151. "spin 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)",
  152. ]
  153. [[package]]
  154. name = "libc"
  155. version = "0.2.42"
  156. source = "registry+https://github.com/rust-lang/crates.io-index"
  157. [[package]]
  158. name = "locale"
  159. version = "0.1.0"
  160. dependencies = [
  161. "cbindgen 0.5.2",
  162. "platform 0.1.0",
  163. ]
  164. [[package]]
  165. name = "log"
  166. version = "0.3.9"
  167. source = "registry+https://github.com/rust-lang/crates.io-index"
  168. dependencies = [
  169. "log 0.4.3 (registry+https://github.com/rust-lang/crates.io-index)",
  170. ]
  171. [[package]]
  172. name = "log"
  173. version = "0.4.3"
  174. source = "registry+https://github.com/rust-lang/crates.io-index"
  175. dependencies = [
  176. "cfg-if 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)",
  177. ]
  178. [[package]]
  179. name = "netinet"
  180. version = "0.1.0"
  181. dependencies = [
  182. "in_h 0.1.0",
  183. ]
  184. [[package]]
  185. name = "platform"
  186. version = "0.1.0"
  187. dependencies = [
  188. "ralloc 1.0.0",
  189. "redox_syscall 0.1.40 (registry+https://github.com/rust-lang/crates.io-index)",
  190. "sc 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)",
  191. ]
  192. [[package]]
  193. name = "proc-macro2"
  194. version = "0.2.3"
  195. source = "registry+https://github.com/rust-lang/crates.io-index"
  196. dependencies = [
  197. "unicode-xid 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)",
  198. ]
  199. [[package]]
  200. name = "quote"
  201. version = "0.3.15"
  202. source = "registry+https://github.com/rust-lang/crates.io-index"
  203. [[package]]
  204. name = "ralloc"
  205. version = "1.0.0"
  206. dependencies = [
  207. "ralloc_shim 0.1.1",
  208. "unborrow 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)",
  209. ]
  210. [[package]]
  211. name = "ralloc_shim"
  212. version = "0.1.1"
  213. dependencies = [
  214. "redox_syscall 0.1.40 (registry+https://github.com/rust-lang/crates.io-index)",
  215. "sc 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)",
  216. ]
  217. [[package]]
  218. name = "rand"
  219. version = "0.4.2"
  220. source = "registry+https://github.com/rust-lang/crates.io-index"
  221. dependencies = [
  222. "fuchsia-zircon 0.3.3 (registry+https://github.com/rust-lang/crates.io-index)",
  223. "libc 0.2.42 (registry+https://github.com/rust-lang/crates.io-index)",
  224. "winapi 0.3.5 (registry+https://github.com/rust-lang/crates.io-index)",
  225. ]
  226. [[package]]
  227. name = "rand"
  228. version = "0.5.3"
  229. source = "registry+https://github.com/rust-lang/crates.io-index"
  230. dependencies = [
  231. "rand_core 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)",
  232. ]
  233. [[package]]
  234. name = "rand_core"
  235. version = "0.2.1"
  236. source = "registry+https://github.com/rust-lang/crates.io-index"
  237. [[package]]
  238. name = "redox_syscall"
  239. version = "0.1.40"
  240. source = "registry+https://github.com/rust-lang/crates.io-index"
  241. [[package]]
  242. name = "redox_termios"
  243. version = "0.1.1"
  244. source = "registry+https://github.com/rust-lang/crates.io-index"
  245. dependencies = [
  246. "redox_syscall 0.1.40 (registry+https://github.com/rust-lang/crates.io-index)",
  247. ]
  248. [[package]]
  249. name = "relibc"
  250. version = "0.1.0"
  251. dependencies = [
  252. "cc 1.0.17 (registry+https://github.com/rust-lang/crates.io-index)",
  253. "compiler_builtins 0.1.0 (git+https://github.com/rust-lang-nursery/compiler-builtins.git)",
  254. "ctype 0.1.0",
  255. "errno 0.1.0",
  256. "fcntl 0.1.0",
  257. "fenv 0.1.0",
  258. "float 0.1.0",
  259. "grp 0.1.0",
  260. "inttypes 0.1.0",
  261. "locale 0.1.0",
  262. "netinet 0.1.0",
  263. "platform 0.1.0",
  264. "semaphore 0.1.0",
  265. "setjmp 0.1.0",
  266. "signal 0.1.0",
  267. "stdio 0.1.0",
  268. "stdlib 0.1.0",
  269. "string 0.1.0",
  270. "sys_mman 0.1.0",
  271. "sys_resource 0.1.0",
  272. "sys_socket 0.1.0",
  273. "sys_stat 0.1.0",
  274. "sys_time 0.1.0",
  275. "sys_utsname 0.1.0",
  276. "sys_wait 0.1.0",
  277. "time 0.1.0",
  278. "unistd 0.1.0",
  279. "wchar 0.1.0",
  280. "wctype 0.1.0",
  281. ]
  282. [[package]]
  283. name = "remove_dir_all"
  284. version = "0.5.1"
  285. source = "registry+https://github.com/rust-lang/crates.io-index"
  286. dependencies = [
  287. "winapi 0.3.5 (registry+https://github.com/rust-lang/crates.io-index)",
  288. ]
  289. [[package]]
  290. name = "sc"
  291. version = "0.2.2"
  292. source = "registry+https://github.com/rust-lang/crates.io-index"
  293. [[package]]
  294. name = "semaphore"
  295. version = "0.1.0"
  296. dependencies = [
  297. "cbindgen 0.5.2",
  298. "platform 0.1.0",
  299. ]
  300. [[package]]
  301. name = "serde"
  302. version = "1.0.69"
  303. source = "registry+https://github.com/rust-lang/crates.io-index"
  304. dependencies = [
  305. "serde_derive 1.0.21 (registry+https://github.com/rust-lang/crates.io-index)",
  306. ]
  307. [[package]]
  308. name = "serde_derive"
  309. version = "1.0.21"
  310. source = "registry+https://github.com/rust-lang/crates.io-index"
  311. dependencies = [
  312. "quote 0.3.15 (registry+https://github.com/rust-lang/crates.io-index)",
  313. "serde_derive_internals 0.17.0 (registry+https://github.com/rust-lang/crates.io-index)",
  314. "syn 0.11.11 (registry+https://github.com/rust-lang/crates.io-index)",
  315. ]
  316. [[package]]
  317. name = "serde_derive_internals"
  318. version = "0.17.0"
  319. source = "registry+https://github.com/rust-lang/crates.io-index"
  320. dependencies = [
  321. "syn 0.11.11 (registry+https://github.com/rust-lang/crates.io-index)",
  322. "synom 0.11.3 (registry+https://github.com/rust-lang/crates.io-index)",
  323. ]
  324. [[package]]
  325. name = "serde_json"
  326. version = "1.0.22"
  327. source = "registry+https://github.com/rust-lang/crates.io-index"
  328. dependencies = [
  329. "dtoa 0.4.2 (registry+https://github.com/rust-lang/crates.io-index)",
  330. "itoa 0.4.1 (registry+https://github.com/rust-lang/crates.io-index)",
  331. "serde 1.0.69 (registry+https://github.com/rust-lang/crates.io-index)",
  332. ]
  333. [[package]]
  334. name = "setjmp"
  335. version = "0.1.0"
  336. [[package]]
  337. name = "signal"
  338. version = "0.1.0"
  339. dependencies = [
  340. "cbindgen 0.5.2",
  341. "platform 0.1.0",
  342. ]
  343. [[package]]
  344. name = "spin"
  345. version = "0.4.8"
  346. source = "registry+https://github.com/rust-lang/crates.io-index"
  347. [[package]]
  348. name = "standalone-quote"
  349. version = "0.5.0"
  350. source = "registry+https://github.com/rust-lang/crates.io-index"
  351. dependencies = [
  352. "proc-macro2 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)",
  353. ]
  354. [[package]]
  355. name = "standalone-syn"
  356. version = "0.13.0"
  357. source = "registry+https://github.com/rust-lang/crates.io-index"
  358. dependencies = [
  359. "proc-macro2 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)",
  360. "standalone-quote 0.5.0 (registry+https://github.com/rust-lang/crates.io-index)",
  361. "unicode-xid 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)",
  362. ]
  363. [[package]]
  364. name = "stdio"
  365. version = "0.1.0"
  366. dependencies = [
  367. "cbindgen 0.5.2",
  368. "errno 0.1.0",
  369. "fcntl 0.1.0",
  370. "lazy_static 1.0.1 (registry+https://github.com/rust-lang/crates.io-index)",
  371. "platform 0.1.0",
  372. "string 0.1.0",
  373. "va_list 0.1.0",
  374. ]
  375. [[package]]
  376. name = "stdlib"
  377. version = "0.1.0"
  378. dependencies = [
  379. "cbindgen 0.5.2",
  380. "ctype 0.1.0",
  381. "errno 0.1.0",
  382. "platform 0.1.0",
  383. "rand 0.5.3 (registry+https://github.com/rust-lang/crates.io-index)",
  384. "string 0.1.0",
  385. "time 0.1.0",
  386. "wchar 0.1.0",
  387. ]
  388. [[package]]
  389. name = "string"
  390. version = "0.1.0"
  391. dependencies = [
  392. "cbindgen 0.5.2",
  393. "errno 0.1.0",
  394. "platform 0.1.0",
  395. ]
  396. [[package]]
  397. name = "strsim"
  398. version = "0.7.0"
  399. source = "registry+https://github.com/rust-lang/crates.io-index"
  400. [[package]]
  401. name = "syn"
  402. version = "0.11.11"
  403. source = "registry+https://github.com/rust-lang/crates.io-index"
  404. dependencies = [
  405. "quote 0.3.15 (registry+https://github.com/rust-lang/crates.io-index)",
  406. "synom 0.11.3 (registry+https://github.com/rust-lang/crates.io-index)",
  407. "unicode-xid 0.0.4 (registry+https://github.com/rust-lang/crates.io-index)",
  408. ]
  409. [[package]]
  410. name = "synom"
  411. version = "0.11.3"
  412. source = "registry+https://github.com/rust-lang/crates.io-index"
  413. dependencies = [
  414. "unicode-xid 0.0.4 (registry+https://github.com/rust-lang/crates.io-index)",
  415. ]
  416. [[package]]
  417. name = "sys_mman"
  418. version = "0.1.0"
  419. dependencies = [
  420. "cbindgen 0.5.2",
  421. "platform 0.1.0",
  422. ]
  423. [[package]]
  424. name = "sys_resource"
  425. version = "0.1.0"
  426. dependencies = [
  427. "cbindgen 0.5.2",
  428. "platform 0.1.0",
  429. "sys_time 0.1.0",
  430. ]
  431. [[package]]
  432. name = "sys_socket"
  433. version = "0.1.0"
  434. dependencies = [
  435. "cbindgen 0.5.2",
  436. "platform 0.1.0",
  437. ]
  438. [[package]]
  439. name = "sys_stat"
  440. version = "0.1.0"
  441. dependencies = [
  442. "cbindgen 0.5.2",
  443. "platform 0.1.0",
  444. ]
  445. [[package]]
  446. name = "sys_time"
  447. version = "0.1.0"
  448. dependencies = [
  449. "cbindgen 0.5.2",
  450. "platform 0.1.0",
  451. ]
  452. [[package]]
  453. name = "sys_utsname"
  454. version = "0.1.0"
  455. dependencies = [
  456. "cbindgen 0.5.2",
  457. "platform 0.1.0",
  458. ]
  459. [[package]]
  460. name = "sys_wait"
  461. version = "0.1.0"
  462. dependencies = [
  463. "cbindgen 0.5.2",
  464. "platform 0.1.0",
  465. "sys_resource 0.1.0",
  466. ]
  467. [[package]]
  468. name = "tempdir"
  469. version = "0.3.7"
  470. source = "registry+https://github.com/rust-lang/crates.io-index"
  471. dependencies = [
  472. "rand 0.4.2 (registry+https://github.com/rust-lang/crates.io-index)",
  473. "remove_dir_all 0.5.1 (registry+https://github.com/rust-lang/crates.io-index)",
  474. ]
  475. [[package]]
  476. name = "termion"
  477. version = "1.5.1"
  478. source = "registry+https://github.com/rust-lang/crates.io-index"
  479. dependencies = [
  480. "libc 0.2.42 (registry+https://github.com/rust-lang/crates.io-index)",
  481. "redox_syscall 0.1.40 (registry+https://github.com/rust-lang/crates.io-index)",
  482. "redox_termios 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)",
  483. ]
  484. [[package]]
  485. name = "textwrap"
  486. version = "0.10.0"
  487. source = "registry+https://github.com/rust-lang/crates.io-index"
  488. dependencies = [
  489. "unicode-width 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)",
  490. ]
  491. [[package]]
  492. name = "time"
  493. version = "0.1.0"
  494. dependencies = [
  495. "cbindgen 0.5.2",
  496. "errno 0.1.0",
  497. "platform 0.1.0",
  498. ]
  499. [[package]]
  500. name = "toml"
  501. version = "0.4.6"
  502. source = "registry+https://github.com/rust-lang/crates.io-index"
  503. dependencies = [
  504. "serde 1.0.69 (registry+https://github.com/rust-lang/crates.io-index)",
  505. ]
  506. [[package]]
  507. name = "unborrow"
  508. version = "0.3.1"
  509. source = "registry+https://github.com/rust-lang/crates.io-index"
  510. [[package]]
  511. name = "unicode-width"
  512. version = "0.1.5"
  513. source = "registry+https://github.com/rust-lang/crates.io-index"
  514. [[package]]
  515. name = "unicode-xid"
  516. version = "0.0.4"
  517. source = "registry+https://github.com/rust-lang/crates.io-index"
  518. [[package]]
  519. name = "unicode-xid"
  520. version = "0.1.0"
  521. source = "registry+https://github.com/rust-lang/crates.io-index"
  522. [[package]]
  523. name = "unistd"
  524. version = "0.1.0"
  525. dependencies = [
  526. "cbindgen 0.5.2",
  527. "errno 0.1.0",
  528. "platform 0.1.0",
  529. "stdio 0.1.0",
  530. "string 0.1.0",
  531. "sys_utsname 0.1.0",
  532. ]
  533. [[package]]
  534. name = "va_list"
  535. version = "0.1.0"
  536. dependencies = [
  537. "va_list-helper 0.0.2",
  538. ]
  539. [[package]]
  540. name = "va_list-helper"
  541. version = "0.0.2"
  542. dependencies = [
  543. "cc 1.0.17 (registry+https://github.com/rust-lang/crates.io-index)",
  544. ]
  545. [[package]]
  546. name = "vec_map"
  547. version = "0.8.1"
  548. source = "registry+https://github.com/rust-lang/crates.io-index"
  549. [[package]]
  550. name = "wchar"
  551. version = "0.1.0"
  552. dependencies = [
  553. "cbindgen 0.5.2",
  554. "errno 0.1.0",
  555. "platform 0.1.0",
  556. "stdio 0.1.0",
  557. "time 0.1.0",
  558. "va_list 0.1.0",
  559. ]
  560. [[package]]
  561. name = "wctype"
  562. version = "0.1.0"
  563. dependencies = [
  564. "cbindgen 0.5.2",
  565. "platform 0.1.0",
  566. ]
  567. [[package]]
  568. name = "winapi"
  569. version = "0.3.5"
  570. source = "registry+https://github.com/rust-lang/crates.io-index"
  571. dependencies = [
  572. "winapi-i686-pc-windows-gnu 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)",
  573. "winapi-x86_64-pc-windows-gnu 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)",
  574. ]
  575. [[package]]
  576. name = "winapi-i686-pc-windows-gnu"
  577. version = "0.4.0"
  578. source = "registry+https://github.com/rust-lang/crates.io-index"
  579. [[package]]
  580. name = "winapi-x86_64-pc-windows-gnu"
  581. version = "0.4.0"
  582. source = "registry+https://github.com/rust-lang/crates.io-index"
  583. [metadata]
  584. "checksum ansi_term 0.11.0 (registry+https://github.com/rust-lang/crates.io-index)" = "ee49baf6cb617b853aa8d93bf420db2383fab46d314482ca2803b40d5fde979b"
  585. "checksum atty 0.2.10 (registry+https://github.com/rust-lang/crates.io-index)" = "2fc4a1aa4c24c0718a250f0681885c1af91419d242f29eb8f2ab28502d80dbd1"
  586. "checksum bitflags 1.0.3 (registry+https://github.com/rust-lang/crates.io-index)" = "d0c54bb8f454c567f21197eefcdbf5679d0bd99f2ddbe52e84c77061952e6789"
  587. "checksum cc 1.0.17 (registry+https://github.com/rust-lang/crates.io-index)" = "49ec142f5768efb5b7622aebc3fdbdbb8950a4b9ba996393cb76ef7466e8747d"
  588. "checksum cfg-if 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)" = "efe5c877e17a9c717a0bf3613b2709f723202c4e4675cc8f12926ded29bcb17e"
  589. "checksum clap 2.32.0 (registry+https://github.com/rust-lang/crates.io-index)" = "b957d88f4b6a63b9d70d5f454ac8011819c6efa7727858f458ab71c756ce2d3e"
  590. "checksum compiler_builtins 0.1.0 (git+https://github.com/rust-lang-nursery/compiler-builtins.git)" = "<none>"
  591. "checksum dtoa 0.4.2 (registry+https://github.com/rust-lang/crates.io-index)" = "09c3753c3db574d215cba4ea76018483895d7bff25a31b49ba45db21c48e50ab"
  592. "checksum fuchsia-zircon 0.3.3 (registry+https://github.com/rust-lang/crates.io-index)" = "2e9763c69ebaae630ba35f74888db465e49e259ba1bc0eda7d06f4a067615d82"
  593. "checksum fuchsia-zircon-sys 0.3.3 (registry+https://github.com/rust-lang/crates.io-index)" = "3dcaa9ae7725d12cdb85b3ad99a434db70b468c09ded17e012d86b5c1010f7a7"
  594. "checksum itoa 0.4.1 (registry+https://github.com/rust-lang/crates.io-index)" = "c069bbec61e1ca5a596166e55dfe4773ff745c3d16b700013bcaff9a6df2c682"
  595. "checksum lazy_static 1.0.1 (registry+https://github.com/rust-lang/crates.io-index)" = "e6412c5e2ad9584b0b8e979393122026cdd6d2a80b933f890dcd694ddbe73739"
  596. "checksum libc 0.2.42 (registry+https://github.com/rust-lang/crates.io-index)" = "b685088df2b950fccadf07a7187c8ef846a959c142338a48f9dc0b94517eb5f1"
  597. "checksum log 0.3.9 (registry+https://github.com/rust-lang/crates.io-index)" = "e19e8d5c34a3e0e2223db8e060f9e8264aeeb5c5fc64a4ee9965c062211c024b"
  598. "checksum log 0.4.3 (registry+https://github.com/rust-lang/crates.io-index)" = "61bd98ae7f7b754bc53dca7d44b604f733c6bba044ea6f41bc8d89272d8161d2"
  599. "checksum proc-macro2 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)" = "cd07deb3c6d1d9ff827999c7f9b04cdfd66b1b17ae508e14fe47b620f2282ae0"
  600. "checksum quote 0.3.15 (registry+https://github.com/rust-lang/crates.io-index)" = "7a6e920b65c65f10b2ae65c831a81a073a89edd28c7cce89475bff467ab4167a"
  601. "checksum rand 0.4.2 (registry+https://github.com/rust-lang/crates.io-index)" = "eba5f8cb59cc50ed56be8880a5c7b496bfd9bd26394e176bc67884094145c2c5"
  602. "checksum rand 0.5.3 (registry+https://github.com/rust-lang/crates.io-index)" = "6802c0e883716383777e147b7c21323d5de7527257c8b6dc1365a7f2983e90f6"
  603. "checksum rand_core 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)" = "edecf0f94da5551fc9b492093e30b041a891657db7940ee221f9d2f66e82eef2"
  604. "checksum redox_syscall 0.1.40 (registry+https://github.com/rust-lang/crates.io-index)" = "c214e91d3ecf43e9a4e41e578973adeb14b474f2bee858742d127af75a0112b1"
  605. "checksum redox_termios 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)" = "7e891cfe48e9100a70a3b6eb652fef28920c117d366339687bd5576160db0f76"
  606. "checksum remove_dir_all 0.5.1 (registry+https://github.com/rust-lang/crates.io-index)" = "3488ba1b9a2084d38645c4c08276a1752dcbf2c7130d74f1569681ad5d2799c5"
  607. "checksum sc 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)" = "4ebbb026ba4a707c25caec2db5ef59ad8b41f7ad77cad06257e06229c891f376"
  608. "checksum serde 1.0.69 (registry+https://github.com/rust-lang/crates.io-index)" = "210e5a3b159c566d7527e9b22e44be73f2e0fcc330bb78fef4dbccb56d2e74c8"
  609. "checksum serde_derive 1.0.21 (registry+https://github.com/rust-lang/crates.io-index)" = "652bc323d694dc925829725ec6c890156d8e70ae5202919869cb00fe2eff3788"
  610. "checksum serde_derive_internals 0.17.0 (registry+https://github.com/rust-lang/crates.io-index)" = "32f1926285523b2db55df263d2aa4eb69ddcfa7a7eade6430323637866b513ab"
  611. "checksum serde_json 1.0.22 (registry+https://github.com/rust-lang/crates.io-index)" = "84b8035cabe9b35878adec8ac5fe03d5f6bc97ff6edd7ccb96b44c1276ba390e"
  612. "checksum spin 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)" = "14db77c5b914df6d6173dda9a3b3f5937bd802934fa5edaf934df06a3491e56f"
  613. "checksum standalone-quote 0.5.0 (registry+https://github.com/rust-lang/crates.io-index)" = "dcedac1d6d98e7e9d1d6e628f5635af9566688ae5f6cea70a3976f495ae8d839"
  614. "checksum standalone-syn 0.13.0 (registry+https://github.com/rust-lang/crates.io-index)" = "115808f5187c07c23cb93eee49d542fae54c6e8285d3a24c6ff683fcde9243db"
  615. "checksum strsim 0.7.0 (registry+https://github.com/rust-lang/crates.io-index)" = "bb4f380125926a99e52bc279241539c018323fab05ad6368b56f93d9369ff550"
  616. "checksum syn 0.11.11 (registry+https://github.com/rust-lang/crates.io-index)" = "d3b891b9015c88c576343b9b3e41c2c11a51c219ef067b264bd9c8aa9b441dad"
  617. "checksum synom 0.11.3 (registry+https://github.com/rust-lang/crates.io-index)" = "a393066ed9010ebaed60b9eafa373d4b1baac186dd7e008555b0f702b51945b6"
  618. "checksum tempdir 0.3.7 (registry+https://github.com/rust-lang/crates.io-index)" = "15f2b5fb00ccdf689e0149d1b1b3c03fead81c2b37735d812fa8bddbbf41b6d8"
  619. "checksum termion 1.5.1 (registry+https://github.com/rust-lang/crates.io-index)" = "689a3bdfaab439fd92bc87df5c4c78417d3cbe537487274e9b0b2dce76e92096"
  620. "checksum textwrap 0.10.0 (registry+https://github.com/rust-lang/crates.io-index)" = "307686869c93e71f94da64286f9a9524c0f308a9e1c87a583de8e9c9039ad3f6"
  621. "checksum toml 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)" = "a0263c6c02c4db6c8f7681f9fd35e90de799ebd4cfdeab77a38f4ff6b3d8c0d9"
  622. "checksum unborrow 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)" = "e92e959f029e4f8ee25d70d15ab58d2b46f98a17bc238b9265ff0c26f6f3d67f"
  623. "checksum unicode-width 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)" = "882386231c45df4700b275c7ff55b6f3698780a650026380e72dabe76fa46526"
  624. "checksum unicode-xid 0.0.4 (registry+https://github.com/rust-lang/crates.io-index)" = "8c1f860d7d29cf02cb2f3f359fd35991af3d30bac52c57d265a3c461074cb4dc"
  625. "checksum unicode-xid 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)" = "fc72304796d0818e357ead4e000d19c9c174ab23dc11093ac919054d20a6a7fc"
  626. "checksum vec_map 0.8.1 (registry+https://github.com/rust-lang/crates.io-index)" = "05c78687fb1a80548ae3250346c3db86a80a7cdd77bda190189f2d0a0987c81a"
  627. "checksum winapi 0.3.5 (registry+https://github.com/rust-lang/crates.io-index)" = "773ef9dcc5f24b7d850d0ff101e542ff24c3b090a9768e03ff889fdef41f00fd"
  628. "checksum winapi-i686-pc-windows-gnu 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)" = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6"
  629. "checksum winapi-x86_64-pc-windows-gnu 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)" = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f"