Cargo.lock 102 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515
  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.19.0"
  7. source = "registry+https://github.com/rust-lang/crates.io-index"
  8. checksum = "a76fd60b23679b7d19bd066031410fb7e458ccc5e958eb5c325888ce4baedc97"
  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 = "ahash"
  19. version = "0.7.6"
  20. source = "registry+https://github.com/rust-lang/crates.io-index"
  21. checksum = "fcb51a0695d8f838b1ee009b3fbf66bda078cd64590202a864a8f3e8c4315c47"
  22. dependencies = [
  23. "getrandom 0.2.8",
  24. "once_cell",
  25. "version_check",
  26. ]
  27. [[package]]
  28. name = "aho-corasick"
  29. version = "0.7.20"
  30. source = "registry+https://github.com/rust-lang/crates.io-index"
  31. checksum = "cc936419f96fa211c1b9166887b38e5e40b19958e5b895be7c1f93adec7071ac"
  32. dependencies = [
  33. "memchr",
  34. ]
  35. [[package]]
  36. name = "allo-isolate"
  37. version = "0.1.14"
  38. source = "registry+https://github.com/rust-lang/crates.io-index"
  39. checksum = "8ed55848be9f41d44c79df6045b680a74a78bc579e0813f7f196cd7928e22fb1"
  40. dependencies = [
  41. "atomic",
  42. "pin-project",
  43. ]
  44. [[package]]
  45. name = "android_system_properties"
  46. version = "0.1.5"
  47. source = "registry+https://github.com/rust-lang/crates.io-index"
  48. checksum = "819e7219dbd41043ac279b19830f2efc897156490d7fd6ea916720117ee66311"
  49. dependencies = [
  50. "libc",
  51. ]
  52. [[package]]
  53. name = "ansi_term"
  54. version = "0.12.1"
  55. source = "registry+https://github.com/rust-lang/crates.io-index"
  56. checksum = "d52a9bb7ec0cf484c551830a7ce27bd20d67eac647e1befb56b0be4ee39a55d2"
  57. dependencies = [
  58. "winapi",
  59. ]
  60. [[package]]
  61. name = "anyhow"
  62. version = "1.0.68"
  63. source = "registry+https://github.com/rust-lang/crates.io-index"
  64. checksum = "2cb2f989d18dd141ab8ae82f64d1a8cdd37e0840f73a406896cf5e99502fab61"
  65. [[package]]
  66. name = "arrayvec"
  67. version = "0.5.2"
  68. source = "registry+https://github.com/rust-lang/crates.io-index"
  69. checksum = "23b62fc65de8e4e7f52534fb52b0f3ed04746ae267519eef2a83941e8085068b"
  70. [[package]]
  71. name = "arrayvec"
  72. version = "0.7.2"
  73. source = "registry+https://github.com/rust-lang/crates.io-index"
  74. checksum = "8da52d66c7071e2e3fa2a1e5c6d088fec47b593032b254f5e980de8ea54454d6"
  75. [[package]]
  76. name = "async-stream"
  77. version = "0.3.4"
  78. source = "registry+https://github.com/rust-lang/crates.io-index"
  79. checksum = "ad445822218ce64be7a341abfb0b1ea43b5c23aa83902542a4542e78309d8e5e"
  80. dependencies = [
  81. "async-stream-impl",
  82. "futures-core",
  83. "pin-project-lite",
  84. ]
  85. [[package]]
  86. name = "async-stream-impl"
  87. version = "0.3.4"
  88. source = "registry+https://github.com/rust-lang/crates.io-index"
  89. checksum = "e4655ae1a7b0cdf149156f780c5bf3f1352bc53cbd9e0a361a7ef7b22947e965"
  90. dependencies = [
  91. "proc-macro2",
  92. "quote",
  93. "syn",
  94. ]
  95. [[package]]
  96. name = "async-trait"
  97. version = "0.1.64"
  98. source = "registry+https://github.com/rust-lang/crates.io-index"
  99. checksum = "1cd7fce9ba8c3c042128ce72d8b2ddbf3a05747efb67ea0313c635e10bda47a2"
  100. dependencies = [
  101. "proc-macro2",
  102. "quote",
  103. "syn",
  104. ]
  105. [[package]]
  106. name = "atomic"
  107. version = "0.5.1"
  108. source = "registry+https://github.com/rust-lang/crates.io-index"
  109. checksum = "b88d82667eca772c4aa12f0f1348b3ae643424c8876448f3f7bd5787032e234c"
  110. dependencies = [
  111. "autocfg",
  112. ]
  113. [[package]]
  114. name = "atomic_refcell"
  115. version = "0.1.9"
  116. source = "registry+https://github.com/rust-lang/crates.io-index"
  117. checksum = "857253367827bd9d0fd973f0ef15506a96e79e41b0ad7aa691203a4e3214f6c8"
  118. [[package]]
  119. name = "atty"
  120. version = "0.2.14"
  121. source = "registry+https://github.com/rust-lang/crates.io-index"
  122. checksum = "d9b39be18770d11421cdb1b9947a45dd3f37e93092cbf377614828a319d5fee8"
  123. dependencies = [
  124. "hermit-abi 0.1.19",
  125. "libc",
  126. "winapi",
  127. ]
  128. [[package]]
  129. name = "autocfg"
  130. version = "1.1.0"
  131. source = "registry+https://github.com/rust-lang/crates.io-index"
  132. checksum = "d468802bab17cbc0cc575e9b053f41e72aa36bfa6b7f55e3529ffa43161b97fa"
  133. [[package]]
  134. name = "axum"
  135. version = "0.6.7"
  136. source = "registry+https://github.com/rust-lang/crates.io-index"
  137. checksum = "2fb79c228270dcf2426e74864cabc94babb5dbab01a4314e702d2f16540e1591"
  138. dependencies = [
  139. "async-trait",
  140. "axum-core",
  141. "bitflags",
  142. "bytes",
  143. "futures-util",
  144. "http",
  145. "http-body",
  146. "hyper",
  147. "itoa 1.0.5",
  148. "matchit",
  149. "memchr",
  150. "mime",
  151. "percent-encoding",
  152. "pin-project-lite",
  153. "rustversion",
  154. "serde",
  155. "sync_wrapper",
  156. "tower",
  157. "tower-http",
  158. "tower-layer",
  159. "tower-service",
  160. ]
  161. [[package]]
  162. name = "axum-core"
  163. version = "0.3.2"
  164. source = "registry+https://github.com/rust-lang/crates.io-index"
  165. checksum = "1cae3e661676ffbacb30f1a824089a8c9150e71017f7e1e38f2aa32009188d34"
  166. dependencies = [
  167. "async-trait",
  168. "bytes",
  169. "futures-util",
  170. "http",
  171. "http-body",
  172. "mime",
  173. "rustversion",
  174. "tower-layer",
  175. "tower-service",
  176. ]
  177. [[package]]
  178. name = "backtrace"
  179. version = "0.3.67"
  180. source = "registry+https://github.com/rust-lang/crates.io-index"
  181. checksum = "233d376d6d185f2a3093e58f283f60f880315b6c60075b01f36b3b85154564ca"
  182. dependencies = [
  183. "addr2line",
  184. "cc",
  185. "cfg-if",
  186. "libc",
  187. "miniz_oxide",
  188. "object",
  189. "rustc-demangle",
  190. ]
  191. [[package]]
  192. name = "base64"
  193. version = "0.13.1"
  194. source = "registry+https://github.com/rust-lang/crates.io-index"
  195. checksum = "9e1b586273c5702936fe7b7d6896644d8be71e6314cfe09d3167c95f712589e8"
  196. [[package]]
  197. name = "base64"
  198. version = "0.21.0"
  199. source = "registry+https://github.com/rust-lang/crates.io-index"
  200. checksum = "a4a4ddaa51a5bc52a6948f74c06d20aaaddb71924eab79b8c97a8c556e942d6a"
  201. [[package]]
  202. name = "basic-toml"
  203. version = "0.1.1"
  204. source = "registry+https://github.com/rust-lang/crates.io-index"
  205. checksum = "2e819b667739967cd44d308b8c7b71305d8bb0729ac44a248aa08f33d01950b4"
  206. dependencies = [
  207. "serde",
  208. ]
  209. [[package]]
  210. name = "bincode"
  211. version = "1.3.3"
  212. source = "registry+https://github.com/rust-lang/crates.io-index"
  213. checksum = "b1f45e9417d87227c7a56d22e471c6206462cba514c7590c09aff4cf6d1ddcad"
  214. dependencies = [
  215. "serde",
  216. ]
  217. [[package]]
  218. name = "bit-set"
  219. version = "0.5.3"
  220. source = "registry+https://github.com/rust-lang/crates.io-index"
  221. checksum = "0700ddab506f33b20a03b13996eccd309a48e5ff77d0d95926aa0210fb4e95f1"
  222. dependencies = [
  223. "bit-vec",
  224. ]
  225. [[package]]
  226. name = "bit-vec"
  227. version = "0.6.3"
  228. source = "registry+https://github.com/rust-lang/crates.io-index"
  229. checksum = "349f9b6a179ed607305526ca489b34ad0a41aed5f7980fa90eb03160b69598fb"
  230. [[package]]
  231. name = "bitflags"
  232. version = "1.3.2"
  233. source = "registry+https://github.com/rust-lang/crates.io-index"
  234. checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a"
  235. [[package]]
  236. name = "block-buffer"
  237. version = "0.9.0"
  238. source = "registry+https://github.com/rust-lang/crates.io-index"
  239. checksum = "4152116fd6e9dadb291ae18fc1ec3575ed6d84c29642d97890f4b4a3417297e4"
  240. dependencies = [
  241. "generic-array",
  242. ]
  243. [[package]]
  244. name = "block-buffer"
  245. version = "0.10.3"
  246. source = "registry+https://github.com/rust-lang/crates.io-index"
  247. checksum = "69cce20737498f97b993470a6e536b8523f0af7892a4f928cceb1ac5e52ebe7e"
  248. dependencies = [
  249. "generic-array",
  250. ]
  251. [[package]]
  252. name = "borsh"
  253. version = "0.10.2"
  254. source = "registry+https://github.com/rust-lang/crates.io-index"
  255. checksum = "40f9ca3698b2e4cb7c15571db0abc5551dca417a21ae8140460b50309bb2cc62"
  256. dependencies = [
  257. "borsh-derive",
  258. "hashbrown",
  259. ]
  260. [[package]]
  261. name = "borsh-derive"
  262. version = "0.10.2"
  263. source = "registry+https://github.com/rust-lang/crates.io-index"
  264. checksum = "598b3eacc6db9c3ee57b22707ad8f6a8d2f6d442bfe24ffeb8cbb70ca59e6a35"
  265. dependencies = [
  266. "borsh-derive-internal",
  267. "borsh-schema-derive-internal",
  268. "proc-macro-crate",
  269. "proc-macro2",
  270. "syn",
  271. ]
  272. [[package]]
  273. name = "borsh-derive-internal"
  274. version = "0.10.2"
  275. source = "registry+https://github.com/rust-lang/crates.io-index"
  276. checksum = "186b734fa1c9f6743e90c95d7233c9faab6360d1a96d4ffa19d9cfd1e9350f8a"
  277. dependencies = [
  278. "proc-macro2",
  279. "quote",
  280. "syn",
  281. ]
  282. [[package]]
  283. name = "borsh-schema-derive-internal"
  284. version = "0.10.2"
  285. source = "registry+https://github.com/rust-lang/crates.io-index"
  286. checksum = "99b7ff1008316626f485991b960ade129253d4034014616b94f309a15366cc49"
  287. dependencies = [
  288. "proc-macro2",
  289. "quote",
  290. "syn",
  291. ]
  292. [[package]]
  293. name = "bstr"
  294. version = "0.2.17"
  295. source = "registry+https://github.com/rust-lang/crates.io-index"
  296. checksum = "ba3569f383e8f1598449f1a423e72e99569137b47740b1da11ef19af3d5c3223"
  297. dependencies = [
  298. "lazy_static",
  299. "memchr",
  300. "regex-automata",
  301. "serde",
  302. ]
  303. [[package]]
  304. name = "bstr"
  305. version = "1.1.0"
  306. source = "registry+https://github.com/rust-lang/crates.io-index"
  307. checksum = "b45ea9b00a7b3f2988e9a65ad3917e62123c38dba709b666506207be96d1790b"
  308. dependencies = [
  309. "memchr",
  310. "serde",
  311. ]
  312. [[package]]
  313. name = "bumpalo"
  314. version = "3.11.1"
  315. source = "registry+https://github.com/rust-lang/crates.io-index"
  316. checksum = "572f695136211188308f16ad2ca5c851a712c464060ae6974944458eb83880ba"
  317. [[package]]
  318. name = "bytecheck"
  319. version = "0.6.9"
  320. source = "registry+https://github.com/rust-lang/crates.io-index"
  321. checksum = "d11cac2c12b5adc6570dad2ee1b87eff4955dac476fe12d81e5fdd352e52406f"
  322. dependencies = [
  323. "bytecheck_derive",
  324. "ptr_meta",
  325. ]
  326. [[package]]
  327. name = "bytecheck_derive"
  328. version = "0.6.9"
  329. source = "registry+https://github.com/rust-lang/crates.io-index"
  330. checksum = "13e576ebe98e605500b3c8041bb888e966653577172df6dd97398714eb30b9bf"
  331. dependencies = [
  332. "proc-macro2",
  333. "quote",
  334. "syn",
  335. ]
  336. [[package]]
  337. name = "byteorder"
  338. version = "1.4.3"
  339. source = "registry+https://github.com/rust-lang/crates.io-index"
  340. checksum = "14c189c53d098945499cdfa7ecc63567cf3886b3332b312a5b4585d8d3a6a610"
  341. [[package]]
  342. name = "bytes"
  343. version = "1.4.0"
  344. source = "registry+https://github.com/rust-lang/crates.io-index"
  345. checksum = "89b2fd2a0dcf38d7971e2194b6b6eebab45ae01067456a7fd93d5547a61b70be"
  346. dependencies = [
  347. "serde",
  348. ]
  349. [[package]]
  350. name = "cast"
  351. version = "0.3.0"
  352. source = "registry+https://github.com/rust-lang/crates.io-index"
  353. checksum = "37b2a672a2cb129a2e41c10b1224bb368f9f37a2b16b612598138befd7b37eb5"
  354. [[package]]
  355. name = "cc"
  356. version = "1.0.78"
  357. source = "registry+https://github.com/rust-lang/crates.io-index"
  358. checksum = "a20104e2335ce8a659d6dd92a51a767a0c062599c73b343fd152cb401e828c3d"
  359. [[package]]
  360. name = "cfg-if"
  361. version = "1.0.0"
  362. source = "registry+https://github.com/rust-lang/crates.io-index"
  363. checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd"
  364. [[package]]
  365. name = "chrono"
  366. version = "0.4.23"
  367. source = "registry+https://github.com/rust-lang/crates.io-index"
  368. checksum = "16b0a3d9ed01224b22057780a37bb8c5dbfe1be8ba48678e7bf57ec4b385411f"
  369. dependencies = [
  370. "iana-time-zone",
  371. "js-sys",
  372. "num-integer",
  373. "num-traits",
  374. "time",
  375. "wasm-bindgen",
  376. "winapi",
  377. ]
  378. [[package]]
  379. name = "chrono-tz"
  380. version = "0.6.3"
  381. source = "registry+https://github.com/rust-lang/crates.io-index"
  382. checksum = "29c39203181991a7dd4343b8005bd804e7a9a37afb8ac070e43771e8c820bbde"
  383. dependencies = [
  384. "chrono",
  385. "chrono-tz-build",
  386. "phf 0.11.1",
  387. ]
  388. [[package]]
  389. name = "chrono-tz-build"
  390. version = "0.0.3"
  391. source = "registry+https://github.com/rust-lang/crates.io-index"
  392. checksum = "6f509c3a87b33437b05e2458750a0700e5bdd6956176773e6c7d6dd15a283a0c"
  393. dependencies = [
  394. "parse-zoneinfo",
  395. "phf 0.11.1",
  396. "phf_codegen",
  397. ]
  398. [[package]]
  399. name = "clap"
  400. version = "2.34.0"
  401. source = "registry+https://github.com/rust-lang/crates.io-index"
  402. checksum = "a0610544180c38b88101fecf2dd634b174a62eef6946f84dfc6a7127512b381c"
  403. dependencies = [
  404. "bitflags",
  405. "textwrap",
  406. "unicode-width",
  407. ]
  408. [[package]]
  409. name = "cmd_lib"
  410. version = "1.3.0"
  411. source = "registry+https://github.com/rust-lang/crates.io-index"
  412. checksum = "0ba0f413777386d37f85afa5242f277a7b461905254c1af3c339d4af06800f62"
  413. dependencies = [
  414. "cmd_lib_macros",
  415. "faccess",
  416. "lazy_static",
  417. "log",
  418. "os_pipe",
  419. ]
  420. [[package]]
  421. name = "cmd_lib_macros"
  422. version = "1.3.0"
  423. source = "registry+https://github.com/rust-lang/crates.io-index"
  424. checksum = "9e66605092ff6c6e37e0246601ae6c3f62dc1880e0599359b5f303497c112dc0"
  425. dependencies = [
  426. "proc-macro-error",
  427. "proc-macro2",
  428. "quote",
  429. "syn",
  430. ]
  431. [[package]]
  432. name = "codespan-reporting"
  433. version = "0.11.1"
  434. source = "registry+https://github.com/rust-lang/crates.io-index"
  435. checksum = "3538270d33cc669650c4b093848450d380def10c331d38c768e34cac80576e6e"
  436. dependencies = [
  437. "termcolor",
  438. "unicode-width",
  439. ]
  440. [[package]]
  441. name = "color-eyre"
  442. version = "0.5.11"
  443. source = "registry+https://github.com/rust-lang/crates.io-index"
  444. checksum = "1f1885697ee8a177096d42f158922251a41973117f6d8a234cee94b9509157b7"
  445. dependencies = [
  446. "backtrace",
  447. "eyre",
  448. "indenter",
  449. "once_cell",
  450. "owo-colors",
  451. ]
  452. [[package]]
  453. name = "config"
  454. version = "0.10.1"
  455. source = "registry+https://github.com/rust-lang/crates.io-index"
  456. checksum = "19b076e143e1d9538dde65da30f8481c2a6c44040edb8e02b9bf1351edb92ce3"
  457. dependencies = [
  458. "lazy_static",
  459. "nom 5.1.2",
  460. "serde",
  461. "yaml-rust",
  462. ]
  463. [[package]]
  464. name = "console"
  465. version = "0.14.1"
  466. source = "registry+https://github.com/rust-lang/crates.io-index"
  467. checksum = "3993e6445baa160675931ec041a5e03ca84b9c6e32a056150d3aa2bdda0a1f45"
  468. dependencies = [
  469. "encode_unicode",
  470. "lazy_static",
  471. "libc",
  472. "regex",
  473. "terminal_size",
  474. "unicode-width",
  475. "winapi",
  476. ]
  477. [[package]]
  478. name = "console-api"
  479. version = "0.4.0"
  480. source = "registry+https://github.com/rust-lang/crates.io-index"
  481. checksum = "e57ff02e8ad8e06ab9731d5dc72dc23bef9200778eae1a89d555d8c42e5d4a86"
  482. dependencies = [
  483. "prost",
  484. "prost-types",
  485. "tonic",
  486. "tracing-core",
  487. ]
  488. [[package]]
  489. name = "console-subscriber"
  490. version = "0.1.8"
  491. source = "registry+https://github.com/rust-lang/crates.io-index"
  492. checksum = "22a3a81dfaf6b66bce5d159eddae701e3a002f194d378cbf7be5f053c281d9be"
  493. dependencies = [
  494. "console-api",
  495. "crossbeam-channel",
  496. "crossbeam-utils",
  497. "futures",
  498. "hdrhistogram",
  499. "humantime",
  500. "prost-types",
  501. "serde",
  502. "serde_json",
  503. "thread_local",
  504. "tokio",
  505. "tokio-stream",
  506. "tonic",
  507. "tracing",
  508. "tracing-core",
  509. "tracing-subscriber 0.3.16",
  510. ]
  511. [[package]]
  512. name = "convert_case"
  513. version = "0.4.0"
  514. source = "registry+https://github.com/rust-lang/crates.io-index"
  515. checksum = "6245d59a3e82a7fc217c5828a6692dbc6dfb63a0c8c90495621f7b9d79704a0e"
  516. [[package]]
  517. name = "core-foundation"
  518. version = "0.9.3"
  519. source = "registry+https://github.com/rust-lang/crates.io-index"
  520. checksum = "194a7a9e6de53fa55116934067c844d9d749312f75c6f6d0980e8c252f8c2146"
  521. dependencies = [
  522. "core-foundation-sys",
  523. "libc",
  524. ]
  525. [[package]]
  526. name = "core-foundation-sys"
  527. version = "0.8.3"
  528. source = "registry+https://github.com/rust-lang/crates.io-index"
  529. checksum = "5827cebf4670468b8772dd191856768aedcb1b0278a04f989f7766351917b9dc"
  530. [[package]]
  531. name = "cpufeatures"
  532. version = "0.2.5"
  533. source = "registry+https://github.com/rust-lang/crates.io-index"
  534. checksum = "28d997bd5e24a5928dd43e46dc529867e207907fe0b239c3477d924f7f2ca320"
  535. dependencies = [
  536. "libc",
  537. ]
  538. [[package]]
  539. name = "crc32fast"
  540. version = "1.3.2"
  541. source = "registry+https://github.com/rust-lang/crates.io-index"
  542. checksum = "b540bd8bc810d3885c6ea91e2018302f68baba2129ab3e88f32389ee9370880d"
  543. dependencies = [
  544. "cfg-if",
  545. ]
  546. [[package]]
  547. name = "criterion"
  548. version = "0.3.6"
  549. source = "registry+https://github.com/rust-lang/crates.io-index"
  550. checksum = "b01d6de93b2b6c65e17c634a26653a29d107b3c98c607c765bf38d041531cd8f"
  551. dependencies = [
  552. "atty",
  553. "cast",
  554. "clap",
  555. "criterion-plot",
  556. "csv",
  557. "itertools",
  558. "lazy_static",
  559. "num-traits",
  560. "oorandom",
  561. "plotters",
  562. "rayon",
  563. "regex",
  564. "serde",
  565. "serde_cbor",
  566. "serde_derive",
  567. "serde_json",
  568. "tinytemplate",
  569. "walkdir",
  570. ]
  571. [[package]]
  572. name = "criterion-plot"
  573. version = "0.4.5"
  574. source = "registry+https://github.com/rust-lang/crates.io-index"
  575. checksum = "2673cc8207403546f45f5fd319a974b1e6983ad1a3ee7e6041650013be041876"
  576. dependencies = [
  577. "cast",
  578. "itertools",
  579. ]
  580. [[package]]
  581. name = "crossbeam-channel"
  582. version = "0.5.6"
  583. source = "registry+https://github.com/rust-lang/crates.io-index"
  584. checksum = "c2dd04ddaf88237dc3b8d8f9a3c1004b506b54b3313403944054d23c0870c521"
  585. dependencies = [
  586. "cfg-if",
  587. "crossbeam-utils",
  588. ]
  589. [[package]]
  590. name = "crossbeam-deque"
  591. version = "0.8.2"
  592. source = "registry+https://github.com/rust-lang/crates.io-index"
  593. checksum = "715e8152b692bba2d374b53d4875445368fdf21a94751410af607a5ac677d1fc"
  594. dependencies = [
  595. "cfg-if",
  596. "crossbeam-epoch",
  597. "crossbeam-utils",
  598. ]
  599. [[package]]
  600. name = "crossbeam-epoch"
  601. version = "0.9.13"
  602. source = "registry+https://github.com/rust-lang/crates.io-index"
  603. checksum = "01a9af1f4c2ef74bb8aa1f7e19706bc72d03598c8a570bb5de72243c7a9d9d5a"
  604. dependencies = [
  605. "autocfg",
  606. "cfg-if",
  607. "crossbeam-utils",
  608. "memoffset",
  609. "scopeguard",
  610. ]
  611. [[package]]
  612. name = "crossbeam-utils"
  613. version = "0.8.15"
  614. source = "registry+https://github.com/rust-lang/crates.io-index"
  615. checksum = "3c063cd8cc95f5c377ed0d4b49a4b21f632396ff690e8470c29b3359b346984b"
  616. dependencies = [
  617. "cfg-if",
  618. ]
  619. [[package]]
  620. name = "crypto-common"
  621. version = "0.1.6"
  622. source = "registry+https://github.com/rust-lang/crates.io-index"
  623. checksum = "1bfb12502f3fc46cca1bb51ac28df9d618d813cdc3d2f25b9fe775a34af26bb3"
  624. dependencies = [
  625. "generic-array",
  626. "typenum",
  627. ]
  628. [[package]]
  629. name = "csv"
  630. version = "1.1.6"
  631. source = "registry+https://github.com/rust-lang/crates.io-index"
  632. checksum = "22813a6dc45b335f9bade10bf7271dc477e81113e89eb251a0bc2a8a81c536e1"
  633. dependencies = [
  634. "bstr 0.2.17",
  635. "csv-core",
  636. "itoa 0.4.8",
  637. "ryu",
  638. "serde",
  639. ]
  640. [[package]]
  641. name = "csv-core"
  642. version = "0.1.10"
  643. source = "registry+https://github.com/rust-lang/crates.io-index"
  644. checksum = "2b2466559f260f48ad25fe6317b3c8dac77b5bdb5763ac7d9d6103530663bc90"
  645. dependencies = [
  646. "memchr",
  647. ]
  648. [[package]]
  649. name = "cxx"
  650. version = "1.0.86"
  651. source = "registry+https://github.com/rust-lang/crates.io-index"
  652. checksum = "51d1075c37807dcf850c379432f0df05ba52cc30f279c5cfc43cc221ce7f8579"
  653. dependencies = [
  654. "cc",
  655. "cxxbridge-flags",
  656. "cxxbridge-macro",
  657. "link-cplusplus",
  658. ]
  659. [[package]]
  660. name = "cxx-build"
  661. version = "1.0.86"
  662. source = "registry+https://github.com/rust-lang/crates.io-index"
  663. checksum = "5044281f61b27bc598f2f6647d480aed48d2bf52d6eb0b627d84c0361b17aa70"
  664. dependencies = [
  665. "cc",
  666. "codespan-reporting",
  667. "once_cell",
  668. "proc-macro2",
  669. "quote",
  670. "scratch",
  671. "syn",
  672. ]
  673. [[package]]
  674. name = "cxxbridge-flags"
  675. version = "1.0.86"
  676. source = "registry+https://github.com/rust-lang/crates.io-index"
  677. checksum = "61b50bc93ba22c27b0d31128d2d130a0a6b3d267ae27ef7e4fae2167dfe8781c"
  678. [[package]]
  679. name = "cxxbridge-macro"
  680. version = "1.0.86"
  681. source = "registry+https://github.com/rust-lang/crates.io-index"
  682. checksum = "39e61fda7e62115119469c7b3591fd913ecca96fb766cfd3f2e2502ab7bc87a5"
  683. dependencies = [
  684. "proc-macro2",
  685. "quote",
  686. "syn",
  687. ]
  688. [[package]]
  689. name = "dart-ffi"
  690. version = "0.1.0"
  691. dependencies = [
  692. "allo-isolate",
  693. "byteorder",
  694. "bytes",
  695. "crossbeam-utils",
  696. "flowy-codegen",
  697. "flowy-core",
  698. "flowy-derive",
  699. "flowy-notification",
  700. "lazy_static",
  701. "lib-dispatch",
  702. "log",
  703. "parking_lot 0.12.1",
  704. "protobuf",
  705. "serde",
  706. "serde_json",
  707. "tokio",
  708. "tracing",
  709. ]
  710. [[package]]
  711. name = "dashmap"
  712. version = "5.2.0"
  713. source = "registry+https://github.com/rust-lang/crates.io-index"
  714. checksum = "4c8858831f7781322e539ea39e72449c46b059638250c14344fec8d0aa6e539c"
  715. dependencies = [
  716. "cfg-if",
  717. "num_cpus",
  718. "parking_lot 0.12.1",
  719. ]
  720. [[package]]
  721. name = "database-model"
  722. version = "0.1.0"
  723. dependencies = [
  724. "bytes",
  725. "indexmap",
  726. "nanoid",
  727. "serde",
  728. "serde_json",
  729. "serde_repr",
  730. ]
  731. [[package]]
  732. name = "derivative"
  733. version = "2.2.0"
  734. source = "registry+https://github.com/rust-lang/crates.io-index"
  735. checksum = "fcc3dd5e9e9c0b295d6e1e4d811fb6f157d5ffd784b8d202fc62eac8035a770b"
  736. dependencies = [
  737. "proc-macro2",
  738. "quote",
  739. "syn",
  740. ]
  741. [[package]]
  742. name = "derive_more"
  743. version = "0.99.17"
  744. source = "registry+https://github.com/rust-lang/crates.io-index"
  745. checksum = "4fb810d30a7c1953f91334de7244731fc3f3c10d7fe163338a35b9f640960321"
  746. dependencies = [
  747. "convert_case",
  748. "proc-macro2",
  749. "quote",
  750. "rustc_version",
  751. "syn",
  752. ]
  753. [[package]]
  754. name = "deunicode"
  755. version = "0.4.3"
  756. source = "registry+https://github.com/rust-lang/crates.io-index"
  757. checksum = "850878694b7933ca4c9569d30a34b55031b9b139ee1fc7b94a527c4ef960d690"
  758. [[package]]
  759. name = "diesel"
  760. version = "1.4.8"
  761. source = "registry+https://github.com/rust-lang/crates.io-index"
  762. checksum = "b28135ecf6b7d446b43e27e225622a038cc4e2930a1022f51cdb97ada19b8e4d"
  763. dependencies = [
  764. "byteorder",
  765. "diesel_derives",
  766. "libsqlite3-sys",
  767. ]
  768. [[package]]
  769. name = "diesel_derives"
  770. version = "1.4.1"
  771. source = "registry+https://github.com/rust-lang/crates.io-index"
  772. checksum = "45f5098f628d02a7a0f68ddba586fb61e80edec3bdc1be3b921f4ceec60858d3"
  773. dependencies = [
  774. "proc-macro2",
  775. "quote",
  776. "syn",
  777. ]
  778. [[package]]
  779. name = "diesel_migrations"
  780. version = "1.4.0"
  781. source = "registry+https://github.com/rust-lang/crates.io-index"
  782. checksum = "bf3cde8413353dc7f5d72fa8ce0b99a560a359d2c5ef1e5817ca731cd9008f4c"
  783. dependencies = [
  784. "migrations_internals",
  785. "migrations_macros",
  786. ]
  787. [[package]]
  788. name = "digest"
  789. version = "0.9.0"
  790. source = "registry+https://github.com/rust-lang/crates.io-index"
  791. checksum = "d3dd60d1080a57a05ab032377049e0591415d2b31afd7028356dbf3cc6dcb066"
  792. dependencies = [
  793. "generic-array",
  794. ]
  795. [[package]]
  796. name = "digest"
  797. version = "0.10.6"
  798. source = "registry+https://github.com/rust-lang/crates.io-index"
  799. checksum = "8168378f4e5023e7218c89c891c0fd8ecdb5e5e4f18cb78f38cf245dd021e76f"
  800. dependencies = [
  801. "block-buffer 0.10.3",
  802. "crypto-common",
  803. ]
  804. [[package]]
  805. name = "dissimilar"
  806. version = "1.0.5"
  807. source = "registry+https://github.com/rust-lang/crates.io-index"
  808. checksum = "bd5f0c7e4bd266b8ab2550e6238d2e74977c23c15536ac7be45e9c95e2e3fbbb"
  809. [[package]]
  810. name = "document-model"
  811. version = "0.1.0"
  812. dependencies = [
  813. "revision-model",
  814. "serde",
  815. "serde_json",
  816. ]
  817. [[package]]
  818. name = "dyn-clone"
  819. version = "1.0.10"
  820. source = "registry+https://github.com/rust-lang/crates.io-index"
  821. checksum = "c9b0705efd4599c15a38151f4721f7bc388306f61084d3bfd50bd07fbca5cb60"
  822. [[package]]
  823. name = "either"
  824. version = "1.8.0"
  825. source = "registry+https://github.com/rust-lang/crates.io-index"
  826. checksum = "90e5c1c8368803113bf0c9584fc495a58b86dc8a29edbf8fe877d21d9507e797"
  827. [[package]]
  828. name = "encode_unicode"
  829. version = "0.3.6"
  830. source = "registry+https://github.com/rust-lang/crates.io-index"
  831. checksum = "a357d28ed41a50f9c765dbfe56cbc04a64e53e5fc58ba79fbc34c10ef3df831f"
  832. [[package]]
  833. name = "encoding_rs"
  834. version = "0.8.31"
  835. source = "registry+https://github.com/rust-lang/crates.io-index"
  836. checksum = "9852635589dc9f9ea1b6fe9f05b50ef208c85c834a562f0c6abb1c475736ec2b"
  837. dependencies = [
  838. "cfg-if",
  839. ]
  840. [[package]]
  841. name = "env_logger"
  842. version = "0.8.4"
  843. source = "registry+https://github.com/rust-lang/crates.io-index"
  844. checksum = "a19187fea3ac7e84da7dacf48de0c45d63c6a76f9490dae389aead16c243fce3"
  845. dependencies = [
  846. "log",
  847. "regex",
  848. ]
  849. [[package]]
  850. name = "error-chain"
  851. version = "0.12.0"
  852. source = "registry+https://github.com/rust-lang/crates.io-index"
  853. checksum = "07e791d3be96241c77c43846b665ef1384606da2cd2a48730abe606a12906e02"
  854. dependencies = [
  855. "backtrace",
  856. ]
  857. [[package]]
  858. name = "eyre"
  859. version = "0.6.8"
  860. source = "registry+https://github.com/rust-lang/crates.io-index"
  861. checksum = "4c2b6b5a29c02cdc822728b7d7b8ae1bab3e3b05d44522770ddd49722eeac7eb"
  862. dependencies = [
  863. "indenter",
  864. "once_cell",
  865. ]
  866. [[package]]
  867. name = "faccess"
  868. version = "0.2.4"
  869. source = "registry+https://github.com/rust-lang/crates.io-index"
  870. checksum = "59ae66425802d6a903e268ae1a08b8c38ba143520f227a205edf4e9c7e3e26d5"
  871. dependencies = [
  872. "bitflags",
  873. "libc",
  874. "winapi",
  875. ]
  876. [[package]]
  877. name = "fake"
  878. version = "2.5.0"
  879. source = "registry+https://github.com/rust-lang/crates.io-index"
  880. checksum = "4d68f517805463f3a896a9d29c1d6ff09d3579ded64a7201b4069f8f9c0d52fd"
  881. dependencies = [
  882. "rand 0.8.5",
  883. ]
  884. [[package]]
  885. name = "fancy-regex"
  886. version = "0.10.0"
  887. source = "registry+https://github.com/rust-lang/crates.io-index"
  888. checksum = "0678ab2d46fa5195aaf59ad034c083d351377d4af57f3e073c074d0da3e3c766"
  889. dependencies = [
  890. "bit-set",
  891. "regex",
  892. ]
  893. [[package]]
  894. name = "fancy-regex"
  895. version = "0.11.0"
  896. source = "registry+https://github.com/rust-lang/crates.io-index"
  897. checksum = "b95f7c0680e4142284cf8b22c14a476e87d61b004a3a0861872b32ef7ead40a2"
  898. dependencies = [
  899. "bit-set",
  900. "regex",
  901. ]
  902. [[package]]
  903. name = "fastrand"
  904. version = "1.8.0"
  905. source = "registry+https://github.com/rust-lang/crates.io-index"
  906. checksum = "a7a407cfaa3385c4ae6b23e84623d48c2798d06e3e6a1878f7f59f17b3f86499"
  907. dependencies = [
  908. "instant",
  909. ]
  910. [[package]]
  911. name = "flate2"
  912. version = "1.0.25"
  913. source = "registry+https://github.com/rust-lang/crates.io-index"
  914. checksum = "a8a2db397cb1c8772f31494cb8917e48cd1e64f0fa7efac59fbd741a0a8ce841"
  915. dependencies = [
  916. "crc32fast",
  917. "miniz_oxide",
  918. ]
  919. [[package]]
  920. name = "flowy-ast"
  921. version = "0.1.0"
  922. dependencies = [
  923. "proc-macro2",
  924. "quote",
  925. "syn",
  926. ]
  927. [[package]]
  928. name = "flowy-client-network-config"
  929. version = "0.1.0"
  930. dependencies = [
  931. "config",
  932. "serde",
  933. "serde-aux",
  934. "serde_json",
  935. ]
  936. [[package]]
  937. name = "flowy-client-sync"
  938. version = "0.1.0"
  939. dependencies = [
  940. "bytes",
  941. "chrono",
  942. "database-model",
  943. "dissimilar",
  944. "document-model",
  945. "flowy-derive",
  946. "flowy-sync",
  947. "folder-model",
  948. "lib-infra",
  949. "lib-ot",
  950. "parking_lot 0.12.1",
  951. "revision-model",
  952. "serde",
  953. "serde_json",
  954. "strum",
  955. "strum_macros",
  956. "tokio",
  957. "tracing",
  958. "url",
  959. ]
  960. [[package]]
  961. name = "flowy-client-ws"
  962. version = "0.1.0"
  963. dependencies = [
  964. "futures-util",
  965. "lib-infra",
  966. "lib-ws",
  967. "parking_lot 0.12.1",
  968. "serde",
  969. "serde_repr",
  970. "thiserror",
  971. "tokio",
  972. "tracing",
  973. ]
  974. [[package]]
  975. name = "flowy-codegen"
  976. version = "0.1.0"
  977. dependencies = [
  978. "cmd_lib",
  979. "console",
  980. "fancy-regex 0.10.0",
  981. "flowy-ast",
  982. "itertools",
  983. "lazy_static",
  984. "log",
  985. "phf 0.8.0",
  986. "protoc-bin-vendored",
  987. "protoc-rust",
  988. "quote",
  989. "serde",
  990. "serde_json",
  991. "similar",
  992. "syn",
  993. "tera",
  994. "toml",
  995. "walkdir",
  996. ]
  997. [[package]]
  998. name = "flowy-core"
  999. version = "0.1.0"
  1000. dependencies = [
  1001. "bytes",
  1002. "console-subscriber",
  1003. "database-model",
  1004. "flowy-client-ws",
  1005. "flowy-database",
  1006. "flowy-document",
  1007. "flowy-error",
  1008. "flowy-folder",
  1009. "flowy-net",
  1010. "flowy-revision",
  1011. "flowy-sqlite",
  1012. "flowy-task",
  1013. "flowy-user",
  1014. "futures-core",
  1015. "lib-dispatch",
  1016. "lib-infra",
  1017. "lib-log",
  1018. "lib-ws",
  1019. "parking_lot 0.12.1",
  1020. "revision-model",
  1021. "serde",
  1022. "serde_json",
  1023. "tokio",
  1024. "tracing",
  1025. "user-model",
  1026. "ws-model",
  1027. ]
  1028. [[package]]
  1029. name = "flowy-database"
  1030. version = "0.1.0"
  1031. dependencies = [
  1032. "anyhow",
  1033. "async-stream",
  1034. "atomic_refcell",
  1035. "bytes",
  1036. "chrono",
  1037. "crossbeam-utils",
  1038. "csv",
  1039. "dashmap",
  1040. "database-model",
  1041. "diesel",
  1042. "fancy-regex 0.10.0",
  1043. "flowy-client-sync",
  1044. "flowy-codegen",
  1045. "flowy-database",
  1046. "flowy-derive",
  1047. "flowy-error",
  1048. "flowy-notification",
  1049. "flowy-revision",
  1050. "flowy-revision-persistence",
  1051. "flowy-sqlite",
  1052. "flowy-task",
  1053. "flowy-test",
  1054. "futures",
  1055. "indexmap",
  1056. "lazy_static",
  1057. "lib-dispatch",
  1058. "lib-infra",
  1059. "lib-ot",
  1060. "nanoid",
  1061. "parking_lot 0.12.1",
  1062. "protobuf",
  1063. "rayon",
  1064. "regex",
  1065. "revision-model",
  1066. "rust_decimal",
  1067. "rusty-money",
  1068. "serde",
  1069. "serde_json",
  1070. "serde_repr",
  1071. "strum",
  1072. "strum_macros",
  1073. "tokio",
  1074. "tracing",
  1075. "url",
  1076. ]
  1077. [[package]]
  1078. name = "flowy-derive"
  1079. version = "0.1.0"
  1080. dependencies = [
  1081. "dashmap",
  1082. "flowy-ast",
  1083. "flowy-codegen",
  1084. "lazy_static",
  1085. "log",
  1086. "proc-macro2",
  1087. "quote",
  1088. "serde_json",
  1089. "syn",
  1090. "tokio",
  1091. "trybuild",
  1092. "walkdir",
  1093. ]
  1094. [[package]]
  1095. name = "flowy-document"
  1096. version = "0.1.0"
  1097. dependencies = [
  1098. "async-stream",
  1099. "bytes",
  1100. "chrono",
  1101. "color-eyre",
  1102. "criterion",
  1103. "dashmap",
  1104. "derive_more",
  1105. "diesel",
  1106. "diesel_derives",
  1107. "document-model",
  1108. "flowy-client-sync",
  1109. "flowy-codegen",
  1110. "flowy-derive",
  1111. "flowy-document",
  1112. "flowy-error",
  1113. "flowy-notification",
  1114. "flowy-revision",
  1115. "flowy-revision-persistence",
  1116. "flowy-sqlite",
  1117. "flowy-test",
  1118. "futures",
  1119. "futures-util",
  1120. "lib-dispatch",
  1121. "lib-infra",
  1122. "lib-ot",
  1123. "lib-ws",
  1124. "md5",
  1125. "protobuf",
  1126. "rand 0.8.5",
  1127. "revision-model",
  1128. "serde",
  1129. "serde_json",
  1130. "strum",
  1131. "strum_macros",
  1132. "tokio",
  1133. "tracing",
  1134. "tracing-subscriber 0.2.25",
  1135. "unicode-segmentation",
  1136. "url",
  1137. "ws-model",
  1138. ]
  1139. [[package]]
  1140. name = "flowy-error"
  1141. version = "0.1.0"
  1142. dependencies = [
  1143. "anyhow",
  1144. "bytes",
  1145. "flowy-client-sync",
  1146. "flowy-client-ws",
  1147. "flowy-codegen",
  1148. "flowy-derive",
  1149. "flowy-sqlite",
  1150. "http-error-code",
  1151. "lib-dispatch",
  1152. "lib-ot",
  1153. "protobuf",
  1154. "r2d2",
  1155. "reqwest",
  1156. "serde",
  1157. "serde_json",
  1158. "serde_repr",
  1159. "thiserror",
  1160. "user-model",
  1161. ]
  1162. [[package]]
  1163. name = "flowy-folder"
  1164. version = "0.1.0"
  1165. dependencies = [
  1166. "bytes",
  1167. "diesel",
  1168. "diesel_derives",
  1169. "flowy-client-sync",
  1170. "flowy-codegen",
  1171. "flowy-derive",
  1172. "flowy-document",
  1173. "flowy-error",
  1174. "flowy-folder",
  1175. "flowy-notification",
  1176. "flowy-revision",
  1177. "flowy-revision-persistence",
  1178. "flowy-sqlite",
  1179. "flowy-test",
  1180. "folder-model",
  1181. "futures",
  1182. "lazy_static",
  1183. "lib-dispatch",
  1184. "lib-infra",
  1185. "lib-ot",
  1186. "log",
  1187. "parking_lot 0.12.1",
  1188. "pin-project",
  1189. "protobuf",
  1190. "revision-model",
  1191. "serde",
  1192. "serde_json",
  1193. "strum",
  1194. "strum_macros",
  1195. "tokio",
  1196. "tracing",
  1197. "unicode-segmentation",
  1198. "ws-model",
  1199. ]
  1200. [[package]]
  1201. name = "flowy-net"
  1202. version = "0.1.0"
  1203. dependencies = [
  1204. "anyhow",
  1205. "async-stream",
  1206. "bytes",
  1207. "config",
  1208. "dashmap",
  1209. "document-model",
  1210. "flowy-client-network-config",
  1211. "flowy-client-sync",
  1212. "flowy-client-ws",
  1213. "flowy-codegen",
  1214. "flowy-derive",
  1215. "flowy-document",
  1216. "flowy-error",
  1217. "flowy-folder",
  1218. "flowy-server-sync",
  1219. "flowy-sync",
  1220. "flowy-user",
  1221. "folder-model",
  1222. "futures-util",
  1223. "hyper",
  1224. "lazy_static",
  1225. "lib-dispatch",
  1226. "lib-infra",
  1227. "lib-ws",
  1228. "nanoid",
  1229. "parking_lot 0.12.1",
  1230. "protobuf",
  1231. "reqwest",
  1232. "revision-model",
  1233. "serde",
  1234. "serde-aux",
  1235. "serde_json",
  1236. "strum",
  1237. "strum_macros",
  1238. "thiserror",
  1239. "tokio",
  1240. "tracing",
  1241. "user-model",
  1242. "ws-model",
  1243. ]
  1244. [[package]]
  1245. name = "flowy-notification"
  1246. version = "0.1.0"
  1247. dependencies = [
  1248. "bytes",
  1249. "flowy-codegen",
  1250. "flowy-derive",
  1251. "lazy_static",
  1252. "lib-dispatch",
  1253. "protobuf",
  1254. "serde",
  1255. "tracing",
  1256. ]
  1257. [[package]]
  1258. name = "flowy-revision"
  1259. version = "0.1.0"
  1260. dependencies = [
  1261. "async-stream",
  1262. "bytes",
  1263. "dashmap",
  1264. "flowy-error",
  1265. "flowy-revision",
  1266. "flowy-revision-persistence",
  1267. "futures",
  1268. "futures-util",
  1269. "lib-infra",
  1270. "lib-ws",
  1271. "nanoid",
  1272. "parking_lot 0.12.1",
  1273. "revision-model",
  1274. "serde",
  1275. "serde_json",
  1276. "strum",
  1277. "strum_macros",
  1278. "tokio",
  1279. "tracing",
  1280. "ws-model",
  1281. ]
  1282. [[package]]
  1283. name = "flowy-revision-persistence"
  1284. version = "0.1.0"
  1285. dependencies = [
  1286. "flowy-error",
  1287. "revision-model",
  1288. ]
  1289. [[package]]
  1290. name = "flowy-server-sync"
  1291. version = "0.1.0"
  1292. dependencies = [
  1293. "async-stream",
  1294. "bytes",
  1295. "dashmap",
  1296. "document-model",
  1297. "flowy-sync",
  1298. "folder-model",
  1299. "futures",
  1300. "lib-infra",
  1301. "lib-ot",
  1302. "log",
  1303. "revision-model",
  1304. "serde",
  1305. "tokio",
  1306. "tracing",
  1307. "ws-model",
  1308. ]
  1309. [[package]]
  1310. name = "flowy-sqlite"
  1311. version = "0.1.0"
  1312. dependencies = [
  1313. "diesel",
  1314. "diesel_derives",
  1315. "diesel_migrations",
  1316. "error-chain",
  1317. "lazy_static",
  1318. "libsqlite3-sys",
  1319. "openssl",
  1320. "openssl-sys",
  1321. "r2d2",
  1322. "scheduled-thread-pool",
  1323. "tracing",
  1324. ]
  1325. [[package]]
  1326. name = "flowy-sync"
  1327. version = "0.1.0"
  1328. dependencies = [
  1329. "document-model",
  1330. "folder-model",
  1331. "lib-infra",
  1332. "lib-ot",
  1333. "parking_lot 0.12.1",
  1334. "revision-model",
  1335. "serde",
  1336. "strum",
  1337. "strum_macros",
  1338. "tokio",
  1339. "tracing",
  1340. "ws-model",
  1341. ]
  1342. [[package]]
  1343. name = "flowy-task"
  1344. version = "0.1.0"
  1345. dependencies = [
  1346. "anyhow",
  1347. "atomic_refcell",
  1348. "futures",
  1349. "lib-infra",
  1350. "rand 0.8.5",
  1351. "tokio",
  1352. "tracing",
  1353. ]
  1354. [[package]]
  1355. name = "flowy-test"
  1356. version = "0.1.0"
  1357. dependencies = [
  1358. "bytes",
  1359. "fake",
  1360. "flowy-client-sync",
  1361. "flowy-core",
  1362. "flowy-document",
  1363. "flowy-folder",
  1364. "flowy-net",
  1365. "flowy-user",
  1366. "futures",
  1367. "futures-util",
  1368. "lib-dispatch",
  1369. "lib-infra",
  1370. "lib-ot",
  1371. "log",
  1372. "nanoid",
  1373. "protobuf",
  1374. "quickcheck",
  1375. "quickcheck_macros",
  1376. "serde",
  1377. "serde_json",
  1378. "serial_test",
  1379. "thread-id",
  1380. "tokio",
  1381. ]
  1382. [[package]]
  1383. name = "flowy-user"
  1384. version = "0.1.0"
  1385. dependencies = [
  1386. "bytes",
  1387. "diesel",
  1388. "diesel_derives",
  1389. "flowy-codegen",
  1390. "flowy-derive",
  1391. "flowy-error",
  1392. "flowy-notification",
  1393. "flowy-sqlite",
  1394. "flowy-test",
  1395. "lazy_static",
  1396. "lib-dispatch",
  1397. "lib-infra",
  1398. "log",
  1399. "nanoid",
  1400. "once_cell",
  1401. "parking_lot 0.12.1",
  1402. "protobuf",
  1403. "serde",
  1404. "serde_json",
  1405. "strum",
  1406. "strum_macros",
  1407. "tokio",
  1408. "tracing",
  1409. "user-model",
  1410. ]
  1411. [[package]]
  1412. name = "fnv"
  1413. version = "1.0.7"
  1414. source = "registry+https://github.com/rust-lang/crates.io-index"
  1415. checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1"
  1416. [[package]]
  1417. name = "folder-model"
  1418. version = "0.1.0"
  1419. dependencies = [
  1420. "chrono",
  1421. "nanoid",
  1422. "serde",
  1423. "serde_repr",
  1424. ]
  1425. [[package]]
  1426. name = "foreign-types"
  1427. version = "0.3.2"
  1428. source = "registry+https://github.com/rust-lang/crates.io-index"
  1429. checksum = "f6f339eb8adc052cd2ca78910fda869aefa38d22d5cb648e6485e4d3fc06f3b1"
  1430. dependencies = [
  1431. "foreign-types-shared",
  1432. ]
  1433. [[package]]
  1434. name = "foreign-types-shared"
  1435. version = "0.1.1"
  1436. source = "registry+https://github.com/rust-lang/crates.io-index"
  1437. checksum = "00b0228411908ca8685dba7fc2cdd70ec9990a6e753e89b6ac91a84c40fbaf4b"
  1438. [[package]]
  1439. name = "form_urlencoded"
  1440. version = "1.1.0"
  1441. source = "registry+https://github.com/rust-lang/crates.io-index"
  1442. checksum = "a9c384f161156f5260c24a097c56119f9be8c798586aecc13afbcbe7b7e26bf8"
  1443. dependencies = [
  1444. "percent-encoding",
  1445. ]
  1446. [[package]]
  1447. name = "futures"
  1448. version = "0.3.26"
  1449. source = "registry+https://github.com/rust-lang/crates.io-index"
  1450. checksum = "13e2792b0ff0340399d58445b88fd9770e3489eff258a4cbc1523418f12abf84"
  1451. dependencies = [
  1452. "futures-channel",
  1453. "futures-core",
  1454. "futures-executor",
  1455. "futures-io",
  1456. "futures-sink",
  1457. "futures-task",
  1458. "futures-util",
  1459. ]
  1460. [[package]]
  1461. name = "futures-channel"
  1462. version = "0.3.26"
  1463. source = "registry+https://github.com/rust-lang/crates.io-index"
  1464. checksum = "2e5317663a9089767a1ec00a487df42e0ca174b61b4483213ac24448e4664df5"
  1465. dependencies = [
  1466. "futures-core",
  1467. "futures-sink",
  1468. ]
  1469. [[package]]
  1470. name = "futures-core"
  1471. version = "0.3.26"
  1472. source = "registry+https://github.com/rust-lang/crates.io-index"
  1473. checksum = "ec90ff4d0fe1f57d600049061dc6bb68ed03c7d2fbd697274c41805dcb3f8608"
  1474. [[package]]
  1475. name = "futures-executor"
  1476. version = "0.3.26"
  1477. source = "registry+https://github.com/rust-lang/crates.io-index"
  1478. checksum = "e8de0a35a6ab97ec8869e32a2473f4b1324459e14c29275d14b10cb1fd19b50e"
  1479. dependencies = [
  1480. "futures-core",
  1481. "futures-task",
  1482. "futures-util",
  1483. ]
  1484. [[package]]
  1485. name = "futures-io"
  1486. version = "0.3.26"
  1487. source = "registry+https://github.com/rust-lang/crates.io-index"
  1488. checksum = "bfb8371b6fb2aeb2d280374607aeabfc99d95c72edfe51692e42d3d7f0d08531"
  1489. [[package]]
  1490. name = "futures-macro"
  1491. version = "0.3.26"
  1492. source = "registry+https://github.com/rust-lang/crates.io-index"
  1493. checksum = "95a73af87da33b5acf53acfebdc339fe592ecf5357ac7c0a7734ab9d8c876a70"
  1494. dependencies = [
  1495. "proc-macro2",
  1496. "quote",
  1497. "syn",
  1498. ]
  1499. [[package]]
  1500. name = "futures-sink"
  1501. version = "0.3.26"
  1502. source = "registry+https://github.com/rust-lang/crates.io-index"
  1503. checksum = "f310820bb3e8cfd46c80db4d7fb8353e15dfff853a127158425f31e0be6c8364"
  1504. [[package]]
  1505. name = "futures-task"
  1506. version = "0.3.26"
  1507. source = "registry+https://github.com/rust-lang/crates.io-index"
  1508. checksum = "dcf79a1bf610b10f42aea489289c5a2c478a786509693b80cd39c44ccd936366"
  1509. [[package]]
  1510. name = "futures-util"
  1511. version = "0.3.26"
  1512. source = "registry+https://github.com/rust-lang/crates.io-index"
  1513. checksum = "9c1d6de3acfef38d2be4b1f543f553131788603495be83da675e180c8d6b7bd1"
  1514. dependencies = [
  1515. "futures-channel",
  1516. "futures-core",
  1517. "futures-io",
  1518. "futures-macro",
  1519. "futures-sink",
  1520. "futures-task",
  1521. "memchr",
  1522. "pin-project-lite",
  1523. "pin-utils",
  1524. "slab",
  1525. ]
  1526. [[package]]
  1527. name = "generic-array"
  1528. version = "0.14.6"
  1529. source = "registry+https://github.com/rust-lang/crates.io-index"
  1530. checksum = "bff49e947297f3312447abdca79f45f4738097cc82b06e72054d2223f601f1b9"
  1531. dependencies = [
  1532. "typenum",
  1533. "version_check",
  1534. ]
  1535. [[package]]
  1536. name = "gethostname"
  1537. version = "0.2.3"
  1538. source = "registry+https://github.com/rust-lang/crates.io-index"
  1539. checksum = "c1ebd34e35c46e00bb73e81363248d627782724609fe1b6396f553f68fe3862e"
  1540. dependencies = [
  1541. "libc",
  1542. "winapi",
  1543. ]
  1544. [[package]]
  1545. name = "getrandom"
  1546. version = "0.1.16"
  1547. source = "registry+https://github.com/rust-lang/crates.io-index"
  1548. checksum = "8fc3cb4d91f53b50155bdcfd23f6a4c39ae1969c2ae85982b135750cccaf5fce"
  1549. dependencies = [
  1550. "cfg-if",
  1551. "libc",
  1552. "wasi 0.9.0+wasi-snapshot-preview1",
  1553. ]
  1554. [[package]]
  1555. name = "getrandom"
  1556. version = "0.2.8"
  1557. source = "registry+https://github.com/rust-lang/crates.io-index"
  1558. checksum = "c05aeb6a22b8f62540c194aac980f2115af067bfe15a0734d7277a768d396b31"
  1559. dependencies = [
  1560. "cfg-if",
  1561. "libc",
  1562. "wasi 0.11.0+wasi-snapshot-preview1",
  1563. ]
  1564. [[package]]
  1565. name = "gimli"
  1566. version = "0.27.0"
  1567. source = "registry+https://github.com/rust-lang/crates.io-index"
  1568. checksum = "dec7af912d60cdbd3677c1af9352ebae6fb8394d165568a2234df0fa00f87793"
  1569. [[package]]
  1570. name = "glob"
  1571. version = "0.3.1"
  1572. source = "registry+https://github.com/rust-lang/crates.io-index"
  1573. checksum = "d2fabcfbdc87f4758337ca535fb41a6d701b65693ce38287d856d1674551ec9b"
  1574. [[package]]
  1575. name = "globset"
  1576. version = "0.4.10"
  1577. source = "registry+https://github.com/rust-lang/crates.io-index"
  1578. checksum = "029d74589adefde59de1a0c4f4732695c32805624aec7b68d91503d4dba79afc"
  1579. dependencies = [
  1580. "aho-corasick",
  1581. "bstr 1.1.0",
  1582. "fnv",
  1583. "log",
  1584. "regex",
  1585. ]
  1586. [[package]]
  1587. name = "globwalk"
  1588. version = "0.8.1"
  1589. source = "registry+https://github.com/rust-lang/crates.io-index"
  1590. checksum = "93e3af942408868f6934a7b85134a3230832b9977cf66125df2f9edcfce4ddcc"
  1591. dependencies = [
  1592. "bitflags",
  1593. "ignore",
  1594. "walkdir",
  1595. ]
  1596. [[package]]
  1597. name = "h2"
  1598. version = "0.3.15"
  1599. source = "registry+https://github.com/rust-lang/crates.io-index"
  1600. checksum = "5f9f29bc9dda355256b2916cf526ab02ce0aeaaaf2bad60d65ef3f12f11dd0f4"
  1601. dependencies = [
  1602. "bytes",
  1603. "fnv",
  1604. "futures-core",
  1605. "futures-sink",
  1606. "futures-util",
  1607. "http",
  1608. "indexmap",
  1609. "slab",
  1610. "tokio",
  1611. "tokio-util",
  1612. "tracing",
  1613. ]
  1614. [[package]]
  1615. name = "half"
  1616. version = "1.8.2"
  1617. source = "registry+https://github.com/rust-lang/crates.io-index"
  1618. checksum = "eabb4a44450da02c90444cf74558da904edde8fb4e9035a9a6a4e15445af0bd7"
  1619. [[package]]
  1620. name = "hashbrown"
  1621. version = "0.12.3"
  1622. source = "registry+https://github.com/rust-lang/crates.io-index"
  1623. checksum = "8a9ee70c43aaf417c914396645a0fa852624801b24ebb7ae78fe8272889ac888"
  1624. dependencies = [
  1625. "ahash",
  1626. ]
  1627. [[package]]
  1628. name = "hdrhistogram"
  1629. version = "7.5.2"
  1630. source = "registry+https://github.com/rust-lang/crates.io-index"
  1631. checksum = "7f19b9f54f7c7f55e31401bb647626ce0cf0f67b0004982ce815b3ee72a02aa8"
  1632. dependencies = [
  1633. "base64 0.13.1",
  1634. "byteorder",
  1635. "flate2",
  1636. "nom 7.1.3",
  1637. "num-traits",
  1638. ]
  1639. [[package]]
  1640. name = "heck"
  1641. version = "0.3.3"
  1642. source = "registry+https://github.com/rust-lang/crates.io-index"
  1643. checksum = "6d621efb26863f0e9924c6ac577e8275e5e6b77455db64ffa6c65c904e9e132c"
  1644. dependencies = [
  1645. "unicode-segmentation",
  1646. ]
  1647. [[package]]
  1648. name = "hermit-abi"
  1649. version = "0.1.19"
  1650. source = "registry+https://github.com/rust-lang/crates.io-index"
  1651. checksum = "62b467343b94ba476dcb2500d242dadbb39557df889310ac77c5d99100aaac33"
  1652. dependencies = [
  1653. "libc",
  1654. ]
  1655. [[package]]
  1656. name = "hermit-abi"
  1657. version = "0.2.6"
  1658. source = "registry+https://github.com/rust-lang/crates.io-index"
  1659. checksum = "ee512640fe35acbfb4bb779db6f0d80704c2cacfa2e39b601ef3e3f47d1ae4c7"
  1660. dependencies = [
  1661. "libc",
  1662. ]
  1663. [[package]]
  1664. name = "http"
  1665. version = "0.2.8"
  1666. source = "registry+https://github.com/rust-lang/crates.io-index"
  1667. checksum = "75f43d41e26995c17e71ee126451dd3941010b0514a81a9d11f3b341debc2399"
  1668. dependencies = [
  1669. "bytes",
  1670. "fnv",
  1671. "itoa 1.0.5",
  1672. ]
  1673. [[package]]
  1674. name = "http-body"
  1675. version = "0.4.5"
  1676. source = "registry+https://github.com/rust-lang/crates.io-index"
  1677. checksum = "d5f38f16d184e36f2408a55281cd658ecbd3ca05cce6d6510a176eca393e26d1"
  1678. dependencies = [
  1679. "bytes",
  1680. "http",
  1681. "pin-project-lite",
  1682. ]
  1683. [[package]]
  1684. name = "http-error-code"
  1685. version = "0.1.0"
  1686. source = "git+https://github.com/AppFlowy-IO/AppFlowy-Server?branch=refactor/appflowy_server#1ccd296de8530760d92652dbd9f38f27178059b6"
  1687. dependencies = [
  1688. "serde",
  1689. "serde_repr",
  1690. "thiserror",
  1691. ]
  1692. [[package]]
  1693. name = "http-range-header"
  1694. version = "0.3.0"
  1695. source = "registry+https://github.com/rust-lang/crates.io-index"
  1696. checksum = "0bfe8eed0a9285ef776bb792479ea3834e8b94e13d615c2f66d03dd50a435a29"
  1697. [[package]]
  1698. name = "httparse"
  1699. version = "1.8.0"
  1700. source = "registry+https://github.com/rust-lang/crates.io-index"
  1701. checksum = "d897f394bad6a705d5f4104762e116a75639e470d80901eed05a860a95cb1904"
  1702. [[package]]
  1703. name = "httpdate"
  1704. version = "1.0.2"
  1705. source = "registry+https://github.com/rust-lang/crates.io-index"
  1706. checksum = "c4a1e36c821dbe04574f602848a19f742f4fb3c98d40449f11bcad18d6b17421"
  1707. [[package]]
  1708. name = "humansize"
  1709. version = "1.1.1"
  1710. source = "registry+https://github.com/rust-lang/crates.io-index"
  1711. checksum = "02296996cb8796d7c6e3bc2d9211b7802812d36999a51bb754123ead7d37d026"
  1712. [[package]]
  1713. name = "humantime"
  1714. version = "2.1.0"
  1715. source = "registry+https://github.com/rust-lang/crates.io-index"
  1716. checksum = "9a3a5bfb195931eeb336b2a7b4d761daec841b97f947d34394601737a7bba5e4"
  1717. [[package]]
  1718. name = "hyper"
  1719. version = "0.14.23"
  1720. source = "registry+https://github.com/rust-lang/crates.io-index"
  1721. checksum = "034711faac9d2166cb1baf1a2fb0b60b1f277f8492fd72176c17f3515e1abd3c"
  1722. dependencies = [
  1723. "bytes",
  1724. "futures-channel",
  1725. "futures-core",
  1726. "futures-util",
  1727. "h2",
  1728. "http",
  1729. "http-body",
  1730. "httparse",
  1731. "httpdate",
  1732. "itoa 1.0.5",
  1733. "pin-project-lite",
  1734. "socket2",
  1735. "tokio",
  1736. "tower-service",
  1737. "tracing",
  1738. "want",
  1739. ]
  1740. [[package]]
  1741. name = "hyper-timeout"
  1742. version = "0.4.1"
  1743. source = "registry+https://github.com/rust-lang/crates.io-index"
  1744. checksum = "bbb958482e8c7be4bc3cf272a766a2b0bf1a6755e7a6ae777f017a31d11b13b1"
  1745. dependencies = [
  1746. "hyper",
  1747. "pin-project-lite",
  1748. "tokio",
  1749. "tokio-io-timeout",
  1750. ]
  1751. [[package]]
  1752. name = "hyper-tls"
  1753. version = "0.5.0"
  1754. source = "registry+https://github.com/rust-lang/crates.io-index"
  1755. checksum = "d6183ddfa99b85da61a140bea0efc93fdf56ceaa041b37d553518030827f9905"
  1756. dependencies = [
  1757. "bytes",
  1758. "hyper",
  1759. "native-tls",
  1760. "tokio",
  1761. "tokio-native-tls",
  1762. ]
  1763. [[package]]
  1764. name = "iana-time-zone"
  1765. version = "0.1.53"
  1766. source = "registry+https://github.com/rust-lang/crates.io-index"
  1767. checksum = "64c122667b287044802d6ce17ee2ddf13207ed924c712de9a66a5814d5b64765"
  1768. dependencies = [
  1769. "android_system_properties",
  1770. "core-foundation-sys",
  1771. "iana-time-zone-haiku",
  1772. "js-sys",
  1773. "wasm-bindgen",
  1774. "winapi",
  1775. ]
  1776. [[package]]
  1777. name = "iana-time-zone-haiku"
  1778. version = "0.1.1"
  1779. source = "registry+https://github.com/rust-lang/crates.io-index"
  1780. checksum = "0703ae284fc167426161c2e3f1da3ea71d94b21bedbcc9494e92b28e334e3dca"
  1781. dependencies = [
  1782. "cxx",
  1783. "cxx-build",
  1784. ]
  1785. [[package]]
  1786. name = "idna"
  1787. version = "0.2.3"
  1788. source = "registry+https://github.com/rust-lang/crates.io-index"
  1789. checksum = "418a0a6fab821475f634efe3ccc45c013f742efe03d853e8d3355d5cb850ecf8"
  1790. dependencies = [
  1791. "matches",
  1792. "unicode-bidi",
  1793. "unicode-normalization",
  1794. ]
  1795. [[package]]
  1796. name = "idna"
  1797. version = "0.3.0"
  1798. source = "registry+https://github.com/rust-lang/crates.io-index"
  1799. checksum = "e14ddfc70884202db2244c223200c204c2bda1bc6e0998d11b5e024d657209e6"
  1800. dependencies = [
  1801. "unicode-bidi",
  1802. "unicode-normalization",
  1803. ]
  1804. [[package]]
  1805. name = "ignore"
  1806. version = "0.4.19"
  1807. source = "registry+https://github.com/rust-lang/crates.io-index"
  1808. checksum = "a05705bc64e0b66a806c3740bd6578ea66051b157ec42dc219c785cbf185aef3"
  1809. dependencies = [
  1810. "globset",
  1811. "lazy_static",
  1812. "log",
  1813. "memchr",
  1814. "regex",
  1815. "same-file",
  1816. "thread_local",
  1817. "walkdir",
  1818. "winapi-util",
  1819. ]
  1820. [[package]]
  1821. name = "indenter"
  1822. version = "0.3.3"
  1823. source = "registry+https://github.com/rust-lang/crates.io-index"
  1824. checksum = "ce23b50ad8242c51a442f3ff322d56b02f08852c77e4c0b4d3fd684abc89c683"
  1825. [[package]]
  1826. name = "indexmap"
  1827. version = "1.9.2"
  1828. source = "registry+https://github.com/rust-lang/crates.io-index"
  1829. checksum = "1885e79c1fc4b10f0e172c475f458b7f7b93061064d98c3293e98c5ba0c8b399"
  1830. dependencies = [
  1831. "autocfg",
  1832. "hashbrown",
  1833. "serde",
  1834. ]
  1835. [[package]]
  1836. name = "indextree"
  1837. version = "4.5.0"
  1838. source = "registry+https://github.com/rust-lang/crates.io-index"
  1839. checksum = "497f036ac2fae75c34224648a77802e5dd4e9cfb56f4713ab6b12b7160a0523b"
  1840. [[package]]
  1841. name = "instant"
  1842. version = "0.1.12"
  1843. source = "registry+https://github.com/rust-lang/crates.io-index"
  1844. checksum = "7a5bbe824c507c5da5956355e86a746d82e0e1464f65d862cc5e71da70e94b2c"
  1845. dependencies = [
  1846. "cfg-if",
  1847. ]
  1848. [[package]]
  1849. name = "ipnet"
  1850. version = "2.7.1"
  1851. source = "registry+https://github.com/rust-lang/crates.io-index"
  1852. checksum = "30e22bd8629359895450b59ea7a776c850561b96a3b1d31321c1949d9e6c9146"
  1853. [[package]]
  1854. name = "itertools"
  1855. version = "0.10.5"
  1856. source = "registry+https://github.com/rust-lang/crates.io-index"
  1857. checksum = "b0fd2260e829bddf4cb6ea802289de2f86d6a7a690192fbe91b3f46e0f2c8473"
  1858. dependencies = [
  1859. "either",
  1860. ]
  1861. [[package]]
  1862. name = "itoa"
  1863. version = "0.4.8"
  1864. source = "registry+https://github.com/rust-lang/crates.io-index"
  1865. checksum = "b71991ff56294aa922b450139ee08b3bfc70982c6b2c7562771375cf73542dd4"
  1866. [[package]]
  1867. name = "itoa"
  1868. version = "1.0.5"
  1869. source = "registry+https://github.com/rust-lang/crates.io-index"
  1870. checksum = "fad582f4b9e86b6caa621cabeb0963332d92eea04729ab12892c2533951e6440"
  1871. [[package]]
  1872. name = "js-sys"
  1873. version = "0.3.60"
  1874. source = "registry+https://github.com/rust-lang/crates.io-index"
  1875. checksum = "49409df3e3bf0856b916e2ceaca09ee28e6871cf7d9ce97a692cacfdb2a25a47"
  1876. dependencies = [
  1877. "wasm-bindgen",
  1878. ]
  1879. [[package]]
  1880. name = "lazy_static"
  1881. version = "1.4.0"
  1882. source = "registry+https://github.com/rust-lang/crates.io-index"
  1883. checksum = "e2abad23fbc42b3700f2f279844dc832adb2b2eb069b2df918f455c4e18cc646"
  1884. [[package]]
  1885. name = "lexical-core"
  1886. version = "0.7.6"
  1887. source = "registry+https://github.com/rust-lang/crates.io-index"
  1888. checksum = "6607c62aa161d23d17a9072cc5da0be67cdfc89d3afb1e8d9c842bebc2525ffe"
  1889. dependencies = [
  1890. "arrayvec 0.5.2",
  1891. "bitflags",
  1892. "cfg-if",
  1893. "ryu",
  1894. "static_assertions",
  1895. ]
  1896. [[package]]
  1897. name = "lib-dispatch"
  1898. version = "0.1.0"
  1899. dependencies = [
  1900. "bincode",
  1901. "bytes",
  1902. "derivative",
  1903. "dyn-clone",
  1904. "futures",
  1905. "futures-channel",
  1906. "futures-core",
  1907. "futures-util",
  1908. "log",
  1909. "nanoid",
  1910. "pin-project",
  1911. "protobuf",
  1912. "serde",
  1913. "serde_json",
  1914. "serde_repr",
  1915. "thread-id",
  1916. "tokio",
  1917. "tracing",
  1918. ]
  1919. [[package]]
  1920. name = "lib-infra"
  1921. version = "0.1.0"
  1922. dependencies = [
  1923. "async-trait",
  1924. "bytes",
  1925. "chrono",
  1926. "futures-core",
  1927. "md5",
  1928. "pin-project",
  1929. "rand 0.8.5",
  1930. "tokio",
  1931. ]
  1932. [[package]]
  1933. name = "lib-log"
  1934. version = "0.1.0"
  1935. dependencies = [
  1936. "chrono",
  1937. "lazy_static",
  1938. "log",
  1939. "serde",
  1940. "serde_json",
  1941. "tracing",
  1942. "tracing-appender",
  1943. "tracing-bunyan-formatter",
  1944. "tracing-core",
  1945. "tracing-log",
  1946. "tracing-subscriber 0.2.25",
  1947. ]
  1948. [[package]]
  1949. name = "lib-ot"
  1950. version = "0.1.0"
  1951. dependencies = [
  1952. "bytes",
  1953. "indexmap",
  1954. "indextree",
  1955. "lazy_static",
  1956. "log",
  1957. "serde",
  1958. "serde_json",
  1959. "strum",
  1960. "strum_macros",
  1961. "thiserror",
  1962. "tracing",
  1963. ]
  1964. [[package]]
  1965. name = "lib-ws"
  1966. version = "0.1.0"
  1967. dependencies = [
  1968. "bytes",
  1969. "dashmap",
  1970. "futures",
  1971. "futures-channel",
  1972. "futures-core",
  1973. "futures-util",
  1974. "lib-infra",
  1975. "log",
  1976. "parking_lot 0.12.1",
  1977. "pin-project",
  1978. "protobuf",
  1979. "serde",
  1980. "serde_json",
  1981. "serde_repr",
  1982. "strum_macros",
  1983. "tokio",
  1984. "tokio-tungstenite",
  1985. "tracing",
  1986. "url",
  1987. ]
  1988. [[package]]
  1989. name = "libc"
  1990. version = "0.2.139"
  1991. source = "registry+https://github.com/rust-lang/crates.io-index"
  1992. checksum = "201de327520df007757c1f0adce6e827fe8562fbc28bfd9c15571c66ca1f5f79"
  1993. [[package]]
  1994. name = "libsqlite3-sys"
  1995. version = "0.22.2"
  1996. source = "registry+https://github.com/rust-lang/crates.io-index"
  1997. checksum = "290b64917f8b0cb885d9de0f9959fe1f775d7fa12f1da2db9001c1c8ab60f89d"
  1998. dependencies = [
  1999. "cc",
  2000. "pkg-config",
  2001. "vcpkg",
  2002. ]
  2003. [[package]]
  2004. name = "link-cplusplus"
  2005. version = "1.0.8"
  2006. source = "registry+https://github.com/rust-lang/crates.io-index"
  2007. checksum = "ecd207c9c713c34f95a097a5b029ac2ce6010530c7b49d7fea24d977dede04f5"
  2008. dependencies = [
  2009. "cc",
  2010. ]
  2011. [[package]]
  2012. name = "linked-hash-map"
  2013. version = "0.5.6"
  2014. source = "registry+https://github.com/rust-lang/crates.io-index"
  2015. checksum = "0717cef1bc8b636c6e1c1bbdefc09e6322da8a9321966e8928ef80d20f7f770f"
  2016. [[package]]
  2017. name = "lock_api"
  2018. version = "0.4.6"
  2019. source = "registry+https://github.com/rust-lang/crates.io-index"
  2020. checksum = "88943dd7ef4a2e5a4bfa2753aaab3013e34ce2533d1996fb18ef591e315e2b3b"
  2021. dependencies = [
  2022. "scopeguard",
  2023. ]
  2024. [[package]]
  2025. name = "log"
  2026. version = "0.4.17"
  2027. source = "registry+https://github.com/rust-lang/crates.io-index"
  2028. checksum = "abb12e687cfb44aa40f41fc3978ef76448f9b6038cad6aef4259d3c095a2382e"
  2029. dependencies = [
  2030. "cfg-if",
  2031. ]
  2032. [[package]]
  2033. name = "matchers"
  2034. version = "0.0.1"
  2035. source = "registry+https://github.com/rust-lang/crates.io-index"
  2036. checksum = "f099785f7595cc4b4553a174ce30dd7589ef93391ff414dbb67f62392b9e0ce1"
  2037. dependencies = [
  2038. "regex-automata",
  2039. ]
  2040. [[package]]
  2041. name = "matchers"
  2042. version = "0.1.0"
  2043. source = "registry+https://github.com/rust-lang/crates.io-index"
  2044. checksum = "8263075bb86c5a1b1427b5ae862e8889656f126e9f77c484496e8b47cf5c5558"
  2045. dependencies = [
  2046. "regex-automata",
  2047. ]
  2048. [[package]]
  2049. name = "matches"
  2050. version = "0.1.9"
  2051. source = "registry+https://github.com/rust-lang/crates.io-index"
  2052. checksum = "a3e378b66a060d48947b590737b30a1be76706c8dd7b8ba0f2fe3989c68a853f"
  2053. [[package]]
  2054. name = "matchit"
  2055. version = "0.7.0"
  2056. source = "registry+https://github.com/rust-lang/crates.io-index"
  2057. checksum = "b87248edafb776e59e6ee64a79086f65890d3510f2c656c000bf2a7e8a0aea40"
  2058. [[package]]
  2059. name = "md5"
  2060. version = "0.7.0"
  2061. source = "registry+https://github.com/rust-lang/crates.io-index"
  2062. checksum = "490cc448043f947bae3cbee9c203358d62dbee0db12107a74be5c30ccfd09771"
  2063. [[package]]
  2064. name = "memchr"
  2065. version = "2.5.0"
  2066. source = "registry+https://github.com/rust-lang/crates.io-index"
  2067. checksum = "2dffe52ecf27772e601905b7522cb4ef790d2cc203488bbd0e2fe85fcb74566d"
  2068. [[package]]
  2069. name = "memoffset"
  2070. version = "0.7.1"
  2071. source = "registry+https://github.com/rust-lang/crates.io-index"
  2072. checksum = "5de893c32cde5f383baa4c04c5d6dbdd735cfd4a794b0debdb2bb1b421da5ff4"
  2073. dependencies = [
  2074. "autocfg",
  2075. ]
  2076. [[package]]
  2077. name = "migrations_internals"
  2078. version = "1.4.1"
  2079. source = "registry+https://github.com/rust-lang/crates.io-index"
  2080. checksum = "2b4fc84e4af020b837029e017966f86a1c2d5e83e64b589963d5047525995860"
  2081. dependencies = [
  2082. "diesel",
  2083. ]
  2084. [[package]]
  2085. name = "migrations_macros"
  2086. version = "1.4.2"
  2087. source = "registry+https://github.com/rust-lang/crates.io-index"
  2088. checksum = "9753f12909fd8d923f75ae5c3258cae1ed3c8ec052e1b38c93c21a6d157f789c"
  2089. dependencies = [
  2090. "migrations_internals",
  2091. "proc-macro2",
  2092. "quote",
  2093. "syn",
  2094. ]
  2095. [[package]]
  2096. name = "mime"
  2097. version = "0.3.16"
  2098. source = "registry+https://github.com/rust-lang/crates.io-index"
  2099. checksum = "2a60c7ce501c71e03a9c9c0d35b861413ae925bd979cc7a4e30d060069aaac8d"
  2100. [[package]]
  2101. name = "minimal-lexical"
  2102. version = "0.2.1"
  2103. source = "registry+https://github.com/rust-lang/crates.io-index"
  2104. checksum = "68354c5c6bd36d73ff3feceb05efa59b6acb7626617f4962be322a825e61f79a"
  2105. [[package]]
  2106. name = "miniz_oxide"
  2107. version = "0.6.2"
  2108. source = "registry+https://github.com/rust-lang/crates.io-index"
  2109. checksum = "b275950c28b37e794e8c55d88aeb5e139d0ce23fdbbeda68f8d7174abdf9e8fa"
  2110. dependencies = [
  2111. "adler",
  2112. ]
  2113. [[package]]
  2114. name = "mio"
  2115. version = "0.8.5"
  2116. source = "registry+https://github.com/rust-lang/crates.io-index"
  2117. checksum = "e5d732bc30207a6423068df043e3d02e0735b155ad7ce1a6f76fe2baa5b158de"
  2118. dependencies = [
  2119. "libc",
  2120. "log",
  2121. "wasi 0.11.0+wasi-snapshot-preview1",
  2122. "windows-sys 0.42.0",
  2123. ]
  2124. [[package]]
  2125. name = "nanoid"
  2126. version = "0.4.0"
  2127. source = "registry+https://github.com/rust-lang/crates.io-index"
  2128. checksum = "3ffa00dec017b5b1a8b7cf5e2c008bfda1aa7e0697ac1508b491fdf2622fb4d8"
  2129. dependencies = [
  2130. "rand 0.8.5",
  2131. ]
  2132. [[package]]
  2133. name = "native-tls"
  2134. version = "0.2.11"
  2135. source = "registry+https://github.com/rust-lang/crates.io-index"
  2136. checksum = "07226173c32f2926027b63cce4bcd8076c3552846cbe7925f3aaffeac0a3b92e"
  2137. dependencies = [
  2138. "lazy_static",
  2139. "libc",
  2140. "log",
  2141. "openssl",
  2142. "openssl-probe",
  2143. "openssl-sys",
  2144. "schannel",
  2145. "security-framework",
  2146. "security-framework-sys",
  2147. "tempfile",
  2148. ]
  2149. [[package]]
  2150. name = "nom"
  2151. version = "5.1.2"
  2152. source = "registry+https://github.com/rust-lang/crates.io-index"
  2153. checksum = "ffb4262d26ed83a1c0a33a38fe2bb15797329c85770da05e6b828ddb782627af"
  2154. dependencies = [
  2155. "lexical-core",
  2156. "memchr",
  2157. "version_check",
  2158. ]
  2159. [[package]]
  2160. name = "nom"
  2161. version = "7.1.3"
  2162. source = "registry+https://github.com/rust-lang/crates.io-index"
  2163. checksum = "d273983c5a657a70a3e8f2a01329822f3b8c8172b73826411a55751e404a0a4a"
  2164. dependencies = [
  2165. "memchr",
  2166. "minimal-lexical",
  2167. ]
  2168. [[package]]
  2169. name = "num-integer"
  2170. version = "0.1.45"
  2171. source = "registry+https://github.com/rust-lang/crates.io-index"
  2172. checksum = "225d3389fb3509a24c93f5c29eb6bde2586b98d9f016636dff58d7c6f7569cd9"
  2173. dependencies = [
  2174. "autocfg",
  2175. "num-traits",
  2176. ]
  2177. [[package]]
  2178. name = "num-traits"
  2179. version = "0.2.15"
  2180. source = "registry+https://github.com/rust-lang/crates.io-index"
  2181. checksum = "578ede34cf02f8924ab9447f50c28075b4d3e5b269972345e7e0372b38c6cdcd"
  2182. dependencies = [
  2183. "autocfg",
  2184. ]
  2185. [[package]]
  2186. name = "num_cpus"
  2187. version = "1.15.0"
  2188. source = "registry+https://github.com/rust-lang/crates.io-index"
  2189. checksum = "0fac9e2da13b5eb447a6ce3d392f23a29d8694bff781bf03a16cd9ac8697593b"
  2190. dependencies = [
  2191. "hermit-abi 0.2.6",
  2192. "libc",
  2193. ]
  2194. [[package]]
  2195. name = "object"
  2196. version = "0.30.2"
  2197. source = "registry+https://github.com/rust-lang/crates.io-index"
  2198. checksum = "2b8c786513eb403643f2a88c244c2aaa270ef2153f55094587d0c48a3cf22a83"
  2199. dependencies = [
  2200. "memchr",
  2201. ]
  2202. [[package]]
  2203. name = "once_cell"
  2204. version = "1.17.1"
  2205. source = "registry+https://github.com/rust-lang/crates.io-index"
  2206. checksum = "b7e5500299e16ebb147ae15a00a942af264cf3688f47923b8fc2cd5858f23ad3"
  2207. [[package]]
  2208. name = "oorandom"
  2209. version = "11.1.3"
  2210. source = "registry+https://github.com/rust-lang/crates.io-index"
  2211. checksum = "0ab1bc2a289d34bd04a330323ac98a1b4bc82c9d9fcb1e66b63caa84da26b575"
  2212. [[package]]
  2213. name = "opaque-debug"
  2214. version = "0.3.0"
  2215. source = "registry+https://github.com/rust-lang/crates.io-index"
  2216. checksum = "624a8340c38c1b80fd549087862da4ba43e08858af025b236e509b6649fc13d5"
  2217. [[package]]
  2218. name = "openssl"
  2219. version = "0.10.45"
  2220. source = "registry+https://github.com/rust-lang/crates.io-index"
  2221. checksum = "b102428fd03bc5edf97f62620f7298614c45cedf287c271e7ed450bbaf83f2e1"
  2222. dependencies = [
  2223. "bitflags",
  2224. "cfg-if",
  2225. "foreign-types",
  2226. "libc",
  2227. "once_cell",
  2228. "openssl-macros",
  2229. "openssl-sys",
  2230. ]
  2231. [[package]]
  2232. name = "openssl-macros"
  2233. version = "0.1.0"
  2234. source = "registry+https://github.com/rust-lang/crates.io-index"
  2235. checksum = "b501e44f11665960c7e7fcf062c7d96a14ade4aa98116c004b2e37b5be7d736c"
  2236. dependencies = [
  2237. "proc-macro2",
  2238. "quote",
  2239. "syn",
  2240. ]
  2241. [[package]]
  2242. name = "openssl-probe"
  2243. version = "0.1.5"
  2244. source = "registry+https://github.com/rust-lang/crates.io-index"
  2245. checksum = "ff011a302c396a5197692431fc1948019154afc178baf7d8e37367442a4601cf"
  2246. [[package]]
  2247. name = "openssl-src"
  2248. version = "111.25.0+1.1.1t"
  2249. source = "registry+https://github.com/rust-lang/crates.io-index"
  2250. checksum = "3173cd3626c43e3854b1b727422a276e568d9ec5fe8cec197822cf52cfb743d6"
  2251. dependencies = [
  2252. "cc",
  2253. ]
  2254. [[package]]
  2255. name = "openssl-sys"
  2256. version = "0.9.80"
  2257. source = "registry+https://github.com/rust-lang/crates.io-index"
  2258. checksum = "23bbbf7854cd45b83958ebe919f0e8e516793727652e27fda10a8384cfc790b7"
  2259. dependencies = [
  2260. "autocfg",
  2261. "cc",
  2262. "libc",
  2263. "openssl-src",
  2264. "pkg-config",
  2265. "vcpkg",
  2266. ]
  2267. [[package]]
  2268. name = "os_pipe"
  2269. version = "0.9.2"
  2270. source = "registry+https://github.com/rust-lang/crates.io-index"
  2271. checksum = "fb233f06c2307e1f5ce2ecad9f8121cffbbee2c95428f44ea85222e460d0d213"
  2272. dependencies = [
  2273. "libc",
  2274. "winapi",
  2275. ]
  2276. [[package]]
  2277. name = "owo-colors"
  2278. version = "1.3.0"
  2279. source = "registry+https://github.com/rust-lang/crates.io-index"
  2280. checksum = "2386b4ebe91c2f7f51082d4cefa145d030e33a1842a96b12e4885cc3c01f7a55"
  2281. [[package]]
  2282. name = "parking_lot"
  2283. version = "0.11.2"
  2284. source = "registry+https://github.com/rust-lang/crates.io-index"
  2285. checksum = "7d17b78036a60663b797adeaee46f5c9dfebb86948d1255007a1d6be0271ff99"
  2286. dependencies = [
  2287. "instant",
  2288. "lock_api",
  2289. "parking_lot_core 0.8.6",
  2290. ]
  2291. [[package]]
  2292. name = "parking_lot"
  2293. version = "0.12.1"
  2294. source = "registry+https://github.com/rust-lang/crates.io-index"
  2295. checksum = "3742b2c103b9f06bc9fff0a37ff4912935851bee6d36f3c02bcc755bcfec228f"
  2296. dependencies = [
  2297. "lock_api",
  2298. "parking_lot_core 0.9.6",
  2299. ]
  2300. [[package]]
  2301. name = "parking_lot_core"
  2302. version = "0.8.6"
  2303. source = "registry+https://github.com/rust-lang/crates.io-index"
  2304. checksum = "60a2cfe6f0ad2bfc16aefa463b497d5c7a5ecd44a23efa72aa342d90177356dc"
  2305. dependencies = [
  2306. "cfg-if",
  2307. "instant",
  2308. "libc",
  2309. "redox_syscall 0.2.16",
  2310. "smallvec",
  2311. "winapi",
  2312. ]
  2313. [[package]]
  2314. name = "parking_lot_core"
  2315. version = "0.9.6"
  2316. source = "registry+https://github.com/rust-lang/crates.io-index"
  2317. checksum = "ba1ef8814b5c993410bb3adfad7a5ed269563e4a2f90c41f5d85be7fb47133bf"
  2318. dependencies = [
  2319. "cfg-if",
  2320. "libc",
  2321. "redox_syscall 0.2.16",
  2322. "smallvec",
  2323. "windows-sys 0.42.0",
  2324. ]
  2325. [[package]]
  2326. name = "parse-zoneinfo"
  2327. version = "0.3.0"
  2328. source = "registry+https://github.com/rust-lang/crates.io-index"
  2329. checksum = "c705f256449c60da65e11ff6626e0c16a0a0b96aaa348de61376b249bc340f41"
  2330. dependencies = [
  2331. "regex",
  2332. ]
  2333. [[package]]
  2334. name = "percent-encoding"
  2335. version = "2.2.0"
  2336. source = "registry+https://github.com/rust-lang/crates.io-index"
  2337. checksum = "478c572c3d73181ff3c2539045f6eb99e5491218eae919370993b890cdbdd98e"
  2338. [[package]]
  2339. name = "pest"
  2340. version = "2.5.3"
  2341. source = "registry+https://github.com/rust-lang/crates.io-index"
  2342. checksum = "4257b4a04d91f7e9e6290be5d3da4804dd5784fafde3a497d73eb2b4a158c30a"
  2343. dependencies = [
  2344. "thiserror",
  2345. "ucd-trie",
  2346. ]
  2347. [[package]]
  2348. name = "pest_derive"
  2349. version = "2.5.3"
  2350. source = "registry+https://github.com/rust-lang/crates.io-index"
  2351. checksum = "241cda393b0cdd65e62e07e12454f1f25d57017dcc514b1514cd3c4645e3a0a6"
  2352. dependencies = [
  2353. "pest",
  2354. "pest_generator",
  2355. ]
  2356. [[package]]
  2357. name = "pest_generator"
  2358. version = "2.5.3"
  2359. source = "registry+https://github.com/rust-lang/crates.io-index"
  2360. checksum = "46b53634d8c8196302953c74d5352f33d0c512a9499bd2ce468fc9f4128fa27c"
  2361. dependencies = [
  2362. "pest",
  2363. "pest_meta",
  2364. "proc-macro2",
  2365. "quote",
  2366. "syn",
  2367. ]
  2368. [[package]]
  2369. name = "pest_meta"
  2370. version = "2.5.3"
  2371. source = "registry+https://github.com/rust-lang/crates.io-index"
  2372. checksum = "0ef4f1332a8d4678b41966bb4cc1d0676880e84183a1ecc3f4b69f03e99c7a51"
  2373. dependencies = [
  2374. "once_cell",
  2375. "pest",
  2376. "sha2",
  2377. ]
  2378. [[package]]
  2379. name = "phf"
  2380. version = "0.8.0"
  2381. source = "registry+https://github.com/rust-lang/crates.io-index"
  2382. checksum = "3dfb61232e34fcb633f43d12c58f83c1df82962dcdfa565a4e866ffc17dafe12"
  2383. dependencies = [
  2384. "phf_macros",
  2385. "phf_shared 0.8.0",
  2386. "proc-macro-hack",
  2387. ]
  2388. [[package]]
  2389. name = "phf"
  2390. version = "0.11.1"
  2391. source = "registry+https://github.com/rust-lang/crates.io-index"
  2392. checksum = "928c6535de93548188ef63bb7c4036bd415cd8f36ad25af44b9789b2ee72a48c"
  2393. dependencies = [
  2394. "phf_shared 0.11.1",
  2395. ]
  2396. [[package]]
  2397. name = "phf_codegen"
  2398. version = "0.11.1"
  2399. source = "registry+https://github.com/rust-lang/crates.io-index"
  2400. checksum = "a56ac890c5e3ca598bbdeaa99964edb5b0258a583a9eb6ef4e89fc85d9224770"
  2401. dependencies = [
  2402. "phf_generator 0.11.1",
  2403. "phf_shared 0.11.1",
  2404. ]
  2405. [[package]]
  2406. name = "phf_generator"
  2407. version = "0.8.0"
  2408. source = "registry+https://github.com/rust-lang/crates.io-index"
  2409. checksum = "17367f0cc86f2d25802b2c26ee58a7b23faeccf78a396094c13dced0d0182526"
  2410. dependencies = [
  2411. "phf_shared 0.8.0",
  2412. "rand 0.7.3",
  2413. ]
  2414. [[package]]
  2415. name = "phf_generator"
  2416. version = "0.11.1"
  2417. source = "registry+https://github.com/rust-lang/crates.io-index"
  2418. checksum = "b1181c94580fa345f50f19d738aaa39c0ed30a600d95cb2d3e23f94266f14fbf"
  2419. dependencies = [
  2420. "phf_shared 0.11.1",
  2421. "rand 0.8.5",
  2422. ]
  2423. [[package]]
  2424. name = "phf_macros"
  2425. version = "0.8.0"
  2426. source = "registry+https://github.com/rust-lang/crates.io-index"
  2427. checksum = "7f6fde18ff429ffc8fe78e2bf7f8b7a5a5a6e2a8b58bc5a9ac69198bbda9189c"
  2428. dependencies = [
  2429. "phf_generator 0.8.0",
  2430. "phf_shared 0.8.0",
  2431. "proc-macro-hack",
  2432. "proc-macro2",
  2433. "quote",
  2434. "syn",
  2435. ]
  2436. [[package]]
  2437. name = "phf_shared"
  2438. version = "0.8.0"
  2439. source = "registry+https://github.com/rust-lang/crates.io-index"
  2440. checksum = "c00cf8b9eafe68dde5e9eaa2cef8ee84a9336a47d566ec55ca16589633b65af7"
  2441. dependencies = [
  2442. "siphasher",
  2443. ]
  2444. [[package]]
  2445. name = "phf_shared"
  2446. version = "0.11.1"
  2447. source = "registry+https://github.com/rust-lang/crates.io-index"
  2448. checksum = "e1fb5f6f826b772a8d4c0394209441e7d37cbbb967ae9c7e0e8134365c9ee676"
  2449. dependencies = [
  2450. "siphasher",
  2451. "uncased",
  2452. ]
  2453. [[package]]
  2454. name = "pin-project"
  2455. version = "1.0.12"
  2456. source = "registry+https://github.com/rust-lang/crates.io-index"
  2457. checksum = "ad29a609b6bcd67fee905812e544992d216af9d755757c05ed2d0e15a74c6ecc"
  2458. dependencies = [
  2459. "pin-project-internal",
  2460. ]
  2461. [[package]]
  2462. name = "pin-project-internal"
  2463. version = "1.0.12"
  2464. source = "registry+https://github.com/rust-lang/crates.io-index"
  2465. checksum = "069bdb1e05adc7a8990dce9cc75370895fbe4e3d58b9b73bf1aee56359344a55"
  2466. dependencies = [
  2467. "proc-macro2",
  2468. "quote",
  2469. "syn",
  2470. ]
  2471. [[package]]
  2472. name = "pin-project-lite"
  2473. version = "0.2.9"
  2474. source = "registry+https://github.com/rust-lang/crates.io-index"
  2475. checksum = "e0a7ae3ac2f1173085d398531c705756c94a4c56843785df85a60c1a0afac116"
  2476. [[package]]
  2477. name = "pin-utils"
  2478. version = "0.1.0"
  2479. source = "registry+https://github.com/rust-lang/crates.io-index"
  2480. checksum = "8b870d8c151b6f2fb93e84a13146138f05d02ed11c7e7c54f8826aaaf7c9f184"
  2481. [[package]]
  2482. name = "pkg-config"
  2483. version = "0.3.26"
  2484. source = "registry+https://github.com/rust-lang/crates.io-index"
  2485. checksum = "6ac9a59f73473f1b8d852421e59e64809f025994837ef743615c6d0c5b305160"
  2486. [[package]]
  2487. name = "plotters"
  2488. version = "0.3.4"
  2489. source = "registry+https://github.com/rust-lang/crates.io-index"
  2490. checksum = "2538b639e642295546c50fcd545198c9d64ee2a38620a628724a3b266d5fbf97"
  2491. dependencies = [
  2492. "num-traits",
  2493. "plotters-backend",
  2494. "plotters-svg",
  2495. "wasm-bindgen",
  2496. "web-sys",
  2497. ]
  2498. [[package]]
  2499. name = "plotters-backend"
  2500. version = "0.3.4"
  2501. source = "registry+https://github.com/rust-lang/crates.io-index"
  2502. checksum = "193228616381fecdc1224c62e96946dfbc73ff4384fba576e052ff8c1bea8142"
  2503. [[package]]
  2504. name = "plotters-svg"
  2505. version = "0.3.3"
  2506. source = "registry+https://github.com/rust-lang/crates.io-index"
  2507. checksum = "f9a81d2759aae1dae668f783c308bc5c8ebd191ff4184aaa1b37f65a6ae5a56f"
  2508. dependencies = [
  2509. "plotters-backend",
  2510. ]
  2511. [[package]]
  2512. name = "ppv-lite86"
  2513. version = "0.2.17"
  2514. source = "registry+https://github.com/rust-lang/crates.io-index"
  2515. checksum = "5b40af805b3121feab8a3c29f04d8ad262fa8e0561883e7653e024ae4479e6de"
  2516. [[package]]
  2517. name = "proc-macro-crate"
  2518. version = "0.1.5"
  2519. source = "registry+https://github.com/rust-lang/crates.io-index"
  2520. checksum = "1d6ea3c4595b96363c13943497db34af4460fb474a95c43f4446ad341b8c9785"
  2521. dependencies = [
  2522. "toml",
  2523. ]
  2524. [[package]]
  2525. name = "proc-macro-error"
  2526. version = "1.0.4"
  2527. source = "registry+https://github.com/rust-lang/crates.io-index"
  2528. checksum = "da25490ff9892aab3fcf7c36f08cfb902dd3e71ca0f9f9517bea02a73a5ce38c"
  2529. dependencies = [
  2530. "proc-macro-error-attr",
  2531. "proc-macro2",
  2532. "quote",
  2533. "syn",
  2534. "version_check",
  2535. ]
  2536. [[package]]
  2537. name = "proc-macro-error-attr"
  2538. version = "1.0.4"
  2539. source = "registry+https://github.com/rust-lang/crates.io-index"
  2540. checksum = "a1be40180e52ecc98ad80b184934baf3d0d29f979574e439af5a55274b35f869"
  2541. dependencies = [
  2542. "proc-macro2",
  2543. "quote",
  2544. "version_check",
  2545. ]
  2546. [[package]]
  2547. name = "proc-macro-hack"
  2548. version = "0.5.20+deprecated"
  2549. source = "registry+https://github.com/rust-lang/crates.io-index"
  2550. checksum = "dc375e1527247fe1a97d8b7156678dfe7c1af2fc075c9a4db3690ecd2a148068"
  2551. [[package]]
  2552. name = "proc-macro2"
  2553. version = "1.0.49"
  2554. source = "registry+https://github.com/rust-lang/crates.io-index"
  2555. checksum = "57a8eca9f9c4ffde41714334dee777596264c7825420f521abc92b5b5deb63a5"
  2556. dependencies = [
  2557. "unicode-ident",
  2558. ]
  2559. [[package]]
  2560. name = "prost"
  2561. version = "0.11.8"
  2562. source = "registry+https://github.com/rust-lang/crates.io-index"
  2563. checksum = "e48e50df39172a3e7eb17e14642445da64996989bc212b583015435d39a58537"
  2564. dependencies = [
  2565. "bytes",
  2566. "prost-derive",
  2567. ]
  2568. [[package]]
  2569. name = "prost-derive"
  2570. version = "0.11.8"
  2571. source = "registry+https://github.com/rust-lang/crates.io-index"
  2572. checksum = "4ea9b0f8cbe5e15a8a042d030bd96668db28ecb567ec37d691971ff5731d2b1b"
  2573. dependencies = [
  2574. "anyhow",
  2575. "itertools",
  2576. "proc-macro2",
  2577. "quote",
  2578. "syn",
  2579. ]
  2580. [[package]]
  2581. name = "prost-types"
  2582. version = "0.11.8"
  2583. source = "registry+https://github.com/rust-lang/crates.io-index"
  2584. checksum = "379119666929a1afd7a043aa6cf96fa67a6dce9af60c88095a4686dbce4c9c88"
  2585. dependencies = [
  2586. "prost",
  2587. ]
  2588. [[package]]
  2589. name = "protobuf"
  2590. version = "2.28.0"
  2591. source = "registry+https://github.com/rust-lang/crates.io-index"
  2592. checksum = "106dd99e98437432fed6519dedecfade6a06a73bb7b2a1e019fdd2bee5778d94"
  2593. [[package]]
  2594. name = "protobuf-codegen"
  2595. version = "2.28.0"
  2596. source = "registry+https://github.com/rust-lang/crates.io-index"
  2597. checksum = "033460afb75cf755fcfc16dfaed20b86468082a2ea24e05ac35ab4a099a017d6"
  2598. dependencies = [
  2599. "protobuf",
  2600. ]
  2601. [[package]]
  2602. name = "protoc"
  2603. version = "2.28.0"
  2604. source = "registry+https://github.com/rust-lang/crates.io-index"
  2605. checksum = "a0218039c514f9e14a5060742ecd50427f8ac4f85a6dc58f2ddb806e318c55ee"
  2606. dependencies = [
  2607. "log",
  2608. "which",
  2609. ]
  2610. [[package]]
  2611. name = "protoc-bin-vendored"
  2612. version = "3.0.0"
  2613. source = "registry+https://github.com/rust-lang/crates.io-index"
  2614. checksum = "005ca8623e5633e298ad1f917d8be0a44bcf406bf3cde3b80e63003e49a3f27d"
  2615. dependencies = [
  2616. "protoc-bin-vendored-linux-aarch_64",
  2617. "protoc-bin-vendored-linux-ppcle_64",
  2618. "protoc-bin-vendored-linux-x86_32",
  2619. "protoc-bin-vendored-linux-x86_64",
  2620. "protoc-bin-vendored-macos-x86_64",
  2621. "protoc-bin-vendored-win32",
  2622. ]
  2623. [[package]]
  2624. name = "protoc-bin-vendored-linux-aarch_64"
  2625. version = "3.0.0"
  2626. source = "registry+https://github.com/rust-lang/crates.io-index"
  2627. checksum = "8fb9fc9cce84c8694b6ea01cc6296617b288b703719b725b8c9c65f7c5874435"
  2628. [[package]]
  2629. name = "protoc-bin-vendored-linux-ppcle_64"
  2630. version = "3.0.0"
  2631. source = "registry+https://github.com/rust-lang/crates.io-index"
  2632. checksum = "02d2a07dcf7173a04d49974930ccbfb7fd4d74df30ecfc8762cf2f895a094516"
  2633. [[package]]
  2634. name = "protoc-bin-vendored-linux-x86_32"
  2635. version = "3.0.0"
  2636. source = "registry+https://github.com/rust-lang/crates.io-index"
  2637. checksum = "d54fef0b04fcacba64d1d80eed74a20356d96847da8497a59b0a0a436c9165b0"
  2638. [[package]]
  2639. name = "protoc-bin-vendored-linux-x86_64"
  2640. version = "3.0.0"
  2641. source = "registry+https://github.com/rust-lang/crates.io-index"
  2642. checksum = "b8782f2ce7d43a9a5c74ea4936f001e9e8442205c244f7a3d4286bd4c37bc924"
  2643. [[package]]
  2644. name = "protoc-bin-vendored-macos-x86_64"
  2645. version = "3.0.0"
  2646. source = "registry+https://github.com/rust-lang/crates.io-index"
  2647. checksum = "b5de656c7ee83f08e0ae5b81792ccfdc1d04e7876b1d9a38e6876a9e09e02537"
  2648. [[package]]
  2649. name = "protoc-bin-vendored-win32"
  2650. version = "3.0.0"
  2651. source = "registry+https://github.com/rust-lang/crates.io-index"
  2652. checksum = "9653c3ed92974e34c5a6e0a510864dab979760481714c172e0a34e437cb98804"
  2653. [[package]]
  2654. name = "protoc-rust"
  2655. version = "2.28.0"
  2656. source = "registry+https://github.com/rust-lang/crates.io-index"
  2657. checksum = "22f8a182bb17c485f20bdc4274a8c39000a61024cfe461c799b50fec77267838"
  2658. dependencies = [
  2659. "protobuf",
  2660. "protobuf-codegen",
  2661. "protoc",
  2662. "tempfile",
  2663. ]
  2664. [[package]]
  2665. name = "ptr_meta"
  2666. version = "0.1.4"
  2667. source = "registry+https://github.com/rust-lang/crates.io-index"
  2668. checksum = "0738ccf7ea06b608c10564b31debd4f5bc5e197fc8bfe088f68ae5ce81e7a4f1"
  2669. dependencies = [
  2670. "ptr_meta_derive",
  2671. ]
  2672. [[package]]
  2673. name = "ptr_meta_derive"
  2674. version = "0.1.4"
  2675. source = "registry+https://github.com/rust-lang/crates.io-index"
  2676. checksum = "16b845dbfca988fa33db069c0e230574d15a3088f147a87b64c7589eb662c9ac"
  2677. dependencies = [
  2678. "proc-macro2",
  2679. "quote",
  2680. "syn",
  2681. ]
  2682. [[package]]
  2683. name = "quickcheck"
  2684. version = "1.0.3"
  2685. source = "registry+https://github.com/rust-lang/crates.io-index"
  2686. checksum = "588f6378e4dd99458b60ec275b4477add41ce4fa9f64dcba6f15adccb19b50d6"
  2687. dependencies = [
  2688. "env_logger",
  2689. "log",
  2690. "rand 0.8.5",
  2691. ]
  2692. [[package]]
  2693. name = "quickcheck_macros"
  2694. version = "0.9.1"
  2695. source = "registry+https://github.com/rust-lang/crates.io-index"
  2696. checksum = "608c156fd8e97febc07dc9c2e2c80bf74cfc6ef26893eae3daf8bc2bc94a4b7f"
  2697. dependencies = [
  2698. "proc-macro2",
  2699. "quote",
  2700. "syn",
  2701. ]
  2702. [[package]]
  2703. name = "quote"
  2704. version = "1.0.23"
  2705. source = "registry+https://github.com/rust-lang/crates.io-index"
  2706. checksum = "8856d8364d252a14d474036ea1358d63c9e6965c8e5c1885c18f73d70bff9c7b"
  2707. dependencies = [
  2708. "proc-macro2",
  2709. ]
  2710. [[package]]
  2711. name = "r2d2"
  2712. version = "0.8.10"
  2713. source = "registry+https://github.com/rust-lang/crates.io-index"
  2714. checksum = "51de85fb3fb6524929c8a2eb85e6b6d363de4e8c48f9e2c2eac4944abc181c93"
  2715. dependencies = [
  2716. "log",
  2717. "parking_lot 0.12.1",
  2718. "scheduled-thread-pool",
  2719. ]
  2720. [[package]]
  2721. name = "rand"
  2722. version = "0.7.3"
  2723. source = "registry+https://github.com/rust-lang/crates.io-index"
  2724. checksum = "6a6b1679d49b24bbfe0c803429aa1874472f50d9b363131f0e89fc356b544d03"
  2725. dependencies = [
  2726. "getrandom 0.1.16",
  2727. "libc",
  2728. "rand_chacha 0.2.2",
  2729. "rand_core 0.5.1",
  2730. "rand_hc",
  2731. "rand_pcg",
  2732. ]
  2733. [[package]]
  2734. name = "rand"
  2735. version = "0.8.5"
  2736. source = "registry+https://github.com/rust-lang/crates.io-index"
  2737. checksum = "34af8d1a0e25924bc5b7c43c079c942339d8f0a8b57c39049bef581b46327404"
  2738. dependencies = [
  2739. "libc",
  2740. "rand_chacha 0.3.1",
  2741. "rand_core 0.6.4",
  2742. ]
  2743. [[package]]
  2744. name = "rand_chacha"
  2745. version = "0.2.2"
  2746. source = "registry+https://github.com/rust-lang/crates.io-index"
  2747. checksum = "f4c8ed856279c9737206bf725bf36935d8666ead7aa69b52be55af369d193402"
  2748. dependencies = [
  2749. "ppv-lite86",
  2750. "rand_core 0.5.1",
  2751. ]
  2752. [[package]]
  2753. name = "rand_chacha"
  2754. version = "0.3.1"
  2755. source = "registry+https://github.com/rust-lang/crates.io-index"
  2756. checksum = "e6c10a63a0fa32252be49d21e7709d4d4baf8d231c2dbce1eaa8141b9b127d88"
  2757. dependencies = [
  2758. "ppv-lite86",
  2759. "rand_core 0.6.4",
  2760. ]
  2761. [[package]]
  2762. name = "rand_core"
  2763. version = "0.5.1"
  2764. source = "registry+https://github.com/rust-lang/crates.io-index"
  2765. checksum = "90bde5296fc891b0cef12a6d03ddccc162ce7b2aff54160af9338f8d40df6d19"
  2766. dependencies = [
  2767. "getrandom 0.1.16",
  2768. ]
  2769. [[package]]
  2770. name = "rand_core"
  2771. version = "0.6.4"
  2772. source = "registry+https://github.com/rust-lang/crates.io-index"
  2773. checksum = "ec0be4795e2f6a28069bec0b5ff3e2ac9bafc99e6a9a7dc3547996c5c816922c"
  2774. dependencies = [
  2775. "getrandom 0.2.8",
  2776. ]
  2777. [[package]]
  2778. name = "rand_hc"
  2779. version = "0.2.0"
  2780. source = "registry+https://github.com/rust-lang/crates.io-index"
  2781. checksum = "ca3129af7b92a17112d59ad498c6f81eaf463253766b90396d39ea7a39d6613c"
  2782. dependencies = [
  2783. "rand_core 0.5.1",
  2784. ]
  2785. [[package]]
  2786. name = "rand_pcg"
  2787. version = "0.2.1"
  2788. source = "registry+https://github.com/rust-lang/crates.io-index"
  2789. checksum = "16abd0c1b639e9eb4d7c50c0b8100b0d0f849be2349829c740fe8e6eb4816429"
  2790. dependencies = [
  2791. "rand_core 0.5.1",
  2792. ]
  2793. [[package]]
  2794. name = "rayon"
  2795. version = "1.6.1"
  2796. source = "registry+https://github.com/rust-lang/crates.io-index"
  2797. checksum = "6db3a213adf02b3bcfd2d3846bb41cb22857d131789e01df434fb7e7bc0759b7"
  2798. dependencies = [
  2799. "either",
  2800. "rayon-core",
  2801. ]
  2802. [[package]]
  2803. name = "rayon-core"
  2804. version = "1.10.1"
  2805. source = "registry+https://github.com/rust-lang/crates.io-index"
  2806. checksum = "cac410af5d00ab6884528b4ab69d1e8e146e8d471201800fa1b4524126de6ad3"
  2807. dependencies = [
  2808. "crossbeam-channel",
  2809. "crossbeam-deque",
  2810. "crossbeam-utils",
  2811. "num_cpus",
  2812. ]
  2813. [[package]]
  2814. name = "redox_syscall"
  2815. version = "0.1.57"
  2816. source = "registry+https://github.com/rust-lang/crates.io-index"
  2817. checksum = "41cc0f7e4d5d4544e8861606a285bb08d3e70712ccc7d2b84d7c0ccfaf4b05ce"
  2818. [[package]]
  2819. name = "redox_syscall"
  2820. version = "0.2.16"
  2821. source = "registry+https://github.com/rust-lang/crates.io-index"
  2822. checksum = "fb5a58c1855b4b6819d59012155603f0b22ad30cad752600aadfcb695265519a"
  2823. dependencies = [
  2824. "bitflags",
  2825. ]
  2826. [[package]]
  2827. name = "regex"
  2828. version = "1.7.1"
  2829. source = "registry+https://github.com/rust-lang/crates.io-index"
  2830. checksum = "48aaa5748ba571fb95cd2c85c09f629215d3a6ece942baa100950af03a34f733"
  2831. dependencies = [
  2832. "aho-corasick",
  2833. "memchr",
  2834. "regex-syntax",
  2835. ]
  2836. [[package]]
  2837. name = "regex-automata"
  2838. version = "0.1.10"
  2839. source = "registry+https://github.com/rust-lang/crates.io-index"
  2840. checksum = "6c230d73fb8d8c1b9c0b3135c5142a8acee3a0558fb8db5cf1cb65f8d7862132"
  2841. dependencies = [
  2842. "regex-syntax",
  2843. ]
  2844. [[package]]
  2845. name = "regex-syntax"
  2846. version = "0.6.28"
  2847. source = "registry+https://github.com/rust-lang/crates.io-index"
  2848. checksum = "456c603be3e8d448b072f410900c09faf164fbce2d480456f50eea6e25f9c848"
  2849. [[package]]
  2850. name = "remove_dir_all"
  2851. version = "0.5.3"
  2852. source = "registry+https://github.com/rust-lang/crates.io-index"
  2853. checksum = "3acd125665422973a33ac9d3dd2df85edad0f4ae9b00dafb1a05e43a9f5ef8e7"
  2854. dependencies = [
  2855. "winapi",
  2856. ]
  2857. [[package]]
  2858. name = "rend"
  2859. version = "0.3.6"
  2860. source = "registry+https://github.com/rust-lang/crates.io-index"
  2861. checksum = "79af64b4b6362ffba04eef3a4e10829718a4896dac19daa741851c86781edf95"
  2862. dependencies = [
  2863. "bytecheck",
  2864. ]
  2865. [[package]]
  2866. name = "reqwest"
  2867. version = "0.11.14"
  2868. source = "registry+https://github.com/rust-lang/crates.io-index"
  2869. checksum = "21eed90ec8570952d53b772ecf8f206aa1ec9a3d76b2521c56c42973f2d91ee9"
  2870. dependencies = [
  2871. "base64 0.21.0",
  2872. "bytes",
  2873. "encoding_rs",
  2874. "futures-core",
  2875. "futures-util",
  2876. "h2",
  2877. "http",
  2878. "http-body",
  2879. "hyper",
  2880. "hyper-tls",
  2881. "ipnet",
  2882. "js-sys",
  2883. "log",
  2884. "mime",
  2885. "native-tls",
  2886. "once_cell",
  2887. "percent-encoding",
  2888. "pin-project-lite",
  2889. "serde",
  2890. "serde_json",
  2891. "serde_urlencoded",
  2892. "tokio",
  2893. "tokio-native-tls",
  2894. "tower-service",
  2895. "url",
  2896. "wasm-bindgen",
  2897. "wasm-bindgen-futures",
  2898. "web-sys",
  2899. "winreg",
  2900. ]
  2901. [[package]]
  2902. name = "revision-model"
  2903. version = "0.1.0"
  2904. dependencies = [
  2905. "bytes",
  2906. "md5",
  2907. "serde",
  2908. "serde_json",
  2909. ]
  2910. [[package]]
  2911. name = "rkyv"
  2912. version = "0.7.39"
  2913. source = "registry+https://github.com/rust-lang/crates.io-index"
  2914. checksum = "cec2b3485b07d96ddfd3134767b8a447b45ea4eb91448d0a35180ec0ffd5ed15"
  2915. dependencies = [
  2916. "bytecheck",
  2917. "hashbrown",
  2918. "ptr_meta",
  2919. "rend",
  2920. "rkyv_derive",
  2921. "seahash",
  2922. ]
  2923. [[package]]
  2924. name = "rkyv_derive"
  2925. version = "0.7.39"
  2926. source = "registry+https://github.com/rust-lang/crates.io-index"
  2927. checksum = "6eaedadc88b53e36dd32d940ed21ae4d850d5916f2581526921f553a72ac34c4"
  2928. dependencies = [
  2929. "proc-macro2",
  2930. "quote",
  2931. "syn",
  2932. ]
  2933. [[package]]
  2934. name = "rust_decimal"
  2935. version = "1.28.1"
  2936. source = "registry+https://github.com/rust-lang/crates.io-index"
  2937. checksum = "e13cf35f7140155d02ba4ec3294373d513a3c7baa8364c162b030e33c61520a8"
  2938. dependencies = [
  2939. "arrayvec 0.7.2",
  2940. "borsh",
  2941. "bytecheck",
  2942. "byteorder",
  2943. "bytes",
  2944. "num-traits",
  2945. "rand 0.8.5",
  2946. "rkyv",
  2947. "serde",
  2948. "serde_json",
  2949. ]
  2950. [[package]]
  2951. name = "rust_decimal_macros"
  2952. version = "1.27.0"
  2953. source = "registry+https://github.com/rust-lang/crates.io-index"
  2954. checksum = "5a7e2dba1342e9f1166786a4329ba0d6d6b8d9db7e81d702ec9ba3b39591ddff"
  2955. dependencies = [
  2956. "quote",
  2957. "rust_decimal",
  2958. ]
  2959. [[package]]
  2960. name = "rustc-demangle"
  2961. version = "0.1.21"
  2962. source = "registry+https://github.com/rust-lang/crates.io-index"
  2963. checksum = "7ef03e0a2b150c7a90d01faf6254c9c48a41e95fb2a8c2ac1c6f0d2b9aefc342"
  2964. [[package]]
  2965. name = "rustc_version"
  2966. version = "0.4.0"
  2967. source = "registry+https://github.com/rust-lang/crates.io-index"
  2968. checksum = "bfa0f585226d2e68097d4f95d113b15b83a82e819ab25717ec0590d9584ef366"
  2969. dependencies = [
  2970. "semver",
  2971. ]
  2972. [[package]]
  2973. name = "rustversion"
  2974. version = "1.0.11"
  2975. source = "registry+https://github.com/rust-lang/crates.io-index"
  2976. checksum = "5583e89e108996506031660fe09baa5011b9dd0341b89029313006d1fb508d70"
  2977. [[package]]
  2978. name = "rusty-money"
  2979. version = "0.4.1"
  2980. source = "registry+https://github.com/rust-lang/crates.io-index"
  2981. checksum = "5b28f881005eac7ad8d46b6f075da5f322bd7f4f83a38720fc069694ddadd683"
  2982. dependencies = [
  2983. "rust_decimal",
  2984. "rust_decimal_macros",
  2985. ]
  2986. [[package]]
  2987. name = "ryu"
  2988. version = "1.0.12"
  2989. source = "registry+https://github.com/rust-lang/crates.io-index"
  2990. checksum = "7b4b9743ed687d4b4bcedf9ff5eaa7398495ae14e61cba0a295704edbc7decde"
  2991. [[package]]
  2992. name = "same-file"
  2993. version = "1.0.6"
  2994. source = "registry+https://github.com/rust-lang/crates.io-index"
  2995. checksum = "93fc1dc3aaa9bfed95e02e6eadabb4baf7e3078b0bd1b4d7b6b0b68378900502"
  2996. dependencies = [
  2997. "winapi-util",
  2998. ]
  2999. [[package]]
  3000. name = "schannel"
  3001. version = "0.1.21"
  3002. source = "registry+https://github.com/rust-lang/crates.io-index"
  3003. checksum = "713cfb06c7059f3588fb8044c0fad1d09e3c01d225e25b9220dbfdcf16dbb1b3"
  3004. dependencies = [
  3005. "windows-sys 0.42.0",
  3006. ]
  3007. [[package]]
  3008. name = "scheduled-thread-pool"
  3009. version = "0.2.6"
  3010. source = "registry+https://github.com/rust-lang/crates.io-index"
  3011. checksum = "977a7519bff143a44f842fd07e80ad1329295bd71686457f18e496736f4bf9bf"
  3012. dependencies = [
  3013. "parking_lot 0.12.1",
  3014. ]
  3015. [[package]]
  3016. name = "scopeguard"
  3017. version = "1.1.0"
  3018. source = "registry+https://github.com/rust-lang/crates.io-index"
  3019. checksum = "d29ab0c6d3fc0ee92fe66e2d99f700eab17a8d57d1c1d3b748380fb20baa78cd"
  3020. [[package]]
  3021. name = "scratch"
  3022. version = "1.0.3"
  3023. source = "registry+https://github.com/rust-lang/crates.io-index"
  3024. checksum = "ddccb15bcce173023b3fedd9436f882a0739b8dfb45e4f6b6002bee5929f61b2"
  3025. [[package]]
  3026. name = "seahash"
  3027. version = "4.1.0"
  3028. source = "registry+https://github.com/rust-lang/crates.io-index"
  3029. checksum = "1c107b6f4780854c8b126e228ea8869f4d7b71260f962fefb57b996b8959ba6b"
  3030. [[package]]
  3031. name = "security-framework"
  3032. version = "2.7.0"
  3033. source = "registry+https://github.com/rust-lang/crates.io-index"
  3034. checksum = "2bc1bb97804af6631813c55739f771071e0f2ed33ee20b68c86ec505d906356c"
  3035. dependencies = [
  3036. "bitflags",
  3037. "core-foundation",
  3038. "core-foundation-sys",
  3039. "libc",
  3040. "security-framework-sys",
  3041. ]
  3042. [[package]]
  3043. name = "security-framework-sys"
  3044. version = "2.6.1"
  3045. source = "registry+https://github.com/rust-lang/crates.io-index"
  3046. checksum = "0160a13a177a45bfb43ce71c01580998474f556ad854dcbca936dd2841a5c556"
  3047. dependencies = [
  3048. "core-foundation-sys",
  3049. "libc",
  3050. ]
  3051. [[package]]
  3052. name = "semver"
  3053. version = "1.0.16"
  3054. source = "registry+https://github.com/rust-lang/crates.io-index"
  3055. checksum = "58bc9567378fc7690d6b2addae4e60ac2eeea07becb2c64b9f218b53865cba2a"
  3056. [[package]]
  3057. name = "serde"
  3058. version = "1.0.152"
  3059. source = "registry+https://github.com/rust-lang/crates.io-index"
  3060. checksum = "bb7d1f0d3021d347a83e556fc4683dea2ea09d87bccdf88ff5c12545d89d5efb"
  3061. dependencies = [
  3062. "serde_derive",
  3063. ]
  3064. [[package]]
  3065. name = "serde-aux"
  3066. version = "1.1.0"
  3067. source = "registry+https://github.com/rust-lang/crates.io-index"
  3068. checksum = "905f2fc9f3d1574e8b5923a58118240021f01d4e239673937ffb9f42707a4f22"
  3069. dependencies = [
  3070. "chrono",
  3071. "serde",
  3072. "serde_json",
  3073. ]
  3074. [[package]]
  3075. name = "serde_cbor"
  3076. version = "0.11.2"
  3077. source = "registry+https://github.com/rust-lang/crates.io-index"
  3078. checksum = "2bef2ebfde456fb76bbcf9f59315333decc4fda0b2b44b420243c11e0f5ec1f5"
  3079. dependencies = [
  3080. "half",
  3081. "serde",
  3082. ]
  3083. [[package]]
  3084. name = "serde_derive"
  3085. version = "1.0.152"
  3086. source = "registry+https://github.com/rust-lang/crates.io-index"
  3087. checksum = "af487d118eecd09402d70a5d72551860e788df87b464af30e5ea6a38c75c541e"
  3088. dependencies = [
  3089. "proc-macro2",
  3090. "quote",
  3091. "syn",
  3092. ]
  3093. [[package]]
  3094. name = "serde_json"
  3095. version = "1.0.91"
  3096. source = "registry+https://github.com/rust-lang/crates.io-index"
  3097. checksum = "877c235533714907a8c2464236f5c4b2a17262ef1bd71f38f35ea592c8da6883"
  3098. dependencies = [
  3099. "itoa 1.0.5",
  3100. "ryu",
  3101. "serde",
  3102. ]
  3103. [[package]]
  3104. name = "serde_repr"
  3105. version = "0.1.10"
  3106. source = "registry+https://github.com/rust-lang/crates.io-index"
  3107. checksum = "9a5ec9fa74a20ebbe5d9ac23dac1fc96ba0ecfe9f50f2843b52e537b10fbcb4e"
  3108. dependencies = [
  3109. "proc-macro2",
  3110. "quote",
  3111. "syn",
  3112. ]
  3113. [[package]]
  3114. name = "serde_urlencoded"
  3115. version = "0.7.1"
  3116. source = "registry+https://github.com/rust-lang/crates.io-index"
  3117. checksum = "d3491c14715ca2294c4d6a88f15e84739788c1d030eed8c110436aafdaa2f3fd"
  3118. dependencies = [
  3119. "form_urlencoded",
  3120. "itoa 1.0.5",
  3121. "ryu",
  3122. "serde",
  3123. ]
  3124. [[package]]
  3125. name = "serial_test"
  3126. version = "0.5.1"
  3127. source = "registry+https://github.com/rust-lang/crates.io-index"
  3128. checksum = "e0bccbcf40c8938196944a3da0e133e031a33f4d6b72db3bda3cc556e361905d"
  3129. dependencies = [
  3130. "lazy_static",
  3131. "parking_lot 0.11.2",
  3132. "serial_test_derive",
  3133. ]
  3134. [[package]]
  3135. name = "serial_test_derive"
  3136. version = "0.5.1"
  3137. source = "registry+https://github.com/rust-lang/crates.io-index"
  3138. checksum = "b2acd6defeddb41eb60bb468f8825d0cfd0c2a76bc03bfd235b6a1dc4f6a1ad5"
  3139. dependencies = [
  3140. "proc-macro2",
  3141. "quote",
  3142. "syn",
  3143. ]
  3144. [[package]]
  3145. name = "sha-1"
  3146. version = "0.9.8"
  3147. source = "registry+https://github.com/rust-lang/crates.io-index"
  3148. checksum = "99cd6713db3cf16b6c84e06321e049a9b9f699826e16096d23bbcc44d15d51a6"
  3149. dependencies = [
  3150. "block-buffer 0.9.0",
  3151. "cfg-if",
  3152. "cpufeatures",
  3153. "digest 0.9.0",
  3154. "opaque-debug",
  3155. ]
  3156. [[package]]
  3157. name = "sha2"
  3158. version = "0.10.6"
  3159. source = "registry+https://github.com/rust-lang/crates.io-index"
  3160. checksum = "82e6b795fe2e3b1e845bafcb27aa35405c4d47cdfc92af5fc8d3002f76cebdc0"
  3161. dependencies = [
  3162. "cfg-if",
  3163. "cpufeatures",
  3164. "digest 0.10.6",
  3165. ]
  3166. [[package]]
  3167. name = "sharded-slab"
  3168. version = "0.1.4"
  3169. source = "registry+https://github.com/rust-lang/crates.io-index"
  3170. checksum = "900fba806f70c630b0a382d0d825e17a0f19fcd059a2ade1ff237bcddf446b31"
  3171. dependencies = [
  3172. "lazy_static",
  3173. ]
  3174. [[package]]
  3175. name = "signal-hook-registry"
  3176. version = "1.4.0"
  3177. source = "registry+https://github.com/rust-lang/crates.io-index"
  3178. checksum = "e51e73328dc4ac0c7ccbda3a494dfa03df1de2f46018127f60c693f2648455b0"
  3179. dependencies = [
  3180. "libc",
  3181. ]
  3182. [[package]]
  3183. name = "similar"
  3184. version = "1.3.0"
  3185. source = "registry+https://github.com/rust-lang/crates.io-index"
  3186. checksum = "1ad1d488a557b235fc46dae55512ffbfc429d2482b08b4d9435ab07384ca8aec"
  3187. [[package]]
  3188. name = "siphasher"
  3189. version = "0.3.10"
  3190. source = "registry+https://github.com/rust-lang/crates.io-index"
  3191. checksum = "7bd3e3206899af3f8b12af284fafc038cc1dc2b41d1b89dd17297221c5d225de"
  3192. [[package]]
  3193. name = "slab"
  3194. version = "0.4.7"
  3195. source = "registry+https://github.com/rust-lang/crates.io-index"
  3196. checksum = "4614a76b2a8be0058caa9dbbaf66d988527d86d003c11a94fbd335d7661edcef"
  3197. dependencies = [
  3198. "autocfg",
  3199. ]
  3200. [[package]]
  3201. name = "slug"
  3202. version = "0.1.4"
  3203. source = "registry+https://github.com/rust-lang/crates.io-index"
  3204. checksum = "b3bc762e6a4b6c6fcaade73e77f9ebc6991b676f88bb2358bddb56560f073373"
  3205. dependencies = [
  3206. "deunicode",
  3207. ]
  3208. [[package]]
  3209. name = "smallvec"
  3210. version = "1.10.0"
  3211. source = "registry+https://github.com/rust-lang/crates.io-index"
  3212. checksum = "a507befe795404456341dfab10cef66ead4c041f62b8b11bbb92bffe5d0953e0"
  3213. [[package]]
  3214. name = "socket2"
  3215. version = "0.4.7"
  3216. source = "registry+https://github.com/rust-lang/crates.io-index"
  3217. checksum = "02e2d2db9033d13a1567121ddd7a095ee144db4e1ca1b1bda3419bc0da294ebd"
  3218. dependencies = [
  3219. "libc",
  3220. "winapi",
  3221. ]
  3222. [[package]]
  3223. name = "static_assertions"
  3224. version = "1.1.0"
  3225. source = "registry+https://github.com/rust-lang/crates.io-index"
  3226. checksum = "a2eb9349b6444b326872e140eb1cf5e7c522154d69e7a0ffb0fb81c06b37543f"
  3227. [[package]]
  3228. name = "strum"
  3229. version = "0.21.0"
  3230. source = "registry+https://github.com/rust-lang/crates.io-index"
  3231. checksum = "aaf86bbcfd1fa9670b7a129f64fc0c9fcbbfe4f1bc4210e9e98fe71ffc12cde2"
  3232. [[package]]
  3233. name = "strum_macros"
  3234. version = "0.21.1"
  3235. source = "registry+https://github.com/rust-lang/crates.io-index"
  3236. checksum = "d06aaeeee809dbc59eb4556183dd927df67db1540de5be8d3ec0b6636358a5ec"
  3237. dependencies = [
  3238. "heck",
  3239. "proc-macro2",
  3240. "quote",
  3241. "syn",
  3242. ]
  3243. [[package]]
  3244. name = "syn"
  3245. version = "1.0.109"
  3246. source = "registry+https://github.com/rust-lang/crates.io-index"
  3247. checksum = "72b64191b275b66ffe2469e8af2c1cfe3bafa67b529ead792a6d0160888b4237"
  3248. dependencies = [
  3249. "proc-macro2",
  3250. "quote",
  3251. "unicode-ident",
  3252. ]
  3253. [[package]]
  3254. name = "sync_wrapper"
  3255. version = "0.1.2"
  3256. source = "registry+https://github.com/rust-lang/crates.io-index"
  3257. checksum = "2047c6ded9c721764247e62cd3b03c09ffc529b2ba5b10ec482ae507a4a70160"
  3258. [[package]]
  3259. name = "tempfile"
  3260. version = "3.3.0"
  3261. source = "registry+https://github.com/rust-lang/crates.io-index"
  3262. checksum = "5cdb1ef4eaeeaddc8fbd371e5017057064af0911902ef36b39801f67cc6d79e4"
  3263. dependencies = [
  3264. "cfg-if",
  3265. "fastrand",
  3266. "libc",
  3267. "redox_syscall 0.2.16",
  3268. "remove_dir_all",
  3269. "winapi",
  3270. ]
  3271. [[package]]
  3272. name = "tera"
  3273. version = "1.17.1"
  3274. source = "registry+https://github.com/rust-lang/crates.io-index"
  3275. checksum = "3df578c295f9ec044ff1c829daf31bb7581d5b3c2a7a3d87419afe1f2531438c"
  3276. dependencies = [
  3277. "chrono",
  3278. "chrono-tz",
  3279. "globwalk",
  3280. "humansize",
  3281. "lazy_static",
  3282. "percent-encoding",
  3283. "pest",
  3284. "pest_derive",
  3285. "rand 0.8.5",
  3286. "regex",
  3287. "serde",
  3288. "serde_json",
  3289. "slug",
  3290. "unic-segment",
  3291. ]
  3292. [[package]]
  3293. name = "termcolor"
  3294. version = "1.1.3"
  3295. source = "registry+https://github.com/rust-lang/crates.io-index"
  3296. checksum = "bab24d30b911b2376f3a13cc2cd443142f0c81dda04c118693e35b3835757755"
  3297. dependencies = [
  3298. "winapi-util",
  3299. ]
  3300. [[package]]
  3301. name = "terminal_size"
  3302. version = "0.1.17"
  3303. source = "registry+https://github.com/rust-lang/crates.io-index"
  3304. checksum = "633c1a546cee861a1a6d0dc69ebeca693bf4296661ba7852b9d21d159e0506df"
  3305. dependencies = [
  3306. "libc",
  3307. "winapi",
  3308. ]
  3309. [[package]]
  3310. name = "textwrap"
  3311. version = "0.11.0"
  3312. source = "registry+https://github.com/rust-lang/crates.io-index"
  3313. checksum = "d326610f408c7a4eb6f51c37c330e496b08506c9457c9d34287ecc38809fb060"
  3314. dependencies = [
  3315. "unicode-width",
  3316. ]
  3317. [[package]]
  3318. name = "thiserror"
  3319. version = "1.0.38"
  3320. source = "registry+https://github.com/rust-lang/crates.io-index"
  3321. checksum = "6a9cd18aa97d5c45c6603caea1da6628790b37f7a34b6ca89522331c5180fed0"
  3322. dependencies = [
  3323. "thiserror-impl",
  3324. ]
  3325. [[package]]
  3326. name = "thiserror-impl"
  3327. version = "1.0.38"
  3328. source = "registry+https://github.com/rust-lang/crates.io-index"
  3329. checksum = "1fb327af4685e4d03fa8cbcf1716380da910eeb2bb8be417e7f9fd3fb164f36f"
  3330. dependencies = [
  3331. "proc-macro2",
  3332. "quote",
  3333. "syn",
  3334. ]
  3335. [[package]]
  3336. name = "thread-id"
  3337. version = "3.3.0"
  3338. source = "registry+https://github.com/rust-lang/crates.io-index"
  3339. checksum = "c7fbf4c9d56b320106cd64fd024dadfa0be7cb4706725fc44a7d7ce952d820c1"
  3340. dependencies = [
  3341. "libc",
  3342. "redox_syscall 0.1.57",
  3343. "winapi",
  3344. ]
  3345. [[package]]
  3346. name = "thread_local"
  3347. version = "1.1.4"
  3348. source = "registry+https://github.com/rust-lang/crates.io-index"
  3349. checksum = "5516c27b78311c50bf42c071425c560ac799b11c30b31f87e3081965fe5e0180"
  3350. dependencies = [
  3351. "once_cell",
  3352. ]
  3353. [[package]]
  3354. name = "time"
  3355. version = "0.1.45"
  3356. source = "registry+https://github.com/rust-lang/crates.io-index"
  3357. checksum = "1b797afad3f312d1c66a56d11d0316f916356d11bd158fbc6ca6389ff6bf805a"
  3358. dependencies = [
  3359. "libc",
  3360. "wasi 0.10.0+wasi-snapshot-preview1",
  3361. "winapi",
  3362. ]
  3363. [[package]]
  3364. name = "tinytemplate"
  3365. version = "1.2.1"
  3366. source = "registry+https://github.com/rust-lang/crates.io-index"
  3367. checksum = "be4d6b5f19ff7664e8c98d03e2139cb510db9b0a60b55f8e8709b689d939b6bc"
  3368. dependencies = [
  3369. "serde",
  3370. "serde_json",
  3371. ]
  3372. [[package]]
  3373. name = "tinyvec"
  3374. version = "1.6.0"
  3375. source = "registry+https://github.com/rust-lang/crates.io-index"
  3376. checksum = "87cc5ceb3875bb20c2890005a4e226a4651264a5c75edb2421b52861a0a0cb50"
  3377. dependencies = [
  3378. "tinyvec_macros",
  3379. ]
  3380. [[package]]
  3381. name = "tinyvec_macros"
  3382. version = "0.1.0"
  3383. source = "registry+https://github.com/rust-lang/crates.io-index"
  3384. checksum = "cda74da7e1a664f795bb1f8a87ec406fb89a02522cf6e50620d016add6dbbf5c"
  3385. [[package]]
  3386. name = "tokio"
  3387. version = "1.26.0"
  3388. source = "registry+https://github.com/rust-lang/crates.io-index"
  3389. checksum = "03201d01c3c27a29c8a5cee5b55a93ddae1ccf6f08f65365c2c918f8c1b76f64"
  3390. dependencies = [
  3391. "autocfg",
  3392. "bytes",
  3393. "libc",
  3394. "memchr",
  3395. "mio",
  3396. "num_cpus",
  3397. "parking_lot 0.12.1",
  3398. "pin-project-lite",
  3399. "signal-hook-registry",
  3400. "socket2",
  3401. "tokio-macros",
  3402. "tracing",
  3403. "windows-sys 0.45.0",
  3404. ]
  3405. [[package]]
  3406. name = "tokio-io-timeout"
  3407. version = "1.2.0"
  3408. source = "registry+https://github.com/rust-lang/crates.io-index"
  3409. checksum = "30b74022ada614a1b4834de765f9bb43877f910cc8ce4be40e89042c9223a8bf"
  3410. dependencies = [
  3411. "pin-project-lite",
  3412. "tokio",
  3413. ]
  3414. [[package]]
  3415. name = "tokio-macros"
  3416. version = "1.8.2"
  3417. source = "registry+https://github.com/rust-lang/crates.io-index"
  3418. checksum = "d266c00fde287f55d3f1c3e96c500c362a2b8c695076ec180f27918820bc6df8"
  3419. dependencies = [
  3420. "proc-macro2",
  3421. "quote",
  3422. "syn",
  3423. ]
  3424. [[package]]
  3425. name = "tokio-native-tls"
  3426. version = "0.3.0"
  3427. source = "registry+https://github.com/rust-lang/crates.io-index"
  3428. checksum = "f7d995660bd2b7f8c1568414c1126076c13fbb725c40112dc0120b78eb9b717b"
  3429. dependencies = [
  3430. "native-tls",
  3431. "tokio",
  3432. ]
  3433. [[package]]
  3434. name = "tokio-stream"
  3435. version = "0.1.12"
  3436. source = "registry+https://github.com/rust-lang/crates.io-index"
  3437. checksum = "8fb52b74f05dbf495a8fba459fdc331812b96aa086d9eb78101fa0d4569c3313"
  3438. dependencies = [
  3439. "futures-core",
  3440. "pin-project-lite",
  3441. "tokio",
  3442. ]
  3443. [[package]]
  3444. name = "tokio-tungstenite"
  3445. version = "0.15.0"
  3446. source = "registry+https://github.com/rust-lang/crates.io-index"
  3447. checksum = "511de3f85caf1c98983545490c3d09685fa8eb634e57eec22bb4db271f46cbd8"
  3448. dependencies = [
  3449. "futures-util",
  3450. "log",
  3451. "pin-project",
  3452. "tokio",
  3453. "tungstenite",
  3454. ]
  3455. [[package]]
  3456. name = "tokio-util"
  3457. version = "0.7.3"
  3458. source = "registry+https://github.com/rust-lang/crates.io-index"
  3459. checksum = "cc463cd8deddc3770d20f9852143d50bf6094e640b485cb2e189a2099085ff45"
  3460. dependencies = [
  3461. "bytes",
  3462. "futures-core",
  3463. "futures-sink",
  3464. "pin-project-lite",
  3465. "tokio",
  3466. "tracing",
  3467. ]
  3468. [[package]]
  3469. name = "toml"
  3470. version = "0.5.11"
  3471. source = "registry+https://github.com/rust-lang/crates.io-index"
  3472. checksum = "f4f7f0dd8d50a853a531c426359045b1998f04219d88799810762cd4ad314234"
  3473. dependencies = [
  3474. "serde",
  3475. ]
  3476. [[package]]
  3477. name = "tonic"
  3478. version = "0.8.3"
  3479. source = "registry+https://github.com/rust-lang/crates.io-index"
  3480. checksum = "8f219fad3b929bef19b1f86fbc0358d35daed8f2cac972037ac0dc10bbb8d5fb"
  3481. dependencies = [
  3482. "async-stream",
  3483. "async-trait",
  3484. "axum",
  3485. "base64 0.13.1",
  3486. "bytes",
  3487. "futures-core",
  3488. "futures-util",
  3489. "h2",
  3490. "http",
  3491. "http-body",
  3492. "hyper",
  3493. "hyper-timeout",
  3494. "percent-encoding",
  3495. "pin-project",
  3496. "prost",
  3497. "prost-derive",
  3498. "tokio",
  3499. "tokio-stream",
  3500. "tokio-util",
  3501. "tower",
  3502. "tower-layer",
  3503. "tower-service",
  3504. "tracing",
  3505. "tracing-futures",
  3506. ]
  3507. [[package]]
  3508. name = "tower"
  3509. version = "0.4.13"
  3510. source = "registry+https://github.com/rust-lang/crates.io-index"
  3511. checksum = "b8fa9be0de6cf49e536ce1851f987bd21a43b771b09473c3549a6c853db37c1c"
  3512. dependencies = [
  3513. "futures-core",
  3514. "futures-util",
  3515. "indexmap",
  3516. "pin-project",
  3517. "pin-project-lite",
  3518. "rand 0.8.5",
  3519. "slab",
  3520. "tokio",
  3521. "tokio-util",
  3522. "tower-layer",
  3523. "tower-service",
  3524. "tracing",
  3525. ]
  3526. [[package]]
  3527. name = "tower-http"
  3528. version = "0.3.5"
  3529. source = "registry+https://github.com/rust-lang/crates.io-index"
  3530. checksum = "f873044bf02dd1e8239e9c1293ea39dad76dc594ec16185d0a1bf31d8dc8d858"
  3531. dependencies = [
  3532. "bitflags",
  3533. "bytes",
  3534. "futures-core",
  3535. "futures-util",
  3536. "http",
  3537. "http-body",
  3538. "http-range-header",
  3539. "pin-project-lite",
  3540. "tower",
  3541. "tower-layer",
  3542. "tower-service",
  3543. ]
  3544. [[package]]
  3545. name = "tower-layer"
  3546. version = "0.3.2"
  3547. source = "registry+https://github.com/rust-lang/crates.io-index"
  3548. checksum = "c20c8dbed6283a09604c3e69b4b7eeb54e298b8a600d4d5ecb5ad39de609f1d0"
  3549. [[package]]
  3550. name = "tower-service"
  3551. version = "0.3.2"
  3552. source = "registry+https://github.com/rust-lang/crates.io-index"
  3553. checksum = "b6bc1c9ce2b5135ac7f93c72918fc37feb872bdc6a5533a8b85eb4b86bfdae52"
  3554. [[package]]
  3555. name = "tracing"
  3556. version = "0.1.37"
  3557. source = "registry+https://github.com/rust-lang/crates.io-index"
  3558. checksum = "8ce8c33a8d48bd45d624a6e523445fd21ec13d3653cd51f681abf67418f54eb8"
  3559. dependencies = [
  3560. "cfg-if",
  3561. "log",
  3562. "pin-project-lite",
  3563. "tracing-attributes",
  3564. "tracing-core",
  3565. ]
  3566. [[package]]
  3567. name = "tracing-appender"
  3568. version = "0.1.2"
  3569. source = "registry+https://github.com/rust-lang/crates.io-index"
  3570. checksum = "9965507e507f12c8901432a33e31131222abac31edd90cabbcf85cf544b7127a"
  3571. dependencies = [
  3572. "chrono",
  3573. "crossbeam-channel",
  3574. "tracing-subscriber 0.2.25",
  3575. ]
  3576. [[package]]
  3577. name = "tracing-attributes"
  3578. version = "0.1.23"
  3579. source = "registry+https://github.com/rust-lang/crates.io-index"
  3580. checksum = "4017f8f45139870ca7e672686113917c71c7a6e02d4924eda67186083c03081a"
  3581. dependencies = [
  3582. "proc-macro2",
  3583. "quote",
  3584. "syn",
  3585. ]
  3586. [[package]]
  3587. name = "tracing-bunyan-formatter"
  3588. version = "0.2.6"
  3589. source = "registry+https://github.com/rust-lang/crates.io-index"
  3590. checksum = "c408910c9b7eabc0215fe2b4a89f8ec95581a91cea1f7619f7c78caf14cbc2a1"
  3591. dependencies = [
  3592. "chrono",
  3593. "gethostname",
  3594. "log",
  3595. "serde",
  3596. "serde_json",
  3597. "tracing",
  3598. "tracing-core",
  3599. "tracing-log",
  3600. "tracing-subscriber 0.2.25",
  3601. ]
  3602. [[package]]
  3603. name = "tracing-core"
  3604. version = "0.1.30"
  3605. source = "registry+https://github.com/rust-lang/crates.io-index"
  3606. checksum = "24eb03ba0eab1fd845050058ce5e616558e8f8d8fca633e6b163fe25c797213a"
  3607. dependencies = [
  3608. "once_cell",
  3609. "valuable",
  3610. ]
  3611. [[package]]
  3612. name = "tracing-futures"
  3613. version = "0.2.5"
  3614. source = "registry+https://github.com/rust-lang/crates.io-index"
  3615. checksum = "97d095ae15e245a057c8e8451bab9b3ee1e1f68e9ba2b4fbc18d0ac5237835f2"
  3616. dependencies = [
  3617. "pin-project",
  3618. "tracing",
  3619. ]
  3620. [[package]]
  3621. name = "tracing-log"
  3622. version = "0.1.3"
  3623. source = "registry+https://github.com/rust-lang/crates.io-index"
  3624. checksum = "78ddad33d2d10b1ed7eb9d1f518a5674713876e97e5bb9b7345a7984fbb4f922"
  3625. dependencies = [
  3626. "lazy_static",
  3627. "log",
  3628. "tracing-core",
  3629. ]
  3630. [[package]]
  3631. name = "tracing-serde"
  3632. version = "0.1.3"
  3633. source = "registry+https://github.com/rust-lang/crates.io-index"
  3634. checksum = "bc6b213177105856957181934e4920de57730fc69bf42c37ee5bb664d406d9e1"
  3635. dependencies = [
  3636. "serde",
  3637. "tracing-core",
  3638. ]
  3639. [[package]]
  3640. name = "tracing-subscriber"
  3641. version = "0.2.25"
  3642. source = "registry+https://github.com/rust-lang/crates.io-index"
  3643. checksum = "0e0d2eaa99c3c2e41547cfa109e910a68ea03823cccad4a0525dcbc9b01e8c71"
  3644. dependencies = [
  3645. "ansi_term",
  3646. "chrono",
  3647. "lazy_static",
  3648. "matchers 0.0.1",
  3649. "regex",
  3650. "serde",
  3651. "serde_json",
  3652. "sharded-slab",
  3653. "smallvec",
  3654. "thread_local",
  3655. "tracing",
  3656. "tracing-core",
  3657. "tracing-log",
  3658. "tracing-serde",
  3659. ]
  3660. [[package]]
  3661. name = "tracing-subscriber"
  3662. version = "0.3.16"
  3663. source = "registry+https://github.com/rust-lang/crates.io-index"
  3664. checksum = "a6176eae26dd70d0c919749377897b54a9276bd7061339665dd68777926b5a70"
  3665. dependencies = [
  3666. "matchers 0.1.0",
  3667. "once_cell",
  3668. "regex",
  3669. "sharded-slab",
  3670. "thread_local",
  3671. "tracing",
  3672. "tracing-core",
  3673. ]
  3674. [[package]]
  3675. name = "try-lock"
  3676. version = "0.2.4"
  3677. source = "registry+https://github.com/rust-lang/crates.io-index"
  3678. checksum = "3528ecfd12c466c6f163363caf2d02a71161dd5e1cc6ae7b34207ea2d42d81ed"
  3679. [[package]]
  3680. name = "trybuild"
  3681. version = "1.0.77"
  3682. source = "registry+https://github.com/rust-lang/crates.io-index"
  3683. checksum = "a44da5a6f2164c8e14d3bbc0657d69c5966af9f5f6930d4f600b1f5c4a673413"
  3684. dependencies = [
  3685. "basic-toml",
  3686. "glob",
  3687. "once_cell",
  3688. "serde",
  3689. "serde_derive",
  3690. "serde_json",
  3691. "termcolor",
  3692. ]
  3693. [[package]]
  3694. name = "tungstenite"
  3695. version = "0.14.0"
  3696. source = "registry+https://github.com/rust-lang/crates.io-index"
  3697. checksum = "a0b2d8558abd2e276b0a8df5c05a2ec762609344191e5fd23e292c910e9165b5"
  3698. dependencies = [
  3699. "base64 0.13.1",
  3700. "byteorder",
  3701. "bytes",
  3702. "http",
  3703. "httparse",
  3704. "log",
  3705. "rand 0.8.5",
  3706. "sha-1",
  3707. "thiserror",
  3708. "url",
  3709. "utf-8",
  3710. ]
  3711. [[package]]
  3712. name = "typenum"
  3713. version = "1.16.0"
  3714. source = "registry+https://github.com/rust-lang/crates.io-index"
  3715. checksum = "497961ef93d974e23eb6f433eb5fe1b7930b659f06d12dec6fc44a8f554c0bba"
  3716. [[package]]
  3717. name = "ucd-trie"
  3718. version = "0.1.5"
  3719. source = "registry+https://github.com/rust-lang/crates.io-index"
  3720. checksum = "9e79c4d996edb816c91e4308506774452e55e95c3c9de07b6729e17e15a5ef81"
  3721. [[package]]
  3722. name = "uncased"
  3723. version = "0.9.7"
  3724. source = "registry+https://github.com/rust-lang/crates.io-index"
  3725. checksum = "09b01702b0fd0b3fadcf98e098780badda8742d4f4a7676615cad90e8ac73622"
  3726. dependencies = [
  3727. "version_check",
  3728. ]
  3729. [[package]]
  3730. name = "unic-char-property"
  3731. version = "0.9.0"
  3732. source = "registry+https://github.com/rust-lang/crates.io-index"
  3733. checksum = "a8c57a407d9b6fa02b4795eb81c5b6652060a15a7903ea981f3d723e6c0be221"
  3734. dependencies = [
  3735. "unic-char-range",
  3736. ]
  3737. [[package]]
  3738. name = "unic-char-range"
  3739. version = "0.9.0"
  3740. source = "registry+https://github.com/rust-lang/crates.io-index"
  3741. checksum = "0398022d5f700414f6b899e10b8348231abf9173fa93144cbc1a43b9793c1fbc"
  3742. [[package]]
  3743. name = "unic-common"
  3744. version = "0.9.0"
  3745. source = "registry+https://github.com/rust-lang/crates.io-index"
  3746. checksum = "80d7ff825a6a654ee85a63e80f92f054f904f21e7d12da4e22f9834a4aaa35bc"
  3747. [[package]]
  3748. name = "unic-segment"
  3749. version = "0.9.0"
  3750. source = "registry+https://github.com/rust-lang/crates.io-index"
  3751. checksum = "e4ed5d26be57f84f176157270c112ef57b86debac9cd21daaabbe56db0f88f23"
  3752. dependencies = [
  3753. "unic-ucd-segment",
  3754. ]
  3755. [[package]]
  3756. name = "unic-ucd-segment"
  3757. version = "0.9.0"
  3758. source = "registry+https://github.com/rust-lang/crates.io-index"
  3759. checksum = "2079c122a62205b421f499da10f3ee0f7697f012f55b675e002483c73ea34700"
  3760. dependencies = [
  3761. "unic-char-property",
  3762. "unic-char-range",
  3763. "unic-ucd-version",
  3764. ]
  3765. [[package]]
  3766. name = "unic-ucd-version"
  3767. version = "0.9.0"
  3768. source = "registry+https://github.com/rust-lang/crates.io-index"
  3769. checksum = "96bd2f2237fe450fcd0a1d2f5f4e91711124f7857ba2e964247776ebeeb7b0c4"
  3770. dependencies = [
  3771. "unic-common",
  3772. ]
  3773. [[package]]
  3774. name = "unicode-bidi"
  3775. version = "0.3.8"
  3776. source = "registry+https://github.com/rust-lang/crates.io-index"
  3777. checksum = "099b7128301d285f79ddd55b9a83d5e6b9e97c92e0ea0daebee7263e932de992"
  3778. [[package]]
  3779. name = "unicode-ident"
  3780. version = "1.0.6"
  3781. source = "registry+https://github.com/rust-lang/crates.io-index"
  3782. checksum = "84a22b9f218b40614adcb3f4ff08b703773ad44fa9423e4e0d346d5db86e4ebc"
  3783. [[package]]
  3784. name = "unicode-normalization"
  3785. version = "0.1.22"
  3786. source = "registry+https://github.com/rust-lang/crates.io-index"
  3787. checksum = "5c5713f0fc4b5db668a2ac63cdb7bb4469d8c9fed047b1d0292cc7b0ce2ba921"
  3788. dependencies = [
  3789. "tinyvec",
  3790. ]
  3791. [[package]]
  3792. name = "unicode-segmentation"
  3793. version = "1.10.0"
  3794. source = "registry+https://github.com/rust-lang/crates.io-index"
  3795. checksum = "0fdbf052a0783de01e944a6ce7a8cb939e295b1e7be835a1112c3b9a7f047a5a"
  3796. [[package]]
  3797. name = "unicode-width"
  3798. version = "0.1.10"
  3799. source = "registry+https://github.com/rust-lang/crates.io-index"
  3800. checksum = "c0edd1e5b14653f783770bce4a4dabb4a5108a5370a5f5d8cfe8710c361f6c8b"
  3801. [[package]]
  3802. name = "url"
  3803. version = "2.3.1"
  3804. source = "registry+https://github.com/rust-lang/crates.io-index"
  3805. checksum = "0d68c799ae75762b8c3fe375feb6600ef5602c883c5d21eb51c09f22b83c4643"
  3806. dependencies = [
  3807. "form_urlencoded",
  3808. "idna 0.3.0",
  3809. "percent-encoding",
  3810. ]
  3811. [[package]]
  3812. name = "user-model"
  3813. version = "0.1.0"
  3814. dependencies = [
  3815. "fancy-regex 0.11.0",
  3816. "lazy_static",
  3817. "serde",
  3818. "serde_repr",
  3819. "thiserror",
  3820. "tracing",
  3821. "unicode-segmentation",
  3822. "validator",
  3823. ]
  3824. [[package]]
  3825. name = "utf-8"
  3826. version = "0.7.6"
  3827. source = "registry+https://github.com/rust-lang/crates.io-index"
  3828. checksum = "09cc8ee72d2a9becf2f2febe0205bbed8fc6615b7cb429ad062dc7b7ddd036a9"
  3829. [[package]]
  3830. name = "validator"
  3831. version = "0.16.0"
  3832. source = "registry+https://github.com/rust-lang/crates.io-index"
  3833. checksum = "32ad5bf234c7d3ad1042e5252b7eddb2c4669ee23f32c7dd0e9b7705f07ef591"
  3834. dependencies = [
  3835. "idna 0.2.3",
  3836. "lazy_static",
  3837. "regex",
  3838. "serde",
  3839. "serde_derive",
  3840. "serde_json",
  3841. "url",
  3842. ]
  3843. [[package]]
  3844. name = "valuable"
  3845. version = "0.1.0"
  3846. source = "registry+https://github.com/rust-lang/crates.io-index"
  3847. checksum = "830b7e5d4d90034032940e4ace0d9a9a057e7a45cd94e6c007832e39edb82f6d"
  3848. [[package]]
  3849. name = "vcpkg"
  3850. version = "0.2.15"
  3851. source = "registry+https://github.com/rust-lang/crates.io-index"
  3852. checksum = "accd4ea62f7bb7a82fe23066fb0957d48ef677f6eeb8215f372f52e48bb32426"
  3853. [[package]]
  3854. name = "version_check"
  3855. version = "0.9.4"
  3856. source = "registry+https://github.com/rust-lang/crates.io-index"
  3857. checksum = "49874b5167b65d7193b8aba1567f5c7d93d001cafc34600cee003eda787e483f"
  3858. [[package]]
  3859. name = "walkdir"
  3860. version = "2.3.2"
  3861. source = "registry+https://github.com/rust-lang/crates.io-index"
  3862. checksum = "808cf2735cd4b6866113f648b791c6adc5714537bc222d9347bb203386ffda56"
  3863. dependencies = [
  3864. "same-file",
  3865. "winapi",
  3866. "winapi-util",
  3867. ]
  3868. [[package]]
  3869. name = "want"
  3870. version = "0.3.0"
  3871. source = "registry+https://github.com/rust-lang/crates.io-index"
  3872. checksum = "1ce8a968cb1cd110d136ff8b819a556d6fb6d919363c61534f6860c7eb172ba0"
  3873. dependencies = [
  3874. "log",
  3875. "try-lock",
  3876. ]
  3877. [[package]]
  3878. name = "wasi"
  3879. version = "0.9.0+wasi-snapshot-preview1"
  3880. source = "registry+https://github.com/rust-lang/crates.io-index"
  3881. checksum = "cccddf32554fecc6acb585f82a32a72e28b48f8c4c1883ddfeeeaa96f7d8e519"
  3882. [[package]]
  3883. name = "wasi"
  3884. version = "0.10.0+wasi-snapshot-preview1"
  3885. source = "registry+https://github.com/rust-lang/crates.io-index"
  3886. checksum = "1a143597ca7c7793eff794def352d41792a93c481eb1042423ff7ff72ba2c31f"
  3887. [[package]]
  3888. name = "wasi"
  3889. version = "0.11.0+wasi-snapshot-preview1"
  3890. source = "registry+https://github.com/rust-lang/crates.io-index"
  3891. checksum = "9c8d87e72b64a3b4db28d11ce29237c246188f4f51057d65a7eab63b7987e423"
  3892. [[package]]
  3893. name = "wasm-bindgen"
  3894. version = "0.2.83"
  3895. source = "registry+https://github.com/rust-lang/crates.io-index"
  3896. checksum = "eaf9f5aceeec8be17c128b2e93e031fb8a4d469bb9c4ae2d7dc1888b26887268"
  3897. dependencies = [
  3898. "cfg-if",
  3899. "wasm-bindgen-macro",
  3900. ]
  3901. [[package]]
  3902. name = "wasm-bindgen-backend"
  3903. version = "0.2.83"
  3904. source = "registry+https://github.com/rust-lang/crates.io-index"
  3905. checksum = "4c8ffb332579b0557b52d268b91feab8df3615f265d5270fec2a8c95b17c1142"
  3906. dependencies = [
  3907. "bumpalo",
  3908. "log",
  3909. "once_cell",
  3910. "proc-macro2",
  3911. "quote",
  3912. "syn",
  3913. "wasm-bindgen-shared",
  3914. ]
  3915. [[package]]
  3916. name = "wasm-bindgen-futures"
  3917. version = "0.4.33"
  3918. source = "registry+https://github.com/rust-lang/crates.io-index"
  3919. checksum = "23639446165ca5a5de86ae1d8896b737ae80319560fbaa4c2887b7da6e7ebd7d"
  3920. dependencies = [
  3921. "cfg-if",
  3922. "js-sys",
  3923. "wasm-bindgen",
  3924. "web-sys",
  3925. ]
  3926. [[package]]
  3927. name = "wasm-bindgen-macro"
  3928. version = "0.2.83"
  3929. source = "registry+https://github.com/rust-lang/crates.io-index"
  3930. checksum = "052be0f94026e6cbc75cdefc9bae13fd6052cdcaf532fa6c45e7ae33a1e6c810"
  3931. dependencies = [
  3932. "quote",
  3933. "wasm-bindgen-macro-support",
  3934. ]
  3935. [[package]]
  3936. name = "wasm-bindgen-macro-support"
  3937. version = "0.2.83"
  3938. source = "registry+https://github.com/rust-lang/crates.io-index"
  3939. checksum = "07bc0c051dc5f23e307b13285f9d75df86bfdf816c5721e573dec1f9b8aa193c"
  3940. dependencies = [
  3941. "proc-macro2",
  3942. "quote",
  3943. "syn",
  3944. "wasm-bindgen-backend",
  3945. "wasm-bindgen-shared",
  3946. ]
  3947. [[package]]
  3948. name = "wasm-bindgen-shared"
  3949. version = "0.2.83"
  3950. source = "registry+https://github.com/rust-lang/crates.io-index"
  3951. checksum = "1c38c045535d93ec4f0b4defec448e4291638ee608530863b1e2ba115d4fff7f"
  3952. [[package]]
  3953. name = "web-sys"
  3954. version = "0.3.60"
  3955. source = "registry+https://github.com/rust-lang/crates.io-index"
  3956. checksum = "bcda906d8be16e728fd5adc5b729afad4e444e106ab28cd1c7256e54fa61510f"
  3957. dependencies = [
  3958. "js-sys",
  3959. "wasm-bindgen",
  3960. ]
  3961. [[package]]
  3962. name = "which"
  3963. version = "4.3.0"
  3964. source = "registry+https://github.com/rust-lang/crates.io-index"
  3965. checksum = "1c831fbbee9e129a8cf93e7747a82da9d95ba8e16621cae60ec2cdc849bacb7b"
  3966. dependencies = [
  3967. "either",
  3968. "libc",
  3969. "once_cell",
  3970. ]
  3971. [[package]]
  3972. name = "winapi"
  3973. version = "0.3.9"
  3974. source = "registry+https://github.com/rust-lang/crates.io-index"
  3975. checksum = "5c839a674fcd7a98952e593242ea400abe93992746761e38641405d28b00f419"
  3976. dependencies = [
  3977. "winapi-i686-pc-windows-gnu",
  3978. "winapi-x86_64-pc-windows-gnu",
  3979. ]
  3980. [[package]]
  3981. name = "winapi-i686-pc-windows-gnu"
  3982. version = "0.4.0"
  3983. source = "registry+https://github.com/rust-lang/crates.io-index"
  3984. checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6"
  3985. [[package]]
  3986. name = "winapi-util"
  3987. version = "0.1.5"
  3988. source = "registry+https://github.com/rust-lang/crates.io-index"
  3989. checksum = "70ec6ce85bb158151cae5e5c87f95a8e97d2c0c4b001223f33a334e3ce5de178"
  3990. dependencies = [
  3991. "winapi",
  3992. ]
  3993. [[package]]
  3994. name = "winapi-x86_64-pc-windows-gnu"
  3995. version = "0.4.0"
  3996. source = "registry+https://github.com/rust-lang/crates.io-index"
  3997. checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f"
  3998. [[package]]
  3999. name = "windows-sys"
  4000. version = "0.42.0"
  4001. source = "registry+https://github.com/rust-lang/crates.io-index"
  4002. checksum = "5a3e1820f08b8513f676f7ab6c1f99ff312fb97b553d30ff4dd86f9f15728aa7"
  4003. dependencies = [
  4004. "windows_aarch64_gnullvm",
  4005. "windows_aarch64_msvc",
  4006. "windows_i686_gnu",
  4007. "windows_i686_msvc",
  4008. "windows_x86_64_gnu",
  4009. "windows_x86_64_gnullvm",
  4010. "windows_x86_64_msvc",
  4011. ]
  4012. [[package]]
  4013. name = "windows-sys"
  4014. version = "0.45.0"
  4015. source = "registry+https://github.com/rust-lang/crates.io-index"
  4016. checksum = "75283be5efb2831d37ea142365f009c02ec203cd29a3ebecbc093d52315b66d0"
  4017. dependencies = [
  4018. "windows-targets",
  4019. ]
  4020. [[package]]
  4021. name = "windows-targets"
  4022. version = "0.42.1"
  4023. source = "registry+https://github.com/rust-lang/crates.io-index"
  4024. checksum = "8e2522491fbfcd58cc84d47aeb2958948c4b8982e9a2d8a2a35bbaed431390e7"
  4025. dependencies = [
  4026. "windows_aarch64_gnullvm",
  4027. "windows_aarch64_msvc",
  4028. "windows_i686_gnu",
  4029. "windows_i686_msvc",
  4030. "windows_x86_64_gnu",
  4031. "windows_x86_64_gnullvm",
  4032. "windows_x86_64_msvc",
  4033. ]
  4034. [[package]]
  4035. name = "windows_aarch64_gnullvm"
  4036. version = "0.42.1"
  4037. source = "registry+https://github.com/rust-lang/crates.io-index"
  4038. checksum = "8c9864e83243fdec7fc9c5444389dcbbfd258f745e7853198f365e3c4968a608"
  4039. [[package]]
  4040. name = "windows_aarch64_msvc"
  4041. version = "0.42.1"
  4042. source = "registry+https://github.com/rust-lang/crates.io-index"
  4043. checksum = "4c8b1b673ffc16c47a9ff48570a9d85e25d265735c503681332589af6253c6c7"
  4044. [[package]]
  4045. name = "windows_i686_gnu"
  4046. version = "0.42.1"
  4047. source = "registry+https://github.com/rust-lang/crates.io-index"
  4048. checksum = "de3887528ad530ba7bdbb1faa8275ec7a1155a45ffa57c37993960277145d640"
  4049. [[package]]
  4050. name = "windows_i686_msvc"
  4051. version = "0.42.1"
  4052. source = "registry+https://github.com/rust-lang/crates.io-index"
  4053. checksum = "bf4d1122317eddd6ff351aa852118a2418ad4214e6613a50e0191f7004372605"
  4054. [[package]]
  4055. name = "windows_x86_64_gnu"
  4056. version = "0.42.1"
  4057. source = "registry+https://github.com/rust-lang/crates.io-index"
  4058. checksum = "c1040f221285e17ebccbc2591ffdc2d44ee1f9186324dd3e84e99ac68d699c45"
  4059. [[package]]
  4060. name = "windows_x86_64_gnullvm"
  4061. version = "0.42.1"
  4062. source = "registry+https://github.com/rust-lang/crates.io-index"
  4063. checksum = "628bfdf232daa22b0d64fdb62b09fcc36bb01f05a3939e20ab73aaf9470d0463"
  4064. [[package]]
  4065. name = "windows_x86_64_msvc"
  4066. version = "0.42.1"
  4067. source = "registry+https://github.com/rust-lang/crates.io-index"
  4068. checksum = "447660ad36a13288b1db4d4248e857b510e8c3a225c822ba4fb748c0aafecffd"
  4069. [[package]]
  4070. name = "winreg"
  4071. version = "0.10.1"
  4072. source = "registry+https://github.com/rust-lang/crates.io-index"
  4073. checksum = "80d0f4e272c85def139476380b12f9ac60926689dd2e01d4923222f40580869d"
  4074. dependencies = [
  4075. "winapi",
  4076. ]
  4077. [[package]]
  4078. name = "ws-model"
  4079. version = "0.1.0"
  4080. dependencies = [
  4081. "bytes",
  4082. "revision-model",
  4083. "serde",
  4084. "serde_json",
  4085. "serde_repr",
  4086. ]
  4087. [[package]]
  4088. name = "yaml-rust"
  4089. version = "0.4.5"
  4090. source = "registry+https://github.com/rust-lang/crates.io-index"
  4091. checksum = "56c1936c4cc7a1c9ab21a1ebb602eb942ba868cbd44a99cb7cdc5892335e1c85"
  4092. dependencies = [
  4093. "linked-hash-map",
  4094. ]