Cargo.lock 13 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537
  1. # This file is automatically @generated by Cargo.
  2. # It is not intended for manual editing.
  3. version = 3
  4. [[package]]
  5. name = "anyhow"
  6. version = "1.0.40"
  7. source = "registry+https://github.com/rust-lang/crates.io-index"
  8. checksum = "28b2cd92db5cbd74e8e5028f7e27dd7aa3090e89e4f2a197cc7c8dfb69c7063b"
  9. [[package]]
  10. name = "autocfg"
  11. version = "1.0.1"
  12. source = "registry+https://github.com/rust-lang/crates.io-index"
  13. checksum = "cdb031dd78e28731d87d56cc8ffef4a8f36ca26c38fe2de700543e627f8a464a"
  14. [[package]]
  15. name = "bytes"
  16. version = "1.0.1"
  17. source = "registry+https://github.com/rust-lang/crates.io-index"
  18. checksum = "b700ce4376041dcd0a327fd0097c41095743c4c8af8887265942faf1100bd040"
  19. [[package]]
  20. name = "cfg-if"
  21. version = "1.0.0"
  22. source = "registry+https://github.com/rust-lang/crates.io-index"
  23. checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd"
  24. [[package]]
  25. name = "either"
  26. version = "1.6.1"
  27. source = "registry+https://github.com/rust-lang/crates.io-index"
  28. checksum = "e78d4f1cc4ae33bbfc157ed5d5a5ef3bc29227303d595861deb238fcec4e9457"
  29. [[package]]
  30. name = "fnv"
  31. version = "1.0.7"
  32. source = "registry+https://github.com/rust-lang/crates.io-index"
  33. checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1"
  34. [[package]]
  35. name = "futures"
  36. version = "0.3.15"
  37. source = "registry+https://github.com/rust-lang/crates.io-index"
  38. checksum = "0e7e43a803dae2fa37c1f6a8fe121e1f7bf9548b4dfc0522a42f34145dadfc27"
  39. dependencies = [
  40. "futures-channel",
  41. "futures-core",
  42. "futures-executor",
  43. "futures-io",
  44. "futures-sink",
  45. "futures-task",
  46. "futures-util",
  47. ]
  48. [[package]]
  49. name = "futures-channel"
  50. version = "0.3.15"
  51. source = "registry+https://github.com/rust-lang/crates.io-index"
  52. checksum = "e682a68b29a882df0545c143dc3646daefe80ba479bcdede94d5a703de2871e2"
  53. dependencies = [
  54. "futures-core",
  55. "futures-sink",
  56. ]
  57. [[package]]
  58. name = "futures-core"
  59. version = "0.3.15"
  60. source = "registry+https://github.com/rust-lang/crates.io-index"
  61. checksum = "0402f765d8a89a26043b889b26ce3c4679d268fa6bb22cd7c6aad98340e179d1"
  62. [[package]]
  63. name = "futures-executor"
  64. version = "0.3.15"
  65. source = "registry+https://github.com/rust-lang/crates.io-index"
  66. checksum = "badaa6a909fac9e7236d0620a2f57f7664640c56575b71a7552fbd68deafab79"
  67. dependencies = [
  68. "futures-core",
  69. "futures-task",
  70. "futures-util",
  71. ]
  72. [[package]]
  73. name = "futures-io"
  74. version = "0.3.15"
  75. source = "registry+https://github.com/rust-lang/crates.io-index"
  76. checksum = "acc499defb3b348f8d8f3f66415835a9131856ff7714bf10dadfc4ec4bdb29a1"
  77. [[package]]
  78. name = "futures-macro"
  79. version = "0.3.15"
  80. source = "registry+https://github.com/rust-lang/crates.io-index"
  81. checksum = "a4c40298486cdf52cc00cd6d6987892ba502c7656a16a4192a9992b1ccedd121"
  82. dependencies = [
  83. "autocfg",
  84. "proc-macro-hack",
  85. "proc-macro2",
  86. "quote",
  87. "syn",
  88. ]
  89. [[package]]
  90. name = "futures-sink"
  91. version = "0.3.15"
  92. source = "registry+https://github.com/rust-lang/crates.io-index"
  93. checksum = "a57bead0ceff0d6dde8f465ecd96c9338121bb7717d3e7b108059531870c4282"
  94. [[package]]
  95. name = "futures-task"
  96. version = "0.3.15"
  97. source = "registry+https://github.com/rust-lang/crates.io-index"
  98. checksum = "8a16bef9fc1a4dddb5bee51c989e3fbba26569cbb0e31f5b303c184e3dd33dae"
  99. [[package]]
  100. name = "futures-util"
  101. version = "0.3.15"
  102. source = "registry+https://github.com/rust-lang/crates.io-index"
  103. checksum = "feb5c238d27e2bf94ffdfd27b2c29e3df4a68c4193bb6427384259e2bf191967"
  104. dependencies = [
  105. "autocfg",
  106. "futures-channel",
  107. "futures-core",
  108. "futures-io",
  109. "futures-macro",
  110. "futures-sink",
  111. "futures-task",
  112. "memchr",
  113. "pin-project-lite",
  114. "pin-utils",
  115. "proc-macro-hack",
  116. "proc-macro-nested",
  117. "slab",
  118. ]
  119. [[package]]
  120. name = "http"
  121. version = "0.2.4"
  122. source = "registry+https://github.com/rust-lang/crates.io-index"
  123. checksum = "527e8c9ac747e28542699a951517aa9a6945af506cd1f2e1b53a576c17b6cc11"
  124. dependencies = [
  125. "bytes",
  126. "fnv",
  127. "itoa",
  128. ]
  129. [[package]]
  130. name = "http-body"
  131. version = "0.4.2"
  132. source = "registry+https://github.com/rust-lang/crates.io-index"
  133. checksum = "60daa14be0e0786db0f03a9e57cb404c9d756eed2b6c62b9ea98ec5743ec75a9"
  134. dependencies = [
  135. "bytes",
  136. "http",
  137. "pin-project-lite",
  138. ]
  139. [[package]]
  140. name = "httparse"
  141. version = "1.4.1"
  142. source = "registry+https://github.com/rust-lang/crates.io-index"
  143. checksum = "f3a87b616e37e93c22fb19bcd386f02f3af5ea98a25670ad0fce773de23c5e68"
  144. [[package]]
  145. name = "httpdate"
  146. version = "1.0.1"
  147. source = "registry+https://github.com/rust-lang/crates.io-index"
  148. checksum = "6456b8a6c8f33fee7d958fcd1b60d55b11940a79e63ae87013e6d22e26034440"
  149. [[package]]
  150. name = "hyper"
  151. version = "0.14.8"
  152. source = "registry+https://github.com/rust-lang/crates.io-index"
  153. checksum = "d3f71a7eea53a3f8257a7b4795373ff886397178cd634430ea94e12d7fe4fe34"
  154. dependencies = [
  155. "bytes",
  156. "futures-channel",
  157. "futures-core",
  158. "futures-util",
  159. "http",
  160. "http-body",
  161. "httparse",
  162. "httpdate",
  163. "itoa",
  164. "pin-project",
  165. "socket2",
  166. "tokio",
  167. "tower-service",
  168. "tracing",
  169. "want",
  170. ]
  171. [[package]]
  172. name = "itoa"
  173. version = "0.4.7"
  174. source = "registry+https://github.com/rust-lang/crates.io-index"
  175. checksum = "dd25036021b0de88a0aff6b850051563c6516d0bf53f8638938edbb9de732736"
  176. [[package]]
  177. name = "lazy_static"
  178. version = "1.4.0"
  179. source = "registry+https://github.com/rust-lang/crates.io-index"
  180. checksum = "e2abad23fbc42b3700f2f279844dc832adb2b2eb069b2df918f455c4e18cc646"
  181. [[package]]
  182. name = "libc"
  183. version = "0.2.95"
  184. source = "registry+https://github.com/rust-lang/crates.io-index"
  185. checksum = "789da6d93f1b866ffe175afc5322a4d76c038605a1c3319bb57b06967ca98a36"
  186. [[package]]
  187. name = "log"
  188. version = "0.4.14"
  189. source = "registry+https://github.com/rust-lang/crates.io-index"
  190. checksum = "51b9bbe6c47d51fc3e1a9b945965946b4c44142ab8792c50835a980d362c2710"
  191. dependencies = [
  192. "cfg-if",
  193. ]
  194. [[package]]
  195. name = "memchr"
  196. version = "2.4.0"
  197. source = "registry+https://github.com/rust-lang/crates.io-index"
  198. checksum = "b16bd47d9e329435e309c58469fe0791c2d0d1ba96ec0954152a5ae2b04387dc"
  199. [[package]]
  200. name = "mio"
  201. version = "0.7.11"
  202. source = "registry+https://github.com/rust-lang/crates.io-index"
  203. checksum = "cf80d3e903b34e0bd7282b218398aec54e082c840d9baf8339e0080a0c542956"
  204. dependencies = [
  205. "libc",
  206. "log",
  207. "miow",
  208. "ntapi",
  209. "winapi",
  210. ]
  211. [[package]]
  212. name = "miow"
  213. version = "0.3.7"
  214. source = "registry+https://github.com/rust-lang/crates.io-index"
  215. checksum = "b9f1c5b025cda876f66ef43a113f91ebc9f4ccef34843000e0adf6ebbab84e21"
  216. dependencies = [
  217. "winapi",
  218. ]
  219. [[package]]
  220. name = "ntapi"
  221. version = "0.3.6"
  222. source = "registry+https://github.com/rust-lang/crates.io-index"
  223. checksum = "3f6bb902e437b6d86e03cce10a7e2af662292c5dfef23b65899ea3ac9354ad44"
  224. dependencies = [
  225. "winapi",
  226. ]
  227. [[package]]
  228. name = "pico-args"
  229. version = "0.4.1"
  230. source = "registry+https://github.com/rust-lang/crates.io-index"
  231. checksum = "7d7afeb98c5a10e0bffcc7fc16e105b04d06729fac5fd6384aebf7ff5cb5a67d"
  232. [[package]]
  233. name = "pin-project"
  234. version = "1.0.7"
  235. source = "registry+https://github.com/rust-lang/crates.io-index"
  236. checksum = "c7509cc106041c40a4518d2af7a61530e1eed0e6285296a3d8c5472806ccc4a4"
  237. dependencies = [
  238. "pin-project-internal",
  239. ]
  240. [[package]]
  241. name = "pin-project-internal"
  242. version = "1.0.7"
  243. source = "registry+https://github.com/rust-lang/crates.io-index"
  244. checksum = "48c950132583b500556b1efd71d45b319029f2b71518d979fcc208e16b42426f"
  245. dependencies = [
  246. "proc-macro2",
  247. "quote",
  248. "syn",
  249. ]
  250. [[package]]
  251. name = "pin-project-lite"
  252. version = "0.2.6"
  253. source = "registry+https://github.com/rust-lang/crates.io-index"
  254. checksum = "dc0e1f259c92177c30a4c9d177246edd0a3568b25756a977d0632cf8fa37e905"
  255. [[package]]
  256. name = "pin-utils"
  257. version = "0.1.0"
  258. source = "registry+https://github.com/rust-lang/crates.io-index"
  259. checksum = "8b870d8c151b6f2fb93e84a13146138f05d02ed11c7e7c54f8826aaaf7c9f184"
  260. [[package]]
  261. name = "proc-macro-hack"
  262. version = "0.5.19"
  263. source = "registry+https://github.com/rust-lang/crates.io-index"
  264. checksum = "dbf0c48bc1d91375ae5c3cd81e3722dff1abcf81a30960240640d223f59fe0e5"
  265. [[package]]
  266. name = "proc-macro-nested"
  267. version = "0.1.7"
  268. source = "registry+https://github.com/rust-lang/crates.io-index"
  269. checksum = "bc881b2c22681370c6a780e47af9840ef841837bc98118431d4e1868bd0c1086"
  270. [[package]]
  271. name = "proc-macro2"
  272. version = "1.0.27"
  273. source = "registry+https://github.com/rust-lang/crates.io-index"
  274. checksum = "f0d8caf72986c1a598726adc988bb5984792ef84f5ee5aa50209145ee8077038"
  275. dependencies = [
  276. "unicode-xid",
  277. ]
  278. [[package]]
  279. name = "quote"
  280. version = "1.0.9"
  281. source = "registry+https://github.com/rust-lang/crates.io-index"
  282. checksum = "c3d0b9745dc2debf507c8422de05d7226cc1f0644216dfdfead988f9b1ab32a7"
  283. dependencies = [
  284. "proc-macro2",
  285. ]
  286. [[package]]
  287. name = "ryu"
  288. version = "1.0.5"
  289. source = "registry+https://github.com/rust-lang/crates.io-index"
  290. checksum = "71d301d4193d031abdd79ff7e3dd721168a9572ef3fe51a1517aba235bd8f86e"
  291. [[package]]
  292. name = "serde"
  293. version = "1.0.126"
  294. source = "registry+https://github.com/rust-lang/crates.io-index"
  295. checksum = "ec7505abeacaec74ae4778d9d9328fe5a5d04253220a85c4ee022239fc996d03"
  296. dependencies = [
  297. "serde_derive",
  298. ]
  299. [[package]]
  300. name = "serde_derive"
  301. version = "1.0.126"
  302. source = "registry+https://github.com/rust-lang/crates.io-index"
  303. checksum = "963a7dbc9895aeac7ac90e74f34a5d5261828f79df35cbed41e10189d3804d43"
  304. dependencies = [
  305. "proc-macro2",
  306. "quote",
  307. "syn",
  308. ]
  309. [[package]]
  310. name = "serde_json"
  311. version = "1.0.64"
  312. source = "registry+https://github.com/rust-lang/crates.io-index"
  313. checksum = "799e97dc9fdae36a5c8b8f2cae9ce2ee9fdce2058c57a93e6099d919fd982f79"
  314. dependencies = [
  315. "itoa",
  316. "ryu",
  317. "serde",
  318. ]
  319. [[package]]
  320. name = "signal-hook"
  321. version = "0.3.9"
  322. source = "registry+https://github.com/rust-lang/crates.io-index"
  323. checksum = "470c5a6397076fae0094aaf06a08e6ba6f37acb77d3b1b91ea92b4d6c8650c39"
  324. dependencies = [
  325. "libc",
  326. "signal-hook-registry",
  327. ]
  328. [[package]]
  329. name = "signal-hook-registry"
  330. version = "1.4.0"
  331. source = "registry+https://github.com/rust-lang/crates.io-index"
  332. checksum = "e51e73328dc4ac0c7ccbda3a494dfa03df1de2f46018127f60c693f2648455b0"
  333. dependencies = [
  334. "libc",
  335. ]
  336. [[package]]
  337. name = "signal-hook-tokio"
  338. version = "0.3.0"
  339. source = "registry+https://github.com/rust-lang/crates.io-index"
  340. checksum = "f6c5d32165ff8b94e68e7b3bdecb1b082e958c22434b363482cfb89dcd6f3ff8"
  341. dependencies = [
  342. "futures-core",
  343. "libc",
  344. "signal-hook",
  345. "tokio",
  346. ]
  347. [[package]]
  348. name = "slab"
  349. version = "0.4.3"
  350. source = "registry+https://github.com/rust-lang/crates.io-index"
  351. checksum = "f173ac3d1a7e3b28003f40de0b5ce7fe2710f9b9dc3fc38664cebee46b3b6527"
  352. [[package]]
  353. name = "socket2"
  354. version = "0.4.0"
  355. source = "registry+https://github.com/rust-lang/crates.io-index"
  356. checksum = "9e3dfc207c526015c632472a77be09cf1b6e46866581aecae5cc38fb4235dea2"
  357. dependencies = [
  358. "libc",
  359. "winapi",
  360. ]
  361. [[package]]
  362. name = "syn"
  363. version = "1.0.72"
  364. source = "registry+https://github.com/rust-lang/crates.io-index"
  365. checksum = "a1e8cdbefb79a9a5a65e0db8b47b723ee907b7c7f8496c76a1770b5c310bab82"
  366. dependencies = [
  367. "proc-macro2",
  368. "quote",
  369. "unicode-xid",
  370. ]
  371. [[package]]
  372. name = "tauri-driver"
  373. version = "0.1.0"
  374. dependencies = [
  375. "anyhow",
  376. "futures",
  377. "hyper",
  378. "pico-args",
  379. "serde",
  380. "serde_json",
  381. "signal-hook",
  382. "signal-hook-tokio",
  383. "tokio",
  384. "which",
  385. ]
  386. [[package]]
  387. name = "tokio"
  388. version = "1.6.1"
  389. source = "registry+https://github.com/rust-lang/crates.io-index"
  390. checksum = "0a38d31d7831c6ed7aad00aa4c12d9375fd225a6dd77da1d25b707346319a975"
  391. dependencies = [
  392. "autocfg",
  393. "libc",
  394. "mio",
  395. "pin-project-lite",
  396. "tokio-macros",
  397. ]
  398. [[package]]
  399. name = "tokio-macros"
  400. version = "1.2.0"
  401. source = "registry+https://github.com/rust-lang/crates.io-index"
  402. checksum = "c49e3df43841dafb86046472506755d8501c5615673955f6aa17181125d13c37"
  403. dependencies = [
  404. "proc-macro2",
  405. "quote",
  406. "syn",
  407. ]
  408. [[package]]
  409. name = "tower-service"
  410. version = "0.3.1"
  411. source = "registry+https://github.com/rust-lang/crates.io-index"
  412. checksum = "360dfd1d6d30e05fda32ace2c8c70e9c0a9da713275777f5a4dbb8a1893930c6"
  413. [[package]]
  414. name = "tracing"
  415. version = "0.1.26"
  416. source = "registry+https://github.com/rust-lang/crates.io-index"
  417. checksum = "09adeb8c97449311ccd28a427f96fb563e7fd31aabf994189879d9da2394b89d"
  418. dependencies = [
  419. "cfg-if",
  420. "pin-project-lite",
  421. "tracing-core",
  422. ]
  423. [[package]]
  424. name = "tracing-core"
  425. version = "0.1.18"
  426. source = "registry+https://github.com/rust-lang/crates.io-index"
  427. checksum = "a9ff14f98b1a4b289c6248a023c1c2fa1491062964e9fed67ab29c4e4da4a052"
  428. dependencies = [
  429. "lazy_static",
  430. ]
  431. [[package]]
  432. name = "try-lock"
  433. version = "0.2.3"
  434. source = "registry+https://github.com/rust-lang/crates.io-index"
  435. checksum = "59547bce71d9c38b83d9c0e92b6066c4253371f15005def0c30d9657f50c7642"
  436. [[package]]
  437. name = "unicode-xid"
  438. version = "0.2.2"
  439. source = "registry+https://github.com/rust-lang/crates.io-index"
  440. checksum = "8ccb82d61f80a663efe1f787a51b16b5a51e3314d6ac365b08639f52387b33f3"
  441. [[package]]
  442. name = "want"
  443. version = "0.3.0"
  444. source = "registry+https://github.com/rust-lang/crates.io-index"
  445. checksum = "1ce8a968cb1cd110d136ff8b819a556d6fb6d919363c61534f6860c7eb172ba0"
  446. dependencies = [
  447. "log",
  448. "try-lock",
  449. ]
  450. [[package]]
  451. name = "which"
  452. version = "4.1.0"
  453. source = "registry+https://github.com/rust-lang/crates.io-index"
  454. checksum = "b55551e42cbdf2ce2bedd2203d0cc08dba002c27510f86dab6d0ce304cba3dfe"
  455. dependencies = [
  456. "either",
  457. "libc",
  458. ]
  459. [[package]]
  460. name = "winapi"
  461. version = "0.3.9"
  462. source = "registry+https://github.com/rust-lang/crates.io-index"
  463. checksum = "5c839a674fcd7a98952e593242ea400abe93992746761e38641405d28b00f419"
  464. dependencies = [
  465. "winapi-i686-pc-windows-gnu",
  466. "winapi-x86_64-pc-windows-gnu",
  467. ]
  468. [[package]]
  469. name = "winapi-i686-pc-windows-gnu"
  470. version = "0.4.0"
  471. source = "registry+https://github.com/rust-lang/crates.io-index"
  472. checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6"
  473. [[package]]
  474. name = "winapi-x86_64-pc-windows-gnu"
  475. version = "0.4.0"
  476. source = "registry+https://github.com/rust-lang/crates.io-index"
  477. checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f"