Cargo.lock 125 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460
  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 = "aead"
  19. version = "0.5.2"
  20. source = "registry+https://github.com/rust-lang/crates.io-index"
  21. checksum = "d122413f284cf2d62fb1b7db97e02edb8cda96d769b16e443a4f6195e35662b0"
  22. dependencies = [
  23. "crypto-common",
  24. "generic-array",
  25. ]
  26. [[package]]
  27. name = "aes"
  28. version = "0.8.3"
  29. source = "registry+https://github.com/rust-lang/crates.io-index"
  30. checksum = "ac1f845298e95f983ff1944b728ae08b8cebab80d684f0a832ed0fc74dfa27e2"
  31. dependencies = [
  32. "cfg-if",
  33. "cipher",
  34. "cpufeatures",
  35. ]
  36. [[package]]
  37. name = "aes-gcm"
  38. version = "0.10.2"
  39. source = "registry+https://github.com/rust-lang/crates.io-index"
  40. checksum = "209b47e8954a928e1d72e86eca7000ebb6655fe1436d33eefc2201cad027e237"
  41. dependencies = [
  42. "aead",
  43. "aes",
  44. "cipher",
  45. "ctr",
  46. "ghash",
  47. "subtle",
  48. ]
  49. [[package]]
  50. name = "ahash"
  51. version = "0.7.6"
  52. source = "registry+https://github.com/rust-lang/crates.io-index"
  53. checksum = "fcb51a0695d8f838b1ee009b3fbf66bda078cd64590202a864a8f3e8c4315c47"
  54. dependencies = [
  55. "getrandom 0.2.9",
  56. "once_cell",
  57. "version_check",
  58. ]
  59. [[package]]
  60. name = "ahash"
  61. version = "0.8.3"
  62. source = "registry+https://github.com/rust-lang/crates.io-index"
  63. checksum = "2c99f64d1e06488f620f932677e24bc6e2897582980441ae90a671415bd7ec2f"
  64. dependencies = [
  65. "cfg-if",
  66. "once_cell",
  67. "version_check",
  68. ]
  69. [[package]]
  70. name = "aho-corasick"
  71. version = "0.7.20"
  72. source = "registry+https://github.com/rust-lang/crates.io-index"
  73. checksum = "cc936419f96fa211c1b9166887b38e5e40b19958e5b895be7c1f93adec7071ac"
  74. dependencies = [
  75. "memchr",
  76. ]
  77. [[package]]
  78. name = "allo-isolate"
  79. version = "0.1.14"
  80. source = "registry+https://github.com/rust-lang/crates.io-index"
  81. checksum = "8ed55848be9f41d44c79df6045b680a74a78bc579e0813f7f196cd7928e22fb1"
  82. dependencies = [
  83. "atomic",
  84. "pin-project",
  85. ]
  86. [[package]]
  87. name = "android_system_properties"
  88. version = "0.1.5"
  89. source = "registry+https://github.com/rust-lang/crates.io-index"
  90. checksum = "819e7219dbd41043ac279b19830f2efc897156490d7fd6ea916720117ee66311"
  91. dependencies = [
  92. "libc",
  93. ]
  94. [[package]]
  95. name = "ansi_term"
  96. version = "0.12.1"
  97. source = "registry+https://github.com/rust-lang/crates.io-index"
  98. checksum = "d52a9bb7ec0cf484c551830a7ce27bd20d67eac647e1befb56b0be4ee39a55d2"
  99. dependencies = [
  100. "winapi",
  101. ]
  102. [[package]]
  103. name = "anyhow"
  104. version = "1.0.75"
  105. source = "registry+https://github.com/rust-lang/crates.io-index"
  106. checksum = "a4668cab20f66d8d020e1fbc0ebe47217433c1b6c8f2040faf858554e394ace6"
  107. [[package]]
  108. name = "appflowy-integrate"
  109. version = "0.1.0"
  110. source = "git+https://github.com/AppFlowy-IO/AppFlowy-Collab?rev=1b297c#1b297c2ed75aa33b964f0da546d771b00805be62"
  111. dependencies = [
  112. "anyhow",
  113. "collab",
  114. "collab-database",
  115. "collab-document",
  116. "collab-folder",
  117. "collab-persistence",
  118. "collab-plugins",
  119. "parking_lot 0.12.1",
  120. "serde",
  121. "serde_json",
  122. "tracing",
  123. ]
  124. [[package]]
  125. name = "arrayvec"
  126. version = "0.5.2"
  127. source = "registry+https://github.com/rust-lang/crates.io-index"
  128. checksum = "23b62fc65de8e4e7f52534fb52b0f3ed04746ae267519eef2a83941e8085068b"
  129. [[package]]
  130. name = "arrayvec"
  131. version = "0.7.2"
  132. source = "registry+https://github.com/rust-lang/crates.io-index"
  133. checksum = "8da52d66c7071e2e3fa2a1e5c6d088fec47b593032b254f5e980de8ea54454d6"
  134. [[package]]
  135. name = "assert-json-diff"
  136. version = "2.0.2"
  137. source = "registry+https://github.com/rust-lang/crates.io-index"
  138. checksum = "47e4f2b81832e72834d7518d8487a0396a28cc408186a2e8854c0f98011faf12"
  139. dependencies = [
  140. "serde",
  141. "serde_json",
  142. ]
  143. [[package]]
  144. name = "async-stream"
  145. version = "0.3.5"
  146. source = "registry+https://github.com/rust-lang/crates.io-index"
  147. checksum = "cd56dd203fef61ac097dd65721a419ddccb106b2d2b70ba60a6b529f03961a51"
  148. dependencies = [
  149. "async-stream-impl",
  150. "futures-core",
  151. "pin-project-lite",
  152. ]
  153. [[package]]
  154. name = "async-stream-impl"
  155. version = "0.3.5"
  156. source = "registry+https://github.com/rust-lang/crates.io-index"
  157. checksum = "16e62a023e7c117e27523144c5d2459f4397fcc3cab0085af8e2224f643a0193"
  158. dependencies = [
  159. "proc-macro2",
  160. "quote",
  161. "syn 2.0.27",
  162. ]
  163. [[package]]
  164. name = "async-trait"
  165. version = "0.1.73"
  166. source = "registry+https://github.com/rust-lang/crates.io-index"
  167. checksum = "bc00ceb34980c03614e35a3a4e218276a0a824e911d07651cd0d858a51e8c0f0"
  168. dependencies = [
  169. "proc-macro2",
  170. "quote",
  171. "syn 2.0.27",
  172. ]
  173. [[package]]
  174. name = "atomic"
  175. version = "0.5.1"
  176. source = "registry+https://github.com/rust-lang/crates.io-index"
  177. checksum = "b88d82667eca772c4aa12f0f1348b3ae643424c8876448f3f7bd5787032e234c"
  178. dependencies = [
  179. "autocfg",
  180. ]
  181. [[package]]
  182. name = "atomic_refcell"
  183. version = "0.1.9"
  184. source = "registry+https://github.com/rust-lang/crates.io-index"
  185. checksum = "857253367827bd9d0fd973f0ef15506a96e79e41b0ad7aa691203a4e3214f6c8"
  186. [[package]]
  187. name = "autocfg"
  188. version = "1.1.0"
  189. source = "registry+https://github.com/rust-lang/crates.io-index"
  190. checksum = "d468802bab17cbc0cc575e9b053f41e72aa36bfa6b7f55e3529ffa43161b97fa"
  191. [[package]]
  192. name = "axum"
  193. version = "0.6.15"
  194. source = "registry+https://github.com/rust-lang/crates.io-index"
  195. checksum = "3b32c5ea3aabaf4deb5f5ced2d688ec0844c881c9e6c696a8b769a05fc691e62"
  196. dependencies = [
  197. "async-trait",
  198. "axum-core",
  199. "bitflags",
  200. "bytes",
  201. "futures-util",
  202. "http",
  203. "http-body",
  204. "hyper",
  205. "itoa",
  206. "matchit",
  207. "memchr",
  208. "mime",
  209. "percent-encoding",
  210. "pin-project-lite",
  211. "rustversion",
  212. "serde",
  213. "sync_wrapper",
  214. "tower",
  215. "tower-layer",
  216. "tower-service",
  217. ]
  218. [[package]]
  219. name = "axum-core"
  220. version = "0.3.4"
  221. source = "registry+https://github.com/rust-lang/crates.io-index"
  222. checksum = "759fa577a247914fd3f7f76d62972792636412fbfd634cd452f6a385a74d2d2c"
  223. dependencies = [
  224. "async-trait",
  225. "bytes",
  226. "futures-util",
  227. "http",
  228. "http-body",
  229. "mime",
  230. "rustversion",
  231. "tower-layer",
  232. "tower-service",
  233. ]
  234. [[package]]
  235. name = "backtrace"
  236. version = "0.3.67"
  237. source = "registry+https://github.com/rust-lang/crates.io-index"
  238. checksum = "233d376d6d185f2a3093e58f283f60f880315b6c60075b01f36b3b85154564ca"
  239. dependencies = [
  240. "addr2line",
  241. "cc",
  242. "cfg-if",
  243. "libc",
  244. "miniz_oxide",
  245. "object",
  246. "rustc-demangle",
  247. ]
  248. [[package]]
  249. name = "base64"
  250. version = "0.13.1"
  251. source = "registry+https://github.com/rust-lang/crates.io-index"
  252. checksum = "9e1b586273c5702936fe7b7d6896644d8be71e6314cfe09d3167c95f712589e8"
  253. [[package]]
  254. name = "base64"
  255. version = "0.21.2"
  256. source = "registry+https://github.com/rust-lang/crates.io-index"
  257. checksum = "604178f6c5c21f02dc555784810edfb88d34ac2c73b2eae109655649ee73ce3d"
  258. [[package]]
  259. name = "base64ct"
  260. version = "1.6.0"
  261. source = "registry+https://github.com/rust-lang/crates.io-index"
  262. checksum = "8c3c1a368f70d6cf7302d78f8f7093da241fb8e8807c05cc9e51a125895a6d5b"
  263. [[package]]
  264. name = "bincode"
  265. version = "1.3.3"
  266. source = "registry+https://github.com/rust-lang/crates.io-index"
  267. checksum = "b1f45e9417d87227c7a56d22e471c6206462cba514c7590c09aff4cf6d1ddcad"
  268. dependencies = [
  269. "serde",
  270. ]
  271. [[package]]
  272. name = "bindgen"
  273. version = "0.65.1"
  274. source = "registry+https://github.com/rust-lang/crates.io-index"
  275. checksum = "cfdf7b466f9a4903edc73f95d6d2bcd5baf8ae620638762244d3f60143643cc5"
  276. dependencies = [
  277. "bitflags",
  278. "cexpr",
  279. "clang-sys",
  280. "lazy_static",
  281. "lazycell",
  282. "peeking_take_while",
  283. "prettyplease",
  284. "proc-macro2",
  285. "quote",
  286. "regex",
  287. "rustc-hash",
  288. "shlex",
  289. "syn 2.0.27",
  290. ]
  291. [[package]]
  292. name = "bit-set"
  293. version = "0.5.3"
  294. source = "registry+https://github.com/rust-lang/crates.io-index"
  295. checksum = "0700ddab506f33b20a03b13996eccd309a48e5ff77d0d95926aa0210fb4e95f1"
  296. dependencies = [
  297. "bit-vec",
  298. ]
  299. [[package]]
  300. name = "bit-vec"
  301. version = "0.6.3"
  302. source = "registry+https://github.com/rust-lang/crates.io-index"
  303. checksum = "349f9b6a179ed607305526ca489b34ad0a41aed5f7980fa90eb03160b69598fb"
  304. [[package]]
  305. name = "bitflags"
  306. version = "1.3.2"
  307. source = "registry+https://github.com/rust-lang/crates.io-index"
  308. checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a"
  309. [[package]]
  310. name = "block-buffer"
  311. version = "0.10.4"
  312. source = "registry+https://github.com/rust-lang/crates.io-index"
  313. checksum = "3078c7629b62d3f0439517fa394996acacc5cbc91c5a20d8c658e77abd503a71"
  314. dependencies = [
  315. "generic-array",
  316. ]
  317. [[package]]
  318. name = "borsh"
  319. version = "0.10.3"
  320. source = "registry+https://github.com/rust-lang/crates.io-index"
  321. checksum = "4114279215a005bc675e386011e594e1d9b800918cea18fcadadcce864a2046b"
  322. dependencies = [
  323. "borsh-derive",
  324. "hashbrown 0.13.2",
  325. ]
  326. [[package]]
  327. name = "borsh-derive"
  328. version = "0.10.3"
  329. source = "registry+https://github.com/rust-lang/crates.io-index"
  330. checksum = "0754613691538d51f329cce9af41d7b7ca150bc973056f1156611489475f54f7"
  331. dependencies = [
  332. "borsh-derive-internal",
  333. "borsh-schema-derive-internal",
  334. "proc-macro-crate",
  335. "proc-macro2",
  336. "syn 1.0.109",
  337. ]
  338. [[package]]
  339. name = "borsh-derive-internal"
  340. version = "0.10.3"
  341. source = "registry+https://github.com/rust-lang/crates.io-index"
  342. checksum = "afb438156919598d2c7bad7e1c0adf3d26ed3840dbc010db1a882a65583ca2fb"
  343. dependencies = [
  344. "proc-macro2",
  345. "quote",
  346. "syn 1.0.109",
  347. ]
  348. [[package]]
  349. name = "borsh-schema-derive-internal"
  350. version = "0.10.3"
  351. source = "registry+https://github.com/rust-lang/crates.io-index"
  352. checksum = "634205cc43f74a1b9046ef87c4540ebda95696ec0f315024860cad7c5b0f5ccd"
  353. dependencies = [
  354. "proc-macro2",
  355. "quote",
  356. "syn 1.0.109",
  357. ]
  358. [[package]]
  359. name = "bstr"
  360. version = "1.4.0"
  361. source = "registry+https://github.com/rust-lang/crates.io-index"
  362. checksum = "c3d4260bcc2e8fc9df1eac4919a720effeb63a3f0952f5bf4944adfa18897f09"
  363. dependencies = [
  364. "memchr",
  365. "serde",
  366. ]
  367. [[package]]
  368. name = "bumpalo"
  369. version = "3.12.0"
  370. source = "registry+https://github.com/rust-lang/crates.io-index"
  371. checksum = "0d261e256854913907f67ed06efbc3338dfe6179796deefc1ff763fc1aee5535"
  372. [[package]]
  373. name = "bytecheck"
  374. version = "0.6.10"
  375. source = "registry+https://github.com/rust-lang/crates.io-index"
  376. checksum = "13fe11640a23eb24562225322cd3e452b93a3d4091d62fab69c70542fcd17d1f"
  377. dependencies = [
  378. "bytecheck_derive",
  379. "ptr_meta",
  380. "simdutf8",
  381. ]
  382. [[package]]
  383. name = "bytecheck_derive"
  384. version = "0.6.10"
  385. source = "registry+https://github.com/rust-lang/crates.io-index"
  386. checksum = "e31225543cb46f81a7e224762764f4a6a0f097b1db0b175f69e8065efaa42de5"
  387. dependencies = [
  388. "proc-macro2",
  389. "quote",
  390. "syn 1.0.109",
  391. ]
  392. [[package]]
  393. name = "byteorder"
  394. version = "1.4.3"
  395. source = "registry+https://github.com/rust-lang/crates.io-index"
  396. checksum = "14c189c53d098945499cdfa7ecc63567cf3886b3332b312a5b4585d8d3a6a610"
  397. [[package]]
  398. name = "bytes"
  399. version = "1.4.0"
  400. source = "registry+https://github.com/rust-lang/crates.io-index"
  401. checksum = "89b2fd2a0dcf38d7971e2194b6b6eebab45ae01067456a7fd93d5547a61b70be"
  402. dependencies = [
  403. "serde",
  404. ]
  405. [[package]]
  406. name = "bzip2"
  407. version = "0.4.4"
  408. source = "registry+https://github.com/rust-lang/crates.io-index"
  409. checksum = "bdb116a6ef3f6c3698828873ad02c3014b3c85cadb88496095628e3ef1e347f8"
  410. dependencies = [
  411. "bzip2-sys",
  412. "libc",
  413. ]
  414. [[package]]
  415. name = "bzip2-sys"
  416. version = "0.1.11+1.0.8"
  417. source = "registry+https://github.com/rust-lang/crates.io-index"
  418. checksum = "736a955f3fa7875102d57c82b8cac37ec45224a07fd32d58f9f7a186b6cd4cdc"
  419. dependencies = [
  420. "cc",
  421. "libc",
  422. "pkg-config",
  423. ]
  424. [[package]]
  425. name = "cc"
  426. version = "1.0.79"
  427. source = "registry+https://github.com/rust-lang/crates.io-index"
  428. checksum = "50d30906286121d95be3d479533b458f87493b30a4b5f79a607db8f5d11aa91f"
  429. dependencies = [
  430. "jobserver",
  431. ]
  432. [[package]]
  433. name = "cexpr"
  434. version = "0.6.0"
  435. source = "registry+https://github.com/rust-lang/crates.io-index"
  436. checksum = "6fac387a98bb7c37292057cffc56d62ecb629900026402633ae9160df93a8766"
  437. dependencies = [
  438. "nom 7.1.3",
  439. ]
  440. [[package]]
  441. name = "cfg-if"
  442. version = "1.0.0"
  443. source = "registry+https://github.com/rust-lang/crates.io-index"
  444. checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd"
  445. [[package]]
  446. name = "chrono"
  447. version = "0.4.24"
  448. source = "registry+https://github.com/rust-lang/crates.io-index"
  449. checksum = "4e3c5919066adf22df73762e50cffcde3a758f2a848b113b586d1f86728b673b"
  450. dependencies = [
  451. "iana-time-zone",
  452. "js-sys",
  453. "num-integer",
  454. "num-traits",
  455. "serde",
  456. "time 0.1.45",
  457. "wasm-bindgen",
  458. "winapi",
  459. ]
  460. [[package]]
  461. name = "chrono-tz"
  462. version = "0.6.1"
  463. source = "registry+https://github.com/rust-lang/crates.io-index"
  464. checksum = "58549f1842da3080ce63002102d5bc954c7bc843d4f47818e642abdc36253552"
  465. dependencies = [
  466. "chrono",
  467. "chrono-tz-build 0.0.2",
  468. "phf 0.10.1",
  469. ]
  470. [[package]]
  471. name = "chrono-tz"
  472. version = "0.8.2"
  473. source = "registry+https://github.com/rust-lang/crates.io-index"
  474. checksum = "cf9cc2b23599e6d7479755f3594285efb3f74a1bdca7a7374948bc831e23a552"
  475. dependencies = [
  476. "chrono",
  477. "chrono-tz-build 0.1.0",
  478. "phf 0.11.1",
  479. ]
  480. [[package]]
  481. name = "chrono-tz-build"
  482. version = "0.0.2"
  483. source = "registry+https://github.com/rust-lang/crates.io-index"
  484. checksum = "db058d493fb2f65f41861bfed7e3fe6335264a9f0f92710cab5bdf01fef09069"
  485. dependencies = [
  486. "parse-zoneinfo",
  487. "phf 0.10.1",
  488. "phf_codegen 0.10.0",
  489. ]
  490. [[package]]
  491. name = "chrono-tz-build"
  492. version = "0.1.0"
  493. source = "registry+https://github.com/rust-lang/crates.io-index"
  494. checksum = "d9998fb9f7e9b2111641485bf8beb32f92945f97f92a3d061f744cfef335f751"
  495. dependencies = [
  496. "parse-zoneinfo",
  497. "phf 0.11.1",
  498. "phf_codegen 0.11.1",
  499. ]
  500. [[package]]
  501. name = "cipher"
  502. version = "0.4.4"
  503. source = "registry+https://github.com/rust-lang/crates.io-index"
  504. checksum = "773f3b9af64447d2ce9850330c473515014aa235e6a783b02db81ff39e4a3dad"
  505. dependencies = [
  506. "crypto-common",
  507. "inout",
  508. ]
  509. [[package]]
  510. name = "clang-sys"
  511. version = "1.6.1"
  512. source = "registry+https://github.com/rust-lang/crates.io-index"
  513. checksum = "c688fc74432808e3eb684cae8830a86be1d66a2bd58e1f248ed0960a590baf6f"
  514. dependencies = [
  515. "glob",
  516. "libc",
  517. "libloading",
  518. ]
  519. [[package]]
  520. name = "cmd_lib"
  521. version = "1.3.0"
  522. source = "registry+https://github.com/rust-lang/crates.io-index"
  523. checksum = "0ba0f413777386d37f85afa5242f277a7b461905254c1af3c339d4af06800f62"
  524. dependencies = [
  525. "cmd_lib_macros",
  526. "faccess",
  527. "lazy_static",
  528. "log",
  529. "os_pipe",
  530. ]
  531. [[package]]
  532. name = "cmd_lib_macros"
  533. version = "1.3.0"
  534. source = "registry+https://github.com/rust-lang/crates.io-index"
  535. checksum = "9e66605092ff6c6e37e0246601ae6c3f62dc1880e0599359b5f303497c112dc0"
  536. dependencies = [
  537. "proc-macro-error",
  538. "proc-macro2",
  539. "quote",
  540. "syn 1.0.109",
  541. ]
  542. [[package]]
  543. name = "codespan-reporting"
  544. version = "0.11.1"
  545. source = "registry+https://github.com/rust-lang/crates.io-index"
  546. checksum = "3538270d33cc669650c4b093848450d380def10c331d38c768e34cac80576e6e"
  547. dependencies = [
  548. "termcolor",
  549. "unicode-width",
  550. ]
  551. [[package]]
  552. name = "collab"
  553. version = "0.1.0"
  554. source = "git+https://github.com/AppFlowy-IO/AppFlowy-Collab?rev=1b297c#1b297c2ed75aa33b964f0da546d771b00805be62"
  555. dependencies = [
  556. "anyhow",
  557. "bytes",
  558. "lib0",
  559. "parking_lot 0.12.1",
  560. "serde",
  561. "serde_json",
  562. "thiserror",
  563. "tokio",
  564. "tracing",
  565. "y-sync",
  566. "yrs",
  567. ]
  568. [[package]]
  569. name = "collab-client-ws"
  570. version = "0.1.0"
  571. source = "git+https://github.com/AppFlowy-IO/AppFlowy-Collab?rev=1b297c#1b297c2ed75aa33b964f0da546d771b00805be62"
  572. dependencies = [
  573. "bytes",
  574. "collab-sync",
  575. "futures-util",
  576. "serde",
  577. "serde_json",
  578. "thiserror",
  579. "tokio",
  580. "tokio-retry",
  581. "tokio-stream",
  582. "tokio-tungstenite",
  583. "tracing",
  584. ]
  585. [[package]]
  586. name = "collab-database"
  587. version = "0.1.0"
  588. source = "git+https://github.com/AppFlowy-IO/AppFlowy-Collab?rev=1b297c#1b297c2ed75aa33b964f0da546d771b00805be62"
  589. dependencies = [
  590. "anyhow",
  591. "async-trait",
  592. "base64 0.21.2",
  593. "chrono",
  594. "collab",
  595. "collab-derive",
  596. "collab-persistence",
  597. "collab-plugins",
  598. "lazy_static",
  599. "lru",
  600. "nanoid",
  601. "parking_lot 0.12.1",
  602. "serde",
  603. "serde_json",
  604. "serde_repr",
  605. "strum",
  606. "strum_macros 0.25.2",
  607. "thiserror",
  608. "tokio",
  609. "tokio-stream",
  610. "tracing",
  611. "uuid",
  612. ]
  613. [[package]]
  614. name = "collab-define"
  615. version = "0.1.0"
  616. source = "git+https://github.com/AppFlowy-IO/AppFlowy-Collab?rev=1b297c#1b297c2ed75aa33b964f0da546d771b00805be62"
  617. dependencies = [
  618. "uuid",
  619. ]
  620. [[package]]
  621. name = "collab-derive"
  622. version = "0.1.0"
  623. source = "git+https://github.com/AppFlowy-IO/AppFlowy-Collab?rev=1b297c#1b297c2ed75aa33b964f0da546d771b00805be62"
  624. dependencies = [
  625. "proc-macro2",
  626. "quote",
  627. "serde_json",
  628. "syn 1.0.109",
  629. "yrs",
  630. ]
  631. [[package]]
  632. name = "collab-document"
  633. version = "0.1.0"
  634. source = "git+https://github.com/AppFlowy-IO/AppFlowy-Collab?rev=1b297c#1b297c2ed75aa33b964f0da546d771b00805be62"
  635. dependencies = [
  636. "anyhow",
  637. "collab",
  638. "collab-derive",
  639. "collab-persistence",
  640. "nanoid",
  641. "parking_lot 0.12.1",
  642. "serde",
  643. "serde_json",
  644. "thiserror",
  645. "tokio",
  646. "tokio-stream",
  647. "tracing",
  648. ]
  649. [[package]]
  650. name = "collab-folder"
  651. version = "0.1.0"
  652. source = "git+https://github.com/AppFlowy-IO/AppFlowy-Collab?rev=1b297c#1b297c2ed75aa33b964f0da546d771b00805be62"
  653. dependencies = [
  654. "anyhow",
  655. "chrono",
  656. "collab",
  657. "collab-derive",
  658. "collab-persistence",
  659. "parking_lot 0.12.1",
  660. "serde",
  661. "serde_json",
  662. "serde_repr",
  663. "thiserror",
  664. "tokio",
  665. "tokio-stream",
  666. "tracing",
  667. ]
  668. [[package]]
  669. name = "collab-persistence"
  670. version = "0.1.0"
  671. source = "git+https://github.com/AppFlowy-IO/AppFlowy-Collab?rev=1b297c#1b297c2ed75aa33b964f0da546d771b00805be62"
  672. dependencies = [
  673. "bincode",
  674. "chrono",
  675. "lazy_static",
  676. "lib0",
  677. "parking_lot 0.12.1",
  678. "rocksdb",
  679. "serde",
  680. "sled",
  681. "smallvec",
  682. "thiserror",
  683. "tokio",
  684. "tracing",
  685. "yrs",
  686. ]
  687. [[package]]
  688. name = "collab-plugins"
  689. version = "0.1.0"
  690. source = "git+https://github.com/AppFlowy-IO/AppFlowy-Collab?rev=1b297c#1b297c2ed75aa33b964f0da546d771b00805be62"
  691. dependencies = [
  692. "anyhow",
  693. "async-trait",
  694. "collab",
  695. "collab-client-ws",
  696. "collab-define",
  697. "collab-persistence",
  698. "collab-sync",
  699. "futures-util",
  700. "parking_lot 0.12.1",
  701. "rand 0.8.5",
  702. "rusoto_credential",
  703. "serde",
  704. "serde_json",
  705. "similar 2.2.1",
  706. "thiserror",
  707. "tokio",
  708. "tokio-retry",
  709. "tokio-stream",
  710. "tracing",
  711. "uuid",
  712. "y-sync",
  713. "yrs",
  714. ]
  715. [[package]]
  716. name = "collab-sync"
  717. version = "0.1.0"
  718. source = "git+https://github.com/AppFlowy-IO/AppFlowy-Collab?rev=1b297c#1b297c2ed75aa33b964f0da546d771b00805be62"
  719. dependencies = [
  720. "bytes",
  721. "collab",
  722. "futures-util",
  723. "lib0",
  724. "md5",
  725. "parking_lot 0.12.1",
  726. "serde",
  727. "serde_json",
  728. "thiserror",
  729. "tokio",
  730. "tokio-stream",
  731. "tokio-util",
  732. "tracing",
  733. "y-sync",
  734. "yrs",
  735. ]
  736. [[package]]
  737. name = "collab-user"
  738. version = "0.1.0"
  739. source = "git+https://github.com/AppFlowy-IO/AppFlowy-Collab?rev=1b297c#1b297c2ed75aa33b964f0da546d771b00805be62"
  740. dependencies = [
  741. "anyhow",
  742. "collab",
  743. "parking_lot 0.12.1",
  744. "serde",
  745. "serde_json",
  746. "tokio",
  747. "tokio-stream",
  748. "tracing",
  749. ]
  750. [[package]]
  751. name = "config"
  752. version = "0.10.1"
  753. source = "registry+https://github.com/rust-lang/crates.io-index"
  754. checksum = "19b076e143e1d9538dde65da30f8481c2a6c44040edb8e02b9bf1351edb92ce3"
  755. dependencies = [
  756. "lazy_static",
  757. "nom 5.1.2",
  758. "serde",
  759. "yaml-rust",
  760. ]
  761. [[package]]
  762. name = "console"
  763. version = "0.14.1"
  764. source = "registry+https://github.com/rust-lang/crates.io-index"
  765. checksum = "3993e6445baa160675931ec041a5e03ca84b9c6e32a056150d3aa2bdda0a1f45"
  766. dependencies = [
  767. "encode_unicode",
  768. "lazy_static",
  769. "libc",
  770. "regex",
  771. "terminal_size",
  772. "unicode-width",
  773. "winapi",
  774. ]
  775. [[package]]
  776. name = "console-api"
  777. version = "0.4.0"
  778. source = "registry+https://github.com/rust-lang/crates.io-index"
  779. checksum = "e57ff02e8ad8e06ab9731d5dc72dc23bef9200778eae1a89d555d8c42e5d4a86"
  780. dependencies = [
  781. "prost",
  782. "prost-types",
  783. "tonic",
  784. "tracing-core",
  785. ]
  786. [[package]]
  787. name = "console-subscriber"
  788. version = "0.1.8"
  789. source = "registry+https://github.com/rust-lang/crates.io-index"
  790. checksum = "22a3a81dfaf6b66bce5d159eddae701e3a002f194d378cbf7be5f053c281d9be"
  791. dependencies = [
  792. "console-api",
  793. "crossbeam-channel",
  794. "crossbeam-utils",
  795. "futures",
  796. "hdrhistogram",
  797. "humantime",
  798. "prost-types",
  799. "serde",
  800. "serde_json",
  801. "thread_local",
  802. "tokio",
  803. "tokio-stream",
  804. "tonic",
  805. "tracing",
  806. "tracing-core",
  807. "tracing-subscriber 0.3.16",
  808. ]
  809. [[package]]
  810. name = "constant_time_eq"
  811. version = "0.1.5"
  812. source = "registry+https://github.com/rust-lang/crates.io-index"
  813. checksum = "245097e9a4535ee1e3e3931fcfcd55a796a44c643e8596ff6566d68f09b87bbc"
  814. [[package]]
  815. name = "core-foundation"
  816. version = "0.9.3"
  817. source = "registry+https://github.com/rust-lang/crates.io-index"
  818. checksum = "194a7a9e6de53fa55116934067c844d9d749312f75c6f6d0980e8c252f8c2146"
  819. dependencies = [
  820. "core-foundation-sys",
  821. "libc",
  822. ]
  823. [[package]]
  824. name = "core-foundation-sys"
  825. version = "0.8.4"
  826. source = "registry+https://github.com/rust-lang/crates.io-index"
  827. checksum = "e496a50fda8aacccc86d7529e2c1e0892dbd0f898a6b5645b5561b89c3210efa"
  828. [[package]]
  829. name = "cpufeatures"
  830. version = "0.2.6"
  831. source = "registry+https://github.com/rust-lang/crates.io-index"
  832. checksum = "280a9f2d8b3a38871a3c8a46fb80db65e5e5ed97da80c4d08bf27fb63e35e181"
  833. dependencies = [
  834. "libc",
  835. ]
  836. [[package]]
  837. name = "crc32fast"
  838. version = "1.3.2"
  839. source = "registry+https://github.com/rust-lang/crates.io-index"
  840. checksum = "b540bd8bc810d3885c6ea91e2018302f68baba2129ab3e88f32389ee9370880d"
  841. dependencies = [
  842. "cfg-if",
  843. ]
  844. [[package]]
  845. name = "crossbeam-channel"
  846. version = "0.5.8"
  847. source = "registry+https://github.com/rust-lang/crates.io-index"
  848. checksum = "a33c2bf77f2df06183c3aa30d1e96c0695a313d4f9c453cc3762a6db39f99200"
  849. dependencies = [
  850. "cfg-if",
  851. "crossbeam-utils",
  852. ]
  853. [[package]]
  854. name = "crossbeam-deque"
  855. version = "0.8.3"
  856. source = "registry+https://github.com/rust-lang/crates.io-index"
  857. checksum = "ce6fd6f855243022dcecf8702fef0c297d4338e226845fe067f6341ad9fa0cef"
  858. dependencies = [
  859. "cfg-if",
  860. "crossbeam-epoch",
  861. "crossbeam-utils",
  862. ]
  863. [[package]]
  864. name = "crossbeam-epoch"
  865. version = "0.9.14"
  866. source = "registry+https://github.com/rust-lang/crates.io-index"
  867. checksum = "46bd5f3f85273295a9d14aedfb86f6aadbff6d8f5295c4a9edb08e819dcf5695"
  868. dependencies = [
  869. "autocfg",
  870. "cfg-if",
  871. "crossbeam-utils",
  872. "memoffset",
  873. "scopeguard",
  874. ]
  875. [[package]]
  876. name = "crossbeam-utils"
  877. version = "0.8.15"
  878. source = "registry+https://github.com/rust-lang/crates.io-index"
  879. checksum = "3c063cd8cc95f5c377ed0d4b49a4b21f632396ff690e8470c29b3359b346984b"
  880. dependencies = [
  881. "cfg-if",
  882. ]
  883. [[package]]
  884. name = "crypto-common"
  885. version = "0.1.6"
  886. source = "registry+https://github.com/rust-lang/crates.io-index"
  887. checksum = "1bfb12502f3fc46cca1bb51ac28df9d618d813cdc3d2f25b9fe775a34af26bb3"
  888. dependencies = [
  889. "generic-array",
  890. "rand_core 0.6.4",
  891. "typenum",
  892. ]
  893. [[package]]
  894. name = "csv"
  895. version = "1.2.1"
  896. source = "registry+https://github.com/rust-lang/crates.io-index"
  897. checksum = "0b015497079b9a9d69c02ad25de6c0a6edef051ea6360a327d0bd05802ef64ad"
  898. dependencies = [
  899. "csv-core",
  900. "itoa",
  901. "ryu",
  902. "serde",
  903. ]
  904. [[package]]
  905. name = "csv-core"
  906. version = "0.1.10"
  907. source = "registry+https://github.com/rust-lang/crates.io-index"
  908. checksum = "2b2466559f260f48ad25fe6317b3c8dac77b5bdb5763ac7d9d6103530663bc90"
  909. dependencies = [
  910. "memchr",
  911. ]
  912. [[package]]
  913. name = "ctr"
  914. version = "0.9.2"
  915. source = "registry+https://github.com/rust-lang/crates.io-index"
  916. checksum = "0369ee1ad671834580515889b80f2ea915f23b8be8d0daa4bbaf2ac5c7590835"
  917. dependencies = [
  918. "cipher",
  919. ]
  920. [[package]]
  921. name = "cxx"
  922. version = "1.0.94"
  923. source = "registry+https://github.com/rust-lang/crates.io-index"
  924. checksum = "f61f1b6389c3fe1c316bf8a4dccc90a38208354b330925bce1f74a6c4756eb93"
  925. dependencies = [
  926. "cc",
  927. "cxxbridge-flags",
  928. "cxxbridge-macro",
  929. "link-cplusplus",
  930. ]
  931. [[package]]
  932. name = "cxx-build"
  933. version = "1.0.94"
  934. source = "registry+https://github.com/rust-lang/crates.io-index"
  935. checksum = "12cee708e8962df2aeb38f594aae5d827c022b6460ac71a7a3e2c3c2aae5a07b"
  936. dependencies = [
  937. "cc",
  938. "codespan-reporting",
  939. "once_cell",
  940. "proc-macro2",
  941. "quote",
  942. "scratch",
  943. "syn 2.0.27",
  944. ]
  945. [[package]]
  946. name = "cxxbridge-flags"
  947. version = "1.0.94"
  948. source = "registry+https://github.com/rust-lang/crates.io-index"
  949. checksum = "7944172ae7e4068c533afbb984114a56c46e9ccddda550499caa222902c7f7bb"
  950. [[package]]
  951. name = "cxxbridge-macro"
  952. version = "1.0.94"
  953. source = "registry+https://github.com/rust-lang/crates.io-index"
  954. checksum = "2345488264226bf682893e25de0769f3360aac9957980ec49361b083ddaa5bc5"
  955. dependencies = [
  956. "proc-macro2",
  957. "quote",
  958. "syn 2.0.27",
  959. ]
  960. [[package]]
  961. name = "dart-ffi"
  962. version = "0.1.0"
  963. dependencies = [
  964. "allo-isolate",
  965. "appflowy-integrate",
  966. "byteorder",
  967. "bytes",
  968. "crossbeam-utils",
  969. "flowy-codegen",
  970. "flowy-core",
  971. "flowy-derive",
  972. "flowy-net",
  973. "flowy-notification",
  974. "flowy-server",
  975. "flowy-server-config",
  976. "lazy_static",
  977. "lib-dispatch",
  978. "log",
  979. "parking_lot 0.12.1",
  980. "protobuf",
  981. "serde",
  982. "serde_json",
  983. "tokio",
  984. "tracing",
  985. ]
  986. [[package]]
  987. name = "dashmap"
  988. version = "5.4.0"
  989. source = "registry+https://github.com/rust-lang/crates.io-index"
  990. checksum = "907076dfda823b0b36d2a1bb5f90c96660a5bbcd7729e10727f07858f22c4edc"
  991. dependencies = [
  992. "cfg-if",
  993. "hashbrown 0.12.3",
  994. "lock_api",
  995. "once_cell",
  996. "parking_lot_core 0.9.7",
  997. ]
  998. [[package]]
  999. name = "derivative"
  1000. version = "2.2.0"
  1001. source = "registry+https://github.com/rust-lang/crates.io-index"
  1002. checksum = "fcc3dd5e9e9c0b295d6e1e4d811fb6f157d5ffd784b8d202fc62eac8035a770b"
  1003. dependencies = [
  1004. "proc-macro2",
  1005. "quote",
  1006. "syn 1.0.109",
  1007. ]
  1008. [[package]]
  1009. name = "deunicode"
  1010. version = "0.4.3"
  1011. source = "registry+https://github.com/rust-lang/crates.io-index"
  1012. checksum = "850878694b7933ca4c9569d30a34b55031b9b139ee1fc7b94a527c4ef960d690"
  1013. [[package]]
  1014. name = "diesel"
  1015. version = "1.4.8"
  1016. source = "registry+https://github.com/rust-lang/crates.io-index"
  1017. checksum = "b28135ecf6b7d446b43e27e225622a038cc4e2930a1022f51cdb97ada19b8e4d"
  1018. dependencies = [
  1019. "byteorder",
  1020. "chrono",
  1021. "diesel_derives",
  1022. "libsqlite3-sys",
  1023. ]
  1024. [[package]]
  1025. name = "diesel_derives"
  1026. version = "1.4.1"
  1027. source = "registry+https://github.com/rust-lang/crates.io-index"
  1028. checksum = "45f5098f628d02a7a0f68ddba586fb61e80edec3bdc1be3b921f4ceec60858d3"
  1029. dependencies = [
  1030. "proc-macro2",
  1031. "quote",
  1032. "syn 1.0.109",
  1033. ]
  1034. [[package]]
  1035. name = "diesel_migrations"
  1036. version = "1.4.0"
  1037. source = "registry+https://github.com/rust-lang/crates.io-index"
  1038. checksum = "bf3cde8413353dc7f5d72fa8ce0b99a560a359d2c5ef1e5817ca731cd9008f4c"
  1039. dependencies = [
  1040. "migrations_internals",
  1041. "migrations_macros",
  1042. ]
  1043. [[package]]
  1044. name = "digest"
  1045. version = "0.10.7"
  1046. source = "registry+https://github.com/rust-lang/crates.io-index"
  1047. checksum = "9ed9a281f7bc9b7576e61468ba615a66a5c8cfdff42420a70aa82701a3b1e292"
  1048. dependencies = [
  1049. "block-buffer",
  1050. "crypto-common",
  1051. "subtle",
  1052. ]
  1053. [[package]]
  1054. name = "dirs-next"
  1055. version = "2.0.0"
  1056. source = "registry+https://github.com/rust-lang/crates.io-index"
  1057. checksum = "b98cf8ebf19c3d1b223e151f99a4f9f0690dca41414773390fc824184ac833e1"
  1058. dependencies = [
  1059. "cfg-if",
  1060. "dirs-sys-next",
  1061. ]
  1062. [[package]]
  1063. name = "dirs-sys-next"
  1064. version = "0.1.2"
  1065. source = "registry+https://github.com/rust-lang/crates.io-index"
  1066. checksum = "4ebda144c4fe02d1f7ea1a7d9641b6fc6b580adcfa024ae48797ecdeb6825b4d"
  1067. dependencies = [
  1068. "libc",
  1069. "redox_users",
  1070. "winapi",
  1071. ]
  1072. [[package]]
  1073. name = "dotenv"
  1074. version = "0.15.0"
  1075. source = "registry+https://github.com/rust-lang/crates.io-index"
  1076. checksum = "77c90badedccf4105eca100756a0b1289e191f6fcbdadd3cee1d2f614f97da8f"
  1077. [[package]]
  1078. name = "dyn-clone"
  1079. version = "1.0.11"
  1080. source = "registry+https://github.com/rust-lang/crates.io-index"
  1081. checksum = "68b0cf012f1230e43cd00ebb729c6bb58707ecfa8ad08b52ef3a4ccd2697fc30"
  1082. [[package]]
  1083. name = "either"
  1084. version = "1.8.1"
  1085. source = "registry+https://github.com/rust-lang/crates.io-index"
  1086. checksum = "7fcaabb2fef8c910e7f4c7ce9f67a1283a1715879a7c230ca9d6d1ae31f16d91"
  1087. [[package]]
  1088. name = "encode_unicode"
  1089. version = "0.3.6"
  1090. source = "registry+https://github.com/rust-lang/crates.io-index"
  1091. checksum = "a357d28ed41a50f9c765dbfe56cbc04a64e53e5fc58ba79fbc34c10ef3df831f"
  1092. [[package]]
  1093. name = "encoding_rs"
  1094. version = "0.8.32"
  1095. source = "registry+https://github.com/rust-lang/crates.io-index"
  1096. checksum = "071a31f4ee85403370b58aca746f01041ede6f0da2730960ad001edc2b71b394"
  1097. dependencies = [
  1098. "cfg-if",
  1099. ]
  1100. [[package]]
  1101. name = "env_logger"
  1102. version = "0.8.4"
  1103. source = "registry+https://github.com/rust-lang/crates.io-index"
  1104. checksum = "a19187fea3ac7e84da7dacf48de0c45d63c6a76f9490dae389aead16c243fce3"
  1105. dependencies = [
  1106. "log",
  1107. "regex",
  1108. ]
  1109. [[package]]
  1110. name = "errno"
  1111. version = "0.3.1"
  1112. source = "registry+https://github.com/rust-lang/crates.io-index"
  1113. checksum = "4bcfec3a70f97c962c307b2d2c56e358cf1d00b558d74262b5f929ee8cc7e73a"
  1114. dependencies = [
  1115. "errno-dragonfly",
  1116. "libc",
  1117. "windows-sys 0.48.0",
  1118. ]
  1119. [[package]]
  1120. name = "errno-dragonfly"
  1121. version = "0.1.2"
  1122. source = "registry+https://github.com/rust-lang/crates.io-index"
  1123. checksum = "aa68f1b12764fab894d2755d2518754e71b4fd80ecfb822714a1206c2aab39bf"
  1124. dependencies = [
  1125. "cc",
  1126. "libc",
  1127. ]
  1128. [[package]]
  1129. name = "error-chain"
  1130. version = "0.12.0"
  1131. source = "registry+https://github.com/rust-lang/crates.io-index"
  1132. checksum = "07e791d3be96241c77c43846b665ef1384606da2cd2a48730abe606a12906e02"
  1133. dependencies = [
  1134. "backtrace",
  1135. ]
  1136. [[package]]
  1137. name = "faccess"
  1138. version = "0.2.4"
  1139. source = "registry+https://github.com/rust-lang/crates.io-index"
  1140. checksum = "59ae66425802d6a903e268ae1a08b8c38ba143520f227a205edf4e9c7e3e26d5"
  1141. dependencies = [
  1142. "bitflags",
  1143. "libc",
  1144. "winapi",
  1145. ]
  1146. [[package]]
  1147. name = "fake"
  1148. version = "2.5.0"
  1149. source = "registry+https://github.com/rust-lang/crates.io-index"
  1150. checksum = "4d68f517805463f3a896a9d29c1d6ff09d3579ded64a7201b4069f8f9c0d52fd"
  1151. dependencies = [
  1152. "rand 0.8.5",
  1153. ]
  1154. [[package]]
  1155. name = "fallible-iterator"
  1156. version = "0.2.0"
  1157. source = "registry+https://github.com/rust-lang/crates.io-index"
  1158. checksum = "4443176a9f2c162692bd3d352d745ef9413eec5782a80d8fd6f8a1ac692a07f7"
  1159. [[package]]
  1160. name = "fancy-regex"
  1161. version = "0.10.0"
  1162. source = "registry+https://github.com/rust-lang/crates.io-index"
  1163. checksum = "0678ab2d46fa5195aaf59ad034c083d351377d4af57f3e073c074d0da3e3c766"
  1164. dependencies = [
  1165. "bit-set",
  1166. "regex",
  1167. ]
  1168. [[package]]
  1169. name = "fancy-regex"
  1170. version = "0.11.0"
  1171. source = "registry+https://github.com/rust-lang/crates.io-index"
  1172. checksum = "b95f7c0680e4142284cf8b22c14a476e87d61b004a3a0861872b32ef7ead40a2"
  1173. dependencies = [
  1174. "bit-set",
  1175. "regex",
  1176. ]
  1177. [[package]]
  1178. name = "fastrand"
  1179. version = "1.9.0"
  1180. source = "registry+https://github.com/rust-lang/crates.io-index"
  1181. checksum = "e51093e27b0797c359783294ca4f0a911c270184cb10f85783b118614a1501be"
  1182. dependencies = [
  1183. "instant",
  1184. ]
  1185. [[package]]
  1186. name = "flate2"
  1187. version = "1.0.25"
  1188. source = "registry+https://github.com/rust-lang/crates.io-index"
  1189. checksum = "a8a2db397cb1c8772f31494cb8917e48cd1e64f0fa7efac59fbd741a0a8ce841"
  1190. dependencies = [
  1191. "crc32fast",
  1192. "miniz_oxide",
  1193. ]
  1194. [[package]]
  1195. name = "flowy-ast"
  1196. version = "0.1.0"
  1197. dependencies = [
  1198. "proc-macro2",
  1199. "quote",
  1200. "syn 1.0.109",
  1201. ]
  1202. [[package]]
  1203. name = "flowy-codegen"
  1204. version = "0.1.0"
  1205. dependencies = [
  1206. "cmd_lib",
  1207. "console",
  1208. "fancy-regex 0.10.0",
  1209. "flowy-ast",
  1210. "itertools",
  1211. "lazy_static",
  1212. "log",
  1213. "phf 0.8.0",
  1214. "protoc-bin-vendored",
  1215. "protoc-rust",
  1216. "quote",
  1217. "serde",
  1218. "serde_json",
  1219. "similar 1.3.0",
  1220. "syn 1.0.109",
  1221. "tera",
  1222. "toml",
  1223. "walkdir",
  1224. ]
  1225. [[package]]
  1226. name = "flowy-config"
  1227. version = "0.1.0"
  1228. dependencies = [
  1229. "bytes",
  1230. "flowy-codegen",
  1231. "flowy-derive",
  1232. "flowy-error",
  1233. "flowy-sqlite",
  1234. "lib-dispatch",
  1235. "protobuf",
  1236. "strum_macros 0.21.1",
  1237. ]
  1238. [[package]]
  1239. name = "flowy-core"
  1240. version = "0.1.0"
  1241. dependencies = [
  1242. "appflowy-integrate",
  1243. "bytes",
  1244. "console-subscriber",
  1245. "diesel",
  1246. "flowy-config",
  1247. "flowy-database-deps",
  1248. "flowy-database2",
  1249. "flowy-document-deps",
  1250. "flowy-document2",
  1251. "flowy-error",
  1252. "flowy-folder-deps",
  1253. "flowy-folder2",
  1254. "flowy-net",
  1255. "flowy-server",
  1256. "flowy-server-config",
  1257. "flowy-sqlite",
  1258. "flowy-task",
  1259. "flowy-user",
  1260. "flowy-user-deps",
  1261. "futures-core",
  1262. "lib-dispatch",
  1263. "lib-infra",
  1264. "lib-log",
  1265. "parking_lot 0.12.1",
  1266. "serde",
  1267. "serde_json",
  1268. "serde_repr",
  1269. "tokio",
  1270. "tracing",
  1271. "uuid",
  1272. ]
  1273. [[package]]
  1274. name = "flowy-database-deps"
  1275. version = "0.1.0"
  1276. dependencies = [
  1277. "anyhow",
  1278. "collab-plugins",
  1279. "flowy-error",
  1280. "lib-infra",
  1281. ]
  1282. [[package]]
  1283. name = "flowy-database2"
  1284. version = "0.1.0"
  1285. dependencies = [
  1286. "anyhow",
  1287. "appflowy-integrate",
  1288. "async-stream",
  1289. "async-trait",
  1290. "bytes",
  1291. "chrono",
  1292. "chrono-tz 0.8.2",
  1293. "collab",
  1294. "collab-database",
  1295. "csv",
  1296. "dashmap",
  1297. "fancy-regex 0.10.0",
  1298. "flowy-codegen",
  1299. "flowy-database-deps",
  1300. "flowy-derive",
  1301. "flowy-error",
  1302. "flowy-notification",
  1303. "flowy-task",
  1304. "flowy-test",
  1305. "futures",
  1306. "indexmap",
  1307. "lazy_static",
  1308. "lib-dispatch",
  1309. "lib-infra",
  1310. "nanoid",
  1311. "parking_lot 0.12.1",
  1312. "protobuf",
  1313. "rayon",
  1314. "rust_decimal",
  1315. "rusty-money",
  1316. "serde",
  1317. "serde_json",
  1318. "serde_repr",
  1319. "strum",
  1320. "strum_macros 0.25.2",
  1321. "tokio",
  1322. "tracing",
  1323. "url",
  1324. ]
  1325. [[package]]
  1326. name = "flowy-derive"
  1327. version = "0.1.0"
  1328. dependencies = [
  1329. "dashmap",
  1330. "flowy-ast",
  1331. "flowy-codegen",
  1332. "lazy_static",
  1333. "proc-macro2",
  1334. "quote",
  1335. "serde_json",
  1336. "syn 1.0.109",
  1337. "walkdir",
  1338. ]
  1339. [[package]]
  1340. name = "flowy-document-deps"
  1341. version = "0.1.0"
  1342. dependencies = [
  1343. "anyhow",
  1344. "collab-document",
  1345. "flowy-error",
  1346. "lib-infra",
  1347. ]
  1348. [[package]]
  1349. name = "flowy-document2"
  1350. version = "0.1.0"
  1351. dependencies = [
  1352. "anyhow",
  1353. "appflowy-integrate",
  1354. "bytes",
  1355. "collab",
  1356. "collab-document",
  1357. "flowy-codegen",
  1358. "flowy-derive",
  1359. "flowy-document-deps",
  1360. "flowy-error",
  1361. "flowy-notification",
  1362. "futures",
  1363. "indexmap",
  1364. "lib-dispatch",
  1365. "lib-infra",
  1366. "nanoid",
  1367. "parking_lot 0.12.1",
  1368. "protobuf",
  1369. "serde",
  1370. "serde_json",
  1371. "strum_macros 0.21.1",
  1372. "tempfile",
  1373. "tokio",
  1374. "tokio-stream",
  1375. "tracing",
  1376. "tracing-subscriber 0.3.16",
  1377. "uuid",
  1378. ]
  1379. [[package]]
  1380. name = "flowy-encrypt"
  1381. version = "0.1.0"
  1382. dependencies = [
  1383. "aes-gcm",
  1384. "anyhow",
  1385. "base64 0.21.2",
  1386. "hmac",
  1387. "pbkdf2 0.12.2",
  1388. "rand 0.8.5",
  1389. "sha2",
  1390. ]
  1391. [[package]]
  1392. name = "flowy-error"
  1393. version = "0.1.0"
  1394. dependencies = [
  1395. "anyhow",
  1396. "bytes",
  1397. "collab-database",
  1398. "collab-document",
  1399. "flowy-codegen",
  1400. "flowy-derive",
  1401. "flowy-sqlite",
  1402. "http-error-code",
  1403. "lib-dispatch",
  1404. "protobuf",
  1405. "r2d2",
  1406. "reqwest",
  1407. "serde",
  1408. "serde_json",
  1409. "serde_repr",
  1410. "thiserror",
  1411. "tokio",
  1412. "tokio-postgres",
  1413. ]
  1414. [[package]]
  1415. name = "flowy-folder-deps"
  1416. version = "0.1.0"
  1417. dependencies = [
  1418. "anyhow",
  1419. "collab-folder",
  1420. "flowy-error",
  1421. "lib-infra",
  1422. "uuid",
  1423. ]
  1424. [[package]]
  1425. name = "flowy-folder2"
  1426. version = "0.1.0"
  1427. dependencies = [
  1428. "appflowy-integrate",
  1429. "bytes",
  1430. "chrono",
  1431. "collab",
  1432. "collab-folder",
  1433. "flowy-codegen",
  1434. "flowy-derive",
  1435. "flowy-error",
  1436. "flowy-folder-deps",
  1437. "flowy-folder2",
  1438. "flowy-notification",
  1439. "flowy-test",
  1440. "lazy_static",
  1441. "lib-dispatch",
  1442. "lib-infra",
  1443. "nanoid",
  1444. "parking_lot 0.12.1",
  1445. "protobuf",
  1446. "strum_macros 0.21.1",
  1447. "tokio",
  1448. "tokio-stream",
  1449. "tracing",
  1450. "unicode-segmentation",
  1451. "uuid",
  1452. ]
  1453. [[package]]
  1454. name = "flowy-net"
  1455. version = "0.1.0"
  1456. dependencies = [
  1457. "bytes",
  1458. "flowy-codegen",
  1459. "lib-dispatch",
  1460. "protobuf",
  1461. "tracing",
  1462. ]
  1463. [[package]]
  1464. name = "flowy-notification"
  1465. version = "0.1.0"
  1466. dependencies = [
  1467. "bytes",
  1468. "flowy-codegen",
  1469. "flowy-derive",
  1470. "lazy_static",
  1471. "lib-dispatch",
  1472. "protobuf",
  1473. "serde",
  1474. "tracing",
  1475. ]
  1476. [[package]]
  1477. name = "flowy-server"
  1478. version = "0.1.0"
  1479. dependencies = [
  1480. "anyhow",
  1481. "assert-json-diff",
  1482. "bytes",
  1483. "chrono",
  1484. "collab",
  1485. "collab-document",
  1486. "collab-plugins",
  1487. "config",
  1488. "dotenv",
  1489. "flowy-database-deps",
  1490. "flowy-document-deps",
  1491. "flowy-encrypt",
  1492. "flowy-error",
  1493. "flowy-folder-deps",
  1494. "flowy-server-config",
  1495. "flowy-storage",
  1496. "flowy-user-deps",
  1497. "futures",
  1498. "futures-util",
  1499. "hex",
  1500. "hyper",
  1501. "lazy_static",
  1502. "lib-infra",
  1503. "mime_guess",
  1504. "parking_lot 0.12.1",
  1505. "postgrest",
  1506. "reqwest",
  1507. "serde",
  1508. "serde-aux",
  1509. "serde_json",
  1510. "thiserror",
  1511. "tokio",
  1512. "tokio-retry",
  1513. "tokio-util",
  1514. "tracing",
  1515. "tracing-subscriber 0.3.16",
  1516. "url",
  1517. "uuid",
  1518. "yrs",
  1519. ]
  1520. [[package]]
  1521. name = "flowy-server-config"
  1522. version = "0.1.0"
  1523. dependencies = [
  1524. "flowy-error",
  1525. "serde",
  1526. ]
  1527. [[package]]
  1528. name = "flowy-sqlite"
  1529. version = "0.1.0"
  1530. dependencies = [
  1531. "anyhow",
  1532. "diesel",
  1533. "diesel_derives",
  1534. "diesel_migrations",
  1535. "error-chain",
  1536. "lazy_static",
  1537. "libsqlite3-sys",
  1538. "openssl",
  1539. "openssl-sys",
  1540. "parking_lot 0.12.1",
  1541. "r2d2",
  1542. "scheduled-thread-pool",
  1543. "serde",
  1544. "serde_json",
  1545. "tempfile",
  1546. "tracing",
  1547. ]
  1548. [[package]]
  1549. name = "flowy-storage"
  1550. version = "0.1.0"
  1551. dependencies = [
  1552. "anyhow",
  1553. "async-trait",
  1554. "bytes",
  1555. "reqwest",
  1556. "serde",
  1557. "serde_json",
  1558. ]
  1559. [[package]]
  1560. name = "flowy-task"
  1561. version = "0.1.0"
  1562. dependencies = [
  1563. "anyhow",
  1564. "atomic_refcell",
  1565. "futures",
  1566. "lib-infra",
  1567. "rand 0.8.5",
  1568. "tokio",
  1569. "tracing",
  1570. ]
  1571. [[package]]
  1572. name = "flowy-test"
  1573. version = "0.1.0"
  1574. dependencies = [
  1575. "anyhow",
  1576. "assert-json-diff",
  1577. "bytes",
  1578. "collab",
  1579. "collab-database",
  1580. "collab-document",
  1581. "collab-folder",
  1582. "collab-plugins",
  1583. "dotenv",
  1584. "flowy-core",
  1585. "flowy-database-deps",
  1586. "flowy-database2",
  1587. "flowy-document-deps",
  1588. "flowy-document2",
  1589. "flowy-encrypt",
  1590. "flowy-folder-deps",
  1591. "flowy-folder2",
  1592. "flowy-net",
  1593. "flowy-notification",
  1594. "flowy-server",
  1595. "flowy-server-config",
  1596. "flowy-user",
  1597. "flowy-user-deps",
  1598. "futures-util",
  1599. "lib-dispatch",
  1600. "lib-infra",
  1601. "nanoid",
  1602. "parking_lot 0.12.1",
  1603. "protobuf",
  1604. "serde",
  1605. "serde_json",
  1606. "tempdir",
  1607. "thread-id",
  1608. "tokio",
  1609. "tokio-postgres",
  1610. "tracing",
  1611. "uuid",
  1612. "zip",
  1613. ]
  1614. [[package]]
  1615. name = "flowy-user"
  1616. version = "0.1.0"
  1617. dependencies = [
  1618. "anyhow",
  1619. "appflowy-integrate",
  1620. "base64 0.21.2",
  1621. "bytes",
  1622. "chrono",
  1623. "collab",
  1624. "collab-database",
  1625. "collab-document",
  1626. "collab-folder",
  1627. "collab-user",
  1628. "diesel",
  1629. "diesel_derives",
  1630. "fake",
  1631. "fancy-regex 0.11.0",
  1632. "flowy-codegen",
  1633. "flowy-derive",
  1634. "flowy-encrypt",
  1635. "flowy-error",
  1636. "flowy-folder-deps",
  1637. "flowy-notification",
  1638. "flowy-server-config",
  1639. "flowy-sqlite",
  1640. "flowy-user-deps",
  1641. "lazy_static",
  1642. "lib-dispatch",
  1643. "lib-infra",
  1644. "log",
  1645. "nanoid",
  1646. "once_cell",
  1647. "parking_lot 0.12.1",
  1648. "protobuf",
  1649. "quickcheck",
  1650. "quickcheck_macros",
  1651. "rand 0.8.5",
  1652. "rand_core 0.6.4",
  1653. "serde",
  1654. "serde_json",
  1655. "serde_repr",
  1656. "strum_macros 0.21.1",
  1657. "tokio",
  1658. "tracing",
  1659. "unicode-segmentation",
  1660. "uuid",
  1661. "validator",
  1662. ]
  1663. [[package]]
  1664. name = "flowy-user-deps"
  1665. version = "0.1.0"
  1666. dependencies = [
  1667. "anyhow",
  1668. "chrono",
  1669. "collab-define",
  1670. "flowy-error",
  1671. "lib-infra",
  1672. "serde",
  1673. "serde_json",
  1674. "serde_repr",
  1675. "tokio",
  1676. "uuid",
  1677. ]
  1678. [[package]]
  1679. name = "fnv"
  1680. version = "1.0.7"
  1681. source = "registry+https://github.com/rust-lang/crates.io-index"
  1682. checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1"
  1683. [[package]]
  1684. name = "foreign-types"
  1685. version = "0.3.2"
  1686. source = "registry+https://github.com/rust-lang/crates.io-index"
  1687. checksum = "f6f339eb8adc052cd2ca78910fda869aefa38d22d5cb648e6485e4d3fc06f3b1"
  1688. dependencies = [
  1689. "foreign-types-shared",
  1690. ]
  1691. [[package]]
  1692. name = "foreign-types-shared"
  1693. version = "0.1.1"
  1694. source = "registry+https://github.com/rust-lang/crates.io-index"
  1695. checksum = "00b0228411908ca8685dba7fc2cdd70ec9990a6e753e89b6ac91a84c40fbaf4b"
  1696. [[package]]
  1697. name = "form_urlencoded"
  1698. version = "1.2.0"
  1699. source = "registry+https://github.com/rust-lang/crates.io-index"
  1700. checksum = "a62bc1cf6f830c2ec14a513a9fb124d0a213a629668a4186f329db21fe045652"
  1701. dependencies = [
  1702. "percent-encoding",
  1703. ]
  1704. [[package]]
  1705. name = "fs2"
  1706. version = "0.4.3"
  1707. source = "registry+https://github.com/rust-lang/crates.io-index"
  1708. checksum = "9564fc758e15025b46aa6643b1b77d047d1a56a1aea6e01002ac0c7026876213"
  1709. dependencies = [
  1710. "libc",
  1711. "winapi",
  1712. ]
  1713. [[package]]
  1714. name = "fuchsia-cprng"
  1715. version = "0.1.1"
  1716. source = "registry+https://github.com/rust-lang/crates.io-index"
  1717. checksum = "a06f77d526c1a601b7c4cdd98f54b5eaabffc14d5f2f0296febdc7f357c6d3ba"
  1718. [[package]]
  1719. name = "futures"
  1720. version = "0.3.28"
  1721. source = "registry+https://github.com/rust-lang/crates.io-index"
  1722. checksum = "23342abe12aba583913b2e62f22225ff9c950774065e4bfb61a19cd9770fec40"
  1723. dependencies = [
  1724. "futures-channel",
  1725. "futures-core",
  1726. "futures-executor",
  1727. "futures-io",
  1728. "futures-sink",
  1729. "futures-task",
  1730. "futures-util",
  1731. ]
  1732. [[package]]
  1733. name = "futures-channel"
  1734. version = "0.3.28"
  1735. source = "registry+https://github.com/rust-lang/crates.io-index"
  1736. checksum = "955518d47e09b25bbebc7a18df10b81f0c766eaf4c4f1cccef2fca5f2a4fb5f2"
  1737. dependencies = [
  1738. "futures-core",
  1739. "futures-sink",
  1740. ]
  1741. [[package]]
  1742. name = "futures-core"
  1743. version = "0.3.28"
  1744. source = "registry+https://github.com/rust-lang/crates.io-index"
  1745. checksum = "4bca583b7e26f571124fe5b7561d49cb2868d79116cfa0eefce955557c6fee8c"
  1746. [[package]]
  1747. name = "futures-executor"
  1748. version = "0.3.28"
  1749. source = "registry+https://github.com/rust-lang/crates.io-index"
  1750. checksum = "ccecee823288125bd88b4d7f565c9e58e41858e47ab72e8ea2d64e93624386e0"
  1751. dependencies = [
  1752. "futures-core",
  1753. "futures-task",
  1754. "futures-util",
  1755. ]
  1756. [[package]]
  1757. name = "futures-io"
  1758. version = "0.3.28"
  1759. source = "registry+https://github.com/rust-lang/crates.io-index"
  1760. checksum = "4fff74096e71ed47f8e023204cfd0aa1289cd54ae5430a9523be060cdb849964"
  1761. [[package]]
  1762. name = "futures-macro"
  1763. version = "0.3.28"
  1764. source = "registry+https://github.com/rust-lang/crates.io-index"
  1765. checksum = "89ca545a94061b6365f2c7355b4b32bd20df3ff95f02da9329b34ccc3bd6ee72"
  1766. dependencies = [
  1767. "proc-macro2",
  1768. "quote",
  1769. "syn 2.0.27",
  1770. ]
  1771. [[package]]
  1772. name = "futures-sink"
  1773. version = "0.3.28"
  1774. source = "registry+https://github.com/rust-lang/crates.io-index"
  1775. checksum = "f43be4fe21a13b9781a69afa4985b0f6ee0e1afab2c6f454a8cf30e2b2237b6e"
  1776. [[package]]
  1777. name = "futures-task"
  1778. version = "0.3.28"
  1779. source = "registry+https://github.com/rust-lang/crates.io-index"
  1780. checksum = "76d3d132be6c0e6aa1534069c705a74a5997a356c0dc2f86a47765e5617c5b65"
  1781. [[package]]
  1782. name = "futures-util"
  1783. version = "0.3.28"
  1784. source = "registry+https://github.com/rust-lang/crates.io-index"
  1785. checksum = "26b01e40b772d54cf6c6d721c1d1abd0647a0106a12ecaa1c186273392a69533"
  1786. dependencies = [
  1787. "futures-channel",
  1788. "futures-core",
  1789. "futures-io",
  1790. "futures-macro",
  1791. "futures-sink",
  1792. "futures-task",
  1793. "memchr",
  1794. "pin-project-lite",
  1795. "pin-utils",
  1796. "slab",
  1797. ]
  1798. [[package]]
  1799. name = "fxhash"
  1800. version = "0.2.1"
  1801. source = "registry+https://github.com/rust-lang/crates.io-index"
  1802. checksum = "c31b6d751ae2c7f11320402d34e41349dd1016f8d5d45e48c4312bc8625af50c"
  1803. dependencies = [
  1804. "byteorder",
  1805. ]
  1806. [[package]]
  1807. name = "generic-array"
  1808. version = "0.14.7"
  1809. source = "registry+https://github.com/rust-lang/crates.io-index"
  1810. checksum = "85649ca51fd72272d7821adaf274ad91c288277713d9c18820d8499a7ff69e9a"
  1811. dependencies = [
  1812. "typenum",
  1813. "version_check",
  1814. ]
  1815. [[package]]
  1816. name = "gethostname"
  1817. version = "0.2.3"
  1818. source = "registry+https://github.com/rust-lang/crates.io-index"
  1819. checksum = "c1ebd34e35c46e00bb73e81363248d627782724609fe1b6396f553f68fe3862e"
  1820. dependencies = [
  1821. "libc",
  1822. "winapi",
  1823. ]
  1824. [[package]]
  1825. name = "getrandom"
  1826. version = "0.1.16"
  1827. source = "registry+https://github.com/rust-lang/crates.io-index"
  1828. checksum = "8fc3cb4d91f53b50155bdcfd23f6a4c39ae1969c2ae85982b135750cccaf5fce"
  1829. dependencies = [
  1830. "cfg-if",
  1831. "js-sys",
  1832. "libc",
  1833. "wasi 0.9.0+wasi-snapshot-preview1",
  1834. "wasm-bindgen",
  1835. ]
  1836. [[package]]
  1837. name = "getrandom"
  1838. version = "0.2.9"
  1839. source = "registry+https://github.com/rust-lang/crates.io-index"
  1840. checksum = "c85e1d9ab2eadba7e5040d4e09cbd6d072b76a557ad64e797c2cb9d4da21d7e4"
  1841. dependencies = [
  1842. "cfg-if",
  1843. "libc",
  1844. "wasi 0.11.0+wasi-snapshot-preview1",
  1845. ]
  1846. [[package]]
  1847. name = "ghash"
  1848. version = "0.5.0"
  1849. source = "registry+https://github.com/rust-lang/crates.io-index"
  1850. checksum = "d930750de5717d2dd0b8c0d42c076c0e884c81a73e6cab859bbd2339c71e3e40"
  1851. dependencies = [
  1852. "opaque-debug",
  1853. "polyval",
  1854. ]
  1855. [[package]]
  1856. name = "gimli"
  1857. version = "0.27.2"
  1858. source = "registry+https://github.com/rust-lang/crates.io-index"
  1859. checksum = "ad0a93d233ebf96623465aad4046a8d3aa4da22d4f4beba5388838c8a434bbb4"
  1860. [[package]]
  1861. name = "glob"
  1862. version = "0.3.1"
  1863. source = "registry+https://github.com/rust-lang/crates.io-index"
  1864. checksum = "d2fabcfbdc87f4758337ca535fb41a6d701b65693ce38287d856d1674551ec9b"
  1865. [[package]]
  1866. name = "globset"
  1867. version = "0.4.10"
  1868. source = "registry+https://github.com/rust-lang/crates.io-index"
  1869. checksum = "029d74589adefde59de1a0c4f4732695c32805624aec7b68d91503d4dba79afc"
  1870. dependencies = [
  1871. "aho-corasick",
  1872. "bstr",
  1873. "fnv",
  1874. "log",
  1875. "regex",
  1876. ]
  1877. [[package]]
  1878. name = "globwalk"
  1879. version = "0.8.1"
  1880. source = "registry+https://github.com/rust-lang/crates.io-index"
  1881. checksum = "93e3af942408868f6934a7b85134a3230832b9977cf66125df2f9edcfce4ddcc"
  1882. dependencies = [
  1883. "bitflags",
  1884. "ignore",
  1885. "walkdir",
  1886. ]
  1887. [[package]]
  1888. name = "h2"
  1889. version = "0.3.17"
  1890. source = "registry+https://github.com/rust-lang/crates.io-index"
  1891. checksum = "66b91535aa35fea1523ad1b86cb6b53c28e0ae566ba4a460f4457e936cad7c6f"
  1892. dependencies = [
  1893. "bytes",
  1894. "fnv",
  1895. "futures-core",
  1896. "futures-sink",
  1897. "futures-util",
  1898. "http",
  1899. "indexmap",
  1900. "slab",
  1901. "tokio",
  1902. "tokio-util",
  1903. "tracing",
  1904. ]
  1905. [[package]]
  1906. name = "hashbrown"
  1907. version = "0.12.3"
  1908. source = "registry+https://github.com/rust-lang/crates.io-index"
  1909. checksum = "8a9ee70c43aaf417c914396645a0fa852624801b24ebb7ae78fe8272889ac888"
  1910. dependencies = [
  1911. "ahash 0.7.6",
  1912. ]
  1913. [[package]]
  1914. name = "hashbrown"
  1915. version = "0.13.2"
  1916. source = "registry+https://github.com/rust-lang/crates.io-index"
  1917. checksum = "43a3c133739dddd0d2990f9a4bdf8eb4b21ef50e4851ca85ab661199821d510e"
  1918. dependencies = [
  1919. "ahash 0.8.3",
  1920. ]
  1921. [[package]]
  1922. name = "hdrhistogram"
  1923. version = "7.5.2"
  1924. source = "registry+https://github.com/rust-lang/crates.io-index"
  1925. checksum = "7f19b9f54f7c7f55e31401bb647626ce0cf0f67b0004982ce815b3ee72a02aa8"
  1926. dependencies = [
  1927. "base64 0.13.1",
  1928. "byteorder",
  1929. "flate2",
  1930. "nom 7.1.3",
  1931. "num-traits",
  1932. ]
  1933. [[package]]
  1934. name = "heck"
  1935. version = "0.3.3"
  1936. source = "registry+https://github.com/rust-lang/crates.io-index"
  1937. checksum = "6d621efb26863f0e9924c6ac577e8275e5e6b77455db64ffa6c65c904e9e132c"
  1938. dependencies = [
  1939. "unicode-segmentation",
  1940. ]
  1941. [[package]]
  1942. name = "heck"
  1943. version = "0.4.1"
  1944. source = "registry+https://github.com/rust-lang/crates.io-index"
  1945. checksum = "95505c38b4572b2d910cecb0281560f54b440a19336cbbcb27bf6ce6adc6f5a8"
  1946. [[package]]
  1947. name = "hermit-abi"
  1948. version = "0.2.6"
  1949. source = "registry+https://github.com/rust-lang/crates.io-index"
  1950. checksum = "ee512640fe35acbfb4bb779db6f0d80704c2cacfa2e39b601ef3e3f47d1ae4c7"
  1951. dependencies = [
  1952. "libc",
  1953. ]
  1954. [[package]]
  1955. name = "hermit-abi"
  1956. version = "0.3.1"
  1957. source = "registry+https://github.com/rust-lang/crates.io-index"
  1958. checksum = "fed44880c466736ef9a5c5b5facefb5ed0785676d0c02d612db14e54f0d84286"
  1959. [[package]]
  1960. name = "hex"
  1961. version = "0.4.3"
  1962. source = "registry+https://github.com/rust-lang/crates.io-index"
  1963. checksum = "7f24254aa9a54b5c858eaee2f5bccdb46aaf0e486a595ed5fd8f86ba55232a70"
  1964. [[package]]
  1965. name = "hmac"
  1966. version = "0.12.1"
  1967. source = "registry+https://github.com/rust-lang/crates.io-index"
  1968. checksum = "6c49c37c09c17a53d937dfbb742eb3a961d65a994e6bcdcf37e7399d0cc8ab5e"
  1969. dependencies = [
  1970. "digest",
  1971. ]
  1972. [[package]]
  1973. name = "http"
  1974. version = "0.2.9"
  1975. source = "registry+https://github.com/rust-lang/crates.io-index"
  1976. checksum = "bd6effc99afb63425aff9b05836f029929e345a6148a14b7ecd5ab67af944482"
  1977. dependencies = [
  1978. "bytes",
  1979. "fnv",
  1980. "itoa",
  1981. ]
  1982. [[package]]
  1983. name = "http-body"
  1984. version = "0.4.5"
  1985. source = "registry+https://github.com/rust-lang/crates.io-index"
  1986. checksum = "d5f38f16d184e36f2408a55281cd658ecbd3ca05cce6d6510a176eca393e26d1"
  1987. dependencies = [
  1988. "bytes",
  1989. "http",
  1990. "pin-project-lite",
  1991. ]
  1992. [[package]]
  1993. name = "http-error-code"
  1994. version = "0.1.0"
  1995. source = "git+https://github.com/AppFlowy-IO/AppFlowy-Server?branch=refactor/appflowy_server#1ccd296de8530760d92652dbd9f38f27178059b6"
  1996. dependencies = [
  1997. "serde",
  1998. "serde_repr",
  1999. "thiserror",
  2000. ]
  2001. [[package]]
  2002. name = "httparse"
  2003. version = "1.8.0"
  2004. source = "registry+https://github.com/rust-lang/crates.io-index"
  2005. checksum = "d897f394bad6a705d5f4104762e116a75639e470d80901eed05a860a95cb1904"
  2006. [[package]]
  2007. name = "httpdate"
  2008. version = "1.0.2"
  2009. source = "registry+https://github.com/rust-lang/crates.io-index"
  2010. checksum = "c4a1e36c821dbe04574f602848a19f742f4fb3c98d40449f11bcad18d6b17421"
  2011. [[package]]
  2012. name = "humansize"
  2013. version = "2.1.3"
  2014. source = "registry+https://github.com/rust-lang/crates.io-index"
  2015. checksum = "6cb51c9a029ddc91b07a787f1d86b53ccfa49b0e86688c946ebe8d3555685dd7"
  2016. dependencies = [
  2017. "libm",
  2018. ]
  2019. [[package]]
  2020. name = "humantime"
  2021. version = "2.1.0"
  2022. source = "registry+https://github.com/rust-lang/crates.io-index"
  2023. checksum = "9a3a5bfb195931eeb336b2a7b4d761daec841b97f947d34394601737a7bba5e4"
  2024. [[package]]
  2025. name = "hyper"
  2026. version = "0.14.26"
  2027. source = "registry+https://github.com/rust-lang/crates.io-index"
  2028. checksum = "ab302d72a6f11a3b910431ff93aae7e773078c769f0a3ef15fb9ec692ed147d4"
  2029. dependencies = [
  2030. "bytes",
  2031. "futures-channel",
  2032. "futures-core",
  2033. "futures-util",
  2034. "h2",
  2035. "http",
  2036. "http-body",
  2037. "httparse",
  2038. "httpdate",
  2039. "itoa",
  2040. "pin-project-lite",
  2041. "socket2 0.4.9",
  2042. "tokio",
  2043. "tower-service",
  2044. "tracing",
  2045. "want",
  2046. ]
  2047. [[package]]
  2048. name = "hyper-rustls"
  2049. version = "0.23.2"
  2050. source = "registry+https://github.com/rust-lang/crates.io-index"
  2051. checksum = "1788965e61b367cd03a62950836d5cd41560c3577d90e40e0819373194d1661c"
  2052. dependencies = [
  2053. "http",
  2054. "hyper",
  2055. "rustls",
  2056. "tokio",
  2057. "tokio-rustls",
  2058. ]
  2059. [[package]]
  2060. name = "hyper-timeout"
  2061. version = "0.4.1"
  2062. source = "registry+https://github.com/rust-lang/crates.io-index"
  2063. checksum = "bbb958482e8c7be4bc3cf272a766a2b0bf1a6755e7a6ae777f017a31d11b13b1"
  2064. dependencies = [
  2065. "hyper",
  2066. "pin-project-lite",
  2067. "tokio",
  2068. "tokio-io-timeout",
  2069. ]
  2070. [[package]]
  2071. name = "hyper-tls"
  2072. version = "0.5.0"
  2073. source = "registry+https://github.com/rust-lang/crates.io-index"
  2074. checksum = "d6183ddfa99b85da61a140bea0efc93fdf56ceaa041b37d553518030827f9905"
  2075. dependencies = [
  2076. "bytes",
  2077. "hyper",
  2078. "native-tls",
  2079. "tokio",
  2080. "tokio-native-tls",
  2081. ]
  2082. [[package]]
  2083. name = "iana-time-zone"
  2084. version = "0.1.56"
  2085. source = "registry+https://github.com/rust-lang/crates.io-index"
  2086. checksum = "0722cd7114b7de04316e7ea5456a0bbb20e4adb46fd27a3697adb812cff0f37c"
  2087. dependencies = [
  2088. "android_system_properties",
  2089. "core-foundation-sys",
  2090. "iana-time-zone-haiku",
  2091. "js-sys",
  2092. "wasm-bindgen",
  2093. "windows",
  2094. ]
  2095. [[package]]
  2096. name = "iana-time-zone-haiku"
  2097. version = "0.1.1"
  2098. source = "registry+https://github.com/rust-lang/crates.io-index"
  2099. checksum = "0703ae284fc167426161c2e3f1da3ea71d94b21bedbcc9494e92b28e334e3dca"
  2100. dependencies = [
  2101. "cxx",
  2102. "cxx-build",
  2103. ]
  2104. [[package]]
  2105. name = "idna"
  2106. version = "0.2.3"
  2107. source = "registry+https://github.com/rust-lang/crates.io-index"
  2108. checksum = "418a0a6fab821475f634efe3ccc45c013f742efe03d853e8d3355d5cb850ecf8"
  2109. dependencies = [
  2110. "matches",
  2111. "unicode-bidi",
  2112. "unicode-normalization",
  2113. ]
  2114. [[package]]
  2115. name = "idna"
  2116. version = "0.4.0"
  2117. source = "registry+https://github.com/rust-lang/crates.io-index"
  2118. checksum = "7d20d6b07bfbc108882d88ed8e37d39636dcc260e15e30c45e6ba089610b917c"
  2119. dependencies = [
  2120. "unicode-bidi",
  2121. "unicode-normalization",
  2122. ]
  2123. [[package]]
  2124. name = "ignore"
  2125. version = "0.4.20"
  2126. source = "registry+https://github.com/rust-lang/crates.io-index"
  2127. checksum = "dbe7873dab538a9a44ad79ede1faf5f30d49f9a5c883ddbab48bce81b64b7492"
  2128. dependencies = [
  2129. "globset",
  2130. "lazy_static",
  2131. "log",
  2132. "memchr",
  2133. "regex",
  2134. "same-file",
  2135. "thread_local",
  2136. "walkdir",
  2137. "winapi-util",
  2138. ]
  2139. [[package]]
  2140. name = "indexmap"
  2141. version = "1.9.3"
  2142. source = "registry+https://github.com/rust-lang/crates.io-index"
  2143. checksum = "bd070e393353796e801d209ad339e89596eb4c8d430d18ede6a1cced8fafbd99"
  2144. dependencies = [
  2145. "autocfg",
  2146. "hashbrown 0.12.3",
  2147. "serde",
  2148. ]
  2149. [[package]]
  2150. name = "inout"
  2151. version = "0.1.3"
  2152. source = "registry+https://github.com/rust-lang/crates.io-index"
  2153. checksum = "a0c10553d664a4d0bcff9f4215d0aac67a639cc68ef660840afe309b807bc9f5"
  2154. dependencies = [
  2155. "generic-array",
  2156. ]
  2157. [[package]]
  2158. name = "instant"
  2159. version = "0.1.12"
  2160. source = "registry+https://github.com/rust-lang/crates.io-index"
  2161. checksum = "7a5bbe824c507c5da5956355e86a746d82e0e1464f65d862cc5e71da70e94b2c"
  2162. dependencies = [
  2163. "cfg-if",
  2164. ]
  2165. [[package]]
  2166. name = "io-lifetimes"
  2167. version = "1.0.10"
  2168. source = "registry+https://github.com/rust-lang/crates.io-index"
  2169. checksum = "9c66c74d2ae7e79a5a8f7ac924adbe38ee42a859c6539ad869eb51f0b52dc220"
  2170. dependencies = [
  2171. "hermit-abi 0.3.1",
  2172. "libc",
  2173. "windows-sys 0.48.0",
  2174. ]
  2175. [[package]]
  2176. name = "ipnet"
  2177. version = "2.7.2"
  2178. source = "registry+https://github.com/rust-lang/crates.io-index"
  2179. checksum = "12b6ee2129af8d4fb011108c73d99a1b83a85977f23b82460c0ae2e25bb4b57f"
  2180. [[package]]
  2181. name = "itertools"
  2182. version = "0.10.5"
  2183. source = "registry+https://github.com/rust-lang/crates.io-index"
  2184. checksum = "b0fd2260e829bddf4cb6ea802289de2f86d6a7a690192fbe91b3f46e0f2c8473"
  2185. dependencies = [
  2186. "either",
  2187. ]
  2188. [[package]]
  2189. name = "itoa"
  2190. version = "1.0.6"
  2191. source = "registry+https://github.com/rust-lang/crates.io-index"
  2192. checksum = "453ad9f582a441959e5f0d088b02ce04cfe8d51a8eaf077f12ac6d3e94164ca6"
  2193. [[package]]
  2194. name = "jobserver"
  2195. version = "0.1.26"
  2196. source = "registry+https://github.com/rust-lang/crates.io-index"
  2197. checksum = "936cfd212a0155903bcbc060e316fb6cc7cbf2e1907329391ebadc1fe0ce77c2"
  2198. dependencies = [
  2199. "libc",
  2200. ]
  2201. [[package]]
  2202. name = "js-sys"
  2203. version = "0.3.61"
  2204. source = "registry+https://github.com/rust-lang/crates.io-index"
  2205. checksum = "445dde2150c55e483f3d8416706b97ec8e8237c307e5b7b4b8dd15e6af2a0730"
  2206. dependencies = [
  2207. "wasm-bindgen",
  2208. ]
  2209. [[package]]
  2210. name = "lazy_static"
  2211. version = "1.4.0"
  2212. source = "registry+https://github.com/rust-lang/crates.io-index"
  2213. checksum = "e2abad23fbc42b3700f2f279844dc832adb2b2eb069b2df918f455c4e18cc646"
  2214. [[package]]
  2215. name = "lazycell"
  2216. version = "1.3.0"
  2217. source = "registry+https://github.com/rust-lang/crates.io-index"
  2218. checksum = "830d08ce1d1d941e6b30645f1a0eb5643013d835ce3779a5fc208261dbe10f55"
  2219. [[package]]
  2220. name = "lexical-core"
  2221. version = "0.7.6"
  2222. source = "registry+https://github.com/rust-lang/crates.io-index"
  2223. checksum = "6607c62aa161d23d17a9072cc5da0be67cdfc89d3afb1e8d9c842bebc2525ffe"
  2224. dependencies = [
  2225. "arrayvec 0.5.2",
  2226. "bitflags",
  2227. "cfg-if",
  2228. "ryu",
  2229. "static_assertions",
  2230. ]
  2231. [[package]]
  2232. name = "lib-dispatch"
  2233. version = "0.1.0"
  2234. dependencies = [
  2235. "bincode",
  2236. "bytes",
  2237. "derivative",
  2238. "dyn-clone",
  2239. "futures",
  2240. "futures-channel",
  2241. "futures-core",
  2242. "futures-util",
  2243. "log",
  2244. "nanoid",
  2245. "pin-project",
  2246. "protobuf",
  2247. "serde",
  2248. "serde_json",
  2249. "serde_repr",
  2250. "thread-id",
  2251. "tokio",
  2252. "tracing",
  2253. ]
  2254. [[package]]
  2255. name = "lib-infra"
  2256. version = "0.1.0"
  2257. dependencies = [
  2258. "anyhow",
  2259. "async-trait",
  2260. "bytes",
  2261. "chrono",
  2262. "futures-core",
  2263. "md5",
  2264. "pin-project",
  2265. "rand 0.8.5",
  2266. "tokio",
  2267. ]
  2268. [[package]]
  2269. name = "lib-log"
  2270. version = "0.1.0"
  2271. dependencies = [
  2272. "chrono",
  2273. "lazy_static",
  2274. "log",
  2275. "serde",
  2276. "serde_json",
  2277. "tracing",
  2278. "tracing-appender",
  2279. "tracing-bunyan-formatter",
  2280. "tracing-core",
  2281. "tracing-log",
  2282. "tracing-subscriber 0.2.25",
  2283. ]
  2284. [[package]]
  2285. name = "lib0"
  2286. version = "0.16.5"
  2287. source = "registry+https://github.com/rust-lang/crates.io-index"
  2288. checksum = "daf23122cb1c970b77ea6030eac5e328669415b65d2ab245c99bfb110f9d62dc"
  2289. dependencies = [
  2290. "serde",
  2291. "serde_json",
  2292. "thiserror",
  2293. ]
  2294. [[package]]
  2295. name = "libc"
  2296. version = "0.2.141"
  2297. source = "registry+https://github.com/rust-lang/crates.io-index"
  2298. checksum = "3304a64d199bb964be99741b7a14d26972741915b3649639149b2479bb46f4b5"
  2299. [[package]]
  2300. name = "libloading"
  2301. version = "0.7.4"
  2302. source = "registry+https://github.com/rust-lang/crates.io-index"
  2303. checksum = "b67380fd3b2fbe7527a606e18729d21c6f3951633d0500574c4dc22d2d638b9f"
  2304. dependencies = [
  2305. "cfg-if",
  2306. "winapi",
  2307. ]
  2308. [[package]]
  2309. name = "libm"
  2310. version = "0.2.6"
  2311. source = "registry+https://github.com/rust-lang/crates.io-index"
  2312. checksum = "348108ab3fba42ec82ff6e9564fc4ca0247bdccdc68dd8af9764bbc79c3c8ffb"
  2313. [[package]]
  2314. name = "librocksdb-sys"
  2315. version = "0.11.0+8.1.1"
  2316. source = "registry+https://github.com/rust-lang/crates.io-index"
  2317. checksum = "d3386f101bcb4bd252d8e9d2fb41ec3b0862a15a62b478c355b2982efa469e3e"
  2318. dependencies = [
  2319. "bindgen",
  2320. "bzip2-sys",
  2321. "cc",
  2322. "glob",
  2323. "libc",
  2324. "libz-sys",
  2325. "zstd-sys",
  2326. ]
  2327. [[package]]
  2328. name = "libsqlite3-sys"
  2329. version = "0.22.2"
  2330. source = "registry+https://github.com/rust-lang/crates.io-index"
  2331. checksum = "290b64917f8b0cb885d9de0f9959fe1f775d7fa12f1da2db9001c1c8ab60f89d"
  2332. dependencies = [
  2333. "cc",
  2334. "pkg-config",
  2335. "vcpkg",
  2336. ]
  2337. [[package]]
  2338. name = "libz-sys"
  2339. version = "1.1.8"
  2340. source = "registry+https://github.com/rust-lang/crates.io-index"
  2341. checksum = "9702761c3935f8cc2f101793272e202c72b99da8f4224a19ddcf1279a6450bbf"
  2342. dependencies = [
  2343. "cc",
  2344. "pkg-config",
  2345. "vcpkg",
  2346. ]
  2347. [[package]]
  2348. name = "link-cplusplus"
  2349. version = "1.0.8"
  2350. source = "registry+https://github.com/rust-lang/crates.io-index"
  2351. checksum = "ecd207c9c713c34f95a097a5b029ac2ce6010530c7b49d7fea24d977dede04f5"
  2352. dependencies = [
  2353. "cc",
  2354. ]
  2355. [[package]]
  2356. name = "linked-hash-map"
  2357. version = "0.5.6"
  2358. source = "registry+https://github.com/rust-lang/crates.io-index"
  2359. checksum = "0717cef1bc8b636c6e1c1bbdefc09e6322da8a9321966e8928ef80d20f7f770f"
  2360. [[package]]
  2361. name = "linux-raw-sys"
  2362. version = "0.3.1"
  2363. source = "registry+https://github.com/rust-lang/crates.io-index"
  2364. checksum = "d59d8c75012853d2e872fb56bc8a2e53718e2cafe1a4c823143141c6d90c322f"
  2365. [[package]]
  2366. name = "lock_api"
  2367. version = "0.4.9"
  2368. source = "registry+https://github.com/rust-lang/crates.io-index"
  2369. checksum = "435011366fe56583b16cf956f9df0095b405b82d76425bc8981c0e22e60ec4df"
  2370. dependencies = [
  2371. "autocfg",
  2372. "scopeguard",
  2373. ]
  2374. [[package]]
  2375. name = "log"
  2376. version = "0.4.17"
  2377. source = "registry+https://github.com/rust-lang/crates.io-index"
  2378. checksum = "abb12e687cfb44aa40f41fc3978ef76448f9b6038cad6aef4259d3c095a2382e"
  2379. dependencies = [
  2380. "cfg-if",
  2381. ]
  2382. [[package]]
  2383. name = "lru"
  2384. version = "0.10.0"
  2385. source = "registry+https://github.com/rust-lang/crates.io-index"
  2386. checksum = "03f1160296536f10c833a82dca22267d5486734230d47bf00bf435885814ba1e"
  2387. dependencies = [
  2388. "hashbrown 0.13.2",
  2389. ]
  2390. [[package]]
  2391. name = "matchers"
  2392. version = "0.0.1"
  2393. source = "registry+https://github.com/rust-lang/crates.io-index"
  2394. checksum = "f099785f7595cc4b4553a174ce30dd7589ef93391ff414dbb67f62392b9e0ce1"
  2395. dependencies = [
  2396. "regex-automata",
  2397. ]
  2398. [[package]]
  2399. name = "matchers"
  2400. version = "0.1.0"
  2401. source = "registry+https://github.com/rust-lang/crates.io-index"
  2402. checksum = "8263075bb86c5a1b1427b5ae862e8889656f126e9f77c484496e8b47cf5c5558"
  2403. dependencies = [
  2404. "regex-automata",
  2405. ]
  2406. [[package]]
  2407. name = "matches"
  2408. version = "0.1.10"
  2409. source = "registry+https://github.com/rust-lang/crates.io-index"
  2410. checksum = "2532096657941c2fea9c289d370a250971c689d4f143798ff67113ec042024a5"
  2411. [[package]]
  2412. name = "matchit"
  2413. version = "0.7.0"
  2414. source = "registry+https://github.com/rust-lang/crates.io-index"
  2415. checksum = "b87248edafb776e59e6ee64a79086f65890d3510f2c656c000bf2a7e8a0aea40"
  2416. [[package]]
  2417. name = "md-5"
  2418. version = "0.10.5"
  2419. source = "registry+https://github.com/rust-lang/crates.io-index"
  2420. checksum = "6365506850d44bff6e2fbcb5176cf63650e48bd45ef2fe2665ae1570e0f4b9ca"
  2421. dependencies = [
  2422. "digest",
  2423. ]
  2424. [[package]]
  2425. name = "md5"
  2426. version = "0.7.0"
  2427. source = "registry+https://github.com/rust-lang/crates.io-index"
  2428. checksum = "490cc448043f947bae3cbee9c203358d62dbee0db12107a74be5c30ccfd09771"
  2429. [[package]]
  2430. name = "memchr"
  2431. version = "2.5.0"
  2432. source = "registry+https://github.com/rust-lang/crates.io-index"
  2433. checksum = "2dffe52ecf27772e601905b7522cb4ef790d2cc203488bbd0e2fe85fcb74566d"
  2434. [[package]]
  2435. name = "memoffset"
  2436. version = "0.8.0"
  2437. source = "registry+https://github.com/rust-lang/crates.io-index"
  2438. checksum = "d61c719bcfbcf5d62b3a09efa6088de8c54bc0bfcd3ea7ae39fcc186108b8de1"
  2439. dependencies = [
  2440. "autocfg",
  2441. ]
  2442. [[package]]
  2443. name = "migrations_internals"
  2444. version = "1.4.1"
  2445. source = "registry+https://github.com/rust-lang/crates.io-index"
  2446. checksum = "2b4fc84e4af020b837029e017966f86a1c2d5e83e64b589963d5047525995860"
  2447. dependencies = [
  2448. "diesel",
  2449. ]
  2450. [[package]]
  2451. name = "migrations_macros"
  2452. version = "1.4.2"
  2453. source = "registry+https://github.com/rust-lang/crates.io-index"
  2454. checksum = "9753f12909fd8d923f75ae5c3258cae1ed3c8ec052e1b38c93c21a6d157f789c"
  2455. dependencies = [
  2456. "migrations_internals",
  2457. "proc-macro2",
  2458. "quote",
  2459. "syn 1.0.109",
  2460. ]
  2461. [[package]]
  2462. name = "mime"
  2463. version = "0.3.17"
  2464. source = "registry+https://github.com/rust-lang/crates.io-index"
  2465. checksum = "6877bb514081ee2a7ff5ef9de3281f14a4dd4bceac4c09388074a6b5df8a139a"
  2466. [[package]]
  2467. name = "mime_guess"
  2468. version = "2.0.4"
  2469. source = "registry+https://github.com/rust-lang/crates.io-index"
  2470. checksum = "4192263c238a5f0d0c6bfd21f336a313a4ce1c450542449ca191bb657b4642ef"
  2471. dependencies = [
  2472. "mime",
  2473. "unicase",
  2474. ]
  2475. [[package]]
  2476. name = "minimal-lexical"
  2477. version = "0.2.1"
  2478. source = "registry+https://github.com/rust-lang/crates.io-index"
  2479. checksum = "68354c5c6bd36d73ff3feceb05efa59b6acb7626617f4962be322a825e61f79a"
  2480. [[package]]
  2481. name = "miniz_oxide"
  2482. version = "0.6.2"
  2483. source = "registry+https://github.com/rust-lang/crates.io-index"
  2484. checksum = "b275950c28b37e794e8c55d88aeb5e139d0ce23fdbbeda68f8d7174abdf9e8fa"
  2485. dependencies = [
  2486. "adler",
  2487. ]
  2488. [[package]]
  2489. name = "mio"
  2490. version = "0.8.6"
  2491. source = "registry+https://github.com/rust-lang/crates.io-index"
  2492. checksum = "5b9d9a46eff5b4ff64b45a9e316a6d1e0bc719ef429cbec4dc630684212bfdf9"
  2493. dependencies = [
  2494. "libc",
  2495. "log",
  2496. "wasi 0.11.0+wasi-snapshot-preview1",
  2497. "windows-sys 0.45.0",
  2498. ]
  2499. [[package]]
  2500. name = "nanoid"
  2501. version = "0.4.0"
  2502. source = "registry+https://github.com/rust-lang/crates.io-index"
  2503. checksum = "3ffa00dec017b5b1a8b7cf5e2c008bfda1aa7e0697ac1508b491fdf2622fb4d8"
  2504. dependencies = [
  2505. "rand 0.8.5",
  2506. ]
  2507. [[package]]
  2508. name = "native-tls"
  2509. version = "0.2.11"
  2510. source = "registry+https://github.com/rust-lang/crates.io-index"
  2511. checksum = "07226173c32f2926027b63cce4bcd8076c3552846cbe7925f3aaffeac0a3b92e"
  2512. dependencies = [
  2513. "lazy_static",
  2514. "libc",
  2515. "log",
  2516. "openssl",
  2517. "openssl-probe",
  2518. "openssl-sys",
  2519. "schannel",
  2520. "security-framework",
  2521. "security-framework-sys",
  2522. "tempfile",
  2523. ]
  2524. [[package]]
  2525. name = "nom"
  2526. version = "5.1.2"
  2527. source = "registry+https://github.com/rust-lang/crates.io-index"
  2528. checksum = "ffb4262d26ed83a1c0a33a38fe2bb15797329c85770da05e6b828ddb782627af"
  2529. dependencies = [
  2530. "lexical-core",
  2531. "memchr",
  2532. "version_check",
  2533. ]
  2534. [[package]]
  2535. name = "nom"
  2536. version = "7.1.3"
  2537. source = "registry+https://github.com/rust-lang/crates.io-index"
  2538. checksum = "d273983c5a657a70a3e8f2a01329822f3b8c8172b73826411a55751e404a0a4a"
  2539. dependencies = [
  2540. "memchr",
  2541. "minimal-lexical",
  2542. ]
  2543. [[package]]
  2544. name = "nu-ansi-term"
  2545. version = "0.46.0"
  2546. source = "registry+https://github.com/rust-lang/crates.io-index"
  2547. checksum = "77a8165726e8236064dbb45459242600304b42a5ea24ee2948e18e023bf7ba84"
  2548. dependencies = [
  2549. "overload",
  2550. "winapi",
  2551. ]
  2552. [[package]]
  2553. name = "num-integer"
  2554. version = "0.1.45"
  2555. source = "registry+https://github.com/rust-lang/crates.io-index"
  2556. checksum = "225d3389fb3509a24c93f5c29eb6bde2586b98d9f016636dff58d7c6f7569cd9"
  2557. dependencies = [
  2558. "autocfg",
  2559. "num-traits",
  2560. ]
  2561. [[package]]
  2562. name = "num-traits"
  2563. version = "0.2.15"
  2564. source = "registry+https://github.com/rust-lang/crates.io-index"
  2565. checksum = "578ede34cf02f8924ab9447f50c28075b4d3e5b269972345e7e0372b38c6cdcd"
  2566. dependencies = [
  2567. "autocfg",
  2568. ]
  2569. [[package]]
  2570. name = "num_cpus"
  2571. version = "1.15.0"
  2572. source = "registry+https://github.com/rust-lang/crates.io-index"
  2573. checksum = "0fac9e2da13b5eb447a6ce3d392f23a29d8694bff781bf03a16cd9ac8697593b"
  2574. dependencies = [
  2575. "hermit-abi 0.2.6",
  2576. "libc",
  2577. ]
  2578. [[package]]
  2579. name = "object"
  2580. version = "0.30.3"
  2581. source = "registry+https://github.com/rust-lang/crates.io-index"
  2582. checksum = "ea86265d3d3dcb6a27fc51bd29a4bf387fae9d2986b823079d4986af253eb439"
  2583. dependencies = [
  2584. "memchr",
  2585. ]
  2586. [[package]]
  2587. name = "once_cell"
  2588. version = "1.17.1"
  2589. source = "registry+https://github.com/rust-lang/crates.io-index"
  2590. checksum = "b7e5500299e16ebb147ae15a00a942af264cf3688f47923b8fc2cd5858f23ad3"
  2591. [[package]]
  2592. name = "opaque-debug"
  2593. version = "0.3.0"
  2594. source = "registry+https://github.com/rust-lang/crates.io-index"
  2595. checksum = "624a8340c38c1b80fd549087862da4ba43e08858af025b236e509b6649fc13d5"
  2596. [[package]]
  2597. name = "openssl"
  2598. version = "0.10.50"
  2599. source = "registry+https://github.com/rust-lang/crates.io-index"
  2600. checksum = "7e30d8bc91859781f0a943411186324d580f2bbeb71b452fe91ae344806af3f1"
  2601. dependencies = [
  2602. "bitflags",
  2603. "cfg-if",
  2604. "foreign-types",
  2605. "libc",
  2606. "once_cell",
  2607. "openssl-macros",
  2608. "openssl-sys",
  2609. ]
  2610. [[package]]
  2611. name = "openssl-macros"
  2612. version = "0.1.1"
  2613. source = "registry+https://github.com/rust-lang/crates.io-index"
  2614. checksum = "a948666b637a0f465e8564c73e89d4dde00d72d4d473cc972f390fc3dcee7d9c"
  2615. dependencies = [
  2616. "proc-macro2",
  2617. "quote",
  2618. "syn 2.0.27",
  2619. ]
  2620. [[package]]
  2621. name = "openssl-probe"
  2622. version = "0.1.5"
  2623. source = "registry+https://github.com/rust-lang/crates.io-index"
  2624. checksum = "ff011a302c396a5197692431fc1948019154afc178baf7d8e37367442a4601cf"
  2625. [[package]]
  2626. name = "openssl-src"
  2627. version = "111.25.2+1.1.1t"
  2628. source = "registry+https://github.com/rust-lang/crates.io-index"
  2629. checksum = "320708a054ad9b3bf314688b5db87cf4d6683d64cfc835e2337924ae62bf4431"
  2630. dependencies = [
  2631. "cc",
  2632. ]
  2633. [[package]]
  2634. name = "openssl-sys"
  2635. version = "0.9.85"
  2636. source = "registry+https://github.com/rust-lang/crates.io-index"
  2637. checksum = "0d3d193fb1488ad46ffe3aaabc912cc931d02ee8518fe2959aea8ef52718b0c0"
  2638. dependencies = [
  2639. "cc",
  2640. "libc",
  2641. "openssl-src",
  2642. "pkg-config",
  2643. "vcpkg",
  2644. ]
  2645. [[package]]
  2646. name = "os_pipe"
  2647. version = "0.9.2"
  2648. source = "registry+https://github.com/rust-lang/crates.io-index"
  2649. checksum = "fb233f06c2307e1f5ce2ecad9f8121cffbbee2c95428f44ea85222e460d0d213"
  2650. dependencies = [
  2651. "libc",
  2652. "winapi",
  2653. ]
  2654. [[package]]
  2655. name = "overload"
  2656. version = "0.1.1"
  2657. source = "registry+https://github.com/rust-lang/crates.io-index"
  2658. checksum = "b15813163c1d831bf4a13c3610c05c0d03b39feb07f7e09fa234dac9b15aaf39"
  2659. [[package]]
  2660. name = "parking_lot"
  2661. version = "0.11.2"
  2662. source = "registry+https://github.com/rust-lang/crates.io-index"
  2663. checksum = "7d17b78036a60663b797adeaee46f5c9dfebb86948d1255007a1d6be0271ff99"
  2664. dependencies = [
  2665. "instant",
  2666. "lock_api",
  2667. "parking_lot_core 0.8.6",
  2668. ]
  2669. [[package]]
  2670. name = "parking_lot"
  2671. version = "0.12.1"
  2672. source = "registry+https://github.com/rust-lang/crates.io-index"
  2673. checksum = "3742b2c103b9f06bc9fff0a37ff4912935851bee6d36f3c02bcc755bcfec228f"
  2674. dependencies = [
  2675. "lock_api",
  2676. "parking_lot_core 0.9.7",
  2677. ]
  2678. [[package]]
  2679. name = "parking_lot_core"
  2680. version = "0.8.6"
  2681. source = "registry+https://github.com/rust-lang/crates.io-index"
  2682. checksum = "60a2cfe6f0ad2bfc16aefa463b497d5c7a5ecd44a23efa72aa342d90177356dc"
  2683. dependencies = [
  2684. "cfg-if",
  2685. "instant",
  2686. "libc",
  2687. "redox_syscall 0.2.16",
  2688. "smallvec",
  2689. "winapi",
  2690. ]
  2691. [[package]]
  2692. name = "parking_lot_core"
  2693. version = "0.9.7"
  2694. source = "registry+https://github.com/rust-lang/crates.io-index"
  2695. checksum = "9069cbb9f99e3a5083476ccb29ceb1de18b9118cafa53e90c9551235de2b9521"
  2696. dependencies = [
  2697. "cfg-if",
  2698. "libc",
  2699. "redox_syscall 0.2.16",
  2700. "smallvec",
  2701. "windows-sys 0.45.0",
  2702. ]
  2703. [[package]]
  2704. name = "parse-zoneinfo"
  2705. version = "0.3.0"
  2706. source = "registry+https://github.com/rust-lang/crates.io-index"
  2707. checksum = "c705f256449c60da65e11ff6626e0c16a0a0b96aaa348de61376b249bc340f41"
  2708. dependencies = [
  2709. "regex",
  2710. ]
  2711. [[package]]
  2712. name = "password-hash"
  2713. version = "0.4.2"
  2714. source = "registry+https://github.com/rust-lang/crates.io-index"
  2715. checksum = "7676374caaee8a325c9e7a2ae557f216c5563a171d6997b0ef8a65af35147700"
  2716. dependencies = [
  2717. "base64ct",
  2718. "rand_core 0.6.4",
  2719. "subtle",
  2720. ]
  2721. [[package]]
  2722. name = "pbkdf2"
  2723. version = "0.11.0"
  2724. source = "registry+https://github.com/rust-lang/crates.io-index"
  2725. checksum = "83a0692ec44e4cf1ef28ca317f14f8f07da2d95ec3fa01f86e4467b725e60917"
  2726. dependencies = [
  2727. "digest",
  2728. "hmac",
  2729. "password-hash",
  2730. "sha2",
  2731. ]
  2732. [[package]]
  2733. name = "pbkdf2"
  2734. version = "0.12.2"
  2735. source = "registry+https://github.com/rust-lang/crates.io-index"
  2736. checksum = "f8ed6a7761f76e3b9f92dfb0a60a6a6477c61024b775147ff0973a02653abaf2"
  2737. dependencies = [
  2738. "digest",
  2739. "hmac",
  2740. ]
  2741. [[package]]
  2742. name = "peeking_take_while"
  2743. version = "0.1.2"
  2744. source = "registry+https://github.com/rust-lang/crates.io-index"
  2745. checksum = "19b17cddbe7ec3f8bc800887bab5e717348c95ea2ca0b1bf0837fb964dc67099"
  2746. [[package]]
  2747. name = "percent-encoding"
  2748. version = "2.3.0"
  2749. source = "registry+https://github.com/rust-lang/crates.io-index"
  2750. checksum = "9b2a4787296e9989611394c33f193f676704af1686e70b8f8033ab5ba9a35a94"
  2751. [[package]]
  2752. name = "pest"
  2753. version = "2.5.7"
  2754. source = "registry+https://github.com/rust-lang/crates.io-index"
  2755. checksum = "7b1403e8401ad5dedea73c626b99758535b342502f8d1e361f4a2dd952749122"
  2756. dependencies = [
  2757. "thiserror",
  2758. "ucd-trie",
  2759. ]
  2760. [[package]]
  2761. name = "pest_derive"
  2762. version = "2.5.7"
  2763. source = "registry+https://github.com/rust-lang/crates.io-index"
  2764. checksum = "be99c4c1d2fc2769b1d00239431d711d08f6efedcecb8b6e30707160aee99c15"
  2765. dependencies = [
  2766. "pest",
  2767. "pest_generator",
  2768. ]
  2769. [[package]]
  2770. name = "pest_generator"
  2771. version = "2.5.7"
  2772. source = "registry+https://github.com/rust-lang/crates.io-index"
  2773. checksum = "e56094789873daa36164de2e822b3888c6ae4b4f9da555a1103587658c805b1e"
  2774. dependencies = [
  2775. "pest",
  2776. "pest_meta",
  2777. "proc-macro2",
  2778. "quote",
  2779. "syn 2.0.27",
  2780. ]
  2781. [[package]]
  2782. name = "pest_meta"
  2783. version = "2.5.7"
  2784. source = "registry+https://github.com/rust-lang/crates.io-index"
  2785. checksum = "6733073c7cff3d8459fda0e42f13a047870242aed8b509fe98000928975f359e"
  2786. dependencies = [
  2787. "once_cell",
  2788. "pest",
  2789. "sha2",
  2790. ]
  2791. [[package]]
  2792. name = "phf"
  2793. version = "0.8.0"
  2794. source = "registry+https://github.com/rust-lang/crates.io-index"
  2795. checksum = "3dfb61232e34fcb633f43d12c58f83c1df82962dcdfa565a4e866ffc17dafe12"
  2796. dependencies = [
  2797. "phf_macros",
  2798. "phf_shared 0.8.0",
  2799. "proc-macro-hack",
  2800. ]
  2801. [[package]]
  2802. name = "phf"
  2803. version = "0.10.1"
  2804. source = "registry+https://github.com/rust-lang/crates.io-index"
  2805. checksum = "fabbf1ead8a5bcbc20f5f8b939ee3f5b0f6f281b6ad3468b84656b658b455259"
  2806. dependencies = [
  2807. "phf_shared 0.10.0",
  2808. ]
  2809. [[package]]
  2810. name = "phf"
  2811. version = "0.11.1"
  2812. source = "registry+https://github.com/rust-lang/crates.io-index"
  2813. checksum = "928c6535de93548188ef63bb7c4036bd415cd8f36ad25af44b9789b2ee72a48c"
  2814. dependencies = [
  2815. "phf_shared 0.11.1",
  2816. ]
  2817. [[package]]
  2818. name = "phf_codegen"
  2819. version = "0.10.0"
  2820. source = "registry+https://github.com/rust-lang/crates.io-index"
  2821. checksum = "4fb1c3a8bc4dd4e5cfce29b44ffc14bedd2ee294559a294e2a4d4c9e9a6a13cd"
  2822. dependencies = [
  2823. "phf_generator 0.10.0",
  2824. "phf_shared 0.10.0",
  2825. ]
  2826. [[package]]
  2827. name = "phf_codegen"
  2828. version = "0.11.1"
  2829. source = "registry+https://github.com/rust-lang/crates.io-index"
  2830. checksum = "a56ac890c5e3ca598bbdeaa99964edb5b0258a583a9eb6ef4e89fc85d9224770"
  2831. dependencies = [
  2832. "phf_generator 0.11.1",
  2833. "phf_shared 0.11.1",
  2834. ]
  2835. [[package]]
  2836. name = "phf_generator"
  2837. version = "0.8.0"
  2838. source = "registry+https://github.com/rust-lang/crates.io-index"
  2839. checksum = "17367f0cc86f2d25802b2c26ee58a7b23faeccf78a396094c13dced0d0182526"
  2840. dependencies = [
  2841. "phf_shared 0.8.0",
  2842. "rand 0.7.3",
  2843. ]
  2844. [[package]]
  2845. name = "phf_generator"
  2846. version = "0.10.0"
  2847. source = "registry+https://github.com/rust-lang/crates.io-index"
  2848. checksum = "5d5285893bb5eb82e6aaf5d59ee909a06a16737a8970984dd7746ba9283498d6"
  2849. dependencies = [
  2850. "phf_shared 0.10.0",
  2851. "rand 0.8.5",
  2852. ]
  2853. [[package]]
  2854. name = "phf_generator"
  2855. version = "0.11.1"
  2856. source = "registry+https://github.com/rust-lang/crates.io-index"
  2857. checksum = "b1181c94580fa345f50f19d738aaa39c0ed30a600d95cb2d3e23f94266f14fbf"
  2858. dependencies = [
  2859. "phf_shared 0.11.1",
  2860. "rand 0.8.5",
  2861. ]
  2862. [[package]]
  2863. name = "phf_macros"
  2864. version = "0.8.0"
  2865. source = "registry+https://github.com/rust-lang/crates.io-index"
  2866. checksum = "7f6fde18ff429ffc8fe78e2bf7f8b7a5a5a6e2a8b58bc5a9ac69198bbda9189c"
  2867. dependencies = [
  2868. "phf_generator 0.8.0",
  2869. "phf_shared 0.8.0",
  2870. "proc-macro-hack",
  2871. "proc-macro2",
  2872. "quote",
  2873. "syn 1.0.109",
  2874. ]
  2875. [[package]]
  2876. name = "phf_shared"
  2877. version = "0.8.0"
  2878. source = "registry+https://github.com/rust-lang/crates.io-index"
  2879. checksum = "c00cf8b9eafe68dde5e9eaa2cef8ee84a9336a47d566ec55ca16589633b65af7"
  2880. dependencies = [
  2881. "siphasher",
  2882. ]
  2883. [[package]]
  2884. name = "phf_shared"
  2885. version = "0.10.0"
  2886. source = "registry+https://github.com/rust-lang/crates.io-index"
  2887. checksum = "b6796ad771acdc0123d2a88dc428b5e38ef24456743ddb1744ed628f9815c096"
  2888. dependencies = [
  2889. "siphasher",
  2890. "uncased",
  2891. ]
  2892. [[package]]
  2893. name = "phf_shared"
  2894. version = "0.11.1"
  2895. source = "registry+https://github.com/rust-lang/crates.io-index"
  2896. checksum = "e1fb5f6f826b772a8d4c0394209441e7d37cbbb967ae9c7e0e8134365c9ee676"
  2897. dependencies = [
  2898. "siphasher",
  2899. ]
  2900. [[package]]
  2901. name = "pin-project"
  2902. version = "1.0.12"
  2903. source = "registry+https://github.com/rust-lang/crates.io-index"
  2904. checksum = "ad29a609b6bcd67fee905812e544992d216af9d755757c05ed2d0e15a74c6ecc"
  2905. dependencies = [
  2906. "pin-project-internal",
  2907. ]
  2908. [[package]]
  2909. name = "pin-project-internal"
  2910. version = "1.0.12"
  2911. source = "registry+https://github.com/rust-lang/crates.io-index"
  2912. checksum = "069bdb1e05adc7a8990dce9cc75370895fbe4e3d58b9b73bf1aee56359344a55"
  2913. dependencies = [
  2914. "proc-macro2",
  2915. "quote",
  2916. "syn 1.0.109",
  2917. ]
  2918. [[package]]
  2919. name = "pin-project-lite"
  2920. version = "0.2.9"
  2921. source = "registry+https://github.com/rust-lang/crates.io-index"
  2922. checksum = "e0a7ae3ac2f1173085d398531c705756c94a4c56843785df85a60c1a0afac116"
  2923. [[package]]
  2924. name = "pin-utils"
  2925. version = "0.1.0"
  2926. source = "registry+https://github.com/rust-lang/crates.io-index"
  2927. checksum = "8b870d8c151b6f2fb93e84a13146138f05d02ed11c7e7c54f8826aaaf7c9f184"
  2928. [[package]]
  2929. name = "pkg-config"
  2930. version = "0.3.26"
  2931. source = "registry+https://github.com/rust-lang/crates.io-index"
  2932. checksum = "6ac9a59f73473f1b8d852421e59e64809f025994837ef743615c6d0c5b305160"
  2933. [[package]]
  2934. name = "polyval"
  2935. version = "0.6.1"
  2936. source = "registry+https://github.com/rust-lang/crates.io-index"
  2937. checksum = "d52cff9d1d4dee5fe6d03729099f4a310a41179e0a10dbf542039873f2e826fb"
  2938. dependencies = [
  2939. "cfg-if",
  2940. "cpufeatures",
  2941. "opaque-debug",
  2942. "universal-hash",
  2943. ]
  2944. [[package]]
  2945. name = "postgres-protocol"
  2946. version = "0.6.5"
  2947. source = "registry+https://github.com/rust-lang/crates.io-index"
  2948. checksum = "78b7fa9f396f51dffd61546fd8573ee20592287996568e6175ceb0f8699ad75d"
  2949. dependencies = [
  2950. "base64 0.21.2",
  2951. "byteorder",
  2952. "bytes",
  2953. "fallible-iterator",
  2954. "hmac",
  2955. "md-5",
  2956. "memchr",
  2957. "rand 0.8.5",
  2958. "sha2",
  2959. "stringprep",
  2960. ]
  2961. [[package]]
  2962. name = "postgres-types"
  2963. version = "0.2.5"
  2964. source = "registry+https://github.com/rust-lang/crates.io-index"
  2965. checksum = "f028f05971fe20f512bcc679e2c10227e57809a3af86a7606304435bc8896cd6"
  2966. dependencies = [
  2967. "bytes",
  2968. "fallible-iterator",
  2969. "postgres-protocol",
  2970. ]
  2971. [[package]]
  2972. name = "postgrest"
  2973. version = "1.6.0"
  2974. source = "registry+https://github.com/rust-lang/crates.io-index"
  2975. checksum = "5a966c650b47a064e7082170b4be74fca08c088d893244fc4b70123e3c1f3ee7"
  2976. dependencies = [
  2977. "reqwest",
  2978. ]
  2979. [[package]]
  2980. name = "ppv-lite86"
  2981. version = "0.2.17"
  2982. source = "registry+https://github.com/rust-lang/crates.io-index"
  2983. checksum = "5b40af805b3121feab8a3c29f04d8ad262fa8e0561883e7653e024ae4479e6de"
  2984. [[package]]
  2985. name = "prettyplease"
  2986. version = "0.2.5"
  2987. source = "registry+https://github.com/rust-lang/crates.io-index"
  2988. checksum = "617feabb81566b593beb4886fb8c1f38064169dae4dccad0e3220160c3b37203"
  2989. dependencies = [
  2990. "proc-macro2",
  2991. "syn 2.0.27",
  2992. ]
  2993. [[package]]
  2994. name = "proc-macro-crate"
  2995. version = "0.1.5"
  2996. source = "registry+https://github.com/rust-lang/crates.io-index"
  2997. checksum = "1d6ea3c4595b96363c13943497db34af4460fb474a95c43f4446ad341b8c9785"
  2998. dependencies = [
  2999. "toml",
  3000. ]
  3001. [[package]]
  3002. name = "proc-macro-error"
  3003. version = "1.0.4"
  3004. source = "registry+https://github.com/rust-lang/crates.io-index"
  3005. checksum = "da25490ff9892aab3fcf7c36f08cfb902dd3e71ca0f9f9517bea02a73a5ce38c"
  3006. dependencies = [
  3007. "proc-macro-error-attr",
  3008. "proc-macro2",
  3009. "quote",
  3010. "syn 1.0.109",
  3011. "version_check",
  3012. ]
  3013. [[package]]
  3014. name = "proc-macro-error-attr"
  3015. version = "1.0.4"
  3016. source = "registry+https://github.com/rust-lang/crates.io-index"
  3017. checksum = "a1be40180e52ecc98ad80b184934baf3d0d29f979574e439af5a55274b35f869"
  3018. dependencies = [
  3019. "proc-macro2",
  3020. "quote",
  3021. "version_check",
  3022. ]
  3023. [[package]]
  3024. name = "proc-macro-hack"
  3025. version = "0.5.20+deprecated"
  3026. source = "registry+https://github.com/rust-lang/crates.io-index"
  3027. checksum = "dc375e1527247fe1a97d8b7156678dfe7c1af2fc075c9a4db3690ecd2a148068"
  3028. [[package]]
  3029. name = "proc-macro2"
  3030. version = "1.0.66"
  3031. source = "registry+https://github.com/rust-lang/crates.io-index"
  3032. checksum = "18fb31db3f9bddb2ea821cde30a9f70117e3f119938b5ee630b7403aa6e2ead9"
  3033. dependencies = [
  3034. "unicode-ident",
  3035. ]
  3036. [[package]]
  3037. name = "prost"
  3038. version = "0.11.9"
  3039. source = "registry+https://github.com/rust-lang/crates.io-index"
  3040. checksum = "0b82eaa1d779e9a4bc1c3217db8ffbeabaae1dca241bf70183242128d48681cd"
  3041. dependencies = [
  3042. "bytes",
  3043. "prost-derive",
  3044. ]
  3045. [[package]]
  3046. name = "prost-derive"
  3047. version = "0.11.9"
  3048. source = "registry+https://github.com/rust-lang/crates.io-index"
  3049. checksum = "e5d2d8d10f3c6ded6da8b05b5fb3b8a5082514344d56c9f871412d29b4e075b4"
  3050. dependencies = [
  3051. "anyhow",
  3052. "itertools",
  3053. "proc-macro2",
  3054. "quote",
  3055. "syn 1.0.109",
  3056. ]
  3057. [[package]]
  3058. name = "prost-types"
  3059. version = "0.11.9"
  3060. source = "registry+https://github.com/rust-lang/crates.io-index"
  3061. checksum = "213622a1460818959ac1181aaeb2dc9c7f63df720db7d788b3e24eacd1983e13"
  3062. dependencies = [
  3063. "prost",
  3064. ]
  3065. [[package]]
  3066. name = "protobuf"
  3067. version = "2.28.0"
  3068. source = "registry+https://github.com/rust-lang/crates.io-index"
  3069. checksum = "106dd99e98437432fed6519dedecfade6a06a73bb7b2a1e019fdd2bee5778d94"
  3070. [[package]]
  3071. name = "protobuf-codegen"
  3072. version = "2.28.0"
  3073. source = "registry+https://github.com/rust-lang/crates.io-index"
  3074. checksum = "033460afb75cf755fcfc16dfaed20b86468082a2ea24e05ac35ab4a099a017d6"
  3075. dependencies = [
  3076. "protobuf",
  3077. ]
  3078. [[package]]
  3079. name = "protoc"
  3080. version = "2.28.0"
  3081. source = "registry+https://github.com/rust-lang/crates.io-index"
  3082. checksum = "a0218039c514f9e14a5060742ecd50427f8ac4f85a6dc58f2ddb806e318c55ee"
  3083. dependencies = [
  3084. "log",
  3085. "which",
  3086. ]
  3087. [[package]]
  3088. name = "protoc-bin-vendored"
  3089. version = "3.0.0"
  3090. source = "registry+https://github.com/rust-lang/crates.io-index"
  3091. checksum = "005ca8623e5633e298ad1f917d8be0a44bcf406bf3cde3b80e63003e49a3f27d"
  3092. dependencies = [
  3093. "protoc-bin-vendored-linux-aarch_64",
  3094. "protoc-bin-vendored-linux-ppcle_64",
  3095. "protoc-bin-vendored-linux-x86_32",
  3096. "protoc-bin-vendored-linux-x86_64",
  3097. "protoc-bin-vendored-macos-x86_64",
  3098. "protoc-bin-vendored-win32",
  3099. ]
  3100. [[package]]
  3101. name = "protoc-bin-vendored-linux-aarch_64"
  3102. version = "3.0.0"
  3103. source = "registry+https://github.com/rust-lang/crates.io-index"
  3104. checksum = "8fb9fc9cce84c8694b6ea01cc6296617b288b703719b725b8c9c65f7c5874435"
  3105. [[package]]
  3106. name = "protoc-bin-vendored-linux-ppcle_64"
  3107. version = "3.0.0"
  3108. source = "registry+https://github.com/rust-lang/crates.io-index"
  3109. checksum = "02d2a07dcf7173a04d49974930ccbfb7fd4d74df30ecfc8762cf2f895a094516"
  3110. [[package]]
  3111. name = "protoc-bin-vendored-linux-x86_32"
  3112. version = "3.0.0"
  3113. source = "registry+https://github.com/rust-lang/crates.io-index"
  3114. checksum = "d54fef0b04fcacba64d1d80eed74a20356d96847da8497a59b0a0a436c9165b0"
  3115. [[package]]
  3116. name = "protoc-bin-vendored-linux-x86_64"
  3117. version = "3.0.0"
  3118. source = "registry+https://github.com/rust-lang/crates.io-index"
  3119. checksum = "b8782f2ce7d43a9a5c74ea4936f001e9e8442205c244f7a3d4286bd4c37bc924"
  3120. [[package]]
  3121. name = "protoc-bin-vendored-macos-x86_64"
  3122. version = "3.0.0"
  3123. source = "registry+https://github.com/rust-lang/crates.io-index"
  3124. checksum = "b5de656c7ee83f08e0ae5b81792ccfdc1d04e7876b1d9a38e6876a9e09e02537"
  3125. [[package]]
  3126. name = "protoc-bin-vendored-win32"
  3127. version = "3.0.0"
  3128. source = "registry+https://github.com/rust-lang/crates.io-index"
  3129. checksum = "9653c3ed92974e34c5a6e0a510864dab979760481714c172e0a34e437cb98804"
  3130. [[package]]
  3131. name = "protoc-rust"
  3132. version = "2.28.0"
  3133. source = "registry+https://github.com/rust-lang/crates.io-index"
  3134. checksum = "22f8a182bb17c485f20bdc4274a8c39000a61024cfe461c799b50fec77267838"
  3135. dependencies = [
  3136. "protobuf",
  3137. "protobuf-codegen",
  3138. "protoc",
  3139. "tempfile",
  3140. ]
  3141. [[package]]
  3142. name = "ptr_meta"
  3143. version = "0.1.4"
  3144. source = "registry+https://github.com/rust-lang/crates.io-index"
  3145. checksum = "0738ccf7ea06b608c10564b31debd4f5bc5e197fc8bfe088f68ae5ce81e7a4f1"
  3146. dependencies = [
  3147. "ptr_meta_derive",
  3148. ]
  3149. [[package]]
  3150. name = "ptr_meta_derive"
  3151. version = "0.1.4"
  3152. source = "registry+https://github.com/rust-lang/crates.io-index"
  3153. checksum = "16b845dbfca988fa33db069c0e230574d15a3088f147a87b64c7589eb662c9ac"
  3154. dependencies = [
  3155. "proc-macro2",
  3156. "quote",
  3157. "syn 1.0.109",
  3158. ]
  3159. [[package]]
  3160. name = "quickcheck"
  3161. version = "1.0.3"
  3162. source = "registry+https://github.com/rust-lang/crates.io-index"
  3163. checksum = "588f6378e4dd99458b60ec275b4477add41ce4fa9f64dcba6f15adccb19b50d6"
  3164. dependencies = [
  3165. "env_logger",
  3166. "log",
  3167. "rand 0.8.5",
  3168. ]
  3169. [[package]]
  3170. name = "quickcheck_macros"
  3171. version = "1.0.0"
  3172. source = "registry+https://github.com/rust-lang/crates.io-index"
  3173. checksum = "b22a693222d716a9587786f37ac3f6b4faedb5b80c23914e7303ff5a1d8016e9"
  3174. dependencies = [
  3175. "proc-macro2",
  3176. "quote",
  3177. "syn 1.0.109",
  3178. ]
  3179. [[package]]
  3180. name = "quote"
  3181. version = "1.0.32"
  3182. source = "registry+https://github.com/rust-lang/crates.io-index"
  3183. checksum = "50f3b39ccfb720540debaa0164757101c08ecb8d326b15358ce76a62c7e85965"
  3184. dependencies = [
  3185. "proc-macro2",
  3186. ]
  3187. [[package]]
  3188. name = "r2d2"
  3189. version = "0.8.10"
  3190. source = "registry+https://github.com/rust-lang/crates.io-index"
  3191. checksum = "51de85fb3fb6524929c8a2eb85e6b6d363de4e8c48f9e2c2eac4944abc181c93"
  3192. dependencies = [
  3193. "log",
  3194. "parking_lot 0.12.1",
  3195. "scheduled-thread-pool",
  3196. ]
  3197. [[package]]
  3198. name = "rand"
  3199. version = "0.4.6"
  3200. source = "registry+https://github.com/rust-lang/crates.io-index"
  3201. checksum = "552840b97013b1a26992c11eac34bdd778e464601a4c2054b5f0bff7c6761293"
  3202. dependencies = [
  3203. "fuchsia-cprng",
  3204. "libc",
  3205. "rand_core 0.3.1",
  3206. "rdrand",
  3207. "winapi",
  3208. ]
  3209. [[package]]
  3210. name = "rand"
  3211. version = "0.7.3"
  3212. source = "registry+https://github.com/rust-lang/crates.io-index"
  3213. checksum = "6a6b1679d49b24bbfe0c803429aa1874472f50d9b363131f0e89fc356b544d03"
  3214. dependencies = [
  3215. "getrandom 0.1.16",
  3216. "libc",
  3217. "rand_chacha 0.2.2",
  3218. "rand_core 0.5.1",
  3219. "rand_hc",
  3220. "rand_pcg",
  3221. ]
  3222. [[package]]
  3223. name = "rand"
  3224. version = "0.8.5"
  3225. source = "registry+https://github.com/rust-lang/crates.io-index"
  3226. checksum = "34af8d1a0e25924bc5b7c43c079c942339d8f0a8b57c39049bef581b46327404"
  3227. dependencies = [
  3228. "libc",
  3229. "rand_chacha 0.3.1",
  3230. "rand_core 0.6.4",
  3231. ]
  3232. [[package]]
  3233. name = "rand_chacha"
  3234. version = "0.2.2"
  3235. source = "registry+https://github.com/rust-lang/crates.io-index"
  3236. checksum = "f4c8ed856279c9737206bf725bf36935d8666ead7aa69b52be55af369d193402"
  3237. dependencies = [
  3238. "ppv-lite86",
  3239. "rand_core 0.5.1",
  3240. ]
  3241. [[package]]
  3242. name = "rand_chacha"
  3243. version = "0.3.1"
  3244. source = "registry+https://github.com/rust-lang/crates.io-index"
  3245. checksum = "e6c10a63a0fa32252be49d21e7709d4d4baf8d231c2dbce1eaa8141b9b127d88"
  3246. dependencies = [
  3247. "ppv-lite86",
  3248. "rand_core 0.6.4",
  3249. ]
  3250. [[package]]
  3251. name = "rand_core"
  3252. version = "0.3.1"
  3253. source = "registry+https://github.com/rust-lang/crates.io-index"
  3254. checksum = "7a6fdeb83b075e8266dcc8762c22776f6877a63111121f5f8c7411e5be7eed4b"
  3255. dependencies = [
  3256. "rand_core 0.4.2",
  3257. ]
  3258. [[package]]
  3259. name = "rand_core"
  3260. version = "0.4.2"
  3261. source = "registry+https://github.com/rust-lang/crates.io-index"
  3262. checksum = "9c33a3c44ca05fa6f1807d8e6743f3824e8509beca625669633be0acbdf509dc"
  3263. [[package]]
  3264. name = "rand_core"
  3265. version = "0.5.1"
  3266. source = "registry+https://github.com/rust-lang/crates.io-index"
  3267. checksum = "90bde5296fc891b0cef12a6d03ddccc162ce7b2aff54160af9338f8d40df6d19"
  3268. dependencies = [
  3269. "getrandom 0.1.16",
  3270. ]
  3271. [[package]]
  3272. name = "rand_core"
  3273. version = "0.6.4"
  3274. source = "registry+https://github.com/rust-lang/crates.io-index"
  3275. checksum = "ec0be4795e2f6a28069bec0b5ff3e2ac9bafc99e6a9a7dc3547996c5c816922c"
  3276. dependencies = [
  3277. "getrandom 0.2.9",
  3278. ]
  3279. [[package]]
  3280. name = "rand_hc"
  3281. version = "0.2.0"
  3282. source = "registry+https://github.com/rust-lang/crates.io-index"
  3283. checksum = "ca3129af7b92a17112d59ad498c6f81eaf463253766b90396d39ea7a39d6613c"
  3284. dependencies = [
  3285. "rand_core 0.5.1",
  3286. ]
  3287. [[package]]
  3288. name = "rand_pcg"
  3289. version = "0.2.1"
  3290. source = "registry+https://github.com/rust-lang/crates.io-index"
  3291. checksum = "16abd0c1b639e9eb4d7c50c0b8100b0d0f849be2349829c740fe8e6eb4816429"
  3292. dependencies = [
  3293. "rand_core 0.5.1",
  3294. ]
  3295. [[package]]
  3296. name = "rayon"
  3297. version = "1.7.0"
  3298. source = "registry+https://github.com/rust-lang/crates.io-index"
  3299. checksum = "1d2df5196e37bcc87abebc0053e20787d73847bb33134a69841207dd0a47f03b"
  3300. dependencies = [
  3301. "either",
  3302. "rayon-core",
  3303. ]
  3304. [[package]]
  3305. name = "rayon-core"
  3306. version = "1.11.0"
  3307. source = "registry+https://github.com/rust-lang/crates.io-index"
  3308. checksum = "4b8f95bd6966f5c87776639160a66bd8ab9895d9d4ab01ddba9fc60661aebe8d"
  3309. dependencies = [
  3310. "crossbeam-channel",
  3311. "crossbeam-deque",
  3312. "crossbeam-utils",
  3313. "num_cpus",
  3314. ]
  3315. [[package]]
  3316. name = "rdrand"
  3317. version = "0.4.0"
  3318. source = "registry+https://github.com/rust-lang/crates.io-index"
  3319. checksum = "678054eb77286b51581ba43620cc911abf02758c91f93f479767aed0f90458b2"
  3320. dependencies = [
  3321. "rand_core 0.3.1",
  3322. ]
  3323. [[package]]
  3324. name = "redox_syscall"
  3325. version = "0.1.57"
  3326. source = "registry+https://github.com/rust-lang/crates.io-index"
  3327. checksum = "41cc0f7e4d5d4544e8861606a285bb08d3e70712ccc7d2b84d7c0ccfaf4b05ce"
  3328. [[package]]
  3329. name = "redox_syscall"
  3330. version = "0.2.16"
  3331. source = "registry+https://github.com/rust-lang/crates.io-index"
  3332. checksum = "fb5a58c1855b4b6819d59012155603f0b22ad30cad752600aadfcb695265519a"
  3333. dependencies = [
  3334. "bitflags",
  3335. ]
  3336. [[package]]
  3337. name = "redox_syscall"
  3338. version = "0.3.5"
  3339. source = "registry+https://github.com/rust-lang/crates.io-index"
  3340. checksum = "567664f262709473930a4bf9e51bf2ebf3348f2e748ccc50dea20646858f8f29"
  3341. dependencies = [
  3342. "bitflags",
  3343. ]
  3344. [[package]]
  3345. name = "redox_users"
  3346. version = "0.4.3"
  3347. source = "registry+https://github.com/rust-lang/crates.io-index"
  3348. checksum = "b033d837a7cf162d7993aded9304e30a83213c648b6e389db233191f891e5c2b"
  3349. dependencies = [
  3350. "getrandom 0.2.9",
  3351. "redox_syscall 0.2.16",
  3352. "thiserror",
  3353. ]
  3354. [[package]]
  3355. name = "regex"
  3356. version = "1.7.3"
  3357. source = "registry+https://github.com/rust-lang/crates.io-index"
  3358. checksum = "8b1f693b24f6ac912f4893ef08244d70b6067480d2f1a46e950c9691e6749d1d"
  3359. dependencies = [
  3360. "aho-corasick",
  3361. "memchr",
  3362. "regex-syntax",
  3363. ]
  3364. [[package]]
  3365. name = "regex-automata"
  3366. version = "0.1.10"
  3367. source = "registry+https://github.com/rust-lang/crates.io-index"
  3368. checksum = "6c230d73fb8d8c1b9c0b3135c5142a8acee3a0558fb8db5cf1cb65f8d7862132"
  3369. dependencies = [
  3370. "regex-syntax",
  3371. ]
  3372. [[package]]
  3373. name = "regex-syntax"
  3374. version = "0.6.29"
  3375. source = "registry+https://github.com/rust-lang/crates.io-index"
  3376. checksum = "f162c6dd7b008981e4d40210aca20b4bd0f9b60ca9271061b07f78537722f2e1"
  3377. [[package]]
  3378. name = "remove_dir_all"
  3379. version = "0.5.3"
  3380. source = "registry+https://github.com/rust-lang/crates.io-index"
  3381. checksum = "3acd125665422973a33ac9d3dd2df85edad0f4ae9b00dafb1a05e43a9f5ef8e7"
  3382. dependencies = [
  3383. "winapi",
  3384. ]
  3385. [[package]]
  3386. name = "rend"
  3387. version = "0.4.0"
  3388. source = "registry+https://github.com/rust-lang/crates.io-index"
  3389. checksum = "581008d2099240d37fb08d77ad713bcaec2c4d89d50b5b21a8bb1996bbab68ab"
  3390. dependencies = [
  3391. "bytecheck",
  3392. ]
  3393. [[package]]
  3394. name = "reqwest"
  3395. version = "0.11.16"
  3396. source = "registry+https://github.com/rust-lang/crates.io-index"
  3397. checksum = "27b71749df584b7f4cac2c426c127a7c785a5106cc98f7a8feb044115f0fa254"
  3398. dependencies = [
  3399. "base64 0.21.2",
  3400. "bytes",
  3401. "encoding_rs",
  3402. "futures-core",
  3403. "futures-util",
  3404. "h2",
  3405. "http",
  3406. "http-body",
  3407. "hyper",
  3408. "hyper-rustls",
  3409. "hyper-tls",
  3410. "ipnet",
  3411. "js-sys",
  3412. "log",
  3413. "mime",
  3414. "mime_guess",
  3415. "native-tls",
  3416. "once_cell",
  3417. "percent-encoding",
  3418. "pin-project-lite",
  3419. "rustls",
  3420. "rustls-pemfile",
  3421. "serde",
  3422. "serde_json",
  3423. "serde_urlencoded",
  3424. "tokio",
  3425. "tokio-native-tls",
  3426. "tokio-rustls",
  3427. "tokio-util",
  3428. "tower-service",
  3429. "url",
  3430. "wasm-bindgen",
  3431. "wasm-bindgen-futures",
  3432. "wasm-streams",
  3433. "web-sys",
  3434. "webpki-roots",
  3435. "winreg",
  3436. ]
  3437. [[package]]
  3438. name = "ring"
  3439. version = "0.16.20"
  3440. source = "registry+https://github.com/rust-lang/crates.io-index"
  3441. checksum = "3053cf52e236a3ed746dfc745aa9cacf1b791d846bdaf412f60a8d7d6e17c8fc"
  3442. dependencies = [
  3443. "cc",
  3444. "libc",
  3445. "once_cell",
  3446. "spin",
  3447. "untrusted",
  3448. "web-sys",
  3449. "winapi",
  3450. ]
  3451. [[package]]
  3452. name = "rkyv"
  3453. version = "0.7.41"
  3454. source = "registry+https://github.com/rust-lang/crates.io-index"
  3455. checksum = "21499ed91807f07ae081880aabb2ccc0235e9d88011867d984525e9a4c3cfa3e"
  3456. dependencies = [
  3457. "bytecheck",
  3458. "hashbrown 0.12.3",
  3459. "ptr_meta",
  3460. "rend",
  3461. "rkyv_derive",
  3462. "seahash",
  3463. ]
  3464. [[package]]
  3465. name = "rkyv_derive"
  3466. version = "0.7.41"
  3467. source = "registry+https://github.com/rust-lang/crates.io-index"
  3468. checksum = "ac1c672430eb41556291981f45ca900a0239ad007242d1cb4b4167af842db666"
  3469. dependencies = [
  3470. "proc-macro2",
  3471. "quote",
  3472. "syn 1.0.109",
  3473. ]
  3474. [[package]]
  3475. name = "rocksdb"
  3476. version = "0.21.0"
  3477. source = "registry+https://github.com/rust-lang/crates.io-index"
  3478. checksum = "bb6f170a4041d50a0ce04b0d2e14916d6ca863ea2e422689a5b694395d299ffe"
  3479. dependencies = [
  3480. "libc",
  3481. "librocksdb-sys",
  3482. ]
  3483. [[package]]
  3484. name = "rusoto_credential"
  3485. version = "0.48.0"
  3486. source = "registry+https://github.com/rust-lang/crates.io-index"
  3487. checksum = "ee0a6c13db5aad6047b6a44ef023dbbc21a056b6dab5be3b79ce4283d5c02d05"
  3488. dependencies = [
  3489. "async-trait",
  3490. "chrono",
  3491. "dirs-next",
  3492. "futures",
  3493. "hyper",
  3494. "serde",
  3495. "serde_json",
  3496. "shlex",
  3497. "tokio",
  3498. "zeroize",
  3499. ]
  3500. [[package]]
  3501. name = "rust_decimal"
  3502. version = "1.29.1"
  3503. source = "registry+https://github.com/rust-lang/crates.io-index"
  3504. checksum = "26bd36b60561ee1fb5ec2817f198b6fd09fa571c897a5e86d1487cfc2b096dfc"
  3505. dependencies = [
  3506. "arrayvec 0.7.2",
  3507. "borsh",
  3508. "bytecheck",
  3509. "byteorder",
  3510. "bytes",
  3511. "num-traits",
  3512. "rand 0.8.5",
  3513. "rkyv",
  3514. "serde",
  3515. "serde_json",
  3516. ]
  3517. [[package]]
  3518. name = "rust_decimal_macros"
  3519. version = "1.29.1"
  3520. source = "registry+https://github.com/rust-lang/crates.io-index"
  3521. checksum = "0e773fd3da1ed42472fdf3cfdb4972948a555bc3d73f5e0bdb99d17e7b54c687"
  3522. dependencies = [
  3523. "quote",
  3524. "rust_decimal",
  3525. ]
  3526. [[package]]
  3527. name = "rustc-demangle"
  3528. version = "0.1.22"
  3529. source = "registry+https://github.com/rust-lang/crates.io-index"
  3530. checksum = "d4a36c42d1873f9a77c53bde094f9664d9891bc604a45b4798fd2c389ed12e5b"
  3531. [[package]]
  3532. name = "rustc-hash"
  3533. version = "1.1.0"
  3534. source = "registry+https://github.com/rust-lang/crates.io-index"
  3535. checksum = "08d43f7aa6b08d49f382cde6a7982047c3426db949b1424bc4b7ec9ae12c6ce2"
  3536. [[package]]
  3537. name = "rustix"
  3538. version = "0.37.11"
  3539. source = "registry+https://github.com/rust-lang/crates.io-index"
  3540. checksum = "85597d61f83914ddeba6a47b3b8ffe7365107221c2e557ed94426489fefb5f77"
  3541. dependencies = [
  3542. "bitflags",
  3543. "errno",
  3544. "io-lifetimes",
  3545. "libc",
  3546. "linux-raw-sys",
  3547. "windows-sys 0.48.0",
  3548. ]
  3549. [[package]]
  3550. name = "rustls"
  3551. version = "0.20.8"
  3552. source = "registry+https://github.com/rust-lang/crates.io-index"
  3553. checksum = "fff78fc74d175294f4e83b28343315ffcfb114b156f0185e9741cb5570f50e2f"
  3554. dependencies = [
  3555. "log",
  3556. "ring",
  3557. "sct",
  3558. "webpki",
  3559. ]
  3560. [[package]]
  3561. name = "rustls-pemfile"
  3562. version = "1.0.2"
  3563. source = "registry+https://github.com/rust-lang/crates.io-index"
  3564. checksum = "d194b56d58803a43635bdc398cd17e383d6f71f9182b9a192c127ca42494a59b"
  3565. dependencies = [
  3566. "base64 0.21.2",
  3567. ]
  3568. [[package]]
  3569. name = "rustversion"
  3570. version = "1.0.12"
  3571. source = "registry+https://github.com/rust-lang/crates.io-index"
  3572. checksum = "4f3208ce4d8448b3f3e7d168a73f5e0c43a61e32930de3bceeccedb388b6bf06"
  3573. [[package]]
  3574. name = "rusty-money"
  3575. version = "0.4.1"
  3576. source = "registry+https://github.com/rust-lang/crates.io-index"
  3577. checksum = "5b28f881005eac7ad8d46b6f075da5f322bd7f4f83a38720fc069694ddadd683"
  3578. dependencies = [
  3579. "rust_decimal",
  3580. "rust_decimal_macros",
  3581. ]
  3582. [[package]]
  3583. name = "ryu"
  3584. version = "1.0.13"
  3585. source = "registry+https://github.com/rust-lang/crates.io-index"
  3586. checksum = "f91339c0467de62360649f8d3e185ca8de4224ff281f66000de5eb2a77a79041"
  3587. [[package]]
  3588. name = "same-file"
  3589. version = "1.0.6"
  3590. source = "registry+https://github.com/rust-lang/crates.io-index"
  3591. checksum = "93fc1dc3aaa9bfed95e02e6eadabb4baf7e3078b0bd1b4d7b6b0b68378900502"
  3592. dependencies = [
  3593. "winapi-util",
  3594. ]
  3595. [[package]]
  3596. name = "schannel"
  3597. version = "0.1.21"
  3598. source = "registry+https://github.com/rust-lang/crates.io-index"
  3599. checksum = "713cfb06c7059f3588fb8044c0fad1d09e3c01d225e25b9220dbfdcf16dbb1b3"
  3600. dependencies = [
  3601. "windows-sys 0.42.0",
  3602. ]
  3603. [[package]]
  3604. name = "scheduled-thread-pool"
  3605. version = "0.2.7"
  3606. source = "registry+https://github.com/rust-lang/crates.io-index"
  3607. checksum = "3cbc66816425a074528352f5789333ecff06ca41b36b0b0efdfbb29edc391a19"
  3608. dependencies = [
  3609. "parking_lot 0.12.1",
  3610. ]
  3611. [[package]]
  3612. name = "scopeguard"
  3613. version = "1.1.0"
  3614. source = "registry+https://github.com/rust-lang/crates.io-index"
  3615. checksum = "d29ab0c6d3fc0ee92fe66e2d99f700eab17a8d57d1c1d3b748380fb20baa78cd"
  3616. [[package]]
  3617. name = "scratch"
  3618. version = "1.0.5"
  3619. source = "registry+https://github.com/rust-lang/crates.io-index"
  3620. checksum = "1792db035ce95be60c3f8853017b3999209281c24e2ba5bc8e59bf97a0c590c1"
  3621. [[package]]
  3622. name = "sct"
  3623. version = "0.7.0"
  3624. source = "registry+https://github.com/rust-lang/crates.io-index"
  3625. checksum = "d53dcdb7c9f8158937a7981b48accfd39a43af418591a5d008c7b22b5e1b7ca4"
  3626. dependencies = [
  3627. "ring",
  3628. "untrusted",
  3629. ]
  3630. [[package]]
  3631. name = "seahash"
  3632. version = "4.1.0"
  3633. source = "registry+https://github.com/rust-lang/crates.io-index"
  3634. checksum = "1c107b6f4780854c8b126e228ea8869f4d7b71260f962fefb57b996b8959ba6b"
  3635. [[package]]
  3636. name = "security-framework"
  3637. version = "2.8.2"
  3638. source = "registry+https://github.com/rust-lang/crates.io-index"
  3639. checksum = "a332be01508d814fed64bf28f798a146d73792121129962fdf335bb3c49a4254"
  3640. dependencies = [
  3641. "bitflags",
  3642. "core-foundation",
  3643. "core-foundation-sys",
  3644. "libc",
  3645. "security-framework-sys",
  3646. ]
  3647. [[package]]
  3648. name = "security-framework-sys"
  3649. version = "2.8.0"
  3650. source = "registry+https://github.com/rust-lang/crates.io-index"
  3651. checksum = "31c9bb296072e961fcbd8853511dd39c2d8be2deb1e17c6860b1d30732b323b4"
  3652. dependencies = [
  3653. "core-foundation-sys",
  3654. "libc",
  3655. ]
  3656. [[package]]
  3657. name = "serde"
  3658. version = "1.0.175"
  3659. source = "registry+https://github.com/rust-lang/crates.io-index"
  3660. checksum = "5d25439cd7397d044e2748a6fe2432b5e85db703d6d097bd014b3c0ad1ebff0b"
  3661. dependencies = [
  3662. "serde_derive",
  3663. ]
  3664. [[package]]
  3665. name = "serde-aux"
  3666. version = "4.2.0"
  3667. source = "registry+https://github.com/rust-lang/crates.io-index"
  3668. checksum = "c3dfe1b7eb6f9dcf011bd6fad169cdeaae75eda0d61b1a99a3f015b41b0cae39"
  3669. dependencies = [
  3670. "chrono",
  3671. "serde",
  3672. "serde_json",
  3673. ]
  3674. [[package]]
  3675. name = "serde_derive"
  3676. version = "1.0.175"
  3677. source = "registry+https://github.com/rust-lang/crates.io-index"
  3678. checksum = "b23f7ade6f110613c0d63858ddb8b94c1041f550eab58a16b371bdf2c9c80ab4"
  3679. dependencies = [
  3680. "proc-macro2",
  3681. "quote",
  3682. "syn 2.0.27",
  3683. ]
  3684. [[package]]
  3685. name = "serde_json"
  3686. version = "1.0.104"
  3687. source = "registry+https://github.com/rust-lang/crates.io-index"
  3688. checksum = "076066c5f1078eac5b722a31827a8832fe108bed65dfa75e233c89f8206e976c"
  3689. dependencies = [
  3690. "itoa",
  3691. "ryu",
  3692. "serde",
  3693. ]
  3694. [[package]]
  3695. name = "serde_repr"
  3696. version = "0.1.12"
  3697. source = "registry+https://github.com/rust-lang/crates.io-index"
  3698. checksum = "bcec881020c684085e55a25f7fd888954d56609ef363479dc5a1305eb0d40cab"
  3699. dependencies = [
  3700. "proc-macro2",
  3701. "quote",
  3702. "syn 2.0.27",
  3703. ]
  3704. [[package]]
  3705. name = "serde_urlencoded"
  3706. version = "0.7.1"
  3707. source = "registry+https://github.com/rust-lang/crates.io-index"
  3708. checksum = "d3491c14715ca2294c4d6a88f15e84739788c1d030eed8c110436aafdaa2f3fd"
  3709. dependencies = [
  3710. "form_urlencoded",
  3711. "itoa",
  3712. "ryu",
  3713. "serde",
  3714. ]
  3715. [[package]]
  3716. name = "sha1"
  3717. version = "0.10.5"
  3718. source = "registry+https://github.com/rust-lang/crates.io-index"
  3719. checksum = "f04293dc80c3993519f2d7f6f511707ee7094fe0c6d3406feb330cdb3540eba3"
  3720. dependencies = [
  3721. "cfg-if",
  3722. "cpufeatures",
  3723. "digest",
  3724. ]
  3725. [[package]]
  3726. name = "sha1_smol"
  3727. version = "1.0.0"
  3728. source = "registry+https://github.com/rust-lang/crates.io-index"
  3729. checksum = "ae1a47186c03a32177042e55dbc5fd5aee900b8e0069a8d70fba96a9375cd012"
  3730. [[package]]
  3731. name = "sha2"
  3732. version = "0.10.7"
  3733. source = "registry+https://github.com/rust-lang/crates.io-index"
  3734. checksum = "479fb9d862239e610720565ca91403019f2f00410f1864c5aa7479b950a76ed8"
  3735. dependencies = [
  3736. "cfg-if",
  3737. "cpufeatures",
  3738. "digest",
  3739. ]
  3740. [[package]]
  3741. name = "sharded-slab"
  3742. version = "0.1.4"
  3743. source = "registry+https://github.com/rust-lang/crates.io-index"
  3744. checksum = "900fba806f70c630b0a382d0d825e17a0f19fcd059a2ade1ff237bcddf446b31"
  3745. dependencies = [
  3746. "lazy_static",
  3747. ]
  3748. [[package]]
  3749. name = "shlex"
  3750. version = "1.1.0"
  3751. source = "registry+https://github.com/rust-lang/crates.io-index"
  3752. checksum = "43b2853a4d09f215c24cc5489c992ce46052d359b5109343cbafbf26bc62f8a3"
  3753. [[package]]
  3754. name = "signal-hook-registry"
  3755. version = "1.4.1"
  3756. source = "registry+https://github.com/rust-lang/crates.io-index"
  3757. checksum = "d8229b473baa5980ac72ef434c4415e70c4b5e71b423043adb4ba059f89c99a1"
  3758. dependencies = [
  3759. "libc",
  3760. ]
  3761. [[package]]
  3762. name = "simdutf8"
  3763. version = "0.1.4"
  3764. source = "registry+https://github.com/rust-lang/crates.io-index"
  3765. checksum = "f27f6278552951f1f2b8cf9da965d10969b2efdea95a6ec47987ab46edfe263a"
  3766. [[package]]
  3767. name = "similar"
  3768. version = "1.3.0"
  3769. source = "registry+https://github.com/rust-lang/crates.io-index"
  3770. checksum = "1ad1d488a557b235fc46dae55512ffbfc429d2482b08b4d9435ab07384ca8aec"
  3771. [[package]]
  3772. name = "similar"
  3773. version = "2.2.1"
  3774. source = "registry+https://github.com/rust-lang/crates.io-index"
  3775. checksum = "420acb44afdae038210c99e69aae24109f32f15500aa708e81d46c9f29d55fcf"
  3776. [[package]]
  3777. name = "siphasher"
  3778. version = "0.3.10"
  3779. source = "registry+https://github.com/rust-lang/crates.io-index"
  3780. checksum = "7bd3e3206899af3f8b12af284fafc038cc1dc2b41d1b89dd17297221c5d225de"
  3781. [[package]]
  3782. name = "slab"
  3783. version = "0.4.8"
  3784. source = "registry+https://github.com/rust-lang/crates.io-index"
  3785. checksum = "6528351c9bc8ab22353f9d776db39a20288e8d6c37ef8cfe3317cf875eecfc2d"
  3786. dependencies = [
  3787. "autocfg",
  3788. ]
  3789. [[package]]
  3790. name = "sled"
  3791. version = "0.34.7"
  3792. source = "registry+https://github.com/rust-lang/crates.io-index"
  3793. checksum = "7f96b4737c2ce5987354855aed3797279def4ebf734436c6aa4552cf8e169935"
  3794. dependencies = [
  3795. "crc32fast",
  3796. "crossbeam-epoch",
  3797. "crossbeam-utils",
  3798. "fs2",
  3799. "fxhash",
  3800. "libc",
  3801. "log",
  3802. "parking_lot 0.11.2",
  3803. ]
  3804. [[package]]
  3805. name = "slug"
  3806. version = "0.1.4"
  3807. source = "registry+https://github.com/rust-lang/crates.io-index"
  3808. checksum = "b3bc762e6a4b6c6fcaade73e77f9ebc6991b676f88bb2358bddb56560f073373"
  3809. dependencies = [
  3810. "deunicode",
  3811. ]
  3812. [[package]]
  3813. name = "smallstr"
  3814. version = "0.2.0"
  3815. source = "registry+https://github.com/rust-lang/crates.io-index"
  3816. checksum = "1e922794d168678729ffc7e07182721a14219c65814e66e91b839a272fe5ae4f"
  3817. dependencies = [
  3818. "smallvec",
  3819. ]
  3820. [[package]]
  3821. name = "smallvec"
  3822. version = "1.10.0"
  3823. source = "registry+https://github.com/rust-lang/crates.io-index"
  3824. checksum = "a507befe795404456341dfab10cef66ead4c041f62b8b11bbb92bffe5d0953e0"
  3825. [[package]]
  3826. name = "socket2"
  3827. version = "0.4.9"
  3828. source = "registry+https://github.com/rust-lang/crates.io-index"
  3829. checksum = "64a4a911eed85daf18834cfaa86a79b7d266ff93ff5ba14005426219480ed662"
  3830. dependencies = [
  3831. "libc",
  3832. "winapi",
  3833. ]
  3834. [[package]]
  3835. name = "socket2"
  3836. version = "0.5.3"
  3837. source = "registry+https://github.com/rust-lang/crates.io-index"
  3838. checksum = "2538b18701741680e0322a2302176d3253a35388e2e62f172f64f4f16605f877"
  3839. dependencies = [
  3840. "libc",
  3841. "windows-sys 0.48.0",
  3842. ]
  3843. [[package]]
  3844. name = "spin"
  3845. version = "0.5.2"
  3846. source = "registry+https://github.com/rust-lang/crates.io-index"
  3847. checksum = "6e63cff320ae2c57904679ba7cb63280a3dc4613885beafb148ee7bf9aa9042d"
  3848. [[package]]
  3849. name = "static_assertions"
  3850. version = "1.1.0"
  3851. source = "registry+https://github.com/rust-lang/crates.io-index"
  3852. checksum = "a2eb9349b6444b326872e140eb1cf5e7c522154d69e7a0ffb0fb81c06b37543f"
  3853. [[package]]
  3854. name = "stringprep"
  3855. version = "0.1.2"
  3856. source = "registry+https://github.com/rust-lang/crates.io-index"
  3857. checksum = "8ee348cb74b87454fff4b551cbf727025810a004f88aeacae7f85b87f4e9a1c1"
  3858. dependencies = [
  3859. "unicode-bidi",
  3860. "unicode-normalization",
  3861. ]
  3862. [[package]]
  3863. name = "strum"
  3864. version = "0.25.0"
  3865. source = "registry+https://github.com/rust-lang/crates.io-index"
  3866. checksum = "290d54ea6f91c969195bdbcd7442c8c2a2ba87da8bf60a7ee86a235d4bc1e125"
  3867. [[package]]
  3868. name = "strum_macros"
  3869. version = "0.21.1"
  3870. source = "registry+https://github.com/rust-lang/crates.io-index"
  3871. checksum = "d06aaeeee809dbc59eb4556183dd927df67db1540de5be8d3ec0b6636358a5ec"
  3872. dependencies = [
  3873. "heck 0.3.3",
  3874. "proc-macro2",
  3875. "quote",
  3876. "syn 1.0.109",
  3877. ]
  3878. [[package]]
  3879. name = "strum_macros"
  3880. version = "0.25.2"
  3881. source = "registry+https://github.com/rust-lang/crates.io-index"
  3882. checksum = "ad8d03b598d3d0fff69bf533ee3ef19b8eeb342729596df84bcc7e1f96ec4059"
  3883. dependencies = [
  3884. "heck 0.4.1",
  3885. "proc-macro2",
  3886. "quote",
  3887. "rustversion",
  3888. "syn 2.0.27",
  3889. ]
  3890. [[package]]
  3891. name = "subtle"
  3892. version = "2.4.1"
  3893. source = "registry+https://github.com/rust-lang/crates.io-index"
  3894. checksum = "6bdef32e8150c2a081110b42772ffe7d7c9032b606bc226c8260fd97e0976601"
  3895. [[package]]
  3896. name = "syn"
  3897. version = "1.0.109"
  3898. source = "registry+https://github.com/rust-lang/crates.io-index"
  3899. checksum = "72b64191b275b66ffe2469e8af2c1cfe3bafa67b529ead792a6d0160888b4237"
  3900. dependencies = [
  3901. "proc-macro2",
  3902. "quote",
  3903. "unicode-ident",
  3904. ]
  3905. [[package]]
  3906. name = "syn"
  3907. version = "2.0.27"
  3908. source = "registry+https://github.com/rust-lang/crates.io-index"
  3909. checksum = "b60f673f44a8255b9c8c657daf66a596d435f2da81a555b06dc644d080ba45e0"
  3910. dependencies = [
  3911. "proc-macro2",
  3912. "quote",
  3913. "unicode-ident",
  3914. ]
  3915. [[package]]
  3916. name = "sync_wrapper"
  3917. version = "0.1.2"
  3918. source = "registry+https://github.com/rust-lang/crates.io-index"
  3919. checksum = "2047c6ded9c721764247e62cd3b03c09ffc529b2ba5b10ec482ae507a4a70160"
  3920. [[package]]
  3921. name = "tempdir"
  3922. version = "0.3.7"
  3923. source = "registry+https://github.com/rust-lang/crates.io-index"
  3924. checksum = "15f2b5fb00ccdf689e0149d1b1b3c03fead81c2b37735d812fa8bddbbf41b6d8"
  3925. dependencies = [
  3926. "rand 0.4.6",
  3927. "remove_dir_all",
  3928. ]
  3929. [[package]]
  3930. name = "tempfile"
  3931. version = "3.5.0"
  3932. source = "registry+https://github.com/rust-lang/crates.io-index"
  3933. checksum = "b9fbec84f381d5795b08656e4912bec604d162bff9291d6189a78f4c8ab87998"
  3934. dependencies = [
  3935. "cfg-if",
  3936. "fastrand",
  3937. "redox_syscall 0.3.5",
  3938. "rustix",
  3939. "windows-sys 0.45.0",
  3940. ]
  3941. [[package]]
  3942. name = "tera"
  3943. version = "1.18.1"
  3944. source = "registry+https://github.com/rust-lang/crates.io-index"
  3945. checksum = "95a665751302f22a03c56721e23094e4dc22b04a80f381e6737a07bf7a7c70c0"
  3946. dependencies = [
  3947. "chrono",
  3948. "chrono-tz 0.6.1",
  3949. "globwalk",
  3950. "humansize",
  3951. "lazy_static",
  3952. "percent-encoding",
  3953. "pest",
  3954. "pest_derive",
  3955. "rand 0.8.5",
  3956. "regex",
  3957. "serde",
  3958. "serde_json",
  3959. "slug",
  3960. "thread_local",
  3961. "unic-segment",
  3962. ]
  3963. [[package]]
  3964. name = "termcolor"
  3965. version = "1.2.0"
  3966. source = "registry+https://github.com/rust-lang/crates.io-index"
  3967. checksum = "be55cf8942feac5c765c2c993422806843c9a9a45d4d5c407ad6dd2ea95eb9b6"
  3968. dependencies = [
  3969. "winapi-util",
  3970. ]
  3971. [[package]]
  3972. name = "terminal_size"
  3973. version = "0.1.17"
  3974. source = "registry+https://github.com/rust-lang/crates.io-index"
  3975. checksum = "633c1a546cee861a1a6d0dc69ebeca693bf4296661ba7852b9d21d159e0506df"
  3976. dependencies = [
  3977. "libc",
  3978. "winapi",
  3979. ]
  3980. [[package]]
  3981. name = "thiserror"
  3982. version = "1.0.40"
  3983. source = "registry+https://github.com/rust-lang/crates.io-index"
  3984. checksum = "978c9a314bd8dc99be594bc3c175faaa9794be04a5a5e153caba6915336cebac"
  3985. dependencies = [
  3986. "thiserror-impl",
  3987. ]
  3988. [[package]]
  3989. name = "thiserror-impl"
  3990. version = "1.0.40"
  3991. source = "registry+https://github.com/rust-lang/crates.io-index"
  3992. checksum = "f9456a42c5b0d803c8cd86e73dd7cc9edd429499f37a3550d286d5e86720569f"
  3993. dependencies = [
  3994. "proc-macro2",
  3995. "quote",
  3996. "syn 2.0.27",
  3997. ]
  3998. [[package]]
  3999. name = "thread-id"
  4000. version = "3.3.0"
  4001. source = "registry+https://github.com/rust-lang/crates.io-index"
  4002. checksum = "c7fbf4c9d56b320106cd64fd024dadfa0be7cb4706725fc44a7d7ce952d820c1"
  4003. dependencies = [
  4004. "libc",
  4005. "redox_syscall 0.1.57",
  4006. "winapi",
  4007. ]
  4008. [[package]]
  4009. name = "thread_local"
  4010. version = "1.1.4"
  4011. source = "registry+https://github.com/rust-lang/crates.io-index"
  4012. checksum = "5516c27b78311c50bf42c071425c560ac799b11c30b31f87e3081965fe5e0180"
  4013. dependencies = [
  4014. "once_cell",
  4015. ]
  4016. [[package]]
  4017. name = "time"
  4018. version = "0.1.45"
  4019. source = "registry+https://github.com/rust-lang/crates.io-index"
  4020. checksum = "1b797afad3f312d1c66a56d11d0316f916356d11bd158fbc6ca6389ff6bf805a"
  4021. dependencies = [
  4022. "libc",
  4023. "wasi 0.10.0+wasi-snapshot-preview1",
  4024. "winapi",
  4025. ]
  4026. [[package]]
  4027. name = "time"
  4028. version = "0.3.21"
  4029. source = "registry+https://github.com/rust-lang/crates.io-index"
  4030. checksum = "8f3403384eaacbca9923fa06940178ac13e4edb725486d70e8e15881d0c836cc"
  4031. dependencies = [
  4032. "serde",
  4033. "time-core",
  4034. ]
  4035. [[package]]
  4036. name = "time-core"
  4037. version = "0.1.1"
  4038. source = "registry+https://github.com/rust-lang/crates.io-index"
  4039. checksum = "7300fbefb4dadc1af235a9cef3737cea692a9d97e1b9cbcd4ebdae6f8868e6fb"
  4040. [[package]]
  4041. name = "tinyvec"
  4042. version = "1.6.0"
  4043. source = "registry+https://github.com/rust-lang/crates.io-index"
  4044. checksum = "87cc5ceb3875bb20c2890005a4e226a4651264a5c75edb2421b52861a0a0cb50"
  4045. dependencies = [
  4046. "tinyvec_macros",
  4047. ]
  4048. [[package]]
  4049. name = "tinyvec_macros"
  4050. version = "0.1.1"
  4051. source = "registry+https://github.com/rust-lang/crates.io-index"
  4052. checksum = "1f3ccbac311fea05f86f61904b462b55fb3df8837a366dfc601a0161d0532f20"
  4053. [[package]]
  4054. name = "tokio"
  4055. version = "1.27.0"
  4056. source = "registry+https://github.com/rust-lang/crates.io-index"
  4057. checksum = "d0de47a4eecbe11f498978a9b29d792f0d2692d1dd003650c24c76510e3bc001"
  4058. dependencies = [
  4059. "autocfg",
  4060. "bytes",
  4061. "libc",
  4062. "mio",
  4063. "num_cpus",
  4064. "parking_lot 0.12.1",
  4065. "pin-project-lite",
  4066. "signal-hook-registry",
  4067. "socket2 0.4.9",
  4068. "tokio-macros",
  4069. "tracing",
  4070. "windows-sys 0.45.0",
  4071. ]
  4072. [[package]]
  4073. name = "tokio-io-timeout"
  4074. version = "1.2.0"
  4075. source = "registry+https://github.com/rust-lang/crates.io-index"
  4076. checksum = "30b74022ada614a1b4834de765f9bb43877f910cc8ce4be40e89042c9223a8bf"
  4077. dependencies = [
  4078. "pin-project-lite",
  4079. "tokio",
  4080. ]
  4081. [[package]]
  4082. name = "tokio-macros"
  4083. version = "2.0.0"
  4084. source = "registry+https://github.com/rust-lang/crates.io-index"
  4085. checksum = "61a573bdc87985e9d6ddeed1b3d864e8a302c847e40d647746df2f1de209d1ce"
  4086. dependencies = [
  4087. "proc-macro2",
  4088. "quote",
  4089. "syn 2.0.27",
  4090. ]
  4091. [[package]]
  4092. name = "tokio-native-tls"
  4093. version = "0.3.1"
  4094. source = "registry+https://github.com/rust-lang/crates.io-index"
  4095. checksum = "bbae76ab933c85776efabc971569dd6119c580d8f5d448769dec1764bf796ef2"
  4096. dependencies = [
  4097. "native-tls",
  4098. "tokio",
  4099. ]
  4100. [[package]]
  4101. name = "tokio-postgres"
  4102. version = "0.7.8"
  4103. source = "registry+https://github.com/rust-lang/crates.io-index"
  4104. checksum = "6e89f6234aa8fd43779746012fcf53603cdb91fdd8399aa0de868c2d56b6dde1"
  4105. dependencies = [
  4106. "async-trait",
  4107. "byteorder",
  4108. "bytes",
  4109. "fallible-iterator",
  4110. "futures-channel",
  4111. "futures-util",
  4112. "log",
  4113. "parking_lot 0.12.1",
  4114. "percent-encoding",
  4115. "phf 0.11.1",
  4116. "pin-project-lite",
  4117. "postgres-protocol",
  4118. "postgres-types",
  4119. "socket2 0.5.3",
  4120. "tokio",
  4121. "tokio-util",
  4122. ]
  4123. [[package]]
  4124. name = "tokio-retry"
  4125. version = "0.3.0"
  4126. source = "registry+https://github.com/rust-lang/crates.io-index"
  4127. checksum = "7f57eb36ecbe0fc510036adff84824dd3c24bb781e21bfa67b69d556aa85214f"
  4128. dependencies = [
  4129. "pin-project",
  4130. "rand 0.8.5",
  4131. "tokio",
  4132. ]
  4133. [[package]]
  4134. name = "tokio-rustls"
  4135. version = "0.23.4"
  4136. source = "registry+https://github.com/rust-lang/crates.io-index"
  4137. checksum = "c43ee83903113e03984cb9e5cebe6c04a5116269e900e3ddba8f068a62adda59"
  4138. dependencies = [
  4139. "rustls",
  4140. "tokio",
  4141. "webpki",
  4142. ]
  4143. [[package]]
  4144. name = "tokio-stream"
  4145. version = "0.1.14"
  4146. source = "registry+https://github.com/rust-lang/crates.io-index"
  4147. checksum = "397c988d37662c7dda6d2208364a706264bf3d6138b11d436cbac0ad38832842"
  4148. dependencies = [
  4149. "futures-core",
  4150. "pin-project-lite",
  4151. "tokio",
  4152. "tokio-util",
  4153. ]
  4154. [[package]]
  4155. name = "tokio-tungstenite"
  4156. version = "0.18.0"
  4157. source = "registry+https://github.com/rust-lang/crates.io-index"
  4158. checksum = "54319c93411147bced34cb5609a80e0a8e44c5999c93903a81cd866630ec0bfd"
  4159. dependencies = [
  4160. "futures-util",
  4161. "log",
  4162. "tokio",
  4163. "tungstenite",
  4164. ]
  4165. [[package]]
  4166. name = "tokio-util"
  4167. version = "0.7.7"
  4168. source = "registry+https://github.com/rust-lang/crates.io-index"
  4169. checksum = "5427d89453009325de0d8f342c9490009f76e999cb7672d77e46267448f7e6b2"
  4170. dependencies = [
  4171. "bytes",
  4172. "futures-core",
  4173. "futures-sink",
  4174. "pin-project-lite",
  4175. "tokio",
  4176. "tracing",
  4177. ]
  4178. [[package]]
  4179. name = "toml"
  4180. version = "0.5.11"
  4181. source = "registry+https://github.com/rust-lang/crates.io-index"
  4182. checksum = "f4f7f0dd8d50a853a531c426359045b1998f04219d88799810762cd4ad314234"
  4183. dependencies = [
  4184. "serde",
  4185. ]
  4186. [[package]]
  4187. name = "tonic"
  4188. version = "0.8.3"
  4189. source = "registry+https://github.com/rust-lang/crates.io-index"
  4190. checksum = "8f219fad3b929bef19b1f86fbc0358d35daed8f2cac972037ac0dc10bbb8d5fb"
  4191. dependencies = [
  4192. "async-stream",
  4193. "async-trait",
  4194. "axum",
  4195. "base64 0.13.1",
  4196. "bytes",
  4197. "futures-core",
  4198. "futures-util",
  4199. "h2",
  4200. "http",
  4201. "http-body",
  4202. "hyper",
  4203. "hyper-timeout",
  4204. "percent-encoding",
  4205. "pin-project",
  4206. "prost",
  4207. "prost-derive",
  4208. "tokio",
  4209. "tokio-stream",
  4210. "tokio-util",
  4211. "tower",
  4212. "tower-layer",
  4213. "tower-service",
  4214. "tracing",
  4215. "tracing-futures",
  4216. ]
  4217. [[package]]
  4218. name = "tower"
  4219. version = "0.4.13"
  4220. source = "registry+https://github.com/rust-lang/crates.io-index"
  4221. checksum = "b8fa9be0de6cf49e536ce1851f987bd21a43b771b09473c3549a6c853db37c1c"
  4222. dependencies = [
  4223. "futures-core",
  4224. "futures-util",
  4225. "indexmap",
  4226. "pin-project",
  4227. "pin-project-lite",
  4228. "rand 0.8.5",
  4229. "slab",
  4230. "tokio",
  4231. "tokio-util",
  4232. "tower-layer",
  4233. "tower-service",
  4234. "tracing",
  4235. ]
  4236. [[package]]
  4237. name = "tower-layer"
  4238. version = "0.3.2"
  4239. source = "registry+https://github.com/rust-lang/crates.io-index"
  4240. checksum = "c20c8dbed6283a09604c3e69b4b7eeb54e298b8a600d4d5ecb5ad39de609f1d0"
  4241. [[package]]
  4242. name = "tower-service"
  4243. version = "0.3.2"
  4244. source = "registry+https://github.com/rust-lang/crates.io-index"
  4245. checksum = "b6bc1c9ce2b5135ac7f93c72918fc37feb872bdc6a5533a8b85eb4b86bfdae52"
  4246. [[package]]
  4247. name = "tracing"
  4248. version = "0.1.37"
  4249. source = "registry+https://github.com/rust-lang/crates.io-index"
  4250. checksum = "8ce8c33a8d48bd45d624a6e523445fd21ec13d3653cd51f681abf67418f54eb8"
  4251. dependencies = [
  4252. "cfg-if",
  4253. "log",
  4254. "pin-project-lite",
  4255. "tracing-attributes",
  4256. "tracing-core",
  4257. ]
  4258. [[package]]
  4259. name = "tracing-appender"
  4260. version = "0.1.2"
  4261. source = "registry+https://github.com/rust-lang/crates.io-index"
  4262. checksum = "9965507e507f12c8901432a33e31131222abac31edd90cabbcf85cf544b7127a"
  4263. dependencies = [
  4264. "chrono",
  4265. "crossbeam-channel",
  4266. "tracing-subscriber 0.2.25",
  4267. ]
  4268. [[package]]
  4269. name = "tracing-attributes"
  4270. version = "0.1.23"
  4271. source = "registry+https://github.com/rust-lang/crates.io-index"
  4272. checksum = "4017f8f45139870ca7e672686113917c71c7a6e02d4924eda67186083c03081a"
  4273. dependencies = [
  4274. "proc-macro2",
  4275. "quote",
  4276. "syn 1.0.109",
  4277. ]
  4278. [[package]]
  4279. name = "tracing-bunyan-formatter"
  4280. version = "0.2.6"
  4281. source = "registry+https://github.com/rust-lang/crates.io-index"
  4282. checksum = "c408910c9b7eabc0215fe2b4a89f8ec95581a91cea1f7619f7c78caf14cbc2a1"
  4283. dependencies = [
  4284. "chrono",
  4285. "gethostname",
  4286. "log",
  4287. "serde",
  4288. "serde_json",
  4289. "tracing",
  4290. "tracing-core",
  4291. "tracing-log",
  4292. "tracing-subscriber 0.2.25",
  4293. ]
  4294. [[package]]
  4295. name = "tracing-core"
  4296. version = "0.1.30"
  4297. source = "registry+https://github.com/rust-lang/crates.io-index"
  4298. checksum = "24eb03ba0eab1fd845050058ce5e616558e8f8d8fca633e6b163fe25c797213a"
  4299. dependencies = [
  4300. "once_cell",
  4301. "valuable",
  4302. ]
  4303. [[package]]
  4304. name = "tracing-futures"
  4305. version = "0.2.5"
  4306. source = "registry+https://github.com/rust-lang/crates.io-index"
  4307. checksum = "97d095ae15e245a057c8e8451bab9b3ee1e1f68e9ba2b4fbc18d0ac5237835f2"
  4308. dependencies = [
  4309. "pin-project",
  4310. "tracing",
  4311. ]
  4312. [[package]]
  4313. name = "tracing-log"
  4314. version = "0.1.3"
  4315. source = "registry+https://github.com/rust-lang/crates.io-index"
  4316. checksum = "78ddad33d2d10b1ed7eb9d1f518a5674713876e97e5bb9b7345a7984fbb4f922"
  4317. dependencies = [
  4318. "lazy_static",
  4319. "log",
  4320. "tracing-core",
  4321. ]
  4322. [[package]]
  4323. name = "tracing-serde"
  4324. version = "0.1.3"
  4325. source = "registry+https://github.com/rust-lang/crates.io-index"
  4326. checksum = "bc6b213177105856957181934e4920de57730fc69bf42c37ee5bb664d406d9e1"
  4327. dependencies = [
  4328. "serde",
  4329. "tracing-core",
  4330. ]
  4331. [[package]]
  4332. name = "tracing-subscriber"
  4333. version = "0.2.25"
  4334. source = "registry+https://github.com/rust-lang/crates.io-index"
  4335. checksum = "0e0d2eaa99c3c2e41547cfa109e910a68ea03823cccad4a0525dcbc9b01e8c71"
  4336. dependencies = [
  4337. "ansi_term",
  4338. "chrono",
  4339. "lazy_static",
  4340. "matchers 0.0.1",
  4341. "regex",
  4342. "serde",
  4343. "serde_json",
  4344. "sharded-slab",
  4345. "smallvec",
  4346. "thread_local",
  4347. "tracing",
  4348. "tracing-core",
  4349. "tracing-log",
  4350. "tracing-serde",
  4351. ]
  4352. [[package]]
  4353. name = "tracing-subscriber"
  4354. version = "0.3.16"
  4355. source = "registry+https://github.com/rust-lang/crates.io-index"
  4356. checksum = "a6176eae26dd70d0c919749377897b54a9276bd7061339665dd68777926b5a70"
  4357. dependencies = [
  4358. "matchers 0.1.0",
  4359. "nu-ansi-term",
  4360. "once_cell",
  4361. "regex",
  4362. "sharded-slab",
  4363. "smallvec",
  4364. "thread_local",
  4365. "tracing",
  4366. "tracing-core",
  4367. "tracing-log",
  4368. ]
  4369. [[package]]
  4370. name = "try-lock"
  4371. version = "0.2.4"
  4372. source = "registry+https://github.com/rust-lang/crates.io-index"
  4373. checksum = "3528ecfd12c466c6f163363caf2d02a71161dd5e1cc6ae7b34207ea2d42d81ed"
  4374. [[package]]
  4375. name = "tungstenite"
  4376. version = "0.18.0"
  4377. source = "registry+https://github.com/rust-lang/crates.io-index"
  4378. checksum = "30ee6ab729cd4cf0fd55218530c4522ed30b7b6081752839b68fcec8d0960788"
  4379. dependencies = [
  4380. "base64 0.13.1",
  4381. "byteorder",
  4382. "bytes",
  4383. "http",
  4384. "httparse",
  4385. "log",
  4386. "rand 0.8.5",
  4387. "sha1",
  4388. "thiserror",
  4389. "url",
  4390. "utf-8",
  4391. ]
  4392. [[package]]
  4393. name = "typenum"
  4394. version = "1.16.0"
  4395. source = "registry+https://github.com/rust-lang/crates.io-index"
  4396. checksum = "497961ef93d974e23eb6f433eb5fe1b7930b659f06d12dec6fc44a8f554c0bba"
  4397. [[package]]
  4398. name = "ucd-trie"
  4399. version = "0.1.5"
  4400. source = "registry+https://github.com/rust-lang/crates.io-index"
  4401. checksum = "9e79c4d996edb816c91e4308506774452e55e95c3c9de07b6729e17e15a5ef81"
  4402. [[package]]
  4403. name = "uncased"
  4404. version = "0.9.7"
  4405. source = "registry+https://github.com/rust-lang/crates.io-index"
  4406. checksum = "09b01702b0fd0b3fadcf98e098780badda8742d4f4a7676615cad90e8ac73622"
  4407. dependencies = [
  4408. "version_check",
  4409. ]
  4410. [[package]]
  4411. name = "unic-char-property"
  4412. version = "0.9.0"
  4413. source = "registry+https://github.com/rust-lang/crates.io-index"
  4414. checksum = "a8c57a407d9b6fa02b4795eb81c5b6652060a15a7903ea981f3d723e6c0be221"
  4415. dependencies = [
  4416. "unic-char-range",
  4417. ]
  4418. [[package]]
  4419. name = "unic-char-range"
  4420. version = "0.9.0"
  4421. source = "registry+https://github.com/rust-lang/crates.io-index"
  4422. checksum = "0398022d5f700414f6b899e10b8348231abf9173fa93144cbc1a43b9793c1fbc"
  4423. [[package]]
  4424. name = "unic-common"
  4425. version = "0.9.0"
  4426. source = "registry+https://github.com/rust-lang/crates.io-index"
  4427. checksum = "80d7ff825a6a654ee85a63e80f92f054f904f21e7d12da4e22f9834a4aaa35bc"
  4428. [[package]]
  4429. name = "unic-segment"
  4430. version = "0.9.0"
  4431. source = "registry+https://github.com/rust-lang/crates.io-index"
  4432. checksum = "e4ed5d26be57f84f176157270c112ef57b86debac9cd21daaabbe56db0f88f23"
  4433. dependencies = [
  4434. "unic-ucd-segment",
  4435. ]
  4436. [[package]]
  4437. name = "unic-ucd-segment"
  4438. version = "0.9.0"
  4439. source = "registry+https://github.com/rust-lang/crates.io-index"
  4440. checksum = "2079c122a62205b421f499da10f3ee0f7697f012f55b675e002483c73ea34700"
  4441. dependencies = [
  4442. "unic-char-property",
  4443. "unic-char-range",
  4444. "unic-ucd-version",
  4445. ]
  4446. [[package]]
  4447. name = "unic-ucd-version"
  4448. version = "0.9.0"
  4449. source = "registry+https://github.com/rust-lang/crates.io-index"
  4450. checksum = "96bd2f2237fe450fcd0a1d2f5f4e91711124f7857ba2e964247776ebeeb7b0c4"
  4451. dependencies = [
  4452. "unic-common",
  4453. ]
  4454. [[package]]
  4455. name = "unicase"
  4456. version = "2.7.0"
  4457. source = "registry+https://github.com/rust-lang/crates.io-index"
  4458. checksum = "f7d2d4dafb69621809a81864c9c1b864479e1235c0dd4e199924b9742439ed89"
  4459. dependencies = [
  4460. "version_check",
  4461. ]
  4462. [[package]]
  4463. name = "unicode-bidi"
  4464. version = "0.3.13"
  4465. source = "registry+https://github.com/rust-lang/crates.io-index"
  4466. checksum = "92888ba5573ff080736b3648696b70cafad7d250551175acbaa4e0385b3e1460"
  4467. [[package]]
  4468. name = "unicode-ident"
  4469. version = "1.0.8"
  4470. source = "registry+https://github.com/rust-lang/crates.io-index"
  4471. checksum = "e5464a87b239f13a63a501f2701565754bae92d243d4bb7eb12f6d57d2269bf4"
  4472. [[package]]
  4473. name = "unicode-normalization"
  4474. version = "0.1.22"
  4475. source = "registry+https://github.com/rust-lang/crates.io-index"
  4476. checksum = "5c5713f0fc4b5db668a2ac63cdb7bb4469d8c9fed047b1d0292cc7b0ce2ba921"
  4477. dependencies = [
  4478. "tinyvec",
  4479. ]
  4480. [[package]]
  4481. name = "unicode-segmentation"
  4482. version = "1.10.1"
  4483. source = "registry+https://github.com/rust-lang/crates.io-index"
  4484. checksum = "1dd624098567895118886609431a7c3b8f516e41d30e0643f03d94592a147e36"
  4485. [[package]]
  4486. name = "unicode-width"
  4487. version = "0.1.10"
  4488. source = "registry+https://github.com/rust-lang/crates.io-index"
  4489. checksum = "c0edd1e5b14653f783770bce4a4dabb4a5108a5370a5f5d8cfe8710c361f6c8b"
  4490. [[package]]
  4491. name = "universal-hash"
  4492. version = "0.5.1"
  4493. source = "registry+https://github.com/rust-lang/crates.io-index"
  4494. checksum = "fc1de2c688dc15305988b563c3854064043356019f97a4b46276fe734c4f07ea"
  4495. dependencies = [
  4496. "crypto-common",
  4497. "subtle",
  4498. ]
  4499. [[package]]
  4500. name = "untrusted"
  4501. version = "0.7.1"
  4502. source = "registry+https://github.com/rust-lang/crates.io-index"
  4503. checksum = "a156c684c91ea7d62626509bce3cb4e1d9ed5c4d978f7b4352658f96a4c26b4a"
  4504. [[package]]
  4505. name = "url"
  4506. version = "2.4.1"
  4507. source = "registry+https://github.com/rust-lang/crates.io-index"
  4508. checksum = "143b538f18257fac9cad154828a57c6bf5157e1aa604d4816b5995bf6de87ae5"
  4509. dependencies = [
  4510. "form_urlencoded",
  4511. "idna 0.4.0",
  4512. "percent-encoding",
  4513. ]
  4514. [[package]]
  4515. name = "utf-8"
  4516. version = "0.7.6"
  4517. source = "registry+https://github.com/rust-lang/crates.io-index"
  4518. checksum = "09cc8ee72d2a9becf2f2febe0205bbed8fc6615b7cb429ad062dc7b7ddd036a9"
  4519. [[package]]
  4520. name = "uuid"
  4521. version = "1.3.3"
  4522. source = "registry+https://github.com/rust-lang/crates.io-index"
  4523. checksum = "345444e32442451b267fc254ae85a209c64be56d2890e601a0c37ff0c3c5ecd2"
  4524. dependencies = [
  4525. "getrandom 0.2.9",
  4526. "serde",
  4527. "sha1_smol",
  4528. ]
  4529. [[package]]
  4530. name = "validator"
  4531. version = "0.16.0"
  4532. source = "registry+https://github.com/rust-lang/crates.io-index"
  4533. checksum = "32ad5bf234c7d3ad1042e5252b7eddb2c4669ee23f32c7dd0e9b7705f07ef591"
  4534. dependencies = [
  4535. "idna 0.2.3",
  4536. "lazy_static",
  4537. "regex",
  4538. "serde",
  4539. "serde_derive",
  4540. "serde_json",
  4541. "url",
  4542. ]
  4543. [[package]]
  4544. name = "valuable"
  4545. version = "0.1.0"
  4546. source = "registry+https://github.com/rust-lang/crates.io-index"
  4547. checksum = "830b7e5d4d90034032940e4ace0d9a9a057e7a45cd94e6c007832e39edb82f6d"
  4548. [[package]]
  4549. name = "vcpkg"
  4550. version = "0.2.15"
  4551. source = "registry+https://github.com/rust-lang/crates.io-index"
  4552. checksum = "accd4ea62f7bb7a82fe23066fb0957d48ef677f6eeb8215f372f52e48bb32426"
  4553. [[package]]
  4554. name = "version_check"
  4555. version = "0.9.4"
  4556. source = "registry+https://github.com/rust-lang/crates.io-index"
  4557. checksum = "49874b5167b65d7193b8aba1567f5c7d93d001cafc34600cee003eda787e483f"
  4558. [[package]]
  4559. name = "walkdir"
  4560. version = "2.3.3"
  4561. source = "registry+https://github.com/rust-lang/crates.io-index"
  4562. checksum = "36df944cda56c7d8d8b7496af378e6b16de9284591917d307c9b4d313c44e698"
  4563. dependencies = [
  4564. "same-file",
  4565. "winapi-util",
  4566. ]
  4567. [[package]]
  4568. name = "want"
  4569. version = "0.3.0"
  4570. source = "registry+https://github.com/rust-lang/crates.io-index"
  4571. checksum = "1ce8a968cb1cd110d136ff8b819a556d6fb6d919363c61534f6860c7eb172ba0"
  4572. dependencies = [
  4573. "log",
  4574. "try-lock",
  4575. ]
  4576. [[package]]
  4577. name = "wasi"
  4578. version = "0.9.0+wasi-snapshot-preview1"
  4579. source = "registry+https://github.com/rust-lang/crates.io-index"
  4580. checksum = "cccddf32554fecc6acb585f82a32a72e28b48f8c4c1883ddfeeeaa96f7d8e519"
  4581. [[package]]
  4582. name = "wasi"
  4583. version = "0.10.0+wasi-snapshot-preview1"
  4584. source = "registry+https://github.com/rust-lang/crates.io-index"
  4585. checksum = "1a143597ca7c7793eff794def352d41792a93c481eb1042423ff7ff72ba2c31f"
  4586. [[package]]
  4587. name = "wasi"
  4588. version = "0.11.0+wasi-snapshot-preview1"
  4589. source = "registry+https://github.com/rust-lang/crates.io-index"
  4590. checksum = "9c8d87e72b64a3b4db28d11ce29237c246188f4f51057d65a7eab63b7987e423"
  4591. [[package]]
  4592. name = "wasm-bindgen"
  4593. version = "0.2.84"
  4594. source = "registry+https://github.com/rust-lang/crates.io-index"
  4595. checksum = "31f8dcbc21f30d9b8f2ea926ecb58f6b91192c17e9d33594b3df58b2007ca53b"
  4596. dependencies = [
  4597. "cfg-if",
  4598. "wasm-bindgen-macro",
  4599. ]
  4600. [[package]]
  4601. name = "wasm-bindgen-backend"
  4602. version = "0.2.84"
  4603. source = "registry+https://github.com/rust-lang/crates.io-index"
  4604. checksum = "95ce90fd5bcc06af55a641a86428ee4229e44e07033963a2290a8e241607ccb9"
  4605. dependencies = [
  4606. "bumpalo",
  4607. "log",
  4608. "once_cell",
  4609. "proc-macro2",
  4610. "quote",
  4611. "syn 1.0.109",
  4612. "wasm-bindgen-shared",
  4613. ]
  4614. [[package]]
  4615. name = "wasm-bindgen-futures"
  4616. version = "0.4.34"
  4617. source = "registry+https://github.com/rust-lang/crates.io-index"
  4618. checksum = "f219e0d211ba40266969f6dbdd90636da12f75bee4fc9d6c23d1260dadb51454"
  4619. dependencies = [
  4620. "cfg-if",
  4621. "js-sys",
  4622. "wasm-bindgen",
  4623. "web-sys",
  4624. ]
  4625. [[package]]
  4626. name = "wasm-bindgen-macro"
  4627. version = "0.2.84"
  4628. source = "registry+https://github.com/rust-lang/crates.io-index"
  4629. checksum = "4c21f77c0bedc37fd5dc21f897894a5ca01e7bb159884559461862ae90c0b4c5"
  4630. dependencies = [
  4631. "quote",
  4632. "wasm-bindgen-macro-support",
  4633. ]
  4634. [[package]]
  4635. name = "wasm-bindgen-macro-support"
  4636. version = "0.2.84"
  4637. source = "registry+https://github.com/rust-lang/crates.io-index"
  4638. checksum = "2aff81306fcac3c7515ad4e177f521b5c9a15f2b08f4e32d823066102f35a5f6"
  4639. dependencies = [
  4640. "proc-macro2",
  4641. "quote",
  4642. "syn 1.0.109",
  4643. "wasm-bindgen-backend",
  4644. "wasm-bindgen-shared",
  4645. ]
  4646. [[package]]
  4647. name = "wasm-bindgen-shared"
  4648. version = "0.2.84"
  4649. source = "registry+https://github.com/rust-lang/crates.io-index"
  4650. checksum = "0046fef7e28c3804e5e38bfa31ea2a0f73905319b677e57ebe37e49358989b5d"
  4651. [[package]]
  4652. name = "wasm-streams"
  4653. version = "0.2.3"
  4654. source = "registry+https://github.com/rust-lang/crates.io-index"
  4655. checksum = "6bbae3363c08332cadccd13b67db371814cd214c2524020932f0804b8cf7c078"
  4656. dependencies = [
  4657. "futures-util",
  4658. "js-sys",
  4659. "wasm-bindgen",
  4660. "wasm-bindgen-futures",
  4661. "web-sys",
  4662. ]
  4663. [[package]]
  4664. name = "web-sys"
  4665. version = "0.3.61"
  4666. source = "registry+https://github.com/rust-lang/crates.io-index"
  4667. checksum = "e33b99f4b23ba3eec1a53ac264e35a755f00e966e0065077d6027c0f575b0b97"
  4668. dependencies = [
  4669. "js-sys",
  4670. "wasm-bindgen",
  4671. ]
  4672. [[package]]
  4673. name = "webpki"
  4674. version = "0.22.0"
  4675. source = "registry+https://github.com/rust-lang/crates.io-index"
  4676. checksum = "f095d78192e208183081cc07bc5515ef55216397af48b873e5edcd72637fa1bd"
  4677. dependencies = [
  4678. "ring",
  4679. "untrusted",
  4680. ]
  4681. [[package]]
  4682. name = "webpki-roots"
  4683. version = "0.22.6"
  4684. source = "registry+https://github.com/rust-lang/crates.io-index"
  4685. checksum = "b6c71e40d7d2c34a5106301fb632274ca37242cd0c9d3e64dbece371a40a2d87"
  4686. dependencies = [
  4687. "webpki",
  4688. ]
  4689. [[package]]
  4690. name = "which"
  4691. version = "4.4.0"
  4692. source = "registry+https://github.com/rust-lang/crates.io-index"
  4693. checksum = "2441c784c52b289a054b7201fc93253e288f094e2f4be9058343127c4226a269"
  4694. dependencies = [
  4695. "either",
  4696. "libc",
  4697. "once_cell",
  4698. ]
  4699. [[package]]
  4700. name = "winapi"
  4701. version = "0.3.9"
  4702. source = "registry+https://github.com/rust-lang/crates.io-index"
  4703. checksum = "5c839a674fcd7a98952e593242ea400abe93992746761e38641405d28b00f419"
  4704. dependencies = [
  4705. "winapi-i686-pc-windows-gnu",
  4706. "winapi-x86_64-pc-windows-gnu",
  4707. ]
  4708. [[package]]
  4709. name = "winapi-i686-pc-windows-gnu"
  4710. version = "0.4.0"
  4711. source = "registry+https://github.com/rust-lang/crates.io-index"
  4712. checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6"
  4713. [[package]]
  4714. name = "winapi-util"
  4715. version = "0.1.5"
  4716. source = "registry+https://github.com/rust-lang/crates.io-index"
  4717. checksum = "70ec6ce85bb158151cae5e5c87f95a8e97d2c0c4b001223f33a334e3ce5de178"
  4718. dependencies = [
  4719. "winapi",
  4720. ]
  4721. [[package]]
  4722. name = "winapi-x86_64-pc-windows-gnu"
  4723. version = "0.4.0"
  4724. source = "registry+https://github.com/rust-lang/crates.io-index"
  4725. checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f"
  4726. [[package]]
  4727. name = "windows"
  4728. version = "0.48.0"
  4729. source = "registry+https://github.com/rust-lang/crates.io-index"
  4730. checksum = "e686886bc078bc1b0b600cac0147aadb815089b6e4da64016cbd754b6342700f"
  4731. dependencies = [
  4732. "windows-targets 0.48.0",
  4733. ]
  4734. [[package]]
  4735. name = "windows-sys"
  4736. version = "0.42.0"
  4737. source = "registry+https://github.com/rust-lang/crates.io-index"
  4738. checksum = "5a3e1820f08b8513f676f7ab6c1f99ff312fb97b553d30ff4dd86f9f15728aa7"
  4739. dependencies = [
  4740. "windows_aarch64_gnullvm 0.42.2",
  4741. "windows_aarch64_msvc 0.42.2",
  4742. "windows_i686_gnu 0.42.2",
  4743. "windows_i686_msvc 0.42.2",
  4744. "windows_x86_64_gnu 0.42.2",
  4745. "windows_x86_64_gnullvm 0.42.2",
  4746. "windows_x86_64_msvc 0.42.2",
  4747. ]
  4748. [[package]]
  4749. name = "windows-sys"
  4750. version = "0.45.0"
  4751. source = "registry+https://github.com/rust-lang/crates.io-index"
  4752. checksum = "75283be5efb2831d37ea142365f009c02ec203cd29a3ebecbc093d52315b66d0"
  4753. dependencies = [
  4754. "windows-targets 0.42.2",
  4755. ]
  4756. [[package]]
  4757. name = "windows-sys"
  4758. version = "0.48.0"
  4759. source = "registry+https://github.com/rust-lang/crates.io-index"
  4760. checksum = "677d2418bec65e3338edb076e806bc1ec15693c5d0104683f2efe857f61056a9"
  4761. dependencies = [
  4762. "windows-targets 0.48.0",
  4763. ]
  4764. [[package]]
  4765. name = "windows-targets"
  4766. version = "0.42.2"
  4767. source = "registry+https://github.com/rust-lang/crates.io-index"
  4768. checksum = "8e5180c00cd44c9b1c88adb3693291f1cd93605ded80c250a75d472756b4d071"
  4769. dependencies = [
  4770. "windows_aarch64_gnullvm 0.42.2",
  4771. "windows_aarch64_msvc 0.42.2",
  4772. "windows_i686_gnu 0.42.2",
  4773. "windows_i686_msvc 0.42.2",
  4774. "windows_x86_64_gnu 0.42.2",
  4775. "windows_x86_64_gnullvm 0.42.2",
  4776. "windows_x86_64_msvc 0.42.2",
  4777. ]
  4778. [[package]]
  4779. name = "windows-targets"
  4780. version = "0.48.0"
  4781. source = "registry+https://github.com/rust-lang/crates.io-index"
  4782. checksum = "7b1eb6f0cd7c80c79759c929114ef071b87354ce476d9d94271031c0497adfd5"
  4783. dependencies = [
  4784. "windows_aarch64_gnullvm 0.48.0",
  4785. "windows_aarch64_msvc 0.48.0",
  4786. "windows_i686_gnu 0.48.0",
  4787. "windows_i686_msvc 0.48.0",
  4788. "windows_x86_64_gnu 0.48.0",
  4789. "windows_x86_64_gnullvm 0.48.0",
  4790. "windows_x86_64_msvc 0.48.0",
  4791. ]
  4792. [[package]]
  4793. name = "windows_aarch64_gnullvm"
  4794. version = "0.42.2"
  4795. source = "registry+https://github.com/rust-lang/crates.io-index"
  4796. checksum = "597a5118570b68bc08d8d59125332c54f1ba9d9adeedeef5b99b02ba2b0698f8"
  4797. [[package]]
  4798. name = "windows_aarch64_gnullvm"
  4799. version = "0.48.0"
  4800. source = "registry+https://github.com/rust-lang/crates.io-index"
  4801. checksum = "91ae572e1b79dba883e0d315474df7305d12f569b400fcf90581b06062f7e1bc"
  4802. [[package]]
  4803. name = "windows_aarch64_msvc"
  4804. version = "0.42.2"
  4805. source = "registry+https://github.com/rust-lang/crates.io-index"
  4806. checksum = "e08e8864a60f06ef0d0ff4ba04124db8b0fb3be5776a5cd47641e942e58c4d43"
  4807. [[package]]
  4808. name = "windows_aarch64_msvc"
  4809. version = "0.48.0"
  4810. source = "registry+https://github.com/rust-lang/crates.io-index"
  4811. checksum = "b2ef27e0d7bdfcfc7b868b317c1d32c641a6fe4629c171b8928c7b08d98d7cf3"
  4812. [[package]]
  4813. name = "windows_i686_gnu"
  4814. version = "0.42.2"
  4815. source = "registry+https://github.com/rust-lang/crates.io-index"
  4816. checksum = "c61d927d8da41da96a81f029489353e68739737d3beca43145c8afec9a31a84f"
  4817. [[package]]
  4818. name = "windows_i686_gnu"
  4819. version = "0.48.0"
  4820. source = "registry+https://github.com/rust-lang/crates.io-index"
  4821. checksum = "622a1962a7db830d6fd0a69683c80a18fda201879f0f447f065a3b7467daa241"
  4822. [[package]]
  4823. name = "windows_i686_msvc"
  4824. version = "0.42.2"
  4825. source = "registry+https://github.com/rust-lang/crates.io-index"
  4826. checksum = "44d840b6ec649f480a41c8d80f9c65108b92d89345dd94027bfe06ac444d1060"
  4827. [[package]]
  4828. name = "windows_i686_msvc"
  4829. version = "0.48.0"
  4830. source = "registry+https://github.com/rust-lang/crates.io-index"
  4831. checksum = "4542c6e364ce21bf45d69fdd2a8e455fa38d316158cfd43b3ac1c5b1b19f8e00"
  4832. [[package]]
  4833. name = "windows_x86_64_gnu"
  4834. version = "0.42.2"
  4835. source = "registry+https://github.com/rust-lang/crates.io-index"
  4836. checksum = "8de912b8b8feb55c064867cf047dda097f92d51efad5b491dfb98f6bbb70cb36"
  4837. [[package]]
  4838. name = "windows_x86_64_gnu"
  4839. version = "0.48.0"
  4840. source = "registry+https://github.com/rust-lang/crates.io-index"
  4841. checksum = "ca2b8a661f7628cbd23440e50b05d705db3686f894fc9580820623656af974b1"
  4842. [[package]]
  4843. name = "windows_x86_64_gnullvm"
  4844. version = "0.42.2"
  4845. source = "registry+https://github.com/rust-lang/crates.io-index"
  4846. checksum = "26d41b46a36d453748aedef1486d5c7a85db22e56aff34643984ea85514e94a3"
  4847. [[package]]
  4848. name = "windows_x86_64_gnullvm"
  4849. version = "0.48.0"
  4850. source = "registry+https://github.com/rust-lang/crates.io-index"
  4851. checksum = "7896dbc1f41e08872e9d5e8f8baa8fdd2677f29468c4e156210174edc7f7b953"
  4852. [[package]]
  4853. name = "windows_x86_64_msvc"
  4854. version = "0.42.2"
  4855. source = "registry+https://github.com/rust-lang/crates.io-index"
  4856. checksum = "9aec5da331524158c6d1a4ac0ab1541149c0b9505fde06423b02f5ef0106b9f0"
  4857. [[package]]
  4858. name = "windows_x86_64_msvc"
  4859. version = "0.48.0"
  4860. source = "registry+https://github.com/rust-lang/crates.io-index"
  4861. checksum = "1a515f5799fe4961cb532f983ce2b23082366b898e52ffbce459c86f67c8378a"
  4862. [[package]]
  4863. name = "winreg"
  4864. version = "0.10.1"
  4865. source = "registry+https://github.com/rust-lang/crates.io-index"
  4866. checksum = "80d0f4e272c85def139476380b12f9ac60926689dd2e01d4923222f40580869d"
  4867. dependencies = [
  4868. "winapi",
  4869. ]
  4870. [[package]]
  4871. name = "y-sync"
  4872. version = "0.3.1"
  4873. source = "registry+https://github.com/rust-lang/crates.io-index"
  4874. checksum = "f54d34b68ec4514a0659838c2b1ba867c571b20b3804a1338dacf4fa9062d801"
  4875. dependencies = [
  4876. "lib0",
  4877. "thiserror",
  4878. "yrs",
  4879. ]
  4880. [[package]]
  4881. name = "yaml-rust"
  4882. version = "0.4.5"
  4883. source = "registry+https://github.com/rust-lang/crates.io-index"
  4884. checksum = "56c1936c4cc7a1c9ab21a1ebb602eb942ba868cbd44a99cb7cdc5892335e1c85"
  4885. dependencies = [
  4886. "linked-hash-map",
  4887. ]
  4888. [[package]]
  4889. name = "yrs"
  4890. version = "0.16.5"
  4891. source = "registry+https://github.com/rust-lang/crates.io-index"
  4892. checksum = "4c2aef2bf89b4f7c003f9c73f1c8097427ca32e1d006443f3f607f11e79a797b"
  4893. dependencies = [
  4894. "atomic_refcell",
  4895. "lib0",
  4896. "rand 0.7.3",
  4897. "smallstr",
  4898. "smallvec",
  4899. "thiserror",
  4900. ]
  4901. [[package]]
  4902. name = "zeroize"
  4903. version = "1.6.0"
  4904. source = "registry+https://github.com/rust-lang/crates.io-index"
  4905. checksum = "2a0956f1ba7c7909bfb66c2e9e4124ab6f6482560f6628b5aaeba39207c9aad9"
  4906. [[package]]
  4907. name = "zip"
  4908. version = "0.6.6"
  4909. source = "registry+https://github.com/rust-lang/crates.io-index"
  4910. checksum = "760394e246e4c28189f19d488c058bf16f564016aefac5d32bb1f3b51d5e9261"
  4911. dependencies = [
  4912. "aes",
  4913. "byteorder",
  4914. "bzip2",
  4915. "constant_time_eq",
  4916. "crc32fast",
  4917. "crossbeam-utils",
  4918. "flate2",
  4919. "hmac",
  4920. "pbkdf2 0.11.0",
  4921. "sha1",
  4922. "time 0.3.21",
  4923. "zstd",
  4924. ]
  4925. [[package]]
  4926. name = "zstd"
  4927. version = "0.11.2+zstd.1.5.2"
  4928. source = "registry+https://github.com/rust-lang/crates.io-index"
  4929. checksum = "20cc960326ece64f010d2d2107537f26dc589a6573a316bd5b1dba685fa5fde4"
  4930. dependencies = [
  4931. "zstd-safe",
  4932. ]
  4933. [[package]]
  4934. name = "zstd-safe"
  4935. version = "5.0.2+zstd.1.5.2"
  4936. source = "registry+https://github.com/rust-lang/crates.io-index"
  4937. checksum = "1d2a5585e04f9eea4b2a3d1eca508c4dee9592a89ef6f450c11719da0726f4db"
  4938. dependencies = [
  4939. "libc",
  4940. "zstd-sys",
  4941. ]
  4942. [[package]]
  4943. name = "zstd-sys"
  4944. version = "2.0.8+zstd.1.5.5"
  4945. source = "registry+https://github.com/rust-lang/crates.io-index"
  4946. checksum = "5556e6ee25d32df2586c098bbfa278803692a20d0ab9565e049480d52707ec8c"
  4947. dependencies = [
  4948. "cc",
  4949. "libc",
  4950. "pkg-config",
  4951. ]