Cargo.lock 27 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094
  1. # This file is automatically @generated by Cargo.
  2. # It is not intended for manual editing.
  3. version = 3
  4. [[package]]
  5. name = "aes"
  6. version = "0.7.5"
  7. source = "registry+https://github.com/rust-lang/crates.io-index"
  8. checksum = "9e8b47f52ea9bae42228d07ec09eb676433d7c4ed1ebdf0f1d1c29ed446f1ab8"
  9. dependencies = [
  10. "cfg-if",
  11. "cipher",
  12. "cpufeatures",
  13. "opaque-debug",
  14. ]
  15. [[package]]
  16. name = "aho-corasick"
  17. version = "0.7.18"
  18. source = "registry+https://github.com/rust-lang/crates.io-index"
  19. checksum = "1e37cfd5e7657ada45f742d6e99ca5788580b5c529dc78faf11ece6dc702656f"
  20. dependencies = [
  21. "memchr",
  22. ]
  23. [[package]]
  24. name = "ansi_term"
  25. version = "0.11.0"
  26. source = "registry+https://github.com/rust-lang/crates.io-index"
  27. checksum = "ee49baf6cb617b853aa8d93bf420db2383fab46d314482ca2803b40d5fde979b"
  28. dependencies = [
  29. "winapi",
  30. ]
  31. [[package]]
  32. name = "async-trait"
  33. version = "0.1.51"
  34. source = "registry+https://github.com/rust-lang/crates.io-index"
  35. checksum = "44318e776df68115a881de9a8fd1b9e53368d7a4a5ce4cc48517da3393233a5e"
  36. dependencies = [
  37. "proc-macro2",
  38. "quote",
  39. "syn",
  40. ]
  41. [[package]]
  42. name = "atty"
  43. version = "0.2.14"
  44. source = "registry+https://github.com/rust-lang/crates.io-index"
  45. checksum = "d9b39be18770d11421cdb1b9947a45dd3f37e93092cbf377614828a319d5fee8"
  46. dependencies = [
  47. "hermit-abi",
  48. "libc",
  49. "winapi",
  50. ]
  51. [[package]]
  52. name = "autocfg"
  53. version = "1.1.0"
  54. source = "registry+https://github.com/rust-lang/crates.io-index"
  55. checksum = "d468802bab17cbc0cc575e9b053f41e72aa36bfa6b7f55e3529ffa43161b97fa"
  56. [[package]]
  57. name = "base64"
  58. version = "0.13.0"
  59. source = "registry+https://github.com/rust-lang/crates.io-index"
  60. checksum = "904dfeac50f3cdaba28fc6f57fdcddb75f49ed61346676a78c4ffe55877802fd"
  61. [[package]]
  62. name = "bincode"
  63. version = "1.3.3"
  64. source = "registry+https://github.com/rust-lang/crates.io-index"
  65. checksum = "b1f45e9417d87227c7a56d22e471c6206462cba514c7590c09aff4cf6d1ddcad"
  66. dependencies = [
  67. "serde",
  68. ]
  69. [[package]]
  70. name = "bitflags"
  71. version = "1.2.1"
  72. source = "registry+https://github.com/rust-lang/crates.io-index"
  73. checksum = "cf1de2fe8c75bc145a2f577add951f8134889b4795d47466a54a5c846d691693"
  74. [[package]]
  75. name = "bumpalo"
  76. version = "3.7.0"
  77. source = "registry+https://github.com/rust-lang/crates.io-index"
  78. checksum = "9c59e7af012c713f529e7a3ee57ce9b31ddd858d4b512923602f74608b009631"
  79. [[package]]
  80. name = "byteorder"
  81. version = "1.4.3"
  82. source = "registry+https://github.com/rust-lang/crates.io-index"
  83. checksum = "14c189c53d098945499cdfa7ecc63567cf3886b3332b312a5b4585d8d3a6a610"
  84. [[package]]
  85. name = "bytes"
  86. version = "1.0.1"
  87. source = "registry+https://github.com/rust-lang/crates.io-index"
  88. checksum = "b700ce4376041dcd0a327fd0097c41095743c4c8af8887265942faf1100bd040"
  89. [[package]]
  90. name = "cc"
  91. version = "1.0.68"
  92. source = "registry+https://github.com/rust-lang/crates.io-index"
  93. checksum = "4a72c244c1ff497a746a7e1fb3d14bd08420ecda70c8f25c7112f2781652d787"
  94. [[package]]
  95. name = "cfg-if"
  96. version = "1.0.0"
  97. source = "registry+https://github.com/rust-lang/crates.io-index"
  98. checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd"
  99. [[package]]
  100. name = "cipher"
  101. version = "0.3.0"
  102. source = "registry+https://github.com/rust-lang/crates.io-index"
  103. checksum = "7ee52072ec15386f770805afd189a01c8841be8696bed250fa2f13c4c0d6dfb7"
  104. dependencies = [
  105. "generic-array",
  106. ]
  107. [[package]]
  108. name = "clap"
  109. version = "2.33.3"
  110. source = "registry+https://github.com/rust-lang/crates.io-index"
  111. checksum = "37e58ac78573c40708d45522f0d80fa2f01cc4f9b4e2bf749807255454312002"
  112. dependencies = [
  113. "ansi_term",
  114. "atty",
  115. "bitflags",
  116. "strsim",
  117. "textwrap",
  118. "unicode-width",
  119. "vec_map",
  120. ]
  121. [[package]]
  122. name = "cpufeatures"
  123. version = "0.2.1"
  124. source = "registry+https://github.com/rust-lang/crates.io-index"
  125. checksum = "95059428f66df56b63431fdb4e1947ed2190586af5c5a8a8b71122bdf5a7f469"
  126. dependencies = [
  127. "libc",
  128. ]
  129. [[package]]
  130. name = "crc32fast"
  131. version = "1.2.1"
  132. source = "registry+https://github.com/rust-lang/crates.io-index"
  133. checksum = "81156fece84ab6a9f2afdb109ce3ae577e42b1228441eded99bd77f627953b1a"
  134. dependencies = [
  135. "cfg-if",
  136. ]
  137. [[package]]
  138. name = "crossbeam-epoch"
  139. version = "0.9.4"
  140. source = "registry+https://github.com/rust-lang/crates.io-index"
  141. checksum = "52fb27eab85b17fbb9f6fd667089e07d6a2eb8743d02639ee7f6a7a7729c9c94"
  142. dependencies = [
  143. "cfg-if",
  144. "crossbeam-utils",
  145. "lazy_static",
  146. "memoffset",
  147. "scopeguard",
  148. ]
  149. [[package]]
  150. name = "crossbeam-utils"
  151. version = "0.8.4"
  152. source = "registry+https://github.com/rust-lang/crates.io-index"
  153. checksum = "4feb231f0d4d6af81aed15928e58ecf5816aa62a2393e2c82f46973e92a9a278"
  154. dependencies = [
  155. "autocfg",
  156. "cfg-if",
  157. "lazy_static",
  158. ]
  159. [[package]]
  160. name = "dashmap"
  161. version = "4.0.2"
  162. source = "registry+https://github.com/rust-lang/crates.io-index"
  163. checksum = "e77a43b28d0668df09411cb0bc9a8c2adc40f9a048afe863e05fd43251e8e39c"
  164. dependencies = [
  165. "cfg-if",
  166. "num_cpus",
  167. ]
  168. [[package]]
  169. name = "env_logger"
  170. version = "0.9.0"
  171. source = "registry+https://github.com/rust-lang/crates.io-index"
  172. checksum = "0b2cf0344971ee6c64c31be0d530793fba457d322dfec2810c453d0ef228f9c3"
  173. dependencies = [
  174. "atty",
  175. "humantime",
  176. "log",
  177. "regex",
  178. "termcolor",
  179. ]
  180. [[package]]
  181. name = "foreign-types"
  182. version = "0.3.2"
  183. source = "registry+https://github.com/rust-lang/crates.io-index"
  184. checksum = "f6f339eb8adc052cd2ca78910fda869aefa38d22d5cb648e6485e4d3fc06f3b1"
  185. dependencies = [
  186. "foreign-types-shared",
  187. ]
  188. [[package]]
  189. name = "foreign-types-shared"
  190. version = "0.1.1"
  191. source = "registry+https://github.com/rust-lang/crates.io-index"
  192. checksum = "00b0228411908ca8685dba7fc2cdd70ec9990a6e753e89b6ac91a84c40fbaf4b"
  193. [[package]]
  194. name = "fs2"
  195. version = "0.4.3"
  196. source = "registry+https://github.com/rust-lang/crates.io-index"
  197. checksum = "9564fc758e15025b46aa6643b1b77d047d1a56a1aea6e01002ac0c7026876213"
  198. dependencies = [
  199. "libc",
  200. "winapi",
  201. ]
  202. [[package]]
  203. name = "futures"
  204. version = "0.3.24"
  205. source = "registry+https://github.com/rust-lang/crates.io-index"
  206. checksum = "7f21eda599937fba36daeb58a22e8f5cee2d14c4a17b5b7739c7c8e5e3b8230c"
  207. dependencies = [
  208. "futures-channel",
  209. "futures-core",
  210. "futures-executor",
  211. "futures-io",
  212. "futures-sink",
  213. "futures-task",
  214. "futures-util",
  215. ]
  216. [[package]]
  217. name = "futures-channel"
  218. version = "0.3.24"
  219. source = "registry+https://github.com/rust-lang/crates.io-index"
  220. checksum = "30bdd20c28fadd505d0fd6712cdfcb0d4b5648baf45faef7f852afb2399bb050"
  221. dependencies = [
  222. "futures-core",
  223. "futures-sink",
  224. ]
  225. [[package]]
  226. name = "futures-core"
  227. version = "0.3.24"
  228. source = "registry+https://github.com/rust-lang/crates.io-index"
  229. checksum = "4e5aa3de05362c3fb88de6531e6296e85cde7739cccad4b9dfeeb7f6ebce56bf"
  230. [[package]]
  231. name = "futures-executor"
  232. version = "0.3.24"
  233. source = "registry+https://github.com/rust-lang/crates.io-index"
  234. checksum = "9ff63c23854bee61b6e9cd331d523909f238fc7636290b96826e9cfa5faa00ab"
  235. dependencies = [
  236. "futures-core",
  237. "futures-task",
  238. "futures-util",
  239. ]
  240. [[package]]
  241. name = "futures-io"
  242. version = "0.3.24"
  243. source = "registry+https://github.com/rust-lang/crates.io-index"
  244. checksum = "bbf4d2a7a308fd4578637c0b17c7e1c7ba127b8f6ba00b29f717e9655d85eb68"
  245. [[package]]
  246. name = "futures-macro"
  247. version = "0.3.24"
  248. source = "registry+https://github.com/rust-lang/crates.io-index"
  249. checksum = "42cd15d1c7456c04dbdf7e88bcd69760d74f3a798d6444e16974b505b0e62f17"
  250. dependencies = [
  251. "proc-macro2",
  252. "quote",
  253. "syn",
  254. ]
  255. [[package]]
  256. name = "futures-sink"
  257. version = "0.3.24"
  258. source = "registry+https://github.com/rust-lang/crates.io-index"
  259. checksum = "21b20ba5a92e727ba30e72834706623d94ac93a725410b6a6b6fbc1b07f7ba56"
  260. [[package]]
  261. name = "futures-task"
  262. version = "0.3.24"
  263. source = "registry+https://github.com/rust-lang/crates.io-index"
  264. checksum = "a6508c467c73851293f390476d4491cf4d227dbabcd4170f3bb6044959b294f1"
  265. [[package]]
  266. name = "futures-util"
  267. version = "0.3.24"
  268. source = "registry+https://github.com/rust-lang/crates.io-index"
  269. checksum = "44fb6cb1be61cc1d2e43b262516aafcf63b241cffdb1d3fa115f91d9c7b09c90"
  270. dependencies = [
  271. "futures-channel",
  272. "futures-core",
  273. "futures-io",
  274. "futures-macro",
  275. "futures-sink",
  276. "futures-task",
  277. "memchr",
  278. "pin-project-lite",
  279. "pin-utils",
  280. "slab",
  281. ]
  282. [[package]]
  283. name = "fxhash"
  284. version = "0.2.1"
  285. source = "registry+https://github.com/rust-lang/crates.io-index"
  286. checksum = "c31b6d751ae2c7f11320402d34e41349dd1016f8d5d45e48c4312bc8625af50c"
  287. dependencies = [
  288. "byteorder",
  289. ]
  290. [[package]]
  291. name = "generic-array"
  292. version = "0.14.4"
  293. source = "registry+https://github.com/rust-lang/crates.io-index"
  294. checksum = "501466ecc8a30d1d3b7fc9229b122b2ce8ed6e9d9223f1138d4babb253e51817"
  295. dependencies = [
  296. "typenum",
  297. "version_check",
  298. ]
  299. [[package]]
  300. name = "getrandom"
  301. version = "0.2.3"
  302. source = "registry+https://github.com/rust-lang/crates.io-index"
  303. checksum = "7fcd999463524c52659517fe2cea98493cfe485d10565e7b0fb07dbba7ad2753"
  304. dependencies = [
  305. "cfg-if",
  306. "libc",
  307. "wasi 0.10.2+wasi-snapshot-preview1",
  308. ]
  309. [[package]]
  310. name = "hermit-abi"
  311. version = "0.1.18"
  312. source = "registry+https://github.com/rust-lang/crates.io-index"
  313. checksum = "322f4de77956e22ed0e5032c359a0f1273f1f7f0d79bfa3b8ffbc730d7fbcc5c"
  314. dependencies = [
  315. "libc",
  316. ]
  317. [[package]]
  318. name = "humantime"
  319. version = "2.1.0"
  320. source = "registry+https://github.com/rust-lang/crates.io-index"
  321. checksum = "9a3a5bfb195931eeb336b2a7b4d761daec841b97f947d34394601737a7bba5e4"
  322. [[package]]
  323. name = "instant"
  324. version = "0.1.9"
  325. source = "registry+https://github.com/rust-lang/crates.io-index"
  326. checksum = "61124eeebbd69b8190558df225adf7e4caafce0d743919e5d6b19652314ec5ec"
  327. dependencies = [
  328. "cfg-if",
  329. ]
  330. [[package]]
  331. name = "js-sys"
  332. version = "0.3.51"
  333. source = "registry+https://github.com/rust-lang/crates.io-index"
  334. checksum = "83bdfbace3a0e81a4253f73b49e960b053e396a11012cbd49b9b74d6a2b67062"
  335. dependencies = [
  336. "wasm-bindgen",
  337. ]
  338. [[package]]
  339. name = "lazy_static"
  340. version = "1.4.0"
  341. source = "registry+https://github.com/rust-lang/crates.io-index"
  342. checksum = "e2abad23fbc42b3700f2f279844dc832adb2b2eb069b2df918f455c4e18cc646"
  343. [[package]]
  344. name = "libc"
  345. version = "0.2.132"
  346. source = "registry+https://github.com/rust-lang/crates.io-index"
  347. checksum = "8371e4e5341c3a96db127eb2465ac681ced4c433e01dd0e938adbef26ba93ba5"
  348. [[package]]
  349. name = "lock_api"
  350. version = "0.4.4"
  351. source = "registry+https://github.com/rust-lang/crates.io-index"
  352. checksum = "0382880606dff6d15c9476c416d18690b72742aa7b605bb6dd6ec9030fbf07eb"
  353. dependencies = [
  354. "scopeguard",
  355. ]
  356. [[package]]
  357. name = "log"
  358. version = "0.4.14"
  359. source = "registry+https://github.com/rust-lang/crates.io-index"
  360. checksum = "51b9bbe6c47d51fc3e1a9b945965946b4c44142ab8792c50835a980d362c2710"
  361. dependencies = [
  362. "cfg-if",
  363. ]
  364. [[package]]
  365. name = "memchr"
  366. version = "2.4.0"
  367. source = "registry+https://github.com/rust-lang/crates.io-index"
  368. checksum = "b16bd47d9e329435e309c58469fe0791c2d0d1ba96ec0954152a5ae2b04387dc"
  369. [[package]]
  370. name = "memoffset"
  371. version = "0.6.4"
  372. source = "registry+https://github.com/rust-lang/crates.io-index"
  373. checksum = "59accc507f1338036a0477ef61afdae33cde60840f4dfe481319ce3ad116ddf9"
  374. dependencies = [
  375. "autocfg",
  376. ]
  377. [[package]]
  378. name = "mio"
  379. version = "0.8.4"
  380. source = "registry+https://github.com/rust-lang/crates.io-index"
  381. checksum = "57ee1c23c7c63b0c9250c339ffdc69255f110b298b901b9f6c82547b7b87caaf"
  382. dependencies = [
  383. "libc",
  384. "log",
  385. "wasi 0.11.0+wasi-snapshot-preview1",
  386. "windows-sys",
  387. ]
  388. [[package]]
  389. name = "mumble-protocol"
  390. version = "0.4.1"
  391. source = "registry+https://github.com/rust-lang/crates.io-index"
  392. checksum = "4071096f63c6e9853c32825096af49caf6667979ff67a765ba23dffcf3c77160"
  393. dependencies = [
  394. "byteorder",
  395. "bytes",
  396. "openssl",
  397. "protobuf",
  398. "protobuf-codegen-pure",
  399. "tokio-util",
  400. ]
  401. [[package]]
  402. name = "num_cpus"
  403. version = "1.13.0"
  404. source = "registry+https://github.com/rust-lang/crates.io-index"
  405. checksum = "05499f3756671c15885fee9034446956fff3f243d6077b91e5767df161f766b3"
  406. dependencies = [
  407. "hermit-abi",
  408. "libc",
  409. ]
  410. [[package]]
  411. name = "once_cell"
  412. version = "1.7.2"
  413. source = "registry+https://github.com/rust-lang/crates.io-index"
  414. checksum = "af8b08b04175473088b46763e51ee54da5f9a164bc162f615b91bc179dbf15a3"
  415. [[package]]
  416. name = "opaque-debug"
  417. version = "0.3.0"
  418. source = "registry+https://github.com/rust-lang/crates.io-index"
  419. checksum = "624a8340c38c1b80fd549087862da4ba43e08858af025b236e509b6649fc13d5"
  420. [[package]]
  421. name = "openssl"
  422. version = "0.10.41"
  423. source = "registry+https://github.com/rust-lang/crates.io-index"
  424. checksum = "618febf65336490dfcf20b73f885f5651a0c89c64c2d4a8c3662585a70bf5bd0"
  425. dependencies = [
  426. "bitflags",
  427. "cfg-if",
  428. "foreign-types",
  429. "libc",
  430. "once_cell",
  431. "openssl-macros",
  432. "openssl-sys",
  433. ]
  434. [[package]]
  435. name = "openssl-macros"
  436. version = "0.1.0"
  437. source = "registry+https://github.com/rust-lang/crates.io-index"
  438. checksum = "b501e44f11665960c7e7fcf062c7d96a14ade4aa98116c004b2e37b5be7d736c"
  439. dependencies = [
  440. "proc-macro2",
  441. "quote",
  442. "syn",
  443. ]
  444. [[package]]
  445. name = "openssl-sys"
  446. version = "0.9.75"
  447. source = "registry+https://github.com/rust-lang/crates.io-index"
  448. checksum = "e5f9bd0c2710541a3cda73d6f9ac4f1b240de4ae261065d309dbe73d9dceb42f"
  449. dependencies = [
  450. "autocfg",
  451. "cc",
  452. "libc",
  453. "pkg-config",
  454. "vcpkg",
  455. ]
  456. [[package]]
  457. name = "parking_lot"
  458. version = "0.11.1"
  459. source = "registry+https://github.com/rust-lang/crates.io-index"
  460. checksum = "6d7744ac029df22dca6284efe4e898991d28e3085c706c972bcd7da4a27a15eb"
  461. dependencies = [
  462. "instant",
  463. "lock_api",
  464. "parking_lot_core",
  465. ]
  466. [[package]]
  467. name = "parking_lot_core"
  468. version = "0.8.3"
  469. source = "registry+https://github.com/rust-lang/crates.io-index"
  470. checksum = "fa7a782938e745763fe6907fc6ba86946d72f49fe7e21de074e08128a99fb018"
  471. dependencies = [
  472. "cfg-if",
  473. "instant",
  474. "libc",
  475. "redox_syscall",
  476. "smallvec",
  477. "winapi",
  478. ]
  479. [[package]]
  480. name = "pin-project-lite"
  481. version = "0.2.6"
  482. source = "registry+https://github.com/rust-lang/crates.io-index"
  483. checksum = "dc0e1f259c92177c30a4c9d177246edd0a3568b25756a977d0632cf8fa37e905"
  484. [[package]]
  485. name = "pin-utils"
  486. version = "0.1.0"
  487. source = "registry+https://github.com/rust-lang/crates.io-index"
  488. checksum = "8b870d8c151b6f2fb93e84a13146138f05d02ed11c7e7c54f8826aaaf7c9f184"
  489. [[package]]
  490. name = "pkg-config"
  491. version = "0.3.25"
  492. source = "registry+https://github.com/rust-lang/crates.io-index"
  493. checksum = "1df8c4ec4b0627e53bdf214615ad287367e482558cf84b109250b37464dc03ae"
  494. [[package]]
  495. name = "ppv-lite86"
  496. version = "0.2.10"
  497. source = "registry+https://github.com/rust-lang/crates.io-index"
  498. checksum = "ac74c624d6b2d21f425f752262f42188365d7b8ff1aff74c82e45136510a4857"
  499. [[package]]
  500. name = "proc-macro2"
  501. version = "1.0.27"
  502. source = "registry+https://github.com/rust-lang/crates.io-index"
  503. checksum = "f0d8caf72986c1a598726adc988bb5984792ef84f5ee5aa50209145ee8077038"
  504. dependencies = [
  505. "unicode-xid",
  506. ]
  507. [[package]]
  508. name = "protobuf"
  509. version = "2.25.1"
  510. source = "registry+https://github.com/rust-lang/crates.io-index"
  511. checksum = "23129d50f2c9355ced935fce8a08bd706ee2e7ce2b3b33bf61dace0e379ac63a"
  512. [[package]]
  513. name = "protobuf-codegen"
  514. version = "2.25.1"
  515. source = "registry+https://github.com/rust-lang/crates.io-index"
  516. checksum = "4ba98ce0dadaa6de1e7f1b6d82a0a73b03e0c049169a167c919d906b0875026c"
  517. dependencies = [
  518. "protobuf",
  519. ]
  520. [[package]]
  521. name = "protobuf-codegen-pure"
  522. version = "2.25.1"
  523. source = "registry+https://github.com/rust-lang/crates.io-index"
  524. checksum = "a2bab16316ed0c5794a06c399af55a3ca7b93496cb35cb4c15bcc8f5d824f2b7"
  525. dependencies = [
  526. "protobuf",
  527. "protobuf-codegen",
  528. ]
  529. [[package]]
  530. name = "quote"
  531. version = "1.0.9"
  532. source = "registry+https://github.com/rust-lang/crates.io-index"
  533. checksum = "c3d0b9745dc2debf507c8422de05d7226cc1f0644216dfdfead988f9b1ab32a7"
  534. dependencies = [
  535. "proc-macro2",
  536. ]
  537. [[package]]
  538. name = "rand"
  539. version = "0.8.4"
  540. source = "registry+https://github.com/rust-lang/crates.io-index"
  541. checksum = "2e7573632e6454cf6b99d7aac4ccca54be06da05aca2ef7423d22d27d4d4bcd8"
  542. dependencies = [
  543. "libc",
  544. "rand_chacha",
  545. "rand_core",
  546. "rand_hc",
  547. ]
  548. [[package]]
  549. name = "rand_chacha"
  550. version = "0.3.0"
  551. source = "registry+https://github.com/rust-lang/crates.io-index"
  552. checksum = "e12735cf05c9e10bf21534da50a147b924d555dc7a547c42e6bb2d5b6017ae0d"
  553. dependencies = [
  554. "ppv-lite86",
  555. "rand_core",
  556. ]
  557. [[package]]
  558. name = "rand_core"
  559. version = "0.6.2"
  560. source = "registry+https://github.com/rust-lang/crates.io-index"
  561. checksum = "34cf66eb183df1c5876e2dcf6b13d57340741e8dc255b48e40a26de954d06ae7"
  562. dependencies = [
  563. "getrandom",
  564. ]
  565. [[package]]
  566. name = "rand_hc"
  567. version = "0.3.0"
  568. source = "registry+https://github.com/rust-lang/crates.io-index"
  569. checksum = "3190ef7066a446f2e7f42e239d161e905420ccab01eb967c9eb27d21b2322a73"
  570. dependencies = [
  571. "rand_core",
  572. ]
  573. [[package]]
  574. name = "redox_syscall"
  575. version = "0.2.8"
  576. source = "registry+https://github.com/rust-lang/crates.io-index"
  577. checksum = "742739e41cd49414de871ea5e549afb7e2a3ac77b589bcbebe8c82fab37147fc"
  578. dependencies = [
  579. "bitflags",
  580. ]
  581. [[package]]
  582. name = "regex"
  583. version = "1.5.4"
  584. source = "registry+https://github.com/rust-lang/crates.io-index"
  585. checksum = "d07a8629359eb56f1e2fb1652bb04212c072a87ba68546a04065d525673ac461"
  586. dependencies = [
  587. "aho-corasick",
  588. "memchr",
  589. "regex-syntax",
  590. ]
  591. [[package]]
  592. name = "regex-syntax"
  593. version = "0.6.25"
  594. source = "registry+https://github.com/rust-lang/crates.io-index"
  595. checksum = "f497285884f3fcff424ffc933e56d7cbca511def0c9831a7f9b5f6153e3cc89b"
  596. [[package]]
  597. name = "ring"
  598. version = "0.16.20"
  599. source = "registry+https://github.com/rust-lang/crates.io-index"
  600. checksum = "3053cf52e236a3ed746dfc745aa9cacf1b791d846bdaf412f60a8d7d6e17c8fc"
  601. dependencies = [
  602. "cc",
  603. "libc",
  604. "once_cell",
  605. "spin",
  606. "untrusted",
  607. "web-sys",
  608. "winapi",
  609. ]
  610. [[package]]
  611. name = "rumble"
  612. version = "0.1.0"
  613. dependencies = [
  614. "aes",
  615. "async-trait",
  616. "bincode",
  617. "bytes",
  618. "clap",
  619. "dashmap",
  620. "env_logger",
  621. "futures",
  622. "log",
  623. "mumble-protocol",
  624. "rand",
  625. "ring",
  626. "serde",
  627. "sled",
  628. "tokio",
  629. "tokio-rustls",
  630. "tokio-util",
  631. ]
  632. [[package]]
  633. name = "rustls"
  634. version = "0.19.1"
  635. source = "registry+https://github.com/rust-lang/crates.io-index"
  636. checksum = "35edb675feee39aec9c99fa5ff985081995a06d594114ae14cbe797ad7b7a6d7"
  637. dependencies = [
  638. "base64",
  639. "log",
  640. "ring",
  641. "sct",
  642. "webpki",
  643. ]
  644. [[package]]
  645. name = "scopeguard"
  646. version = "1.1.0"
  647. source = "registry+https://github.com/rust-lang/crates.io-index"
  648. checksum = "d29ab0c6d3fc0ee92fe66e2d99f700eab17a8d57d1c1d3b748380fb20baa78cd"
  649. [[package]]
  650. name = "sct"
  651. version = "0.6.1"
  652. source = "registry+https://github.com/rust-lang/crates.io-index"
  653. checksum = "b362b83898e0e69f38515b82ee15aa80636befe47c3b6d3d89a911e78fc228ce"
  654. dependencies = [
  655. "ring",
  656. "untrusted",
  657. ]
  658. [[package]]
  659. name = "serde"
  660. version = "1.0.130"
  661. source = "registry+https://github.com/rust-lang/crates.io-index"
  662. checksum = "f12d06de37cf59146fbdecab66aa99f9fe4f78722e3607577a5375d66bd0c913"
  663. dependencies = [
  664. "serde_derive",
  665. ]
  666. [[package]]
  667. name = "serde_derive"
  668. version = "1.0.130"
  669. source = "registry+https://github.com/rust-lang/crates.io-index"
  670. checksum = "d7bc1a1ab1961464eae040d96713baa5a724a8152c1222492465b54322ec508b"
  671. dependencies = [
  672. "proc-macro2",
  673. "quote",
  674. "syn",
  675. ]
  676. [[package]]
  677. name = "slab"
  678. version = "0.4.7"
  679. source = "registry+https://github.com/rust-lang/crates.io-index"
  680. checksum = "4614a76b2a8be0058caa9dbbaf66d988527d86d003c11a94fbd335d7661edcef"
  681. dependencies = [
  682. "autocfg",
  683. ]
  684. [[package]]
  685. name = "sled"
  686. version = "0.34.6"
  687. source = "registry+https://github.com/rust-lang/crates.io-index"
  688. checksum = "1d0132f3e393bcb7390c60bb45769498cf4550bcb7a21d7f95c02b69f6362cdc"
  689. dependencies = [
  690. "crc32fast",
  691. "crossbeam-epoch",
  692. "crossbeam-utils",
  693. "fs2",
  694. "fxhash",
  695. "libc",
  696. "log",
  697. "parking_lot",
  698. ]
  699. [[package]]
  700. name = "smallvec"
  701. version = "1.6.1"
  702. source = "registry+https://github.com/rust-lang/crates.io-index"
  703. checksum = "fe0f37c9e8f3c5a4a66ad655a93c74daac4ad00c441533bf5c6e7990bb42604e"
  704. [[package]]
  705. name = "socket2"
  706. version = "0.4.7"
  707. source = "registry+https://github.com/rust-lang/crates.io-index"
  708. checksum = "02e2d2db9033d13a1567121ddd7a095ee144db4e1ca1b1bda3419bc0da294ebd"
  709. dependencies = [
  710. "libc",
  711. "winapi",
  712. ]
  713. [[package]]
  714. name = "spin"
  715. version = "0.5.2"
  716. source = "registry+https://github.com/rust-lang/crates.io-index"
  717. checksum = "6e63cff320ae2c57904679ba7cb63280a3dc4613885beafb148ee7bf9aa9042d"
  718. [[package]]
  719. name = "strsim"
  720. version = "0.8.0"
  721. source = "registry+https://github.com/rust-lang/crates.io-index"
  722. checksum = "8ea5119cdb4c55b55d432abb513a0429384878c15dde60cc77b1c99de1a95a6a"
  723. [[package]]
  724. name = "syn"
  725. version = "1.0.72"
  726. source = "registry+https://github.com/rust-lang/crates.io-index"
  727. checksum = "a1e8cdbefb79a9a5a65e0db8b47b723ee907b7c7f8496c76a1770b5c310bab82"
  728. dependencies = [
  729. "proc-macro2",
  730. "quote",
  731. "unicode-xid",
  732. ]
  733. [[package]]
  734. name = "termcolor"
  735. version = "1.1.2"
  736. source = "registry+https://github.com/rust-lang/crates.io-index"
  737. checksum = "2dfed899f0eb03f32ee8c6a0aabdb8a7949659e3466561fc0adf54e26d88c5f4"
  738. dependencies = [
  739. "winapi-util",
  740. ]
  741. [[package]]
  742. name = "textwrap"
  743. version = "0.11.0"
  744. source = "registry+https://github.com/rust-lang/crates.io-index"
  745. checksum = "d326610f408c7a4eb6f51c37c330e496b08506c9457c9d34287ecc38809fb060"
  746. dependencies = [
  747. "unicode-width",
  748. ]
  749. [[package]]
  750. name = "tokio"
  751. version = "1.20.1"
  752. source = "registry+https://github.com/rust-lang/crates.io-index"
  753. checksum = "7a8325f63a7d4774dd041e363b2409ed1c5cbbd0f867795e661df066b2b0a581"
  754. dependencies = [
  755. "autocfg",
  756. "bytes",
  757. "libc",
  758. "memchr",
  759. "mio",
  760. "num_cpus",
  761. "once_cell",
  762. "pin-project-lite",
  763. "socket2",
  764. "tokio-macros",
  765. "winapi",
  766. ]
  767. [[package]]
  768. name = "tokio-macros"
  769. version = "1.8.0"
  770. source = "registry+https://github.com/rust-lang/crates.io-index"
  771. checksum = "9724f9a975fb987ef7a3cd9be0350edcbe130698af5b8f7a631e23d42d052484"
  772. dependencies = [
  773. "proc-macro2",
  774. "quote",
  775. "syn",
  776. ]
  777. [[package]]
  778. name = "tokio-rustls"
  779. version = "0.22.0"
  780. source = "registry+https://github.com/rust-lang/crates.io-index"
  781. checksum = "bc6844de72e57df1980054b38be3a9f4702aba4858be64dd700181a8a6d0e1b6"
  782. dependencies = [
  783. "rustls",
  784. "tokio",
  785. "webpki",
  786. ]
  787. [[package]]
  788. name = "tokio-util"
  789. version = "0.6.10"
  790. source = "registry+https://github.com/rust-lang/crates.io-index"
  791. checksum = "36943ee01a6d67977dd3f84a5a1d2efeb4ada3a1ae771cadfaa535d9d9fc6507"
  792. dependencies = [
  793. "bytes",
  794. "futures-core",
  795. "futures-sink",
  796. "log",
  797. "pin-project-lite",
  798. "tokio",
  799. ]
  800. [[package]]
  801. name = "typenum"
  802. version = "1.13.0"
  803. source = "registry+https://github.com/rust-lang/crates.io-index"
  804. checksum = "879f6906492a7cd215bfa4cf595b600146ccfac0c79bcbd1f3000162af5e8b06"
  805. [[package]]
  806. name = "unicode-width"
  807. version = "0.1.8"
  808. source = "registry+https://github.com/rust-lang/crates.io-index"
  809. checksum = "9337591893a19b88d8d87f2cec1e73fad5cdfd10e5a6f349f498ad6ea2ffb1e3"
  810. [[package]]
  811. name = "unicode-xid"
  812. version = "0.2.2"
  813. source = "registry+https://github.com/rust-lang/crates.io-index"
  814. checksum = "8ccb82d61f80a663efe1f787a51b16b5a51e3314d6ac365b08639f52387b33f3"
  815. [[package]]
  816. name = "untrusted"
  817. version = "0.7.1"
  818. source = "registry+https://github.com/rust-lang/crates.io-index"
  819. checksum = "a156c684c91ea7d62626509bce3cb4e1d9ed5c4d978f7b4352658f96a4c26b4a"
  820. [[package]]
  821. name = "vcpkg"
  822. version = "0.2.15"
  823. source = "registry+https://github.com/rust-lang/crates.io-index"
  824. checksum = "accd4ea62f7bb7a82fe23066fb0957d48ef677f6eeb8215f372f52e48bb32426"
  825. [[package]]
  826. name = "vec_map"
  827. version = "0.8.2"
  828. source = "registry+https://github.com/rust-lang/crates.io-index"
  829. checksum = "f1bddf1187be692e79c5ffeab891132dfb0f236ed36a43c7ed39f1165ee20191"
  830. [[package]]
  831. name = "version_check"
  832. version = "0.9.3"
  833. source = "registry+https://github.com/rust-lang/crates.io-index"
  834. checksum = "5fecdca9a5291cc2b8dcf7dc02453fee791a280f3743cb0905f8822ae463b3fe"
  835. [[package]]
  836. name = "wasi"
  837. version = "0.10.2+wasi-snapshot-preview1"
  838. source = "registry+https://github.com/rust-lang/crates.io-index"
  839. checksum = "fd6fbd9a79829dd1ad0cc20627bf1ed606756a7f77edff7b66b7064f9cb327c6"
  840. [[package]]
  841. name = "wasi"
  842. version = "0.11.0+wasi-snapshot-preview1"
  843. source = "registry+https://github.com/rust-lang/crates.io-index"
  844. checksum = "9c8d87e72b64a3b4db28d11ce29237c246188f4f51057d65a7eab63b7987e423"
  845. [[package]]
  846. name = "wasm-bindgen"
  847. version = "0.2.74"
  848. source = "registry+https://github.com/rust-lang/crates.io-index"
  849. checksum = "d54ee1d4ed486f78874278e63e4069fc1ab9f6a18ca492076ffb90c5eb2997fd"
  850. dependencies = [
  851. "cfg-if",
  852. "wasm-bindgen-macro",
  853. ]
  854. [[package]]
  855. name = "wasm-bindgen-backend"
  856. version = "0.2.74"
  857. source = "registry+https://github.com/rust-lang/crates.io-index"
  858. checksum = "3b33f6a0694ccfea53d94db8b2ed1c3a8a4c86dd936b13b9f0a15ec4a451b900"
  859. dependencies = [
  860. "bumpalo",
  861. "lazy_static",
  862. "log",
  863. "proc-macro2",
  864. "quote",
  865. "syn",
  866. "wasm-bindgen-shared",
  867. ]
  868. [[package]]
  869. name = "wasm-bindgen-macro"
  870. version = "0.2.74"
  871. source = "registry+https://github.com/rust-lang/crates.io-index"
  872. checksum = "088169ca61430fe1e58b8096c24975251700e7b1f6fd91cc9d59b04fb9b18bd4"
  873. dependencies = [
  874. "quote",
  875. "wasm-bindgen-macro-support",
  876. ]
  877. [[package]]
  878. name = "wasm-bindgen-macro-support"
  879. version = "0.2.74"
  880. source = "registry+https://github.com/rust-lang/crates.io-index"
  881. checksum = "be2241542ff3d9f241f5e2cb6dd09b37efe786df8851c54957683a49f0987a97"
  882. dependencies = [
  883. "proc-macro2",
  884. "quote",
  885. "syn",
  886. "wasm-bindgen-backend",
  887. "wasm-bindgen-shared",
  888. ]
  889. [[package]]
  890. name = "wasm-bindgen-shared"
  891. version = "0.2.74"
  892. source = "registry+https://github.com/rust-lang/crates.io-index"
  893. checksum = "d7cff876b8f18eed75a66cf49b65e7f967cb354a7aa16003fb55dbfd25b44b4f"
  894. [[package]]
  895. name = "web-sys"
  896. version = "0.3.51"
  897. source = "registry+https://github.com/rust-lang/crates.io-index"
  898. checksum = "e828417b379f3df7111d3a2a9e5753706cae29c41f7c4029ee9fd77f3e09e582"
  899. dependencies = [
  900. "js-sys",
  901. "wasm-bindgen",
  902. ]
  903. [[package]]
  904. name = "webpki"
  905. version = "0.21.4"
  906. source = "registry+https://github.com/rust-lang/crates.io-index"
  907. checksum = "b8e38c0608262c46d4a56202ebabdeb094cef7e560ca7a226c6bf055188aa4ea"
  908. dependencies = [
  909. "ring",
  910. "untrusted",
  911. ]
  912. [[package]]
  913. name = "winapi"
  914. version = "0.3.9"
  915. source = "registry+https://github.com/rust-lang/crates.io-index"
  916. checksum = "5c839a674fcd7a98952e593242ea400abe93992746761e38641405d28b00f419"
  917. dependencies = [
  918. "winapi-i686-pc-windows-gnu",
  919. "winapi-x86_64-pc-windows-gnu",
  920. ]
  921. [[package]]
  922. name = "winapi-i686-pc-windows-gnu"
  923. version = "0.4.0"
  924. source = "registry+https://github.com/rust-lang/crates.io-index"
  925. checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6"
  926. [[package]]
  927. name = "winapi-util"
  928. version = "0.1.5"
  929. source = "registry+https://github.com/rust-lang/crates.io-index"
  930. checksum = "70ec6ce85bb158151cae5e5c87f95a8e97d2c0c4b001223f33a334e3ce5de178"
  931. dependencies = [
  932. "winapi",
  933. ]
  934. [[package]]
  935. name = "winapi-x86_64-pc-windows-gnu"
  936. version = "0.4.0"
  937. source = "registry+https://github.com/rust-lang/crates.io-index"
  938. checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f"
  939. [[package]]
  940. name = "windows-sys"
  941. version = "0.36.1"
  942. source = "registry+https://github.com/rust-lang/crates.io-index"
  943. checksum = "ea04155a16a59f9eab786fe12a4a450e75cdb175f9e0d80da1e17db09f55b8d2"
  944. dependencies = [
  945. "windows_aarch64_msvc",
  946. "windows_i686_gnu",
  947. "windows_i686_msvc",
  948. "windows_x86_64_gnu",
  949. "windows_x86_64_msvc",
  950. ]
  951. [[package]]
  952. name = "windows_aarch64_msvc"
  953. version = "0.36.1"
  954. source = "registry+https://github.com/rust-lang/crates.io-index"
  955. checksum = "9bb8c3fd39ade2d67e9874ac4f3db21f0d710bee00fe7cab16949ec184eeaa47"
  956. [[package]]
  957. name = "windows_i686_gnu"
  958. version = "0.36.1"
  959. source = "registry+https://github.com/rust-lang/crates.io-index"
  960. checksum = "180e6ccf01daf4c426b846dfc66db1fc518f074baa793aa7d9b9aaeffad6a3b6"
  961. [[package]]
  962. name = "windows_i686_msvc"
  963. version = "0.36.1"
  964. source = "registry+https://github.com/rust-lang/crates.io-index"
  965. checksum = "e2e7917148b2812d1eeafaeb22a97e4813dfa60a3f8f78ebe204bcc88f12f024"
  966. [[package]]
  967. name = "windows_x86_64_gnu"
  968. version = "0.36.1"
  969. source = "registry+https://github.com/rust-lang/crates.io-index"
  970. checksum = "4dcd171b8776c41b97521e5da127a2d86ad280114807d0b2ab1e462bc764d9e1"
  971. [[package]]
  972. name = "windows_x86_64_msvc"
  973. version = "0.36.1"
  974. source = "registry+https://github.com/rust-lang/crates.io-index"
  975. checksum = "c811ca4a8c853ef420abd8592ba53ddbbac90410fab6903b3e79972a631f7680"