A static site generator written in Rust
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

Cargo.lock 22KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897
  1. # This file is automatically @generated by Cargo.
  2. # It is not intended for manual editing.
  3. version = 3
  4. [[package]]
  5. name = "aho-corasick"
  6. version = "0.6.9"
  7. source = "registry+https://github.com/rust-lang/crates.io-index"
  8. checksum = "1e9a933f4e58658d7b12defcf96dc5c720f20832deebe3e0a19efd3b6aaeeb9e"
  9. dependencies = [
  10. "memchr",
  11. ]
  12. [[package]]
  13. name = "ansi_term"
  14. version = "0.11.0"
  15. source = "registry+https://github.com/rust-lang/crates.io-index"
  16. checksum = "ee49baf6cb617b853aa8d93bf420db2383fab46d314482ca2803b40d5fde979b"
  17. dependencies = [
  18. "winapi 0.3.6",
  19. ]
  20. [[package]]
  21. name = "atty"
  22. version = "0.2.11"
  23. source = "registry+https://github.com/rust-lang/crates.io-index"
  24. checksum = "9a7d5b8723950951411ee34d271d99dddcc2035a16ab25310ea2c8cfd4369652"
  25. dependencies = [
  26. "libc",
  27. "termion",
  28. "winapi 0.3.6",
  29. ]
  30. [[package]]
  31. name = "autocfg"
  32. version = "0.1.2"
  33. source = "registry+https://github.com/rust-lang/crates.io-index"
  34. checksum = "a6d640bee2da49f60a4068a7fae53acde8982514ab7bae8b8cea9e88cbcfd799"
  35. [[package]]
  36. name = "bitflags"
  37. version = "0.7.0"
  38. source = "registry+https://github.com/rust-lang/crates.io-index"
  39. checksum = "aad18937a628ec6abcd26d1489012cc0e18c21798210f491af69ded9b881106d"
  40. [[package]]
  41. name = "bitflags"
  42. version = "0.8.2"
  43. source = "registry+https://github.com/rust-lang/crates.io-index"
  44. checksum = "1370e9fc2a6ae53aea8b7a5110edbd08836ed87c88736dfabccade1c2b44bff4"
  45. [[package]]
  46. name = "bitflags"
  47. version = "1.0.4"
  48. source = "registry+https://github.com/rust-lang/crates.io-index"
  49. checksum = "228047a76f468627ca71776ecdebd732a3423081fcf5125585bcd7c49886ce12"
  50. [[package]]
  51. name = "byteorder"
  52. version = "1.2.7"
  53. source = "registry+https://github.com/rust-lang/crates.io-index"
  54. checksum = "94f88df23a25417badc922ab0f5716cc1330e87f71ddd9203b3a3ccd9cedf75d"
  55. [[package]]
  56. name = "bytes"
  57. version = "0.4.11"
  58. source = "registry+https://github.com/rust-lang/crates.io-index"
  59. checksum = "40ade3d27603c2cb345eb0912aec461a6dec7e06a4ae48589904e808335c7afa"
  60. dependencies = [
  61. "byteorder",
  62. "iovec",
  63. ]
  64. [[package]]
  65. name = "casaubon"
  66. version = "0.3.2"
  67. dependencies = [
  68. "chrono",
  69. "clap",
  70. "fs_extra",
  71. "htmlescape",
  72. "lazy_static",
  73. "notify",
  74. "pulldown-cmark",
  75. "regex",
  76. "tempfile",
  77. "toml",
  78. "uuid",
  79. ]
  80. [[package]]
  81. name = "cfg-if"
  82. version = "0.1.6"
  83. source = "registry+https://github.com/rust-lang/crates.io-index"
  84. checksum = "082bb9b28e00d3c9d39cc03e64ce4cea0f1bb9b3fde493f0cbc008472d22bdf4"
  85. [[package]]
  86. name = "chrono"
  87. version = "0.4.6"
  88. source = "registry+https://github.com/rust-lang/crates.io-index"
  89. checksum = "45912881121cb26fad7c38c17ba7daa18764771836b34fab7d3fbd93ed633878"
  90. dependencies = [
  91. "num-integer",
  92. "num-traits",
  93. "time",
  94. ]
  95. [[package]]
  96. name = "clap"
  97. version = "2.32.0"
  98. source = "registry+https://github.com/rust-lang/crates.io-index"
  99. checksum = "b957d88f4b6a63b9d70d5f454ac8011819c6efa7727858f458ab71c756ce2d3e"
  100. dependencies = [
  101. "ansi_term",
  102. "atty",
  103. "bitflags 1.0.4",
  104. "strsim",
  105. "textwrap",
  106. "unicode-width",
  107. "vec_map",
  108. ]
  109. [[package]]
  110. name = "cloudabi"
  111. version = "0.0.3"
  112. source = "registry+https://github.com/rust-lang/crates.io-index"
  113. checksum = "ddfc5b9aa5d4507acaf872de71051dfd0e309860e88966e1051e462a077aac4f"
  114. dependencies = [
  115. "bitflags 1.0.4",
  116. ]
  117. [[package]]
  118. name = "crossbeam-utils"
  119. version = "0.6.1"
  120. source = "registry+https://github.com/rust-lang/crates.io-index"
  121. checksum = "c55913cc2799171a550e307918c0a360e8c16004820291bf3b638969b4a01816"
  122. dependencies = [
  123. "cfg-if",
  124. ]
  125. [[package]]
  126. name = "filetime"
  127. version = "0.2.4"
  128. source = "registry+https://github.com/rust-lang/crates.io-index"
  129. checksum = "a2df5c1a8c4be27e7707789dc42ae65976e60b394afd293d1419ab915833e646"
  130. dependencies = [
  131. "cfg-if",
  132. "libc",
  133. "redox_syscall",
  134. ]
  135. [[package]]
  136. name = "fs_extra"
  137. version = "1.1.0"
  138. source = "registry+https://github.com/rust-lang/crates.io-index"
  139. checksum = "5f2a4a2034423744d2cc7ca2068453168dcdb82c438419e639a26bd87839c674"
  140. [[package]]
  141. name = "fsevent"
  142. version = "0.2.17"
  143. source = "registry+https://github.com/rust-lang/crates.io-index"
  144. checksum = "c4bbbf71584aeed076100b5665ac14e3d85eeb31fdbb45fbd41ef9a682b5ec05"
  145. dependencies = [
  146. "bitflags 0.7.0",
  147. "fsevent-sys",
  148. "libc",
  149. ]
  150. [[package]]
  151. name = "fsevent-sys"
  152. version = "0.1.6"
  153. source = "registry+https://github.com/rust-lang/crates.io-index"
  154. checksum = "1a772d36c338d07a032d5375a36f15f9a7043bf0cb8ce7cee658e037c6032874"
  155. dependencies = [
  156. "libc",
  157. ]
  158. [[package]]
  159. name = "fuchsia-zircon"
  160. version = "0.3.3"
  161. source = "registry+https://github.com/rust-lang/crates.io-index"
  162. checksum = "2e9763c69ebaae630ba35f74888db465e49e259ba1bc0eda7d06f4a067615d82"
  163. dependencies = [
  164. "bitflags 1.0.4",
  165. "fuchsia-zircon-sys",
  166. ]
  167. [[package]]
  168. name = "fuchsia-zircon-sys"
  169. version = "0.3.3"
  170. source = "registry+https://github.com/rust-lang/crates.io-index"
  171. checksum = "3dcaa9ae7725d12cdb85b3ad99a434db70b468c09ded17e012d86b5c1010f7a7"
  172. [[package]]
  173. name = "futures"
  174. version = "0.1.25"
  175. source = "registry+https://github.com/rust-lang/crates.io-index"
  176. checksum = "49e7653e374fe0d0c12de4250f0bdb60680b8c80eed558c5c7538eec9c89e21b"
  177. [[package]]
  178. name = "getopts"
  179. version = "0.2.18"
  180. source = "registry+https://github.com/rust-lang/crates.io-index"
  181. checksum = "0a7292d30132fb5424b354f5dc02512a86e4c516fe544bb7a25e7f266951b797"
  182. dependencies = [
  183. "unicode-width",
  184. ]
  185. [[package]]
  186. name = "htmlescape"
  187. version = "0.3.1"
  188. source = "registry+https://github.com/rust-lang/crates.io-index"
  189. checksum = "e9025058dae765dee5070ec375f591e2ba14638c63feff74f13805a72e523163"
  190. [[package]]
  191. name = "inotify"
  192. version = "0.6.1"
  193. source = "registry+https://github.com/rust-lang/crates.io-index"
  194. checksum = "40b54539f3910d6f84fbf9a643efd6e3aa6e4f001426c0329576128255994718"
  195. dependencies = [
  196. "bitflags 1.0.4",
  197. "futures",
  198. "inotify-sys",
  199. "libc",
  200. "mio",
  201. "tokio-io",
  202. "tokio-reactor",
  203. ]
  204. [[package]]
  205. name = "inotify-sys"
  206. version = "0.1.3"
  207. source = "registry+https://github.com/rust-lang/crates.io-index"
  208. checksum = "e74a1aa87c59aeff6ef2cc2fa62d41bc43f54952f55652656b18a02fd5e356c0"
  209. dependencies = [
  210. "libc",
  211. ]
  212. [[package]]
  213. name = "iovec"
  214. version = "0.1.2"
  215. source = "registry+https://github.com/rust-lang/crates.io-index"
  216. checksum = "dbe6e417e7d0975db6512b90796e8ce223145ac4e33c377e4a42882a0e88bb08"
  217. dependencies = [
  218. "libc",
  219. "winapi 0.2.8",
  220. ]
  221. [[package]]
  222. name = "kernel32-sys"
  223. version = "0.2.2"
  224. source = "registry+https://github.com/rust-lang/crates.io-index"
  225. checksum = "7507624b29483431c0ba2d82aece8ca6cdba9382bff4ddd0f7490560c056098d"
  226. dependencies = [
  227. "winapi 0.2.8",
  228. "winapi-build",
  229. ]
  230. [[package]]
  231. name = "lazy_static"
  232. version = "1.2.0"
  233. source = "registry+https://github.com/rust-lang/crates.io-index"
  234. checksum = "a374c89b9db55895453a74c1e38861d9deec0b01b405a82516e9d5de4820dea1"
  235. [[package]]
  236. name = "lazycell"
  237. version = "1.2.0"
  238. source = "registry+https://github.com/rust-lang/crates.io-index"
  239. checksum = "ddba4c30a78328befecec92fc94970e53b3ae385827d28620f0f5bb2493081e0"
  240. [[package]]
  241. name = "libc"
  242. version = "0.2.43"
  243. source = "registry+https://github.com/rust-lang/crates.io-index"
  244. checksum = "76e3a3ef172f1a0b9a9ff0dd1491ae5e6c948b94479a3021819ba7d860c8645d"
  245. [[package]]
  246. name = "lock_api"
  247. version = "0.1.5"
  248. source = "registry+https://github.com/rust-lang/crates.io-index"
  249. checksum = "62ebf1391f6acad60e5c8b43706dde4582df75c06698ab44511d15016bc2442c"
  250. dependencies = [
  251. "owning_ref",
  252. "scopeguard",
  253. ]
  254. [[package]]
  255. name = "log"
  256. version = "0.4.6"
  257. source = "registry+https://github.com/rust-lang/crates.io-index"
  258. checksum = "c84ec4b527950aa83a329754b01dbe3f58361d1c5efacd1f6d68c494d08a17c6"
  259. dependencies = [
  260. "cfg-if",
  261. ]
  262. [[package]]
  263. name = "memchr"
  264. version = "2.1.1"
  265. source = "registry+https://github.com/rust-lang/crates.io-index"
  266. checksum = "0a3eb002f0535929f1199681417029ebea04aadc0c7a4224b46be99c7f5d6a16"
  267. dependencies = [
  268. "cfg-if",
  269. "libc",
  270. "version_check",
  271. ]
  272. [[package]]
  273. name = "mio"
  274. version = "0.6.16"
  275. source = "registry+https://github.com/rust-lang/crates.io-index"
  276. checksum = "71646331f2619b1026cc302f87a2b8b648d5c6dd6937846a16cc8ce0f347f432"
  277. dependencies = [
  278. "fuchsia-zircon",
  279. "fuchsia-zircon-sys",
  280. "iovec",
  281. "kernel32-sys",
  282. "lazycell",
  283. "libc",
  284. "log",
  285. "miow",
  286. "net2",
  287. "slab",
  288. "winapi 0.2.8",
  289. ]
  290. [[package]]
  291. name = "mio-extras"
  292. version = "2.0.5"
  293. source = "registry+https://github.com/rust-lang/crates.io-index"
  294. checksum = "46e73a04c2fa6250b8d802134d56d554a9ec2922bf977777c805ea5def61ce40"
  295. dependencies = [
  296. "lazycell",
  297. "log",
  298. "mio",
  299. "slab",
  300. ]
  301. [[package]]
  302. name = "miow"
  303. version = "0.2.1"
  304. source = "registry+https://github.com/rust-lang/crates.io-index"
  305. checksum = "8c1f2f3b1cf331de6896aabf6e9d55dca90356cc9960cca7eaaf408a355ae919"
  306. dependencies = [
  307. "kernel32-sys",
  308. "net2",
  309. "winapi 0.2.8",
  310. "ws2_32-sys",
  311. ]
  312. [[package]]
  313. name = "net2"
  314. version = "0.2.33"
  315. source = "registry+https://github.com/rust-lang/crates.io-index"
  316. checksum = "42550d9fb7b6684a6d404d9fa7250c2eb2646df731d1c06afc06dcee9e1bcf88"
  317. dependencies = [
  318. "cfg-if",
  319. "libc",
  320. "winapi 0.3.6",
  321. ]
  322. [[package]]
  323. name = "notify"
  324. version = "4.0.6"
  325. source = "registry+https://github.com/rust-lang/crates.io-index"
  326. checksum = "873ecfd8c174964ae30f401329d140142312c8e5590719cf1199d5f1717d8078"
  327. dependencies = [
  328. "bitflags 1.0.4",
  329. "filetime",
  330. "fsevent",
  331. "fsevent-sys",
  332. "inotify",
  333. "kernel32-sys",
  334. "libc",
  335. "mio",
  336. "mio-extras",
  337. "walkdir",
  338. "winapi 0.3.6",
  339. ]
  340. [[package]]
  341. name = "num-integer"
  342. version = "0.1.39"
  343. source = "registry+https://github.com/rust-lang/crates.io-index"
  344. checksum = "e83d528d2677f0518c570baf2b7abdcf0cd2d248860b68507bdcb3e91d4c0cea"
  345. dependencies = [
  346. "num-traits",
  347. ]
  348. [[package]]
  349. name = "num-traits"
  350. version = "0.2.6"
  351. source = "registry+https://github.com/rust-lang/crates.io-index"
  352. checksum = "0b3a5d7cc97d6d30d8b9bc8fa19bf45349ffe46241e8816f50f62f6d6aaabee1"
  353. [[package]]
  354. name = "num_cpus"
  355. version = "1.8.0"
  356. source = "registry+https://github.com/rust-lang/crates.io-index"
  357. checksum = "c51a3322e4bca9d212ad9a158a02abc6934d005490c054a2778df73a70aa0a30"
  358. dependencies = [
  359. "libc",
  360. ]
  361. [[package]]
  362. name = "owning_ref"
  363. version = "0.4.0"
  364. source = "registry+https://github.com/rust-lang/crates.io-index"
  365. checksum = "49a4b8ea2179e6a2e27411d3bca09ca6dd630821cf6894c6c7c8467a8ee7ef13"
  366. dependencies = [
  367. "stable_deref_trait",
  368. ]
  369. [[package]]
  370. name = "parking_lot"
  371. version = "0.6.4"
  372. source = "registry+https://github.com/rust-lang/crates.io-index"
  373. checksum = "f0802bff09003b291ba756dc7e79313e51cc31667e94afbe847def490424cde5"
  374. dependencies = [
  375. "lock_api",
  376. "parking_lot_core",
  377. ]
  378. [[package]]
  379. name = "parking_lot_core"
  380. version = "0.3.1"
  381. source = "registry+https://github.com/rust-lang/crates.io-index"
  382. checksum = "ad7f7e6ebdc79edff6fdcb87a55b620174f7a989e3eb31b65231f4af57f00b8c"
  383. dependencies = [
  384. "libc",
  385. "rand 0.5.5",
  386. "rustc_version",
  387. "smallvec",
  388. "winapi 0.3.6",
  389. ]
  390. [[package]]
  391. name = "pulldown-cmark"
  392. version = "0.0.11"
  393. source = "registry+https://github.com/rust-lang/crates.io-index"
  394. checksum = "4c7c04a8bb38f80717527edea39c82378c2ef13ecdbc914cbd90653a2e24afdf"
  395. dependencies = [
  396. "bitflags 0.8.2",
  397. "getopts",
  398. ]
  399. [[package]]
  400. name = "rand"
  401. version = "0.5.5"
  402. source = "registry+https://github.com/rust-lang/crates.io-index"
  403. checksum = "e464cd887e869cddcae8792a4ee31d23c7edd516700695608f5b98c67ee0131c"
  404. dependencies = [
  405. "cloudabi",
  406. "fuchsia-zircon",
  407. "libc",
  408. "rand_core 0.2.2",
  409. "winapi 0.3.6",
  410. ]
  411. [[package]]
  412. name = "rand"
  413. version = "0.6.4"
  414. source = "registry+https://github.com/rust-lang/crates.io-index"
  415. checksum = "3906503e80ac6cbcacb2c2973fa8e473f24d7e2747c8c92bb230c2441cad96b5"
  416. dependencies = [
  417. "autocfg",
  418. "libc",
  419. "rand_chacha",
  420. "rand_core 0.3.0",
  421. "rand_hc",
  422. "rand_isaac",
  423. "rand_os",
  424. "rand_pcg",
  425. "rand_xorshift",
  426. "winapi 0.3.6",
  427. ]
  428. [[package]]
  429. name = "rand_chacha"
  430. version = "0.1.1"
  431. source = "registry+https://github.com/rust-lang/crates.io-index"
  432. checksum = "556d3a1ca6600bfcbab7c7c91ccb085ac7fbbcd70e008a98742e7847f4f7bcef"
  433. dependencies = [
  434. "autocfg",
  435. "rand_core 0.3.0",
  436. ]
  437. [[package]]
  438. name = "rand_core"
  439. version = "0.2.2"
  440. source = "registry+https://github.com/rust-lang/crates.io-index"
  441. checksum = "1961a422c4d189dfb50ffa9320bf1f2a9bd54ecb92792fb9477f99a1045f3372"
  442. dependencies = [
  443. "rand_core 0.3.0",
  444. ]
  445. [[package]]
  446. name = "rand_core"
  447. version = "0.3.0"
  448. source = "registry+https://github.com/rust-lang/crates.io-index"
  449. checksum = "0905b6b7079ec73b314d4c748701f6931eb79fd97c668caa3f1899b22b32c6db"
  450. [[package]]
  451. name = "rand_hc"
  452. version = "0.1.0"
  453. source = "registry+https://github.com/rust-lang/crates.io-index"
  454. checksum = "7b40677c7be09ae76218dc623efbf7b18e34bced3f38883af07bb75630a21bc4"
  455. dependencies = [
  456. "rand_core 0.3.0",
  457. ]
  458. [[package]]
  459. name = "rand_isaac"
  460. version = "0.1.1"
  461. source = "registry+https://github.com/rust-lang/crates.io-index"
  462. checksum = "ded997c9d5f13925be2a6fd7e66bf1872597f759fd9dd93513dd7e92e5a5ee08"
  463. dependencies = [
  464. "rand_core 0.3.0",
  465. ]
  466. [[package]]
  467. name = "rand_os"
  468. version = "0.1.1"
  469. source = "registry+https://github.com/rust-lang/crates.io-index"
  470. checksum = "f46fbd5550acf75b0c2730f5dd1873751daf9beb8f11b44027778fae50d7feca"
  471. dependencies = [
  472. "cloudabi",
  473. "fuchsia-zircon",
  474. "libc",
  475. "rand_core 0.3.0",
  476. "rdrand",
  477. "winapi 0.3.6",
  478. ]
  479. [[package]]
  480. name = "rand_pcg"
  481. version = "0.1.1"
  482. source = "registry+https://github.com/rust-lang/crates.io-index"
  483. checksum = "086bd09a33c7044e56bb44d5bdde5a60e7f119a9e95b0775f545de759a32fe05"
  484. dependencies = [
  485. "rand_core 0.3.0",
  486. "rustc_version",
  487. ]
  488. [[package]]
  489. name = "rand_xorshift"
  490. version = "0.1.1"
  491. source = "registry+https://github.com/rust-lang/crates.io-index"
  492. checksum = "cbf7e9e623549b0e21f6e97cf8ecf247c1a8fd2e8a992ae265314300b2455d5c"
  493. dependencies = [
  494. "rand_core 0.3.0",
  495. ]
  496. [[package]]
  497. name = "rdrand"
  498. version = "0.4.0"
  499. source = "registry+https://github.com/rust-lang/crates.io-index"
  500. checksum = "678054eb77286b51581ba43620cc911abf02758c91f93f479767aed0f90458b2"
  501. dependencies = [
  502. "rand_core 0.3.0",
  503. ]
  504. [[package]]
  505. name = "redox_syscall"
  506. version = "0.1.42"
  507. source = "registry+https://github.com/rust-lang/crates.io-index"
  508. checksum = "cf8fb82a4d1c9b28f1c26c574a5b541f5ffb4315f6c9a791fa47b6a04438fe93"
  509. [[package]]
  510. name = "redox_termios"
  511. version = "0.1.1"
  512. source = "registry+https://github.com/rust-lang/crates.io-index"
  513. checksum = "7e891cfe48e9100a70a3b6eb652fef28920c117d366339687bd5576160db0f76"
  514. dependencies = [
  515. "redox_syscall",
  516. ]
  517. [[package]]
  518. name = "regex"
  519. version = "1.0.6"
  520. source = "registry+https://github.com/rust-lang/crates.io-index"
  521. checksum = "ee84f70c8c08744ea9641a731c7fadb475bf2ecc52d7f627feb833e0b3990467"
  522. dependencies = [
  523. "aho-corasick",
  524. "memchr",
  525. "regex-syntax",
  526. "thread_local",
  527. "utf8-ranges",
  528. ]
  529. [[package]]
  530. name = "regex-syntax"
  531. version = "0.6.3"
  532. source = "registry+https://github.com/rust-lang/crates.io-index"
  533. checksum = "fbc557aac2b708fe84121caf261346cc2eed71978024337e42eb46b8a252ac6e"
  534. dependencies = [
  535. "ucd-util",
  536. ]
  537. [[package]]
  538. name = "remove_dir_all"
  539. version = "0.5.1"
  540. source = "registry+https://github.com/rust-lang/crates.io-index"
  541. checksum = "3488ba1b9a2084d38645c4c08276a1752dcbf2c7130d74f1569681ad5d2799c5"
  542. dependencies = [
  543. "winapi 0.3.6",
  544. ]
  545. [[package]]
  546. name = "rustc_version"
  547. version = "0.2.3"
  548. source = "registry+https://github.com/rust-lang/crates.io-index"
  549. checksum = "138e3e0acb6c9fb258b19b67cb8abd63c00679d2851805ea151465464fe9030a"
  550. dependencies = [
  551. "semver",
  552. ]
  553. [[package]]
  554. name = "same-file"
  555. version = "1.0.4"
  556. source = "registry+https://github.com/rust-lang/crates.io-index"
  557. checksum = "8f20c4be53a8a1ff4c1f1b2bd14570d2f634628709752f0702ecdd2b3f9a5267"
  558. dependencies = [
  559. "winapi-util",
  560. ]
  561. [[package]]
  562. name = "scopeguard"
  563. version = "0.3.3"
  564. source = "registry+https://github.com/rust-lang/crates.io-index"
  565. checksum = "94258f53601af11e6a49f722422f6e3425c52b06245a5cf9bc09908b174f5e27"
  566. [[package]]
  567. name = "semver"
  568. version = "0.9.0"
  569. source = "registry+https://github.com/rust-lang/crates.io-index"
  570. checksum = "1d7eb9ef2c18661902cc47e535f9bc51b78acd254da71d375c2f6720d9a40403"
  571. dependencies = [
  572. "semver-parser",
  573. ]
  574. [[package]]
  575. name = "semver-parser"
  576. version = "0.7.0"
  577. source = "registry+https://github.com/rust-lang/crates.io-index"
  578. checksum = "388a1df253eca08550bef6c72392cfe7c30914bf41df5269b68cbd6ff8f570a3"
  579. [[package]]
  580. name = "serde"
  581. version = "1.0.80"
  582. source = "registry+https://github.com/rust-lang/crates.io-index"
  583. checksum = "15c141fc7027dd265a47c090bf864cf62b42c4d228bbcf4e51a0c9e2b0d3f7ef"
  584. [[package]]
  585. name = "slab"
  586. version = "0.4.1"
  587. source = "registry+https://github.com/rust-lang/crates.io-index"
  588. checksum = "5f9776d6b986f77b35c6cf846c11ad986ff128fe0b2b63a3628e3755e8d3102d"
  589. [[package]]
  590. name = "smallvec"
  591. version = "0.6.6"
  592. source = "registry+https://github.com/rust-lang/crates.io-index"
  593. checksum = "622df2d454c29a4d89b30dc3b27b42d7d90d6b9e587dbf8f67652eb7514da484"
  594. dependencies = [
  595. "unreachable",
  596. ]
  597. [[package]]
  598. name = "stable_deref_trait"
  599. version = "1.1.1"
  600. source = "registry+https://github.com/rust-lang/crates.io-index"
  601. checksum = "dba1a27d3efae4351c8051072d619e3ade2820635c3958d826bfea39d59b54c8"
  602. [[package]]
  603. name = "strsim"
  604. version = "0.7.0"
  605. source = "registry+https://github.com/rust-lang/crates.io-index"
  606. checksum = "bb4f380125926a99e52bc279241539c018323fab05ad6368b56f93d9369ff550"
  607. [[package]]
  608. name = "tempfile"
  609. version = "3.0.5"
  610. source = "registry+https://github.com/rust-lang/crates.io-index"
  611. checksum = "7e91405c14320e5c79b3d148e1c86f40749a36e490642202a31689cb1a3452b2"
  612. dependencies = [
  613. "cfg-if",
  614. "libc",
  615. "rand 0.6.4",
  616. "redox_syscall",
  617. "remove_dir_all",
  618. "winapi 0.3.6",
  619. ]
  620. [[package]]
  621. name = "termion"
  622. version = "1.5.1"
  623. source = "registry+https://github.com/rust-lang/crates.io-index"
  624. checksum = "689a3bdfaab439fd92bc87df5c4c78417d3cbe537487274e9b0b2dce76e92096"
  625. dependencies = [
  626. "libc",
  627. "redox_syscall",
  628. "redox_termios",
  629. ]
  630. [[package]]
  631. name = "textwrap"
  632. version = "0.10.0"
  633. source = "registry+https://github.com/rust-lang/crates.io-index"
  634. checksum = "307686869c93e71f94da64286f9a9524c0f308a9e1c87a583de8e9c9039ad3f6"
  635. dependencies = [
  636. "unicode-width",
  637. ]
  638. [[package]]
  639. name = "thread_local"
  640. version = "0.3.6"
  641. source = "registry+https://github.com/rust-lang/crates.io-index"
  642. checksum = "c6b53e329000edc2b34dbe8545fd20e55a333362d0a321909685a19bd28c3f1b"
  643. dependencies = [
  644. "lazy_static",
  645. ]
  646. [[package]]
  647. name = "time"
  648. version = "0.1.42"
  649. source = "registry+https://github.com/rust-lang/crates.io-index"
  650. checksum = "db8dcfca086c1143c9270ac42a2bbd8a7ee477b78ac8e45b19abfb0cbede4b6f"
  651. dependencies = [
  652. "libc",
  653. "redox_syscall",
  654. "winapi 0.3.6",
  655. ]
  656. [[package]]
  657. name = "tokio-executor"
  658. version = "0.1.5"
  659. source = "registry+https://github.com/rust-lang/crates.io-index"
  660. checksum = "c117b6cf86bb730aab4834f10df96e4dd586eff2c3c27d3781348da49e255bde"
  661. dependencies = [
  662. "futures",
  663. ]
  664. [[package]]
  665. name = "tokio-io"
  666. version = "0.1.10"
  667. source = "registry+https://github.com/rust-lang/crates.io-index"
  668. checksum = "7392fe0a70d5ce0c882c4778116c519bd5dbaa8a7c3ae3d04578b3afafdcda21"
  669. dependencies = [
  670. "bytes",
  671. "futures",
  672. "log",
  673. ]
  674. [[package]]
  675. name = "tokio-reactor"
  676. version = "0.1.7"
  677. source = "registry+https://github.com/rust-lang/crates.io-index"
  678. checksum = "502b625acb4ee13cbb3b90b8ca80e0addd263ddacf6931666ef751e610b07fb5"
  679. dependencies = [
  680. "crossbeam-utils",
  681. "futures",
  682. "lazy_static",
  683. "log",
  684. "mio",
  685. "num_cpus",
  686. "parking_lot",
  687. "slab",
  688. "tokio-executor",
  689. "tokio-io",
  690. ]
  691. [[package]]
  692. name = "toml"
  693. version = "0.4.8"
  694. source = "registry+https://github.com/rust-lang/crates.io-index"
  695. checksum = "4a2ecc31b0351ea18b3fe11274b8db6e4d82bce861bbb22e6dbed40417902c65"
  696. dependencies = [
  697. "serde",
  698. ]
  699. [[package]]
  700. name = "ucd-util"
  701. version = "0.1.3"
  702. source = "registry+https://github.com/rust-lang/crates.io-index"
  703. checksum = "535c204ee4d8434478593480b8f86ab45ec9aae0e83c568ca81abf0fd0e88f86"
  704. [[package]]
  705. name = "unicode-width"
  706. version = "0.1.5"
  707. source = "registry+https://github.com/rust-lang/crates.io-index"
  708. checksum = "882386231c45df4700b275c7ff55b6f3698780a650026380e72dabe76fa46526"
  709. [[package]]
  710. name = "unreachable"
  711. version = "1.0.0"
  712. source = "registry+https://github.com/rust-lang/crates.io-index"
  713. checksum = "382810877fe448991dfc7f0dd6e3ae5d58088fd0ea5e35189655f84e6814fa56"
  714. dependencies = [
  715. "void",
  716. ]
  717. [[package]]
  718. name = "utf8-ranges"
  719. version = "1.0.2"
  720. source = "registry+https://github.com/rust-lang/crates.io-index"
  721. checksum = "796f7e48bef87609f7ade7e06495a87d5cd06c7866e6a5cbfceffc558a243737"
  722. [[package]]
  723. name = "uuid"
  724. version = "0.7.1"
  725. source = "registry+https://github.com/rust-lang/crates.io-index"
  726. checksum = "dab5c5526c5caa3d106653401a267fed923e7046f35895ffcb5ca42db64942e6"
  727. dependencies = [
  728. "rand 0.5.5",
  729. ]
  730. [[package]]
  731. name = "vec_map"
  732. version = "0.8.1"
  733. source = "registry+https://github.com/rust-lang/crates.io-index"
  734. checksum = "05c78687fb1a80548ae3250346c3db86a80a7cdd77bda190189f2d0a0987c81a"
  735. [[package]]
  736. name = "version_check"
  737. version = "0.1.5"
  738. source = "registry+https://github.com/rust-lang/crates.io-index"
  739. checksum = "914b1a6776c4c929a602fafd8bc742e06365d4bcbe48c30f9cca5824f70dc9dd"
  740. [[package]]
  741. name = "void"
  742. version = "1.0.2"
  743. source = "registry+https://github.com/rust-lang/crates.io-index"
  744. checksum = "6a02e4885ed3bc0f2de90ea6dd45ebcbb66dacffe03547fadbb0eeae2770887d"
  745. [[package]]
  746. name = "walkdir"
  747. version = "2.2.7"
  748. source = "registry+https://github.com/rust-lang/crates.io-index"
  749. checksum = "9d9d7ed3431229a144296213105a390676cc49c9b6a72bd19f3176c98e129fa1"
  750. dependencies = [
  751. "same-file",
  752. "winapi 0.3.6",
  753. "winapi-util",
  754. ]
  755. [[package]]
  756. name = "winapi"
  757. version = "0.2.8"
  758. source = "registry+https://github.com/rust-lang/crates.io-index"
  759. checksum = "167dc9d6949a9b857f3451275e911c3f44255842c1f7a76f33c55103a909087a"
  760. [[package]]
  761. name = "winapi"
  762. version = "0.3.6"
  763. source = "registry+https://github.com/rust-lang/crates.io-index"
  764. checksum = "92c1eb33641e276cfa214a0522acad57be5c56b10cb348b3c5117db75f3ac4b0"
  765. dependencies = [
  766. "winapi-i686-pc-windows-gnu",
  767. "winapi-x86_64-pc-windows-gnu",
  768. ]
  769. [[package]]
  770. name = "winapi-build"
  771. version = "0.1.1"
  772. source = "registry+https://github.com/rust-lang/crates.io-index"
  773. checksum = "2d315eee3b34aca4797b2da6b13ed88266e6d612562a0c46390af8299fc699bc"
  774. [[package]]
  775. name = "winapi-i686-pc-windows-gnu"
  776. version = "0.4.0"
  777. source = "registry+https://github.com/rust-lang/crates.io-index"
  778. checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6"
  779. [[package]]
  780. name = "winapi-util"
  781. version = "0.1.1"
  782. source = "registry+https://github.com/rust-lang/crates.io-index"
  783. checksum = "afc5508759c5bf4285e61feb862b6083c8480aec864fa17a81fdec6f69b461ab"
  784. dependencies = [
  785. "winapi 0.3.6",
  786. ]
  787. [[package]]
  788. name = "winapi-x86_64-pc-windows-gnu"
  789. version = "0.4.0"
  790. source = "registry+https://github.com/rust-lang/crates.io-index"
  791. checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f"
  792. [[package]]
  793. name = "ws2_32-sys"
  794. version = "0.2.1"
  795. source = "registry+https://github.com/rust-lang/crates.io-index"
  796. checksum = "d59cefebd0c892fa2dd6de581e937301d8552cb44489cdff035c6187cb63fa5e"
  797. dependencies = [
  798. "winapi 0.2.8",
  799. "winapi-build",
  800. ]