Cargo.lock 126 KB

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