A cli program to easily handle .gitignore files
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.

1396 lines
34 KiB

5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
  1. # This file is automatically @generated by Cargo.
  2. # It is not intended for manual editing.
  3. [[package]]
  4. name = "ansi_term"
  5. version = "0.11.0"
  6. source = "registry+https://github.com/rust-lang/crates.io-index"
  7. checksum = "ee49baf6cb617b853aa8d93bf420db2383fab46d314482ca2803b40d5fde979b"
  8. dependencies = [
  9. "winapi 0.3.8",
  10. ]
  11. [[package]]
  12. name = "anyhow"
  13. version = "1.0.26"
  14. source = "registry+https://github.com/rust-lang/crates.io-index"
  15. checksum = "7825f6833612eb2414095684fcf6c635becf3ce97fe48cf6421321e93bfbd53c"
  16. [[package]]
  17. name = "atty"
  18. version = "0.2.11"
  19. source = "registry+https://github.com/rust-lang/crates.io-index"
  20. checksum = "9a7d5b8723950951411ee34d271d99dddcc2035a16ab25310ea2c8cfd4369652"
  21. dependencies = [
  22. "libc",
  23. "termion",
  24. "winapi 0.3.8",
  25. ]
  26. [[package]]
  27. name = "autocfg"
  28. version = "1.0.0"
  29. source = "registry+https://github.com/rust-lang/crates.io-index"
  30. checksum = "f8aac770f1885fd7e387acedd76065302551364496e46b3dd00860b2f8359b9d"
  31. [[package]]
  32. name = "backtrace"
  33. version = "0.3.44"
  34. source = "registry+https://github.com/rust-lang/crates.io-index"
  35. checksum = "e4036b9bf40f3cf16aba72a3d65e8a520fc4bafcdc7079aea8f848c58c5b5536"
  36. dependencies = [
  37. "backtrace-sys",
  38. "cfg-if",
  39. "libc",
  40. "rustc-demangle",
  41. ]
  42. [[package]]
  43. name = "backtrace-sys"
  44. version = "0.1.32"
  45. source = "registry+https://github.com/rust-lang/crates.io-index"
  46. checksum = "5d6575f128516de27e3ce99689419835fce9643a9b215a14d2b5b685be018491"
  47. dependencies = [
  48. "cc",
  49. "libc",
  50. ]
  51. [[package]]
  52. name = "base64"
  53. version = "0.11.0"
  54. source = "registry+https://github.com/rust-lang/crates.io-index"
  55. checksum = "b41b7ea54a0c9d92199de89e20e58d49f02f8e699814ef3fdf266f6f748d15c7"
  56. [[package]]
  57. name = "bitflags"
  58. version = "1.2.1"
  59. source = "registry+https://github.com/rust-lang/crates.io-index"
  60. checksum = "cf1de2fe8c75bc145a2f577add951f8134889b4795d47466a54a5c846d691693"
  61. [[package]]
  62. name = "bumpalo"
  63. version = "3.2.0"
  64. source = "registry+https://github.com/rust-lang/crates.io-index"
  65. checksum = "1f359dc14ff8911330a51ef78022d376f25ed00248912803b58f00cb1c27f742"
  66. [[package]]
  67. name = "bytes"
  68. version = "0.5.4"
  69. source = "registry+https://github.com/rust-lang/crates.io-index"
  70. checksum = "130aac562c0dd69c56b3b1cc8ffd2e17be31d0b6c25b61c96b76231aa23e39e1"
  71. [[package]]
  72. name = "c2-chacha"
  73. version = "0.2.3"
  74. source = "registry+https://github.com/rust-lang/crates.io-index"
  75. checksum = "214238caa1bf3a496ec3392968969cab8549f96ff30652c9e56885329315f6bb"
  76. dependencies = [
  77. "ppv-lite86",
  78. ]
  79. [[package]]
  80. name = "cc"
  81. version = "1.0.50"
  82. source = "registry+https://github.com/rust-lang/crates.io-index"
  83. checksum = "95e28fa049fda1c330bcf9d723be7663a899c4679724b34c81e9f5a326aab8cd"
  84. [[package]]
  85. name = "cfg-if"
  86. version = "0.1.10"
  87. source = "registry+https://github.com/rust-lang/crates.io-index"
  88. checksum = "4785bdd1c96b2a846b2bd7cc02e86b6b3dbf14e7e53446c4f54c92a361040822"
  89. [[package]]
  90. name = "chrono"
  91. version = "0.4.10"
  92. source = "registry+https://github.com/rust-lang/crates.io-index"
  93. checksum = "31850b4a4d6bae316f7a09e691c944c28299298837edc0a03f755618c23cbc01"
  94. dependencies = [
  95. "num-integer",
  96. "num-traits",
  97. "time",
  98. ]
  99. [[package]]
  100. name = "clap"
  101. version = "2.33.0"
  102. source = "registry+https://github.com/rust-lang/crates.io-index"
  103. checksum = "5067f5bb2d80ef5d68b4c87db81601f0b75bca627bc2ef76b141d7b846a3c6d9"
  104. dependencies = [
  105. "ansi_term",
  106. "atty",
  107. "bitflags",
  108. "strsim",
  109. "textwrap",
  110. "unicode-width",
  111. "vec_map",
  112. ]
  113. [[package]]
  114. name = "core-foundation"
  115. version = "0.6.4"
  116. source = "registry+https://github.com/rust-lang/crates.io-index"
  117. checksum = "25b9e03f145fd4f2bf705e07b900cd41fc636598fe5dc452fd0db1441c3f496d"
  118. dependencies = [
  119. "core-foundation-sys",
  120. "libc",
  121. ]
  122. [[package]]
  123. name = "core-foundation-sys"
  124. version = "0.6.2"
  125. source = "registry+https://github.com/rust-lang/crates.io-index"
  126. checksum = "e7ca8a5221364ef15ce201e8ed2f609fc312682a8f4e0e3d4aa5879764e0fa3b"
  127. [[package]]
  128. name = "dtoa"
  129. version = "0.4.5"
  130. source = "registry+https://github.com/rust-lang/crates.io-index"
  131. checksum = "4358a9e11b9a09cf52383b451b49a169e8d797b68aa02301ff586d70d9661ea3"
  132. [[package]]
  133. name = "encoding_rs"
  134. version = "0.8.22"
  135. source = "registry+https://github.com/rust-lang/crates.io-index"
  136. checksum = "cd8d03faa7fe0c1431609dfad7bbe827af30f82e1e2ae6f7ee4fca6bd764bc28"
  137. dependencies = [
  138. "cfg-if",
  139. ]
  140. [[package]]
  141. name = "error-chain"
  142. version = "0.12.2"
  143. source = "registry+https://github.com/rust-lang/crates.io-index"
  144. checksum = "d371106cc88ffdfb1eabd7111e432da544f16f3e2d7bf1dfe8bf575f1df045cd"
  145. dependencies = [
  146. "backtrace",
  147. "version_check 0.9.1",
  148. ]
  149. [[package]]
  150. name = "fnv"
  151. version = "1.0.6"
  152. source = "registry+https://github.com/rust-lang/crates.io-index"
  153. checksum = "2fad85553e09a6f881f739c29f0b00b0f01357c743266d478b68951ce23285f3"
  154. [[package]]
  155. name = "foreign-types"
  156. version = "0.3.2"
  157. source = "registry+https://github.com/rust-lang/crates.io-index"
  158. checksum = "f6f339eb8adc052cd2ca78910fda869aefa38d22d5cb648e6485e4d3fc06f3b1"
  159. dependencies = [
  160. "foreign-types-shared",
  161. ]
  162. [[package]]
  163. name = "foreign-types-shared"
  164. version = "0.1.1"
  165. source = "registry+https://github.com/rust-lang/crates.io-index"
  166. checksum = "00b0228411908ca8685dba7fc2cdd70ec9990a6e753e89b6ac91a84c40fbaf4b"
  167. [[package]]
  168. name = "fuchsia-zircon"
  169. version = "0.3.3"
  170. source = "registry+https://github.com/rust-lang/crates.io-index"
  171. checksum = "2e9763c69ebaae630ba35f74888db465e49e259ba1bc0eda7d06f4a067615d82"
  172. dependencies = [
  173. "bitflags",
  174. "fuchsia-zircon-sys",
  175. ]
  176. [[package]]
  177. name = "fuchsia-zircon-sys"
  178. version = "0.3.3"
  179. source = "registry+https://github.com/rust-lang/crates.io-index"
  180. checksum = "3dcaa9ae7725d12cdb85b3ad99a434db70b468c09ded17e012d86b5c1010f7a7"
  181. [[package]]
  182. name = "futures-channel"
  183. version = "0.3.4"
  184. source = "registry+https://github.com/rust-lang/crates.io-index"
  185. checksum = "f0c77d04ce8edd9cb903932b608268b3fffec4163dc053b3b402bf47eac1f1a8"
  186. dependencies = [
  187. "futures-core",
  188. ]
  189. [[package]]
  190. name = "futures-core"
  191. version = "0.3.4"
  192. source = "registry+https://github.com/rust-lang/crates.io-index"
  193. checksum = "f25592f769825e89b92358db00d26f965761e094951ac44d3663ef25b7ac464a"
  194. [[package]]
  195. name = "futures-io"
  196. version = "0.3.4"
  197. source = "registry+https://github.com/rust-lang/crates.io-index"
  198. checksum = "a638959aa96152c7a4cddf50fcb1e3fede0583b27157c26e67d6f99904090dc6"
  199. [[package]]
  200. name = "futures-sink"
  201. version = "0.3.4"
  202. source = "registry+https://github.com/rust-lang/crates.io-index"
  203. checksum = "3466821b4bc114d95b087b850a724c6f83115e929bc88f1fa98a3304a944c8a6"
  204. [[package]]
  205. name = "futures-task"
  206. version = "0.3.4"
  207. source = "registry+https://github.com/rust-lang/crates.io-index"
  208. checksum = "7b0a34e53cf6cdcd0178aa573aed466b646eb3db769570841fda0c7ede375a27"
  209. [[package]]
  210. name = "futures-util"
  211. version = "0.3.4"
  212. source = "registry+https://github.com/rust-lang/crates.io-index"
  213. checksum = "22766cf25d64306bedf0384da004d05c9974ab104fcc4528f1236181c18004c5"
  214. dependencies = [
  215. "futures-core",
  216. "futures-io",
  217. "futures-task",
  218. "memchr",
  219. "pin-utils",
  220. "slab",
  221. ]
  222. [[package]]
  223. name = "getrandom"
  224. version = "0.1.14"
  225. source = "registry+https://github.com/rust-lang/crates.io-index"
  226. checksum = "7abc8dd8451921606d809ba32e95b6111925cd2906060d2dcc29c070220503eb"
  227. dependencies = [
  228. "cfg-if",
  229. "libc",
  230. "wasi",
  231. ]
  232. [[package]]
  233. name = "gitig"
  234. version = "0.1.0"
  235. dependencies = [
  236. "error-chain",
  237. "libc",
  238. "log",
  239. "reqwest",
  240. "serde",
  241. "serde_json",
  242. "stderrlog",
  243. "structopt",
  244. ]
  245. [[package]]
  246. name = "h2"
  247. version = "0.2.1"
  248. source = "registry+https://github.com/rust-lang/crates.io-index"
  249. checksum = "b9433d71e471c1736fd5a61b671fc0b148d7a2992f666c958d03cd8feb3b88d1"
  250. dependencies = [
  251. "bytes",
  252. "fnv",
  253. "futures-core",
  254. "futures-sink",
  255. "futures-util",
  256. "http",
  257. "indexmap",
  258. "log",
  259. "slab",
  260. "tokio",
  261. "tokio-util",
  262. ]
  263. [[package]]
  264. name = "heck"
  265. version = "0.3.1"
  266. source = "registry+https://github.com/rust-lang/crates.io-index"
  267. checksum = "20564e78d53d2bb135c343b3f47714a56af2061f1c928fdb541dc7b9fdd94205"
  268. dependencies = [
  269. "unicode-segmentation",
  270. ]
  271. [[package]]
  272. name = "hermit-abi"
  273. version = "0.1.8"
  274. source = "registry+https://github.com/rust-lang/crates.io-index"
  275. checksum = "1010591b26bbfe835e9faeabeb11866061cc7dcebffd56ad7d0942d0e61aefd8"
  276. dependencies = [
  277. "libc",
  278. ]
  279. [[package]]
  280. name = "http"
  281. version = "0.2.0"
  282. source = "registry+https://github.com/rust-lang/crates.io-index"
  283. checksum = "b708cc7f06493459026f53b9a61a7a121a5d1ec6238dee58ea4941132b30156b"
  284. dependencies = [
  285. "bytes",
  286. "fnv",
  287. "itoa",
  288. ]
  289. [[package]]
  290. name = "http-body"
  291. version = "0.3.1"
  292. source = "registry+https://github.com/rust-lang/crates.io-index"
  293. checksum = "13d5ff830006f7646652e057693569bfe0d51760c0085a071769d142a205111b"
  294. dependencies = [
  295. "bytes",
  296. "http",
  297. ]
  298. [[package]]
  299. name = "httparse"
  300. version = "1.3.4"
  301. source = "registry+https://github.com/rust-lang/crates.io-index"
  302. checksum = "cd179ae861f0c2e53da70d892f5f3029f9594be0c41dc5269cd371691b1dc2f9"
  303. [[package]]
  304. name = "hyper"
  305. version = "0.13.2"
  306. source = "registry+https://github.com/rust-lang/crates.io-index"
  307. checksum = "fa1c527bbc634be72aa7ba31e4e4def9bbb020f5416916279b7c705cd838893e"
  308. dependencies = [
  309. "bytes",
  310. "futures-channel",
  311. "futures-core",
  312. "futures-util",
  313. "h2",
  314. "http",
  315. "http-body",
  316. "httparse",
  317. "itoa",
  318. "log",
  319. "net2",
  320. "pin-project",
  321. "time",
  322. "tokio",
  323. "tower-service",
  324. "want",
  325. ]
  326. [[package]]
  327. name = "hyper-tls"
  328. version = "0.4.1"
  329. source = "registry+https://github.com/rust-lang/crates.io-index"
  330. checksum = "3adcd308402b9553630734e9c36b77a7e48b3821251ca2493e8cd596763aafaa"
  331. dependencies = [
  332. "bytes",
  333. "hyper",
  334. "native-tls",
  335. "tokio",
  336. "tokio-tls",
  337. ]
  338. [[package]]
  339. name = "idna"
  340. version = "0.2.0"
  341. source = "registry+https://github.com/rust-lang/crates.io-index"
  342. checksum = "02e2673c30ee86b5b96a9cb52ad15718aa1f966f5ab9ad54a8b95d5ca33120a9"
  343. dependencies = [
  344. "matches",
  345. "unicode-bidi",
  346. "unicode-normalization",
  347. ]
  348. [[package]]
  349. name = "indexmap"
  350. version = "1.3.2"
  351. source = "registry+https://github.com/rust-lang/crates.io-index"
  352. checksum = "076f042c5b7b98f31d205f1249267e12a6518c1481e9dae9764af19b707d2292"
  353. dependencies = [
  354. "autocfg",
  355. ]
  356. [[package]]
  357. name = "iovec"
  358. version = "0.1.4"
  359. source = "registry+https://github.com/rust-lang/crates.io-index"
  360. checksum = "b2b3ea6ff95e175473f8ffe6a7eb7c00d054240321b84c57051175fe3c1e075e"
  361. dependencies = [
  362. "libc",
  363. ]
  364. [[package]]
  365. name = "itoa"
  366. version = "0.4.5"
  367. source = "registry+https://github.com/rust-lang/crates.io-index"
  368. checksum = "b8b7a7c0c47db5545ed3fef7468ee7bb5b74691498139e4b3f6a20685dc6dd8e"
  369. [[package]]
  370. name = "js-sys"
  371. version = "0.3.35"
  372. source = "registry+https://github.com/rust-lang/crates.io-index"
  373. checksum = "7889c7c36282151f6bf465be4700359318aef36baa951462382eae49e9577cf9"
  374. dependencies = [
  375. "wasm-bindgen",
  376. ]
  377. [[package]]
  378. name = "kernel32-sys"
  379. version = "0.2.2"
  380. source = "registry+https://github.com/rust-lang/crates.io-index"
  381. checksum = "7507624b29483431c0ba2d82aece8ca6cdba9382bff4ddd0f7490560c056098d"
  382. dependencies = [
  383. "winapi 0.2.8",
  384. "winapi-build",
  385. ]
  386. [[package]]
  387. name = "lazy_static"
  388. version = "0.2.11"
  389. source = "registry+https://github.com/rust-lang/crates.io-index"
  390. checksum = "76f033c7ad61445c5b347c7382dd1237847eb1bce590fe50365dcb33d546be73"
  391. [[package]]
  392. name = "lazy_static"
  393. version = "1.4.0"
  394. source = "registry+https://github.com/rust-lang/crates.io-index"
  395. checksum = "e2abad23fbc42b3700f2f279844dc832adb2b2eb069b2df918f455c4e18cc646"
  396. [[package]]
  397. name = "libc"
  398. version = "0.2.67"
  399. source = "registry+https://github.com/rust-lang/crates.io-index"
  400. checksum = "eb147597cdf94ed43ab7a9038716637d2d1bf2bc571da995d0028dec06bd3018"
  401. [[package]]
  402. name = "log"
  403. version = "0.4.8"
  404. source = "registry+https://github.com/rust-lang/crates.io-index"
  405. checksum = "14b6052be84e6b71ab17edffc2eeabf5c2c3ae1fdb464aae35ac50c67a44e1f7"
  406. dependencies = [
  407. "cfg-if",
  408. ]
  409. [[package]]
  410. name = "matches"
  411. version = "0.1.8"
  412. source = "registry+https://github.com/rust-lang/crates.io-index"
  413. checksum = "7ffc5c5338469d4d3ea17d269fa8ea3512ad247247c30bd2df69e68309ed0a08"
  414. [[package]]
  415. name = "memchr"
  416. version = "2.3.3"
  417. source = "registry+https://github.com/rust-lang/crates.io-index"
  418. checksum = "3728d817d99e5ac407411fa471ff9800a778d88a24685968b36824eaf4bee400"
  419. [[package]]
  420. name = "mime"
  421. version = "0.3.16"
  422. source = "registry+https://github.com/rust-lang/crates.io-index"
  423. checksum = "2a60c7ce501c71e03a9c9c0d35b861413ae925bd979cc7a4e30d060069aaac8d"
  424. [[package]]
  425. name = "mime_guess"
  426. version = "2.0.1"
  427. source = "registry+https://github.com/rust-lang/crates.io-index"
  428. checksum = "1a0ed03949aef72dbdf3116a383d7b38b4768e6f960528cd6a6044aa9ed68599"
  429. dependencies = [
  430. "mime",
  431. "unicase",
  432. ]
  433. [[package]]
  434. name = "mio"
  435. version = "0.6.21"
  436. source = "registry+https://github.com/rust-lang/crates.io-index"
  437. checksum = "302dec22bcf6bae6dfb69c647187f4b4d0fb6f535521f7bc022430ce8e12008f"
  438. dependencies = [
  439. "cfg-if",
  440. "fuchsia-zircon",
  441. "fuchsia-zircon-sys",
  442. "iovec",
  443. "kernel32-sys",
  444. "libc",
  445. "log",
  446. "miow",
  447. "net2",
  448. "slab",
  449. "winapi 0.2.8",
  450. ]
  451. [[package]]
  452. name = "miow"
  453. version = "0.2.1"
  454. source = "registry+https://github.com/rust-lang/crates.io-index"
  455. checksum = "8c1f2f3b1cf331de6896aabf6e9d55dca90356cc9960cca7eaaf408a355ae919"
  456. dependencies = [
  457. "kernel32-sys",
  458. "net2",
  459. "winapi 0.2.8",
  460. "ws2_32-sys",
  461. ]
  462. [[package]]
  463. name = "native-tls"
  464. version = "0.2.3"
  465. source = "registry+https://github.com/rust-lang/crates.io-index"
  466. checksum = "4b2df1a4c22fd44a62147fd8f13dd0f95c9d8ca7b2610299b2a2f9cf8964274e"
  467. dependencies = [
  468. "lazy_static 1.4.0",
  469. "libc",
  470. "log",
  471. "openssl",
  472. "openssl-probe",
  473. "openssl-sys",
  474. "schannel",
  475. "security-framework",
  476. "security-framework-sys",
  477. "tempfile",
  478. ]
  479. [[package]]
  480. name = "net2"
  481. version = "0.2.33"
  482. source = "registry+https://github.com/rust-lang/crates.io-index"
  483. checksum = "42550d9fb7b6684a6d404d9fa7250c2eb2646df731d1c06afc06dcee9e1bcf88"
  484. dependencies = [
  485. "cfg-if",
  486. "libc",
  487. "winapi 0.3.8",
  488. ]
  489. [[package]]
  490. name = "nom"
  491. version = "4.2.3"
  492. source = "registry+https://github.com/rust-lang/crates.io-index"
  493. checksum = "2ad2a91a8e869eeb30b9cb3119ae87773a8f4ae617f41b1eb9c154b2905f7bd6"
  494. dependencies = [
  495. "memchr",
  496. "version_check 0.1.5",
  497. ]
  498. [[package]]
  499. name = "num-integer"
  500. version = "0.1.42"
  501. source = "registry+https://github.com/rust-lang/crates.io-index"
  502. checksum = "3f6ea62e9d81a77cd3ee9a2a5b9b609447857f3d358704331e4ef39eb247fcba"
  503. dependencies = [
  504. "autocfg",
  505. "num-traits",
  506. ]
  507. [[package]]
  508. name = "num-traits"
  509. version = "0.2.11"
  510. source = "registry+https://github.com/rust-lang/crates.io-index"
  511. checksum = "c62be47e61d1842b9170f0fdeec8eba98e60e90e5446449a0545e5152acd7096"
  512. dependencies = [
  513. "autocfg",
  514. ]
  515. [[package]]
  516. name = "num_cpus"
  517. version = "1.12.0"
  518. source = "registry+https://github.com/rust-lang/crates.io-index"
  519. checksum = "46203554f085ff89c235cd12f7075f3233af9b11ed7c9e16dfe2560d03313ce6"
  520. dependencies = [
  521. "hermit-abi",
  522. "libc",
  523. ]
  524. [[package]]
  525. name = "numtoa"
  526. version = "0.1.0"
  527. source = "registry+https://github.com/rust-lang/crates.io-index"
  528. checksum = "b8f8bdf33df195859076e54ab11ee78a1b208382d3a26ec40d142ffc1ecc49ef"
  529. [[package]]
  530. name = "openssl"
  531. version = "0.10.28"
  532. source = "registry+https://github.com/rust-lang/crates.io-index"
  533. checksum = "973293749822d7dd6370d6da1e523b0d1db19f06c459134c658b2a4261378b52"
  534. dependencies = [
  535. "bitflags",
  536. "cfg-if",
  537. "foreign-types",
  538. "lazy_static 1.4.0",
  539. "libc",
  540. "openssl-sys",
  541. ]
  542. [[package]]
  543. name = "openssl-probe"
  544. version = "0.1.2"
  545. source = "registry+https://github.com/rust-lang/crates.io-index"
  546. checksum = "77af24da69f9d9341038eba93a073b1fdaaa1b788221b00a69bce9e762cb32de"
  547. [[package]]
  548. name = "openssl-sys"
  549. version = "0.9.54"
  550. source = "registry+https://github.com/rust-lang/crates.io-index"
  551. checksum = "1024c0a59774200a555087a6da3f253a9095a5f344e353b212ac4c8b8e450986"
  552. dependencies = [
  553. "autocfg",
  554. "cc",
  555. "libc",
  556. "pkg-config",
  557. "vcpkg",
  558. ]
  559. [[package]]
  560. name = "percent-encoding"
  561. version = "2.1.0"
  562. source = "registry+https://github.com/rust-lang/crates.io-index"
  563. checksum = "d4fd5641d01c8f18a23da7b6fe29298ff4b55afcccdf78973b24cf3175fee32e"
  564. [[package]]
  565. name = "pin-project"
  566. version = "0.4.8"
  567. source = "registry+https://github.com/rust-lang/crates.io-index"
  568. checksum = "7804a463a8d9572f13453c516a5faea534a2403d7ced2f0c7e100eeff072772c"
  569. dependencies = [
  570. "pin-project-internal",
  571. ]
  572. [[package]]
  573. name = "pin-project-internal"
  574. version = "0.4.8"
  575. source = "registry+https://github.com/rust-lang/crates.io-index"
  576. checksum = "385322a45f2ecf3410c68d2a549a4a2685e8051d0f278e39743ff4e451cb9b3f"
  577. dependencies = [
  578. "proc-macro2",
  579. "quote",
  580. "syn",
  581. ]
  582. [[package]]
  583. name = "pin-project-lite"
  584. version = "0.1.4"
  585. source = "registry+https://github.com/rust-lang/crates.io-index"
  586. checksum = "237844750cfbb86f67afe27eee600dfbbcb6188d734139b534cbfbf4f96792ae"
  587. [[package]]
  588. name = "pin-utils"
  589. version = "0.1.0-alpha.4"
  590. source = "registry+https://github.com/rust-lang/crates.io-index"
  591. checksum = "5894c618ce612a3fa23881b152b608bafb8c56cfc22f434a3ba3120b40f7b587"
  592. [[package]]
  593. name = "pkg-config"
  594. version = "0.3.17"
  595. source = "registry+https://github.com/rust-lang/crates.io-index"
  596. checksum = "05da548ad6865900e60eaba7f589cc0783590a92e940c26953ff81ddbab2d677"
  597. [[package]]
  598. name = "ppv-lite86"
  599. version = "0.2.6"
  600. source = "registry+https://github.com/rust-lang/crates.io-index"
  601. checksum = "74490b50b9fbe561ac330df47c08f3f33073d2d00c150f719147d7c54522fa1b"
  602. [[package]]
  603. name = "proc-macro-error"
  604. version = "0.4.9"
  605. source = "registry+https://github.com/rust-lang/crates.io-index"
  606. checksum = "052b3c9af39c7e5e94245f820530487d19eb285faedcb40e0c3275132293f242"
  607. dependencies = [
  608. "proc-macro-error-attr",
  609. "proc-macro2",
  610. "quote",
  611. "rustversion",
  612. "syn",
  613. ]
  614. [[package]]
  615. name = "proc-macro-error-attr"
  616. version = "0.4.9"
  617. source = "registry+https://github.com/rust-lang/crates.io-index"
  618. checksum = "d175bef481c7902e63e3165627123fff3502f06ac043d3ef42d08c1246da9253"
  619. dependencies = [
  620. "proc-macro2",
  621. "quote",
  622. "rustversion",
  623. "syn",
  624. "syn-mid",
  625. ]
  626. [[package]]
  627. name = "proc-macro2"
  628. version = "1.0.9"
  629. source = "registry+https://github.com/rust-lang/crates.io-index"
  630. checksum = "6c09721c6781493a2a492a96b5a5bf19b65917fe6728884e7c44dd0c60ca3435"
  631. dependencies = [
  632. "unicode-xid",
  633. ]
  634. [[package]]
  635. name = "quote"
  636. version = "1.0.2"
  637. source = "registry+https://github.com/rust-lang/crates.io-index"
  638. checksum = "053a8c8bcc71fcce321828dc897a98ab9760bef03a4fc36693c231e5b3216cfe"
  639. dependencies = [
  640. "proc-macro2",
  641. ]
  642. [[package]]
  643. name = "rand"
  644. version = "0.7.3"
  645. source = "registry+https://github.com/rust-lang/crates.io-index"
  646. checksum = "6a6b1679d49b24bbfe0c803429aa1874472f50d9b363131f0e89fc356b544d03"
  647. dependencies = [
  648. "getrandom",
  649. "libc",
  650. "rand_chacha",
  651. "rand_core",
  652. "rand_hc",
  653. ]
  654. [[package]]
  655. name = "rand_chacha"
  656. version = "0.2.1"
  657. source = "registry+https://github.com/rust-lang/crates.io-index"
  658. checksum = "03a2a90da8c7523f554344f921aa97283eadf6ac484a6d2a7d0212fa7f8d6853"
  659. dependencies = [
  660. "c2-chacha",
  661. "rand_core",
  662. ]
  663. [[package]]
  664. name = "rand_core"
  665. version = "0.5.1"
  666. source = "registry+https://github.com/rust-lang/crates.io-index"
  667. checksum = "90bde5296fc891b0cef12a6d03ddccc162ce7b2aff54160af9338f8d40df6d19"
  668. dependencies = [
  669. "getrandom",
  670. ]
  671. [[package]]
  672. name = "rand_hc"
  673. version = "0.2.0"
  674. source = "registry+https://github.com/rust-lang/crates.io-index"
  675. checksum = "ca3129af7b92a17112d59ad498c6f81eaf463253766b90396d39ea7a39d6613c"
  676. dependencies = [
  677. "rand_core",
  678. ]
  679. [[package]]
  680. name = "redox_syscall"
  681. version = "0.1.56"
  682. source = "registry+https://github.com/rust-lang/crates.io-index"
  683. checksum = "2439c63f3f6139d1b57529d16bc3b8bb855230c8efcc5d3a896c8bea7c3b1e84"
  684. [[package]]
  685. name = "redox_termios"
  686. version = "0.1.1"
  687. source = "registry+https://github.com/rust-lang/crates.io-index"
  688. checksum = "7e891cfe48e9100a70a3b6eb652fef28920c117d366339687bd5576160db0f76"
  689. dependencies = [
  690. "redox_syscall",
  691. ]
  692. [[package]]
  693. name = "remove_dir_all"
  694. version = "0.5.2"
  695. source = "registry+https://github.com/rust-lang/crates.io-index"
  696. checksum = "4a83fa3702a688b9359eccba92d153ac33fd2e8462f9e0e3fdf155239ea7792e"
  697. dependencies = [
  698. "winapi 0.3.8",
  699. ]
  700. [[package]]
  701. name = "reqwest"
  702. version = "0.10.2"
  703. source = "registry+https://github.com/rust-lang/crates.io-index"
  704. checksum = "bae3fc32eacd4a5200c6b34bd6c057b07fb64f5a1e55bb67d624cc1393354621"
  705. dependencies = [
  706. "base64",
  707. "bytes",
  708. "encoding_rs",
  709. "futures-core",
  710. "futures-util",
  711. "http",
  712. "http-body",
  713. "hyper",
  714. "hyper-tls",
  715. "js-sys",
  716. "lazy_static 1.4.0",
  717. "log",
  718. "mime",
  719. "mime_guess",
  720. "native-tls",
  721. "percent-encoding",
  722. "pin-project-lite",
  723. "serde",
  724. "serde_json",
  725. "serde_urlencoded",
  726. "time",
  727. "tokio",
  728. "tokio-tls",
  729. "url",
  730. "wasm-bindgen",
  731. "wasm-bindgen-futures",
  732. "web-sys",
  733. "winreg",
  734. ]
  735. [[package]]
  736. name = "rustc-demangle"
  737. version = "0.1.16"
  738. source = "registry+https://github.com/rust-lang/crates.io-index"
  739. checksum = "4c691c0e608126e00913e33f0ccf3727d5fc84573623b8d65b2df340b5201783"
  740. [[package]]
  741. name = "rustversion"
  742. version = "1.0.2"
  743. source = "registry+https://github.com/rust-lang/crates.io-index"
  744. checksum = "b3bba175698996010c4f6dce5e7f173b6eb781fce25d2cfc45e27091ce0b79f6"
  745. dependencies = [
  746. "proc-macro2",
  747. "quote",
  748. "syn",
  749. ]
  750. [[package]]
  751. name = "ryu"
  752. version = "1.0.2"
  753. source = "registry+https://github.com/rust-lang/crates.io-index"
  754. checksum = "bfa8506c1de11c9c4e4c38863ccbe02a305c8188e85a05a784c9e11e1c3910c8"
  755. [[package]]
  756. name = "schannel"
  757. version = "0.1.17"
  758. source = "registry+https://github.com/rust-lang/crates.io-index"
  759. checksum = "507a9e6e8ffe0a4e0ebb9a10293e62fdf7657c06f1b8bb07a8fcf697d2abf295"
  760. dependencies = [
  761. "lazy_static 1.4.0",
  762. "winapi 0.3.8",
  763. ]
  764. [[package]]
  765. name = "security-framework"
  766. version = "0.3.4"
  767. source = "registry+https://github.com/rust-lang/crates.io-index"
  768. checksum = "8ef2429d7cefe5fd28bd1d2ed41c944547d4ff84776f5935b456da44593a16df"
  769. dependencies = [
  770. "core-foundation",
  771. "core-foundation-sys",
  772. "libc",
  773. "security-framework-sys",
  774. ]
  775. [[package]]
  776. name = "security-framework-sys"
  777. version = "0.3.3"
  778. source = "registry+https://github.com/rust-lang/crates.io-index"
  779. checksum = "e31493fc37615debb8c5090a7aeb4a9730bc61e77ab10b9af59f1a202284f895"
  780. dependencies = [
  781. "core-foundation-sys",
  782. ]
  783. [[package]]
  784. name = "serde"
  785. version = "1.0.104"
  786. source = "registry+https://github.com/rust-lang/crates.io-index"
  787. checksum = "414115f25f818d7dfccec8ee535d76949ae78584fc4f79a6f45a904bf8ab4449"
  788. dependencies = [
  789. "serde_derive",
  790. ]
  791. [[package]]
  792. name = "serde_derive"
  793. version = "1.0.104"
  794. source = "registry+https://github.com/rust-lang/crates.io-index"
  795. checksum = "128f9e303a5a29922045a830221b8f78ec74a5f544944f3d5984f8ec3895ef64"
  796. dependencies = [
  797. "proc-macro2",
  798. "quote",
  799. "syn",
  800. ]
  801. [[package]]
  802. name = "serde_json"
  803. version = "1.0.48"
  804. source = "registry+https://github.com/rust-lang/crates.io-index"
  805. checksum = "9371ade75d4c2d6cb154141b9752cf3781ec9c05e0e5cf35060e1e70ee7b9c25"
  806. dependencies = [
  807. "itoa",
  808. "ryu",
  809. "serde",
  810. ]
  811. [[package]]
  812. name = "serde_urlencoded"
  813. version = "0.6.1"
  814. source = "registry+https://github.com/rust-lang/crates.io-index"
  815. checksum = "9ec5d77e2d4c73717816afac02670d5c4f534ea95ed430442cad02e7a6e32c97"
  816. dependencies = [
  817. "dtoa",
  818. "itoa",
  819. "serde",
  820. "url",
  821. ]
  822. [[package]]
  823. name = "slab"
  824. version = "0.4.2"
  825. source = "registry+https://github.com/rust-lang/crates.io-index"
  826. checksum = "c111b5bd5695e56cffe5129854aa230b39c93a305372fdbb2668ca2394eea9f8"
  827. [[package]]
  828. name = "smallvec"
  829. version = "1.2.0"
  830. source = "registry+https://github.com/rust-lang/crates.io-index"
  831. checksum = "5c2fb2ec9bcd216a5b0d0ccf31ab17b5ed1d627960edff65bbe95d3ce221cefc"
  832. [[package]]
  833. name = "sourcefile"
  834. version = "0.1.4"
  835. source = "registry+https://github.com/rust-lang/crates.io-index"
  836. checksum = "4bf77cb82ba8453b42b6ae1d692e4cdc92f9a47beaf89a847c8be83f4e328ad3"
  837. [[package]]
  838. name = "stderrlog"
  839. version = "0.4.3"
  840. source = "registry+https://github.com/rust-lang/crates.io-index"
  841. checksum = "32e5ee9b90a5452c570a0b0ac1c99ae9498db7e56e33d74366de7f2a7add7f25"
  842. dependencies = [
  843. "atty",
  844. "chrono",
  845. "log",
  846. "termcolor",
  847. "thread_local",
  848. ]
  849. [[package]]
  850. name = "strsim"
  851. version = "0.8.0"
  852. source = "registry+https://github.com/rust-lang/crates.io-index"
  853. checksum = "8ea5119cdb4c55b55d432abb513a0429384878c15dde60cc77b1c99de1a95a6a"
  854. [[package]]
  855. name = "structopt"
  856. version = "0.3.9"
  857. source = "registry+https://github.com/rust-lang/crates.io-index"
  858. checksum = "a1bcbed7d48956fcbb5d80c6b95aedb553513de0a1b451ea92679d999c010e98"
  859. dependencies = [
  860. "clap",
  861. "lazy_static 1.4.0",
  862. "structopt-derive",
  863. ]
  864. [[package]]
  865. name = "structopt-derive"
  866. version = "0.4.2"
  867. source = "registry+https://github.com/rust-lang/crates.io-index"
  868. checksum = "095064aa1f5b94d14e635d0a5684cf140c43ae40a0fd990708d38f5d669e5f64"
  869. dependencies = [
  870. "heck",
  871. "proc-macro-error",
  872. "proc-macro2",
  873. "quote",
  874. "syn",
  875. ]
  876. [[package]]
  877. name = "syn"
  878. version = "1.0.16"
  879. source = "registry+https://github.com/rust-lang/crates.io-index"
  880. checksum = "123bd9499cfb380418d509322d7a6d52e5315f064fe4b3ad18a53d6b92c07859"
  881. dependencies = [
  882. "proc-macro2",
  883. "quote",
  884. "unicode-xid",
  885. ]
  886. [[package]]
  887. name = "syn-mid"
  888. version = "0.5.0"
  889. source = "registry+https://github.com/rust-lang/crates.io-index"
  890. checksum = "7be3539f6c128a931cf19dcee741c1af532c7fd387baa739c03dd2e96479338a"
  891. dependencies = [
  892. "proc-macro2",
  893. "quote",
  894. "syn",
  895. ]
  896. [[package]]
  897. name = "tempfile"
  898. version = "3.1.0"
  899. source = "registry+https://github.com/rust-lang/crates.io-index"
  900. checksum = "7a6e24d9338a0a5be79593e2fa15a648add6138caa803e2d5bc782c371732ca9"
  901. dependencies = [
  902. "cfg-if",
  903. "libc",
  904. "rand",
  905. "redox_syscall",
  906. "remove_dir_all",
  907. "winapi 0.3.8",
  908. ]
  909. [[package]]
  910. name = "termcolor"
  911. version = "1.1.0"
  912. source = "registry+https://github.com/rust-lang/crates.io-index"
  913. checksum = "bb6bfa289a4d7c5766392812c0a1f4c1ba45afa1ad47803c11e1f407d846d75f"
  914. dependencies = [
  915. "winapi-util",
  916. ]
  917. [[package]]
  918. name = "termion"
  919. version = "1.5.5"
  920. source = "registry+https://github.com/rust-lang/crates.io-index"
  921. checksum = "c22cec9d8978d906be5ac94bceb5a010d885c626c4c8855721a4dbd20e3ac905"
  922. dependencies = [
  923. "libc",
  924. "numtoa",
  925. "redox_syscall",
  926. "redox_termios",
  927. ]
  928. [[package]]
  929. name = "textwrap"
  930. version = "0.11.0"
  931. source = "registry+https://github.com/rust-lang/crates.io-index"
  932. checksum = "d326610f408c7a4eb6f51c37c330e496b08506c9457c9d34287ecc38809fb060"
  933. dependencies = [
  934. "unicode-width",
  935. ]
  936. [[package]]
  937. name = "thread_local"
  938. version = "0.3.4"
  939. source = "registry+https://github.com/rust-lang/crates.io-index"
  940. checksum = "1697c4b57aeeb7a536b647165a2825faddffb1d3bad386d507709bd51a90bb14"
  941. dependencies = [
  942. "lazy_static 0.2.11",
  943. "unreachable",
  944. ]
  945. [[package]]
  946. name = "time"
  947. version = "0.1.42"
  948. source = "registry+https://github.com/rust-lang/crates.io-index"
  949. checksum = "db8dcfca086c1143c9270ac42a2bbd8a7ee477b78ac8e45b19abfb0cbede4b6f"
  950. dependencies = [
  951. "libc",
  952. "redox_syscall",
  953. "winapi 0.3.8",
  954. ]
  955. [[package]]
  956. name = "tokio"
  957. version = "0.2.11"
  958. source = "registry+https://github.com/rust-lang/crates.io-index"
  959. checksum = "8fdd17989496f49cdc57978c96f0c9fe5e4a58a8bddc6813c449a4624f6a030b"
  960. dependencies = [
  961. "bytes",
  962. "fnv",
  963. "iovec",
  964. "lazy_static 1.4.0",
  965. "memchr",
  966. "mio",
  967. "num_cpus",
  968. "pin-project-lite",
  969. "slab",
  970. ]
  971. [[package]]
  972. name = "tokio-tls"
  973. version = "0.3.0"
  974. source = "registry+https://github.com/rust-lang/crates.io-index"
  975. checksum = "7bde02a3a5291395f59b06ec6945a3077602fac2b07eeeaf0dee2122f3619828"
  976. dependencies = [
  977. "native-tls",
  978. "tokio",
  979. ]
  980. [[package]]
  981. name = "tokio-util"
  982. version = "0.2.0"
  983. source = "registry+https://github.com/rust-lang/crates.io-index"
  984. checksum = "571da51182ec208780505a32528fc5512a8fe1443ab960b3f2f3ef093cd16930"
  985. dependencies = [
  986. "bytes",
  987. "futures-core",
  988. "futures-sink",
  989. "log",
  990. "pin-project-lite",
  991. "tokio",
  992. ]
  993. [[package]]
  994. name = "tower-service"
  995. version = "0.3.0"
  996. source = "registry+https://github.com/rust-lang/crates.io-index"
  997. checksum = "e987b6bf443f4b5b3b6f38704195592cca41c5bb7aedd3c3693c7081f8289860"
  998. [[package]]
  999. name = "try-lock"
  1000. version = "0.2.2"
  1001. source = "registry+https://github.com/rust-lang/crates.io-index"
  1002. checksum = "e604eb7b43c06650e854be16a2a03155743d3752dd1c943f6829e26b7a36e382"
  1003. [[package]]
  1004. name = "unicase"
  1005. version = "2.6.0"
  1006. source = "registry+https://github.com/rust-lang/crates.io-index"
  1007. checksum = "50f37be617794602aabbeee0be4f259dc1778fabe05e2d67ee8f79326d5cb4f6"
  1008. dependencies = [
  1009. "version_check 0.9.1",
  1010. ]
  1011. [[package]]
  1012. name = "unicode-bidi"
  1013. version = "0.3.4"
  1014. source = "registry+https://github.com/rust-lang/crates.io-index"
  1015. checksum = "49f2bd0c6468a8230e1db229cff8029217cf623c767ea5d60bfbd42729ea54d5"
  1016. dependencies = [
  1017. "matches",
  1018. ]
  1019. [[package]]
  1020. name = "unicode-normalization"
  1021. version = "0.1.12"
  1022. source = "registry+https://github.com/rust-lang/crates.io-index"
  1023. checksum = "5479532badd04e128284890390c1e876ef7a993d0570b3597ae43dfa1d59afa4"
  1024. dependencies = [
  1025. "smallvec",
  1026. ]
  1027. [[package]]
  1028. name = "unicode-segmentation"
  1029. version = "1.6.0"
  1030. source = "registry+https://github.com/rust-lang/crates.io-index"
  1031. checksum = "e83e153d1053cbb5a118eeff7fd5be06ed99153f00dbcd8ae310c5fb2b22edc0"
  1032. [[package]]
  1033. name = "unicode-width"
  1034. version = "0.1.7"
  1035. source = "registry+https://github.com/rust-lang/crates.io-index"
  1036. checksum = "caaa9d531767d1ff2150b9332433f32a24622147e5ebb1f26409d5da67afd479"
  1037. [[package]]
  1038. name = "unicode-xid"
  1039. version = "0.2.0"
  1040. source = "registry+https://github.com/rust-lang/crates.io-index"
  1041. checksum = "826e7639553986605ec5979c7dd957c7895e93eabed50ab2ffa7f6128a75097c"
  1042. [[package]]
  1043. name = "unreachable"
  1044. version = "1.0.0"
  1045. source = "registry+https://github.com/rust-lang/crates.io-index"
  1046. checksum = "382810877fe448991dfc7f0dd6e3ae5d58088fd0ea5e35189655f84e6814fa56"
  1047. dependencies = [
  1048. "void",
  1049. ]
  1050. [[package]]
  1051. name = "url"
  1052. version = "2.1.1"
  1053. source = "registry+https://github.com/rust-lang/crates.io-index"
  1054. checksum = "829d4a8476c35c9bf0bbce5a3b23f4106f79728039b726d292bb93bc106787cb"
  1055. dependencies = [
  1056. "idna",
  1057. "matches",
  1058. "percent-encoding",
  1059. ]
  1060. [[package]]
  1061. name = "vcpkg"
  1062. version = "0.2.8"
  1063. source = "registry+https://github.com/rust-lang/crates.io-index"
  1064. checksum = "3fc439f2794e98976c88a2a2dafce96b930fe8010b0a256b3c2199a773933168"
  1065. [[package]]
  1066. name = "vec_map"
  1067. version = "0.8.1"
  1068. source = "registry+https://github.com/rust-lang/crates.io-index"
  1069. checksum = "05c78687fb1a80548ae3250346c3db86a80a7cdd77bda190189f2d0a0987c81a"
  1070. [[package]]
  1071. name = "version_check"
  1072. version = "0.1.5"
  1073. source = "registry+https://github.com/rust-lang/crates.io-index"
  1074. checksum = "914b1a6776c4c929a602fafd8bc742e06365d4bcbe48c30f9cca5824f70dc9dd"
  1075. [[package]]
  1076. name = "version_check"
  1077. version = "0.9.1"
  1078. source = "registry+https://github.com/rust-lang/crates.io-index"
  1079. checksum = "078775d0255232fb988e6fccf26ddc9d1ac274299aaedcedce21c6f72cc533ce"
  1080. [[package]]
  1081. name = "void"
  1082. version = "1.0.2"
  1083. source = "registry+https://github.com/rust-lang/crates.io-index"
  1084. checksum = "6a02e4885ed3bc0f2de90ea6dd45ebcbb66dacffe03547fadbb0eeae2770887d"
  1085. [[package]]
  1086. name = "want"
  1087. version = "0.3.0"
  1088. source = "registry+https://github.com/rust-lang/crates.io-index"
  1089. checksum = "1ce8a968cb1cd110d136ff8b819a556d6fb6d919363c61534f6860c7eb172ba0"
  1090. dependencies = [
  1091. "log",
  1092. "try-lock",
  1093. ]
  1094. [[package]]
  1095. name = "wasi"
  1096. version = "0.9.0+wasi-snapshot-preview1"
  1097. source = "registry+https://github.com/rust-lang/crates.io-index"
  1098. checksum = "cccddf32554fecc6acb585f82a32a72e28b48f8c4c1883ddfeeeaa96f7d8e519"
  1099. [[package]]
  1100. name = "wasm-bindgen"
  1101. version = "0.2.58"
  1102. source = "registry+https://github.com/rust-lang/crates.io-index"
  1103. checksum = "5205e9afdf42282b192e2310a5b463a6d1c1d774e30dc3c791ac37ab42d2616c"
  1104. dependencies = [
  1105. "cfg-if",
  1106. "serde",
  1107. "serde_json",
  1108. "wasm-bindgen-macro",
  1109. ]
  1110. [[package]]
  1111. name = "wasm-bindgen-backend"
  1112. version = "0.2.58"
  1113. source = "registry+https://github.com/rust-lang/crates.io-index"
  1114. checksum = "11cdb95816290b525b32587d76419facd99662a07e59d3cdb560488a819d9a45"
  1115. dependencies = [
  1116. "bumpalo",
  1117. "lazy_static 1.4.0",
  1118. "log",
  1119. "proc-macro2",
  1120. "quote",
  1121. "syn",
  1122. "wasm-bindgen-shared",
  1123. ]
  1124. [[package]]
  1125. name = "wasm-bindgen-futures"
  1126. version = "0.4.8"
  1127. source = "registry+https://github.com/rust-lang/crates.io-index"
  1128. checksum = "8bbdd49e3e28b40dec6a9ba8d17798245ce32b019513a845369c641b275135d9"
  1129. dependencies = [
  1130. "cfg-if",
  1131. "js-sys",
  1132. "wasm-bindgen",
  1133. "web-sys",
  1134. ]
  1135. [[package]]
  1136. name = "wasm-bindgen-macro"
  1137. version = "0.2.58"
  1138. source = "registry+https://github.com/rust-lang/crates.io-index"
  1139. checksum = "574094772ce6921576fb6f2e3f7497b8a76273b6db092be18fc48a082de09dc3"
  1140. dependencies = [
  1141. "quote",
  1142. "wasm-bindgen-macro-support",
  1143. ]
  1144. [[package]]
  1145. name = "wasm-bindgen-macro-support"
  1146. version = "0.2.58"
  1147. source = "registry+https://github.com/rust-lang/crates.io-index"
  1148. checksum = "e85031354f25eaebe78bb7db1c3d86140312a911a106b2e29f9cc440ce3e7668"
  1149. dependencies = [
  1150. "proc-macro2",
  1151. "quote",
  1152. "syn",
  1153. "wasm-bindgen-backend",
  1154. "wasm-bindgen-shared",
  1155. ]
  1156. [[package]]
  1157. name = "wasm-bindgen-shared"
  1158. version = "0.2.58"
  1159. source = "registry+https://github.com/rust-lang/crates.io-index"
  1160. checksum = "f5e7e61fc929f4c0dddb748b102ebf9f632e2b8d739f2016542b4de2965a9601"
  1161. [[package]]
  1162. name = "wasm-bindgen-webidl"
  1163. version = "0.2.58"
  1164. source = "registry+https://github.com/rust-lang/crates.io-index"
  1165. checksum = "ef012a0d93fc0432df126a8eaf547b2dce25a8ce9212e1d3cbeef5c11157975d"
  1166. dependencies = [
  1167. "anyhow",
  1168. "heck",
  1169. "log",
  1170. "proc-macro2",
  1171. "quote",
  1172. "syn",
  1173. "wasm-bindgen-backend",
  1174. "weedle",
  1175. ]
  1176. [[package]]
  1177. name = "web-sys"
  1178. version = "0.3.35"
  1179. source = "registry+https://github.com/rust-lang/crates.io-index"
  1180. checksum = "aaf97caf6aa8c2b1dac90faf0db529d9d63c93846cca4911856f78a83cebf53b"
  1181. dependencies = [
  1182. "anyhow",
  1183. "js-sys",
  1184. "sourcefile",
  1185. "wasm-bindgen",
  1186. "wasm-bindgen-webidl",
  1187. ]
  1188. [[package]]
  1189. name = "weedle"
  1190. version = "0.10.0"
  1191. source = "registry+https://github.com/rust-lang/crates.io-index"
  1192. checksum = "3bb43f70885151e629e2a19ce9e50bd730fd436cfd4b666894c9ce4de9141164"
  1193. dependencies = [
  1194. "nom",
  1195. ]
  1196. [[package]]
  1197. name = "winapi"
  1198. version = "0.2.8"
  1199. source = "registry+https://github.com/rust-lang/crates.io-index"
  1200. checksum = "167dc9d6949a9b857f3451275e911c3f44255842c1f7a76f33c55103a909087a"
  1201. [[package]]
  1202. name = "winapi"
  1203. version = "0.3.8"
  1204. source = "registry+https://github.com/rust-lang/crates.io-index"
  1205. checksum = "8093091eeb260906a183e6ae1abdba2ef5ef2257a21801128899c3fc699229c6"
  1206. dependencies = [
  1207. "winapi-i686-pc-windows-gnu",
  1208. "winapi-x86_64-pc-windows-gnu",
  1209. ]
  1210. [[package]]
  1211. name = "winapi-build"
  1212. version = "0.1.1"
  1213. source = "registry+https://github.com/rust-lang/crates.io-index"
  1214. checksum = "2d315eee3b34aca4797b2da6b13ed88266e6d612562a0c46390af8299fc699bc"
  1215. [[package]]
  1216. name = "winapi-i686-pc-windows-gnu"
  1217. version = "0.4.0"
  1218. source = "registry+https://github.com/rust-lang/crates.io-index"
  1219. checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6"
  1220. [[package]]
  1221. name = "winapi-util"
  1222. version = "0.1.3"
  1223. source = "registry+https://github.com/rust-lang/crates.io-index"
  1224. checksum = "4ccfbf554c6ad11084fb7517daca16cfdcaccbdadba4fc336f032a8b12c2ad80"
  1225. dependencies = [
  1226. "winapi 0.3.8",
  1227. ]
  1228. [[package]]
  1229. name = "winapi-x86_64-pc-windows-gnu"
  1230. version = "0.4.0"
  1231. source = "registry+https://github.com/rust-lang/crates.io-index"
  1232. checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f"
  1233. [[package]]
  1234. name = "winreg"
  1235. version = "0.6.2"
  1236. source = "registry+https://github.com/rust-lang/crates.io-index"
  1237. checksum = "b2986deb581c4fe11b621998a5e53361efe6b48a151178d0cd9eeffa4dc6acc9"
  1238. dependencies = [
  1239. "winapi 0.3.8",
  1240. ]
  1241. [[package]]
  1242. name = "ws2_32-sys"
  1243. version = "0.2.1"
  1244. source = "registry+https://github.com/rust-lang/crates.io-index"
  1245. checksum = "d59cefebd0c892fa2dd6de581e937301d8552cb44489cdff035c6187cb63fa5e"
  1246. dependencies = [
  1247. "winapi 0.2.8",
  1248. "winapi-build",
  1249. ]