Cargo.lock 6.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255
  1. # This file is automatically @generated by Cargo.
  2. # It is not intended for manual editing.
  3. [[package]]
  4. name = "aho-corasick"
  5. version = "0.7.14"
  6. source = "registry+https://github.com/rust-lang/crates.io-index"
  7. checksum = "b476ce7103678b0c6d3d395dbbae31d48ff910bd28be979ba5d48c6351131d0d"
  8. dependencies = [
  9. "memchr",
  10. ]
  11. [[package]]
  12. name = "ansi_term"
  13. version = "0.11.0"
  14. source = "registry+https://github.com/rust-lang/crates.io-index"
  15. checksum = "ee49baf6cb617b853aa8d93bf420db2383fab46d314482ca2803b40d5fde979b"
  16. dependencies = [
  17. "winapi",
  18. ]
  19. [[package]]
  20. name = "atty"
  21. version = "0.2.14"
  22. source = "registry+https://github.com/rust-lang/crates.io-index"
  23. checksum = "d9b39be18770d11421cdb1b9947a45dd3f37e93092cbf377614828a319d5fee8"
  24. dependencies = [
  25. "hermit-abi",
  26. "libc",
  27. "winapi",
  28. ]
  29. [[package]]
  30. name = "bitflags"
  31. version = "1.2.1"
  32. source = "registry+https://github.com/rust-lang/crates.io-index"
  33. checksum = "cf1de2fe8c75bc145a2f577add951f8134889b4795d47466a54a5c846d691693"
  34. [[package]]
  35. name = "clap"
  36. version = "2.33.3"
  37. source = "registry+https://github.com/rust-lang/crates.io-index"
  38. checksum = "37e58ac78573c40708d45522f0d80fa2f01cc4f9b4e2bf749807255454312002"
  39. dependencies = [
  40. "ansi_term",
  41. "atty",
  42. "bitflags",
  43. "strsim",
  44. "textwrap",
  45. "unicode-width",
  46. "vec_map",
  47. "yaml-rust",
  48. ]
  49. [[package]]
  50. name = "hermit-abi"
  51. version = "0.1.16"
  52. source = "registry+https://github.com/rust-lang/crates.io-index"
  53. checksum = "4c30f6d0bc6b00693347368a67d41b58f2fb851215ff1da49e90fe2c5c667151"
  54. dependencies = [
  55. "libc",
  56. ]
  57. [[package]]
  58. name = "home"
  59. version = "0.5.3"
  60. source = "registry+https://github.com/rust-lang/crates.io-index"
  61. checksum = "2456aef2e6b6a9784192ae780c0f15bc57df0e918585282325e8c8ac27737654"
  62. dependencies = [
  63. "winapi",
  64. ]
  65. [[package]]
  66. name = "lazy_static"
  67. version = "1.4.0"
  68. source = "registry+https://github.com/rust-lang/crates.io-index"
  69. checksum = "e2abad23fbc42b3700f2f279844dc832adb2b2eb069b2df918f455c4e18cc646"
  70. [[package]]
  71. name = "libc"
  72. version = "0.2.77"
  73. source = "registry+https://github.com/rust-lang/crates.io-index"
  74. checksum = "f2f96b10ec2560088a8e76961b00d47107b3a625fecb76dedb29ee7ccbf98235"
  75. [[package]]
  76. name = "memchr"
  77. version = "2.3.3"
  78. source = "registry+https://github.com/rust-lang/crates.io-index"
  79. checksum = "3728d817d99e5ac407411fa471ff9800a778d88a24685968b36824eaf4bee400"
  80. [[package]]
  81. name = "proc-macro2"
  82. version = "1.0.23"
  83. source = "registry+https://github.com/rust-lang/crates.io-index"
  84. checksum = "51ef7cd2518ead700af67bf9d1a658d90b6037d77110fd9c0445429d0ba1c6c9"
  85. dependencies = [
  86. "unicode-xid",
  87. ]
  88. [[package]]
  89. name = "quote"
  90. version = "1.0.7"
  91. source = "registry+https://github.com/rust-lang/crates.io-index"
  92. checksum = "aa563d17ecb180e500da1cfd2b028310ac758de548efdd203e18f283af693f37"
  93. dependencies = [
  94. "proc-macro2",
  95. ]
  96. [[package]]
  97. name = "regex"
  98. version = "1.4.1"
  99. source = "registry+https://github.com/rust-lang/crates.io-index"
  100. checksum = "8963b85b8ce3074fecffde43b4b0dded83ce2f367dc8d363afc56679f3ee820b"
  101. dependencies = [
  102. "aho-corasick",
  103. "memchr",
  104. "regex-syntax",
  105. "thread_local",
  106. ]
  107. [[package]]
  108. name = "regex-syntax"
  109. version = "0.6.20"
  110. source = "registry+https://github.com/rust-lang/crates.io-index"
  111. checksum = "8cab7a364d15cde1e505267766a2d3c4e22a843e1a601f0fa7564c0f82ced11c"
  112. [[package]]
  113. name = "serde"
  114. version = "1.0.116"
  115. source = "registry+https://github.com/rust-lang/crates.io-index"
  116. checksum = "96fe57af81d28386a513cbc6858332abc6117cfdb5999647c6444b8f43a370a5"
  117. dependencies = [
  118. "serde_derive",
  119. ]
  120. [[package]]
  121. name = "serde_derive"
  122. version = "1.0.116"
  123. source = "registry+https://github.com/rust-lang/crates.io-index"
  124. checksum = "f630a6370fd8e457873b4bd2ffdae75408bc291ba72be773772a4c2a065d9ae8"
  125. dependencies = [
  126. "proc-macro2",
  127. "quote",
  128. "syn",
  129. ]
  130. [[package]]
  131. name = "string_template"
  132. version = "0.2.1"
  133. source = "registry+https://github.com/rust-lang/crates.io-index"
  134. checksum = "dc6f2c6b2c3fa950895c9aeb0c3cb9271d7eb580662af9af2b711b593f446320"
  135. dependencies = [
  136. "regex",
  137. ]
  138. [[package]]
  139. name = "strsim"
  140. version = "0.8.0"
  141. source = "registry+https://github.com/rust-lang/crates.io-index"
  142. checksum = "8ea5119cdb4c55b55d432abb513a0429384878c15dde60cc77b1c99de1a95a6a"
  143. [[package]]
  144. name = "syn"
  145. version = "1.0.42"
  146. source = "registry+https://github.com/rust-lang/crates.io-index"
  147. checksum = "9c51d92969d209b54a98397e1b91c8ae82d8c87a7bb87df0b29aa2ad81454228"
  148. dependencies = [
  149. "proc-macro2",
  150. "quote",
  151. "unicode-xid",
  152. ]
  153. [[package]]
  154. name = "sync-it"
  155. version = "1.5.0"
  156. dependencies = [
  157. "clap",
  158. "home",
  159. "serde",
  160. "string_template",
  161. "toml",
  162. "yaml-rust",
  163. ]
  164. [[package]]
  165. name = "textwrap"
  166. version = "0.11.0"
  167. source = "registry+https://github.com/rust-lang/crates.io-index"
  168. checksum = "d326610f408c7a4eb6f51c37c330e496b08506c9457c9d34287ecc38809fb060"
  169. dependencies = [
  170. "unicode-width",
  171. ]
  172. [[package]]
  173. name = "thread_local"
  174. version = "1.0.1"
  175. source = "registry+https://github.com/rust-lang/crates.io-index"
  176. checksum = "d40c6d1b69745a6ec6fb1ca717914848da4b44ae29d9b3080cbee91d72a69b14"
  177. dependencies = [
  178. "lazy_static",
  179. ]
  180. [[package]]
  181. name = "toml"
  182. version = "0.5.6"
  183. source = "registry+https://github.com/rust-lang/crates.io-index"
  184. checksum = "ffc92d160b1eef40665be3a05630d003936a3bc7da7421277846c2613e92c71a"
  185. dependencies = [
  186. "serde",
  187. ]
  188. [[package]]
  189. name = "unicode-width"
  190. version = "0.1.8"
  191. source = "registry+https://github.com/rust-lang/crates.io-index"
  192. checksum = "9337591893a19b88d8d87f2cec1e73fad5cdfd10e5a6f349f498ad6ea2ffb1e3"
  193. [[package]]
  194. name = "unicode-xid"
  195. version = "0.2.1"
  196. source = "registry+https://github.com/rust-lang/crates.io-index"
  197. checksum = "f7fe0bb3479651439c9112f72b6c505038574c9fbb575ed1bf3b797fa39dd564"
  198. [[package]]
  199. name = "vec_map"
  200. version = "0.8.2"
  201. source = "registry+https://github.com/rust-lang/crates.io-index"
  202. checksum = "f1bddf1187be692e79c5ffeab891132dfb0f236ed36a43c7ed39f1165ee20191"
  203. [[package]]
  204. name = "winapi"
  205. version = "0.3.9"
  206. source = "registry+https://github.com/rust-lang/crates.io-index"
  207. checksum = "5c839a674fcd7a98952e593242ea400abe93992746761e38641405d28b00f419"
  208. dependencies = [
  209. "winapi-i686-pc-windows-gnu",
  210. "winapi-x86_64-pc-windows-gnu",
  211. ]
  212. [[package]]
  213. name = "winapi-i686-pc-windows-gnu"
  214. version = "0.4.0"
  215. source = "registry+https://github.com/rust-lang/crates.io-index"
  216. checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6"
  217. [[package]]
  218. name = "winapi-x86_64-pc-windows-gnu"
  219. version = "0.4.0"
  220. source = "registry+https://github.com/rust-lang/crates.io-index"
  221. checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f"
  222. [[package]]
  223. name = "yaml-rust"
  224. version = "0.3.5"
  225. source = "registry+https://github.com/rust-lang/crates.io-index"
  226. checksum = "e66366e18dc58b46801afbf2ca7661a9f59cc8c5962c29892b6039b4f86fa992"