Cargo.lock 98 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179
  1. # This file is automatically @generated by Cargo.
  2. # It is not intended for manual editing.
  3. version = 3
  4. [[package]]
  5. name = "addr2line"
  6. version = "0.15.2"
  7. source = "registry+https://github.com/rust-lang/crates.io-index"
  8. checksum = "e7a2e47a1fbe209ee101dd6d61285226744c6c8d3c21c8dc878ba6cb9f467f3a"
  9. dependencies = [
  10. "gimli",
  11. ]
  12. [[package]]
  13. name = "adler"
  14. version = "1.0.2"
  15. source = "registry+https://github.com/rust-lang/crates.io-index"
  16. checksum = "f26201604c87b1e01bd3d98f8d5d9a8fcbb815e8cedb41ffccbeb4bf593a35fe"
  17. [[package]]
  18. name = "adler32"
  19. version = "1.2.0"
  20. source = "registry+https://github.com/rust-lang/crates.io-index"
  21. checksum = "aae1277d39aeec15cb388266ecc24b11c80469deae6067e17a1a7aa9e5c1f234"
  22. [[package]]
  23. name = "aho-corasick"
  24. version = "0.7.15"
  25. source = "registry+https://github.com/rust-lang/crates.io-index"
  26. checksum = "7404febffaa47dac81aa44dba71523c9d069b1bdc50a77db41195149e17f68e5"
  27. dependencies = [
  28. "memchr",
  29. ]
  30. [[package]]
  31. name = "alsa"
  32. version = "0.6.0"
  33. source = "registry+https://github.com/rust-lang/crates.io-index"
  34. checksum = "5915f52fe2cf65e83924d037b6c5290b7cee097c6b5c8700746e6168a343fd6b"
  35. dependencies = [
  36. "alsa-sys",
  37. "bitflags",
  38. "libc",
  39. "nix 0.23.1",
  40. ]
  41. [[package]]
  42. name = "alsa-sys"
  43. version = "0.3.1"
  44. source = "registry+https://github.com/rust-lang/crates.io-index"
  45. checksum = "db8fee663d06c4e303404ef5f40488a53e062f89ba8bfed81f42325aafad1527"
  46. dependencies = [
  47. "libc",
  48. "pkg-config",
  49. ]
  50. [[package]]
  51. name = "android_log-sys"
  52. version = "0.2.0"
  53. source = "registry+https://github.com/rust-lang/crates.io-index"
  54. checksum = "85965b6739a430150bdd138e2374a98af0c3ee0d030b3bb7fc3bddff58d0102e"
  55. [[package]]
  56. name = "android_logger"
  57. version = "0.10.1"
  58. source = "registry+https://github.com/rust-lang/crates.io-index"
  59. checksum = "d9ed09b18365ed295d722d0b5ed59c01b79a826ff2d2a8f73d5ecca8e6fb2f66"
  60. dependencies = [
  61. "android_log-sys",
  62. "env_logger 0.8.4",
  63. "lazy_static",
  64. "log",
  65. ]
  66. [[package]]
  67. name = "ansi_term"
  68. version = "0.12.1"
  69. source = "registry+https://github.com/rust-lang/crates.io-index"
  70. checksum = "d52a9bb7ec0cf484c551830a7ce27bd20d67eac647e1befb56b0be4ee39a55d2"
  71. dependencies = [
  72. "winapi 0.3.9",
  73. ]
  74. [[package]]
  75. name = "anyhow"
  76. version = "1.0.52"
  77. source = "registry+https://github.com/rust-lang/crates.io-index"
  78. checksum = "84450d0b4a8bd1ba4144ce8ce718fbc5d071358b1e5384bace6536b3d1f2d5b3"
  79. [[package]]
  80. name = "arboard"
  81. version = "2.0.1"
  82. source = "registry+https://github.com/rust-lang/crates.io-index"
  83. checksum = "1d76e1fe0171b6d0857afca5671db12a44e71e80823db13ab39f776fb09ad079"
  84. dependencies = [
  85. "clipboard-win",
  86. "core-graphics",
  87. "image",
  88. "log",
  89. "objc",
  90. "objc-foundation",
  91. "objc_id",
  92. "once_cell",
  93. "parking_lot",
  94. "scopeguard",
  95. "thiserror",
  96. "winapi 0.3.9",
  97. "x11rb",
  98. ]
  99. [[package]]
  100. name = "async-trait"
  101. version = "0.1.52"
  102. source = "registry+https://github.com/rust-lang/crates.io-index"
  103. checksum = "061a7acccaa286c011ddc30970520b98fa40e00c9d644633fb26b5fc63a265e3"
  104. dependencies = [
  105. "proc-macro2",
  106. "quote",
  107. "syn",
  108. ]
  109. [[package]]
  110. name = "atk"
  111. version = "0.9.0"
  112. source = "registry+https://github.com/rust-lang/crates.io-index"
  113. checksum = "812b4911e210bd51b24596244523c856ca749e6223c50a7fbbba3f89ee37c426"
  114. dependencies = [
  115. "atk-sys",
  116. "bitflags",
  117. "glib",
  118. "glib-sys",
  119. "gobject-sys",
  120. "libc",
  121. ]
  122. [[package]]
  123. name = "atk-sys"
  124. version = "0.10.0"
  125. source = "registry+https://github.com/rust-lang/crates.io-index"
  126. checksum = "f530e4af131d94cc4fa15c5c9d0348f0ef28bac64ba660b6b2a1cf2605dedfce"
  127. dependencies = [
  128. "glib-sys",
  129. "gobject-sys",
  130. "libc",
  131. "system-deps",
  132. ]
  133. [[package]]
  134. name = "atty"
  135. version = "0.2.14"
  136. source = "registry+https://github.com/rust-lang/crates.io-index"
  137. checksum = "d9b39be18770d11421cdb1b9947a45dd3f37e93092cbf377614828a319d5fee8"
  138. dependencies = [
  139. "hermit-abi",
  140. "libc",
  141. "winapi 0.3.9",
  142. ]
  143. [[package]]
  144. name = "autocfg"
  145. version = "0.1.7"
  146. source = "registry+https://github.com/rust-lang/crates.io-index"
  147. checksum = "1d49d90015b3c36167a20fe2810c5cd875ad504b39cff3d4eae7977e6b7c1cb2"
  148. [[package]]
  149. name = "autocfg"
  150. version = "1.0.1"
  151. source = "registry+https://github.com/rust-lang/crates.io-index"
  152. checksum = "cdb031dd78e28731d87d56cc8ffef4a8f36ca26c38fe2de700543e627f8a464a"
  153. [[package]]
  154. name = "backtrace"
  155. version = "0.3.59"
  156. source = "registry+https://github.com/rust-lang/crates.io-index"
  157. checksum = "4717cfcbfaa661a0fd48f8453951837ae7e8f81e481fbb136e3202d72805a744"
  158. dependencies = [
  159. "addr2line",
  160. "cc",
  161. "cfg-if 1.0.0",
  162. "libc",
  163. "miniz_oxide 0.4.4",
  164. "object",
  165. "rustc-demangle",
  166. ]
  167. [[package]]
  168. name = "base64"
  169. version = "0.13.0"
  170. source = "registry+https://github.com/rust-lang/crates.io-index"
  171. checksum = "904dfeac50f3cdaba28fc6f57fdcddb75f49ed61346676a78c4ffe55877802fd"
  172. [[package]]
  173. name = "bindgen"
  174. version = "0.56.0"
  175. source = "registry+https://github.com/rust-lang/crates.io-index"
  176. checksum = "2da379dbebc0b76ef63ca68d8fc6e71c0f13e59432e0987e508c1820e6ab5239"
  177. dependencies = [
  178. "bitflags",
  179. "cexpr 0.4.0",
  180. "clang-sys",
  181. "lazy_static",
  182. "lazycell",
  183. "peeking_take_while",
  184. "proc-macro2",
  185. "quote",
  186. "regex",
  187. "rustc-hash",
  188. "shlex 0.1.1",
  189. ]
  190. [[package]]
  191. name = "bindgen"
  192. version = "0.59.2"
  193. source = "registry+https://github.com/rust-lang/crates.io-index"
  194. checksum = "2bd2a9a458e8f4304c52c43ebb0cfbd520289f8379a52e329a38afda99bf8eb8"
  195. dependencies = [
  196. "bitflags",
  197. "cexpr 0.6.0",
  198. "clang-sys",
  199. "clap",
  200. "env_logger 0.9.0",
  201. "lazy_static",
  202. "lazycell",
  203. "log",
  204. "peeking_take_while",
  205. "proc-macro2",
  206. "quote",
  207. "regex",
  208. "rustc-hash",
  209. "shlex 1.1.0",
  210. "which 4.2.2",
  211. ]
  212. [[package]]
  213. name = "bitflags"
  214. version = "1.3.2"
  215. source = "registry+https://github.com/rust-lang/crates.io-index"
  216. checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a"
  217. [[package]]
  218. name = "block"
  219. version = "0.1.6"
  220. source = "registry+https://github.com/rust-lang/crates.io-index"
  221. checksum = "0d8c1fef690941d3e7788d328517591fecc684c084084702d6ff1641e993699a"
  222. [[package]]
  223. name = "block-buffer"
  224. version = "0.10.0"
  225. source = "registry+https://github.com/rust-lang/crates.io-index"
  226. checksum = "f1d36a02058e76b040de25a4464ba1c80935655595b661505c8b39b664828b95"
  227. dependencies = [
  228. "generic-array",
  229. ]
  230. [[package]]
  231. name = "bumpalo"
  232. version = "3.8.0"
  233. source = "registry+https://github.com/rust-lang/crates.io-index"
  234. checksum = "8f1e260c3a9040a7c19a12468758f4c16f31a81a1fe087482be9570ec864bb6c"
  235. [[package]]
  236. name = "bytemuck"
  237. version = "1.7.3"
  238. source = "registry+https://github.com/rust-lang/crates.io-index"
  239. checksum = "439989e6b8c38d1b6570a384ef1e49c8848128f5a97f3914baef02920842712f"
  240. [[package]]
  241. name = "byteorder"
  242. version = "1.4.3"
  243. source = "registry+https://github.com/rust-lang/crates.io-index"
  244. checksum = "14c189c53d098945499cdfa7ecc63567cf3886b3332b312a5b4585d8d3a6a610"
  245. [[package]]
  246. name = "bytes"
  247. version = "1.1.0"
  248. source = "registry+https://github.com/rust-lang/crates.io-index"
  249. checksum = "c4872d67bab6358e59559027aa3b9157c53d9358c51423c17554809a8858e0f8"
  250. [[package]]
  251. name = "cairo-rs"
  252. version = "0.9.1"
  253. source = "registry+https://github.com/rust-lang/crates.io-index"
  254. checksum = "c5c0f2e047e8ca53d0ff249c54ae047931d7a6ebe05d00af73e0ffeb6e34bdb8"
  255. dependencies = [
  256. "bitflags",
  257. "cairo-sys-rs",
  258. "glib",
  259. "glib-sys",
  260. "gobject-sys",
  261. "libc",
  262. "thiserror",
  263. ]
  264. [[package]]
  265. name = "cairo-sys-rs"
  266. version = "0.10.0"
  267. source = "registry+https://github.com/rust-lang/crates.io-index"
  268. checksum = "2ed2639b9ad5f1d6efa76de95558e11339e7318426d84ac4890b86c03e828ca7"
  269. dependencies = [
  270. "glib-sys",
  271. "libc",
  272. "system-deps",
  273. ]
  274. [[package]]
  275. name = "cc"
  276. version = "1.0.72"
  277. source = "registry+https://github.com/rust-lang/crates.io-index"
  278. checksum = "22a9137b95ea06864e018375b72adfb7db6e6f68cfc8df5a04d00288050485ee"
  279. dependencies = [
  280. "jobserver",
  281. ]
  282. [[package]]
  283. name = "cesu8"
  284. version = "1.1.0"
  285. source = "registry+https://github.com/rust-lang/crates.io-index"
  286. checksum = "6d43a04d8753f35258c91f8ec639f792891f748a1edbd759cf1dcea3382ad83c"
  287. [[package]]
  288. name = "cexpr"
  289. version = "0.4.0"
  290. source = "registry+https://github.com/rust-lang/crates.io-index"
  291. checksum = "f4aedb84272dbe89af497cf81375129abda4fc0a9e7c5d317498c15cc30c0d27"
  292. dependencies = [
  293. "nom 5.1.2",
  294. ]
  295. [[package]]
  296. name = "cexpr"
  297. version = "0.6.0"
  298. source = "registry+https://github.com/rust-lang/crates.io-index"
  299. checksum = "6fac387a98bb7c37292057cffc56d62ecb629900026402633ae9160df93a8766"
  300. dependencies = [
  301. "nom 7.1.0",
  302. ]
  303. [[package]]
  304. name = "cfg-if"
  305. version = "0.1.10"
  306. source = "registry+https://github.com/rust-lang/crates.io-index"
  307. checksum = "4785bdd1c96b2a846b2bd7cc02e86b6b3dbf14e7e53446c4f54c92a361040822"
  308. [[package]]
  309. name = "cfg-if"
  310. version = "1.0.0"
  311. source = "registry+https://github.com/rust-lang/crates.io-index"
  312. checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd"
  313. [[package]]
  314. name = "clang-sys"
  315. version = "1.3.0"
  316. source = "registry+https://github.com/rust-lang/crates.io-index"
  317. checksum = "fa66045b9cb23c2e9c1520732030608b02ee07e5cfaa5a521ec15ded7fa24c90"
  318. dependencies = [
  319. "glob",
  320. "libc",
  321. "libloading",
  322. ]
  323. [[package]]
  324. name = "clap"
  325. version = "2.34.0"
  326. source = "registry+https://github.com/rust-lang/crates.io-index"
  327. checksum = "a0610544180c38b88101fecf2dd634b174a62eef6946f84dfc6a7127512b381c"
  328. dependencies = [
  329. "ansi_term",
  330. "atty",
  331. "bitflags",
  332. "strsim 0.8.0",
  333. "textwrap",
  334. "unicode-width",
  335. "vec_map",
  336. ]
  337. [[package]]
  338. name = "clipboard-master"
  339. version = "3.1.3"
  340. source = "registry+https://github.com/rust-lang/crates.io-index"
  341. checksum = "459887701008d8ee21f8de7f45f0f0707417c7eea3311973f6e67222bd686b7a"
  342. dependencies = [
  343. "objc",
  344. "objc-foundation",
  345. "objc_id",
  346. "winapi 0.3.9",
  347. "windows-win",
  348. "x11-clipboard",
  349. ]
  350. [[package]]
  351. name = "clipboard-win"
  352. version = "4.3.0"
  353. source = "registry+https://github.com/rust-lang/crates.io-index"
  354. checksum = "1951fb8aa063a2ee18b4b4d217e4aa2ec9cc4f2430482983f607fa10cd36d7aa"
  355. dependencies = [
  356. "error-code",
  357. "str-buf",
  358. "winapi 0.3.9",
  359. ]
  360. [[package]]
  361. name = "cloudabi"
  362. version = "0.0.3"
  363. source = "registry+https://github.com/rust-lang/crates.io-index"
  364. checksum = "ddfc5b9aa5d4507acaf872de71051dfd0e309860e88966e1051e462a077aac4f"
  365. dependencies = [
  366. "bitflags",
  367. ]
  368. [[package]]
  369. name = "cmake"
  370. version = "0.1.46"
  371. source = "registry+https://github.com/rust-lang/crates.io-index"
  372. checksum = "b7b858541263efe664aead4a5209a4ae5c5d2811167d4ed4ee0944503f8d2089"
  373. dependencies = [
  374. "cc",
  375. ]
  376. [[package]]
  377. name = "cocoa"
  378. version = "0.24.0"
  379. source = "registry+https://github.com/rust-lang/crates.io-index"
  380. checksum = "6f63902e9223530efb4e26ccd0cf55ec30d592d3b42e21a28defc42a9586e832"
  381. dependencies = [
  382. "bitflags",
  383. "block",
  384. "cocoa-foundation",
  385. "core-foundation",
  386. "core-graphics",
  387. "foreign-types",
  388. "libc",
  389. "objc",
  390. ]
  391. [[package]]
  392. name = "cocoa-foundation"
  393. version = "0.1.0"
  394. source = "registry+https://github.com/rust-lang/crates.io-index"
  395. checksum = "7ade49b65d560ca58c403a479bb396592b155c0185eada742ee323d1d68d6318"
  396. dependencies = [
  397. "bitflags",
  398. "block",
  399. "core-foundation",
  400. "core-graphics-types",
  401. "foreign-types",
  402. "libc",
  403. "objc",
  404. ]
  405. [[package]]
  406. name = "color_quant"
  407. version = "1.1.0"
  408. source = "registry+https://github.com/rust-lang/crates.io-index"
  409. checksum = "3d7b894f5411737b7867f4827955924d7c254fc9f4d91a6aad6b097804b1018b"
  410. [[package]]
  411. name = "combine"
  412. version = "4.6.2"
  413. source = "registry+https://github.com/rust-lang/crates.io-index"
  414. checksum = "b2b2f5d0ee456f3928812dfc8c6d9a1d592b98678f6d56db9b0cd2b7bc6c8db5"
  415. dependencies = [
  416. "bytes",
  417. "memchr",
  418. ]
  419. [[package]]
  420. name = "confy"
  421. version = "0.4.1"
  422. source = "git+https://github.com/open-trade/confy#27fa12941291b44ccd856aef4a5452c1eb646047"
  423. dependencies = [
  424. "directories",
  425. "serde 1.0.133",
  426. "toml",
  427. ]
  428. [[package]]
  429. name = "core-foundation"
  430. version = "0.9.2"
  431. source = "registry+https://github.com/rust-lang/crates.io-index"
  432. checksum = "6888e10551bb93e424d8df1d07f1a8b4fceb0001a3a4b048bfc47554946f47b3"
  433. dependencies = [
  434. "core-foundation-sys",
  435. "libc",
  436. ]
  437. [[package]]
  438. name = "core-foundation-sys"
  439. version = "0.8.3"
  440. source = "registry+https://github.com/rust-lang/crates.io-index"
  441. checksum = "5827cebf4670468b8772dd191856768aedcb1b0278a04f989f7766351917b9dc"
  442. [[package]]
  443. name = "core-graphics"
  444. version = "0.22.3"
  445. source = "registry+https://github.com/rust-lang/crates.io-index"
  446. checksum = "2581bbab3b8ffc6fcbd550bf46c355135d16e9ff2a6ea032ad6b9bf1d7efe4fb"
  447. dependencies = [
  448. "bitflags",
  449. "core-foundation",
  450. "core-graphics-types",
  451. "foreign-types",
  452. "libc",
  453. ]
  454. [[package]]
  455. name = "core-graphics-types"
  456. version = "0.1.1"
  457. source = "registry+https://github.com/rust-lang/crates.io-index"
  458. checksum = "3a68b68b3446082644c91ac778bf50cd4104bfb002b5a6a7c44cca5a2c70788b"
  459. dependencies = [
  460. "bitflags",
  461. "core-foundation",
  462. "foreign-types",
  463. "libc",
  464. ]
  465. [[package]]
  466. name = "coreaudio-rs"
  467. version = "0.10.0"
  468. source = "registry+https://github.com/rust-lang/crates.io-index"
  469. checksum = "11894b20ebfe1ff903cbdc52259693389eea03b94918a2def2c30c3bf227ad88"
  470. dependencies = [
  471. "bitflags",
  472. "coreaudio-sys",
  473. ]
  474. [[package]]
  475. name = "coreaudio-sys"
  476. version = "0.2.8"
  477. source = "registry+https://github.com/rust-lang/crates.io-index"
  478. checksum = "2b7e3347be6a09b46aba228d6608386739fb70beff4f61e07422da87b0bb31fa"
  479. dependencies = [
  480. "bindgen 0.56.0",
  481. ]
  482. [[package]]
  483. name = "cpal"
  484. version = "0.13.4"
  485. source = "git+https://github.com/open-trade/cpal#3a30569687271c2d5d67279c4883d63f4003d34c"
  486. dependencies = [
  487. "alsa",
  488. "core-foundation-sys",
  489. "coreaudio-rs",
  490. "jni",
  491. "js-sys",
  492. "lazy_static",
  493. "libc",
  494. "mach",
  495. "ndk",
  496. "ndk-glue",
  497. "nix 0.23.1",
  498. "oboe",
  499. "parking_lot",
  500. "stdweb",
  501. "thiserror",
  502. "web-sys",
  503. "winapi 0.3.9",
  504. ]
  505. [[package]]
  506. name = "cpufeatures"
  507. version = "0.2.1"
  508. source = "registry+https://github.com/rust-lang/crates.io-index"
  509. checksum = "95059428f66df56b63431fdb4e1947ed2190586af5c5a8a8b71122bdf5a7f469"
  510. dependencies = [
  511. "libc",
  512. ]
  513. [[package]]
  514. name = "crc32fast"
  515. version = "1.3.0"
  516. source = "registry+https://github.com/rust-lang/crates.io-index"
  517. checksum = "738c290dfaea84fc1ca15ad9c168d083b05a714e1efddd8edaab678dc28d2836"
  518. dependencies = [
  519. "cfg-if 1.0.0",
  520. ]
  521. [[package]]
  522. name = "crypto-common"
  523. version = "0.1.1"
  524. source = "registry+https://github.com/rust-lang/crates.io-index"
  525. checksum = "683d6b536309245c849479fba3da410962a43ed8e51c26b729208ec0ac2798d0"
  526. dependencies = [
  527. "generic-array",
  528. ]
  529. [[package]]
  530. name = "cstr_core"
  531. version = "0.2.5"
  532. source = "registry+https://github.com/rust-lang/crates.io-index"
  533. checksum = "644828c273c063ab0d39486ba42a5d1f3a499d35529c759e763a9c6cb8a0fb08"
  534. dependencies = [
  535. "cty",
  536. "memchr",
  537. ]
  538. [[package]]
  539. name = "ctrlc"
  540. version = "3.2.1"
  541. source = "registry+https://github.com/rust-lang/crates.io-index"
  542. checksum = "a19c6cedffdc8c03a3346d723eb20bd85a13362bb96dc2ac000842c6381ec7bf"
  543. dependencies = [
  544. "nix 0.23.1",
  545. "winapi 0.3.9",
  546. ]
  547. [[package]]
  548. name = "cty"
  549. version = "0.2.2"
  550. source = "registry+https://github.com/rust-lang/crates.io-index"
  551. checksum = "b365fabc795046672053e29c954733ec3b05e4be654ab130fe8f1f94d7051f35"
  552. [[package]]
  553. name = "darling"
  554. version = "0.10.2"
  555. source = "registry+https://github.com/rust-lang/crates.io-index"
  556. checksum = "0d706e75d87e35569db781a9b5e2416cff1236a47ed380831f959382ccd5f858"
  557. dependencies = [
  558. "darling_core",
  559. "darling_macro",
  560. ]
  561. [[package]]
  562. name = "darling_core"
  563. version = "0.10.2"
  564. source = "registry+https://github.com/rust-lang/crates.io-index"
  565. checksum = "f0c960ae2da4de88a91b2d920c2a7233b400bc33cb28453a2987822d8392519b"
  566. dependencies = [
  567. "fnv",
  568. "ident_case",
  569. "proc-macro2",
  570. "quote",
  571. "strsim 0.9.3",
  572. "syn",
  573. ]
  574. [[package]]
  575. name = "darling_macro"
  576. version = "0.10.2"
  577. source = "registry+https://github.com/rust-lang/crates.io-index"
  578. checksum = "d9b5a2f4ac4969822c62224815d069952656cadc7084fdca9751e6d959189b72"
  579. dependencies = [
  580. "darling_core",
  581. "quote",
  582. "syn",
  583. ]
  584. [[package]]
  585. name = "darwin-libproc"
  586. version = "0.2.0"
  587. source = "registry+https://github.com/rust-lang/crates.io-index"
  588. checksum = "cc629b7cf42586fee31dae31f9ab73fa5ff5f0170016aa61be5fcbc12a90c516"
  589. dependencies = [
  590. "darwin-libproc-sys",
  591. "libc",
  592. "memchr",
  593. ]
  594. [[package]]
  595. name = "darwin-libproc-sys"
  596. version = "0.2.0"
  597. source = "registry+https://github.com/rust-lang/crates.io-index"
  598. checksum = "ef0aa083b94c54aa4cfd9bbfd37856714c139d1dc511af80270558c7ba3b4816"
  599. dependencies = [
  600. "libc",
  601. ]
  602. [[package]]
  603. name = "dasp"
  604. version = "0.11.0"
  605. source = "registry+https://github.com/rust-lang/crates.io-index"
  606. checksum = "7381b67da416b639690ac77c73b86a7b5e64a29e31d1f75fb3b1102301ef355a"
  607. dependencies = [
  608. "dasp_envelope",
  609. "dasp_frame",
  610. "dasp_interpolate",
  611. "dasp_peak",
  612. "dasp_ring_buffer",
  613. "dasp_rms",
  614. "dasp_sample",
  615. "dasp_signal",
  616. "dasp_slice",
  617. "dasp_window",
  618. ]
  619. [[package]]
  620. name = "dasp_envelope"
  621. version = "0.11.0"
  622. source = "registry+https://github.com/rust-lang/crates.io-index"
  623. checksum = "8ec617ce7016f101a87fe85ed44180839744265fae73bb4aa43e7ece1b7668b6"
  624. dependencies = [
  625. "dasp_frame",
  626. "dasp_peak",
  627. "dasp_ring_buffer",
  628. "dasp_rms",
  629. "dasp_sample",
  630. ]
  631. [[package]]
  632. name = "dasp_frame"
  633. version = "0.11.0"
  634. source = "registry+https://github.com/rust-lang/crates.io-index"
  635. checksum = "b2a3937f5fe2135702897535c8d4a5553f8b116f76c1529088797f2eee7c5cd6"
  636. dependencies = [
  637. "dasp_sample",
  638. ]
  639. [[package]]
  640. name = "dasp_interpolate"
  641. version = "0.11.0"
  642. source = "registry+https://github.com/rust-lang/crates.io-index"
  643. checksum = "7fc975a6563bb7ca7ec0a6c784ead49983a21c24835b0bc96eea11ee407c7486"
  644. dependencies = [
  645. "dasp_frame",
  646. "dasp_ring_buffer",
  647. "dasp_sample",
  648. ]
  649. [[package]]
  650. name = "dasp_peak"
  651. version = "0.11.0"
  652. source = "registry+https://github.com/rust-lang/crates.io-index"
  653. checksum = "5cf88559d79c21f3d8523d91250c397f9a15b5fc72fbb3f87fdb0a37b79915bf"
  654. dependencies = [
  655. "dasp_frame",
  656. "dasp_sample",
  657. ]
  658. [[package]]
  659. name = "dasp_ring_buffer"
  660. version = "0.11.0"
  661. source = "registry+https://github.com/rust-lang/crates.io-index"
  662. checksum = "07d79e19b89618a543c4adec9c5a347fe378a19041699b3278e616e387511ea1"
  663. [[package]]
  664. name = "dasp_rms"
  665. version = "0.11.0"
  666. source = "registry+https://github.com/rust-lang/crates.io-index"
  667. checksum = "a6c5dcb30b7e5014486e2822537ea2beae50b19722ffe2ed7549ab03774575aa"
  668. dependencies = [
  669. "dasp_frame",
  670. "dasp_ring_buffer",
  671. "dasp_sample",
  672. ]
  673. [[package]]
  674. name = "dasp_sample"
  675. version = "0.11.0"
  676. source = "registry+https://github.com/rust-lang/crates.io-index"
  677. checksum = "0c87e182de0887fd5361989c677c4e8f5000cd9491d6d563161a8f3a5519fc7f"
  678. [[package]]
  679. name = "dasp_signal"
  680. version = "0.11.0"
  681. source = "registry+https://github.com/rust-lang/crates.io-index"
  682. checksum = "aa1ab7d01689c6ed4eae3d38fe1cea08cba761573fbd2d592528d55b421077e7"
  683. dependencies = [
  684. "dasp_envelope",
  685. "dasp_frame",
  686. "dasp_interpolate",
  687. "dasp_peak",
  688. "dasp_ring_buffer",
  689. "dasp_rms",
  690. "dasp_sample",
  691. "dasp_window",
  692. ]
  693. [[package]]
  694. name = "dasp_slice"
  695. version = "0.11.0"
  696. source = "registry+https://github.com/rust-lang/crates.io-index"
  697. checksum = "4e1c7335d58e7baedafa516cb361360ff38d6f4d3f9d9d5ee2a2fc8e27178fa1"
  698. dependencies = [
  699. "dasp_frame",
  700. "dasp_sample",
  701. ]
  702. [[package]]
  703. name = "dasp_window"
  704. version = "0.11.1"
  705. source = "registry+https://github.com/rust-lang/crates.io-index"
  706. checksum = "99ded7b88821d2ce4e8b842c9f1c86ac911891ab89443cc1de750cae764c5076"
  707. dependencies = [
  708. "dasp_sample",
  709. ]
  710. [[package]]
  711. name = "dbus"
  712. version = "0.9.5"
  713. source = "registry+https://github.com/rust-lang/crates.io-index"
  714. checksum = "de0a745c25b32caa56b82a3950f5fec7893a960f4c10ca3b02060b0c38d8c2ce"
  715. dependencies = [
  716. "libc",
  717. "libdbus-sys",
  718. "winapi 0.3.9",
  719. ]
  720. [[package]]
  721. name = "deflate"
  722. version = "0.8.6"
  723. source = "registry+https://github.com/rust-lang/crates.io-index"
  724. checksum = "73770f8e1fe7d64df17ca66ad28994a0a623ea497fa69486e14984e715c5d174"
  725. dependencies = [
  726. "adler32",
  727. "byteorder",
  728. ]
  729. [[package]]
  730. name = "derive_more"
  731. version = "0.99.17"
  732. source = "registry+https://github.com/rust-lang/crates.io-index"
  733. checksum = "4fb810d30a7c1953f91334de7244731fc3f3c10d7fe163338a35b9f640960321"
  734. dependencies = [
  735. "proc-macro2",
  736. "quote",
  737. "syn",
  738. ]
  739. [[package]]
  740. name = "digest"
  741. version = "0.10.1"
  742. source = "registry+https://github.com/rust-lang/crates.io-index"
  743. checksum = "b697d66081d42af4fba142d56918a3cb21dc8eb63372c6b85d14f44fb9c5979b"
  744. dependencies = [
  745. "block-buffer",
  746. "crypto-common",
  747. "generic-array",
  748. ]
  749. [[package]]
  750. name = "directories"
  751. version = "2.0.2"
  752. source = "registry+https://github.com/rust-lang/crates.io-index"
  753. checksum = "551a778172a450d7fc12e629ca3b0428d00f6afa9a43da1b630d54604e97371c"
  754. dependencies = [
  755. "cfg-if 0.1.10",
  756. "dirs-sys",
  757. ]
  758. [[package]]
  759. name = "directories-next"
  760. version = "2.0.0"
  761. source = "registry+https://github.com/rust-lang/crates.io-index"
  762. checksum = "339ee130d97a610ea5a5872d2bbb130fdf68884ff09d3028b81bec8a1ac23bbc"
  763. dependencies = [
  764. "cfg-if 1.0.0",
  765. "dirs-sys-next",
  766. ]
  767. [[package]]
  768. name = "dirs-next"
  769. version = "2.0.0"
  770. source = "registry+https://github.com/rust-lang/crates.io-index"
  771. checksum = "b98cf8ebf19c3d1b223e151f99a4f9f0690dca41414773390fc824184ac833e1"
  772. dependencies = [
  773. "cfg-if 1.0.0",
  774. "dirs-sys-next",
  775. ]
  776. [[package]]
  777. name = "dirs-sys"
  778. version = "0.3.6"
  779. source = "registry+https://github.com/rust-lang/crates.io-index"
  780. checksum = "03d86534ed367a67548dc68113a0f5db55432fdfbb6e6f9d77704397d95d5780"
  781. dependencies = [
  782. "libc",
  783. "redox_users",
  784. "winapi 0.3.9",
  785. ]
  786. [[package]]
  787. name = "dirs-sys-next"
  788. version = "0.1.2"
  789. source = "registry+https://github.com/rust-lang/crates.io-index"
  790. checksum = "4ebda144c4fe02d1f7ea1a7d9641b6fc6b580adcfa024ae48797ecdeb6825b4d"
  791. dependencies = [
  792. "libc",
  793. "redox_users",
  794. "winapi 0.3.9",
  795. ]
  796. [[package]]
  797. name = "dispatch"
  798. version = "0.2.0"
  799. source = "registry+https://github.com/rust-lang/crates.io-index"
  800. checksum = "bd0c93bb4b0c6d9b77f4435b0ae98c24d17f1c45b2ff844c6151a07256ca923b"
  801. [[package]]
  802. name = "docopt"
  803. version = "1.1.1"
  804. source = "registry+https://github.com/rust-lang/crates.io-index"
  805. checksum = "7f3f119846c823f9eafcf953a8f6ffb6ed69bf6240883261a7f13b634579a51f"
  806. dependencies = [
  807. "lazy_static",
  808. "regex",
  809. "serde 1.0.133",
  810. "strsim 0.10.0",
  811. ]
  812. [[package]]
  813. name = "dtoa"
  814. version = "0.4.8"
  815. source = "registry+https://github.com/rust-lang/crates.io-index"
  816. checksum = "56899898ce76aaf4a0f24d914c97ea6ed976d42fec6ad33fcbb0a1103e07b2b0"
  817. [[package]]
  818. name = "ed25519"
  819. version = "1.3.0"
  820. source = "registry+https://github.com/rust-lang/crates.io-index"
  821. checksum = "74e1069e39f1454367eb2de793ed062fac4c35c2934b76a81d90dd9abcd28816"
  822. dependencies = [
  823. "signature",
  824. ]
  825. [[package]]
  826. name = "either"
  827. version = "1.6.1"
  828. source = "registry+https://github.com/rust-lang/crates.io-index"
  829. checksum = "e78d4f1cc4ae33bbfc157ed5d5a5ef3bc29227303d595861deb238fcec4e9457"
  830. [[package]]
  831. name = "enigo"
  832. version = "0.0.14"
  833. dependencies = [
  834. "core-graphics",
  835. "libc",
  836. "log",
  837. "objc",
  838. "pkg-config",
  839. "serde 1.0.133",
  840. "serde_derive",
  841. "unicode-segmentation",
  842. "winapi 0.3.9",
  843. ]
  844. [[package]]
  845. name = "env_logger"
  846. version = "0.8.4"
  847. source = "registry+https://github.com/rust-lang/crates.io-index"
  848. checksum = "a19187fea3ac7e84da7dacf48de0c45d63c6a76f9490dae389aead16c243fce3"
  849. dependencies = [
  850. "log",
  851. "regex",
  852. ]
  853. [[package]]
  854. name = "env_logger"
  855. version = "0.9.0"
  856. source = "registry+https://github.com/rust-lang/crates.io-index"
  857. checksum = "0b2cf0344971ee6c64c31be0d530793fba457d322dfec2810c453d0ef228f9c3"
  858. dependencies = [
  859. "atty",
  860. "humantime",
  861. "log",
  862. "regex",
  863. "termcolor",
  864. ]
  865. [[package]]
  866. name = "err-derive"
  867. version = "0.3.0"
  868. source = "registry+https://github.com/rust-lang/crates.io-index"
  869. checksum = "dcc7f65832b62ed38939f98966824eb6294911c3629b0e9a262bfb80836d9686"
  870. dependencies = [
  871. "proc-macro-error",
  872. "proc-macro2",
  873. "quote",
  874. "rustversion",
  875. "syn",
  876. "synstructure",
  877. ]
  878. [[package]]
  879. name = "error-code"
  880. version = "2.3.0"
  881. source = "registry+https://github.com/rust-lang/crates.io-index"
  882. checksum = "b5115567ac25674e0043e472be13d14e537f37ea8aa4bdc4aef0c89add1db1ff"
  883. dependencies = [
  884. "libc",
  885. "str-buf",
  886. ]
  887. [[package]]
  888. name = "failure"
  889. version = "0.1.8"
  890. source = "registry+https://github.com/rust-lang/crates.io-index"
  891. checksum = "d32e9bd16cc02eae7db7ef620b392808b89f6a5e16bb3497d159c6b92a0f4f86"
  892. dependencies = [
  893. "backtrace",
  894. ]
  895. [[package]]
  896. name = "filetime"
  897. version = "0.2.15"
  898. source = "registry+https://github.com/rust-lang/crates.io-index"
  899. checksum = "975ccf83d8d9d0d84682850a38c8169027be83368805971cc4f238c2b245bc98"
  900. dependencies = [
  901. "cfg-if 1.0.0",
  902. "libc",
  903. "redox_syscall",
  904. "winapi 0.3.9",
  905. ]
  906. [[package]]
  907. name = "flate2"
  908. version = "1.0.22"
  909. source = "registry+https://github.com/rust-lang/crates.io-index"
  910. checksum = "1e6988e897c1c9c485f43b47a529cef42fde0547f9d8d41a7062518f1d8fc53f"
  911. dependencies = [
  912. "cfg-if 1.0.0",
  913. "crc32fast",
  914. "libc",
  915. "miniz_oxide 0.4.4",
  916. ]
  917. [[package]]
  918. name = "flexi_logger"
  919. version = "0.22.0"
  920. source = "registry+https://github.com/rust-lang/crates.io-index"
  921. checksum = "11be38a063886b7be57de89636d65c07d318c1f9bd985cd8ab2c343786a910bc"
  922. dependencies = [
  923. "ansi_term",
  924. "atty",
  925. "glob",
  926. "lazy_static",
  927. "log",
  928. "regex",
  929. "rustversion",
  930. "thiserror",
  931. "time",
  932. ]
  933. [[package]]
  934. name = "fnv"
  935. version = "1.0.7"
  936. source = "registry+https://github.com/rust-lang/crates.io-index"
  937. checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1"
  938. [[package]]
  939. name = "foreign-types"
  940. version = "0.3.2"
  941. source = "registry+https://github.com/rust-lang/crates.io-index"
  942. checksum = "f6f339eb8adc052cd2ca78910fda869aefa38d22d5cb648e6485e4d3fc06f3b1"
  943. dependencies = [
  944. "foreign-types-shared",
  945. ]
  946. [[package]]
  947. name = "foreign-types-shared"
  948. version = "0.1.1"
  949. source = "registry+https://github.com/rust-lang/crates.io-index"
  950. checksum = "00b0228411908ca8685dba7fc2cdd70ec9990a6e753e89b6ac91a84c40fbaf4b"
  951. [[package]]
  952. name = "fuchsia-cprng"
  953. version = "0.1.1"
  954. source = "registry+https://github.com/rust-lang/crates.io-index"
  955. checksum = "a06f77d526c1a601b7c4cdd98f54b5eaabffc14d5f2f0296febdc7f357c6d3ba"
  956. [[package]]
  957. name = "fuchsia-zircon"
  958. version = "0.3.3"
  959. source = "registry+https://github.com/rust-lang/crates.io-index"
  960. checksum = "2e9763c69ebaae630ba35f74888db465e49e259ba1bc0eda7d06f4a067615d82"
  961. dependencies = [
  962. "bitflags",
  963. "fuchsia-zircon-sys",
  964. ]
  965. [[package]]
  966. name = "fuchsia-zircon-sys"
  967. version = "0.3.3"
  968. source = "registry+https://github.com/rust-lang/crates.io-index"
  969. checksum = "3dcaa9ae7725d12cdb85b3ad99a434db70b468c09ded17e012d86b5c1010f7a7"
  970. [[package]]
  971. name = "futures"
  972. version = "0.3.19"
  973. source = "registry+https://github.com/rust-lang/crates.io-index"
  974. checksum = "28560757fe2bb34e79f907794bb6b22ae8b0e5c669b638a1132f2592b19035b4"
  975. dependencies = [
  976. "futures-channel",
  977. "futures-core",
  978. "futures-executor",
  979. "futures-io",
  980. "futures-sink",
  981. "futures-task",
  982. "futures-util",
  983. ]
  984. [[package]]
  985. name = "futures-channel"
  986. version = "0.3.19"
  987. source = "registry+https://github.com/rust-lang/crates.io-index"
  988. checksum = "ba3dda0b6588335f360afc675d0564c17a77a2bda81ca178a4b6081bd86c7f0b"
  989. dependencies = [
  990. "futures-core",
  991. "futures-sink",
  992. ]
  993. [[package]]
  994. name = "futures-core"
  995. version = "0.3.19"
  996. source = "registry+https://github.com/rust-lang/crates.io-index"
  997. checksum = "d0c8ff0461b82559810cdccfde3215c3f373807f5e5232b71479bff7bb2583d7"
  998. [[package]]
  999. name = "futures-executor"
  1000. version = "0.3.19"
  1001. source = "registry+https://github.com/rust-lang/crates.io-index"
  1002. checksum = "29d6d2ff5bb10fb95c85b8ce46538a2e5f5e7fdc755623a7d4529ab8a4ed9d2a"
  1003. dependencies = [
  1004. "futures-core",
  1005. "futures-task",
  1006. "futures-util",
  1007. ]
  1008. [[package]]
  1009. name = "futures-io"
  1010. version = "0.3.19"
  1011. source = "registry+https://github.com/rust-lang/crates.io-index"
  1012. checksum = "b1f9d34af5a1aac6fb380f735fe510746c38067c5bf16c7fd250280503c971b2"
  1013. [[package]]
  1014. name = "futures-macro"
  1015. version = "0.3.19"
  1016. source = "registry+https://github.com/rust-lang/crates.io-index"
  1017. checksum = "6dbd947adfffb0efc70599b3ddcf7b5597bb5fa9e245eb99f62b3a5f7bb8bd3c"
  1018. dependencies = [
  1019. "proc-macro2",
  1020. "quote",
  1021. "syn",
  1022. ]
  1023. [[package]]
  1024. name = "futures-sink"
  1025. version = "0.3.19"
  1026. source = "registry+https://github.com/rust-lang/crates.io-index"
  1027. checksum = "e3055baccb68d74ff6480350f8d6eb8fcfa3aa11bdc1a1ae3afdd0514617d508"
  1028. [[package]]
  1029. name = "futures-task"
  1030. version = "0.3.19"
  1031. source = "registry+https://github.com/rust-lang/crates.io-index"
  1032. checksum = "6ee7c6485c30167ce4dfb83ac568a849fe53274c831081476ee13e0dce1aad72"
  1033. [[package]]
  1034. name = "futures-util"
  1035. version = "0.3.19"
  1036. source = "registry+https://github.com/rust-lang/crates.io-index"
  1037. checksum = "d9b5cf40b47a271f77a8b1bec03ca09044d99d2372c0de244e66430761127164"
  1038. dependencies = [
  1039. "futures-channel",
  1040. "futures-core",
  1041. "futures-io",
  1042. "futures-macro",
  1043. "futures-sink",
  1044. "futures-task",
  1045. "memchr",
  1046. "pin-project-lite",
  1047. "pin-utils",
  1048. "slab",
  1049. ]
  1050. [[package]]
  1051. name = "fxhash"
  1052. version = "0.2.1"
  1053. source = "registry+https://github.com/rust-lang/crates.io-index"
  1054. checksum = "c31b6d751ae2c7f11320402d34e41349dd1016f8d5d45e48c4312bc8625af50c"
  1055. dependencies = [
  1056. "byteorder",
  1057. ]
  1058. [[package]]
  1059. name = "gdk"
  1060. version = "0.13.2"
  1061. source = "registry+https://github.com/rust-lang/crates.io-index"
  1062. checksum = "db00839b2a68a7a10af3fa28dfb3febaba3a20c3a9ac2425a33b7df1f84a6b7d"
  1063. dependencies = [
  1064. "bitflags",
  1065. "cairo-rs",
  1066. "cairo-sys-rs",
  1067. "gdk-pixbuf",
  1068. "gdk-sys",
  1069. "gio",
  1070. "gio-sys",
  1071. "glib",
  1072. "glib-sys",
  1073. "gobject-sys",
  1074. "libc",
  1075. "pango",
  1076. ]
  1077. [[package]]
  1078. name = "gdk-pixbuf"
  1079. version = "0.9.0"
  1080. source = "registry+https://github.com/rust-lang/crates.io-index"
  1081. checksum = "8f6dae3cb99dd49b758b88f0132f8d401108e63ae8edd45f432d42cdff99998a"
  1082. dependencies = [
  1083. "gdk-pixbuf-sys",
  1084. "gio",
  1085. "gio-sys",
  1086. "glib",
  1087. "glib-sys",
  1088. "gobject-sys",
  1089. "libc",
  1090. ]
  1091. [[package]]
  1092. name = "gdk-pixbuf-sys"
  1093. version = "0.10.0"
  1094. source = "registry+https://github.com/rust-lang/crates.io-index"
  1095. checksum = "3bfe468a7f43e97b8d193a762b6c5cf67a7d36cacbc0b9291dbcae24bfea1e8f"
  1096. dependencies = [
  1097. "gio-sys",
  1098. "glib-sys",
  1099. "gobject-sys",
  1100. "libc",
  1101. "system-deps",
  1102. ]
  1103. [[package]]
  1104. name = "gdk-sys"
  1105. version = "0.10.0"
  1106. source = "registry+https://github.com/rust-lang/crates.io-index"
  1107. checksum = "0a9653cfc500fd268015b1ac055ddbc3df7a5c9ea3f4ccef147b3957bd140d69"
  1108. dependencies = [
  1109. "cairo-sys-rs",
  1110. "gdk-pixbuf-sys",
  1111. "gio-sys",
  1112. "glib-sys",
  1113. "gobject-sys",
  1114. "libc",
  1115. "pango-sys",
  1116. "pkg-config",
  1117. "system-deps",
  1118. ]
  1119. [[package]]
  1120. name = "generic-array"
  1121. version = "0.14.5"
  1122. source = "registry+https://github.com/rust-lang/crates.io-index"
  1123. checksum = "fd48d33ec7f05fbfa152300fdad764757cbded343c1aa1cff2fbaf4134851803"
  1124. dependencies = [
  1125. "typenum",
  1126. "version_check",
  1127. ]
  1128. [[package]]
  1129. name = "gethostname"
  1130. version = "0.2.1"
  1131. source = "registry+https://github.com/rust-lang/crates.io-index"
  1132. checksum = "e692e296bfac1d2533ef168d0b60ff5897b8b70a4009276834014dd8924cc028"
  1133. dependencies = [
  1134. "libc",
  1135. "winapi 0.3.9",
  1136. ]
  1137. [[package]]
  1138. name = "getrandom"
  1139. version = "0.2.3"
  1140. source = "registry+https://github.com/rust-lang/crates.io-index"
  1141. checksum = "7fcd999463524c52659517fe2cea98493cfe485d10565e7b0fb07dbba7ad2753"
  1142. dependencies = [
  1143. "cfg-if 1.0.0",
  1144. "libc",
  1145. "wasi",
  1146. ]
  1147. [[package]]
  1148. name = "gimli"
  1149. version = "0.24.0"
  1150. source = "registry+https://github.com/rust-lang/crates.io-index"
  1151. checksum = "0e4075386626662786ddb0ec9081e7c7eeb1ba31951f447ca780ef9f5d568189"
  1152. [[package]]
  1153. name = "gio"
  1154. version = "0.9.1"
  1155. source = "registry+https://github.com/rust-lang/crates.io-index"
  1156. checksum = "1fb60242bfff700772dae5d9e3a1f7aa2e4ebccf18b89662a16acb2822568561"
  1157. dependencies = [
  1158. "bitflags",
  1159. "futures",
  1160. "futures-channel",
  1161. "futures-core",
  1162. "futures-io",
  1163. "futures-util",
  1164. "gio-sys",
  1165. "glib",
  1166. "glib-sys",
  1167. "gobject-sys",
  1168. "libc",
  1169. "once_cell",
  1170. "thiserror",
  1171. ]
  1172. [[package]]
  1173. name = "gio-sys"
  1174. version = "0.10.1"
  1175. source = "registry+https://github.com/rust-lang/crates.io-index"
  1176. checksum = "5e24fb752f8f5d2cf6bbc2c606fd2bc989c81c5e2fe321ab974d54f8b6344eac"
  1177. dependencies = [
  1178. "glib-sys",
  1179. "gobject-sys",
  1180. "libc",
  1181. "system-deps",
  1182. "winapi 0.3.9",
  1183. ]
  1184. [[package]]
  1185. name = "glib"
  1186. version = "0.10.3"
  1187. source = "registry+https://github.com/rust-lang/crates.io-index"
  1188. checksum = "0c685013b7515e668f1b57a165b009d4d28cb139a8a989bbd699c10dad29d0c5"
  1189. dependencies = [
  1190. "bitflags",
  1191. "futures-channel",
  1192. "futures-core",
  1193. "futures-executor",
  1194. "futures-task",
  1195. "futures-util",
  1196. "glib-macros",
  1197. "glib-sys",
  1198. "gobject-sys",
  1199. "libc",
  1200. "once_cell",
  1201. ]
  1202. [[package]]
  1203. name = "glib-macros"
  1204. version = "0.10.1"
  1205. source = "registry+https://github.com/rust-lang/crates.io-index"
  1206. checksum = "41486a26d1366a8032b160b59065a59fb528530a46a49f627e7048fb8c064039"
  1207. dependencies = [
  1208. "anyhow",
  1209. "heck",
  1210. "itertools",
  1211. "proc-macro-crate 0.1.5",
  1212. "proc-macro-error",
  1213. "proc-macro2",
  1214. "quote",
  1215. "syn",
  1216. ]
  1217. [[package]]
  1218. name = "glib-sys"
  1219. version = "0.10.1"
  1220. source = "registry+https://github.com/rust-lang/crates.io-index"
  1221. checksum = "c7e9b997a66e9a23d073f2b1abb4dbfc3925e0b8952f67efd8d9b6e168e4cdc1"
  1222. dependencies = [
  1223. "libc",
  1224. "system-deps",
  1225. ]
  1226. [[package]]
  1227. name = "glob"
  1228. version = "0.3.0"
  1229. source = "registry+https://github.com/rust-lang/crates.io-index"
  1230. checksum = "9b919933a397b79c37e33b77bb2aa3dc8eb6e165ad809e58ff75bc7db2e34574"
  1231. [[package]]
  1232. name = "gobject-sys"
  1233. version = "0.10.0"
  1234. source = "registry+https://github.com/rust-lang/crates.io-index"
  1235. checksum = "952133b60c318a62bf82ee75b93acc7e84028a093e06b9e27981c2b6fe68218c"
  1236. dependencies = [
  1237. "glib-sys",
  1238. "libc",
  1239. "system-deps",
  1240. ]
  1241. [[package]]
  1242. name = "gstreamer"
  1243. version = "0.16.7"
  1244. source = "registry+https://github.com/rust-lang/crates.io-index"
  1245. checksum = "9ff5d0f7ff308ae37e6eb47b6ded17785bdea06e438a708cd09e0288c1862f33"
  1246. dependencies = [
  1247. "bitflags",
  1248. "cfg-if 1.0.0",
  1249. "futures-channel",
  1250. "futures-core",
  1251. "futures-util",
  1252. "glib",
  1253. "glib-sys",
  1254. "gobject-sys",
  1255. "gstreamer-sys",
  1256. "libc",
  1257. "muldiv",
  1258. "num-rational",
  1259. "once_cell",
  1260. "paste",
  1261. "pretty-hex",
  1262. "thiserror",
  1263. ]
  1264. [[package]]
  1265. name = "gstreamer-app"
  1266. version = "0.16.5"
  1267. source = "registry+https://github.com/rust-lang/crates.io-index"
  1268. checksum = "cc80888271338c3ede875d8cafc452eb207476ff5539dcbe0018a8f5b827af0e"
  1269. dependencies = [
  1270. "bitflags",
  1271. "futures-core",
  1272. "futures-sink",
  1273. "glib",
  1274. "glib-sys",
  1275. "gobject-sys",
  1276. "gstreamer",
  1277. "gstreamer-app-sys",
  1278. "gstreamer-base",
  1279. "gstreamer-sys",
  1280. "libc",
  1281. "once_cell",
  1282. ]
  1283. [[package]]
  1284. name = "gstreamer-app-sys"
  1285. version = "0.9.1"
  1286. source = "registry+https://github.com/rust-lang/crates.io-index"
  1287. checksum = "813f64275c9e7b33b828b9efcf9dfa64b95996766d4de996e84363ac65b87e3d"
  1288. dependencies = [
  1289. "glib-sys",
  1290. "gstreamer-base-sys",
  1291. "gstreamer-sys",
  1292. "libc",
  1293. "system-deps",
  1294. ]
  1295. [[package]]
  1296. name = "gstreamer-base"
  1297. version = "0.16.5"
  1298. source = "registry+https://github.com/rust-lang/crates.io-index"
  1299. checksum = "bafd01c56f59cb10f4b5a10f97bb4bdf8c2b2784ae5b04da7e2d400cf6e6afcf"
  1300. dependencies = [
  1301. "bitflags",
  1302. "glib",
  1303. "glib-sys",
  1304. "gobject-sys",
  1305. "gstreamer",
  1306. "gstreamer-base-sys",
  1307. "gstreamer-sys",
  1308. "libc",
  1309. ]
  1310. [[package]]
  1311. name = "gstreamer-base-sys"
  1312. version = "0.9.1"
  1313. source = "registry+https://github.com/rust-lang/crates.io-index"
  1314. checksum = "a4b7b6dc2d6e160a1ae28612f602bd500b3fa474ce90bf6bb2f08072682beef5"
  1315. dependencies = [
  1316. "glib-sys",
  1317. "gobject-sys",
  1318. "gstreamer-sys",
  1319. "libc",
  1320. "system-deps",
  1321. ]
  1322. [[package]]
  1323. name = "gstreamer-sys"
  1324. version = "0.9.1"
  1325. source = "registry+https://github.com/rust-lang/crates.io-index"
  1326. checksum = "fc1f154082d01af5718c5f8a8eb4f565a4ea5586ad8833a8fc2c2aa6844b601d"
  1327. dependencies = [
  1328. "glib-sys",
  1329. "gobject-sys",
  1330. "libc",
  1331. "system-deps",
  1332. ]
  1333. [[package]]
  1334. name = "gstreamer-video"
  1335. version = "0.16.7"
  1336. source = "registry+https://github.com/rust-lang/crates.io-index"
  1337. checksum = "f7bbb1485d87469849ec45c08e03c2f280d3ea20ff3c439d03185be54e3ce98e"
  1338. dependencies = [
  1339. "bitflags",
  1340. "futures-channel",
  1341. "futures-util",
  1342. "glib",
  1343. "glib-sys",
  1344. "gobject-sys",
  1345. "gstreamer",
  1346. "gstreamer-base",
  1347. "gstreamer-base-sys",
  1348. "gstreamer-sys",
  1349. "gstreamer-video-sys",
  1350. "libc",
  1351. "once_cell",
  1352. ]
  1353. [[package]]
  1354. name = "gstreamer-video-sys"
  1355. version = "0.9.1"
  1356. source = "registry+https://github.com/rust-lang/crates.io-index"
  1357. checksum = "92347e46438007d6a2386302125f62cb9df6769cdacb931af5c0f12c1ee21de4"
  1358. dependencies = [
  1359. "glib-sys",
  1360. "gobject-sys",
  1361. "gstreamer-base-sys",
  1362. "gstreamer-sys",
  1363. "libc",
  1364. "system-deps",
  1365. ]
  1366. [[package]]
  1367. name = "gtk"
  1368. version = "0.9.2"
  1369. source = "registry+https://github.com/rust-lang/crates.io-index"
  1370. checksum = "2f022f2054072b3af07666341984562c8e626a79daa8be27b955d12d06a5ad6a"
  1371. dependencies = [
  1372. "atk",
  1373. "bitflags",
  1374. "cairo-rs",
  1375. "cairo-sys-rs",
  1376. "cc",
  1377. "gdk",
  1378. "gdk-pixbuf",
  1379. "gdk-pixbuf-sys",
  1380. "gdk-sys",
  1381. "gio",
  1382. "gio-sys",
  1383. "glib",
  1384. "glib-sys",
  1385. "gobject-sys",
  1386. "gtk-sys",
  1387. "libc",
  1388. "once_cell",
  1389. "pango",
  1390. "pango-sys",
  1391. "pkg-config",
  1392. ]
  1393. [[package]]
  1394. name = "gtk-sys"
  1395. version = "0.10.0"
  1396. source = "registry+https://github.com/rust-lang/crates.io-index"
  1397. checksum = "89acda6f084863307d948ba64a4b1ef674e8527dddab147ee4cdcc194c880457"
  1398. dependencies = [
  1399. "atk-sys",
  1400. "cairo-sys-rs",
  1401. "gdk-pixbuf-sys",
  1402. "gdk-sys",
  1403. "gio-sys",
  1404. "glib-sys",
  1405. "gobject-sys",
  1406. "libc",
  1407. "pango-sys",
  1408. "system-deps",
  1409. ]
  1410. [[package]]
  1411. name = "hbb_common"
  1412. version = "0.1.0"
  1413. dependencies = [
  1414. "anyhow",
  1415. "bytes",
  1416. "confy",
  1417. "directories-next",
  1418. "dirs-next",
  1419. "env_logger 0.9.0",
  1420. "filetime",
  1421. "futures",
  1422. "futures-util",
  1423. "lazy_static",
  1424. "log",
  1425. "mac_address",
  1426. "protobuf",
  1427. "protobuf-codegen-pure",
  1428. "quinn",
  1429. "rand 0.8.4",
  1430. "regex",
  1431. "serde 1.0.133",
  1432. "serde_derive",
  1433. "serde_json 1.0.74",
  1434. "socket2 0.3.19",
  1435. "sodiumoxide",
  1436. "tokio",
  1437. "tokio-socks",
  1438. "tokio-util",
  1439. "toml",
  1440. "winapi 0.3.9",
  1441. "zstd",
  1442. ]
  1443. [[package]]
  1444. name = "heck"
  1445. version = "0.3.3"
  1446. source = "registry+https://github.com/rust-lang/crates.io-index"
  1447. checksum = "6d621efb26863f0e9924c6ac577e8275e5e6b77455db64ffa6c65c904e9e132c"
  1448. dependencies = [
  1449. "unicode-segmentation",
  1450. ]
  1451. [[package]]
  1452. name = "hermit-abi"
  1453. version = "0.1.19"
  1454. source = "registry+https://github.com/rust-lang/crates.io-index"
  1455. checksum = "62b467343b94ba476dcb2500d242dadbb39557df889310ac77c5d99100aaac33"
  1456. dependencies = [
  1457. "libc",
  1458. ]
  1459. [[package]]
  1460. name = "hound"
  1461. version = "3.4.0"
  1462. source = "registry+https://github.com/rust-lang/crates.io-index"
  1463. checksum = "8a164bb2ceaeff4f42542bdb847c41517c78a60f5649671b2a07312b6e117549"
  1464. [[package]]
  1465. name = "humantime"
  1466. version = "2.1.0"
  1467. source = "registry+https://github.com/rust-lang/crates.io-index"
  1468. checksum = "9a3a5bfb195931eeb336b2a7b4d761daec841b97f947d34394601737a7bba5e4"
  1469. [[package]]
  1470. name = "ident_case"
  1471. version = "1.0.1"
  1472. source = "registry+https://github.com/rust-lang/crates.io-index"
  1473. checksum = "b9e0384b61958566e926dc50660321d12159025e767c18e043daf26b70104c39"
  1474. [[package]]
  1475. name = "image"
  1476. version = "0.23.14"
  1477. source = "registry+https://github.com/rust-lang/crates.io-index"
  1478. checksum = "24ffcb7e7244a9bf19d35bf2883b9c080c4ced3c07a9895572178cdb8f13f6a1"
  1479. dependencies = [
  1480. "bytemuck",
  1481. "byteorder",
  1482. "color_quant",
  1483. "num-iter",
  1484. "num-rational",
  1485. "num-traits 0.2.14",
  1486. "png",
  1487. "tiff",
  1488. ]
  1489. [[package]]
  1490. name = "instant"
  1491. version = "0.1.12"
  1492. source = "registry+https://github.com/rust-lang/crates.io-index"
  1493. checksum = "7a5bbe824c507c5da5956355e86a746d82e0e1464f65d862cc5e71da70e94b2c"
  1494. dependencies = [
  1495. "cfg-if 1.0.0",
  1496. ]
  1497. [[package]]
  1498. name = "iovec"
  1499. version = "0.1.4"
  1500. source = "registry+https://github.com/rust-lang/crates.io-index"
  1501. checksum = "b2b3ea6ff95e175473f8ffe6a7eb7c00d054240321b84c57051175fe3c1e075e"
  1502. dependencies = [
  1503. "libc",
  1504. ]
  1505. [[package]]
  1506. name = "itertools"
  1507. version = "0.9.0"
  1508. source = "registry+https://github.com/rust-lang/crates.io-index"
  1509. checksum = "284f18f85651fe11e8a991b2adb42cb078325c996ed026d994719efcfca1d54b"
  1510. dependencies = [
  1511. "either",
  1512. ]
  1513. [[package]]
  1514. name = "itoa"
  1515. version = "0.3.4"
  1516. source = "registry+https://github.com/rust-lang/crates.io-index"
  1517. checksum = "8324a32baf01e2ae060e9de58ed0bc2320c9a2833491ee36cd3b4c414de4db8c"
  1518. [[package]]
  1519. name = "itoa"
  1520. version = "0.4.8"
  1521. source = "registry+https://github.com/rust-lang/crates.io-index"
  1522. checksum = "b71991ff56294aa922b450139ee08b3bfc70982c6b2c7562771375cf73542dd4"
  1523. [[package]]
  1524. name = "itoa"
  1525. version = "1.0.1"
  1526. source = "registry+https://github.com/rust-lang/crates.io-index"
  1527. checksum = "1aab8fc367588b89dcee83ab0fd66b72b50b72fa1904d7095045ace2b0c81c35"
  1528. [[package]]
  1529. name = "jni"
  1530. version = "0.19.0"
  1531. source = "registry+https://github.com/rust-lang/crates.io-index"
  1532. checksum = "c6df18c2e3db7e453d3c6ac5b3e9d5182664d28788126d39b91f2d1e22b017ec"
  1533. dependencies = [
  1534. "cesu8",
  1535. "combine",
  1536. "jni-sys",
  1537. "log",
  1538. "thiserror",
  1539. "walkdir",
  1540. ]
  1541. [[package]]
  1542. name = "jni-sys"
  1543. version = "0.3.0"
  1544. source = "registry+https://github.com/rust-lang/crates.io-index"
  1545. checksum = "8eaf4bc02d17cbdd7ff4c7438cafcdf7fb9a4613313ad11b4f8fefe7d3fa0130"
  1546. [[package]]
  1547. name = "jobserver"
  1548. version = "0.1.24"
  1549. source = "registry+https://github.com/rust-lang/crates.io-index"
  1550. checksum = "af25a77299a7f711a01975c35a6a424eb6862092cc2d6c72c4ed6cbc56dfc1fa"
  1551. dependencies = [
  1552. "libc",
  1553. ]
  1554. [[package]]
  1555. name = "jpeg-decoder"
  1556. version = "0.1.22"
  1557. source = "registry+https://github.com/rust-lang/crates.io-index"
  1558. checksum = "229d53d58899083193af11e15917b5640cd40b29ff475a1fe4ef725deb02d0f2"
  1559. [[package]]
  1560. name = "js-sys"
  1561. version = "0.3.55"
  1562. source = "registry+https://github.com/rust-lang/crates.io-index"
  1563. checksum = "7cc9ffccd38c451a86bf13657df244e9c3f37493cce8e5e21e940963777acc84"
  1564. dependencies = [
  1565. "wasm-bindgen",
  1566. ]
  1567. [[package]]
  1568. name = "kernel32-sys"
  1569. version = "0.2.2"
  1570. source = "registry+https://github.com/rust-lang/crates.io-index"
  1571. checksum = "7507624b29483431c0ba2d82aece8ca6cdba9382bff4ddd0f7490560c056098d"
  1572. dependencies = [
  1573. "winapi 0.2.8",
  1574. "winapi-build",
  1575. ]
  1576. [[package]]
  1577. name = "lazy_static"
  1578. version = "1.4.0"
  1579. source = "registry+https://github.com/rust-lang/crates.io-index"
  1580. checksum = "e2abad23fbc42b3700f2f279844dc832adb2b2eb069b2df918f455c4e18cc646"
  1581. [[package]]
  1582. name = "lazycell"
  1583. version = "1.3.0"
  1584. source = "registry+https://github.com/rust-lang/crates.io-index"
  1585. checksum = "830d08ce1d1d941e6b30645f1a0eb5643013d835ce3779a5fc208261dbe10f55"
  1586. [[package]]
  1587. name = "libappindicator"
  1588. version = "0.6.1"
  1589. source = "git+https://github.com/liyue201/libappindicator-rs#3763cfd629dd90050af1feafa643cbfca0bf487e"
  1590. dependencies = [
  1591. "glib",
  1592. "gtk",
  1593. "gtk-sys",
  1594. "libappindicator-sys",
  1595. "log",
  1596. ]
  1597. [[package]]
  1598. name = "libappindicator-sys"
  1599. version = "0.6.1"
  1600. source = "git+https://github.com/liyue201/libappindicator-rs#3763cfd629dd90050af1feafa643cbfca0bf487e"
  1601. dependencies = [
  1602. "gtk-sys",
  1603. "pkg-config",
  1604. ]
  1605. [[package]]
  1606. name = "libc"
  1607. version = "0.2.112"
  1608. source = "registry+https://github.com/rust-lang/crates.io-index"
  1609. checksum = "1b03d17f364a3a042d5e5d46b053bbbf82c92c9430c592dd4c064dc6ee997125"
  1610. [[package]]
  1611. name = "libdbus-sys"
  1612. version = "0.2.2"
  1613. source = "registry+https://github.com/rust-lang/crates.io-index"
  1614. checksum = "c185b5b7ad900923ef3a8ff594083d4d9b5aea80bb4f32b8342363138c0d456b"
  1615. dependencies = [
  1616. "pkg-config",
  1617. ]
  1618. [[package]]
  1619. name = "libloading"
  1620. version = "0.7.2"
  1621. source = "registry+https://github.com/rust-lang/crates.io-index"
  1622. checksum = "afe203d669ec979b7128619bae5a63b7b42e9203c1b29146079ee05e2f604b52"
  1623. dependencies = [
  1624. "cfg-if 1.0.0",
  1625. "winapi 0.3.9",
  1626. ]
  1627. [[package]]
  1628. name = "libpulse-binding"
  1629. version = "2.25.0"
  1630. source = "registry+https://github.com/rust-lang/crates.io-index"
  1631. checksum = "86835d7763ded6bc16b6c0061ec60214da7550dfcd4ef93745f6f0096129676a"
  1632. dependencies = [
  1633. "bitflags",
  1634. "libc",
  1635. "libpulse-sys",
  1636. "num-derive",
  1637. "num-traits 0.2.14",
  1638. "winapi 0.3.9",
  1639. ]
  1640. [[package]]
  1641. name = "libpulse-simple-binding"
  1642. version = "2.24.1"
  1643. source = "registry+https://github.com/rust-lang/crates.io-index"
  1644. checksum = "d6a22538257c4d522bea6089d6478507f5d2589ea32150e20740aaaaaba44590"
  1645. dependencies = [
  1646. "libpulse-binding",
  1647. "libpulse-simple-sys",
  1648. "libpulse-sys",
  1649. ]
  1650. [[package]]
  1651. name = "libpulse-simple-sys"
  1652. version = "1.19.2"
  1653. source = "registry+https://github.com/rust-lang/crates.io-index"
  1654. checksum = "7c73f96f9ca34809692c4760cfe421225860aa000de50edab68a16221fd27cc1"
  1655. dependencies = [
  1656. "libpulse-sys",
  1657. "pkg-config",
  1658. ]
  1659. [[package]]
  1660. name = "libpulse-sys"
  1661. version = "1.19.3"
  1662. source = "registry+https://github.com/rust-lang/crates.io-index"
  1663. checksum = "991e6bd0efe2a36e6534e136e7996925e4c1a8e35b7807fe533f2beffff27c30"
  1664. dependencies = [
  1665. "libc",
  1666. "num-derive",
  1667. "num-traits 0.2.14",
  1668. "pkg-config",
  1669. "winapi 0.3.9",
  1670. ]
  1671. [[package]]
  1672. name = "libsamplerate-sys"
  1673. version = "0.1.10"
  1674. source = "registry+https://github.com/rust-lang/crates.io-index"
  1675. checksum = "403163258e75b5780cd6245c04cddd7f3166c5f8dd2bf5462e596c9ca4eb9653"
  1676. dependencies = [
  1677. "cmake",
  1678. ]
  1679. [[package]]
  1680. name = "libsodium-sys"
  1681. version = "0.2.7"
  1682. source = "registry+https://github.com/rust-lang/crates.io-index"
  1683. checksum = "6b779387cd56adfbc02ea4a668e704f729be8d6a6abd2c27ca5ee537849a92fd"
  1684. dependencies = [
  1685. "cc",
  1686. "libc",
  1687. "pkg-config",
  1688. "walkdir",
  1689. ]
  1690. [[package]]
  1691. name = "lock_api"
  1692. version = "0.4.5"
  1693. source = "registry+https://github.com/rust-lang/crates.io-index"
  1694. checksum = "712a4d093c9976e24e7dbca41db895dabcbac38eb5f4045393d17a95bdfb1109"
  1695. dependencies = [
  1696. "scopeguard",
  1697. ]
  1698. [[package]]
  1699. name = "log"
  1700. version = "0.4.14"
  1701. source = "registry+https://github.com/rust-lang/crates.io-index"
  1702. checksum = "51b9bbe6c47d51fc3e1a9b945965946b4c44142ab8792c50835a980d362c2710"
  1703. dependencies = [
  1704. "cfg-if 1.0.0",
  1705. ]
  1706. [[package]]
  1707. name = "mac_address"
  1708. version = "1.1.2"
  1709. source = "registry+https://github.com/rust-lang/crates.io-index"
  1710. checksum = "89544d9544366f6cda81244514a80809b137b5a179947b73bfa9f2797480de69"
  1711. dependencies = [
  1712. "nix 0.22.0",
  1713. "winapi 0.3.9",
  1714. ]
  1715. [[package]]
  1716. name = "mach"
  1717. version = "0.3.2"
  1718. source = "registry+https://github.com/rust-lang/crates.io-index"
  1719. checksum = "b823e83b2affd8f40a9ee8c29dbc56404c1e34cd2710921f2801e2cf29527afa"
  1720. dependencies = [
  1721. "libc",
  1722. ]
  1723. [[package]]
  1724. name = "machine-uid"
  1725. version = "0.2.0"
  1726. source = "registry+https://github.com/rust-lang/crates.io-index"
  1727. checksum = "1f1595709b0a7386bcd56ba34d250d626e5503917d05d32cdccddcd68603e212"
  1728. dependencies = [
  1729. "winreg 0.6.2",
  1730. ]
  1731. [[package]]
  1732. name = "magnum-opus"
  1733. version = "0.4.0"
  1734. source = "git+https://github.com/open-trade/magnum-opus#3c3d0b86ae95c84930bebffe4bcb03b3bd83342b"
  1735. dependencies = [
  1736. "bindgen 0.59.2",
  1737. "target_build_utils",
  1738. ]
  1739. [[package]]
  1740. name = "malloc_buf"
  1741. version = "0.0.6"
  1742. source = "registry+https://github.com/rust-lang/crates.io-index"
  1743. checksum = "62bb907fe88d54d8d9ce32a3cceab4218ed2f6b7d35617cafe9adf84e43919cb"
  1744. dependencies = [
  1745. "libc",
  1746. ]
  1747. [[package]]
  1748. name = "memchr"
  1749. version = "2.3.4"
  1750. source = "registry+https://github.com/rust-lang/crates.io-index"
  1751. checksum = "0ee1c47aaa256ecabcaea351eae4a9b01ef39ed810004e298d2511ed284b1525"
  1752. [[package]]
  1753. name = "memoffset"
  1754. version = "0.6.5"
  1755. source = "registry+https://github.com/rust-lang/crates.io-index"
  1756. checksum = "5aa361d4faea93603064a027415f07bd8e1d5c88c9fbf68bf56a285428fd79ce"
  1757. dependencies = [
  1758. "autocfg 1.0.1",
  1759. ]
  1760. [[package]]
  1761. name = "minimal-lexical"
  1762. version = "0.2.1"
  1763. source = "registry+https://github.com/rust-lang/crates.io-index"
  1764. checksum = "68354c5c6bd36d73ff3feceb05efa59b6acb7626617f4962be322a825e61f79a"
  1765. [[package]]
  1766. name = "miniz_oxide"
  1767. version = "0.3.7"
  1768. source = "registry+https://github.com/rust-lang/crates.io-index"
  1769. checksum = "791daaae1ed6889560f8c4359194f56648355540573244a5448a83ba1ecc7435"
  1770. dependencies = [
  1771. "adler32",
  1772. ]
  1773. [[package]]
  1774. name = "miniz_oxide"
  1775. version = "0.4.4"
  1776. source = "registry+https://github.com/rust-lang/crates.io-index"
  1777. checksum = "a92518e98c078586bc6c934028adcca4c92a53d6a958196de835170a01d84e4b"
  1778. dependencies = [
  1779. "adler",
  1780. "autocfg 1.0.1",
  1781. ]
  1782. [[package]]
  1783. name = "mio"
  1784. version = "0.6.23"
  1785. source = "registry+https://github.com/rust-lang/crates.io-index"
  1786. checksum = "4afd66f5b91bf2a3bc13fad0e21caedac168ca4c707504e75585648ae80e4cc4"
  1787. dependencies = [
  1788. "cfg-if 0.1.10",
  1789. "fuchsia-zircon",
  1790. "fuchsia-zircon-sys",
  1791. "iovec",
  1792. "kernel32-sys",
  1793. "libc",
  1794. "log",
  1795. "miow 0.2.2",
  1796. "net2",
  1797. "slab",
  1798. "winapi 0.2.8",
  1799. ]
  1800. [[package]]
  1801. name = "mio"
  1802. version = "0.7.14"
  1803. source = "registry+https://github.com/rust-lang/crates.io-index"
  1804. checksum = "8067b404fe97c70829f082dec8bcf4f71225d7eaea1d8645349cb76fa06205cc"
  1805. dependencies = [
  1806. "libc",
  1807. "log",
  1808. "miow 0.3.7",
  1809. "ntapi",
  1810. "winapi 0.3.9",
  1811. ]
  1812. [[package]]
  1813. name = "mio-named-pipes"
  1814. version = "0.1.7"
  1815. source = "registry+https://github.com/rust-lang/crates.io-index"
  1816. checksum = "0840c1c50fd55e521b247f949c241c9997709f23bd7f023b9762cd561e935656"
  1817. dependencies = [
  1818. "log",
  1819. "mio 0.6.23",
  1820. "miow 0.3.7",
  1821. "winapi 0.3.9",
  1822. ]
  1823. [[package]]
  1824. name = "miow"
  1825. version = "0.2.2"
  1826. source = "registry+https://github.com/rust-lang/crates.io-index"
  1827. checksum = "ebd808424166322d4a38da87083bfddd3ac4c131334ed55856112eb06d46944d"
  1828. dependencies = [
  1829. "kernel32-sys",
  1830. "net2",
  1831. "winapi 0.2.8",
  1832. "ws2_32-sys",
  1833. ]
  1834. [[package]]
  1835. name = "miow"
  1836. version = "0.3.7"
  1837. source = "registry+https://github.com/rust-lang/crates.io-index"
  1838. checksum = "b9f1c5b025cda876f66ef43a113f91ebc9f4ccef34843000e0adf6ebbab84e21"
  1839. dependencies = [
  1840. "winapi 0.3.9",
  1841. ]
  1842. [[package]]
  1843. name = "miow"
  1844. version = "0.4.0"
  1845. source = "registry+https://github.com/rust-lang/crates.io-index"
  1846. checksum = "a7377f7792b3afb6a3cba68daa54ca23c032137010460d667fda53a8d66be00e"
  1847. dependencies = [
  1848. "windows-sys",
  1849. ]
  1850. [[package]]
  1851. name = "muldiv"
  1852. version = "0.2.1"
  1853. source = "registry+https://github.com/rust-lang/crates.io-index"
  1854. checksum = "0419348c027fa7be448d2ae7ea0e4e04c2334c31dc4e74ab29f00a2a7ca69204"
  1855. [[package]]
  1856. name = "ndk"
  1857. version = "0.4.0"
  1858. source = "registry+https://github.com/rust-lang/crates.io-index"
  1859. checksum = "d64d6af06fde0e527b1ba5c7b79a6cc89cfc46325b0b2887dffe8f70197e0c3c"
  1860. dependencies = [
  1861. "bitflags",
  1862. "jni-sys",
  1863. "ndk-sys",
  1864. "num_enum",
  1865. "thiserror",
  1866. ]
  1867. [[package]]
  1868. name = "ndk-glue"
  1869. version = "0.4.0"
  1870. source = "registry+https://github.com/rust-lang/crates.io-index"
  1871. checksum = "d3e9e94628f24e7a3cb5b96a2dc5683acd9230bf11991c2a1677b87695138420"
  1872. dependencies = [
  1873. "lazy_static",
  1874. "libc",
  1875. "log",
  1876. "ndk",
  1877. "ndk-macro",
  1878. "ndk-sys",
  1879. ]
  1880. [[package]]
  1881. name = "ndk-macro"
  1882. version = "0.2.0"
  1883. source = "registry+https://github.com/rust-lang/crates.io-index"
  1884. checksum = "05d1c6307dc424d0f65b9b06e94f88248e6305726b14729fd67a5e47b2dc481d"
  1885. dependencies = [
  1886. "darling",
  1887. "proc-macro-crate 0.1.5",
  1888. "proc-macro2",
  1889. "quote",
  1890. "syn",
  1891. ]
  1892. [[package]]
  1893. name = "ndk-sys"
  1894. version = "0.2.2"
  1895. source = "registry+https://github.com/rust-lang/crates.io-index"
  1896. checksum = "e1bcdd74c20ad5d95aacd60ef9ba40fdf77f767051040541df557b7a9b2a2121"
  1897. [[package]]
  1898. name = "net2"
  1899. version = "0.2.37"
  1900. source = "registry+https://github.com/rust-lang/crates.io-index"
  1901. checksum = "391630d12b68002ae1e25e8f974306474966550ad82dac6886fb8910c19568ae"
  1902. dependencies = [
  1903. "cfg-if 0.1.10",
  1904. "libc",
  1905. "winapi 0.3.9",
  1906. ]
  1907. [[package]]
  1908. name = "nix"
  1909. version = "0.20.0"
  1910. source = "registry+https://github.com/rust-lang/crates.io-index"
  1911. checksum = "fa9b4819da1bc61c0ea48b63b7bc8604064dd43013e7cc325df098d49cd7c18a"
  1912. dependencies = [
  1913. "bitflags",
  1914. "cc",
  1915. "cfg-if 1.0.0",
  1916. "libc",
  1917. ]
  1918. [[package]]
  1919. name = "nix"
  1920. version = "0.22.0"
  1921. source = "registry+https://github.com/rust-lang/crates.io-index"
  1922. checksum = "cf1e25ee6b412c2a1e3fcb6a4499a5c1bfe7f43e014bdce9a6b6666e5aa2d187"
  1923. dependencies = [
  1924. "bitflags",
  1925. "cc",
  1926. "cfg-if 1.0.0",
  1927. "libc",
  1928. "memoffset",
  1929. ]
  1930. [[package]]
  1931. name = "nix"
  1932. version = "0.23.1"
  1933. source = "registry+https://github.com/rust-lang/crates.io-index"
  1934. checksum = "9f866317acbd3a240710c63f065ffb1e4fd466259045ccb504130b7f668f35c6"
  1935. dependencies = [
  1936. "bitflags",
  1937. "cc",
  1938. "cfg-if 1.0.0",
  1939. "libc",
  1940. "memoffset",
  1941. ]
  1942. [[package]]
  1943. name = "nom"
  1944. version = "5.1.2"
  1945. source = "registry+https://github.com/rust-lang/crates.io-index"
  1946. checksum = "ffb4262d26ed83a1c0a33a38fe2bb15797329c85770da05e6b828ddb782627af"
  1947. dependencies = [
  1948. "memchr",
  1949. "version_check",
  1950. ]
  1951. [[package]]
  1952. name = "nom"
  1953. version = "7.1.0"
  1954. source = "registry+https://github.com/rust-lang/crates.io-index"
  1955. checksum = "1b1d11e1ef389c76fe5b81bcaf2ea32cf88b62bc494e19f493d0b30e7a930109"
  1956. dependencies = [
  1957. "memchr",
  1958. "minimal-lexical",
  1959. "version_check",
  1960. ]
  1961. [[package]]
  1962. name = "ntapi"
  1963. version = "0.3.6"
  1964. source = "registry+https://github.com/rust-lang/crates.io-index"
  1965. checksum = "3f6bb902e437b6d86e03cce10a7e2af662292c5dfef23b65899ea3ac9354ad44"
  1966. dependencies = [
  1967. "winapi 0.3.9",
  1968. ]
  1969. [[package]]
  1970. name = "num-complex"
  1971. version = "0.4.0"
  1972. source = "registry+https://github.com/rust-lang/crates.io-index"
  1973. checksum = "26873667bbbb7c5182d4a37c1add32cdf09f841af72da53318fdb81543c15085"
  1974. dependencies = [
  1975. "num-traits 0.2.14",
  1976. ]
  1977. [[package]]
  1978. name = "num-derive"
  1979. version = "0.3.3"
  1980. source = "registry+https://github.com/rust-lang/crates.io-index"
  1981. checksum = "876a53fff98e03a936a674b29568b0e605f06b29372c2489ff4de23f1949743d"
  1982. dependencies = [
  1983. "proc-macro2",
  1984. "quote",
  1985. "syn",
  1986. ]
  1987. [[package]]
  1988. name = "num-integer"
  1989. version = "0.1.44"
  1990. source = "registry+https://github.com/rust-lang/crates.io-index"
  1991. checksum = "d2cc698a63b549a70bc047073d2949cce27cd1c7b0a4a862d08a8031bc2801db"
  1992. dependencies = [
  1993. "autocfg 1.0.1",
  1994. "num-traits 0.2.14",
  1995. ]
  1996. [[package]]
  1997. name = "num-iter"
  1998. version = "0.1.42"
  1999. source = "registry+https://github.com/rust-lang/crates.io-index"
  2000. checksum = "b2021c8337a54d21aca0d59a92577a029af9431cb59b909b03252b9c164fad59"
  2001. dependencies = [
  2002. "autocfg 1.0.1",
  2003. "num-integer",
  2004. "num-traits 0.2.14",
  2005. ]
  2006. [[package]]
  2007. name = "num-rational"
  2008. version = "0.3.2"
  2009. source = "registry+https://github.com/rust-lang/crates.io-index"
  2010. checksum = "12ac428b1cb17fce6f731001d307d351ec70a6d202fc2e60f7d4c5e42d8f4f07"
  2011. dependencies = [
  2012. "autocfg 1.0.1",
  2013. "num-integer",
  2014. "num-traits 0.2.14",
  2015. ]
  2016. [[package]]
  2017. name = "num-traits"
  2018. version = "0.1.43"
  2019. source = "registry+https://github.com/rust-lang/crates.io-index"
  2020. checksum = "92e5113e9fd4cc14ded8e499429f396a20f98c772a47cc8622a736e1ec843c31"
  2021. dependencies = [
  2022. "num-traits 0.2.14",
  2023. ]
  2024. [[package]]
  2025. name = "num-traits"
  2026. version = "0.2.14"
  2027. source = "registry+https://github.com/rust-lang/crates.io-index"
  2028. checksum = "9a64b1ec5cda2586e284722486d802acf1f7dbdc623e2bfc57e65ca1cd099290"
  2029. dependencies = [
  2030. "autocfg 1.0.1",
  2031. ]
  2032. [[package]]
  2033. name = "num_cpus"
  2034. version = "1.13.1"
  2035. source = "registry+https://github.com/rust-lang/crates.io-index"
  2036. checksum = "19e64526ebdee182341572e50e9ad03965aa510cd94427a4549448f285e957a1"
  2037. dependencies = [
  2038. "hermit-abi",
  2039. "libc",
  2040. ]
  2041. [[package]]
  2042. name = "num_enum"
  2043. version = "0.5.6"
  2044. source = "registry+https://github.com/rust-lang/crates.io-index"
  2045. checksum = "720d3ea1055e4e4574c0c0b0f8c3fd4f24c4cdaf465948206dea090b57b526ad"
  2046. dependencies = [
  2047. "num_enum_derive",
  2048. ]
  2049. [[package]]
  2050. name = "num_enum_derive"
  2051. version = "0.5.6"
  2052. source = "registry+https://github.com/rust-lang/crates.io-index"
  2053. checksum = "0d992b768490d7fe0d8586d9b5745f6c49f557da6d81dc982b1d167ad4edbb21"
  2054. dependencies = [
  2055. "proc-macro-crate 1.1.0",
  2056. "proc-macro2",
  2057. "quote",
  2058. "syn",
  2059. ]
  2060. [[package]]
  2061. name = "objc"
  2062. version = "0.2.7"
  2063. source = "registry+https://github.com/rust-lang/crates.io-index"
  2064. checksum = "915b1b472bc21c53464d6c8461c9d3af805ba1ef837e1cac254428f4a77177b1"
  2065. dependencies = [
  2066. "malloc_buf",
  2067. ]
  2068. [[package]]
  2069. name = "objc-foundation"
  2070. version = "0.1.1"
  2071. source = "registry+https://github.com/rust-lang/crates.io-index"
  2072. checksum = "1add1b659e36c9607c7aab864a76c7a4c2760cd0cd2e120f3fb8b952c7e22bf9"
  2073. dependencies = [
  2074. "block",
  2075. "objc",
  2076. "objc_id",
  2077. ]
  2078. [[package]]
  2079. name = "objc_id"
  2080. version = "0.1.1"
  2081. source = "registry+https://github.com/rust-lang/crates.io-index"
  2082. checksum = "c92d4ddb4bd7b50d730c215ff871754d0da6b2178849f8a2a2ab69712d0c073b"
  2083. dependencies = [
  2084. "objc",
  2085. ]
  2086. [[package]]
  2087. name = "object"
  2088. version = "0.24.0"
  2089. source = "registry+https://github.com/rust-lang/crates.io-index"
  2090. checksum = "1a5b3dd1c072ee7963717671d1ca129f1048fda25edea6b752bfc71ac8854170"
  2091. [[package]]
  2092. name = "oboe"
  2093. version = "0.4.4"
  2094. source = "registry+https://github.com/rust-lang/crates.io-index"
  2095. checksum = "e15e22bc67e047fe342a32ecba55f555e3be6166b04dd157cd0f803dfa9f48e1"
  2096. dependencies = [
  2097. "jni",
  2098. "ndk",
  2099. "ndk-glue",
  2100. "num-derive",
  2101. "num-traits 0.2.14",
  2102. "oboe-sys",
  2103. ]
  2104. [[package]]
  2105. name = "oboe-sys"
  2106. version = "0.4.4"
  2107. source = "registry+https://github.com/rust-lang/crates.io-index"
  2108. checksum = "338142ae5ab0aaedc8275aa8f67f460e43ae0fca76a695a742d56da0a269eadc"
  2109. dependencies = [
  2110. "cc",
  2111. ]
  2112. [[package]]
  2113. name = "once_cell"
  2114. version = "1.9.0"
  2115. source = "registry+https://github.com/rust-lang/crates.io-index"
  2116. checksum = "da32515d9f6e6e489d7bc9d84c71b060db7247dc035bbe44eac88cf87486d8d5"
  2117. [[package]]
  2118. name = "openssl-probe"
  2119. version = "0.1.4"
  2120. source = "registry+https://github.com/rust-lang/crates.io-index"
  2121. checksum = "28988d872ab76095a6e6ac88d99b54fd267702734fd7ffe610ca27f533ddb95a"
  2122. [[package]]
  2123. name = "pango"
  2124. version = "0.9.1"
  2125. source = "registry+https://github.com/rust-lang/crates.io-index"
  2126. checksum = "9937068580bebd8ced19975938573803273ccbcbd598c58d4906efd4ac87c438"
  2127. dependencies = [
  2128. "bitflags",
  2129. "glib",
  2130. "glib-sys",
  2131. "gobject-sys",
  2132. "libc",
  2133. "once_cell",
  2134. "pango-sys",
  2135. ]
  2136. [[package]]
  2137. name = "pango-sys"
  2138. version = "0.10.0"
  2139. source = "registry+https://github.com/rust-lang/crates.io-index"
  2140. checksum = "24d2650c8b62d116c020abd0cea26a4ed96526afda89b1c4ea567131fdefc890"
  2141. dependencies = [
  2142. "glib-sys",
  2143. "gobject-sys",
  2144. "libc",
  2145. "system-deps",
  2146. ]
  2147. [[package]]
  2148. name = "parity-tokio-ipc"
  2149. version = "0.7.3"
  2150. source = "git+https://github.com/open-trade/parity-tokio-ipc#52515618bd30ea8101bf46f6c7835e88cec9187f"
  2151. dependencies = [
  2152. "futures",
  2153. "libc",
  2154. "log",
  2155. "mio-named-pipes",
  2156. "miow 0.4.0",
  2157. "rand 0.8.4",
  2158. "tokio",
  2159. "winapi 0.3.9",
  2160. ]
  2161. [[package]]
  2162. name = "parking_lot"
  2163. version = "0.11.2"
  2164. source = "registry+https://github.com/rust-lang/crates.io-index"
  2165. checksum = "7d17b78036a60663b797adeaee46f5c9dfebb86948d1255007a1d6be0271ff99"
  2166. dependencies = [
  2167. "instant",
  2168. "lock_api",
  2169. "parking_lot_core",
  2170. ]
  2171. [[package]]
  2172. name = "parking_lot_core"
  2173. version = "0.8.5"
  2174. source = "registry+https://github.com/rust-lang/crates.io-index"
  2175. checksum = "d76e8e1493bcac0d2766c42737f34458f1c8c50c0d23bcb24ea953affb273216"
  2176. dependencies = [
  2177. "cfg-if 1.0.0",
  2178. "instant",
  2179. "libc",
  2180. "redox_syscall",
  2181. "smallvec",
  2182. "winapi 0.3.9",
  2183. ]
  2184. [[package]]
  2185. name = "paste"
  2186. version = "1.0.6"
  2187. source = "registry+https://github.com/rust-lang/crates.io-index"
  2188. checksum = "0744126afe1a6dd7f394cb50a716dbe086cb06e255e53d8d0185d82828358fb5"
  2189. [[package]]
  2190. name = "peeking_take_while"
  2191. version = "0.1.2"
  2192. source = "registry+https://github.com/rust-lang/crates.io-index"
  2193. checksum = "19b17cddbe7ec3f8bc800887bab5e717348c95ea2ca0b1bf0837fb964dc67099"
  2194. [[package]]
  2195. name = "phf"
  2196. version = "0.7.24"
  2197. source = "registry+https://github.com/rust-lang/crates.io-index"
  2198. checksum = "b3da44b85f8e8dfaec21adae67f95d93244b2ecf6ad2a692320598dcc8e6dd18"
  2199. dependencies = [
  2200. "phf_shared",
  2201. ]
  2202. [[package]]
  2203. name = "phf_codegen"
  2204. version = "0.7.24"
  2205. source = "registry+https://github.com/rust-lang/crates.io-index"
  2206. checksum = "b03e85129e324ad4166b06b2c7491ae27fe3ec353af72e72cd1654c7225d517e"
  2207. dependencies = [
  2208. "phf_generator",
  2209. "phf_shared",
  2210. ]
  2211. [[package]]
  2212. name = "phf_generator"
  2213. version = "0.7.24"
  2214. source = "registry+https://github.com/rust-lang/crates.io-index"
  2215. checksum = "09364cc93c159b8b06b1f4dd8a4398984503483891b0c26b867cf431fb132662"
  2216. dependencies = [
  2217. "phf_shared",
  2218. "rand 0.6.5",
  2219. ]
  2220. [[package]]
  2221. name = "phf_shared"
  2222. version = "0.7.24"
  2223. source = "registry+https://github.com/rust-lang/crates.io-index"
  2224. checksum = "234f71a15de2288bcb7e3b6515828d22af7ec8598ee6d24c3b526fa0a80b67a0"
  2225. dependencies = [
  2226. "siphasher",
  2227. ]
  2228. [[package]]
  2229. name = "pin-project"
  2230. version = "1.0.10"
  2231. source = "registry+https://github.com/rust-lang/crates.io-index"
  2232. checksum = "58ad3879ad3baf4e44784bc6a718a8698867bb991f8ce24d1bcbe2cfb4c3a75e"
  2233. dependencies = [
  2234. "pin-project-internal",
  2235. ]
  2236. [[package]]
  2237. name = "pin-project-internal"
  2238. version = "1.0.10"
  2239. source = "registry+https://github.com/rust-lang/crates.io-index"
  2240. checksum = "744b6f092ba29c3650faf274db506afd39944f48420f6c86b17cfe0ee1cb36bb"
  2241. dependencies = [
  2242. "proc-macro2",
  2243. "quote",
  2244. "syn",
  2245. ]
  2246. [[package]]
  2247. name = "pin-project-lite"
  2248. version = "0.2.8"
  2249. source = "registry+https://github.com/rust-lang/crates.io-index"
  2250. checksum = "e280fbe77cc62c91527259e9442153f4688736748d24660126286329742b4c6c"
  2251. [[package]]
  2252. name = "pin-utils"
  2253. version = "0.1.0"
  2254. source = "registry+https://github.com/rust-lang/crates.io-index"
  2255. checksum = "8b870d8c151b6f2fb93e84a13146138f05d02ed11c7e7c54f8826aaaf7c9f184"
  2256. [[package]]
  2257. name = "pkg-config"
  2258. version = "0.3.24"
  2259. source = "registry+https://github.com/rust-lang/crates.io-index"
  2260. checksum = "58893f751c9b0412871a09abd62ecd2a00298c6c83befa223ef98c52aef40cbe"
  2261. [[package]]
  2262. name = "platforms"
  2263. version = "2.0.0"
  2264. source = "registry+https://github.com/rust-lang/crates.io-index"
  2265. checksum = "e8d0eef3571242013a0d5dc84861c3ae4a652e56e12adf8bdc26ff5f8cb34c94"
  2266. [[package]]
  2267. name = "png"
  2268. version = "0.16.8"
  2269. source = "registry+https://github.com/rust-lang/crates.io-index"
  2270. checksum = "3c3287920cb847dee3de33d301c463fba14dda99db24214ddf93f83d3021f4c6"
  2271. dependencies = [
  2272. "bitflags",
  2273. "crc32fast",
  2274. "deflate",
  2275. "miniz_oxide 0.3.7",
  2276. ]
  2277. [[package]]
  2278. name = "ppv-lite86"
  2279. version = "0.2.16"
  2280. source = "registry+https://github.com/rust-lang/crates.io-index"
  2281. checksum = "eb9f9e6e233e5c4a35559a617bf40a4ec447db2e84c20b55a6f83167b7e57872"
  2282. [[package]]
  2283. name = "pretty-hex"
  2284. version = "0.2.1"
  2285. source = "registry+https://github.com/rust-lang/crates.io-index"
  2286. checksum = "bc5c99d529f0d30937f6f4b8a86d988047327bb88d04d2c4afc356de74722131"
  2287. [[package]]
  2288. name = "primal-check"
  2289. version = "0.3.1"
  2290. source = "registry+https://github.com/rust-lang/crates.io-index"
  2291. checksum = "01419cee72c1a1ca944554e23d83e483e1bccf378753344e881de28b5487511d"
  2292. dependencies = [
  2293. "num-integer",
  2294. ]
  2295. [[package]]
  2296. name = "proc-macro-crate"
  2297. version = "0.1.5"
  2298. source = "registry+https://github.com/rust-lang/crates.io-index"
  2299. checksum = "1d6ea3c4595b96363c13943497db34af4460fb474a95c43f4446ad341b8c9785"
  2300. dependencies = [
  2301. "toml",
  2302. ]
  2303. [[package]]
  2304. name = "proc-macro-crate"
  2305. version = "1.1.0"
  2306. source = "registry+https://github.com/rust-lang/crates.io-index"
  2307. checksum = "1ebace6889caf889b4d3f76becee12e90353f2b8c7d875534a71e5742f8f6f83"
  2308. dependencies = [
  2309. "thiserror",
  2310. "toml",
  2311. ]
  2312. [[package]]
  2313. name = "proc-macro-error"
  2314. version = "1.0.4"
  2315. source = "registry+https://github.com/rust-lang/crates.io-index"
  2316. checksum = "da25490ff9892aab3fcf7c36f08cfb902dd3e71ca0f9f9517bea02a73a5ce38c"
  2317. dependencies = [
  2318. "proc-macro-error-attr",
  2319. "proc-macro2",
  2320. "quote",
  2321. "syn",
  2322. "version_check",
  2323. ]
  2324. [[package]]
  2325. name = "proc-macro-error-attr"
  2326. version = "1.0.4"
  2327. source = "registry+https://github.com/rust-lang/crates.io-index"
  2328. checksum = "a1be40180e52ecc98ad80b184934baf3d0d29f979574e439af5a55274b35f869"
  2329. dependencies = [
  2330. "proc-macro2",
  2331. "quote",
  2332. "version_check",
  2333. ]
  2334. [[package]]
  2335. name = "proc-macro2"
  2336. version = "1.0.36"
  2337. source = "registry+https://github.com/rust-lang/crates.io-index"
  2338. checksum = "c7342d5883fbccae1cc37a2353b09c87c9b0f3afd73f5fb9bba687a1f733b029"
  2339. dependencies = [
  2340. "unicode-xid",
  2341. ]
  2342. [[package]]
  2343. name = "protobuf"
  2344. version = "3.0.0-alpha.2"
  2345. source = "registry+https://github.com/rust-lang/crates.io-index"
  2346. checksum = "9d5ef59c35c7472ce5e1b6c5924b87585143d1fc2cf39eae0009bba6c4df62f1"
  2347. [[package]]
  2348. name = "protobuf-codegen"
  2349. version = "3.0.0-alpha.2"
  2350. source = "registry+https://github.com/rust-lang/crates.io-index"
  2351. checksum = "89100ee819f69b77a4cab389fec9dd155a305af4c615e6413ec1ef9341f333ef"
  2352. dependencies = [
  2353. "anyhow",
  2354. "protobuf",
  2355. "protobuf-parse",
  2356. "thiserror",
  2357. ]
  2358. [[package]]
  2359. name = "protobuf-codegen-pure"
  2360. version = "3.0.0-alpha.2"
  2361. source = "registry+https://github.com/rust-lang/crates.io-index"
  2362. checksum = "79453e74d08190551e821533ee42c447f9e21ca26f83520e120e6e8af27f6879"
  2363. dependencies = [
  2364. "anyhow",
  2365. "protobuf",
  2366. "protobuf-codegen",
  2367. "protobuf-parse",
  2368. "thiserror",
  2369. ]
  2370. [[package]]
  2371. name = "protobuf-parse"
  2372. version = "3.0.0-alpha.2"
  2373. source = "registry+https://github.com/rust-lang/crates.io-index"
  2374. checksum = "c265ffc69976efc3056955b881641add3186ad0be893ef10622482d80d1d2b68"
  2375. dependencies = [
  2376. "anyhow",
  2377. "protobuf",
  2378. "protoc",
  2379. "tempfile",
  2380. "thiserror",
  2381. ]
  2382. [[package]]
  2383. name = "protoc"
  2384. version = "3.0.0-alpha.2"
  2385. source = "registry+https://github.com/rust-lang/crates.io-index"
  2386. checksum = "1f1f8b318a54d18fbe542513331e058f4f8ce6502e542e057c50c7e5e803fdab"
  2387. dependencies = [
  2388. "anyhow",
  2389. "log",
  2390. "thiserror",
  2391. "which 4.2.2",
  2392. ]
  2393. [[package]]
  2394. name = "psutil"
  2395. version = "3.2.1"
  2396. source = "git+https://github.com/open-trade/rust-psutil#22b2e1bb4e29433a6ddb0c1bb259fe01e894c94f"
  2397. dependencies = [
  2398. "cfg-if 1.0.0",
  2399. "darwin-libproc",
  2400. "derive_more",
  2401. "glob",
  2402. "mach",
  2403. "nix 0.23.1",
  2404. "num_cpus",
  2405. "once_cell",
  2406. "platforms",
  2407. "thiserror",
  2408. "unescape",
  2409. ]
  2410. [[package]]
  2411. name = "quest"
  2412. version = "0.3.0"
  2413. source = "registry+https://github.com/rust-lang/crates.io-index"
  2414. checksum = "556af5f5c953a2ee13f45753e581a38f9778e6551bc3ccc56d90b14628fe59d8"
  2415. dependencies = [
  2416. "cfg-if 0.1.10",
  2417. "rpassword 2.1.0",
  2418. "tempfile",
  2419. "termios",
  2420. "winapi 0.3.9",
  2421. ]
  2422. [[package]]
  2423. name = "quick-xml"
  2424. version = "0.22.0"
  2425. source = "registry+https://github.com/rust-lang/crates.io-index"
  2426. checksum = "8533f14c8382aaad0d592c812ac3b826162128b65662331e1127b45c3d18536b"
  2427. dependencies = [
  2428. "memchr",
  2429. ]
  2430. [[package]]
  2431. name = "quinn"
  2432. version = "0.8.0"
  2433. source = "registry+https://github.com/rust-lang/crates.io-index"
  2434. checksum = "61a84d97630b137463c8e6802adc1dfe9de81457b41bb1ac59189e6761ab9255"
  2435. dependencies = [
  2436. "bytes",
  2437. "futures-channel",
  2438. "futures-util",
  2439. "fxhash",
  2440. "quinn-proto",
  2441. "quinn-udp",
  2442. "rustls",
  2443. "thiserror",
  2444. "tokio",
  2445. "tracing",
  2446. "webpki",
  2447. ]
  2448. [[package]]
  2449. name = "quinn-proto"
  2450. version = "0.8.0"
  2451. source = "registry+https://github.com/rust-lang/crates.io-index"
  2452. checksum = "063dedf7983c8d57db474218f258daa85b627de6f2dbc458b690a93b1de790e8"
  2453. dependencies = [
  2454. "bytes",
  2455. "fxhash",
  2456. "rand 0.8.4",
  2457. "ring",
  2458. "rustls",
  2459. "rustls-native-certs",
  2460. "rustls-pemfile",
  2461. "slab",
  2462. "thiserror",
  2463. "tinyvec",
  2464. "tracing",
  2465. "webpki",
  2466. ]
  2467. [[package]]
  2468. name = "quinn-udp"
  2469. version = "0.1.0"
  2470. source = "registry+https://github.com/rust-lang/crates.io-index"
  2471. checksum = "5f7996776e9ee3fc0e5c14476c1a640a17e993c847ae9c81191c2c102fbef903"
  2472. dependencies = [
  2473. "futures-util",
  2474. "libc",
  2475. "mio 0.7.14",
  2476. "quinn-proto",
  2477. "socket2 0.4.2",
  2478. "tokio",
  2479. "tracing",
  2480. ]
  2481. [[package]]
  2482. name = "quote"
  2483. version = "1.0.14"
  2484. source = "registry+https://github.com/rust-lang/crates.io-index"
  2485. checksum = "47aa80447ce4daf1717500037052af176af5d38cc3e571d9ec1c7353fc10c87d"
  2486. dependencies = [
  2487. "proc-macro2",
  2488. ]
  2489. [[package]]
  2490. name = "rand"
  2491. version = "0.6.5"
  2492. source = "registry+https://github.com/rust-lang/crates.io-index"
  2493. checksum = "6d71dacdc3c88c1fde3885a3be3fbab9f35724e6ce99467f7d9c5026132184ca"
  2494. dependencies = [
  2495. "autocfg 0.1.7",
  2496. "libc",
  2497. "rand_chacha 0.1.1",
  2498. "rand_core 0.4.2",
  2499. "rand_hc 0.1.0",
  2500. "rand_isaac",
  2501. "rand_jitter",
  2502. "rand_os",
  2503. "rand_pcg",
  2504. "rand_xorshift",
  2505. "winapi 0.3.9",
  2506. ]
  2507. [[package]]
  2508. name = "rand"
  2509. version = "0.8.4"
  2510. source = "registry+https://github.com/rust-lang/crates.io-index"
  2511. checksum = "2e7573632e6454cf6b99d7aac4ccca54be06da05aca2ef7423d22d27d4d4bcd8"
  2512. dependencies = [
  2513. "libc",
  2514. "rand_chacha 0.3.1",
  2515. "rand_core 0.6.3",
  2516. "rand_hc 0.3.1",
  2517. ]
  2518. [[package]]
  2519. name = "rand_chacha"
  2520. version = "0.1.1"
  2521. source = "registry+https://github.com/rust-lang/crates.io-index"
  2522. checksum = "556d3a1ca6600bfcbab7c7c91ccb085ac7fbbcd70e008a98742e7847f4f7bcef"
  2523. dependencies = [
  2524. "autocfg 0.1.7",
  2525. "rand_core 0.3.1",
  2526. ]
  2527. [[package]]
  2528. name = "rand_chacha"
  2529. version = "0.3.1"
  2530. source = "registry+https://github.com/rust-lang/crates.io-index"
  2531. checksum = "e6c10a63a0fa32252be49d21e7709d4d4baf8d231c2dbce1eaa8141b9b127d88"
  2532. dependencies = [
  2533. "ppv-lite86",
  2534. "rand_core 0.6.3",
  2535. ]
  2536. [[package]]
  2537. name = "rand_core"
  2538. version = "0.3.1"
  2539. source = "registry+https://github.com/rust-lang/crates.io-index"
  2540. checksum = "7a6fdeb83b075e8266dcc8762c22776f6877a63111121f5f8c7411e5be7eed4b"
  2541. dependencies = [
  2542. "rand_core 0.4.2",
  2543. ]
  2544. [[package]]
  2545. name = "rand_core"
  2546. version = "0.4.2"
  2547. source = "registry+https://github.com/rust-lang/crates.io-index"
  2548. checksum = "9c33a3c44ca05fa6f1807d8e6743f3824e8509beca625669633be0acbdf509dc"
  2549. [[package]]
  2550. name = "rand_core"
  2551. version = "0.6.3"
  2552. source = "registry+https://github.com/rust-lang/crates.io-index"
  2553. checksum = "d34f1408f55294453790c48b2f1ebbb1c5b4b7563eb1f418bcfcfdbb06ebb4e7"
  2554. dependencies = [
  2555. "getrandom",
  2556. ]
  2557. [[package]]
  2558. name = "rand_hc"
  2559. version = "0.1.0"
  2560. source = "registry+https://github.com/rust-lang/crates.io-index"
  2561. checksum = "7b40677c7be09ae76218dc623efbf7b18e34bced3f38883af07bb75630a21bc4"
  2562. dependencies = [
  2563. "rand_core 0.3.1",
  2564. ]
  2565. [[package]]
  2566. name = "rand_hc"
  2567. version = "0.3.1"
  2568. source = "registry+https://github.com/rust-lang/crates.io-index"
  2569. checksum = "d51e9f596de227fda2ea6c84607f5558e196eeaf43c986b724ba4fb8fdf497e7"
  2570. dependencies = [
  2571. "rand_core 0.6.3",
  2572. ]
  2573. [[package]]
  2574. name = "rand_isaac"
  2575. version = "0.1.1"
  2576. source = "registry+https://github.com/rust-lang/crates.io-index"
  2577. checksum = "ded997c9d5f13925be2a6fd7e66bf1872597f759fd9dd93513dd7e92e5a5ee08"
  2578. dependencies = [
  2579. "rand_core 0.3.1",
  2580. ]
  2581. [[package]]
  2582. name = "rand_jitter"
  2583. version = "0.1.4"
  2584. source = "registry+https://github.com/rust-lang/crates.io-index"
  2585. checksum = "1166d5c91dc97b88d1decc3285bb0a99ed84b05cfd0bc2341bdf2d43fc41e39b"
  2586. dependencies = [
  2587. "libc",
  2588. "rand_core 0.4.2",
  2589. "winapi 0.3.9",
  2590. ]
  2591. [[package]]
  2592. name = "rand_os"
  2593. version = "0.1.3"
  2594. source = "registry+https://github.com/rust-lang/crates.io-index"
  2595. checksum = "7b75f676a1e053fc562eafbb47838d67c84801e38fc1ba459e8f180deabd5071"
  2596. dependencies = [
  2597. "cloudabi",
  2598. "fuchsia-cprng",
  2599. "libc",
  2600. "rand_core 0.4.2",
  2601. "rdrand",
  2602. "winapi 0.3.9",
  2603. ]
  2604. [[package]]
  2605. name = "rand_pcg"
  2606. version = "0.1.2"
  2607. source = "registry+https://github.com/rust-lang/crates.io-index"
  2608. checksum = "abf9b09b01790cfe0364f52bf32995ea3c39f4d2dd011eac241d2914146d0b44"
  2609. dependencies = [
  2610. "autocfg 0.1.7",
  2611. "rand_core 0.4.2",
  2612. ]
  2613. [[package]]
  2614. name = "rand_xorshift"
  2615. version = "0.1.1"
  2616. source = "registry+https://github.com/rust-lang/crates.io-index"
  2617. checksum = "cbf7e9e623549b0e21f6e97cf8ecf247c1a8fd2e8a992ae265314300b2455d5c"
  2618. dependencies = [
  2619. "rand_core 0.3.1",
  2620. ]
  2621. [[package]]
  2622. name = "rdrand"
  2623. version = "0.4.0"
  2624. source = "registry+https://github.com/rust-lang/crates.io-index"
  2625. checksum = "678054eb77286b51581ba43620cc911abf02758c91f93f479767aed0f90458b2"
  2626. dependencies = [
  2627. "rand_core 0.3.1",
  2628. ]
  2629. [[package]]
  2630. name = "realfft"
  2631. version = "2.0.1"
  2632. source = "registry+https://github.com/rust-lang/crates.io-index"
  2633. checksum = "d7695c87f31dc3644760f23fb59a3fed47659703abf76cf2d111f03b9e712342"
  2634. dependencies = [
  2635. "rustfft",
  2636. ]
  2637. [[package]]
  2638. name = "redox_syscall"
  2639. version = "0.2.10"
  2640. source = "registry+https://github.com/rust-lang/crates.io-index"
  2641. checksum = "8383f39639269cde97d255a32bdb68c047337295414940c68bdd30c2e13203ff"
  2642. dependencies = [
  2643. "bitflags",
  2644. ]
  2645. [[package]]
  2646. name = "redox_users"
  2647. version = "0.4.0"
  2648. source = "registry+https://github.com/rust-lang/crates.io-index"
  2649. checksum = "528532f3d801c87aec9def2add9ca802fe569e44a544afe633765267840abe64"
  2650. dependencies = [
  2651. "getrandom",
  2652. "redox_syscall",
  2653. ]
  2654. [[package]]
  2655. name = "regex"
  2656. version = "1.4.6"
  2657. source = "registry+https://github.com/rust-lang/crates.io-index"
  2658. checksum = "2a26af418b574bd56588335b3a3659a65725d4e636eb1016c2f9e3b38c7cc759"
  2659. dependencies = [
  2660. "aho-corasick",
  2661. "memchr",
  2662. "regex-syntax",
  2663. ]
  2664. [[package]]
  2665. name = "regex-syntax"
  2666. version = "0.6.25"
  2667. source = "registry+https://github.com/rust-lang/crates.io-index"
  2668. checksum = "f497285884f3fcff424ffc933e56d7cbca511def0c9831a7f9b5f6153e3cc89b"
  2669. [[package]]
  2670. name = "remove_dir_all"
  2671. version = "0.5.3"
  2672. source = "registry+https://github.com/rust-lang/crates.io-index"
  2673. checksum = "3acd125665422973a33ac9d3dd2df85edad0f4ae9b00dafb1a05e43a9f5ef8e7"
  2674. dependencies = [
  2675. "winapi 0.3.9",
  2676. ]
  2677. [[package]]
  2678. name = "repng"
  2679. version = "0.2.2"
  2680. source = "registry+https://github.com/rust-lang/crates.io-index"
  2681. checksum = "0dd57cd2cb5cc699b3eb4824d654e5a32f3bc013766da4966f71fe94805abbda"
  2682. dependencies = [
  2683. "byteorder",
  2684. "flate2",
  2685. ]
  2686. [[package]]
  2687. name = "ring"
  2688. version = "0.16.20"
  2689. source = "registry+https://github.com/rust-lang/crates.io-index"
  2690. checksum = "3053cf52e236a3ed746dfc745aa9cacf1b791d846bdaf412f60a8d7d6e17c8fc"
  2691. dependencies = [
  2692. "cc",
  2693. "libc",
  2694. "once_cell",
  2695. "spin",
  2696. "untrusted",
  2697. "web-sys",
  2698. "winapi 0.3.9",
  2699. ]
  2700. [[package]]
  2701. name = "rpassword"
  2702. version = "2.1.0"
  2703. source = "registry+https://github.com/rust-lang/crates.io-index"
  2704. checksum = "d37473170aedbe66ffa3ad3726939ba677d83c646ad4fd99e5b4bc38712f45ec"
  2705. dependencies = [
  2706. "kernel32-sys",
  2707. "libc",
  2708. "winapi 0.2.8",
  2709. ]
  2710. [[package]]
  2711. name = "rpassword"
  2712. version = "5.0.1"
  2713. source = "registry+https://github.com/rust-lang/crates.io-index"
  2714. checksum = "ffc936cf8a7ea60c58f030fd36a612a48f440610214dc54bc36431f9ea0c3efb"
  2715. dependencies = [
  2716. "libc",
  2717. "winapi 0.3.9",
  2718. ]
  2719. [[package]]
  2720. name = "rubato"
  2721. version = "0.10.0"
  2722. source = "registry+https://github.com/rust-lang/crates.io-index"
  2723. checksum = "d29cf25e25288b595458df0e00c3065db08c31afe4b4e5a74cbfc5a9b8e763cd"
  2724. dependencies = [
  2725. "log",
  2726. "num-complex",
  2727. "num-integer",
  2728. "num-traits 0.2.14",
  2729. "realfft",
  2730. ]
  2731. [[package]]
  2732. name = "runas"
  2733. version = "0.2.1"
  2734. source = "registry+https://github.com/rust-lang/crates.io-index"
  2735. checksum = "a620b0994a180cdfa25c0439e6d58c0628272571501880d626ffff58e96a0799"
  2736. dependencies = [
  2737. "cc",
  2738. "which 3.1.1",
  2739. ]
  2740. [[package]]
  2741. name = "rust-pulsectl"
  2742. version = "0.2.11"
  2743. source = "git+https://github.com/open-trade/pulsectl#f8ed9c538d48e486ee2cc5678aa7aee26b377646"
  2744. dependencies = [
  2745. "libpulse-binding",
  2746. ]
  2747. [[package]]
  2748. name = "rustc-demangle"
  2749. version = "0.1.21"
  2750. source = "registry+https://github.com/rust-lang/crates.io-index"
  2751. checksum = "7ef03e0a2b150c7a90d01faf6254c9c48a41e95fb2a8c2ac1c6f0d2b9aefc342"
  2752. [[package]]
  2753. name = "rustc-hash"
  2754. version = "1.1.0"
  2755. source = "registry+https://github.com/rust-lang/crates.io-index"
  2756. checksum = "08d43f7aa6b08d49f382cde6a7982047c3426db949b1424bc4b7ec9ae12c6ce2"
  2757. [[package]]
  2758. name = "rustdesk"
  2759. version = "1.1.8"
  2760. dependencies = [
  2761. "android_logger",
  2762. "arboard",
  2763. "async-trait",
  2764. "base64",
  2765. "cc",
  2766. "cfg-if 1.0.0",
  2767. "clap",
  2768. "clipboard-master",
  2769. "cocoa",
  2770. "core-foundation",
  2771. "core-graphics",
  2772. "cpal",
  2773. "crc32fast",
  2774. "ctrlc",
  2775. "dasp",
  2776. "dispatch",
  2777. "enigo",
  2778. "flexi_logger",
  2779. "hbb_common",
  2780. "hound",
  2781. "lazy_static",
  2782. "libc",
  2783. "libpulse-binding",
  2784. "libpulse-simple-binding",
  2785. "mac_address",
  2786. "machine-uid",
  2787. "magnum-opus",
  2788. "objc",
  2789. "parity-tokio-ipc",
  2790. "psutil",
  2791. "repng",
  2792. "rpassword 5.0.1",
  2793. "rubato",
  2794. "runas",
  2795. "rust-pulsectl",
  2796. "samplerate",
  2797. "sciter-rs",
  2798. "scrap",
  2799. "serde 1.0.133",
  2800. "serde_derive",
  2801. "serde_json 1.0.74",
  2802. "sha2",
  2803. "sys-locale",
  2804. "systray",
  2805. "uuid",
  2806. "whoami",
  2807. "winapi 0.3.9",
  2808. "windows-service",
  2809. "winreg 0.10.1",
  2810. "winres",
  2811. ]
  2812. [[package]]
  2813. name = "rustfft"
  2814. version = "6.0.1"
  2815. source = "registry+https://github.com/rust-lang/crates.io-index"
  2816. checksum = "b1d089e5c57521629a59f5f39bca7434849ff89bd6873b521afe389c1c602543"
  2817. dependencies = [
  2818. "num-complex",
  2819. "num-integer",
  2820. "num-traits 0.2.14",
  2821. "primal-check",
  2822. "strength_reduce",
  2823. "transpose",
  2824. ]
  2825. [[package]]
  2826. name = "rustls"
  2827. version = "0.20.2"
  2828. source = "registry+https://github.com/rust-lang/crates.io-index"
  2829. checksum = "d37e5e2290f3e040b594b1a9e04377c2c671f1a1cfd9bfdef82106ac1c113f84"
  2830. dependencies = [
  2831. "ring",
  2832. "sct",
  2833. "webpki",
  2834. ]
  2835. [[package]]
  2836. name = "rustls-native-certs"
  2837. version = "0.6.1"
  2838. source = "registry+https://github.com/rust-lang/crates.io-index"
  2839. checksum = "5ca9ebdfa27d3fc180e42879037b5338ab1c040c06affd00d8338598e7800943"
  2840. dependencies = [
  2841. "openssl-probe",
  2842. "rustls-pemfile",
  2843. "schannel",
  2844. "security-framework",
  2845. ]
  2846. [[package]]
  2847. name = "rustls-pemfile"
  2848. version = "0.2.1"
  2849. source = "registry+https://github.com/rust-lang/crates.io-index"
  2850. checksum = "5eebeaeb360c87bfb72e84abdb3447159c0eaececf1bef2aecd65a8be949d1c9"
  2851. dependencies = [
  2852. "base64",
  2853. ]
  2854. [[package]]
  2855. name = "rustversion"
  2856. version = "1.0.6"
  2857. source = "registry+https://github.com/rust-lang/crates.io-index"
  2858. checksum = "f2cc38e8fa666e2de3c4aba7edeb5ffc5246c1c2ed0e3d17e560aeeba736b23f"
  2859. [[package]]
  2860. name = "ryu"
  2861. version = "1.0.9"
  2862. source = "registry+https://github.com/rust-lang/crates.io-index"
  2863. checksum = "73b4b750c782965c211b42f022f59af1fbceabdd026623714f104152f1ec149f"
  2864. [[package]]
  2865. name = "same-file"
  2866. version = "1.0.6"
  2867. source = "registry+https://github.com/rust-lang/crates.io-index"
  2868. checksum = "93fc1dc3aaa9bfed95e02e6eadabb4baf7e3078b0bd1b4d7b6b0b68378900502"
  2869. dependencies = [
  2870. "winapi-util",
  2871. ]
  2872. [[package]]
  2873. name = "samplerate"
  2874. version = "0.2.4"
  2875. source = "registry+https://github.com/rust-lang/crates.io-index"
  2876. checksum = "e032b2b24715c4f982f483ea3abdb3c9ba444d9f63e87b2843d6f998f5ba2698"
  2877. dependencies = [
  2878. "libsamplerate-sys",
  2879. ]
  2880. [[package]]
  2881. name = "schannel"
  2882. version = "0.1.19"
  2883. source = "registry+https://github.com/rust-lang/crates.io-index"
  2884. checksum = "8f05ba609c234e60bee0d547fe94a4c7e9da733d1c962cf6e59efa4cd9c8bc75"
  2885. dependencies = [
  2886. "lazy_static",
  2887. "winapi 0.3.9",
  2888. ]
  2889. [[package]]
  2890. name = "sciter-rs"
  2891. version = "0.5.57"
  2892. source = "git+https://github.com/open-trade/rust-sciter?branch=dyn#4cd10f985e76d64fbf3438ffe7532489936f489a"
  2893. dependencies = [
  2894. "lazy_static",
  2895. "libc",
  2896. "objc",
  2897. "objc-foundation",
  2898. ]
  2899. [[package]]
  2900. name = "scopeguard"
  2901. version = "1.1.0"
  2902. source = "registry+https://github.com/rust-lang/crates.io-index"
  2903. checksum = "d29ab0c6d3fc0ee92fe66e2d99f700eab17a8d57d1c1d3b748380fb20baa78cd"
  2904. [[package]]
  2905. name = "scrap"
  2906. version = "0.5.0"
  2907. dependencies = [
  2908. "bindgen 0.59.2",
  2909. "block",
  2910. "cfg-if 1.0.0",
  2911. "dbus",
  2912. "docopt",
  2913. "gstreamer",
  2914. "gstreamer-app",
  2915. "gstreamer-video",
  2916. "libc",
  2917. "num_cpus",
  2918. "quest",
  2919. "repng",
  2920. "serde 1.0.133",
  2921. "target_build_utils",
  2922. "tracing",
  2923. "webm",
  2924. "winapi 0.3.9",
  2925. ]
  2926. [[package]]
  2927. name = "sct"
  2928. version = "0.7.0"
  2929. source = "registry+https://github.com/rust-lang/crates.io-index"
  2930. checksum = "d53dcdb7c9f8158937a7981b48accfd39a43af418591a5d008c7b22b5e1b7ca4"
  2931. dependencies = [
  2932. "ring",
  2933. "untrusted",
  2934. ]
  2935. [[package]]
  2936. name = "security-framework"
  2937. version = "2.4.2"
  2938. source = "registry+https://github.com/rust-lang/crates.io-index"
  2939. checksum = "525bc1abfda2e1998d152c45cf13e696f76d0a4972310b22fac1658b05df7c87"
  2940. dependencies = [
  2941. "bitflags",
  2942. "core-foundation",
  2943. "core-foundation-sys",
  2944. "libc",
  2945. "security-framework-sys",
  2946. ]
  2947. [[package]]
  2948. name = "security-framework-sys"
  2949. version = "2.4.2"
  2950. source = "registry+https://github.com/rust-lang/crates.io-index"
  2951. checksum = "a9dd14d83160b528b7bfd66439110573efcfbe281b17fc2ca9f39f550d619c7e"
  2952. dependencies = [
  2953. "core-foundation-sys",
  2954. "libc",
  2955. ]
  2956. [[package]]
  2957. name = "serde"
  2958. version = "0.9.15"
  2959. source = "registry+https://github.com/rust-lang/crates.io-index"
  2960. checksum = "34b623917345a631dc9608d5194cc206b3fe6c3554cd1c75b937e55e285254af"
  2961. [[package]]
  2962. name = "serde"
  2963. version = "1.0.133"
  2964. source = "registry+https://github.com/rust-lang/crates.io-index"
  2965. checksum = "97565067517b60e2d1ea8b268e59ce036de907ac523ad83a0475da04e818989a"
  2966. dependencies = [
  2967. "serde_derive",
  2968. ]
  2969. [[package]]
  2970. name = "serde_derive"
  2971. version = "1.0.133"
  2972. source = "registry+https://github.com/rust-lang/crates.io-index"
  2973. checksum = "ed201699328568d8d08208fdd080e3ff594e6c422e438b6705905da01005d537"
  2974. dependencies = [
  2975. "proc-macro2",
  2976. "quote",
  2977. "syn",
  2978. ]
  2979. [[package]]
  2980. name = "serde_json"
  2981. version = "0.9.10"
  2982. source = "registry+https://github.com/rust-lang/crates.io-index"
  2983. checksum = "ad8bcf487be7d2e15d3d543f04312de991d631cfe1b43ea0ade69e6a8a5b16a1"
  2984. dependencies = [
  2985. "dtoa",
  2986. "itoa 0.3.4",
  2987. "num-traits 0.1.43",
  2988. "serde 0.9.15",
  2989. ]
  2990. [[package]]
  2991. name = "serde_json"
  2992. version = "1.0.74"
  2993. source = "registry+https://github.com/rust-lang/crates.io-index"
  2994. checksum = "ee2bb9cd061c5865d345bb02ca49fcef1391741b672b54a0bf7b679badec3142"
  2995. dependencies = [
  2996. "itoa 1.0.1",
  2997. "ryu",
  2998. "serde 1.0.133",
  2999. ]
  3000. [[package]]
  3001. name = "sha2"
  3002. version = "0.10.0"
  3003. source = "registry+https://github.com/rust-lang/crates.io-index"
  3004. checksum = "900d964dd36bb15bcf2f2b35694c072feab74969a54f2bbeec7a2d725d2bdcb6"
  3005. dependencies = [
  3006. "cfg-if 1.0.0",
  3007. "cpufeatures",
  3008. "digest",
  3009. ]
  3010. [[package]]
  3011. name = "shlex"
  3012. version = "0.1.1"
  3013. source = "registry+https://github.com/rust-lang/crates.io-index"
  3014. checksum = "7fdf1b9db47230893d76faad238fd6097fd6d6a9245cd7a4d90dbd639536bbd2"
  3015. [[package]]
  3016. name = "shlex"
  3017. version = "1.1.0"
  3018. source = "registry+https://github.com/rust-lang/crates.io-index"
  3019. checksum = "43b2853a4d09f215c24cc5489c992ce46052d359b5109343cbafbf26bc62f8a3"
  3020. [[package]]
  3021. name = "signal-hook-registry"
  3022. version = "1.4.0"
  3023. source = "registry+https://github.com/rust-lang/crates.io-index"
  3024. checksum = "e51e73328dc4ac0c7ccbda3a494dfa03df1de2f46018127f60c693f2648455b0"
  3025. dependencies = [
  3026. "libc",
  3027. ]
  3028. [[package]]
  3029. name = "signature"
  3030. version = "1.5.0"
  3031. source = "registry+https://github.com/rust-lang/crates.io-index"
  3032. checksum = "f054c6c1a6e95179d6f23ed974060dcefb2d9388bb7256900badad682c499de4"
  3033. [[package]]
  3034. name = "siphasher"
  3035. version = "0.2.3"
  3036. source = "registry+https://github.com/rust-lang/crates.io-index"
  3037. checksum = "0b8de496cf83d4ed58b6be86c3a275b8602f6ffe98d3024a869e124147a9a3ac"
  3038. [[package]]
  3039. name = "slab"
  3040. version = "0.4.5"
  3041. source = "registry+https://github.com/rust-lang/crates.io-index"
  3042. checksum = "9def91fd1e018fe007022791f865d0ccc9b3a0d5001e01aabb8b40e46000afb5"
  3043. [[package]]
  3044. name = "smallvec"
  3045. version = "1.7.0"
  3046. source = "registry+https://github.com/rust-lang/crates.io-index"
  3047. checksum = "1ecab6c735a6bb4139c0caafd0cc3635748bbb3acf4550e8138122099251f309"
  3048. [[package]]
  3049. name = "socket2"
  3050. version = "0.3.19"
  3051. source = "registry+https://github.com/rust-lang/crates.io-index"
  3052. checksum = "122e570113d28d773067fab24266b66753f6ea915758651696b6e35e49f88d6e"
  3053. dependencies = [
  3054. "cfg-if 1.0.0",
  3055. "libc",
  3056. "winapi 0.3.9",
  3057. ]
  3058. [[package]]
  3059. name = "socket2"
  3060. version = "0.4.2"
  3061. source = "registry+https://github.com/rust-lang/crates.io-index"
  3062. checksum = "5dc90fe6c7be1a323296982db1836d1ea9e47b6839496dde9a541bc496df3516"
  3063. dependencies = [
  3064. "libc",
  3065. "winapi 0.3.9",
  3066. ]
  3067. [[package]]
  3068. name = "sodiumoxide"
  3069. version = "0.2.7"
  3070. source = "registry+https://github.com/rust-lang/crates.io-index"
  3071. checksum = "e26be3acb6c2d9a7aac28482586a7856436af4cfe7100031d219de2d2ecb0028"
  3072. dependencies = [
  3073. "ed25519",
  3074. "libc",
  3075. "libsodium-sys",
  3076. "serde 1.0.133",
  3077. ]
  3078. [[package]]
  3079. name = "spin"
  3080. version = "0.5.2"
  3081. source = "registry+https://github.com/rust-lang/crates.io-index"
  3082. checksum = "6e63cff320ae2c57904679ba7cb63280a3dc4613885beafb148ee7bf9aa9042d"
  3083. [[package]]
  3084. name = "stdweb"
  3085. version = "0.1.3"
  3086. source = "registry+https://github.com/rust-lang/crates.io-index"
  3087. checksum = "ef5430c8e36b713e13b48a9f709cc21e046723fe44ce34587b73a830203b533e"
  3088. [[package]]
  3089. name = "str-buf"
  3090. version = "1.0.5"
  3091. source = "registry+https://github.com/rust-lang/crates.io-index"
  3092. checksum = "d44a3643b4ff9caf57abcee9c2c621d6c03d9135e0d8b589bd9afb5992cb176a"
  3093. [[package]]
  3094. name = "strength_reduce"
  3095. version = "0.2.3"
  3096. source = "registry+https://github.com/rust-lang/crates.io-index"
  3097. checksum = "a3ff2f71c82567c565ba4b3009a9350a96a7269eaa4001ebedae926230bc2254"
  3098. [[package]]
  3099. name = "strsim"
  3100. version = "0.8.0"
  3101. source = "registry+https://github.com/rust-lang/crates.io-index"
  3102. checksum = "8ea5119cdb4c55b55d432abb513a0429384878c15dde60cc77b1c99de1a95a6a"
  3103. [[package]]
  3104. name = "strsim"
  3105. version = "0.9.3"
  3106. source = "registry+https://github.com/rust-lang/crates.io-index"
  3107. checksum = "6446ced80d6c486436db5c078dde11a9f73d42b57fb273121e160b84f63d894c"
  3108. [[package]]
  3109. name = "strsim"
  3110. version = "0.10.0"
  3111. source = "registry+https://github.com/rust-lang/crates.io-index"
  3112. checksum = "73473c0e59e6d5812c5dfe2a064a6444949f089e20eec9a2e5506596494e4623"
  3113. [[package]]
  3114. name = "strum"
  3115. version = "0.18.0"
  3116. source = "registry+https://github.com/rust-lang/crates.io-index"
  3117. checksum = "57bd81eb48f4c437cadc685403cad539345bf703d78e63707418431cecd4522b"
  3118. [[package]]
  3119. name = "strum_macros"
  3120. version = "0.18.0"
  3121. source = "registry+https://github.com/rust-lang/crates.io-index"
  3122. checksum = "87c85aa3f8ea653bfd3ddf25f7ee357ee4d204731f6aa9ad04002306f6e2774c"
  3123. dependencies = [
  3124. "heck",
  3125. "proc-macro2",
  3126. "quote",
  3127. "syn",
  3128. ]
  3129. [[package]]
  3130. name = "syn"
  3131. version = "1.0.84"
  3132. source = "registry+https://github.com/rust-lang/crates.io-index"
  3133. checksum = "ecb2e6da8ee5eb9a61068762a32fa9619cc591ceb055b3687f4cd4051ec2e06b"
  3134. dependencies = [
  3135. "proc-macro2",
  3136. "quote",
  3137. "unicode-xid",
  3138. ]
  3139. [[package]]
  3140. name = "synstructure"
  3141. version = "0.12.6"
  3142. source = "registry+https://github.com/rust-lang/crates.io-index"
  3143. checksum = "f36bdaa60a83aca3921b5259d5400cbf5e90fc51931376a9bd4a0eb79aa7210f"
  3144. dependencies = [
  3145. "proc-macro2",
  3146. "quote",
  3147. "syn",
  3148. "unicode-xid",
  3149. ]
  3150. [[package]]
  3151. name = "sys-locale"
  3152. version = "0.1.0"
  3153. source = "registry+https://github.com/rust-lang/crates.io-index"
  3154. checksum = "91f89ebb59fa30d4f65fafc2d68e94f6975256fd87e812dd99cb6e020c8563df"
  3155. dependencies = [
  3156. "cc",
  3157. "cstr_core",
  3158. "libc",
  3159. "web-sys",
  3160. "winapi 0.3.9",
  3161. ]
  3162. [[package]]
  3163. name = "system-deps"
  3164. version = "1.3.2"
  3165. source = "registry+https://github.com/rust-lang/crates.io-index"
  3166. checksum = "0f3ecc17269a19353b3558b313bba738b25d82993e30d62a18406a24aba4649b"
  3167. dependencies = [
  3168. "heck",
  3169. "pkg-config",
  3170. "strum",
  3171. "strum_macros",
  3172. "thiserror",
  3173. "toml",
  3174. "version-compare",
  3175. ]
  3176. [[package]]
  3177. name = "systray"
  3178. version = "0.4.1"
  3179. source = "git+https://github.com/liyue201/systray-rs#84cca4b4171661bc6c4d1ba5aaa2320ff8e085aa"
  3180. dependencies = [
  3181. "glib",
  3182. "gtk",
  3183. "libappindicator",
  3184. "libc",
  3185. "log",
  3186. "winapi 0.3.9",
  3187. ]
  3188. [[package]]
  3189. name = "target_build_utils"
  3190. version = "0.3.1"
  3191. source = "registry+https://github.com/rust-lang/crates.io-index"
  3192. checksum = "013d134ae4a25ee744ad6129db589018558f620ddfa44043887cdd45fa08e75c"
  3193. dependencies = [
  3194. "phf",
  3195. "phf_codegen",
  3196. "serde_json 0.9.10",
  3197. ]
  3198. [[package]]
  3199. name = "tempfile"
  3200. version = "3.2.0"
  3201. source = "registry+https://github.com/rust-lang/crates.io-index"
  3202. checksum = "dac1c663cfc93810f88aed9b8941d48cabf856a1b111c29a40439018d870eb22"
  3203. dependencies = [
  3204. "cfg-if 1.0.0",
  3205. "libc",
  3206. "rand 0.8.4",
  3207. "redox_syscall",
  3208. "remove_dir_all",
  3209. "winapi 0.3.9",
  3210. ]
  3211. [[package]]
  3212. name = "termcolor"
  3213. version = "1.1.2"
  3214. source = "registry+https://github.com/rust-lang/crates.io-index"
  3215. checksum = "2dfed899f0eb03f32ee8c6a0aabdb8a7949659e3466561fc0adf54e26d88c5f4"
  3216. dependencies = [
  3217. "winapi-util",
  3218. ]
  3219. [[package]]
  3220. name = "termios"
  3221. version = "0.3.3"
  3222. source = "registry+https://github.com/rust-lang/crates.io-index"
  3223. checksum = "411c5bf740737c7918b8b1fe232dca4dc9f8e754b8ad5e20966814001ed0ac6b"
  3224. dependencies = [
  3225. "libc",
  3226. ]
  3227. [[package]]
  3228. name = "textwrap"
  3229. version = "0.11.0"
  3230. source = "registry+https://github.com/rust-lang/crates.io-index"
  3231. checksum = "d326610f408c7a4eb6f51c37c330e496b08506c9457c9d34287ecc38809fb060"
  3232. dependencies = [
  3233. "unicode-width",
  3234. ]
  3235. [[package]]
  3236. name = "thiserror"
  3237. version = "1.0.30"
  3238. source = "registry+https://github.com/rust-lang/crates.io-index"
  3239. checksum = "854babe52e4df1653706b98fcfc05843010039b406875930a70e4d9644e5c417"
  3240. dependencies = [
  3241. "thiserror-impl",
  3242. ]
  3243. [[package]]
  3244. name = "thiserror-impl"
  3245. version = "1.0.30"
  3246. source = "registry+https://github.com/rust-lang/crates.io-index"
  3247. checksum = "aa32fd3f627f367fe16f893e2597ae3c05020f8bba2666a4e6ea73d377e5714b"
  3248. dependencies = [
  3249. "proc-macro2",
  3250. "quote",
  3251. "syn",
  3252. ]
  3253. [[package]]
  3254. name = "tiff"
  3255. version = "0.6.1"
  3256. source = "registry+https://github.com/rust-lang/crates.io-index"
  3257. checksum = "9a53f4706d65497df0c4349241deddf35f84cee19c87ed86ea8ca590f4464437"
  3258. dependencies = [
  3259. "jpeg-decoder",
  3260. "miniz_oxide 0.4.4",
  3261. "weezl",
  3262. ]
  3263. [[package]]
  3264. name = "time"
  3265. version = "0.3.5"
  3266. source = "registry+https://github.com/rust-lang/crates.io-index"
  3267. checksum = "41effe7cfa8af36f439fac33861b66b049edc6f9a32331e2312660529c1c24ad"
  3268. dependencies = [
  3269. "itoa 0.4.8",
  3270. "libc",
  3271. "time-macros",
  3272. ]
  3273. [[package]]
  3274. name = "time-macros"
  3275. version = "0.2.3"
  3276. source = "registry+https://github.com/rust-lang/crates.io-index"
  3277. checksum = "25eb0ca3468fc0acc11828786797f6ef9aa1555e4a211a60d64cc8e4d1be47d6"
  3278. [[package]]
  3279. name = "tinyvec"
  3280. version = "1.5.1"
  3281. source = "registry+https://github.com/rust-lang/crates.io-index"
  3282. checksum = "2c1c1d5a42b6245520c249549ec267180beaffcc0615401ac8e31853d4b6d8d2"
  3283. dependencies = [
  3284. "tinyvec_macros",
  3285. ]
  3286. [[package]]
  3287. name = "tinyvec_macros"
  3288. version = "0.1.0"
  3289. source = "registry+https://github.com/rust-lang/crates.io-index"
  3290. checksum = "cda74da7e1a664f795bb1f8a87ec406fb89a02522cf6e50620d016add6dbbf5c"
  3291. [[package]]
  3292. name = "tokio"
  3293. version = "1.15.0"
  3294. source = "registry+https://github.com/rust-lang/crates.io-index"
  3295. checksum = "fbbf1c778ec206785635ce8ad57fe52b3009ae9e0c9f574a728f3049d3e55838"
  3296. dependencies = [
  3297. "bytes",
  3298. "libc",
  3299. "memchr",
  3300. "mio 0.7.14",
  3301. "num_cpus",
  3302. "once_cell",
  3303. "parking_lot",
  3304. "pin-project-lite",
  3305. "signal-hook-registry",
  3306. "tokio-macros",
  3307. "winapi 0.3.9",
  3308. ]
  3309. [[package]]
  3310. name = "tokio-macros"
  3311. version = "1.7.0"
  3312. source = "registry+https://github.com/rust-lang/crates.io-index"
  3313. checksum = "b557f72f448c511a979e2564e55d74e6c4432fc96ff4f6241bc6bded342643b7"
  3314. dependencies = [
  3315. "proc-macro2",
  3316. "quote",
  3317. "syn",
  3318. ]
  3319. [[package]]
  3320. name = "tokio-socks"
  3321. version = "0.5.1"
  3322. source = "git+https://github.com/fufesou/tokio-socks#63e27388e4d569316945c1c24353010d86f342a6"
  3323. dependencies = [
  3324. "bytes",
  3325. "either",
  3326. "futures-core",
  3327. "futures-sink",
  3328. "futures-util",
  3329. "pin-project",
  3330. "thiserror",
  3331. "tokio",
  3332. "tokio-util",
  3333. ]
  3334. [[package]]
  3335. name = "tokio-util"
  3336. version = "0.6.9"
  3337. source = "registry+https://github.com/rust-lang/crates.io-index"
  3338. checksum = "9e99e1983e5d376cd8eb4b66604d2e99e79f5bd988c3055891dcd8c9e2604cc0"
  3339. dependencies = [
  3340. "bytes",
  3341. "futures-core",
  3342. "futures-io",
  3343. "futures-sink",
  3344. "log",
  3345. "pin-project-lite",
  3346. "slab",
  3347. "tokio",
  3348. ]
  3349. [[package]]
  3350. name = "toml"
  3351. version = "0.5.8"
  3352. source = "registry+https://github.com/rust-lang/crates.io-index"
  3353. checksum = "a31142970826733df8241ef35dc040ef98c679ab14d7c3e54d827099b3acecaa"
  3354. dependencies = [
  3355. "serde 1.0.133",
  3356. ]
  3357. [[package]]
  3358. name = "tracing"
  3359. version = "0.1.29"
  3360. source = "registry+https://github.com/rust-lang/crates.io-index"
  3361. checksum = "375a639232caf30edfc78e8d89b2d4c375515393e7af7e16f01cd96917fb2105"
  3362. dependencies = [
  3363. "cfg-if 1.0.0",
  3364. "pin-project-lite",
  3365. "tracing-attributes",
  3366. "tracing-core",
  3367. ]
  3368. [[package]]
  3369. name = "tracing-attributes"
  3370. version = "0.1.18"
  3371. source = "registry+https://github.com/rust-lang/crates.io-index"
  3372. checksum = "f4f480b8f81512e825f337ad51e94c1eb5d3bbdf2b363dcd01e2b19a9ffe3f8e"
  3373. dependencies = [
  3374. "proc-macro2",
  3375. "quote",
  3376. "syn",
  3377. ]
  3378. [[package]]
  3379. name = "tracing-core"
  3380. version = "0.1.21"
  3381. source = "registry+https://github.com/rust-lang/crates.io-index"
  3382. checksum = "1f4ed65637b8390770814083d20756f87bfa2c21bf2f110babdc5438351746e4"
  3383. dependencies = [
  3384. "lazy_static",
  3385. ]
  3386. [[package]]
  3387. name = "transpose"
  3388. version = "0.2.1"
  3389. source = "registry+https://github.com/rust-lang/crates.io-index"
  3390. checksum = "95f9c900aa98b6ea43aee227fd680550cdec726526aab8ac801549eadb25e39f"
  3391. dependencies = [
  3392. "num-integer",
  3393. "strength_reduce",
  3394. ]
  3395. [[package]]
  3396. name = "typenum"
  3397. version = "1.15.0"
  3398. source = "registry+https://github.com/rust-lang/crates.io-index"
  3399. checksum = "dcf81ac59edc17cc8697ff311e8f5ef2d99fcbd9817b34cec66f90b6c3dfd987"
  3400. [[package]]
  3401. name = "unescape"
  3402. version = "0.1.0"
  3403. source = "registry+https://github.com/rust-lang/crates.io-index"
  3404. checksum = "ccb97dac3243214f8d8507998906ca3e2e0b900bf9bf4870477f125b82e68f6e"
  3405. [[package]]
  3406. name = "unicode-segmentation"
  3407. version = "1.8.0"
  3408. source = "registry+https://github.com/rust-lang/crates.io-index"
  3409. checksum = "8895849a949e7845e06bd6dc1aa51731a103c42707010a5b591c0038fb73385b"
  3410. [[package]]
  3411. name = "unicode-width"
  3412. version = "0.1.9"
  3413. source = "registry+https://github.com/rust-lang/crates.io-index"
  3414. checksum = "3ed742d4ea2bd1176e236172c8429aaf54486e7ac098db29ffe6529e0ce50973"
  3415. [[package]]
  3416. name = "unicode-xid"
  3417. version = "0.2.2"
  3418. source = "registry+https://github.com/rust-lang/crates.io-index"
  3419. checksum = "8ccb82d61f80a663efe1f787a51b16b5a51e3314d6ac365b08639f52387b33f3"
  3420. [[package]]
  3421. name = "untrusted"
  3422. version = "0.7.1"
  3423. source = "registry+https://github.com/rust-lang/crates.io-index"
  3424. checksum = "a156c684c91ea7d62626509bce3cb4e1d9ed5c4d978f7b4352658f96a4c26b4a"
  3425. [[package]]
  3426. name = "uuid"
  3427. version = "0.8.2"
  3428. source = "registry+https://github.com/rust-lang/crates.io-index"
  3429. checksum = "bc5cf98d8186244414c848017f0e2676b3fcb46807f6668a97dfe67359a3c4b7"
  3430. dependencies = [
  3431. "getrandom",
  3432. ]
  3433. [[package]]
  3434. name = "vec_map"
  3435. version = "0.8.2"
  3436. source = "registry+https://github.com/rust-lang/crates.io-index"
  3437. checksum = "f1bddf1187be692e79c5ffeab891132dfb0f236ed36a43c7ed39f1165ee20191"
  3438. [[package]]
  3439. name = "version-compare"
  3440. version = "0.0.10"
  3441. source = "registry+https://github.com/rust-lang/crates.io-index"
  3442. checksum = "d63556a25bae6ea31b52e640d7c41d1ab27faba4ccb600013837a3d0b3994ca1"
  3443. [[package]]
  3444. name = "version_check"
  3445. version = "0.9.4"
  3446. source = "registry+https://github.com/rust-lang/crates.io-index"
  3447. checksum = "49874b5167b65d7193b8aba1567f5c7d93d001cafc34600cee003eda787e483f"
  3448. [[package]]
  3449. name = "walkdir"
  3450. version = "2.3.2"
  3451. source = "registry+https://github.com/rust-lang/crates.io-index"
  3452. checksum = "808cf2735cd4b6866113f648b791c6adc5714537bc222d9347bb203386ffda56"
  3453. dependencies = [
  3454. "same-file",
  3455. "winapi 0.3.9",
  3456. "winapi-util",
  3457. ]
  3458. [[package]]
  3459. name = "wasi"
  3460. version = "0.10.2+wasi-snapshot-preview1"
  3461. source = "registry+https://github.com/rust-lang/crates.io-index"
  3462. checksum = "fd6fbd9a79829dd1ad0cc20627bf1ed606756a7f77edff7b66b7064f9cb327c6"
  3463. [[package]]
  3464. name = "wasm-bindgen"
  3465. version = "0.2.78"
  3466. source = "registry+https://github.com/rust-lang/crates.io-index"
  3467. checksum = "632f73e236b219150ea279196e54e610f5dbafa5d61786303d4da54f84e47fce"
  3468. dependencies = [
  3469. "cfg-if 1.0.0",
  3470. "wasm-bindgen-macro",
  3471. ]
  3472. [[package]]
  3473. name = "wasm-bindgen-backend"
  3474. version = "0.2.78"
  3475. source = "registry+https://github.com/rust-lang/crates.io-index"
  3476. checksum = "a317bf8f9fba2476b4b2c85ef4c4af8ff39c3c7f0cdfeed4f82c34a880aa837b"
  3477. dependencies = [
  3478. "bumpalo",
  3479. "lazy_static",
  3480. "log",
  3481. "proc-macro2",
  3482. "quote",
  3483. "syn",
  3484. "wasm-bindgen-shared",
  3485. ]
  3486. [[package]]
  3487. name = "wasm-bindgen-macro"
  3488. version = "0.2.78"
  3489. source = "registry+https://github.com/rust-lang/crates.io-index"
  3490. checksum = "d56146e7c495528bf6587663bea13a8eb588d39b36b679d83972e1a2dbbdacf9"
  3491. dependencies = [
  3492. "quote",
  3493. "wasm-bindgen-macro-support",
  3494. ]
  3495. [[package]]
  3496. name = "wasm-bindgen-macro-support"
  3497. version = "0.2.78"
  3498. source = "registry+https://github.com/rust-lang/crates.io-index"
  3499. checksum = "7803e0eea25835f8abdc585cd3021b3deb11543c6fe226dcd30b228857c5c5ab"
  3500. dependencies = [
  3501. "proc-macro2",
  3502. "quote",
  3503. "syn",
  3504. "wasm-bindgen-backend",
  3505. "wasm-bindgen-shared",
  3506. ]
  3507. [[package]]
  3508. name = "wasm-bindgen-shared"
  3509. version = "0.2.78"
  3510. source = "registry+https://github.com/rust-lang/crates.io-index"
  3511. checksum = "0237232789cf037d5480773fe568aac745bfe2afbc11a863e97901780a6b47cc"
  3512. [[package]]
  3513. name = "web-sys"
  3514. version = "0.3.55"
  3515. source = "registry+https://github.com/rust-lang/crates.io-index"
  3516. checksum = "38eb105f1c59d9eaa6b5cdc92b859d85b926e82cb2e0945cd0c9259faa6fe9fb"
  3517. dependencies = [
  3518. "js-sys",
  3519. "wasm-bindgen",
  3520. ]
  3521. [[package]]
  3522. name = "webm"
  3523. version = "1.0.2"
  3524. source = "registry+https://github.com/rust-lang/crates.io-index"
  3525. checksum = "ecb047148a12ef1fd8ab26302bca7e82036f005c3073b48e17cc1b44ec577136"
  3526. dependencies = [
  3527. "webm-sys",
  3528. ]
  3529. [[package]]
  3530. name = "webm-sys"
  3531. version = "1.0.2"
  3532. source = "registry+https://github.com/rust-lang/crates.io-index"
  3533. checksum = "e2ef7a997b20442888e2310242e3962935e90fb8aeb8a840bad81ac88d1ac64a"
  3534. dependencies = [
  3535. "cc",
  3536. ]
  3537. [[package]]
  3538. name = "webpki"
  3539. version = "0.22.0"
  3540. source = "registry+https://github.com/rust-lang/crates.io-index"
  3541. checksum = "f095d78192e208183081cc07bc5515ef55216397af48b873e5edcd72637fa1bd"
  3542. dependencies = [
  3543. "ring",
  3544. "untrusted",
  3545. ]
  3546. [[package]]
  3547. name = "weezl"
  3548. version = "0.1.5"
  3549. source = "registry+https://github.com/rust-lang/crates.io-index"
  3550. checksum = "d8b77fdfd5a253be4ab714e4ffa3c49caf146b4de743e97510c0656cf90f1e8e"
  3551. [[package]]
  3552. name = "which"
  3553. version = "3.1.1"
  3554. source = "registry+https://github.com/rust-lang/crates.io-index"
  3555. checksum = "d011071ae14a2f6671d0b74080ae0cd8ebf3a6f8c9589a2cd45f23126fe29724"
  3556. dependencies = [
  3557. "failure",
  3558. "libc",
  3559. ]
  3560. [[package]]
  3561. name = "which"
  3562. version = "4.2.2"
  3563. source = "registry+https://github.com/rust-lang/crates.io-index"
  3564. checksum = "ea187a8ef279bc014ec368c27a920da2024d2a711109bfbe3440585d5cf27ad9"
  3565. dependencies = [
  3566. "either",
  3567. "lazy_static",
  3568. "libc",
  3569. ]
  3570. [[package]]
  3571. name = "whoami"
  3572. version = "1.2.1"
  3573. source = "registry+https://github.com/rust-lang/crates.io-index"
  3574. checksum = "524b58fa5a20a2fb3014dd6358b70e6579692a56ef6fce928834e488f42f65e8"
  3575. dependencies = [
  3576. "wasm-bindgen",
  3577. "web-sys",
  3578. ]
  3579. [[package]]
  3580. name = "widestring"
  3581. version = "0.4.3"
  3582. source = "registry+https://github.com/rust-lang/crates.io-index"
  3583. checksum = "c168940144dd21fd8046987c16a46a33d5fc84eec29ef9dcddc2ac9e31526b7c"
  3584. [[package]]
  3585. name = "winapi"
  3586. version = "0.2.8"
  3587. source = "registry+https://github.com/rust-lang/crates.io-index"
  3588. checksum = "167dc9d6949a9b857f3451275e911c3f44255842c1f7a76f33c55103a909087a"
  3589. [[package]]
  3590. name = "winapi"
  3591. version = "0.3.9"
  3592. source = "registry+https://github.com/rust-lang/crates.io-index"
  3593. checksum = "5c839a674fcd7a98952e593242ea400abe93992746761e38641405d28b00f419"
  3594. dependencies = [
  3595. "winapi-i686-pc-windows-gnu",
  3596. "winapi-x86_64-pc-windows-gnu",
  3597. ]
  3598. [[package]]
  3599. name = "winapi-build"
  3600. version = "0.1.1"
  3601. source = "registry+https://github.com/rust-lang/crates.io-index"
  3602. checksum = "2d315eee3b34aca4797b2da6b13ed88266e6d612562a0c46390af8299fc699bc"
  3603. [[package]]
  3604. name = "winapi-i686-pc-windows-gnu"
  3605. version = "0.4.0"
  3606. source = "registry+https://github.com/rust-lang/crates.io-index"
  3607. checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6"
  3608. [[package]]
  3609. name = "winapi-util"
  3610. version = "0.1.5"
  3611. source = "registry+https://github.com/rust-lang/crates.io-index"
  3612. checksum = "70ec6ce85bb158151cae5e5c87f95a8e97d2c0c4b001223f33a334e3ce5de178"
  3613. dependencies = [
  3614. "winapi 0.3.9",
  3615. ]
  3616. [[package]]
  3617. name = "winapi-wsapoll"
  3618. version = "0.1.1"
  3619. source = "registry+https://github.com/rust-lang/crates.io-index"
  3620. checksum = "44c17110f57155602a80dca10be03852116403c9ff3cd25b079d666f2aa3df6e"
  3621. dependencies = [
  3622. "winapi 0.3.9",
  3623. ]
  3624. [[package]]
  3625. name = "winapi-x86_64-pc-windows-gnu"
  3626. version = "0.4.0"
  3627. source = "registry+https://github.com/rust-lang/crates.io-index"
  3628. checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f"
  3629. [[package]]
  3630. name = "windows-service"
  3631. version = "0.4.0"
  3632. source = "registry+https://github.com/rust-lang/crates.io-index"
  3633. checksum = "0c643e10139d127d30d6d753398c8a6f0a43532e8370f6c9d29ebbff29b984ab"
  3634. dependencies = [
  3635. "bitflags",
  3636. "err-derive",
  3637. "widestring",
  3638. "winapi 0.3.9",
  3639. ]
  3640. [[package]]
  3641. name = "windows-sys"
  3642. version = "0.28.0"
  3643. source = "registry+https://github.com/rust-lang/crates.io-index"
  3644. checksum = "82ca39602d5cbfa692c4b67e3bcbb2751477355141c1ed434c94da4186836ff6"
  3645. dependencies = [
  3646. "windows_aarch64_msvc",
  3647. "windows_i686_gnu",
  3648. "windows_i686_msvc",
  3649. "windows_x86_64_gnu",
  3650. "windows_x86_64_msvc",
  3651. ]
  3652. [[package]]
  3653. name = "windows-win"
  3654. version = "2.4.1"
  3655. source = "registry+https://github.com/rust-lang/crates.io-index"
  3656. checksum = "8d4243ec23afe4e9b4e668b3c0a0e973f1b8265f6a46223cfcbc16fd267480c0"
  3657. dependencies = [
  3658. "winapi 0.3.9",
  3659. ]
  3660. [[package]]
  3661. name = "windows_aarch64_msvc"
  3662. version = "0.28.0"
  3663. source = "registry+https://github.com/rust-lang/crates.io-index"
  3664. checksum = "52695a41e536859d5308cc613b4a022261a274390b25bd29dfff4bf08505f3c2"
  3665. [[package]]
  3666. name = "windows_i686_gnu"
  3667. version = "0.28.0"
  3668. source = "registry+https://github.com/rust-lang/crates.io-index"
  3669. checksum = "f54725ac23affef038fecb177de6c9bf065787c2f432f79e3c373da92f3e1d8a"
  3670. [[package]]
  3671. name = "windows_i686_msvc"
  3672. version = "0.28.0"
  3673. source = "registry+https://github.com/rust-lang/crates.io-index"
  3674. checksum = "51d5158a43cc43623c0729d1ad6647e62fa384a3d135fd15108d37c683461f64"
  3675. [[package]]
  3676. name = "windows_x86_64_gnu"
  3677. version = "0.28.0"
  3678. source = "registry+https://github.com/rust-lang/crates.io-index"
  3679. checksum = "bc31f409f565611535130cfe7ee8e6655d3fa99c1c61013981e491921b5ce954"
  3680. [[package]]
  3681. name = "windows_x86_64_msvc"
  3682. version = "0.28.0"
  3683. source = "registry+https://github.com/rust-lang/crates.io-index"
  3684. checksum = "3f2b8c7cbd3bfdddd9ab98769f9746a7fad1bca236554cd032b78d768bc0e89f"
  3685. [[package]]
  3686. name = "winreg"
  3687. version = "0.6.2"
  3688. source = "registry+https://github.com/rust-lang/crates.io-index"
  3689. checksum = "b2986deb581c4fe11b621998a5e53361efe6b48a151178d0cd9eeffa4dc6acc9"
  3690. dependencies = [
  3691. "winapi 0.3.9",
  3692. ]
  3693. [[package]]
  3694. name = "winreg"
  3695. version = "0.10.1"
  3696. source = "registry+https://github.com/rust-lang/crates.io-index"
  3697. checksum = "80d0f4e272c85def139476380b12f9ac60926689dd2e01d4923222f40580869d"
  3698. dependencies = [
  3699. "winapi 0.3.9",
  3700. ]
  3701. [[package]]
  3702. name = "winres"
  3703. version = "0.1.12"
  3704. source = "registry+https://github.com/rust-lang/crates.io-index"
  3705. checksum = "b68db261ef59e9e52806f688020631e987592bd83619edccda9c47d42cde4f6c"
  3706. dependencies = [
  3707. "toml",
  3708. ]
  3709. [[package]]
  3710. name = "ws2_32-sys"
  3711. version = "0.2.1"
  3712. source = "registry+https://github.com/rust-lang/crates.io-index"
  3713. checksum = "d59cefebd0c892fa2dd6de581e937301d8552cb44489cdff035c6187cb63fa5e"
  3714. dependencies = [
  3715. "winapi 0.2.8",
  3716. "winapi-build",
  3717. ]
  3718. [[package]]
  3719. name = "x11-clipboard"
  3720. version = "0.5.3"
  3721. source = "registry+https://github.com/rust-lang/crates.io-index"
  3722. checksum = "473068b7b80ac86a18328824f1054e5e007898c47b5bbc281bd7abe32bc3653c"
  3723. dependencies = [
  3724. "xcb",
  3725. ]
  3726. [[package]]
  3727. name = "x11rb"
  3728. version = "0.8.1"
  3729. source = "registry+https://github.com/rust-lang/crates.io-index"
  3730. checksum = "6ffb080b3f2f616242a4eb8e7d325035312127901025b0052bc3154a282d0f19"
  3731. dependencies = [
  3732. "gethostname",
  3733. "nix 0.20.0",
  3734. "winapi 0.3.9",
  3735. "winapi-wsapoll",
  3736. ]
  3737. [[package]]
  3738. name = "xcb"
  3739. version = "0.10.1"
  3740. source = "registry+https://github.com/rust-lang/crates.io-index"
  3741. checksum = "771e2b996df720cd1c6dd9ff90f62d91698fd3610cc078388d0564bdd6622a9c"
  3742. dependencies = [
  3743. "libc",
  3744. "log",
  3745. "quick-xml",
  3746. ]
  3747. [[package]]
  3748. name = "zstd"
  3749. version = "0.9.1+zstd.1.5.1"
  3750. source = "registry+https://github.com/rust-lang/crates.io-index"
  3751. checksum = "538b8347df9257b7fbce37677ef7535c00a3c7bf1f81023cc328ed7fe4b41de8"
  3752. dependencies = [
  3753. "zstd-safe",
  3754. ]
  3755. [[package]]
  3756. name = "zstd-safe"
  3757. version = "4.1.2+zstd.1.5.1"
  3758. source = "registry+https://github.com/rust-lang/crates.io-index"
  3759. checksum = "9fb4cfe2f6e6d35c5d27ecd9d256c4b6f7933c4895654917460ec56c29336cc1"
  3760. dependencies = [
  3761. "libc",
  3762. "zstd-sys",
  3763. ]
  3764. [[package]]
  3765. name = "zstd-sys"
  3766. version = "1.6.2+zstd.1.5.1"
  3767. source = "registry+https://github.com/rust-lang/crates.io-index"
  3768. checksum = "2daf2f248d9ea44454bfcb2516534e8b8ad2fc91bf818a1885495fc42bc8ac9f"
  3769. dependencies = [
  3770. "cc",
  3771. "libc",
  3772. ]