Cargo.lock 162 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484548554865487548854895490549154925493549454955496549754985499550055015502550355045505550655075508550955105511551255135514551555165517551855195520552155225523552455255526552755285529553055315532553355345535553655375538553955405541554255435544554555465547554855495550555155525553555455555556555755585559556055615562556355645565556655675568556955705571557255735574557555765577557855795580558155825583558455855586558755885589559055915592559355945595559655975598559956005601560256035604560556065607560856095610561156125613561456155616561756185619562056215622562356245625562656275628562956305631563256335634563556365637563856395640564156425643564456455646564756485649565056515652565356545655565656575658565956605661566256635664566556665667566856695670567156725673567456755676567756785679568056815682568356845685568656875688568956905691569256935694569556965697569856995700570157025703570457055706570757085709571057115712571357145715571657175718571957205721572257235724572557265727572857295730573157325733573457355736573757385739574057415742574357445745574657475748574957505751575257535754575557565757575857595760576157625763576457655766576757685769577057715772577357745775577657775778577957805781578257835784578557865787578857895790579157925793579457955796579757985799580058015802580358045805580658075808580958105811581258135814581558165817581858195820582158225823582458255826582758285829583058315832583358345835583658375838583958405841584258435844584558465847584858495850585158525853585458555856585758585859586058615862586358645865586658675868586958705871587258735874587558765877587858795880588158825883588458855886588758885889589058915892589358945895589658975898589959005901590259035904590559065907590859095910591159125913591459155916591759185919592059215922592359245925592659275928592959305931593259335934593559365937593859395940594159425943594459455946594759485949595059515952595359545955595659575958595959605961596259635964596559665967596859695970597159725973597459755976597759785979598059815982598359845985598659875988598959905991599259935994599559965997599859996000600160026003600460056006600760086009601060116012601360146015601660176018601960206021602260236024602560266027602860296030603160326033603460356036603760386039604060416042604360446045604660476048604960506051605260536054605560566057605860596060606160626063606460656066606760686069607060716072607360746075607660776078607960806081608260836084608560866087608860896090609160926093609460956096609760986099610061016102610361046105610661076108610961106111611261136114611561166117611861196120612161226123612461256126612761286129613061316132613361346135613661376138613961406141614261436144614561466147614861496150615161526153615461556156615761586159616061616162616361646165616661676168616961706171617261736174617561766177617861796180618161826183618461856186618761886189619061916192619361946195619661976198619962006201620262036204620562066207620862096210621162126213621462156216621762186219622062216222622362246225622662276228622962306231623262336234623562366237623862396240624162426243624462456246624762486249625062516252625362546255625662576258625962606261626262636264626562666267626862696270627162726273627462756276627762786279628062816282628362846285628662876288628962906291629262936294629562966297629862996300630163026303630463056306630763086309631063116312631363146315631663176318631963206321632263236324632563266327632863296330633163326333633463356336633763386339634063416342634363446345634663476348634963506351635263536354635563566357635863596360636163626363636463656366636763686369637063716372637363746375637663776378637963806381638263836384638563866387638863896390639163926393639463956396639763986399640064016402640364046405640664076408640964106411641264136414641564166417641864196420642164226423642464256426642764286429643064316432643364346435643664376438643964406441644264436444644564466447644864496450645164526453645464556456645764586459646064616462646364646465646664676468646964706471647264736474647564766477647864796480648164826483648464856486648764886489649064916492649364946495649664976498649965006501650265036504650565066507650865096510651165126513651465156516651765186519652065216522652365246525652665276528652965306531653265336534653565366537653865396540654165426543654465456546654765486549655065516552655365546555655665576558655965606561656265636564656565666567656865696570657165726573657465756576657765786579658065816582658365846585658665876588658965906591659265936594659565966597659865996600660166026603660466056606660766086609661066116612661366146615661666176618661966206621662266236624662566266627662866296630663166326633663466356636663766386639664066416642664366446645664666476648664966506651665266536654665566566657665866596660666166626663666466656666666766686669667066716672667366746675667666776678667966806681668266836684668566866687668866896690669166926693669466956696669766986699670067016702670367046705670667076708670967106711671267136714671567166717671867196720672167226723672467256726672767286729673067316732673367346735673667376738673967406741674267436744674567466747674867496750675167526753675467556756675767586759676067616762676367646765676667676768676967706771677267736774677567766777677867796780678167826783678467856786678767886789679067916792679367946795679667976798679968006801680268036804680568066807680868096810681168126813681468156816681768186819682068216822682368246825682668276828682968306831683268336834683568366837683868396840684168426843684468456846684768486849685068516852685368546855685668576858685968606861686268636864686568666867686868696870687168726873687468756876687768786879688068816882688368846885688668876888688968906891689268936894689568966897689868996900690169026903690469056906690769086909691069116912691369146915691669176918691969206921692269236924692569266927692869296930693169326933693469356936693769386939694069416942694369446945694669476948694969506951695269536954695569566957695869596960696169626963696469656966696769686969697069716972697369746975697669776978697969806981698269836984698569866987698869896990699169926993699469956996699769986999700070017002700370047005700670077008700970107011701270137014701570167017701870197020702170227023702470257026702770287029703070317032703370347035703670377038703970407041704270437044704570467047704870497050705170527053705470557056705770587059706070617062706370647065706670677068706970707071707270737074707570767077707870797080708170827083708470857086708770887089709070917092709370947095709670977098709971007101710271037104710571067107710871097110
  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.10",
  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 = "aho-corasick"
  47. version = "1.0.2"
  48. source = "registry+https://github.com/rust-lang/crates.io-index"
  49. checksum = "43f6cb1bf222025340178f382c426f13757b2960e89779dfcb319c32542a5a41"
  50. dependencies = [
  51. "memchr",
  52. ]
  53. [[package]]
  54. name = "alloc-no-stdlib"
  55. version = "2.0.4"
  56. source = "registry+https://github.com/rust-lang/crates.io-index"
  57. checksum = "cc7bb162ec39d46ab1ca8c77bf72e890535becd1751bb45f64c597edb4c8c6b3"
  58. [[package]]
  59. name = "alloc-stdlib"
  60. version = "0.2.2"
  61. source = "registry+https://github.com/rust-lang/crates.io-index"
  62. checksum = "94fb8275041c72129eb51b7d0322c29b8387a0386127718b096429201a5d6ece"
  63. dependencies = [
  64. "alloc-no-stdlib",
  65. ]
  66. [[package]]
  67. name = "android-tzdata"
  68. version = "0.1.1"
  69. source = "registry+https://github.com/rust-lang/crates.io-index"
  70. checksum = "e999941b234f3131b00bc13c22d06e8c5ff726d1b6318ac7eb276997bbb4fef0"
  71. [[package]]
  72. name = "android_system_properties"
  73. version = "0.1.5"
  74. source = "registry+https://github.com/rust-lang/crates.io-index"
  75. checksum = "819e7219dbd41043ac279b19830f2efc897156490d7fd6ea916720117ee66311"
  76. dependencies = [
  77. "libc",
  78. ]
  79. [[package]]
  80. name = "ansi_term"
  81. version = "0.12.1"
  82. source = "registry+https://github.com/rust-lang/crates.io-index"
  83. checksum = "d52a9bb7ec0cf484c551830a7ce27bd20d67eac647e1befb56b0be4ee39a55d2"
  84. dependencies = [
  85. "winapi",
  86. ]
  87. [[package]]
  88. name = "anyhow"
  89. version = "1.0.71"
  90. source = "registry+https://github.com/rust-lang/crates.io-index"
  91. checksum = "9c7d0618f0e0b7e8ff11427422b64564d5fb0be1940354bfe2e0529b18a9d9b8"
  92. [[package]]
  93. name = "appflowy-integrate"
  94. version = "0.1.0"
  95. dependencies = [
  96. "anyhow",
  97. "collab",
  98. "collab-database",
  99. "collab-document",
  100. "collab-folder",
  101. "collab-persistence",
  102. "collab-plugins",
  103. "parking_lot 0.12.1",
  104. "serde",
  105. "serde_json",
  106. "tracing",
  107. ]
  108. [[package]]
  109. name = "appflowy_tauri"
  110. version = "0.0.0"
  111. dependencies = [
  112. "bytes",
  113. "flowy-core",
  114. "flowy-net",
  115. "flowy-notification",
  116. "lib-dispatch",
  117. "serde",
  118. "serde_json",
  119. "tauri",
  120. "tauri-build",
  121. "tauri-utils",
  122. "tracing",
  123. ]
  124. [[package]]
  125. name = "arrayvec"
  126. version = "0.5.2"
  127. source = "registry+https://github.com/rust-lang/crates.io-index"
  128. checksum = "23b62fc65de8e4e7f52534fb52b0f3ed04746ae267519eef2a83941e8085068b"
  129. [[package]]
  130. name = "arrayvec"
  131. version = "0.7.4"
  132. source = "registry+https://github.com/rust-lang/crates.io-index"
  133. checksum = "96d30a06541fbafbc7f82ed10c06164cfbd2c401138f6addd8404629c4b16711"
  134. [[package]]
  135. name = "async-stream"
  136. version = "0.3.5"
  137. source = "registry+https://github.com/rust-lang/crates.io-index"
  138. checksum = "cd56dd203fef61ac097dd65721a419ddccb106b2d2b70ba60a6b529f03961a51"
  139. dependencies = [
  140. "async-stream-impl",
  141. "futures-core",
  142. "pin-project-lite",
  143. ]
  144. [[package]]
  145. name = "async-stream-impl"
  146. version = "0.3.5"
  147. source = "registry+https://github.com/rust-lang/crates.io-index"
  148. checksum = "16e62a023e7c117e27523144c5d2459f4397fcc3cab0085af8e2224f643a0193"
  149. dependencies = [
  150. "proc-macro2",
  151. "quote",
  152. "syn 2.0.22",
  153. ]
  154. [[package]]
  155. name = "async-trait"
  156. version = "0.1.68"
  157. source = "registry+https://github.com/rust-lang/crates.io-index"
  158. checksum = "b9ccdd8f2a161be9bd5c023df56f1b2a0bd1d83872ae53b71a84a12c9bf6e842"
  159. dependencies = [
  160. "proc-macro2",
  161. "quote",
  162. "syn 2.0.22",
  163. ]
  164. [[package]]
  165. name = "atk"
  166. version = "0.15.1"
  167. source = "registry+https://github.com/rust-lang/crates.io-index"
  168. checksum = "2c3d816ce6f0e2909a96830d6911c2aff044370b1ef92d7f267b43bae5addedd"
  169. dependencies = [
  170. "atk-sys",
  171. "bitflags",
  172. "glib",
  173. "libc",
  174. ]
  175. [[package]]
  176. name = "atk-sys"
  177. version = "0.15.1"
  178. source = "registry+https://github.com/rust-lang/crates.io-index"
  179. checksum = "58aeb089fb698e06db8089971c7ee317ab9644bade33383f63631437b03aafb6"
  180. dependencies = [
  181. "glib-sys",
  182. "gobject-sys",
  183. "libc",
  184. "system-deps 6.1.1",
  185. ]
  186. [[package]]
  187. name = "atomic_refcell"
  188. version = "0.1.10"
  189. source = "registry+https://github.com/rust-lang/crates.io-index"
  190. checksum = "79d6dc922a2792b006573f60b2648076355daeae5ce9cb59507e5908c9625d31"
  191. [[package]]
  192. name = "autocfg"
  193. version = "1.1.0"
  194. source = "registry+https://github.com/rust-lang/crates.io-index"
  195. checksum = "d468802bab17cbc0cc575e9b053f41e72aa36bfa6b7f55e3529ffa43161b97fa"
  196. [[package]]
  197. name = "aws-config"
  198. version = "0.55.3"
  199. source = "registry+https://github.com/rust-lang/crates.io-index"
  200. checksum = "bcdcf0d683fe9c23d32cf5b53c9918ea0a500375a9fb20109802552658e576c9"
  201. dependencies = [
  202. "aws-credential-types",
  203. "aws-http",
  204. "aws-sdk-sso",
  205. "aws-sdk-sts",
  206. "aws-smithy-async",
  207. "aws-smithy-client",
  208. "aws-smithy-http",
  209. "aws-smithy-http-tower",
  210. "aws-smithy-json",
  211. "aws-smithy-types",
  212. "aws-types",
  213. "bytes",
  214. "fastrand",
  215. "hex",
  216. "http",
  217. "hyper",
  218. "ring",
  219. "time 0.3.22",
  220. "tokio",
  221. "tower",
  222. "tracing",
  223. "zeroize",
  224. ]
  225. [[package]]
  226. name = "aws-credential-types"
  227. version = "0.55.3"
  228. source = "registry+https://github.com/rust-lang/crates.io-index"
  229. checksum = "1fcdb2f7acbc076ff5ad05e7864bdb191ca70a6fd07668dc3a1a8bcd051de5ae"
  230. dependencies = [
  231. "aws-smithy-async",
  232. "aws-smithy-types",
  233. "fastrand",
  234. "tokio",
  235. "tracing",
  236. "zeroize",
  237. ]
  238. [[package]]
  239. name = "aws-endpoint"
  240. version = "0.55.3"
  241. source = "registry+https://github.com/rust-lang/crates.io-index"
  242. checksum = "8cce1c41a6cfaa726adee9ebb9a56fcd2bbfd8be49fd8a04c5e20fd968330b04"
  243. dependencies = [
  244. "aws-smithy-http",
  245. "aws-smithy-types",
  246. "aws-types",
  247. "http",
  248. "regex",
  249. "tracing",
  250. ]
  251. [[package]]
  252. name = "aws-http"
  253. version = "0.55.3"
  254. source = "registry+https://github.com/rust-lang/crates.io-index"
  255. checksum = "aadbc44e7a8f3e71c8b374e03ecd972869eb91dd2bc89ed018954a52ba84bc44"
  256. dependencies = [
  257. "aws-credential-types",
  258. "aws-smithy-http",
  259. "aws-smithy-types",
  260. "aws-types",
  261. "bytes",
  262. "http",
  263. "http-body",
  264. "lazy_static",
  265. "percent-encoding",
  266. "pin-project-lite",
  267. "tracing",
  268. ]
  269. [[package]]
  270. name = "aws-sdk-dynamodb"
  271. version = "0.27.0"
  272. source = "registry+https://github.com/rust-lang/crates.io-index"
  273. checksum = "67fb64867fe098cffee7e34352b01bbfa2beb3aa1b2ff0e0a7bf9ff293557852"
  274. dependencies = [
  275. "aws-credential-types",
  276. "aws-endpoint",
  277. "aws-http",
  278. "aws-sig-auth",
  279. "aws-smithy-async",
  280. "aws-smithy-client",
  281. "aws-smithy-http",
  282. "aws-smithy-http-tower",
  283. "aws-smithy-json",
  284. "aws-smithy-types",
  285. "aws-types",
  286. "bytes",
  287. "fastrand",
  288. "http",
  289. "regex",
  290. "tokio-stream",
  291. "tower",
  292. "tracing",
  293. ]
  294. [[package]]
  295. name = "aws-sdk-sso"
  296. version = "0.28.0"
  297. source = "registry+https://github.com/rust-lang/crates.io-index"
  298. checksum = "c8b812340d86d4a766b2ca73f740dfd47a97c2dff0c06c8517a16d88241957e4"
  299. dependencies = [
  300. "aws-credential-types",
  301. "aws-endpoint",
  302. "aws-http",
  303. "aws-sig-auth",
  304. "aws-smithy-async",
  305. "aws-smithy-client",
  306. "aws-smithy-http",
  307. "aws-smithy-http-tower",
  308. "aws-smithy-json",
  309. "aws-smithy-types",
  310. "aws-types",
  311. "bytes",
  312. "http",
  313. "regex",
  314. "tokio-stream",
  315. "tower",
  316. "tracing",
  317. ]
  318. [[package]]
  319. name = "aws-sdk-sts"
  320. version = "0.28.0"
  321. source = "registry+https://github.com/rust-lang/crates.io-index"
  322. checksum = "265fac131fbfc188e5c3d96652ea90ecc676a934e3174eaaee523c6cec040b3b"
  323. dependencies = [
  324. "aws-credential-types",
  325. "aws-endpoint",
  326. "aws-http",
  327. "aws-sig-auth",
  328. "aws-smithy-async",
  329. "aws-smithy-client",
  330. "aws-smithy-http",
  331. "aws-smithy-http-tower",
  332. "aws-smithy-json",
  333. "aws-smithy-query",
  334. "aws-smithy-types",
  335. "aws-smithy-xml",
  336. "aws-types",
  337. "bytes",
  338. "http",
  339. "regex",
  340. "tower",
  341. "tracing",
  342. ]
  343. [[package]]
  344. name = "aws-sig-auth"
  345. version = "0.55.3"
  346. source = "registry+https://github.com/rust-lang/crates.io-index"
  347. checksum = "3b94acb10af0c879ecd5c7bdf51cda6679a0a4f4643ce630905a77673bfa3c61"
  348. dependencies = [
  349. "aws-credential-types",
  350. "aws-sigv4",
  351. "aws-smithy-http",
  352. "aws-types",
  353. "http",
  354. "tracing",
  355. ]
  356. [[package]]
  357. name = "aws-sigv4"
  358. version = "0.55.3"
  359. source = "registry+https://github.com/rust-lang/crates.io-index"
  360. checksum = "9d2ce6f507be68e968a33485ced670111d1cbad161ddbbab1e313c03d37d8f4c"
  361. dependencies = [
  362. "aws-smithy-http",
  363. "form_urlencoded",
  364. "hex",
  365. "hmac",
  366. "http",
  367. "once_cell",
  368. "percent-encoding",
  369. "regex",
  370. "sha2",
  371. "time 0.3.22",
  372. "tracing",
  373. ]
  374. [[package]]
  375. name = "aws-smithy-async"
  376. version = "0.55.3"
  377. source = "registry+https://github.com/rust-lang/crates.io-index"
  378. checksum = "13bda3996044c202d75b91afeb11a9afae9db9a721c6a7a427410018e286b880"
  379. dependencies = [
  380. "futures-util",
  381. "pin-project-lite",
  382. "tokio",
  383. "tokio-stream",
  384. ]
  385. [[package]]
  386. name = "aws-smithy-client"
  387. version = "0.55.3"
  388. source = "registry+https://github.com/rust-lang/crates.io-index"
  389. checksum = "0a86aa6e21e86c4252ad6a0e3e74da9617295d8d6e374d552be7d3059c41cedd"
  390. dependencies = [
  391. "aws-smithy-async",
  392. "aws-smithy-http",
  393. "aws-smithy-http-tower",
  394. "aws-smithy-types",
  395. "bytes",
  396. "fastrand",
  397. "http",
  398. "http-body",
  399. "hyper",
  400. "hyper-rustls 0.23.2",
  401. "lazy_static",
  402. "pin-project-lite",
  403. "rustls 0.20.8",
  404. "tokio",
  405. "tower",
  406. "tracing",
  407. ]
  408. [[package]]
  409. name = "aws-smithy-http"
  410. version = "0.55.3"
  411. source = "registry+https://github.com/rust-lang/crates.io-index"
  412. checksum = "2b3b693869133551f135e1f2c77cb0b8277d9e3e17feaf2213f735857c4f0d28"
  413. dependencies = [
  414. "aws-smithy-types",
  415. "bytes",
  416. "bytes-utils",
  417. "futures-core",
  418. "http",
  419. "http-body",
  420. "hyper",
  421. "once_cell",
  422. "percent-encoding",
  423. "pin-project-lite",
  424. "pin-utils",
  425. "tokio",
  426. "tokio-util",
  427. "tracing",
  428. ]
  429. [[package]]
  430. name = "aws-smithy-http-tower"
  431. version = "0.55.3"
  432. source = "registry+https://github.com/rust-lang/crates.io-index"
  433. checksum = "3ae4f6c5798a247fac98a867698197d9ac22643596dc3777f0c76b91917616b9"
  434. dependencies = [
  435. "aws-smithy-http",
  436. "aws-smithy-types",
  437. "bytes",
  438. "http",
  439. "http-body",
  440. "pin-project-lite",
  441. "tower",
  442. "tracing",
  443. ]
  444. [[package]]
  445. name = "aws-smithy-json"
  446. version = "0.55.3"
  447. source = "registry+https://github.com/rust-lang/crates.io-index"
  448. checksum = "23f9f42fbfa96d095194a632fbac19f60077748eba536eb0b9fecc28659807f8"
  449. dependencies = [
  450. "aws-smithy-types",
  451. ]
  452. [[package]]
  453. name = "aws-smithy-query"
  454. version = "0.55.3"
  455. source = "registry+https://github.com/rust-lang/crates.io-index"
  456. checksum = "98819eb0b04020a1c791903533b638534ae6c12e2aceda3e6e6fba015608d51d"
  457. dependencies = [
  458. "aws-smithy-types",
  459. "urlencoding",
  460. ]
  461. [[package]]
  462. name = "aws-smithy-types"
  463. version = "0.55.3"
  464. source = "registry+https://github.com/rust-lang/crates.io-index"
  465. checksum = "16a3d0bf4f324f4ef9793b86a1701d9700fbcdbd12a846da45eed104c634c6e8"
  466. dependencies = [
  467. "base64-simd",
  468. "itoa 1.0.6",
  469. "num-integer",
  470. "ryu",
  471. "time 0.3.22",
  472. ]
  473. [[package]]
  474. name = "aws-smithy-xml"
  475. version = "0.55.3"
  476. source = "registry+https://github.com/rust-lang/crates.io-index"
  477. checksum = "b1b9d12875731bd07e767be7baad95700c3137b56730ec9ddeedb52a5e5ca63b"
  478. dependencies = [
  479. "xmlparser",
  480. ]
  481. [[package]]
  482. name = "aws-types"
  483. version = "0.55.3"
  484. source = "registry+https://github.com/rust-lang/crates.io-index"
  485. checksum = "6dd209616cc8d7bfb82f87811a5c655dc97537f592689b18743bddf5dc5c4829"
  486. dependencies = [
  487. "aws-credential-types",
  488. "aws-smithy-async",
  489. "aws-smithy-client",
  490. "aws-smithy-http",
  491. "aws-smithy-types",
  492. "http",
  493. "rustc_version",
  494. "tracing",
  495. ]
  496. [[package]]
  497. name = "backtrace"
  498. version = "0.3.67"
  499. source = "registry+https://github.com/rust-lang/crates.io-index"
  500. checksum = "233d376d6d185f2a3093e58f283f60f880315b6c60075b01f36b3b85154564ca"
  501. dependencies = [
  502. "addr2line",
  503. "cc",
  504. "cfg-if",
  505. "libc",
  506. "miniz_oxide 0.6.2",
  507. "object",
  508. "rustc-demangle",
  509. ]
  510. [[package]]
  511. name = "base64"
  512. version = "0.13.1"
  513. source = "registry+https://github.com/rust-lang/crates.io-index"
  514. checksum = "9e1b586273c5702936fe7b7d6896644d8be71e6314cfe09d3167c95f712589e8"
  515. [[package]]
  516. name = "base64"
  517. version = "0.21.2"
  518. source = "registry+https://github.com/rust-lang/crates.io-index"
  519. checksum = "604178f6c5c21f02dc555784810edfb88d34ac2c73b2eae109655649ee73ce3d"
  520. [[package]]
  521. name = "base64-simd"
  522. version = "0.8.0"
  523. source = "registry+https://github.com/rust-lang/crates.io-index"
  524. checksum = "339abbe78e73178762e23bea9dfd08e697eb3f3301cd4be981c0f78ba5859195"
  525. dependencies = [
  526. "outref",
  527. "vsimd",
  528. ]
  529. [[package]]
  530. name = "bincode"
  531. version = "1.3.3"
  532. source = "registry+https://github.com/rust-lang/crates.io-index"
  533. checksum = "b1f45e9417d87227c7a56d22e471c6206462cba514c7590c09aff4cf6d1ddcad"
  534. dependencies = [
  535. "serde",
  536. ]
  537. [[package]]
  538. name = "bindgen"
  539. version = "0.65.1"
  540. source = "registry+https://github.com/rust-lang/crates.io-index"
  541. checksum = "cfdf7b466f9a4903edc73f95d6d2bcd5baf8ae620638762244d3f60143643cc5"
  542. dependencies = [
  543. "bitflags",
  544. "cexpr",
  545. "clang-sys",
  546. "lazy_static",
  547. "lazycell",
  548. "peeking_take_while",
  549. "prettyplease",
  550. "proc-macro2",
  551. "quote",
  552. "regex",
  553. "rustc-hash",
  554. "shlex",
  555. "syn 2.0.22",
  556. ]
  557. [[package]]
  558. name = "bit-set"
  559. version = "0.5.3"
  560. source = "registry+https://github.com/rust-lang/crates.io-index"
  561. checksum = "0700ddab506f33b20a03b13996eccd309a48e5ff77d0d95926aa0210fb4e95f1"
  562. dependencies = [
  563. "bit-vec",
  564. ]
  565. [[package]]
  566. name = "bit-vec"
  567. version = "0.6.3"
  568. source = "registry+https://github.com/rust-lang/crates.io-index"
  569. checksum = "349f9b6a179ed607305526ca489b34ad0a41aed5f7980fa90eb03160b69598fb"
  570. [[package]]
  571. name = "bitflags"
  572. version = "1.3.2"
  573. source = "registry+https://github.com/rust-lang/crates.io-index"
  574. checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a"
  575. [[package]]
  576. name = "bitvec"
  577. version = "1.0.1"
  578. source = "registry+https://github.com/rust-lang/crates.io-index"
  579. checksum = "1bc2832c24239b0141d5674bb9174f9d68a8b5b3f2753311927c172ca46f7e9c"
  580. dependencies = [
  581. "funty",
  582. "radium",
  583. "tap",
  584. "wyz",
  585. ]
  586. [[package]]
  587. name = "block"
  588. version = "0.1.6"
  589. source = "registry+https://github.com/rust-lang/crates.io-index"
  590. checksum = "0d8c1fef690941d3e7788d328517591fecc684c084084702d6ff1641e993699a"
  591. [[package]]
  592. name = "block-buffer"
  593. version = "0.9.0"
  594. source = "registry+https://github.com/rust-lang/crates.io-index"
  595. checksum = "4152116fd6e9dadb291ae18fc1ec3575ed6d84c29642d97890f4b4a3417297e4"
  596. dependencies = [
  597. "generic-array",
  598. ]
  599. [[package]]
  600. name = "block-buffer"
  601. version = "0.10.4"
  602. source = "registry+https://github.com/rust-lang/crates.io-index"
  603. checksum = "3078c7629b62d3f0439517fa394996acacc5cbc91c5a20d8c658e77abd503a71"
  604. dependencies = [
  605. "generic-array",
  606. ]
  607. [[package]]
  608. name = "borsh"
  609. version = "0.10.3"
  610. source = "registry+https://github.com/rust-lang/crates.io-index"
  611. checksum = "4114279215a005bc675e386011e594e1d9b800918cea18fcadadcce864a2046b"
  612. dependencies = [
  613. "borsh-derive",
  614. "hashbrown 0.13.2",
  615. ]
  616. [[package]]
  617. name = "borsh-derive"
  618. version = "0.10.3"
  619. source = "registry+https://github.com/rust-lang/crates.io-index"
  620. checksum = "0754613691538d51f329cce9af41d7b7ca150bc973056f1156611489475f54f7"
  621. dependencies = [
  622. "borsh-derive-internal",
  623. "borsh-schema-derive-internal",
  624. "proc-macro-crate 0.1.5",
  625. "proc-macro2",
  626. "syn 1.0.109",
  627. ]
  628. [[package]]
  629. name = "borsh-derive-internal"
  630. version = "0.10.3"
  631. source = "registry+https://github.com/rust-lang/crates.io-index"
  632. checksum = "afb438156919598d2c7bad7e1c0adf3d26ed3840dbc010db1a882a65583ca2fb"
  633. dependencies = [
  634. "proc-macro2",
  635. "quote",
  636. "syn 1.0.109",
  637. ]
  638. [[package]]
  639. name = "borsh-schema-derive-internal"
  640. version = "0.10.3"
  641. source = "registry+https://github.com/rust-lang/crates.io-index"
  642. checksum = "634205cc43f74a1b9046ef87c4540ebda95696ec0f315024860cad7c5b0f5ccd"
  643. dependencies = [
  644. "proc-macro2",
  645. "quote",
  646. "syn 1.0.109",
  647. ]
  648. [[package]]
  649. name = "brotli"
  650. version = "3.3.4"
  651. source = "registry+https://github.com/rust-lang/crates.io-index"
  652. checksum = "a1a0b1dbcc8ae29329621f8d4f0d835787c1c38bb1401979b49d13b0b305ff68"
  653. dependencies = [
  654. "alloc-no-stdlib",
  655. "alloc-stdlib",
  656. "brotli-decompressor",
  657. ]
  658. [[package]]
  659. name = "brotli-decompressor"
  660. version = "2.3.4"
  661. source = "registry+https://github.com/rust-lang/crates.io-index"
  662. checksum = "4b6561fd3f895a11e8f72af2cb7d22e08366bebc2b6b57f7744c4bda27034744"
  663. dependencies = [
  664. "alloc-no-stdlib",
  665. "alloc-stdlib",
  666. ]
  667. [[package]]
  668. name = "bstr"
  669. version = "1.5.0"
  670. source = "registry+https://github.com/rust-lang/crates.io-index"
  671. checksum = "a246e68bb43f6cd9db24bea052a53e40405417c5fb372e3d1a8a7f770a564ef5"
  672. dependencies = [
  673. "memchr",
  674. "serde",
  675. ]
  676. [[package]]
  677. name = "bumpalo"
  678. version = "3.13.0"
  679. source = "registry+https://github.com/rust-lang/crates.io-index"
  680. checksum = "a3e2c3daef883ecc1b5d58c15adae93470a91d425f3532ba1695849656af3fc1"
  681. [[package]]
  682. name = "bytecheck"
  683. version = "0.6.11"
  684. source = "registry+https://github.com/rust-lang/crates.io-index"
  685. checksum = "8b6372023ac861f6e6dc89c8344a8f398fb42aaba2b5dbc649ca0c0e9dbcb627"
  686. dependencies = [
  687. "bytecheck_derive",
  688. "ptr_meta",
  689. "simdutf8",
  690. ]
  691. [[package]]
  692. name = "bytecheck_derive"
  693. version = "0.6.11"
  694. source = "registry+https://github.com/rust-lang/crates.io-index"
  695. checksum = "a7ec4c6f261935ad534c0c22dbef2201b45918860eb1c574b972bd213a76af61"
  696. dependencies = [
  697. "proc-macro2",
  698. "quote",
  699. "syn 1.0.109",
  700. ]
  701. [[package]]
  702. name = "bytemuck"
  703. version = "1.13.1"
  704. source = "registry+https://github.com/rust-lang/crates.io-index"
  705. checksum = "17febce684fd15d89027105661fec94afb475cb995fbc59d2865198446ba2eea"
  706. [[package]]
  707. name = "byteorder"
  708. version = "1.4.3"
  709. source = "registry+https://github.com/rust-lang/crates.io-index"
  710. checksum = "14c189c53d098945499cdfa7ecc63567cf3886b3332b312a5b4585d8d3a6a610"
  711. [[package]]
  712. name = "bytes"
  713. version = "1.4.0"
  714. source = "registry+https://github.com/rust-lang/crates.io-index"
  715. checksum = "89b2fd2a0dcf38d7971e2194b6b6eebab45ae01067456a7fd93d5547a61b70be"
  716. dependencies = [
  717. "serde",
  718. ]
  719. [[package]]
  720. name = "bytes-utils"
  721. version = "0.1.3"
  722. source = "registry+https://github.com/rust-lang/crates.io-index"
  723. checksum = "e47d3a8076e283f3acd27400535992edb3ba4b5bb72f8891ad8fbe7932a7d4b9"
  724. dependencies = [
  725. "bytes",
  726. "either",
  727. ]
  728. [[package]]
  729. name = "bzip2-sys"
  730. version = "0.1.11+1.0.8"
  731. source = "registry+https://github.com/rust-lang/crates.io-index"
  732. checksum = "736a955f3fa7875102d57c82b8cac37ec45224a07fd32d58f9f7a186b6cd4cdc"
  733. dependencies = [
  734. "cc",
  735. "libc",
  736. "pkg-config",
  737. ]
  738. [[package]]
  739. name = "cairo-rs"
  740. version = "0.15.12"
  741. source = "registry+https://github.com/rust-lang/crates.io-index"
  742. checksum = "c76ee391b03d35510d9fa917357c7f1855bd9a6659c95a1b392e33f49b3369bc"
  743. dependencies = [
  744. "bitflags",
  745. "cairo-sys-rs",
  746. "glib",
  747. "libc",
  748. "thiserror",
  749. ]
  750. [[package]]
  751. name = "cairo-sys-rs"
  752. version = "0.15.1"
  753. source = "registry+https://github.com/rust-lang/crates.io-index"
  754. checksum = "3c55d429bef56ac9172d25fecb85dc8068307d17acd74b377866b7a1ef25d3c8"
  755. dependencies = [
  756. "glib-sys",
  757. "libc",
  758. "system-deps 6.1.1",
  759. ]
  760. [[package]]
  761. name = "cargo_toml"
  762. version = "0.15.3"
  763. source = "registry+https://github.com/rust-lang/crates.io-index"
  764. checksum = "599aa35200ffff8f04c1925aa1acc92fa2e08874379ef42e210a80e527e60838"
  765. dependencies = [
  766. "serde",
  767. "toml 0.7.5",
  768. ]
  769. [[package]]
  770. name = "cc"
  771. version = "1.0.79"
  772. source = "registry+https://github.com/rust-lang/crates.io-index"
  773. checksum = "50d30906286121d95be3d479533b458f87493b30a4b5f79a607db8f5d11aa91f"
  774. dependencies = [
  775. "jobserver",
  776. ]
  777. [[package]]
  778. name = "cesu8"
  779. version = "1.1.0"
  780. source = "registry+https://github.com/rust-lang/crates.io-index"
  781. checksum = "6d43a04d8753f35258c91f8ec639f792891f748a1edbd759cf1dcea3382ad83c"
  782. [[package]]
  783. name = "cexpr"
  784. version = "0.6.0"
  785. source = "registry+https://github.com/rust-lang/crates.io-index"
  786. checksum = "6fac387a98bb7c37292057cffc56d62ecb629900026402633ae9160df93a8766"
  787. dependencies = [
  788. "nom 7.1.3",
  789. ]
  790. [[package]]
  791. name = "cfb"
  792. version = "0.7.3"
  793. source = "registry+https://github.com/rust-lang/crates.io-index"
  794. checksum = "d38f2da7a0a2c4ccf0065be06397cc26a81f4e528be095826eee9d4adbb8c60f"
  795. dependencies = [
  796. "byteorder",
  797. "fnv",
  798. "uuid",
  799. ]
  800. [[package]]
  801. name = "cfg-expr"
  802. version = "0.9.1"
  803. source = "registry+https://github.com/rust-lang/crates.io-index"
  804. checksum = "3431df59f28accaf4cb4eed4a9acc66bea3f3c3753aa6cdc2f024174ef232af7"
  805. dependencies = [
  806. "smallvec",
  807. ]
  808. [[package]]
  809. name = "cfg-expr"
  810. version = "0.15.3"
  811. source = "registry+https://github.com/rust-lang/crates.io-index"
  812. checksum = "215c0072ecc28f92eeb0eea38ba63ddfcb65c2828c46311d646f1a3ff5f9841c"
  813. dependencies = [
  814. "smallvec",
  815. "target-lexicon",
  816. ]
  817. [[package]]
  818. name = "cfg-if"
  819. version = "1.0.0"
  820. source = "registry+https://github.com/rust-lang/crates.io-index"
  821. checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd"
  822. [[package]]
  823. name = "chrono"
  824. version = "0.4.26"
  825. source = "registry+https://github.com/rust-lang/crates.io-index"
  826. checksum = "ec837a71355b28f6556dbd569b37b3f363091c0bd4b2e735674521b4c5fd9bc5"
  827. dependencies = [
  828. "android-tzdata",
  829. "iana-time-zone",
  830. "js-sys",
  831. "num-traits",
  832. "serde",
  833. "time 0.1.45",
  834. "wasm-bindgen",
  835. "winapi",
  836. ]
  837. [[package]]
  838. name = "chrono-tz"
  839. version = "0.6.1"
  840. source = "registry+https://github.com/rust-lang/crates.io-index"
  841. checksum = "58549f1842da3080ce63002102d5bc954c7bc843d4f47818e642abdc36253552"
  842. dependencies = [
  843. "chrono",
  844. "chrono-tz-build 0.0.2",
  845. "phf 0.10.1",
  846. ]
  847. [[package]]
  848. name = "chrono-tz"
  849. version = "0.8.2"
  850. source = "registry+https://github.com/rust-lang/crates.io-index"
  851. checksum = "cf9cc2b23599e6d7479755f3594285efb3f74a1bdca7a7374948bc831e23a552"
  852. dependencies = [
  853. "chrono",
  854. "chrono-tz-build 0.1.0",
  855. "phf 0.11.2",
  856. ]
  857. [[package]]
  858. name = "chrono-tz-build"
  859. version = "0.0.2"
  860. source = "registry+https://github.com/rust-lang/crates.io-index"
  861. checksum = "db058d493fb2f65f41861bfed7e3fe6335264a9f0f92710cab5bdf01fef09069"
  862. dependencies = [
  863. "parse-zoneinfo",
  864. "phf 0.10.1",
  865. "phf_codegen 0.10.0",
  866. ]
  867. [[package]]
  868. name = "chrono-tz-build"
  869. version = "0.1.0"
  870. source = "registry+https://github.com/rust-lang/crates.io-index"
  871. checksum = "d9998fb9f7e9b2111641485bf8beb32f92945f97f92a3d061f744cfef335f751"
  872. dependencies = [
  873. "parse-zoneinfo",
  874. "phf 0.11.2",
  875. "phf_codegen 0.11.2",
  876. ]
  877. [[package]]
  878. name = "clang-sys"
  879. version = "1.6.1"
  880. source = "registry+https://github.com/rust-lang/crates.io-index"
  881. checksum = "c688fc74432808e3eb684cae8830a86be1d66a2bd58e1f248ed0960a590baf6f"
  882. dependencies = [
  883. "glob",
  884. "libc",
  885. "libloading",
  886. ]
  887. [[package]]
  888. name = "cmd_lib"
  889. version = "1.3.0"
  890. source = "registry+https://github.com/rust-lang/crates.io-index"
  891. checksum = "0ba0f413777386d37f85afa5242f277a7b461905254c1af3c339d4af06800f62"
  892. dependencies = [
  893. "cmd_lib_macros",
  894. "faccess",
  895. "lazy_static",
  896. "log",
  897. "os_pipe",
  898. ]
  899. [[package]]
  900. name = "cmd_lib_macros"
  901. version = "1.3.0"
  902. source = "registry+https://github.com/rust-lang/crates.io-index"
  903. checksum = "9e66605092ff6c6e37e0246601ae6c3f62dc1880e0599359b5f303497c112dc0"
  904. dependencies = [
  905. "proc-macro-error",
  906. "proc-macro2",
  907. "quote",
  908. "syn 1.0.109",
  909. ]
  910. [[package]]
  911. name = "cocoa"
  912. version = "0.24.1"
  913. source = "registry+https://github.com/rust-lang/crates.io-index"
  914. checksum = "f425db7937052c684daec3bd6375c8abe2d146dca4b8b143d6db777c39138f3a"
  915. dependencies = [
  916. "bitflags",
  917. "block",
  918. "cocoa-foundation",
  919. "core-foundation",
  920. "core-graphics",
  921. "foreign-types",
  922. "libc",
  923. "objc",
  924. ]
  925. [[package]]
  926. name = "cocoa-foundation"
  927. version = "0.1.1"
  928. source = "registry+https://github.com/rust-lang/crates.io-index"
  929. checksum = "931d3837c286f56e3c58423ce4eba12d08db2374461a785c86f672b08b5650d6"
  930. dependencies = [
  931. "bitflags",
  932. "block",
  933. "core-foundation",
  934. "core-graphics-types",
  935. "foreign-types",
  936. "libc",
  937. "objc",
  938. ]
  939. [[package]]
  940. name = "collab"
  941. version = "0.1.0"
  942. dependencies = [
  943. "anyhow",
  944. "bytes",
  945. "lib0",
  946. "parking_lot 0.12.1",
  947. "serde",
  948. "serde_json",
  949. "thiserror",
  950. "tokio",
  951. "tracing",
  952. "y-sync",
  953. "yrs",
  954. ]
  955. [[package]]
  956. name = "collab-client-ws"
  957. version = "0.1.0"
  958. dependencies = [
  959. "bytes",
  960. "collab-sync",
  961. "futures-util",
  962. "serde",
  963. "serde_json",
  964. "thiserror",
  965. "tokio",
  966. "tokio-retry",
  967. "tokio-stream",
  968. "tokio-tungstenite 0.18.0",
  969. "tracing",
  970. ]
  971. [[package]]
  972. name = "collab-database"
  973. version = "0.1.0"
  974. dependencies = [
  975. "anyhow",
  976. "async-trait",
  977. "base64 0.21.2",
  978. "chrono",
  979. "collab",
  980. "collab-derive",
  981. "collab-persistence",
  982. "collab-plugins",
  983. "lazy_static",
  984. "lru",
  985. "nanoid",
  986. "parking_lot 0.12.1",
  987. "serde",
  988. "serde_json",
  989. "serde_repr",
  990. "thiserror",
  991. "tokio",
  992. "tokio-stream",
  993. "tracing",
  994. "uuid",
  995. ]
  996. [[package]]
  997. name = "collab-derive"
  998. version = "0.1.0"
  999. dependencies = [
  1000. "proc-macro2",
  1001. "quote",
  1002. "serde_json",
  1003. "syn 1.0.109",
  1004. "yrs",
  1005. ]
  1006. [[package]]
  1007. name = "collab-document"
  1008. version = "0.1.0"
  1009. dependencies = [
  1010. "anyhow",
  1011. "collab",
  1012. "collab-derive",
  1013. "collab-persistence",
  1014. "nanoid",
  1015. "parking_lot 0.12.1",
  1016. "serde",
  1017. "serde_json",
  1018. "thiserror",
  1019. "tokio",
  1020. "tokio-stream",
  1021. "tracing",
  1022. ]
  1023. [[package]]
  1024. name = "collab-folder"
  1025. version = "0.1.0"
  1026. dependencies = [
  1027. "anyhow",
  1028. "chrono",
  1029. "collab",
  1030. "collab-derive",
  1031. "collab-persistence",
  1032. "parking_lot 0.12.1",
  1033. "serde",
  1034. "serde_json",
  1035. "serde_repr",
  1036. "thiserror",
  1037. "tokio",
  1038. "tokio-stream",
  1039. "tracing",
  1040. ]
  1041. [[package]]
  1042. name = "collab-persistence"
  1043. version = "0.1.0"
  1044. dependencies = [
  1045. "bincode",
  1046. "chrono",
  1047. "lazy_static",
  1048. "lib0",
  1049. "parking_lot 0.12.1",
  1050. "rocksdb",
  1051. "serde",
  1052. "sled",
  1053. "smallvec",
  1054. "thiserror",
  1055. "tokio",
  1056. "tracing",
  1057. "yrs",
  1058. ]
  1059. [[package]]
  1060. name = "collab-plugins"
  1061. version = "0.1.0"
  1062. dependencies = [
  1063. "anyhow",
  1064. "async-trait",
  1065. "aws-config",
  1066. "aws-credential-types",
  1067. "aws-sdk-dynamodb",
  1068. "base64 0.21.2",
  1069. "collab",
  1070. "collab-client-ws",
  1071. "collab-persistence",
  1072. "collab-sync",
  1073. "futures-util",
  1074. "parking_lot 0.12.1",
  1075. "postgrest",
  1076. "rand 0.8.5",
  1077. "refinery",
  1078. "rusoto_credential",
  1079. "serde",
  1080. "serde_json",
  1081. "similar 2.2.1",
  1082. "thiserror",
  1083. "tokio",
  1084. "tokio-postgres",
  1085. "tokio-retry",
  1086. "tokio-stream",
  1087. "tracing",
  1088. "y-sync",
  1089. "yrs",
  1090. ]
  1091. [[package]]
  1092. name = "collab-sync"
  1093. version = "0.1.0"
  1094. dependencies = [
  1095. "bytes",
  1096. "collab",
  1097. "futures-util",
  1098. "lib0",
  1099. "md5",
  1100. "parking_lot 0.12.1",
  1101. "serde",
  1102. "serde_json",
  1103. "thiserror",
  1104. "tokio",
  1105. "tokio-stream",
  1106. "tokio-util",
  1107. "tracing",
  1108. "y-sync",
  1109. "yrs",
  1110. ]
  1111. [[package]]
  1112. name = "color_quant"
  1113. version = "1.1.0"
  1114. source = "registry+https://github.com/rust-lang/crates.io-index"
  1115. checksum = "3d7b894f5411737b7867f4827955924d7c254fc9f4d91a6aad6b097804b1018b"
  1116. [[package]]
  1117. name = "combine"
  1118. version = "4.6.6"
  1119. source = "registry+https://github.com/rust-lang/crates.io-index"
  1120. checksum = "35ed6e9d84f0b51a7f52daf1c7d71dd136fd7a3f41a8462b8cdb8c78d920fad4"
  1121. dependencies = [
  1122. "bytes",
  1123. "memchr",
  1124. ]
  1125. [[package]]
  1126. name = "config"
  1127. version = "0.10.1"
  1128. source = "registry+https://github.com/rust-lang/crates.io-index"
  1129. checksum = "19b076e143e1d9538dde65da30f8481c2a6c44040edb8e02b9bf1351edb92ce3"
  1130. dependencies = [
  1131. "lazy_static",
  1132. "nom 5.1.3",
  1133. "serde",
  1134. "yaml-rust",
  1135. ]
  1136. [[package]]
  1137. name = "console"
  1138. version = "0.14.1"
  1139. source = "registry+https://github.com/rust-lang/crates.io-index"
  1140. checksum = "3993e6445baa160675931ec041a5e03ca84b9c6e32a056150d3aa2bdda0a1f45"
  1141. dependencies = [
  1142. "encode_unicode",
  1143. "lazy_static",
  1144. "libc",
  1145. "regex",
  1146. "terminal_size",
  1147. "unicode-width",
  1148. "winapi",
  1149. ]
  1150. [[package]]
  1151. name = "convert_case"
  1152. version = "0.4.0"
  1153. source = "registry+https://github.com/rust-lang/crates.io-index"
  1154. checksum = "6245d59a3e82a7fc217c5828a6692dbc6dfb63a0c8c90495621f7b9d79704a0e"
  1155. [[package]]
  1156. name = "core-foundation"
  1157. version = "0.9.3"
  1158. source = "registry+https://github.com/rust-lang/crates.io-index"
  1159. checksum = "194a7a9e6de53fa55116934067c844d9d749312f75c6f6d0980e8c252f8c2146"
  1160. dependencies = [
  1161. "core-foundation-sys",
  1162. "libc",
  1163. ]
  1164. [[package]]
  1165. name = "core-foundation-sys"
  1166. version = "0.8.4"
  1167. source = "registry+https://github.com/rust-lang/crates.io-index"
  1168. checksum = "e496a50fda8aacccc86d7529e2c1e0892dbd0f898a6b5645b5561b89c3210efa"
  1169. [[package]]
  1170. name = "core-graphics"
  1171. version = "0.22.3"
  1172. source = "registry+https://github.com/rust-lang/crates.io-index"
  1173. checksum = "2581bbab3b8ffc6fcbd550bf46c355135d16e9ff2a6ea032ad6b9bf1d7efe4fb"
  1174. dependencies = [
  1175. "bitflags",
  1176. "core-foundation",
  1177. "core-graphics-types",
  1178. "foreign-types",
  1179. "libc",
  1180. ]
  1181. [[package]]
  1182. name = "core-graphics-types"
  1183. version = "0.1.2"
  1184. source = "registry+https://github.com/rust-lang/crates.io-index"
  1185. checksum = "2bb142d41022986c1d8ff29103a1411c8a3dfad3552f87a4f8dc50d61d4f4e33"
  1186. dependencies = [
  1187. "bitflags",
  1188. "core-foundation",
  1189. "libc",
  1190. ]
  1191. [[package]]
  1192. name = "cpufeatures"
  1193. version = "0.2.8"
  1194. source = "registry+https://github.com/rust-lang/crates.io-index"
  1195. checksum = "03e69e28e9f7f77debdedbaafa2866e1de9ba56df55a8bd7cfc724c25a09987c"
  1196. dependencies = [
  1197. "libc",
  1198. ]
  1199. [[package]]
  1200. name = "crc32fast"
  1201. version = "1.3.2"
  1202. source = "registry+https://github.com/rust-lang/crates.io-index"
  1203. checksum = "b540bd8bc810d3885c6ea91e2018302f68baba2129ab3e88f32389ee9370880d"
  1204. dependencies = [
  1205. "cfg-if",
  1206. ]
  1207. [[package]]
  1208. name = "crossbeam-channel"
  1209. version = "0.5.8"
  1210. source = "registry+https://github.com/rust-lang/crates.io-index"
  1211. checksum = "a33c2bf77f2df06183c3aa30d1e96c0695a313d4f9c453cc3762a6db39f99200"
  1212. dependencies = [
  1213. "cfg-if",
  1214. "crossbeam-utils",
  1215. ]
  1216. [[package]]
  1217. name = "crossbeam-deque"
  1218. version = "0.8.3"
  1219. source = "registry+https://github.com/rust-lang/crates.io-index"
  1220. checksum = "ce6fd6f855243022dcecf8702fef0c297d4338e226845fe067f6341ad9fa0cef"
  1221. dependencies = [
  1222. "cfg-if",
  1223. "crossbeam-epoch",
  1224. "crossbeam-utils",
  1225. ]
  1226. [[package]]
  1227. name = "crossbeam-epoch"
  1228. version = "0.9.15"
  1229. source = "registry+https://github.com/rust-lang/crates.io-index"
  1230. checksum = "ae211234986c545741a7dc064309f67ee1e5ad243d0e48335adc0484d960bcc7"
  1231. dependencies = [
  1232. "autocfg",
  1233. "cfg-if",
  1234. "crossbeam-utils",
  1235. "memoffset",
  1236. "scopeguard",
  1237. ]
  1238. [[package]]
  1239. name = "crossbeam-utils"
  1240. version = "0.8.16"
  1241. source = "registry+https://github.com/rust-lang/crates.io-index"
  1242. checksum = "5a22b2d63d4d1dc0b7f1b6b2747dd0088008a9be28b6ddf0b1e7d335e3037294"
  1243. dependencies = [
  1244. "cfg-if",
  1245. ]
  1246. [[package]]
  1247. name = "crypto-common"
  1248. version = "0.1.6"
  1249. source = "registry+https://github.com/rust-lang/crates.io-index"
  1250. checksum = "1bfb12502f3fc46cca1bb51ac28df9d618d813cdc3d2f25b9fe775a34af26bb3"
  1251. dependencies = [
  1252. "generic-array",
  1253. "typenum",
  1254. ]
  1255. [[package]]
  1256. name = "cssparser"
  1257. version = "0.27.2"
  1258. source = "registry+https://github.com/rust-lang/crates.io-index"
  1259. checksum = "754b69d351cdc2d8ee09ae203db831e005560fc6030da058f86ad60c92a9cb0a"
  1260. dependencies = [
  1261. "cssparser-macros",
  1262. "dtoa-short",
  1263. "itoa 0.4.8",
  1264. "matches",
  1265. "phf 0.8.0",
  1266. "proc-macro2",
  1267. "quote",
  1268. "smallvec",
  1269. "syn 1.0.109",
  1270. ]
  1271. [[package]]
  1272. name = "cssparser-macros"
  1273. version = "0.6.1"
  1274. source = "registry+https://github.com/rust-lang/crates.io-index"
  1275. checksum = "13b588ba4ac1a99f7f2964d24b3d896ddc6bf847ee3855dbd4366f058cfcd331"
  1276. dependencies = [
  1277. "quote",
  1278. "syn 2.0.22",
  1279. ]
  1280. [[package]]
  1281. name = "csv"
  1282. version = "1.2.2"
  1283. source = "registry+https://github.com/rust-lang/crates.io-index"
  1284. checksum = "626ae34994d3d8d668f4269922248239db4ae42d538b14c398b74a52208e8086"
  1285. dependencies = [
  1286. "csv-core",
  1287. "itoa 1.0.6",
  1288. "ryu",
  1289. "serde",
  1290. ]
  1291. [[package]]
  1292. name = "csv-core"
  1293. version = "0.1.10"
  1294. source = "registry+https://github.com/rust-lang/crates.io-index"
  1295. checksum = "2b2466559f260f48ad25fe6317b3c8dac77b5bdb5763ac7d9d6103530663bc90"
  1296. dependencies = [
  1297. "memchr",
  1298. ]
  1299. [[package]]
  1300. name = "ctor"
  1301. version = "0.1.26"
  1302. source = "registry+https://github.com/rust-lang/crates.io-index"
  1303. checksum = "6d2301688392eb071b0bf1a37be05c469d3cc4dbbd95df672fe28ab021e6a096"
  1304. dependencies = [
  1305. "quote",
  1306. "syn 1.0.109",
  1307. ]
  1308. [[package]]
  1309. name = "darling"
  1310. version = "0.20.1"
  1311. source = "registry+https://github.com/rust-lang/crates.io-index"
  1312. checksum = "0558d22a7b463ed0241e993f76f09f30b126687447751a8638587b864e4b3944"
  1313. dependencies = [
  1314. "darling_core",
  1315. "darling_macro",
  1316. ]
  1317. [[package]]
  1318. name = "darling_core"
  1319. version = "0.20.1"
  1320. source = "registry+https://github.com/rust-lang/crates.io-index"
  1321. checksum = "ab8bfa2e259f8ee1ce5e97824a3c55ec4404a0d772ca7fa96bf19f0752a046eb"
  1322. dependencies = [
  1323. "fnv",
  1324. "ident_case",
  1325. "proc-macro2",
  1326. "quote",
  1327. "strsim",
  1328. "syn 2.0.22",
  1329. ]
  1330. [[package]]
  1331. name = "darling_macro"
  1332. version = "0.20.1"
  1333. source = "registry+https://github.com/rust-lang/crates.io-index"
  1334. checksum = "29a358ff9f12ec09c3e61fef9b5a9902623a695a46a917b07f269bff1445611a"
  1335. dependencies = [
  1336. "darling_core",
  1337. "quote",
  1338. "syn 2.0.22",
  1339. ]
  1340. [[package]]
  1341. name = "dashmap"
  1342. version = "5.4.0"
  1343. source = "registry+https://github.com/rust-lang/crates.io-index"
  1344. checksum = "907076dfda823b0b36d2a1bb5f90c96660a5bbcd7729e10727f07858f22c4edc"
  1345. dependencies = [
  1346. "cfg-if",
  1347. "hashbrown 0.12.3",
  1348. "lock_api",
  1349. "once_cell",
  1350. "parking_lot_core 0.9.8",
  1351. ]
  1352. [[package]]
  1353. name = "deadpool"
  1354. version = "0.9.5"
  1355. source = "registry+https://github.com/rust-lang/crates.io-index"
  1356. checksum = "421fe0f90f2ab22016f32a9881be5134fdd71c65298917084b0c7477cbc3856e"
  1357. dependencies = [
  1358. "async-trait",
  1359. "deadpool-runtime",
  1360. "num_cpus",
  1361. "retain_mut",
  1362. "tokio",
  1363. ]
  1364. [[package]]
  1365. name = "deadpool-postgres"
  1366. version = "0.10.5"
  1367. source = "registry+https://github.com/rust-lang/crates.io-index"
  1368. checksum = "836a24a9d49deefe610b8b60c767a7412e9a931d79a89415cd2d2d71630ca8d7"
  1369. dependencies = [
  1370. "deadpool",
  1371. "log",
  1372. "tokio",
  1373. "tokio-postgres",
  1374. ]
  1375. [[package]]
  1376. name = "deadpool-runtime"
  1377. version = "0.1.2"
  1378. source = "registry+https://github.com/rust-lang/crates.io-index"
  1379. checksum = "eaa37046cc0f6c3cc6090fbdbf73ef0b8ef4cfcc37f6befc0020f63e8cf121e1"
  1380. dependencies = [
  1381. "tokio",
  1382. ]
  1383. [[package]]
  1384. name = "derivative"
  1385. version = "2.2.0"
  1386. source = "registry+https://github.com/rust-lang/crates.io-index"
  1387. checksum = "fcc3dd5e9e9c0b295d6e1e4d811fb6f157d5ffd784b8d202fc62eac8035a770b"
  1388. dependencies = [
  1389. "proc-macro2",
  1390. "quote",
  1391. "syn 1.0.109",
  1392. ]
  1393. [[package]]
  1394. name = "derive_more"
  1395. version = "0.99.17"
  1396. source = "registry+https://github.com/rust-lang/crates.io-index"
  1397. checksum = "4fb810d30a7c1953f91334de7244731fc3f3c10d7fe163338a35b9f640960321"
  1398. dependencies = [
  1399. "convert_case",
  1400. "proc-macro2",
  1401. "quote",
  1402. "rustc_version",
  1403. "syn 1.0.109",
  1404. ]
  1405. [[package]]
  1406. name = "deunicode"
  1407. version = "0.4.3"
  1408. source = "registry+https://github.com/rust-lang/crates.io-index"
  1409. checksum = "850878694b7933ca4c9569d30a34b55031b9b139ee1fc7b94a527c4ef960d690"
  1410. [[package]]
  1411. name = "diesel"
  1412. version = "1.4.8"
  1413. source = "registry+https://github.com/rust-lang/crates.io-index"
  1414. checksum = "b28135ecf6b7d446b43e27e225622a038cc4e2930a1022f51cdb97ada19b8e4d"
  1415. dependencies = [
  1416. "byteorder",
  1417. "diesel_derives",
  1418. "libsqlite3-sys",
  1419. ]
  1420. [[package]]
  1421. name = "diesel_derives"
  1422. version = "1.4.1"
  1423. source = "registry+https://github.com/rust-lang/crates.io-index"
  1424. checksum = "45f5098f628d02a7a0f68ddba586fb61e80edec3bdc1be3b921f4ceec60858d3"
  1425. dependencies = [
  1426. "proc-macro2",
  1427. "quote",
  1428. "syn 1.0.109",
  1429. ]
  1430. [[package]]
  1431. name = "diesel_migrations"
  1432. version = "1.4.0"
  1433. source = "registry+https://github.com/rust-lang/crates.io-index"
  1434. checksum = "bf3cde8413353dc7f5d72fa8ce0b99a560a359d2c5ef1e5817ca731cd9008f4c"
  1435. dependencies = [
  1436. "migrations_internals",
  1437. "migrations_macros",
  1438. ]
  1439. [[package]]
  1440. name = "digest"
  1441. version = "0.9.0"
  1442. source = "registry+https://github.com/rust-lang/crates.io-index"
  1443. checksum = "d3dd60d1080a57a05ab032377049e0591415d2b31afd7028356dbf3cc6dcb066"
  1444. dependencies = [
  1445. "generic-array",
  1446. ]
  1447. [[package]]
  1448. name = "digest"
  1449. version = "0.10.7"
  1450. source = "registry+https://github.com/rust-lang/crates.io-index"
  1451. checksum = "9ed9a281f7bc9b7576e61468ba615a66a5c8cfdff42420a70aa82701a3b1e292"
  1452. dependencies = [
  1453. "block-buffer 0.10.4",
  1454. "crypto-common",
  1455. "subtle",
  1456. ]
  1457. [[package]]
  1458. name = "dirs-next"
  1459. version = "2.0.0"
  1460. source = "registry+https://github.com/rust-lang/crates.io-index"
  1461. checksum = "b98cf8ebf19c3d1b223e151f99a4f9f0690dca41414773390fc824184ac833e1"
  1462. dependencies = [
  1463. "cfg-if",
  1464. "dirs-sys-next",
  1465. ]
  1466. [[package]]
  1467. name = "dirs-sys-next"
  1468. version = "0.1.2"
  1469. source = "registry+https://github.com/rust-lang/crates.io-index"
  1470. checksum = "4ebda144c4fe02d1f7ea1a7d9641b6fc6b580adcfa024ae48797ecdeb6825b4d"
  1471. dependencies = [
  1472. "libc",
  1473. "redox_users",
  1474. "winapi",
  1475. ]
  1476. [[package]]
  1477. name = "dispatch"
  1478. version = "0.2.0"
  1479. source = "registry+https://github.com/rust-lang/crates.io-index"
  1480. checksum = "bd0c93bb4b0c6d9b77f4435b0ae98c24d17f1c45b2ff844c6151a07256ca923b"
  1481. [[package]]
  1482. name = "dtoa"
  1483. version = "1.0.6"
  1484. source = "registry+https://github.com/rust-lang/crates.io-index"
  1485. checksum = "65d09067bfacaa79114679b279d7f5885b53295b1e2cfb4e79c8e4bd3d633169"
  1486. [[package]]
  1487. name = "dtoa-short"
  1488. version = "0.3.4"
  1489. source = "registry+https://github.com/rust-lang/crates.io-index"
  1490. checksum = "dbaceec3c6e4211c79e7b1800fb9680527106beb2f9c51904a3210c03a448c74"
  1491. dependencies = [
  1492. "dtoa",
  1493. ]
  1494. [[package]]
  1495. name = "dunce"
  1496. version = "1.0.4"
  1497. source = "registry+https://github.com/rust-lang/crates.io-index"
  1498. checksum = "56ce8c6da7551ec6c462cbaf3bfbc75131ebbfa1c944aeaa9dab51ca1c5f0c3b"
  1499. [[package]]
  1500. name = "dyn-clone"
  1501. version = "1.0.11"
  1502. source = "registry+https://github.com/rust-lang/crates.io-index"
  1503. checksum = "68b0cf012f1230e43cd00ebb729c6bb58707ecfa8ad08b52ef3a4ccd2697fc30"
  1504. [[package]]
  1505. name = "either"
  1506. version = "1.8.1"
  1507. source = "registry+https://github.com/rust-lang/crates.io-index"
  1508. checksum = "7fcaabb2fef8c910e7f4c7ce9f67a1283a1715879a7c230ca9d6d1ae31f16d91"
  1509. [[package]]
  1510. name = "embed-resource"
  1511. version = "2.1.1"
  1512. source = "registry+https://github.com/rust-lang/crates.io-index"
  1513. checksum = "80663502655af01a2902dff3f06869330782267924bf1788410b74edcd93770a"
  1514. dependencies = [
  1515. "cc",
  1516. "rustc_version",
  1517. "toml 0.7.5",
  1518. "vswhom",
  1519. "winreg 0.11.0",
  1520. ]
  1521. [[package]]
  1522. name = "embed_plist"
  1523. version = "1.2.2"
  1524. source = "registry+https://github.com/rust-lang/crates.io-index"
  1525. checksum = "4ef6b89e5b37196644d8796de5268852ff179b44e96276cf4290264843743bb7"
  1526. [[package]]
  1527. name = "encode_unicode"
  1528. version = "0.3.6"
  1529. source = "registry+https://github.com/rust-lang/crates.io-index"
  1530. checksum = "a357d28ed41a50f9c765dbfe56cbc04a64e53e5fc58ba79fbc34c10ef3df831f"
  1531. [[package]]
  1532. name = "encoding_rs"
  1533. version = "0.8.32"
  1534. source = "registry+https://github.com/rust-lang/crates.io-index"
  1535. checksum = "071a31f4ee85403370b58aca746f01041ede6f0da2730960ad001edc2b71b394"
  1536. dependencies = [
  1537. "cfg-if",
  1538. ]
  1539. [[package]]
  1540. name = "equivalent"
  1541. version = "1.0.0"
  1542. source = "registry+https://github.com/rust-lang/crates.io-index"
  1543. checksum = "88bffebc5d80432c9b140ee17875ff173a8ab62faad5b257da912bd2f6c1c0a1"
  1544. [[package]]
  1545. name = "errno"
  1546. version = "0.3.1"
  1547. source = "registry+https://github.com/rust-lang/crates.io-index"
  1548. checksum = "4bcfec3a70f97c962c307b2d2c56e358cf1d00b558d74262b5f929ee8cc7e73a"
  1549. dependencies = [
  1550. "errno-dragonfly",
  1551. "libc",
  1552. "windows-sys 0.48.0",
  1553. ]
  1554. [[package]]
  1555. name = "errno-dragonfly"
  1556. version = "0.1.2"
  1557. source = "registry+https://github.com/rust-lang/crates.io-index"
  1558. checksum = "aa68f1b12764fab894d2755d2518754e71b4fd80ecfb822714a1206c2aab39bf"
  1559. dependencies = [
  1560. "cc",
  1561. "libc",
  1562. ]
  1563. [[package]]
  1564. name = "error-chain"
  1565. version = "0.12.0"
  1566. source = "registry+https://github.com/rust-lang/crates.io-index"
  1567. checksum = "07e791d3be96241c77c43846b665ef1384606da2cd2a48730abe606a12906e02"
  1568. dependencies = [
  1569. "backtrace",
  1570. ]
  1571. [[package]]
  1572. name = "faccess"
  1573. version = "0.2.4"
  1574. source = "registry+https://github.com/rust-lang/crates.io-index"
  1575. checksum = "59ae66425802d6a903e268ae1a08b8c38ba143520f227a205edf4e9c7e3e26d5"
  1576. dependencies = [
  1577. "bitflags",
  1578. "libc",
  1579. "winapi",
  1580. ]
  1581. [[package]]
  1582. name = "fallible-iterator"
  1583. version = "0.2.0"
  1584. source = "registry+https://github.com/rust-lang/crates.io-index"
  1585. checksum = "4443176a9f2c162692bd3d352d745ef9413eec5782a80d8fd6f8a1ac692a07f7"
  1586. [[package]]
  1587. name = "fancy-regex"
  1588. version = "0.10.0"
  1589. source = "registry+https://github.com/rust-lang/crates.io-index"
  1590. checksum = "0678ab2d46fa5195aaf59ad034c083d351377d4af57f3e073c074d0da3e3c766"
  1591. dependencies = [
  1592. "bit-set",
  1593. "regex",
  1594. ]
  1595. [[package]]
  1596. name = "fancy-regex"
  1597. version = "0.11.0"
  1598. source = "registry+https://github.com/rust-lang/crates.io-index"
  1599. checksum = "b95f7c0680e4142284cf8b22c14a476e87d61b004a3a0861872b32ef7ead40a2"
  1600. dependencies = [
  1601. "bit-set",
  1602. "regex",
  1603. ]
  1604. [[package]]
  1605. name = "fastrand"
  1606. version = "1.9.0"
  1607. source = "registry+https://github.com/rust-lang/crates.io-index"
  1608. checksum = "e51093e27b0797c359783294ca4f0a911c270184cb10f85783b118614a1501be"
  1609. dependencies = [
  1610. "instant",
  1611. ]
  1612. [[package]]
  1613. name = "fdeflate"
  1614. version = "0.3.0"
  1615. source = "registry+https://github.com/rust-lang/crates.io-index"
  1616. checksum = "d329bdeac514ee06249dabc27877490f17f5d371ec693360768b838e19f3ae10"
  1617. dependencies = [
  1618. "simd-adler32",
  1619. ]
  1620. [[package]]
  1621. name = "field-offset"
  1622. version = "0.3.6"
  1623. source = "registry+https://github.com/rust-lang/crates.io-index"
  1624. checksum = "38e2275cc4e4fc009b0669731a1e5ab7ebf11f469eaede2bab9309a5b4d6057f"
  1625. dependencies = [
  1626. "memoffset",
  1627. "rustc_version",
  1628. ]
  1629. [[package]]
  1630. name = "filetime"
  1631. version = "0.2.21"
  1632. source = "registry+https://github.com/rust-lang/crates.io-index"
  1633. checksum = "5cbc844cecaee9d4443931972e1289c8ff485cb4cc2767cb03ca139ed6885153"
  1634. dependencies = [
  1635. "cfg-if",
  1636. "libc",
  1637. "redox_syscall 0.2.16",
  1638. "windows-sys 0.48.0",
  1639. ]
  1640. [[package]]
  1641. name = "flate2"
  1642. version = "1.0.26"
  1643. source = "registry+https://github.com/rust-lang/crates.io-index"
  1644. checksum = "3b9429470923de8e8cbd4d2dc513535400b4b3fef0319fb5c4e1f520a7bef743"
  1645. dependencies = [
  1646. "crc32fast",
  1647. "miniz_oxide 0.7.1",
  1648. ]
  1649. [[package]]
  1650. name = "flowy-ast"
  1651. version = "0.1.0"
  1652. dependencies = [
  1653. "proc-macro2",
  1654. "quote",
  1655. "syn 1.0.109",
  1656. ]
  1657. [[package]]
  1658. name = "flowy-codegen"
  1659. version = "0.1.0"
  1660. dependencies = [
  1661. "cmd_lib",
  1662. "console",
  1663. "fancy-regex 0.10.0",
  1664. "flowy-ast",
  1665. "itertools",
  1666. "lazy_static",
  1667. "log",
  1668. "phf 0.8.0",
  1669. "protoc-bin-vendored",
  1670. "protoc-rust",
  1671. "quote",
  1672. "serde",
  1673. "serde_json",
  1674. "similar 1.3.0",
  1675. "syn 1.0.109",
  1676. "tera",
  1677. "toml 0.5.11",
  1678. "walkdir",
  1679. ]
  1680. [[package]]
  1681. name = "flowy-config"
  1682. version = "0.1.0"
  1683. dependencies = [
  1684. "appflowy-integrate",
  1685. "bytes",
  1686. "flowy-codegen",
  1687. "flowy-derive",
  1688. "flowy-error",
  1689. "flowy-server",
  1690. "flowy-sqlite",
  1691. "lib-dispatch",
  1692. "protobuf",
  1693. "strum_macros",
  1694. ]
  1695. [[package]]
  1696. name = "flowy-core"
  1697. version = "0.1.0"
  1698. dependencies = [
  1699. "appflowy-integrate",
  1700. "bytes",
  1701. "diesel",
  1702. "flowy-config",
  1703. "flowy-database2",
  1704. "flowy-document2",
  1705. "flowy-error",
  1706. "flowy-folder2",
  1707. "flowy-net",
  1708. "flowy-server",
  1709. "flowy-sqlite",
  1710. "flowy-task",
  1711. "flowy-user",
  1712. "futures-core",
  1713. "lib-dispatch",
  1714. "lib-infra",
  1715. "lib-log",
  1716. "lib-ws",
  1717. "parking_lot 0.12.1",
  1718. "serde",
  1719. "serde_json",
  1720. "serde_repr",
  1721. "tokio",
  1722. "tracing",
  1723. "uuid",
  1724. ]
  1725. [[package]]
  1726. name = "flowy-database2"
  1727. version = "0.1.0"
  1728. dependencies = [
  1729. "anyhow",
  1730. "appflowy-integrate",
  1731. "async-stream",
  1732. "async-trait",
  1733. "bytes",
  1734. "chrono",
  1735. "chrono-tz 0.8.2",
  1736. "collab",
  1737. "collab-database",
  1738. "csv",
  1739. "dashmap",
  1740. "fancy-regex 0.10.0",
  1741. "flowy-codegen",
  1742. "flowy-derive",
  1743. "flowy-error",
  1744. "flowy-notification",
  1745. "flowy-task",
  1746. "futures",
  1747. "indexmap 1.9.3",
  1748. "lazy_static",
  1749. "lib-dispatch",
  1750. "lib-infra",
  1751. "nanoid",
  1752. "parking_lot 0.12.1",
  1753. "protobuf",
  1754. "rayon",
  1755. "rust_decimal",
  1756. "rusty-money",
  1757. "serde",
  1758. "serde_json",
  1759. "serde_repr",
  1760. "strum",
  1761. "strum_macros",
  1762. "tokio",
  1763. "tracing",
  1764. "url",
  1765. ]
  1766. [[package]]
  1767. name = "flowy-derive"
  1768. version = "0.1.0"
  1769. dependencies = [
  1770. "dashmap",
  1771. "flowy-ast",
  1772. "flowy-codegen",
  1773. "lazy_static",
  1774. "proc-macro2",
  1775. "quote",
  1776. "serde_json",
  1777. "syn 1.0.109",
  1778. "walkdir",
  1779. ]
  1780. [[package]]
  1781. name = "flowy-document2"
  1782. version = "0.1.0"
  1783. dependencies = [
  1784. "anyhow",
  1785. "appflowy-integrate",
  1786. "bytes",
  1787. "collab",
  1788. "collab-document",
  1789. "flowy-codegen",
  1790. "flowy-derive",
  1791. "flowy-error",
  1792. "flowy-notification",
  1793. "futures",
  1794. "indexmap 1.9.3",
  1795. "lib-dispatch",
  1796. "lib-infra",
  1797. "nanoid",
  1798. "parking_lot 0.12.1",
  1799. "protobuf",
  1800. "serde",
  1801. "serde_json",
  1802. "strum",
  1803. "strum_macros",
  1804. "tokio",
  1805. "tokio-stream",
  1806. "tracing",
  1807. "uuid",
  1808. ]
  1809. [[package]]
  1810. name = "flowy-error"
  1811. version = "0.1.0"
  1812. dependencies = [
  1813. "anyhow",
  1814. "bytes",
  1815. "collab-database",
  1816. "collab-document",
  1817. "flowy-codegen",
  1818. "flowy-derive",
  1819. "flowy-sqlite",
  1820. "http-error-code",
  1821. "lib-dispatch",
  1822. "protobuf",
  1823. "r2d2",
  1824. "reqwest",
  1825. "serde",
  1826. "serde_json",
  1827. "serde_repr",
  1828. "thiserror",
  1829. ]
  1830. [[package]]
  1831. name = "flowy-folder2"
  1832. version = "0.1.0"
  1833. dependencies = [
  1834. "appflowy-integrate",
  1835. "bytes",
  1836. "chrono",
  1837. "collab",
  1838. "collab-folder",
  1839. "flowy-codegen",
  1840. "flowy-derive",
  1841. "flowy-error",
  1842. "flowy-notification",
  1843. "lazy_static",
  1844. "lib-dispatch",
  1845. "lib-infra",
  1846. "nanoid",
  1847. "parking_lot 0.12.1",
  1848. "protobuf",
  1849. "strum",
  1850. "strum_macros",
  1851. "tokio",
  1852. "tokio-stream",
  1853. "tracing",
  1854. "unicode-segmentation",
  1855. "uuid",
  1856. ]
  1857. [[package]]
  1858. name = "flowy-net"
  1859. version = "0.1.0"
  1860. dependencies = [
  1861. "anyhow",
  1862. "bytes",
  1863. "flowy-codegen",
  1864. "flowy-derive",
  1865. "flowy-error",
  1866. "lib-dispatch",
  1867. "protobuf",
  1868. "strum_macros",
  1869. "thiserror",
  1870. "tracing",
  1871. ]
  1872. [[package]]
  1873. name = "flowy-notification"
  1874. version = "0.1.0"
  1875. dependencies = [
  1876. "bytes",
  1877. "flowy-codegen",
  1878. "flowy-derive",
  1879. "lazy_static",
  1880. "lib-dispatch",
  1881. "protobuf",
  1882. "serde",
  1883. "tracing",
  1884. ]
  1885. [[package]]
  1886. name = "flowy-server"
  1887. version = "0.1.0"
  1888. dependencies = [
  1889. "anyhow",
  1890. "appflowy-integrate",
  1891. "async-stream",
  1892. "bytes",
  1893. "chrono",
  1894. "collab-document",
  1895. "collab-folder",
  1896. "config",
  1897. "deadpool-postgres",
  1898. "flowy-database2",
  1899. "flowy-document2",
  1900. "flowy-error",
  1901. "flowy-folder2",
  1902. "flowy-user",
  1903. "futures",
  1904. "futures-util",
  1905. "hyper",
  1906. "lazy_static",
  1907. "lib-infra",
  1908. "nanoid",
  1909. "parking_lot 0.12.1",
  1910. "postgrest",
  1911. "refinery",
  1912. "reqwest",
  1913. "serde",
  1914. "serde-aux",
  1915. "serde_json",
  1916. "thiserror",
  1917. "tokio",
  1918. "tokio-postgres",
  1919. "tokio-retry",
  1920. "tracing",
  1921. "uuid",
  1922. ]
  1923. [[package]]
  1924. name = "flowy-sqlite"
  1925. version = "0.1.0"
  1926. dependencies = [
  1927. "anyhow",
  1928. "diesel",
  1929. "diesel_derives",
  1930. "diesel_migrations",
  1931. "error-chain",
  1932. "lazy_static",
  1933. "libsqlite3-sys",
  1934. "parking_lot 0.12.1",
  1935. "r2d2",
  1936. "scheduled-thread-pool",
  1937. "serde",
  1938. "serde_json",
  1939. "tracing",
  1940. ]
  1941. [[package]]
  1942. name = "flowy-task"
  1943. version = "0.1.0"
  1944. dependencies = [
  1945. "anyhow",
  1946. "atomic_refcell",
  1947. "lib-infra",
  1948. "tokio",
  1949. "tracing",
  1950. ]
  1951. [[package]]
  1952. name = "flowy-user"
  1953. version = "0.1.0"
  1954. dependencies = [
  1955. "appflowy-integrate",
  1956. "bytes",
  1957. "diesel",
  1958. "diesel_derives",
  1959. "fancy-regex 0.11.0",
  1960. "flowy-codegen",
  1961. "flowy-derive",
  1962. "flowy-error",
  1963. "flowy-notification",
  1964. "flowy-sqlite",
  1965. "lazy_static",
  1966. "lib-dispatch",
  1967. "lib-infra",
  1968. "log",
  1969. "once_cell",
  1970. "parking_lot 0.12.1",
  1971. "protobuf",
  1972. "serde",
  1973. "serde_json",
  1974. "serde_repr",
  1975. "strum",
  1976. "strum_macros",
  1977. "tokio",
  1978. "tracing",
  1979. "unicode-segmentation",
  1980. "validator",
  1981. ]
  1982. [[package]]
  1983. name = "fnv"
  1984. version = "1.0.7"
  1985. source = "registry+https://github.com/rust-lang/crates.io-index"
  1986. checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1"
  1987. [[package]]
  1988. name = "foreign-types"
  1989. version = "0.3.2"
  1990. source = "registry+https://github.com/rust-lang/crates.io-index"
  1991. checksum = "f6f339eb8adc052cd2ca78910fda869aefa38d22d5cb648e6485e4d3fc06f3b1"
  1992. dependencies = [
  1993. "foreign-types-shared",
  1994. ]
  1995. [[package]]
  1996. name = "foreign-types-shared"
  1997. version = "0.1.1"
  1998. source = "registry+https://github.com/rust-lang/crates.io-index"
  1999. checksum = "00b0228411908ca8685dba7fc2cdd70ec9990a6e753e89b6ac91a84c40fbaf4b"
  2000. [[package]]
  2001. name = "form_urlencoded"
  2002. version = "1.2.0"
  2003. source = "registry+https://github.com/rust-lang/crates.io-index"
  2004. checksum = "a62bc1cf6f830c2ec14a513a9fb124d0a213a629668a4186f329db21fe045652"
  2005. dependencies = [
  2006. "percent-encoding",
  2007. ]
  2008. [[package]]
  2009. name = "fs2"
  2010. version = "0.4.3"
  2011. source = "registry+https://github.com/rust-lang/crates.io-index"
  2012. checksum = "9564fc758e15025b46aa6643b1b77d047d1a56a1aea6e01002ac0c7026876213"
  2013. dependencies = [
  2014. "libc",
  2015. "winapi",
  2016. ]
  2017. [[package]]
  2018. name = "funty"
  2019. version = "2.0.0"
  2020. source = "registry+https://github.com/rust-lang/crates.io-index"
  2021. checksum = "e6d5a32815ae3f33302d95fdcb2ce17862f8c65363dcfd29360480ba1001fc9c"
  2022. [[package]]
  2023. name = "futf"
  2024. version = "0.1.5"
  2025. source = "registry+https://github.com/rust-lang/crates.io-index"
  2026. checksum = "df420e2e84819663797d1ec6544b13c5be84629e7bb00dc960d6917db2987843"
  2027. dependencies = [
  2028. "mac",
  2029. "new_debug_unreachable",
  2030. ]
  2031. [[package]]
  2032. name = "futures"
  2033. version = "0.3.28"
  2034. source = "registry+https://github.com/rust-lang/crates.io-index"
  2035. checksum = "23342abe12aba583913b2e62f22225ff9c950774065e4bfb61a19cd9770fec40"
  2036. dependencies = [
  2037. "futures-channel",
  2038. "futures-core",
  2039. "futures-executor",
  2040. "futures-io",
  2041. "futures-sink",
  2042. "futures-task",
  2043. "futures-util",
  2044. ]
  2045. [[package]]
  2046. name = "futures-channel"
  2047. version = "0.3.28"
  2048. source = "registry+https://github.com/rust-lang/crates.io-index"
  2049. checksum = "955518d47e09b25bbebc7a18df10b81f0c766eaf4c4f1cccef2fca5f2a4fb5f2"
  2050. dependencies = [
  2051. "futures-core",
  2052. "futures-sink",
  2053. ]
  2054. [[package]]
  2055. name = "futures-core"
  2056. version = "0.3.28"
  2057. source = "registry+https://github.com/rust-lang/crates.io-index"
  2058. checksum = "4bca583b7e26f571124fe5b7561d49cb2868d79116cfa0eefce955557c6fee8c"
  2059. [[package]]
  2060. name = "futures-executor"
  2061. version = "0.3.28"
  2062. source = "registry+https://github.com/rust-lang/crates.io-index"
  2063. checksum = "ccecee823288125bd88b4d7f565c9e58e41858e47ab72e8ea2d64e93624386e0"
  2064. dependencies = [
  2065. "futures-core",
  2066. "futures-task",
  2067. "futures-util",
  2068. ]
  2069. [[package]]
  2070. name = "futures-io"
  2071. version = "0.3.28"
  2072. source = "registry+https://github.com/rust-lang/crates.io-index"
  2073. checksum = "4fff74096e71ed47f8e023204cfd0aa1289cd54ae5430a9523be060cdb849964"
  2074. [[package]]
  2075. name = "futures-macro"
  2076. version = "0.3.28"
  2077. source = "registry+https://github.com/rust-lang/crates.io-index"
  2078. checksum = "89ca545a94061b6365f2c7355b4b32bd20df3ff95f02da9329b34ccc3bd6ee72"
  2079. dependencies = [
  2080. "proc-macro2",
  2081. "quote",
  2082. "syn 2.0.22",
  2083. ]
  2084. [[package]]
  2085. name = "futures-sink"
  2086. version = "0.3.28"
  2087. source = "registry+https://github.com/rust-lang/crates.io-index"
  2088. checksum = "f43be4fe21a13b9781a69afa4985b0f6ee0e1afab2c6f454a8cf30e2b2237b6e"
  2089. [[package]]
  2090. name = "futures-task"
  2091. version = "0.3.28"
  2092. source = "registry+https://github.com/rust-lang/crates.io-index"
  2093. checksum = "76d3d132be6c0e6aa1534069c705a74a5997a356c0dc2f86a47765e5617c5b65"
  2094. [[package]]
  2095. name = "futures-util"
  2096. version = "0.3.28"
  2097. source = "registry+https://github.com/rust-lang/crates.io-index"
  2098. checksum = "26b01e40b772d54cf6c6d721c1d1abd0647a0106a12ecaa1c186273392a69533"
  2099. dependencies = [
  2100. "futures-channel",
  2101. "futures-core",
  2102. "futures-io",
  2103. "futures-macro",
  2104. "futures-sink",
  2105. "futures-task",
  2106. "memchr",
  2107. "pin-project-lite",
  2108. "pin-utils",
  2109. "slab",
  2110. ]
  2111. [[package]]
  2112. name = "fxhash"
  2113. version = "0.2.1"
  2114. source = "registry+https://github.com/rust-lang/crates.io-index"
  2115. checksum = "c31b6d751ae2c7f11320402d34e41349dd1016f8d5d45e48c4312bc8625af50c"
  2116. dependencies = [
  2117. "byteorder",
  2118. ]
  2119. [[package]]
  2120. name = "gdk"
  2121. version = "0.15.4"
  2122. source = "registry+https://github.com/rust-lang/crates.io-index"
  2123. checksum = "a6e05c1f572ab0e1f15be94217f0dc29088c248b14f792a5ff0af0d84bcda9e8"
  2124. dependencies = [
  2125. "bitflags",
  2126. "cairo-rs",
  2127. "gdk-pixbuf",
  2128. "gdk-sys",
  2129. "gio",
  2130. "glib",
  2131. "libc",
  2132. "pango",
  2133. ]
  2134. [[package]]
  2135. name = "gdk-pixbuf"
  2136. version = "0.15.11"
  2137. source = "registry+https://github.com/rust-lang/crates.io-index"
  2138. checksum = "ad38dd9cc8b099cceecdf41375bb6d481b1b5a7cd5cd603e10a69a9383f8619a"
  2139. dependencies = [
  2140. "bitflags",
  2141. "gdk-pixbuf-sys",
  2142. "gio",
  2143. "glib",
  2144. "libc",
  2145. ]
  2146. [[package]]
  2147. name = "gdk-pixbuf-sys"
  2148. version = "0.15.10"
  2149. source = "registry+https://github.com/rust-lang/crates.io-index"
  2150. checksum = "140b2f5378256527150350a8346dbdb08fadc13453a7a2d73aecd5fab3c402a7"
  2151. dependencies = [
  2152. "gio-sys",
  2153. "glib-sys",
  2154. "gobject-sys",
  2155. "libc",
  2156. "system-deps 6.1.1",
  2157. ]
  2158. [[package]]
  2159. name = "gdk-sys"
  2160. version = "0.15.1"
  2161. source = "registry+https://github.com/rust-lang/crates.io-index"
  2162. checksum = "32e7a08c1e8f06f4177fb7e51a777b8c1689f743a7bc11ea91d44d2226073a88"
  2163. dependencies = [
  2164. "cairo-sys-rs",
  2165. "gdk-pixbuf-sys",
  2166. "gio-sys",
  2167. "glib-sys",
  2168. "gobject-sys",
  2169. "libc",
  2170. "pango-sys",
  2171. "pkg-config",
  2172. "system-deps 6.1.1",
  2173. ]
  2174. [[package]]
  2175. name = "gdkwayland-sys"
  2176. version = "0.15.3"
  2177. source = "registry+https://github.com/rust-lang/crates.io-index"
  2178. checksum = "cca49a59ad8cfdf36ef7330fe7bdfbe1d34323220cc16a0de2679ee773aee2c2"
  2179. dependencies = [
  2180. "gdk-sys",
  2181. "glib-sys",
  2182. "gobject-sys",
  2183. "libc",
  2184. "pkg-config",
  2185. "system-deps 6.1.1",
  2186. ]
  2187. [[package]]
  2188. name = "gdkx11-sys"
  2189. version = "0.15.1"
  2190. source = "registry+https://github.com/rust-lang/crates.io-index"
  2191. checksum = "b4b7f8c7a84b407aa9b143877e267e848ff34106578b64d1e0a24bf550716178"
  2192. dependencies = [
  2193. "gdk-sys",
  2194. "glib-sys",
  2195. "libc",
  2196. "system-deps 6.1.1",
  2197. "x11",
  2198. ]
  2199. [[package]]
  2200. name = "generator"
  2201. version = "0.7.5"
  2202. source = "registry+https://github.com/rust-lang/crates.io-index"
  2203. checksum = "5cc16584ff22b460a382b7feec54b23d2908d858152e5739a120b949293bd74e"
  2204. dependencies = [
  2205. "cc",
  2206. "libc",
  2207. "log",
  2208. "rustversion",
  2209. "windows 0.48.0",
  2210. ]
  2211. [[package]]
  2212. name = "generic-array"
  2213. version = "0.14.7"
  2214. source = "registry+https://github.com/rust-lang/crates.io-index"
  2215. checksum = "85649ca51fd72272d7821adaf274ad91c288277713d9c18820d8499a7ff69e9a"
  2216. dependencies = [
  2217. "typenum",
  2218. "version_check",
  2219. ]
  2220. [[package]]
  2221. name = "gethostname"
  2222. version = "0.2.3"
  2223. source = "registry+https://github.com/rust-lang/crates.io-index"
  2224. checksum = "c1ebd34e35c46e00bb73e81363248d627782724609fe1b6396f553f68fe3862e"
  2225. dependencies = [
  2226. "libc",
  2227. "winapi",
  2228. ]
  2229. [[package]]
  2230. name = "getrandom"
  2231. version = "0.1.16"
  2232. source = "registry+https://github.com/rust-lang/crates.io-index"
  2233. checksum = "8fc3cb4d91f53b50155bdcfd23f6a4c39ae1969c2ae85982b135750cccaf5fce"
  2234. dependencies = [
  2235. "cfg-if",
  2236. "js-sys",
  2237. "libc",
  2238. "wasi 0.9.0+wasi-snapshot-preview1",
  2239. "wasm-bindgen",
  2240. ]
  2241. [[package]]
  2242. name = "getrandom"
  2243. version = "0.2.10"
  2244. source = "registry+https://github.com/rust-lang/crates.io-index"
  2245. checksum = "be4136b2a15dd319360be1c07d9933517ccf0be8f16bf62a3bee4f0d618df427"
  2246. dependencies = [
  2247. "cfg-if",
  2248. "libc",
  2249. "wasi 0.11.0+wasi-snapshot-preview1",
  2250. ]
  2251. [[package]]
  2252. name = "gimli"
  2253. version = "0.27.3"
  2254. source = "registry+https://github.com/rust-lang/crates.io-index"
  2255. checksum = "b6c80984affa11d98d1b88b66ac8853f143217b399d3c74116778ff8fdb4ed2e"
  2256. [[package]]
  2257. name = "gio"
  2258. version = "0.15.12"
  2259. source = "registry+https://github.com/rust-lang/crates.io-index"
  2260. checksum = "68fdbc90312d462781a395f7a16d96a2b379bb6ef8cd6310a2df272771c4283b"
  2261. dependencies = [
  2262. "bitflags",
  2263. "futures-channel",
  2264. "futures-core",
  2265. "futures-io",
  2266. "gio-sys",
  2267. "glib",
  2268. "libc",
  2269. "once_cell",
  2270. "thiserror",
  2271. ]
  2272. [[package]]
  2273. name = "gio-sys"
  2274. version = "0.15.10"
  2275. source = "registry+https://github.com/rust-lang/crates.io-index"
  2276. checksum = "32157a475271e2c4a023382e9cab31c4584ee30a97da41d3c4e9fdd605abcf8d"
  2277. dependencies = [
  2278. "glib-sys",
  2279. "gobject-sys",
  2280. "libc",
  2281. "system-deps 6.1.1",
  2282. "winapi",
  2283. ]
  2284. [[package]]
  2285. name = "glib"
  2286. version = "0.15.12"
  2287. source = "registry+https://github.com/rust-lang/crates.io-index"
  2288. checksum = "edb0306fbad0ab5428b0ca674a23893db909a98582969c9b537be4ced78c505d"
  2289. dependencies = [
  2290. "bitflags",
  2291. "futures-channel",
  2292. "futures-core",
  2293. "futures-executor",
  2294. "futures-task",
  2295. "glib-macros",
  2296. "glib-sys",
  2297. "gobject-sys",
  2298. "libc",
  2299. "once_cell",
  2300. "smallvec",
  2301. "thiserror",
  2302. ]
  2303. [[package]]
  2304. name = "glib-macros"
  2305. version = "0.15.13"
  2306. source = "registry+https://github.com/rust-lang/crates.io-index"
  2307. checksum = "10c6ae9f6fa26f4fb2ac16b528d138d971ead56141de489f8111e259b9df3c4a"
  2308. dependencies = [
  2309. "anyhow",
  2310. "heck 0.4.1",
  2311. "proc-macro-crate 1.3.1",
  2312. "proc-macro-error",
  2313. "proc-macro2",
  2314. "quote",
  2315. "syn 1.0.109",
  2316. ]
  2317. [[package]]
  2318. name = "glib-sys"
  2319. version = "0.15.10"
  2320. source = "registry+https://github.com/rust-lang/crates.io-index"
  2321. checksum = "ef4b192f8e65e9cf76cbf4ea71fa8e3be4a0e18ffe3d68b8da6836974cc5bad4"
  2322. dependencies = [
  2323. "libc",
  2324. "system-deps 6.1.1",
  2325. ]
  2326. [[package]]
  2327. name = "glob"
  2328. version = "0.3.1"
  2329. source = "registry+https://github.com/rust-lang/crates.io-index"
  2330. checksum = "d2fabcfbdc87f4758337ca535fb41a6d701b65693ce38287d856d1674551ec9b"
  2331. [[package]]
  2332. name = "globset"
  2333. version = "0.4.10"
  2334. source = "registry+https://github.com/rust-lang/crates.io-index"
  2335. checksum = "029d74589adefde59de1a0c4f4732695c32805624aec7b68d91503d4dba79afc"
  2336. dependencies = [
  2337. "aho-corasick 0.7.20",
  2338. "bstr",
  2339. "fnv",
  2340. "log",
  2341. "regex",
  2342. ]
  2343. [[package]]
  2344. name = "globwalk"
  2345. version = "0.8.1"
  2346. source = "registry+https://github.com/rust-lang/crates.io-index"
  2347. checksum = "93e3af942408868f6934a7b85134a3230832b9977cf66125df2f9edcfce4ddcc"
  2348. dependencies = [
  2349. "bitflags",
  2350. "ignore",
  2351. "walkdir",
  2352. ]
  2353. [[package]]
  2354. name = "gobject-sys"
  2355. version = "0.15.10"
  2356. source = "registry+https://github.com/rust-lang/crates.io-index"
  2357. checksum = "0d57ce44246becd17153bd035ab4d32cfee096a657fc01f2231c9278378d1e0a"
  2358. dependencies = [
  2359. "glib-sys",
  2360. "libc",
  2361. "system-deps 6.1.1",
  2362. ]
  2363. [[package]]
  2364. name = "gtk"
  2365. version = "0.15.5"
  2366. source = "registry+https://github.com/rust-lang/crates.io-index"
  2367. checksum = "92e3004a2d5d6d8b5057d2b57b3712c9529b62e82c77f25c1fecde1fd5c23bd0"
  2368. dependencies = [
  2369. "atk",
  2370. "bitflags",
  2371. "cairo-rs",
  2372. "field-offset",
  2373. "futures-channel",
  2374. "gdk",
  2375. "gdk-pixbuf",
  2376. "gio",
  2377. "glib",
  2378. "gtk-sys",
  2379. "gtk3-macros",
  2380. "libc",
  2381. "once_cell",
  2382. "pango",
  2383. "pkg-config",
  2384. ]
  2385. [[package]]
  2386. name = "gtk-sys"
  2387. version = "0.15.3"
  2388. source = "registry+https://github.com/rust-lang/crates.io-index"
  2389. checksum = "d5bc2f0587cba247f60246a0ca11fe25fb733eabc3de12d1965fc07efab87c84"
  2390. dependencies = [
  2391. "atk-sys",
  2392. "cairo-sys-rs",
  2393. "gdk-pixbuf-sys",
  2394. "gdk-sys",
  2395. "gio-sys",
  2396. "glib-sys",
  2397. "gobject-sys",
  2398. "libc",
  2399. "pango-sys",
  2400. "system-deps 6.1.1",
  2401. ]
  2402. [[package]]
  2403. name = "gtk3-macros"
  2404. version = "0.15.6"
  2405. source = "registry+https://github.com/rust-lang/crates.io-index"
  2406. checksum = "684c0456c086e8e7e9af73ec5b84e35938df394712054550e81558d21c44ab0d"
  2407. dependencies = [
  2408. "anyhow",
  2409. "proc-macro-crate 1.3.1",
  2410. "proc-macro-error",
  2411. "proc-macro2",
  2412. "quote",
  2413. "syn 1.0.109",
  2414. ]
  2415. [[package]]
  2416. name = "h2"
  2417. version = "0.3.20"
  2418. source = "registry+https://github.com/rust-lang/crates.io-index"
  2419. checksum = "97ec8491ebaf99c8eaa73058b045fe58073cd6be7f596ac993ced0b0a0c01049"
  2420. dependencies = [
  2421. "bytes",
  2422. "fnv",
  2423. "futures-core",
  2424. "futures-sink",
  2425. "futures-util",
  2426. "http",
  2427. "indexmap 1.9.3",
  2428. "slab",
  2429. "tokio",
  2430. "tokio-util",
  2431. "tracing",
  2432. ]
  2433. [[package]]
  2434. name = "hashbrown"
  2435. version = "0.12.3"
  2436. source = "registry+https://github.com/rust-lang/crates.io-index"
  2437. checksum = "8a9ee70c43aaf417c914396645a0fa852624801b24ebb7ae78fe8272889ac888"
  2438. dependencies = [
  2439. "ahash 0.7.6",
  2440. ]
  2441. [[package]]
  2442. name = "hashbrown"
  2443. version = "0.13.2"
  2444. source = "registry+https://github.com/rust-lang/crates.io-index"
  2445. checksum = "43a3c133739dddd0d2990f9a4bdf8eb4b21ef50e4851ca85ab661199821d510e"
  2446. dependencies = [
  2447. "ahash 0.8.3",
  2448. ]
  2449. [[package]]
  2450. name = "hashbrown"
  2451. version = "0.14.0"
  2452. source = "registry+https://github.com/rust-lang/crates.io-index"
  2453. checksum = "2c6201b9ff9fd90a5a3bac2e56a830d0caa509576f0e503818ee82c181b3437a"
  2454. [[package]]
  2455. name = "heck"
  2456. version = "0.3.3"
  2457. source = "registry+https://github.com/rust-lang/crates.io-index"
  2458. checksum = "6d621efb26863f0e9924c6ac577e8275e5e6b77455db64ffa6c65c904e9e132c"
  2459. dependencies = [
  2460. "unicode-segmentation",
  2461. ]
  2462. [[package]]
  2463. name = "heck"
  2464. version = "0.4.1"
  2465. source = "registry+https://github.com/rust-lang/crates.io-index"
  2466. checksum = "95505c38b4572b2d910cecb0281560f54b440a19336cbbcb27bf6ce6adc6f5a8"
  2467. [[package]]
  2468. name = "hermit-abi"
  2469. version = "0.2.6"
  2470. source = "registry+https://github.com/rust-lang/crates.io-index"
  2471. checksum = "ee512640fe35acbfb4bb779db6f0d80704c2cacfa2e39b601ef3e3f47d1ae4c7"
  2472. dependencies = [
  2473. "libc",
  2474. ]
  2475. [[package]]
  2476. name = "hermit-abi"
  2477. version = "0.3.1"
  2478. source = "registry+https://github.com/rust-lang/crates.io-index"
  2479. checksum = "fed44880c466736ef9a5c5b5facefb5ed0785676d0c02d612db14e54f0d84286"
  2480. [[package]]
  2481. name = "hex"
  2482. version = "0.4.3"
  2483. source = "registry+https://github.com/rust-lang/crates.io-index"
  2484. checksum = "7f24254aa9a54b5c858eaee2f5bccdb46aaf0e486a595ed5fd8f86ba55232a70"
  2485. [[package]]
  2486. name = "hmac"
  2487. version = "0.12.1"
  2488. source = "registry+https://github.com/rust-lang/crates.io-index"
  2489. checksum = "6c49c37c09c17a53d937dfbb742eb3a961d65a994e6bcdcf37e7399d0cc8ab5e"
  2490. dependencies = [
  2491. "digest 0.10.7",
  2492. ]
  2493. [[package]]
  2494. name = "html5ever"
  2495. version = "0.25.2"
  2496. source = "registry+https://github.com/rust-lang/crates.io-index"
  2497. checksum = "e5c13fb08e5d4dfc151ee5e88bae63f7773d61852f3bdc73c9f4b9e1bde03148"
  2498. dependencies = [
  2499. "log",
  2500. "mac",
  2501. "markup5ever",
  2502. "proc-macro2",
  2503. "quote",
  2504. "syn 1.0.109",
  2505. ]
  2506. [[package]]
  2507. name = "http"
  2508. version = "0.2.9"
  2509. source = "registry+https://github.com/rust-lang/crates.io-index"
  2510. checksum = "bd6effc99afb63425aff9b05836f029929e345a6148a14b7ecd5ab67af944482"
  2511. dependencies = [
  2512. "bytes",
  2513. "fnv",
  2514. "itoa 1.0.6",
  2515. ]
  2516. [[package]]
  2517. name = "http-body"
  2518. version = "0.4.5"
  2519. source = "registry+https://github.com/rust-lang/crates.io-index"
  2520. checksum = "d5f38f16d184e36f2408a55281cd658ecbd3ca05cce6d6510a176eca393e26d1"
  2521. dependencies = [
  2522. "bytes",
  2523. "http",
  2524. "pin-project-lite",
  2525. ]
  2526. [[package]]
  2527. name = "http-error-code"
  2528. version = "0.1.0"
  2529. source = "git+https://github.com/AppFlowy-IO/AppFlowy-Server?branch=refactor/appflowy_server#1ccd296de8530760d92652dbd9f38f27178059b6"
  2530. dependencies = [
  2531. "serde",
  2532. "serde_repr",
  2533. "thiserror",
  2534. ]
  2535. [[package]]
  2536. name = "http-range"
  2537. version = "0.1.5"
  2538. source = "registry+https://github.com/rust-lang/crates.io-index"
  2539. checksum = "21dec9db110f5f872ed9699c3ecf50cf16f423502706ba5c72462e28d3157573"
  2540. [[package]]
  2541. name = "httparse"
  2542. version = "1.8.0"
  2543. source = "registry+https://github.com/rust-lang/crates.io-index"
  2544. checksum = "d897f394bad6a705d5f4104762e116a75639e470d80901eed05a860a95cb1904"
  2545. [[package]]
  2546. name = "httpdate"
  2547. version = "1.0.2"
  2548. source = "registry+https://github.com/rust-lang/crates.io-index"
  2549. checksum = "c4a1e36c821dbe04574f602848a19f742f4fb3c98d40449f11bcad18d6b17421"
  2550. [[package]]
  2551. name = "humansize"
  2552. version = "2.1.3"
  2553. source = "registry+https://github.com/rust-lang/crates.io-index"
  2554. checksum = "6cb51c9a029ddc91b07a787f1d86b53ccfa49b0e86688c946ebe8d3555685dd7"
  2555. dependencies = [
  2556. "libm",
  2557. ]
  2558. [[package]]
  2559. name = "hyper"
  2560. version = "0.14.27"
  2561. source = "registry+https://github.com/rust-lang/crates.io-index"
  2562. checksum = "ffb1cfd654a8219eaef89881fdb3bb3b1cdc5fa75ded05d6933b2b382e395468"
  2563. dependencies = [
  2564. "bytes",
  2565. "futures-channel",
  2566. "futures-core",
  2567. "futures-util",
  2568. "h2",
  2569. "http",
  2570. "http-body",
  2571. "httparse",
  2572. "httpdate",
  2573. "itoa 1.0.6",
  2574. "pin-project-lite",
  2575. "socket2 0.4.9",
  2576. "tokio",
  2577. "tower-service",
  2578. "tracing",
  2579. "want",
  2580. ]
  2581. [[package]]
  2582. name = "hyper-rustls"
  2583. version = "0.23.2"
  2584. source = "registry+https://github.com/rust-lang/crates.io-index"
  2585. checksum = "1788965e61b367cd03a62950836d5cd41560c3577d90e40e0819373194d1661c"
  2586. dependencies = [
  2587. "http",
  2588. "hyper",
  2589. "log",
  2590. "rustls 0.20.8",
  2591. "rustls-native-certs",
  2592. "tokio",
  2593. "tokio-rustls 0.23.4",
  2594. ]
  2595. [[package]]
  2596. name = "hyper-rustls"
  2597. version = "0.24.0"
  2598. source = "registry+https://github.com/rust-lang/crates.io-index"
  2599. checksum = "0646026eb1b3eea4cd9ba47912ea5ce9cc07713d105b1a14698f4e6433d348b7"
  2600. dependencies = [
  2601. "http",
  2602. "hyper",
  2603. "rustls 0.21.2",
  2604. "tokio",
  2605. "tokio-rustls 0.24.1",
  2606. ]
  2607. [[package]]
  2608. name = "hyper-tls"
  2609. version = "0.5.0"
  2610. source = "registry+https://github.com/rust-lang/crates.io-index"
  2611. checksum = "d6183ddfa99b85da61a140bea0efc93fdf56ceaa041b37d553518030827f9905"
  2612. dependencies = [
  2613. "bytes",
  2614. "hyper",
  2615. "native-tls",
  2616. "tokio",
  2617. "tokio-native-tls",
  2618. ]
  2619. [[package]]
  2620. name = "iana-time-zone"
  2621. version = "0.1.57"
  2622. source = "registry+https://github.com/rust-lang/crates.io-index"
  2623. checksum = "2fad5b825842d2b38bd206f3e81d6957625fd7f0a361e345c30e01a0ae2dd613"
  2624. dependencies = [
  2625. "android_system_properties",
  2626. "core-foundation-sys",
  2627. "iana-time-zone-haiku",
  2628. "js-sys",
  2629. "wasm-bindgen",
  2630. "windows 0.48.0",
  2631. ]
  2632. [[package]]
  2633. name = "iana-time-zone-haiku"
  2634. version = "0.1.2"
  2635. source = "registry+https://github.com/rust-lang/crates.io-index"
  2636. checksum = "f31827a206f56af32e590ba56d5d2d085f558508192593743f16b2306495269f"
  2637. dependencies = [
  2638. "cc",
  2639. ]
  2640. [[package]]
  2641. name = "ico"
  2642. version = "0.3.0"
  2643. source = "registry+https://github.com/rust-lang/crates.io-index"
  2644. checksum = "e3804960be0bb5e4edb1e1ad67afd321a9ecfd875c3e65c099468fd2717d7cae"
  2645. dependencies = [
  2646. "byteorder",
  2647. "png",
  2648. ]
  2649. [[package]]
  2650. name = "ident_case"
  2651. version = "1.0.1"
  2652. source = "registry+https://github.com/rust-lang/crates.io-index"
  2653. checksum = "b9e0384b61958566e926dc50660321d12159025e767c18e043daf26b70104c39"
  2654. [[package]]
  2655. name = "idna"
  2656. version = "0.4.0"
  2657. source = "registry+https://github.com/rust-lang/crates.io-index"
  2658. checksum = "7d20d6b07bfbc108882d88ed8e37d39636dcc260e15e30c45e6ba089610b917c"
  2659. dependencies = [
  2660. "unicode-bidi",
  2661. "unicode-normalization",
  2662. ]
  2663. [[package]]
  2664. name = "ignore"
  2665. version = "0.4.20"
  2666. source = "registry+https://github.com/rust-lang/crates.io-index"
  2667. checksum = "dbe7873dab538a9a44ad79ede1faf5f30d49f9a5c883ddbab48bce81b64b7492"
  2668. dependencies = [
  2669. "globset",
  2670. "lazy_static",
  2671. "log",
  2672. "memchr",
  2673. "regex",
  2674. "same-file",
  2675. "thread_local",
  2676. "walkdir",
  2677. "winapi-util",
  2678. ]
  2679. [[package]]
  2680. name = "image"
  2681. version = "0.24.6"
  2682. source = "registry+https://github.com/rust-lang/crates.io-index"
  2683. checksum = "527909aa81e20ac3a44803521443a765550f09b5130c2c2fa1ea59c2f8f50a3a"
  2684. dependencies = [
  2685. "bytemuck",
  2686. "byteorder",
  2687. "color_quant",
  2688. "num-rational",
  2689. "num-traits",
  2690. ]
  2691. [[package]]
  2692. name = "indexmap"
  2693. version = "1.9.3"
  2694. source = "registry+https://github.com/rust-lang/crates.io-index"
  2695. checksum = "bd070e393353796e801d209ad339e89596eb4c8d430d18ede6a1cced8fafbd99"
  2696. dependencies = [
  2697. "autocfg",
  2698. "hashbrown 0.12.3",
  2699. "serde",
  2700. ]
  2701. [[package]]
  2702. name = "indexmap"
  2703. version = "2.0.0"
  2704. source = "registry+https://github.com/rust-lang/crates.io-index"
  2705. checksum = "d5477fe2230a79769d8dc68e0eabf5437907c0457a5614a9e8dddb67f65eb65d"
  2706. dependencies = [
  2707. "equivalent",
  2708. "hashbrown 0.14.0",
  2709. ]
  2710. [[package]]
  2711. name = "infer"
  2712. version = "0.12.0"
  2713. source = "registry+https://github.com/rust-lang/crates.io-index"
  2714. checksum = "a898e4b7951673fce96614ce5751d13c40fc5674bc2d759288e46c3ab62598b3"
  2715. dependencies = [
  2716. "cfb",
  2717. ]
  2718. [[package]]
  2719. name = "instant"
  2720. version = "0.1.12"
  2721. source = "registry+https://github.com/rust-lang/crates.io-index"
  2722. checksum = "7a5bbe824c507c5da5956355e86a746d82e0e1464f65d862cc5e71da70e94b2c"
  2723. dependencies = [
  2724. "cfg-if",
  2725. ]
  2726. [[package]]
  2727. name = "io-lifetimes"
  2728. version = "1.0.11"
  2729. source = "registry+https://github.com/rust-lang/crates.io-index"
  2730. checksum = "eae7b9aee968036d54dce06cebaefd919e4472e753296daccd6d344e3e2df0c2"
  2731. dependencies = [
  2732. "hermit-abi 0.3.1",
  2733. "libc",
  2734. "windows-sys 0.48.0",
  2735. ]
  2736. [[package]]
  2737. name = "ipnet"
  2738. version = "2.8.0"
  2739. source = "registry+https://github.com/rust-lang/crates.io-index"
  2740. checksum = "28b29a3cd74f0f4598934efe3aeba42bae0eb4680554128851ebbecb02af14e6"
  2741. [[package]]
  2742. name = "itertools"
  2743. version = "0.10.5"
  2744. source = "registry+https://github.com/rust-lang/crates.io-index"
  2745. checksum = "b0fd2260e829bddf4cb6ea802289de2f86d6a7a690192fbe91b3f46e0f2c8473"
  2746. dependencies = [
  2747. "either",
  2748. ]
  2749. [[package]]
  2750. name = "itoa"
  2751. version = "0.4.8"
  2752. source = "registry+https://github.com/rust-lang/crates.io-index"
  2753. checksum = "b71991ff56294aa922b450139ee08b3bfc70982c6b2c7562771375cf73542dd4"
  2754. [[package]]
  2755. name = "itoa"
  2756. version = "1.0.6"
  2757. source = "registry+https://github.com/rust-lang/crates.io-index"
  2758. checksum = "453ad9f582a441959e5f0d088b02ce04cfe8d51a8eaf077f12ac6d3e94164ca6"
  2759. [[package]]
  2760. name = "javascriptcore-rs"
  2761. version = "0.16.0"
  2762. source = "registry+https://github.com/rust-lang/crates.io-index"
  2763. checksum = "bf053e7843f2812ff03ef5afe34bb9c06ffee120385caad4f6b9967fcd37d41c"
  2764. dependencies = [
  2765. "bitflags",
  2766. "glib",
  2767. "javascriptcore-rs-sys",
  2768. ]
  2769. [[package]]
  2770. name = "javascriptcore-rs-sys"
  2771. version = "0.4.0"
  2772. source = "registry+https://github.com/rust-lang/crates.io-index"
  2773. checksum = "905fbb87419c5cde6e3269537e4ea7d46431f3008c5d057e915ef3f115e7793c"
  2774. dependencies = [
  2775. "glib-sys",
  2776. "gobject-sys",
  2777. "libc",
  2778. "system-deps 5.0.0",
  2779. ]
  2780. [[package]]
  2781. name = "jni"
  2782. version = "0.20.0"
  2783. source = "registry+https://github.com/rust-lang/crates.io-index"
  2784. checksum = "039022cdf4d7b1cf548d31f60ae783138e5fd42013f6271049d7df7afadef96c"
  2785. dependencies = [
  2786. "cesu8",
  2787. "combine",
  2788. "jni-sys",
  2789. "log",
  2790. "thiserror",
  2791. "walkdir",
  2792. ]
  2793. [[package]]
  2794. name = "jni-sys"
  2795. version = "0.3.0"
  2796. source = "registry+https://github.com/rust-lang/crates.io-index"
  2797. checksum = "8eaf4bc02d17cbdd7ff4c7438cafcdf7fb9a4613313ad11b4f8fefe7d3fa0130"
  2798. [[package]]
  2799. name = "jobserver"
  2800. version = "0.1.26"
  2801. source = "registry+https://github.com/rust-lang/crates.io-index"
  2802. checksum = "936cfd212a0155903bcbc060e316fb6cc7cbf2e1907329391ebadc1fe0ce77c2"
  2803. dependencies = [
  2804. "libc",
  2805. ]
  2806. [[package]]
  2807. name = "js-sys"
  2808. version = "0.3.64"
  2809. source = "registry+https://github.com/rust-lang/crates.io-index"
  2810. checksum = "c5f195fe497f702db0f318b07fdd68edb16955aed830df8363d837542f8f935a"
  2811. dependencies = [
  2812. "wasm-bindgen",
  2813. ]
  2814. [[package]]
  2815. name = "json-patch"
  2816. version = "1.0.0"
  2817. source = "registry+https://github.com/rust-lang/crates.io-index"
  2818. checksum = "1f54898088ccb91df1b492cc80029a6fdf1c48ca0db7c6822a8babad69c94658"
  2819. dependencies = [
  2820. "serde",
  2821. "serde_json",
  2822. "thiserror",
  2823. "treediff",
  2824. ]
  2825. [[package]]
  2826. name = "kuchiki"
  2827. version = "0.8.1"
  2828. source = "registry+https://github.com/rust-lang/crates.io-index"
  2829. checksum = "1ea8e9c6e031377cff82ee3001dc8026cdf431ed4e2e6b51f98ab8c73484a358"
  2830. dependencies = [
  2831. "cssparser",
  2832. "html5ever",
  2833. "matches",
  2834. "selectors",
  2835. ]
  2836. [[package]]
  2837. name = "lazy_static"
  2838. version = "1.4.0"
  2839. source = "registry+https://github.com/rust-lang/crates.io-index"
  2840. checksum = "e2abad23fbc42b3700f2f279844dc832adb2b2eb069b2df918f455c4e18cc646"
  2841. [[package]]
  2842. name = "lazycell"
  2843. version = "1.3.0"
  2844. source = "registry+https://github.com/rust-lang/crates.io-index"
  2845. checksum = "830d08ce1d1d941e6b30645f1a0eb5643013d835ce3779a5fc208261dbe10f55"
  2846. [[package]]
  2847. name = "lexical-core"
  2848. version = "0.7.6"
  2849. source = "registry+https://github.com/rust-lang/crates.io-index"
  2850. checksum = "6607c62aa161d23d17a9072cc5da0be67cdfc89d3afb1e8d9c842bebc2525ffe"
  2851. dependencies = [
  2852. "arrayvec 0.5.2",
  2853. "bitflags",
  2854. "cfg-if",
  2855. "ryu",
  2856. "static_assertions",
  2857. ]
  2858. [[package]]
  2859. name = "lib-dispatch"
  2860. version = "0.1.0"
  2861. dependencies = [
  2862. "bincode",
  2863. "bytes",
  2864. "derivative",
  2865. "dyn-clone",
  2866. "futures",
  2867. "futures-channel",
  2868. "futures-core",
  2869. "futures-util",
  2870. "log",
  2871. "nanoid",
  2872. "pin-project",
  2873. "protobuf",
  2874. "serde",
  2875. "serde_json",
  2876. "serde_repr",
  2877. "thread-id",
  2878. "tokio",
  2879. "tracing",
  2880. ]
  2881. [[package]]
  2882. name = "lib-infra"
  2883. version = "0.1.0"
  2884. dependencies = [
  2885. "anyhow",
  2886. "async-trait",
  2887. "bytes",
  2888. "chrono",
  2889. "futures-core",
  2890. "md5",
  2891. "pin-project",
  2892. "rand 0.8.5",
  2893. "tokio",
  2894. ]
  2895. [[package]]
  2896. name = "lib-log"
  2897. version = "0.1.0"
  2898. dependencies = [
  2899. "chrono",
  2900. "lazy_static",
  2901. "log",
  2902. "serde",
  2903. "serde_json",
  2904. "tracing",
  2905. "tracing-appender",
  2906. "tracing-bunyan-formatter",
  2907. "tracing-core",
  2908. "tracing-log",
  2909. "tracing-subscriber 0.2.25",
  2910. ]
  2911. [[package]]
  2912. name = "lib-ws"
  2913. version = "0.1.0"
  2914. dependencies = [
  2915. "bytes",
  2916. "dashmap",
  2917. "futures",
  2918. "futures-channel",
  2919. "futures-core",
  2920. "futures-util",
  2921. "lib-infra",
  2922. "log",
  2923. "parking_lot 0.12.1",
  2924. "pin-project",
  2925. "protobuf",
  2926. "serde",
  2927. "serde_json",
  2928. "serde_repr",
  2929. "strum_macros",
  2930. "tokio",
  2931. "tokio-tungstenite 0.15.0",
  2932. "tracing",
  2933. "url",
  2934. ]
  2935. [[package]]
  2936. name = "lib0"
  2937. version = "0.16.8"
  2938. source = "registry+https://github.com/rust-lang/crates.io-index"
  2939. checksum = "49d27ae71668a38ad135d463703ce0c5d9cf5a29f9a02add7a0dac6ebb523196"
  2940. dependencies = [
  2941. "serde",
  2942. "serde_json",
  2943. "thiserror",
  2944. ]
  2945. [[package]]
  2946. name = "libc"
  2947. version = "0.2.147"
  2948. source = "registry+https://github.com/rust-lang/crates.io-index"
  2949. checksum = "b4668fb0ea861c1df094127ac5f1da3409a82116a4ba74fca2e58ef927159bb3"
  2950. [[package]]
  2951. name = "libloading"
  2952. version = "0.7.4"
  2953. source = "registry+https://github.com/rust-lang/crates.io-index"
  2954. checksum = "b67380fd3b2fbe7527a606e18729d21c6f3951633d0500574c4dc22d2d638b9f"
  2955. dependencies = [
  2956. "cfg-if",
  2957. "winapi",
  2958. ]
  2959. [[package]]
  2960. name = "libm"
  2961. version = "0.2.7"
  2962. source = "registry+https://github.com/rust-lang/crates.io-index"
  2963. checksum = "f7012b1bbb0719e1097c47611d3898568c546d597c2e74d66f6087edd5233ff4"
  2964. [[package]]
  2965. name = "librocksdb-sys"
  2966. version = "0.11.0+8.1.1"
  2967. source = "registry+https://github.com/rust-lang/crates.io-index"
  2968. checksum = "d3386f101bcb4bd252d8e9d2fb41ec3b0862a15a62b478c355b2982efa469e3e"
  2969. dependencies = [
  2970. "bindgen",
  2971. "bzip2-sys",
  2972. "cc",
  2973. "glob",
  2974. "libc",
  2975. "libz-sys",
  2976. "zstd-sys",
  2977. ]
  2978. [[package]]
  2979. name = "libsqlite3-sys"
  2980. version = "0.22.2"
  2981. source = "registry+https://github.com/rust-lang/crates.io-index"
  2982. checksum = "290b64917f8b0cb885d9de0f9959fe1f775d7fa12f1da2db9001c1c8ab60f89d"
  2983. dependencies = [
  2984. "cc",
  2985. "pkg-config",
  2986. "vcpkg",
  2987. ]
  2988. [[package]]
  2989. name = "libz-sys"
  2990. version = "1.1.9"
  2991. source = "registry+https://github.com/rust-lang/crates.io-index"
  2992. checksum = "56ee889ecc9568871456d42f603d6a0ce59ff328d291063a45cbdf0036baf6db"
  2993. dependencies = [
  2994. "cc",
  2995. "pkg-config",
  2996. "vcpkg",
  2997. ]
  2998. [[package]]
  2999. name = "line-wrap"
  3000. version = "0.1.1"
  3001. source = "registry+https://github.com/rust-lang/crates.io-index"
  3002. checksum = "f30344350a2a51da54c1d53be93fade8a237e545dbcc4bdbe635413f2117cab9"
  3003. dependencies = [
  3004. "safemem",
  3005. ]
  3006. [[package]]
  3007. name = "linked-hash-map"
  3008. version = "0.5.6"
  3009. source = "registry+https://github.com/rust-lang/crates.io-index"
  3010. checksum = "0717cef1bc8b636c6e1c1bbdefc09e6322da8a9321966e8928ef80d20f7f770f"
  3011. [[package]]
  3012. name = "linux-raw-sys"
  3013. version = "0.3.8"
  3014. source = "registry+https://github.com/rust-lang/crates.io-index"
  3015. checksum = "ef53942eb7bf7ff43a617b3e2c1c4a5ecf5944a7c1bc12d7ee39bbb15e5c1519"
  3016. [[package]]
  3017. name = "lock_api"
  3018. version = "0.4.10"
  3019. source = "registry+https://github.com/rust-lang/crates.io-index"
  3020. checksum = "c1cc9717a20b1bb222f333e6a92fd32f7d8a18ddc5a3191a11af45dcbf4dcd16"
  3021. dependencies = [
  3022. "autocfg",
  3023. "scopeguard",
  3024. ]
  3025. [[package]]
  3026. name = "log"
  3027. version = "0.4.19"
  3028. source = "registry+https://github.com/rust-lang/crates.io-index"
  3029. checksum = "b06a4cde4c0f271a446782e3eff8de789548ce57dbc8eca9292c27f4a42004b4"
  3030. [[package]]
  3031. name = "loom"
  3032. version = "0.5.6"
  3033. source = "registry+https://github.com/rust-lang/crates.io-index"
  3034. checksum = "ff50ecb28bb86013e935fb6683ab1f6d3a20016f123c76fd4c27470076ac30f5"
  3035. dependencies = [
  3036. "cfg-if",
  3037. "generator",
  3038. "scoped-tls",
  3039. "serde",
  3040. "serde_json",
  3041. "tracing",
  3042. "tracing-subscriber 0.3.17",
  3043. ]
  3044. [[package]]
  3045. name = "lru"
  3046. version = "0.10.0"
  3047. source = "registry+https://github.com/rust-lang/crates.io-index"
  3048. checksum = "03f1160296536f10c833a82dca22267d5486734230d47bf00bf435885814ba1e"
  3049. dependencies = [
  3050. "hashbrown 0.13.2",
  3051. ]
  3052. [[package]]
  3053. name = "mac"
  3054. version = "0.1.1"
  3055. source = "registry+https://github.com/rust-lang/crates.io-index"
  3056. checksum = "c41e0c4fef86961ac6d6f8a82609f55f31b05e4fce149ac5710e439df7619ba4"
  3057. [[package]]
  3058. name = "malloc_buf"
  3059. version = "0.0.6"
  3060. source = "registry+https://github.com/rust-lang/crates.io-index"
  3061. checksum = "62bb907fe88d54d8d9ce32a3cceab4218ed2f6b7d35617cafe9adf84e43919cb"
  3062. dependencies = [
  3063. "libc",
  3064. ]
  3065. [[package]]
  3066. name = "markup5ever"
  3067. version = "0.10.1"
  3068. source = "registry+https://github.com/rust-lang/crates.io-index"
  3069. checksum = "a24f40fb03852d1cdd84330cddcaf98e9ec08a7b7768e952fad3b4cf048ec8fd"
  3070. dependencies = [
  3071. "log",
  3072. "phf 0.8.0",
  3073. "phf_codegen 0.8.0",
  3074. "string_cache",
  3075. "string_cache_codegen",
  3076. "tendril",
  3077. ]
  3078. [[package]]
  3079. name = "matchers"
  3080. version = "0.0.1"
  3081. source = "registry+https://github.com/rust-lang/crates.io-index"
  3082. checksum = "f099785f7595cc4b4553a174ce30dd7589ef93391ff414dbb67f62392b9e0ce1"
  3083. dependencies = [
  3084. "regex-automata",
  3085. ]
  3086. [[package]]
  3087. name = "matchers"
  3088. version = "0.1.0"
  3089. source = "registry+https://github.com/rust-lang/crates.io-index"
  3090. checksum = "8263075bb86c5a1b1427b5ae862e8889656f126e9f77c484496e8b47cf5c5558"
  3091. dependencies = [
  3092. "regex-automata",
  3093. ]
  3094. [[package]]
  3095. name = "matches"
  3096. version = "0.1.10"
  3097. source = "registry+https://github.com/rust-lang/crates.io-index"
  3098. checksum = "2532096657941c2fea9c289d370a250971c689d4f143798ff67113ec042024a5"
  3099. [[package]]
  3100. name = "md-5"
  3101. version = "0.10.5"
  3102. source = "registry+https://github.com/rust-lang/crates.io-index"
  3103. checksum = "6365506850d44bff6e2fbcb5176cf63650e48bd45ef2fe2665ae1570e0f4b9ca"
  3104. dependencies = [
  3105. "digest 0.10.7",
  3106. ]
  3107. [[package]]
  3108. name = "md5"
  3109. version = "0.7.0"
  3110. source = "registry+https://github.com/rust-lang/crates.io-index"
  3111. checksum = "490cc448043f947bae3cbee9c203358d62dbee0db12107a74be5c30ccfd09771"
  3112. [[package]]
  3113. name = "memchr"
  3114. version = "2.5.0"
  3115. source = "registry+https://github.com/rust-lang/crates.io-index"
  3116. checksum = "2dffe52ecf27772e601905b7522cb4ef790d2cc203488bbd0e2fe85fcb74566d"
  3117. [[package]]
  3118. name = "memoffset"
  3119. version = "0.9.0"
  3120. source = "registry+https://github.com/rust-lang/crates.io-index"
  3121. checksum = "5a634b1c61a95585bd15607c6ab0c4e5b226e695ff2800ba0cdccddf208c406c"
  3122. dependencies = [
  3123. "autocfg",
  3124. ]
  3125. [[package]]
  3126. name = "migrations_internals"
  3127. version = "1.4.1"
  3128. source = "registry+https://github.com/rust-lang/crates.io-index"
  3129. checksum = "2b4fc84e4af020b837029e017966f86a1c2d5e83e64b589963d5047525995860"
  3130. dependencies = [
  3131. "diesel",
  3132. ]
  3133. [[package]]
  3134. name = "migrations_macros"
  3135. version = "1.4.2"
  3136. source = "registry+https://github.com/rust-lang/crates.io-index"
  3137. checksum = "9753f12909fd8d923f75ae5c3258cae1ed3c8ec052e1b38c93c21a6d157f789c"
  3138. dependencies = [
  3139. "migrations_internals",
  3140. "proc-macro2",
  3141. "quote",
  3142. "syn 1.0.109",
  3143. ]
  3144. [[package]]
  3145. name = "mime"
  3146. version = "0.3.17"
  3147. source = "registry+https://github.com/rust-lang/crates.io-index"
  3148. checksum = "6877bb514081ee2a7ff5ef9de3281f14a4dd4bceac4c09388074a6b5df8a139a"
  3149. [[package]]
  3150. name = "minimal-lexical"
  3151. version = "0.2.1"
  3152. source = "registry+https://github.com/rust-lang/crates.io-index"
  3153. checksum = "68354c5c6bd36d73ff3feceb05efa59b6acb7626617f4962be322a825e61f79a"
  3154. [[package]]
  3155. name = "miniz_oxide"
  3156. version = "0.6.2"
  3157. source = "registry+https://github.com/rust-lang/crates.io-index"
  3158. checksum = "b275950c28b37e794e8c55d88aeb5e139d0ce23fdbbeda68f8d7174abdf9e8fa"
  3159. dependencies = [
  3160. "adler",
  3161. ]
  3162. [[package]]
  3163. name = "miniz_oxide"
  3164. version = "0.7.1"
  3165. source = "registry+https://github.com/rust-lang/crates.io-index"
  3166. checksum = "e7810e0be55b428ada41041c41f32c9f1a42817901b4ccf45fa3d4b6561e74c7"
  3167. dependencies = [
  3168. "adler",
  3169. "simd-adler32",
  3170. ]
  3171. [[package]]
  3172. name = "mio"
  3173. version = "0.8.8"
  3174. source = "registry+https://github.com/rust-lang/crates.io-index"
  3175. checksum = "927a765cd3fc26206e66b296465fa9d3e5ab003e651c1b3c060e7956d96b19d2"
  3176. dependencies = [
  3177. "libc",
  3178. "wasi 0.11.0+wasi-snapshot-preview1",
  3179. "windows-sys 0.48.0",
  3180. ]
  3181. [[package]]
  3182. name = "nanoid"
  3183. version = "0.4.0"
  3184. source = "registry+https://github.com/rust-lang/crates.io-index"
  3185. checksum = "3ffa00dec017b5b1a8b7cf5e2c008bfda1aa7e0697ac1508b491fdf2622fb4d8"
  3186. dependencies = [
  3187. "rand 0.8.5",
  3188. ]
  3189. [[package]]
  3190. name = "native-tls"
  3191. version = "0.2.11"
  3192. source = "registry+https://github.com/rust-lang/crates.io-index"
  3193. checksum = "07226173c32f2926027b63cce4bcd8076c3552846cbe7925f3aaffeac0a3b92e"
  3194. dependencies = [
  3195. "lazy_static",
  3196. "libc",
  3197. "log",
  3198. "openssl",
  3199. "openssl-probe",
  3200. "openssl-sys",
  3201. "schannel",
  3202. "security-framework",
  3203. "security-framework-sys",
  3204. "tempfile",
  3205. ]
  3206. [[package]]
  3207. name = "ndk"
  3208. version = "0.6.0"
  3209. source = "registry+https://github.com/rust-lang/crates.io-index"
  3210. checksum = "2032c77e030ddee34a6787a64166008da93f6a352b629261d0fee232b8742dd4"
  3211. dependencies = [
  3212. "bitflags",
  3213. "jni-sys",
  3214. "ndk-sys",
  3215. "num_enum",
  3216. "thiserror",
  3217. ]
  3218. [[package]]
  3219. name = "ndk-context"
  3220. version = "0.1.1"
  3221. source = "registry+https://github.com/rust-lang/crates.io-index"
  3222. checksum = "27b02d87554356db9e9a873add8782d4ea6e3e58ea071a9adb9a2e8ddb884a8b"
  3223. [[package]]
  3224. name = "ndk-sys"
  3225. version = "0.3.0"
  3226. source = "registry+https://github.com/rust-lang/crates.io-index"
  3227. checksum = "6e5a6ae77c8ee183dcbbba6150e2e6b9f3f4196a7666c02a715a95692ec1fa97"
  3228. dependencies = [
  3229. "jni-sys",
  3230. ]
  3231. [[package]]
  3232. name = "new_debug_unreachable"
  3233. version = "1.0.4"
  3234. source = "registry+https://github.com/rust-lang/crates.io-index"
  3235. checksum = "e4a24736216ec316047a1fc4252e27dabb04218aa4a3f37c6e7ddbf1f9782b54"
  3236. [[package]]
  3237. name = "nodrop"
  3238. version = "0.1.14"
  3239. source = "registry+https://github.com/rust-lang/crates.io-index"
  3240. checksum = "72ef4a56884ca558e5ddb05a1d1e7e1bfd9a68d9ed024c21704cc98872dae1bb"
  3241. [[package]]
  3242. name = "nom"
  3243. version = "5.1.3"
  3244. source = "registry+https://github.com/rust-lang/crates.io-index"
  3245. checksum = "08959a387a676302eebf4ddbcbc611da04285579f76f88ee0506c63b1a61dd4b"
  3246. dependencies = [
  3247. "lexical-core",
  3248. "memchr",
  3249. "version_check",
  3250. ]
  3251. [[package]]
  3252. name = "nom"
  3253. version = "7.1.3"
  3254. source = "registry+https://github.com/rust-lang/crates.io-index"
  3255. checksum = "d273983c5a657a70a3e8f2a01329822f3b8c8172b73826411a55751e404a0a4a"
  3256. dependencies = [
  3257. "memchr",
  3258. "minimal-lexical",
  3259. ]
  3260. [[package]]
  3261. name = "nu-ansi-term"
  3262. version = "0.46.0"
  3263. source = "registry+https://github.com/rust-lang/crates.io-index"
  3264. checksum = "77a8165726e8236064dbb45459242600304b42a5ea24ee2948e18e023bf7ba84"
  3265. dependencies = [
  3266. "overload",
  3267. "winapi",
  3268. ]
  3269. [[package]]
  3270. name = "num-integer"
  3271. version = "0.1.45"
  3272. source = "registry+https://github.com/rust-lang/crates.io-index"
  3273. checksum = "225d3389fb3509a24c93f5c29eb6bde2586b98d9f016636dff58d7c6f7569cd9"
  3274. dependencies = [
  3275. "autocfg",
  3276. "num-traits",
  3277. ]
  3278. [[package]]
  3279. name = "num-rational"
  3280. version = "0.4.1"
  3281. source = "registry+https://github.com/rust-lang/crates.io-index"
  3282. checksum = "0638a1c9d0a3c0914158145bc76cff373a75a627e6ecbfb71cbe6f453a5a19b0"
  3283. dependencies = [
  3284. "autocfg",
  3285. "num-integer",
  3286. "num-traits",
  3287. ]
  3288. [[package]]
  3289. name = "num-traits"
  3290. version = "0.2.15"
  3291. source = "registry+https://github.com/rust-lang/crates.io-index"
  3292. checksum = "578ede34cf02f8924ab9447f50c28075b4d3e5b269972345e7e0372b38c6cdcd"
  3293. dependencies = [
  3294. "autocfg",
  3295. ]
  3296. [[package]]
  3297. name = "num_cpus"
  3298. version = "1.15.0"
  3299. source = "registry+https://github.com/rust-lang/crates.io-index"
  3300. checksum = "0fac9e2da13b5eb447a6ce3d392f23a29d8694bff781bf03a16cd9ac8697593b"
  3301. dependencies = [
  3302. "hermit-abi 0.2.6",
  3303. "libc",
  3304. ]
  3305. [[package]]
  3306. name = "num_enum"
  3307. version = "0.5.11"
  3308. source = "registry+https://github.com/rust-lang/crates.io-index"
  3309. checksum = "1f646caf906c20226733ed5b1374287eb97e3c2a5c227ce668c1f2ce20ae57c9"
  3310. dependencies = [
  3311. "num_enum_derive",
  3312. ]
  3313. [[package]]
  3314. name = "num_enum_derive"
  3315. version = "0.5.11"
  3316. source = "registry+https://github.com/rust-lang/crates.io-index"
  3317. checksum = "dcbff9bc912032c62bf65ef1d5aea88983b420f4f839db1e9b0c281a25c9c799"
  3318. dependencies = [
  3319. "proc-macro-crate 1.3.1",
  3320. "proc-macro2",
  3321. "quote",
  3322. "syn 1.0.109",
  3323. ]
  3324. [[package]]
  3325. name = "objc"
  3326. version = "0.2.7"
  3327. source = "registry+https://github.com/rust-lang/crates.io-index"
  3328. checksum = "915b1b472bc21c53464d6c8461c9d3af805ba1ef837e1cac254428f4a77177b1"
  3329. dependencies = [
  3330. "malloc_buf",
  3331. "objc_exception",
  3332. ]
  3333. [[package]]
  3334. name = "objc_exception"
  3335. version = "0.1.2"
  3336. source = "registry+https://github.com/rust-lang/crates.io-index"
  3337. checksum = "ad970fb455818ad6cba4c122ad012fae53ae8b4795f86378bce65e4f6bab2ca4"
  3338. dependencies = [
  3339. "cc",
  3340. ]
  3341. [[package]]
  3342. name = "objc_id"
  3343. version = "0.1.1"
  3344. source = "registry+https://github.com/rust-lang/crates.io-index"
  3345. checksum = "c92d4ddb4bd7b50d730c215ff871754d0da6b2178849f8a2a2ab69712d0c073b"
  3346. dependencies = [
  3347. "objc",
  3348. ]
  3349. [[package]]
  3350. name = "object"
  3351. version = "0.30.4"
  3352. source = "registry+https://github.com/rust-lang/crates.io-index"
  3353. checksum = "03b4680b86d9cfafba8fc491dc9b6df26b68cf40e9e6cd73909194759a63c385"
  3354. dependencies = [
  3355. "memchr",
  3356. ]
  3357. [[package]]
  3358. name = "once_cell"
  3359. version = "1.18.0"
  3360. source = "registry+https://github.com/rust-lang/crates.io-index"
  3361. checksum = "dd8b5dd2ae5ed71462c540258bedcb51965123ad7e7ccf4b9a8cafaa4a63576d"
  3362. [[package]]
  3363. name = "opaque-debug"
  3364. version = "0.3.0"
  3365. source = "registry+https://github.com/rust-lang/crates.io-index"
  3366. checksum = "624a8340c38c1b80fd549087862da4ba43e08858af025b236e509b6649fc13d5"
  3367. [[package]]
  3368. name = "open"
  3369. version = "3.2.0"
  3370. source = "registry+https://github.com/rust-lang/crates.io-index"
  3371. checksum = "2078c0039e6a54a0c42c28faa984e115fb4c2d5bf2208f77d1961002df8576f8"
  3372. dependencies = [
  3373. "pathdiff",
  3374. "windows-sys 0.42.0",
  3375. ]
  3376. [[package]]
  3377. name = "openssl"
  3378. version = "0.10.55"
  3379. source = "registry+https://github.com/rust-lang/crates.io-index"
  3380. checksum = "345df152bc43501c5eb9e4654ff05f794effb78d4efe3d53abc158baddc0703d"
  3381. dependencies = [
  3382. "bitflags",
  3383. "cfg-if",
  3384. "foreign-types",
  3385. "libc",
  3386. "once_cell",
  3387. "openssl-macros",
  3388. "openssl-sys",
  3389. ]
  3390. [[package]]
  3391. name = "openssl-macros"
  3392. version = "0.1.1"
  3393. source = "registry+https://github.com/rust-lang/crates.io-index"
  3394. checksum = "a948666b637a0f465e8564c73e89d4dde00d72d4d473cc972f390fc3dcee7d9c"
  3395. dependencies = [
  3396. "proc-macro2",
  3397. "quote",
  3398. "syn 2.0.22",
  3399. ]
  3400. [[package]]
  3401. name = "openssl-probe"
  3402. version = "0.1.5"
  3403. source = "registry+https://github.com/rust-lang/crates.io-index"
  3404. checksum = "ff011a302c396a5197692431fc1948019154afc178baf7d8e37367442a4601cf"
  3405. [[package]]
  3406. name = "openssl-sys"
  3407. version = "0.9.90"
  3408. source = "registry+https://github.com/rust-lang/crates.io-index"
  3409. checksum = "374533b0e45f3a7ced10fcaeccca020e66656bc03dac384f852e4e5a7a8104a6"
  3410. dependencies = [
  3411. "cc",
  3412. "libc",
  3413. "pkg-config",
  3414. "vcpkg",
  3415. ]
  3416. [[package]]
  3417. name = "os_pipe"
  3418. version = "0.9.2"
  3419. source = "registry+https://github.com/rust-lang/crates.io-index"
  3420. checksum = "fb233f06c2307e1f5ce2ecad9f8121cffbbee2c95428f44ea85222e460d0d213"
  3421. dependencies = [
  3422. "libc",
  3423. "winapi",
  3424. ]
  3425. [[package]]
  3426. name = "outref"
  3427. version = "0.5.1"
  3428. source = "registry+https://github.com/rust-lang/crates.io-index"
  3429. checksum = "4030760ffd992bef45b0ae3f10ce1aba99e33464c90d14dd7c039884963ddc7a"
  3430. [[package]]
  3431. name = "overload"
  3432. version = "0.1.1"
  3433. source = "registry+https://github.com/rust-lang/crates.io-index"
  3434. checksum = "b15813163c1d831bf4a13c3610c05c0d03b39feb07f7e09fa234dac9b15aaf39"
  3435. [[package]]
  3436. name = "pango"
  3437. version = "0.15.10"
  3438. source = "registry+https://github.com/rust-lang/crates.io-index"
  3439. checksum = "22e4045548659aee5313bde6c582b0d83a627b7904dd20dc2d9ef0895d414e4f"
  3440. dependencies = [
  3441. "bitflags",
  3442. "glib",
  3443. "libc",
  3444. "once_cell",
  3445. "pango-sys",
  3446. ]
  3447. [[package]]
  3448. name = "pango-sys"
  3449. version = "0.15.10"
  3450. source = "registry+https://github.com/rust-lang/crates.io-index"
  3451. checksum = "d2a00081cde4661982ed91d80ef437c20eacaf6aa1a5962c0279ae194662c3aa"
  3452. dependencies = [
  3453. "glib-sys",
  3454. "gobject-sys",
  3455. "libc",
  3456. "system-deps 6.1.1",
  3457. ]
  3458. [[package]]
  3459. name = "parking_lot"
  3460. version = "0.11.2"
  3461. source = "registry+https://github.com/rust-lang/crates.io-index"
  3462. checksum = "7d17b78036a60663b797adeaee46f5c9dfebb86948d1255007a1d6be0271ff99"
  3463. dependencies = [
  3464. "instant",
  3465. "lock_api",
  3466. "parking_lot_core 0.8.6",
  3467. ]
  3468. [[package]]
  3469. name = "parking_lot"
  3470. version = "0.12.1"
  3471. source = "registry+https://github.com/rust-lang/crates.io-index"
  3472. checksum = "3742b2c103b9f06bc9fff0a37ff4912935851bee6d36f3c02bcc755bcfec228f"
  3473. dependencies = [
  3474. "lock_api",
  3475. "parking_lot_core 0.9.8",
  3476. ]
  3477. [[package]]
  3478. name = "parking_lot_core"
  3479. version = "0.8.6"
  3480. source = "registry+https://github.com/rust-lang/crates.io-index"
  3481. checksum = "60a2cfe6f0ad2bfc16aefa463b497d5c7a5ecd44a23efa72aa342d90177356dc"
  3482. dependencies = [
  3483. "cfg-if",
  3484. "instant",
  3485. "libc",
  3486. "redox_syscall 0.2.16",
  3487. "smallvec",
  3488. "winapi",
  3489. ]
  3490. [[package]]
  3491. name = "parking_lot_core"
  3492. version = "0.9.8"
  3493. source = "registry+https://github.com/rust-lang/crates.io-index"
  3494. checksum = "93f00c865fe7cabf650081affecd3871070f26767e7b2070a3ffae14c654b447"
  3495. dependencies = [
  3496. "cfg-if",
  3497. "libc",
  3498. "redox_syscall 0.3.5",
  3499. "smallvec",
  3500. "windows-targets",
  3501. ]
  3502. [[package]]
  3503. name = "parse-zoneinfo"
  3504. version = "0.3.0"
  3505. source = "registry+https://github.com/rust-lang/crates.io-index"
  3506. checksum = "c705f256449c60da65e11ff6626e0c16a0a0b96aaa348de61376b249bc340f41"
  3507. dependencies = [
  3508. "regex",
  3509. ]
  3510. [[package]]
  3511. name = "pathdiff"
  3512. version = "0.2.1"
  3513. source = "registry+https://github.com/rust-lang/crates.io-index"
  3514. checksum = "8835116a5c179084a830efb3adc117ab007512b535bc1a21c991d3b32a6b44dd"
  3515. [[package]]
  3516. name = "peeking_take_while"
  3517. version = "0.1.2"
  3518. source = "registry+https://github.com/rust-lang/crates.io-index"
  3519. checksum = "19b17cddbe7ec3f8bc800887bab5e717348c95ea2ca0b1bf0837fb964dc67099"
  3520. [[package]]
  3521. name = "percent-encoding"
  3522. version = "2.3.0"
  3523. source = "registry+https://github.com/rust-lang/crates.io-index"
  3524. checksum = "9b2a4787296e9989611394c33f193f676704af1686e70b8f8033ab5ba9a35a94"
  3525. [[package]]
  3526. name = "pest"
  3527. version = "2.7.0"
  3528. source = "registry+https://github.com/rust-lang/crates.io-index"
  3529. checksum = "f73935e4d55e2abf7f130186537b19e7a4abc886a0252380b59248af473a3fc9"
  3530. dependencies = [
  3531. "thiserror",
  3532. "ucd-trie",
  3533. ]
  3534. [[package]]
  3535. name = "pest_derive"
  3536. version = "2.7.0"
  3537. source = "registry+https://github.com/rust-lang/crates.io-index"
  3538. checksum = "aef623c9bbfa0eedf5a0efba11a5ee83209c326653ca31ff019bec3a95bfff2b"
  3539. dependencies = [
  3540. "pest",
  3541. "pest_generator",
  3542. ]
  3543. [[package]]
  3544. name = "pest_generator"
  3545. version = "2.7.0"
  3546. source = "registry+https://github.com/rust-lang/crates.io-index"
  3547. checksum = "b3e8cba4ec22bada7fc55ffe51e2deb6a0e0db2d0b7ab0b103acc80d2510c190"
  3548. dependencies = [
  3549. "pest",
  3550. "pest_meta",
  3551. "proc-macro2",
  3552. "quote",
  3553. "syn 2.0.22",
  3554. ]
  3555. [[package]]
  3556. name = "pest_meta"
  3557. version = "2.7.0"
  3558. source = "registry+https://github.com/rust-lang/crates.io-index"
  3559. checksum = "a01f71cb40bd8bb94232df14b946909e14660e33fc05db3e50ae2a82d7ea0ca0"
  3560. dependencies = [
  3561. "once_cell",
  3562. "pest",
  3563. "sha2",
  3564. ]
  3565. [[package]]
  3566. name = "phf"
  3567. version = "0.8.0"
  3568. source = "registry+https://github.com/rust-lang/crates.io-index"
  3569. checksum = "3dfb61232e34fcb633f43d12c58f83c1df82962dcdfa565a4e866ffc17dafe12"
  3570. dependencies = [
  3571. "phf_macros 0.8.0",
  3572. "phf_shared 0.8.0",
  3573. "proc-macro-hack",
  3574. ]
  3575. [[package]]
  3576. name = "phf"
  3577. version = "0.10.1"
  3578. source = "registry+https://github.com/rust-lang/crates.io-index"
  3579. checksum = "fabbf1ead8a5bcbc20f5f8b939ee3f5b0f6f281b6ad3468b84656b658b455259"
  3580. dependencies = [
  3581. "phf_macros 0.10.0",
  3582. "phf_shared 0.10.0",
  3583. "proc-macro-hack",
  3584. ]
  3585. [[package]]
  3586. name = "phf"
  3587. version = "0.11.2"
  3588. source = "registry+https://github.com/rust-lang/crates.io-index"
  3589. checksum = "ade2d8b8f33c7333b51bcf0428d37e217e9f32192ae4772156f65063b8ce03dc"
  3590. dependencies = [
  3591. "phf_shared 0.11.2",
  3592. ]
  3593. [[package]]
  3594. name = "phf_codegen"
  3595. version = "0.8.0"
  3596. source = "registry+https://github.com/rust-lang/crates.io-index"
  3597. checksum = "cbffee61585b0411840d3ece935cce9cb6321f01c45477d30066498cd5e1a815"
  3598. dependencies = [
  3599. "phf_generator 0.8.0",
  3600. "phf_shared 0.8.0",
  3601. ]
  3602. [[package]]
  3603. name = "phf_codegen"
  3604. version = "0.10.0"
  3605. source = "registry+https://github.com/rust-lang/crates.io-index"
  3606. checksum = "4fb1c3a8bc4dd4e5cfce29b44ffc14bedd2ee294559a294e2a4d4c9e9a6a13cd"
  3607. dependencies = [
  3608. "phf_generator 0.10.0",
  3609. "phf_shared 0.10.0",
  3610. ]
  3611. [[package]]
  3612. name = "phf_codegen"
  3613. version = "0.11.2"
  3614. source = "registry+https://github.com/rust-lang/crates.io-index"
  3615. checksum = "e8d39688d359e6b34654d328e262234662d16cc0f60ec8dcbe5e718709342a5a"
  3616. dependencies = [
  3617. "phf_generator 0.11.2",
  3618. "phf_shared 0.11.2",
  3619. ]
  3620. [[package]]
  3621. name = "phf_generator"
  3622. version = "0.8.0"
  3623. source = "registry+https://github.com/rust-lang/crates.io-index"
  3624. checksum = "17367f0cc86f2d25802b2c26ee58a7b23faeccf78a396094c13dced0d0182526"
  3625. dependencies = [
  3626. "phf_shared 0.8.0",
  3627. "rand 0.7.3",
  3628. ]
  3629. [[package]]
  3630. name = "phf_generator"
  3631. version = "0.10.0"
  3632. source = "registry+https://github.com/rust-lang/crates.io-index"
  3633. checksum = "5d5285893bb5eb82e6aaf5d59ee909a06a16737a8970984dd7746ba9283498d6"
  3634. dependencies = [
  3635. "phf_shared 0.10.0",
  3636. "rand 0.8.5",
  3637. ]
  3638. [[package]]
  3639. name = "phf_generator"
  3640. version = "0.11.2"
  3641. source = "registry+https://github.com/rust-lang/crates.io-index"
  3642. checksum = "48e4cc64c2ad9ebe670cb8fd69dd50ae301650392e81c05f9bfcb2d5bdbc24b0"
  3643. dependencies = [
  3644. "phf_shared 0.11.2",
  3645. "rand 0.8.5",
  3646. ]
  3647. [[package]]
  3648. name = "phf_macros"
  3649. version = "0.8.0"
  3650. source = "registry+https://github.com/rust-lang/crates.io-index"
  3651. checksum = "7f6fde18ff429ffc8fe78e2bf7f8b7a5a5a6e2a8b58bc5a9ac69198bbda9189c"
  3652. dependencies = [
  3653. "phf_generator 0.8.0",
  3654. "phf_shared 0.8.0",
  3655. "proc-macro-hack",
  3656. "proc-macro2",
  3657. "quote",
  3658. "syn 1.0.109",
  3659. ]
  3660. [[package]]
  3661. name = "phf_macros"
  3662. version = "0.10.0"
  3663. source = "registry+https://github.com/rust-lang/crates.io-index"
  3664. checksum = "58fdf3184dd560f160dd73922bea2d5cd6e8f064bf4b13110abd81b03697b4e0"
  3665. dependencies = [
  3666. "phf_generator 0.10.0",
  3667. "phf_shared 0.10.0",
  3668. "proc-macro-hack",
  3669. "proc-macro2",
  3670. "quote",
  3671. "syn 1.0.109",
  3672. ]
  3673. [[package]]
  3674. name = "phf_shared"
  3675. version = "0.8.0"
  3676. source = "registry+https://github.com/rust-lang/crates.io-index"
  3677. checksum = "c00cf8b9eafe68dde5e9eaa2cef8ee84a9336a47d566ec55ca16589633b65af7"
  3678. dependencies = [
  3679. "siphasher",
  3680. ]
  3681. [[package]]
  3682. name = "phf_shared"
  3683. version = "0.10.0"
  3684. source = "registry+https://github.com/rust-lang/crates.io-index"
  3685. checksum = "b6796ad771acdc0123d2a88dc428b5e38ef24456743ddb1744ed628f9815c096"
  3686. dependencies = [
  3687. "siphasher",
  3688. "uncased",
  3689. ]
  3690. [[package]]
  3691. name = "phf_shared"
  3692. version = "0.11.2"
  3693. source = "registry+https://github.com/rust-lang/crates.io-index"
  3694. checksum = "90fcb95eef784c2ac79119d1dd819e162b5da872ce6f3c3abe1e8ca1c082f72b"
  3695. dependencies = [
  3696. "siphasher",
  3697. ]
  3698. [[package]]
  3699. name = "pin-project"
  3700. version = "1.1.0"
  3701. source = "registry+https://github.com/rust-lang/crates.io-index"
  3702. checksum = "c95a7476719eab1e366eaf73d0260af3021184f18177925b07f54b30089ceead"
  3703. dependencies = [
  3704. "pin-project-internal",
  3705. ]
  3706. [[package]]
  3707. name = "pin-project-internal"
  3708. version = "1.1.0"
  3709. source = "registry+https://github.com/rust-lang/crates.io-index"
  3710. checksum = "39407670928234ebc5e6e580247dd567ad73a3578460c5990f9503df207e8f07"
  3711. dependencies = [
  3712. "proc-macro2",
  3713. "quote",
  3714. "syn 2.0.22",
  3715. ]
  3716. [[package]]
  3717. name = "pin-project-lite"
  3718. version = "0.2.9"
  3719. source = "registry+https://github.com/rust-lang/crates.io-index"
  3720. checksum = "e0a7ae3ac2f1173085d398531c705756c94a4c56843785df85a60c1a0afac116"
  3721. [[package]]
  3722. name = "pin-utils"
  3723. version = "0.1.0"
  3724. source = "registry+https://github.com/rust-lang/crates.io-index"
  3725. checksum = "8b870d8c151b6f2fb93e84a13146138f05d02ed11c7e7c54f8826aaaf7c9f184"
  3726. [[package]]
  3727. name = "pkg-config"
  3728. version = "0.3.27"
  3729. source = "registry+https://github.com/rust-lang/crates.io-index"
  3730. checksum = "26072860ba924cbfa98ea39c8c19b4dd6a4a25423dbdf219c1eca91aa0cf6964"
  3731. [[package]]
  3732. name = "plist"
  3733. version = "1.4.3"
  3734. source = "registry+https://github.com/rust-lang/crates.io-index"
  3735. checksum = "9bd9647b268a3d3e14ff09c23201133a62589c658db02bb7388c7246aafe0590"
  3736. dependencies = [
  3737. "base64 0.21.2",
  3738. "indexmap 1.9.3",
  3739. "line-wrap",
  3740. "quick-xml",
  3741. "serde",
  3742. "time 0.3.22",
  3743. ]
  3744. [[package]]
  3745. name = "png"
  3746. version = "0.17.9"
  3747. source = "registry+https://github.com/rust-lang/crates.io-index"
  3748. checksum = "59871cc5b6cce7eaccca5a802b4173377a1c2ba90654246789a8fa2334426d11"
  3749. dependencies = [
  3750. "bitflags",
  3751. "crc32fast",
  3752. "fdeflate",
  3753. "flate2",
  3754. "miniz_oxide 0.7.1",
  3755. ]
  3756. [[package]]
  3757. name = "postgres-protocol"
  3758. version = "0.6.5"
  3759. source = "registry+https://github.com/rust-lang/crates.io-index"
  3760. checksum = "78b7fa9f396f51dffd61546fd8573ee20592287996568e6175ceb0f8699ad75d"
  3761. dependencies = [
  3762. "base64 0.21.2",
  3763. "byteorder",
  3764. "bytes",
  3765. "fallible-iterator",
  3766. "hmac",
  3767. "md-5",
  3768. "memchr",
  3769. "rand 0.8.5",
  3770. "sha2",
  3771. "stringprep",
  3772. ]
  3773. [[package]]
  3774. name = "postgres-types"
  3775. version = "0.2.5"
  3776. source = "registry+https://github.com/rust-lang/crates.io-index"
  3777. checksum = "f028f05971fe20f512bcc679e2c10227e57809a3af86a7606304435bc8896cd6"
  3778. dependencies = [
  3779. "bytes",
  3780. "chrono",
  3781. "fallible-iterator",
  3782. "postgres-protocol",
  3783. "uuid",
  3784. ]
  3785. [[package]]
  3786. name = "postgrest"
  3787. version = "1.5.0"
  3788. source = "registry+https://github.com/rust-lang/crates.io-index"
  3789. checksum = "e66400cb23a379592bc8c8bdc9adda652eef4a969b74ab78454a8e8c11330c2b"
  3790. dependencies = [
  3791. "reqwest",
  3792. ]
  3793. [[package]]
  3794. name = "ppv-lite86"
  3795. version = "0.2.17"
  3796. source = "registry+https://github.com/rust-lang/crates.io-index"
  3797. checksum = "5b40af805b3121feab8a3c29f04d8ad262fa8e0561883e7653e024ae4479e6de"
  3798. [[package]]
  3799. name = "precomputed-hash"
  3800. version = "0.1.1"
  3801. source = "registry+https://github.com/rust-lang/crates.io-index"
  3802. checksum = "925383efa346730478fb4838dbe9137d2a47675ad789c546d150a6e1dd4ab31c"
  3803. [[package]]
  3804. name = "prettyplease"
  3805. version = "0.2.9"
  3806. source = "registry+https://github.com/rust-lang/crates.io-index"
  3807. checksum = "9825a04601d60621feed79c4e6b56d65db77cdca55cef43b46b0de1096d1c282"
  3808. dependencies = [
  3809. "proc-macro2",
  3810. "syn 2.0.22",
  3811. ]
  3812. [[package]]
  3813. name = "proc-macro-crate"
  3814. version = "0.1.5"
  3815. source = "registry+https://github.com/rust-lang/crates.io-index"
  3816. checksum = "1d6ea3c4595b96363c13943497db34af4460fb474a95c43f4446ad341b8c9785"
  3817. dependencies = [
  3818. "toml 0.5.11",
  3819. ]
  3820. [[package]]
  3821. name = "proc-macro-crate"
  3822. version = "1.3.1"
  3823. source = "registry+https://github.com/rust-lang/crates.io-index"
  3824. checksum = "7f4c021e1093a56626774e81216a4ce732a735e5bad4868a03f3ed65ca0c3919"
  3825. dependencies = [
  3826. "once_cell",
  3827. "toml_edit",
  3828. ]
  3829. [[package]]
  3830. name = "proc-macro-error"
  3831. version = "1.0.4"
  3832. source = "registry+https://github.com/rust-lang/crates.io-index"
  3833. checksum = "da25490ff9892aab3fcf7c36f08cfb902dd3e71ca0f9f9517bea02a73a5ce38c"
  3834. dependencies = [
  3835. "proc-macro-error-attr",
  3836. "proc-macro2",
  3837. "quote",
  3838. "syn 1.0.109",
  3839. "version_check",
  3840. ]
  3841. [[package]]
  3842. name = "proc-macro-error-attr"
  3843. version = "1.0.4"
  3844. source = "registry+https://github.com/rust-lang/crates.io-index"
  3845. checksum = "a1be40180e52ecc98ad80b184934baf3d0d29f979574e439af5a55274b35f869"
  3846. dependencies = [
  3847. "proc-macro2",
  3848. "quote",
  3849. "version_check",
  3850. ]
  3851. [[package]]
  3852. name = "proc-macro-hack"
  3853. version = "0.5.20+deprecated"
  3854. source = "registry+https://github.com/rust-lang/crates.io-index"
  3855. checksum = "dc375e1527247fe1a97d8b7156678dfe7c1af2fc075c9a4db3690ecd2a148068"
  3856. [[package]]
  3857. name = "proc-macro2"
  3858. version = "1.0.63"
  3859. source = "registry+https://github.com/rust-lang/crates.io-index"
  3860. checksum = "7b368fba921b0dce7e60f5e04ec15e565b3303972b42bcfde1d0713b881959eb"
  3861. dependencies = [
  3862. "unicode-ident",
  3863. ]
  3864. [[package]]
  3865. name = "protobuf"
  3866. version = "2.28.0"
  3867. source = "registry+https://github.com/rust-lang/crates.io-index"
  3868. checksum = "106dd99e98437432fed6519dedecfade6a06a73bb7b2a1e019fdd2bee5778d94"
  3869. [[package]]
  3870. name = "protobuf-codegen"
  3871. version = "2.28.0"
  3872. source = "registry+https://github.com/rust-lang/crates.io-index"
  3873. checksum = "033460afb75cf755fcfc16dfaed20b86468082a2ea24e05ac35ab4a099a017d6"
  3874. dependencies = [
  3875. "protobuf",
  3876. ]
  3877. [[package]]
  3878. name = "protoc"
  3879. version = "2.28.0"
  3880. source = "registry+https://github.com/rust-lang/crates.io-index"
  3881. checksum = "a0218039c514f9e14a5060742ecd50427f8ac4f85a6dc58f2ddb806e318c55ee"
  3882. dependencies = [
  3883. "log",
  3884. "which",
  3885. ]
  3886. [[package]]
  3887. name = "protoc-bin-vendored"
  3888. version = "3.0.0"
  3889. source = "registry+https://github.com/rust-lang/crates.io-index"
  3890. checksum = "005ca8623e5633e298ad1f917d8be0a44bcf406bf3cde3b80e63003e49a3f27d"
  3891. dependencies = [
  3892. "protoc-bin-vendored-linux-aarch_64",
  3893. "protoc-bin-vendored-linux-ppcle_64",
  3894. "protoc-bin-vendored-linux-x86_32",
  3895. "protoc-bin-vendored-linux-x86_64",
  3896. "protoc-bin-vendored-macos-x86_64",
  3897. "protoc-bin-vendored-win32",
  3898. ]
  3899. [[package]]
  3900. name = "protoc-bin-vendored-linux-aarch_64"
  3901. version = "3.0.0"
  3902. source = "registry+https://github.com/rust-lang/crates.io-index"
  3903. checksum = "8fb9fc9cce84c8694b6ea01cc6296617b288b703719b725b8c9c65f7c5874435"
  3904. [[package]]
  3905. name = "protoc-bin-vendored-linux-ppcle_64"
  3906. version = "3.0.0"
  3907. source = "registry+https://github.com/rust-lang/crates.io-index"
  3908. checksum = "02d2a07dcf7173a04d49974930ccbfb7fd4d74df30ecfc8762cf2f895a094516"
  3909. [[package]]
  3910. name = "protoc-bin-vendored-linux-x86_32"
  3911. version = "3.0.0"
  3912. source = "registry+https://github.com/rust-lang/crates.io-index"
  3913. checksum = "d54fef0b04fcacba64d1d80eed74a20356d96847da8497a59b0a0a436c9165b0"
  3914. [[package]]
  3915. name = "protoc-bin-vendored-linux-x86_64"
  3916. version = "3.0.0"
  3917. source = "registry+https://github.com/rust-lang/crates.io-index"
  3918. checksum = "b8782f2ce7d43a9a5c74ea4936f001e9e8442205c244f7a3d4286bd4c37bc924"
  3919. [[package]]
  3920. name = "protoc-bin-vendored-macos-x86_64"
  3921. version = "3.0.0"
  3922. source = "registry+https://github.com/rust-lang/crates.io-index"
  3923. checksum = "b5de656c7ee83f08e0ae5b81792ccfdc1d04e7876b1d9a38e6876a9e09e02537"
  3924. [[package]]
  3925. name = "protoc-bin-vendored-win32"
  3926. version = "3.0.0"
  3927. source = "registry+https://github.com/rust-lang/crates.io-index"
  3928. checksum = "9653c3ed92974e34c5a6e0a510864dab979760481714c172e0a34e437cb98804"
  3929. [[package]]
  3930. name = "protoc-rust"
  3931. version = "2.28.0"
  3932. source = "registry+https://github.com/rust-lang/crates.io-index"
  3933. checksum = "22f8a182bb17c485f20bdc4274a8c39000a61024cfe461c799b50fec77267838"
  3934. dependencies = [
  3935. "protobuf",
  3936. "protobuf-codegen",
  3937. "protoc",
  3938. "tempfile",
  3939. ]
  3940. [[package]]
  3941. name = "ptr_meta"
  3942. version = "0.1.4"
  3943. source = "registry+https://github.com/rust-lang/crates.io-index"
  3944. checksum = "0738ccf7ea06b608c10564b31debd4f5bc5e197fc8bfe088f68ae5ce81e7a4f1"
  3945. dependencies = [
  3946. "ptr_meta_derive",
  3947. ]
  3948. [[package]]
  3949. name = "ptr_meta_derive"
  3950. version = "0.1.4"
  3951. source = "registry+https://github.com/rust-lang/crates.io-index"
  3952. checksum = "16b845dbfca988fa33db069c0e230574d15a3088f147a87b64c7589eb662c9ac"
  3953. dependencies = [
  3954. "proc-macro2",
  3955. "quote",
  3956. "syn 1.0.109",
  3957. ]
  3958. [[package]]
  3959. name = "quick-xml"
  3960. version = "0.28.2"
  3961. source = "registry+https://github.com/rust-lang/crates.io-index"
  3962. checksum = "0ce5e73202a820a31f8a0ee32ada5e21029c81fd9e3ebf668a40832e4219d9d1"
  3963. dependencies = [
  3964. "memchr",
  3965. ]
  3966. [[package]]
  3967. name = "quote"
  3968. version = "1.0.28"
  3969. source = "registry+https://github.com/rust-lang/crates.io-index"
  3970. checksum = "1b9ab9c7eadfd8df19006f1cf1a4aed13540ed5cbc047010ece5826e10825488"
  3971. dependencies = [
  3972. "proc-macro2",
  3973. ]
  3974. [[package]]
  3975. name = "r2d2"
  3976. version = "0.8.10"
  3977. source = "registry+https://github.com/rust-lang/crates.io-index"
  3978. checksum = "51de85fb3fb6524929c8a2eb85e6b6d363de4e8c48f9e2c2eac4944abc181c93"
  3979. dependencies = [
  3980. "log",
  3981. "parking_lot 0.12.1",
  3982. "scheduled-thread-pool",
  3983. ]
  3984. [[package]]
  3985. name = "radium"
  3986. version = "0.7.0"
  3987. source = "registry+https://github.com/rust-lang/crates.io-index"
  3988. checksum = "dc33ff2d4973d518d823d61aa239014831e521c75da58e3df4840d3f47749d09"
  3989. [[package]]
  3990. name = "rand"
  3991. version = "0.7.3"
  3992. source = "registry+https://github.com/rust-lang/crates.io-index"
  3993. checksum = "6a6b1679d49b24bbfe0c803429aa1874472f50d9b363131f0e89fc356b544d03"
  3994. dependencies = [
  3995. "getrandom 0.1.16",
  3996. "libc",
  3997. "rand_chacha 0.2.2",
  3998. "rand_core 0.5.1",
  3999. "rand_hc",
  4000. "rand_pcg",
  4001. ]
  4002. [[package]]
  4003. name = "rand"
  4004. version = "0.8.5"
  4005. source = "registry+https://github.com/rust-lang/crates.io-index"
  4006. checksum = "34af8d1a0e25924bc5b7c43c079c942339d8f0a8b57c39049bef581b46327404"
  4007. dependencies = [
  4008. "libc",
  4009. "rand_chacha 0.3.1",
  4010. "rand_core 0.6.4",
  4011. ]
  4012. [[package]]
  4013. name = "rand_chacha"
  4014. version = "0.2.2"
  4015. source = "registry+https://github.com/rust-lang/crates.io-index"
  4016. checksum = "f4c8ed856279c9737206bf725bf36935d8666ead7aa69b52be55af369d193402"
  4017. dependencies = [
  4018. "ppv-lite86",
  4019. "rand_core 0.5.1",
  4020. ]
  4021. [[package]]
  4022. name = "rand_chacha"
  4023. version = "0.3.1"
  4024. source = "registry+https://github.com/rust-lang/crates.io-index"
  4025. checksum = "e6c10a63a0fa32252be49d21e7709d4d4baf8d231c2dbce1eaa8141b9b127d88"
  4026. dependencies = [
  4027. "ppv-lite86",
  4028. "rand_core 0.6.4",
  4029. ]
  4030. [[package]]
  4031. name = "rand_core"
  4032. version = "0.5.1"
  4033. source = "registry+https://github.com/rust-lang/crates.io-index"
  4034. checksum = "90bde5296fc891b0cef12a6d03ddccc162ce7b2aff54160af9338f8d40df6d19"
  4035. dependencies = [
  4036. "getrandom 0.1.16",
  4037. ]
  4038. [[package]]
  4039. name = "rand_core"
  4040. version = "0.6.4"
  4041. source = "registry+https://github.com/rust-lang/crates.io-index"
  4042. checksum = "ec0be4795e2f6a28069bec0b5ff3e2ac9bafc99e6a9a7dc3547996c5c816922c"
  4043. dependencies = [
  4044. "getrandom 0.2.10",
  4045. ]
  4046. [[package]]
  4047. name = "rand_hc"
  4048. version = "0.2.0"
  4049. source = "registry+https://github.com/rust-lang/crates.io-index"
  4050. checksum = "ca3129af7b92a17112d59ad498c6f81eaf463253766b90396d39ea7a39d6613c"
  4051. dependencies = [
  4052. "rand_core 0.5.1",
  4053. ]
  4054. [[package]]
  4055. name = "rand_pcg"
  4056. version = "0.2.1"
  4057. source = "registry+https://github.com/rust-lang/crates.io-index"
  4058. checksum = "16abd0c1b639e9eb4d7c50c0b8100b0d0f849be2349829c740fe8e6eb4816429"
  4059. dependencies = [
  4060. "rand_core 0.5.1",
  4061. ]
  4062. [[package]]
  4063. name = "raw-window-handle"
  4064. version = "0.5.2"
  4065. source = "registry+https://github.com/rust-lang/crates.io-index"
  4066. checksum = "f2ff9a1f06a88b01621b7ae906ef0211290d1c8a168a15542486a8f61c0833b9"
  4067. [[package]]
  4068. name = "rayon"
  4069. version = "1.7.0"
  4070. source = "registry+https://github.com/rust-lang/crates.io-index"
  4071. checksum = "1d2df5196e37bcc87abebc0053e20787d73847bb33134a69841207dd0a47f03b"
  4072. dependencies = [
  4073. "either",
  4074. "rayon-core",
  4075. ]
  4076. [[package]]
  4077. name = "rayon-core"
  4078. version = "1.11.0"
  4079. source = "registry+https://github.com/rust-lang/crates.io-index"
  4080. checksum = "4b8f95bd6966f5c87776639160a66bd8ab9895d9d4ab01ddba9fc60661aebe8d"
  4081. dependencies = [
  4082. "crossbeam-channel",
  4083. "crossbeam-deque",
  4084. "crossbeam-utils",
  4085. "num_cpus",
  4086. ]
  4087. [[package]]
  4088. name = "redox_syscall"
  4089. version = "0.1.57"
  4090. source = "registry+https://github.com/rust-lang/crates.io-index"
  4091. checksum = "41cc0f7e4d5d4544e8861606a285bb08d3e70712ccc7d2b84d7c0ccfaf4b05ce"
  4092. [[package]]
  4093. name = "redox_syscall"
  4094. version = "0.2.16"
  4095. source = "registry+https://github.com/rust-lang/crates.io-index"
  4096. checksum = "fb5a58c1855b4b6819d59012155603f0b22ad30cad752600aadfcb695265519a"
  4097. dependencies = [
  4098. "bitflags",
  4099. ]
  4100. [[package]]
  4101. name = "redox_syscall"
  4102. version = "0.3.5"
  4103. source = "registry+https://github.com/rust-lang/crates.io-index"
  4104. checksum = "567664f262709473930a4bf9e51bf2ebf3348f2e748ccc50dea20646858f8f29"
  4105. dependencies = [
  4106. "bitflags",
  4107. ]
  4108. [[package]]
  4109. name = "redox_users"
  4110. version = "0.4.3"
  4111. source = "registry+https://github.com/rust-lang/crates.io-index"
  4112. checksum = "b033d837a7cf162d7993aded9304e30a83213c648b6e389db233191f891e5c2b"
  4113. dependencies = [
  4114. "getrandom 0.2.10",
  4115. "redox_syscall 0.2.16",
  4116. "thiserror",
  4117. ]
  4118. [[package]]
  4119. name = "refinery"
  4120. version = "0.8.10"
  4121. source = "registry+https://github.com/rust-lang/crates.io-index"
  4122. checksum = "cdb0436d0dd7bd8d4fce1e828751fa79742b08e35f27cfea7546f8a322b5ef24"
  4123. dependencies = [
  4124. "refinery-core",
  4125. "refinery-macros",
  4126. ]
  4127. [[package]]
  4128. name = "refinery-core"
  4129. version = "0.8.10"
  4130. source = "registry+https://github.com/rust-lang/crates.io-index"
  4131. checksum = "19206547cd047e8f4dfa6b20c30d3ecaf24be05841b6aa0aa926a47a3d0662bb"
  4132. dependencies = [
  4133. "async-trait",
  4134. "cfg-if",
  4135. "lazy_static",
  4136. "log",
  4137. "regex",
  4138. "serde",
  4139. "siphasher",
  4140. "thiserror",
  4141. "time 0.3.22",
  4142. "tokio",
  4143. "tokio-postgres",
  4144. "toml 0.7.5",
  4145. "url",
  4146. "walkdir",
  4147. ]
  4148. [[package]]
  4149. name = "refinery-macros"
  4150. version = "0.8.10"
  4151. source = "registry+https://github.com/rust-lang/crates.io-index"
  4152. checksum = "d94d4b9241859ba19eaa5c04c86e782eb3aa0aae2c5868e0cfa90c856e58a174"
  4153. dependencies = [
  4154. "proc-macro2",
  4155. "quote",
  4156. "refinery-core",
  4157. "regex",
  4158. "syn 2.0.22",
  4159. ]
  4160. [[package]]
  4161. name = "regex"
  4162. version = "1.8.4"
  4163. source = "registry+https://github.com/rust-lang/crates.io-index"
  4164. checksum = "d0ab3ca65655bb1e41f2a8c8cd662eb4fb035e67c3f78da1d61dffe89d07300f"
  4165. dependencies = [
  4166. "aho-corasick 1.0.2",
  4167. "memchr",
  4168. "regex-syntax 0.7.2",
  4169. ]
  4170. [[package]]
  4171. name = "regex-automata"
  4172. version = "0.1.10"
  4173. source = "registry+https://github.com/rust-lang/crates.io-index"
  4174. checksum = "6c230d73fb8d8c1b9c0b3135c5142a8acee3a0558fb8db5cf1cb65f8d7862132"
  4175. dependencies = [
  4176. "regex-syntax 0.6.29",
  4177. ]
  4178. [[package]]
  4179. name = "regex-syntax"
  4180. version = "0.6.29"
  4181. source = "registry+https://github.com/rust-lang/crates.io-index"
  4182. checksum = "f162c6dd7b008981e4d40210aca20b4bd0f9b60ca9271061b07f78537722f2e1"
  4183. [[package]]
  4184. name = "regex-syntax"
  4185. version = "0.7.2"
  4186. source = "registry+https://github.com/rust-lang/crates.io-index"
  4187. checksum = "436b050e76ed2903236f032a59761c1eb99e1b0aead2c257922771dab1fc8c78"
  4188. [[package]]
  4189. name = "rend"
  4190. version = "0.4.0"
  4191. source = "registry+https://github.com/rust-lang/crates.io-index"
  4192. checksum = "581008d2099240d37fb08d77ad713bcaec2c4d89d50b5b21a8bb1996bbab68ab"
  4193. dependencies = [
  4194. "bytecheck",
  4195. ]
  4196. [[package]]
  4197. name = "reqwest"
  4198. version = "0.11.18"
  4199. source = "registry+https://github.com/rust-lang/crates.io-index"
  4200. checksum = "cde824a14b7c14f85caff81225f411faacc04a2013f41670f41443742b1c1c55"
  4201. dependencies = [
  4202. "base64 0.21.2",
  4203. "bytes",
  4204. "encoding_rs",
  4205. "futures-core",
  4206. "futures-util",
  4207. "h2",
  4208. "http",
  4209. "http-body",
  4210. "hyper",
  4211. "hyper-rustls 0.24.0",
  4212. "hyper-tls",
  4213. "ipnet",
  4214. "js-sys",
  4215. "log",
  4216. "mime",
  4217. "native-tls",
  4218. "once_cell",
  4219. "percent-encoding",
  4220. "pin-project-lite",
  4221. "rustls 0.21.2",
  4222. "rustls-pemfile",
  4223. "serde",
  4224. "serde_json",
  4225. "serde_urlencoded",
  4226. "tokio",
  4227. "tokio-native-tls",
  4228. "tokio-rustls 0.24.1",
  4229. "tower-service",
  4230. "url",
  4231. "wasm-bindgen",
  4232. "wasm-bindgen-futures",
  4233. "web-sys",
  4234. "webpki-roots",
  4235. "winreg 0.10.1",
  4236. ]
  4237. [[package]]
  4238. name = "retain_mut"
  4239. version = "0.1.9"
  4240. source = "registry+https://github.com/rust-lang/crates.io-index"
  4241. checksum = "4389f1d5789befaf6029ebd9f7dac4af7f7e3d61b69d4f30e2ac02b57e7712b0"
  4242. [[package]]
  4243. name = "ring"
  4244. version = "0.16.20"
  4245. source = "registry+https://github.com/rust-lang/crates.io-index"
  4246. checksum = "3053cf52e236a3ed746dfc745aa9cacf1b791d846bdaf412f60a8d7d6e17c8fc"
  4247. dependencies = [
  4248. "cc",
  4249. "libc",
  4250. "once_cell",
  4251. "spin",
  4252. "untrusted",
  4253. "web-sys",
  4254. "winapi",
  4255. ]
  4256. [[package]]
  4257. name = "rkyv"
  4258. version = "0.7.42"
  4259. source = "registry+https://github.com/rust-lang/crates.io-index"
  4260. checksum = "0200c8230b013893c0b2d6213d6ec64ed2b9be2e0e016682b7224ff82cff5c58"
  4261. dependencies = [
  4262. "bitvec",
  4263. "bytecheck",
  4264. "hashbrown 0.12.3",
  4265. "ptr_meta",
  4266. "rend",
  4267. "rkyv_derive",
  4268. "seahash",
  4269. "tinyvec",
  4270. "uuid",
  4271. ]
  4272. [[package]]
  4273. name = "rkyv_derive"
  4274. version = "0.7.42"
  4275. source = "registry+https://github.com/rust-lang/crates.io-index"
  4276. checksum = "b2e06b915b5c230a17d7a736d1e2e63ee753c256a8614ef3f5147b13a4f5541d"
  4277. dependencies = [
  4278. "proc-macro2",
  4279. "quote",
  4280. "syn 1.0.109",
  4281. ]
  4282. [[package]]
  4283. name = "rocksdb"
  4284. version = "0.21.0"
  4285. source = "registry+https://github.com/rust-lang/crates.io-index"
  4286. checksum = "bb6f170a4041d50a0ce04b0d2e14916d6ca863ea2e422689a5b694395d299ffe"
  4287. dependencies = [
  4288. "libc",
  4289. "librocksdb-sys",
  4290. ]
  4291. [[package]]
  4292. name = "rusoto_credential"
  4293. version = "0.48.0"
  4294. source = "registry+https://github.com/rust-lang/crates.io-index"
  4295. checksum = "ee0a6c13db5aad6047b6a44ef023dbbc21a056b6dab5be3b79ce4283d5c02d05"
  4296. dependencies = [
  4297. "async-trait",
  4298. "chrono",
  4299. "dirs-next",
  4300. "futures",
  4301. "hyper",
  4302. "serde",
  4303. "serde_json",
  4304. "shlex",
  4305. "tokio",
  4306. "zeroize",
  4307. ]
  4308. [[package]]
  4309. name = "rust_decimal"
  4310. version = "1.30.0"
  4311. source = "registry+https://github.com/rust-lang/crates.io-index"
  4312. checksum = "d0446843641c69436765a35a5a77088e28c2e6a12da93e84aa3ab1cd4aa5a042"
  4313. dependencies = [
  4314. "arrayvec 0.7.4",
  4315. "borsh",
  4316. "bytecheck",
  4317. "byteorder",
  4318. "bytes",
  4319. "num-traits",
  4320. "rand 0.8.5",
  4321. "rkyv",
  4322. "serde",
  4323. "serde_json",
  4324. ]
  4325. [[package]]
  4326. name = "rust_decimal_macros"
  4327. version = "1.30.0"
  4328. source = "registry+https://github.com/rust-lang/crates.io-index"
  4329. checksum = "7ca5c398d85f83b9a44de754a2048625a8c5eafcf070da7b8f116b685e2f6608"
  4330. dependencies = [
  4331. "quote",
  4332. "rust_decimal",
  4333. ]
  4334. [[package]]
  4335. name = "rustc-demangle"
  4336. version = "0.1.23"
  4337. source = "registry+https://github.com/rust-lang/crates.io-index"
  4338. checksum = "d626bb9dae77e28219937af045c257c28bfd3f69333c512553507f5f9798cb76"
  4339. [[package]]
  4340. name = "rustc-hash"
  4341. version = "1.1.0"
  4342. source = "registry+https://github.com/rust-lang/crates.io-index"
  4343. checksum = "08d43f7aa6b08d49f382cde6a7982047c3426db949b1424bc4b7ec9ae12c6ce2"
  4344. [[package]]
  4345. name = "rustc_version"
  4346. version = "0.4.0"
  4347. source = "registry+https://github.com/rust-lang/crates.io-index"
  4348. checksum = "bfa0f585226d2e68097d4f95d113b15b83a82e819ab25717ec0590d9584ef366"
  4349. dependencies = [
  4350. "semver",
  4351. ]
  4352. [[package]]
  4353. name = "rustix"
  4354. version = "0.37.20"
  4355. source = "registry+https://github.com/rust-lang/crates.io-index"
  4356. checksum = "b96e891d04aa506a6d1f318d2771bcb1c7dfda84e126660ace067c9b474bb2c0"
  4357. dependencies = [
  4358. "bitflags",
  4359. "errno",
  4360. "io-lifetimes",
  4361. "libc",
  4362. "linux-raw-sys",
  4363. "windows-sys 0.48.0",
  4364. ]
  4365. [[package]]
  4366. name = "rustls"
  4367. version = "0.20.8"
  4368. source = "registry+https://github.com/rust-lang/crates.io-index"
  4369. checksum = "fff78fc74d175294f4e83b28343315ffcfb114b156f0185e9741cb5570f50e2f"
  4370. dependencies = [
  4371. "log",
  4372. "ring",
  4373. "sct",
  4374. "webpki",
  4375. ]
  4376. [[package]]
  4377. name = "rustls"
  4378. version = "0.21.2"
  4379. source = "registry+https://github.com/rust-lang/crates.io-index"
  4380. checksum = "e32ca28af694bc1bbf399c33a516dbdf1c90090b8ab23c2bc24f834aa2247f5f"
  4381. dependencies = [
  4382. "log",
  4383. "ring",
  4384. "rustls-webpki",
  4385. "sct",
  4386. ]
  4387. [[package]]
  4388. name = "rustls-native-certs"
  4389. version = "0.6.3"
  4390. source = "registry+https://github.com/rust-lang/crates.io-index"
  4391. checksum = "a9aace74cb666635c918e9c12bc0d348266037aa8eb599b5cba565709a8dff00"
  4392. dependencies = [
  4393. "openssl-probe",
  4394. "rustls-pemfile",
  4395. "schannel",
  4396. "security-framework",
  4397. ]
  4398. [[package]]
  4399. name = "rustls-pemfile"
  4400. version = "1.0.2"
  4401. source = "registry+https://github.com/rust-lang/crates.io-index"
  4402. checksum = "d194b56d58803a43635bdc398cd17e383d6f71f9182b9a192c127ca42494a59b"
  4403. dependencies = [
  4404. "base64 0.21.2",
  4405. ]
  4406. [[package]]
  4407. name = "rustls-webpki"
  4408. version = "0.100.1"
  4409. source = "registry+https://github.com/rust-lang/crates.io-index"
  4410. checksum = "d6207cd5ed3d8dca7816f8f3725513a34609c0c765bf652b8c3cb4cfd87db46b"
  4411. dependencies = [
  4412. "ring",
  4413. "untrusted",
  4414. ]
  4415. [[package]]
  4416. name = "rustversion"
  4417. version = "1.0.12"
  4418. source = "registry+https://github.com/rust-lang/crates.io-index"
  4419. checksum = "4f3208ce4d8448b3f3e7d168a73f5e0c43a61e32930de3bceeccedb388b6bf06"
  4420. [[package]]
  4421. name = "rusty-money"
  4422. version = "0.4.1"
  4423. source = "registry+https://github.com/rust-lang/crates.io-index"
  4424. checksum = "5b28f881005eac7ad8d46b6f075da5f322bd7f4f83a38720fc069694ddadd683"
  4425. dependencies = [
  4426. "rust_decimal",
  4427. "rust_decimal_macros",
  4428. ]
  4429. [[package]]
  4430. name = "ryu"
  4431. version = "1.0.13"
  4432. source = "registry+https://github.com/rust-lang/crates.io-index"
  4433. checksum = "f91339c0467de62360649f8d3e185ca8de4224ff281f66000de5eb2a77a79041"
  4434. [[package]]
  4435. name = "safemem"
  4436. version = "0.3.3"
  4437. source = "registry+https://github.com/rust-lang/crates.io-index"
  4438. checksum = "ef703b7cb59335eae2eb93ceb664c0eb7ea6bf567079d843e09420219668e072"
  4439. [[package]]
  4440. name = "same-file"
  4441. version = "1.0.6"
  4442. source = "registry+https://github.com/rust-lang/crates.io-index"
  4443. checksum = "93fc1dc3aaa9bfed95e02e6eadabb4baf7e3078b0bd1b4d7b6b0b68378900502"
  4444. dependencies = [
  4445. "winapi-util",
  4446. ]
  4447. [[package]]
  4448. name = "schannel"
  4449. version = "0.1.21"
  4450. source = "registry+https://github.com/rust-lang/crates.io-index"
  4451. checksum = "713cfb06c7059f3588fb8044c0fad1d09e3c01d225e25b9220dbfdcf16dbb1b3"
  4452. dependencies = [
  4453. "windows-sys 0.42.0",
  4454. ]
  4455. [[package]]
  4456. name = "scheduled-thread-pool"
  4457. version = "0.2.7"
  4458. source = "registry+https://github.com/rust-lang/crates.io-index"
  4459. checksum = "3cbc66816425a074528352f5789333ecff06ca41b36b0b0efdfbb29edc391a19"
  4460. dependencies = [
  4461. "parking_lot 0.12.1",
  4462. ]
  4463. [[package]]
  4464. name = "scoped-tls"
  4465. version = "1.0.1"
  4466. source = "registry+https://github.com/rust-lang/crates.io-index"
  4467. checksum = "e1cf6437eb19a8f4a6cc0f7dca544973b0b78843adbfeb3683d1a94a0024a294"
  4468. [[package]]
  4469. name = "scopeguard"
  4470. version = "1.1.0"
  4471. source = "registry+https://github.com/rust-lang/crates.io-index"
  4472. checksum = "d29ab0c6d3fc0ee92fe66e2d99f700eab17a8d57d1c1d3b748380fb20baa78cd"
  4473. [[package]]
  4474. name = "sct"
  4475. version = "0.7.0"
  4476. source = "registry+https://github.com/rust-lang/crates.io-index"
  4477. checksum = "d53dcdb7c9f8158937a7981b48accfd39a43af418591a5d008c7b22b5e1b7ca4"
  4478. dependencies = [
  4479. "ring",
  4480. "untrusted",
  4481. ]
  4482. [[package]]
  4483. name = "seahash"
  4484. version = "4.1.0"
  4485. source = "registry+https://github.com/rust-lang/crates.io-index"
  4486. checksum = "1c107b6f4780854c8b126e228ea8869f4d7b71260f962fefb57b996b8959ba6b"
  4487. [[package]]
  4488. name = "security-framework"
  4489. version = "2.9.1"
  4490. source = "registry+https://github.com/rust-lang/crates.io-index"
  4491. checksum = "1fc758eb7bffce5b308734e9b0c1468893cae9ff70ebf13e7090be8dcbcc83a8"
  4492. dependencies = [
  4493. "bitflags",
  4494. "core-foundation",
  4495. "core-foundation-sys",
  4496. "libc",
  4497. "security-framework-sys",
  4498. ]
  4499. [[package]]
  4500. name = "security-framework-sys"
  4501. version = "2.9.0"
  4502. source = "registry+https://github.com/rust-lang/crates.io-index"
  4503. checksum = "f51d0c0d83bec45f16480d0ce0058397a69e48fcdc52d1dc8855fb68acbd31a7"
  4504. dependencies = [
  4505. "core-foundation-sys",
  4506. "libc",
  4507. ]
  4508. [[package]]
  4509. name = "selectors"
  4510. version = "0.22.0"
  4511. source = "registry+https://github.com/rust-lang/crates.io-index"
  4512. checksum = "df320f1889ac4ba6bc0cdc9c9af7af4bd64bb927bccdf32d81140dc1f9be12fe"
  4513. dependencies = [
  4514. "bitflags",
  4515. "cssparser",
  4516. "derive_more",
  4517. "fxhash",
  4518. "log",
  4519. "matches",
  4520. "phf 0.8.0",
  4521. "phf_codegen 0.8.0",
  4522. "precomputed-hash",
  4523. "servo_arc",
  4524. "smallvec",
  4525. "thin-slice",
  4526. ]
  4527. [[package]]
  4528. name = "semver"
  4529. version = "1.0.17"
  4530. source = "registry+https://github.com/rust-lang/crates.io-index"
  4531. checksum = "bebd363326d05ec3e2f532ab7660680f3b02130d780c299bca73469d521bc0ed"
  4532. dependencies = [
  4533. "serde",
  4534. ]
  4535. [[package]]
  4536. name = "serde"
  4537. version = "1.0.164"
  4538. source = "registry+https://github.com/rust-lang/crates.io-index"
  4539. checksum = "9e8c8cf938e98f769bc164923b06dce91cea1751522f46f8466461af04c9027d"
  4540. dependencies = [
  4541. "serde_derive",
  4542. ]
  4543. [[package]]
  4544. name = "serde-aux"
  4545. version = "4.2.0"
  4546. source = "registry+https://github.com/rust-lang/crates.io-index"
  4547. checksum = "c3dfe1b7eb6f9dcf011bd6fad169cdeaae75eda0d61b1a99a3f015b41b0cae39"
  4548. dependencies = [
  4549. "chrono",
  4550. "serde",
  4551. "serde_json",
  4552. ]
  4553. [[package]]
  4554. name = "serde_derive"
  4555. version = "1.0.164"
  4556. source = "registry+https://github.com/rust-lang/crates.io-index"
  4557. checksum = "d9735b638ccc51c28bf6914d90a2e9725b377144fc612c49a611fddd1b631d68"
  4558. dependencies = [
  4559. "proc-macro2",
  4560. "quote",
  4561. "syn 2.0.22",
  4562. ]
  4563. [[package]]
  4564. name = "serde_json"
  4565. version = "1.0.99"
  4566. source = "registry+https://github.com/rust-lang/crates.io-index"
  4567. checksum = "46266871c240a00b8f503b877622fe33430b3c7d963bdc0f2adc511e54a1eae3"
  4568. dependencies = [
  4569. "itoa 1.0.6",
  4570. "ryu",
  4571. "serde",
  4572. ]
  4573. [[package]]
  4574. name = "serde_repr"
  4575. version = "0.1.12"
  4576. source = "registry+https://github.com/rust-lang/crates.io-index"
  4577. checksum = "bcec881020c684085e55a25f7fd888954d56609ef363479dc5a1305eb0d40cab"
  4578. dependencies = [
  4579. "proc-macro2",
  4580. "quote",
  4581. "syn 2.0.22",
  4582. ]
  4583. [[package]]
  4584. name = "serde_spanned"
  4585. version = "0.6.3"
  4586. source = "registry+https://github.com/rust-lang/crates.io-index"
  4587. checksum = "96426c9936fd7a0124915f9185ea1d20aa9445cc9821142f0a73bc9207a2e186"
  4588. dependencies = [
  4589. "serde",
  4590. ]
  4591. [[package]]
  4592. name = "serde_urlencoded"
  4593. version = "0.7.1"
  4594. source = "registry+https://github.com/rust-lang/crates.io-index"
  4595. checksum = "d3491c14715ca2294c4d6a88f15e84739788c1d030eed8c110436aafdaa2f3fd"
  4596. dependencies = [
  4597. "form_urlencoded",
  4598. "itoa 1.0.6",
  4599. "ryu",
  4600. "serde",
  4601. ]
  4602. [[package]]
  4603. name = "serde_with"
  4604. version = "3.0.0"
  4605. source = "registry+https://github.com/rust-lang/crates.io-index"
  4606. checksum = "9f02d8aa6e3c385bf084924f660ce2a3a6bd333ba55b35e8590b321f35d88513"
  4607. dependencies = [
  4608. "base64 0.21.2",
  4609. "chrono",
  4610. "hex",
  4611. "indexmap 1.9.3",
  4612. "serde",
  4613. "serde_json",
  4614. "serde_with_macros",
  4615. "time 0.3.22",
  4616. ]
  4617. [[package]]
  4618. name = "serde_with_macros"
  4619. version = "3.0.0"
  4620. source = "registry+https://github.com/rust-lang/crates.io-index"
  4621. checksum = "edc7d5d3932fb12ce722ee5e64dd38c504efba37567f0c402f6ca728c3b8b070"
  4622. dependencies = [
  4623. "darling",
  4624. "proc-macro2",
  4625. "quote",
  4626. "syn 2.0.22",
  4627. ]
  4628. [[package]]
  4629. name = "serialize-to-javascript"
  4630. version = "0.1.1"
  4631. source = "registry+https://github.com/rust-lang/crates.io-index"
  4632. checksum = "c9823f2d3b6a81d98228151fdeaf848206a7855a7a042bbf9bf870449a66cafb"
  4633. dependencies = [
  4634. "serde",
  4635. "serde_json",
  4636. "serialize-to-javascript-impl",
  4637. ]
  4638. [[package]]
  4639. name = "serialize-to-javascript-impl"
  4640. version = "0.1.1"
  4641. source = "registry+https://github.com/rust-lang/crates.io-index"
  4642. checksum = "74064874e9f6a15f04c1f3cb627902d0e6b410abbf36668afa873c61889f1763"
  4643. dependencies = [
  4644. "proc-macro2",
  4645. "quote",
  4646. "syn 1.0.109",
  4647. ]
  4648. [[package]]
  4649. name = "servo_arc"
  4650. version = "0.1.1"
  4651. source = "registry+https://github.com/rust-lang/crates.io-index"
  4652. checksum = "d98238b800e0d1576d8b6e3de32827c2d74bee68bb97748dcf5071fb53965432"
  4653. dependencies = [
  4654. "nodrop",
  4655. "stable_deref_trait",
  4656. ]
  4657. [[package]]
  4658. name = "sha-1"
  4659. version = "0.9.8"
  4660. source = "registry+https://github.com/rust-lang/crates.io-index"
  4661. checksum = "99cd6713db3cf16b6c84e06321e049a9b9f699826e16096d23bbcc44d15d51a6"
  4662. dependencies = [
  4663. "block-buffer 0.9.0",
  4664. "cfg-if",
  4665. "cpufeatures",
  4666. "digest 0.9.0",
  4667. "opaque-debug",
  4668. ]
  4669. [[package]]
  4670. name = "sha1"
  4671. version = "0.10.5"
  4672. source = "registry+https://github.com/rust-lang/crates.io-index"
  4673. checksum = "f04293dc80c3993519f2d7f6f511707ee7094fe0c6d3406feb330cdb3540eba3"
  4674. dependencies = [
  4675. "cfg-if",
  4676. "cpufeatures",
  4677. "digest 0.10.7",
  4678. ]
  4679. [[package]]
  4680. name = "sha1_smol"
  4681. version = "1.0.0"
  4682. source = "registry+https://github.com/rust-lang/crates.io-index"
  4683. checksum = "ae1a47186c03a32177042e55dbc5fd5aee900b8e0069a8d70fba96a9375cd012"
  4684. [[package]]
  4685. name = "sha2"
  4686. version = "0.10.7"
  4687. source = "registry+https://github.com/rust-lang/crates.io-index"
  4688. checksum = "479fb9d862239e610720565ca91403019f2f00410f1864c5aa7479b950a76ed8"
  4689. dependencies = [
  4690. "cfg-if",
  4691. "cpufeatures",
  4692. "digest 0.10.7",
  4693. ]
  4694. [[package]]
  4695. name = "sharded-slab"
  4696. version = "0.1.4"
  4697. source = "registry+https://github.com/rust-lang/crates.io-index"
  4698. checksum = "900fba806f70c630b0a382d0d825e17a0f19fcd059a2ade1ff237bcddf446b31"
  4699. dependencies = [
  4700. "lazy_static",
  4701. ]
  4702. [[package]]
  4703. name = "shlex"
  4704. version = "1.1.0"
  4705. source = "registry+https://github.com/rust-lang/crates.io-index"
  4706. checksum = "43b2853a4d09f215c24cc5489c992ce46052d359b5109343cbafbf26bc62f8a3"
  4707. [[package]]
  4708. name = "signal-hook-registry"
  4709. version = "1.4.1"
  4710. source = "registry+https://github.com/rust-lang/crates.io-index"
  4711. checksum = "d8229b473baa5980ac72ef434c4415e70c4b5e71b423043adb4ba059f89c99a1"
  4712. dependencies = [
  4713. "libc",
  4714. ]
  4715. [[package]]
  4716. name = "simd-adler32"
  4717. version = "0.3.5"
  4718. source = "registry+https://github.com/rust-lang/crates.io-index"
  4719. checksum = "238abfbb77c1915110ad968465608b68e869e0772622c9656714e73e5a1a522f"
  4720. [[package]]
  4721. name = "simdutf8"
  4722. version = "0.1.4"
  4723. source = "registry+https://github.com/rust-lang/crates.io-index"
  4724. checksum = "f27f6278552951f1f2b8cf9da965d10969b2efdea95a6ec47987ab46edfe263a"
  4725. [[package]]
  4726. name = "similar"
  4727. version = "1.3.0"
  4728. source = "registry+https://github.com/rust-lang/crates.io-index"
  4729. checksum = "1ad1d488a557b235fc46dae55512ffbfc429d2482b08b4d9435ab07384ca8aec"
  4730. [[package]]
  4731. name = "similar"
  4732. version = "2.2.1"
  4733. source = "registry+https://github.com/rust-lang/crates.io-index"
  4734. checksum = "420acb44afdae038210c99e69aae24109f32f15500aa708e81d46c9f29d55fcf"
  4735. [[package]]
  4736. name = "siphasher"
  4737. version = "0.3.10"
  4738. source = "registry+https://github.com/rust-lang/crates.io-index"
  4739. checksum = "7bd3e3206899af3f8b12af284fafc038cc1dc2b41d1b89dd17297221c5d225de"
  4740. [[package]]
  4741. name = "slab"
  4742. version = "0.4.8"
  4743. source = "registry+https://github.com/rust-lang/crates.io-index"
  4744. checksum = "6528351c9bc8ab22353f9d776db39a20288e8d6c37ef8cfe3317cf875eecfc2d"
  4745. dependencies = [
  4746. "autocfg",
  4747. ]
  4748. [[package]]
  4749. name = "sled"
  4750. version = "0.34.7"
  4751. source = "registry+https://github.com/rust-lang/crates.io-index"
  4752. checksum = "7f96b4737c2ce5987354855aed3797279def4ebf734436c6aa4552cf8e169935"
  4753. dependencies = [
  4754. "crc32fast",
  4755. "crossbeam-epoch",
  4756. "crossbeam-utils",
  4757. "fs2",
  4758. "fxhash",
  4759. "libc",
  4760. "log",
  4761. "parking_lot 0.11.2",
  4762. ]
  4763. [[package]]
  4764. name = "slug"
  4765. version = "0.1.4"
  4766. source = "registry+https://github.com/rust-lang/crates.io-index"
  4767. checksum = "b3bc762e6a4b6c6fcaade73e77f9ebc6991b676f88bb2358bddb56560f073373"
  4768. dependencies = [
  4769. "deunicode",
  4770. ]
  4771. [[package]]
  4772. name = "smallstr"
  4773. version = "0.2.0"
  4774. source = "registry+https://github.com/rust-lang/crates.io-index"
  4775. checksum = "1e922794d168678729ffc7e07182721a14219c65814e66e91b839a272fe5ae4f"
  4776. dependencies = [
  4777. "smallvec",
  4778. ]
  4779. [[package]]
  4780. name = "smallvec"
  4781. version = "1.10.0"
  4782. source = "registry+https://github.com/rust-lang/crates.io-index"
  4783. checksum = "a507befe795404456341dfab10cef66ead4c041f62b8b11bbb92bffe5d0953e0"
  4784. [[package]]
  4785. name = "socket2"
  4786. version = "0.4.9"
  4787. source = "registry+https://github.com/rust-lang/crates.io-index"
  4788. checksum = "64a4a911eed85daf18834cfaa86a79b7d266ff93ff5ba14005426219480ed662"
  4789. dependencies = [
  4790. "libc",
  4791. "winapi",
  4792. ]
  4793. [[package]]
  4794. name = "socket2"
  4795. version = "0.5.3"
  4796. source = "registry+https://github.com/rust-lang/crates.io-index"
  4797. checksum = "2538b18701741680e0322a2302176d3253a35388e2e62f172f64f4f16605f877"
  4798. dependencies = [
  4799. "libc",
  4800. "windows-sys 0.48.0",
  4801. ]
  4802. [[package]]
  4803. name = "soup2"
  4804. version = "0.2.1"
  4805. source = "registry+https://github.com/rust-lang/crates.io-index"
  4806. checksum = "b2b4d76501d8ba387cf0fefbe055c3e0a59891d09f0f995ae4e4b16f6b60f3c0"
  4807. dependencies = [
  4808. "bitflags",
  4809. "gio",
  4810. "glib",
  4811. "libc",
  4812. "once_cell",
  4813. "soup2-sys",
  4814. ]
  4815. [[package]]
  4816. name = "soup2-sys"
  4817. version = "0.2.0"
  4818. source = "registry+https://github.com/rust-lang/crates.io-index"
  4819. checksum = "009ef427103fcb17f802871647a7fa6c60cbb654b4c4e4c0ac60a31c5f6dc9cf"
  4820. dependencies = [
  4821. "bitflags",
  4822. "gio-sys",
  4823. "glib-sys",
  4824. "gobject-sys",
  4825. "libc",
  4826. "system-deps 5.0.0",
  4827. ]
  4828. [[package]]
  4829. name = "spin"
  4830. version = "0.5.2"
  4831. source = "registry+https://github.com/rust-lang/crates.io-index"
  4832. checksum = "6e63cff320ae2c57904679ba7cb63280a3dc4613885beafb148ee7bf9aa9042d"
  4833. [[package]]
  4834. name = "stable_deref_trait"
  4835. version = "1.2.0"
  4836. source = "registry+https://github.com/rust-lang/crates.io-index"
  4837. checksum = "a8f112729512f8e442d81f95a8a7ddf2b7c6b8a1a6f509a95864142b30cab2d3"
  4838. [[package]]
  4839. name = "state"
  4840. version = "0.5.3"
  4841. source = "registry+https://github.com/rust-lang/crates.io-index"
  4842. checksum = "dbe866e1e51e8260c9eed836a042a5e7f6726bb2b411dffeaa712e19c388f23b"
  4843. dependencies = [
  4844. "loom",
  4845. ]
  4846. [[package]]
  4847. name = "static_assertions"
  4848. version = "1.1.0"
  4849. source = "registry+https://github.com/rust-lang/crates.io-index"
  4850. checksum = "a2eb9349b6444b326872e140eb1cf5e7c522154d69e7a0ffb0fb81c06b37543f"
  4851. [[package]]
  4852. name = "string_cache"
  4853. version = "0.8.7"
  4854. source = "registry+https://github.com/rust-lang/crates.io-index"
  4855. checksum = "f91138e76242f575eb1d3b38b4f1362f10d3a43f47d182a5b359af488a02293b"
  4856. dependencies = [
  4857. "new_debug_unreachable",
  4858. "once_cell",
  4859. "parking_lot 0.12.1",
  4860. "phf_shared 0.10.0",
  4861. "precomputed-hash",
  4862. "serde",
  4863. ]
  4864. [[package]]
  4865. name = "string_cache_codegen"
  4866. version = "0.5.2"
  4867. source = "registry+https://github.com/rust-lang/crates.io-index"
  4868. checksum = "6bb30289b722be4ff74a408c3cc27edeaad656e06cb1fe8fa9231fa59c728988"
  4869. dependencies = [
  4870. "phf_generator 0.10.0",
  4871. "phf_shared 0.10.0",
  4872. "proc-macro2",
  4873. "quote",
  4874. ]
  4875. [[package]]
  4876. name = "stringprep"
  4877. version = "0.1.2"
  4878. source = "registry+https://github.com/rust-lang/crates.io-index"
  4879. checksum = "8ee348cb74b87454fff4b551cbf727025810a004f88aeacae7f85b87f4e9a1c1"
  4880. dependencies = [
  4881. "unicode-bidi",
  4882. "unicode-normalization",
  4883. ]
  4884. [[package]]
  4885. name = "strsim"
  4886. version = "0.10.0"
  4887. source = "registry+https://github.com/rust-lang/crates.io-index"
  4888. checksum = "73473c0e59e6d5812c5dfe2a064a6444949f089e20eec9a2e5506596494e4623"
  4889. [[package]]
  4890. name = "strum"
  4891. version = "0.21.0"
  4892. source = "registry+https://github.com/rust-lang/crates.io-index"
  4893. checksum = "aaf86bbcfd1fa9670b7a129f64fc0c9fcbbfe4f1bc4210e9e98fe71ffc12cde2"
  4894. [[package]]
  4895. name = "strum_macros"
  4896. version = "0.21.1"
  4897. source = "registry+https://github.com/rust-lang/crates.io-index"
  4898. checksum = "d06aaeeee809dbc59eb4556183dd927df67db1540de5be8d3ec0b6636358a5ec"
  4899. dependencies = [
  4900. "heck 0.3.3",
  4901. "proc-macro2",
  4902. "quote",
  4903. "syn 1.0.109",
  4904. ]
  4905. [[package]]
  4906. name = "subtle"
  4907. version = "2.5.0"
  4908. source = "registry+https://github.com/rust-lang/crates.io-index"
  4909. checksum = "81cdd64d312baedb58e21336b31bc043b77e01cc99033ce76ef539f78e965ebc"
  4910. [[package]]
  4911. name = "syn"
  4912. version = "1.0.109"
  4913. source = "registry+https://github.com/rust-lang/crates.io-index"
  4914. checksum = "72b64191b275b66ffe2469e8af2c1cfe3bafa67b529ead792a6d0160888b4237"
  4915. dependencies = [
  4916. "proc-macro2",
  4917. "quote",
  4918. "unicode-ident",
  4919. ]
  4920. [[package]]
  4921. name = "syn"
  4922. version = "2.0.22"
  4923. source = "registry+https://github.com/rust-lang/crates.io-index"
  4924. checksum = "2efbeae7acf4eabd6bcdcbd11c92f45231ddda7539edc7806bd1a04a03b24616"
  4925. dependencies = [
  4926. "proc-macro2",
  4927. "quote",
  4928. "unicode-ident",
  4929. ]
  4930. [[package]]
  4931. name = "system-deps"
  4932. version = "5.0.0"
  4933. source = "registry+https://github.com/rust-lang/crates.io-index"
  4934. checksum = "18db855554db7bd0e73e06cf7ba3df39f97812cb11d3f75e71c39bf45171797e"
  4935. dependencies = [
  4936. "cfg-expr 0.9.1",
  4937. "heck 0.3.3",
  4938. "pkg-config",
  4939. "toml 0.5.11",
  4940. "version-compare 0.0.11",
  4941. ]
  4942. [[package]]
  4943. name = "system-deps"
  4944. version = "6.1.1"
  4945. source = "registry+https://github.com/rust-lang/crates.io-index"
  4946. checksum = "30c2de8a4d8f4b823d634affc9cd2a74ec98c53a756f317e529a48046cbf71f3"
  4947. dependencies = [
  4948. "cfg-expr 0.15.3",
  4949. "heck 0.4.1",
  4950. "pkg-config",
  4951. "toml 0.7.5",
  4952. "version-compare 0.1.1",
  4953. ]
  4954. [[package]]
  4955. name = "tao"
  4956. version = "0.16.2"
  4957. source = "registry+https://github.com/rust-lang/crates.io-index"
  4958. checksum = "6a6d198e01085564cea63e976ad1566c1ba2c2e4cc79578e35d9f05521505e31"
  4959. dependencies = [
  4960. "bitflags",
  4961. "cairo-rs",
  4962. "cc",
  4963. "cocoa",
  4964. "core-foundation",
  4965. "core-graphics",
  4966. "crossbeam-channel",
  4967. "dispatch",
  4968. "gdk",
  4969. "gdk-pixbuf",
  4970. "gdk-sys",
  4971. "gdkwayland-sys",
  4972. "gdkx11-sys",
  4973. "gio",
  4974. "glib",
  4975. "glib-sys",
  4976. "gtk",
  4977. "image",
  4978. "instant",
  4979. "jni",
  4980. "lazy_static",
  4981. "libc",
  4982. "log",
  4983. "ndk",
  4984. "ndk-context",
  4985. "ndk-sys",
  4986. "objc",
  4987. "once_cell",
  4988. "parking_lot 0.12.1",
  4989. "png",
  4990. "raw-window-handle",
  4991. "scopeguard",
  4992. "serde",
  4993. "tao-macros",
  4994. "unicode-segmentation",
  4995. "uuid",
  4996. "windows 0.39.0",
  4997. "windows-implement",
  4998. "x11-dl",
  4999. ]
  5000. [[package]]
  5001. name = "tao-macros"
  5002. version = "0.1.1"
  5003. source = "registry+https://github.com/rust-lang/crates.io-index"
  5004. checksum = "3b27a4bcc5eb524658234589bdffc7e7bfb996dbae6ce9393bfd39cb4159b445"
  5005. dependencies = [
  5006. "proc-macro2",
  5007. "quote",
  5008. "syn 1.0.109",
  5009. ]
  5010. [[package]]
  5011. name = "tap"
  5012. version = "1.0.1"
  5013. source = "registry+https://github.com/rust-lang/crates.io-index"
  5014. checksum = "55937e1799185b12863d447f42597ed69d9928686b8d88a1df17376a097d8369"
  5015. [[package]]
  5016. name = "tar"
  5017. version = "0.4.38"
  5018. source = "registry+https://github.com/rust-lang/crates.io-index"
  5019. checksum = "4b55807c0344e1e6c04d7c965f5289c39a8d94ae23ed5c0b57aabac549f871c6"
  5020. dependencies = [
  5021. "filetime",
  5022. "libc",
  5023. "xattr",
  5024. ]
  5025. [[package]]
  5026. name = "target-lexicon"
  5027. version = "0.12.8"
  5028. source = "registry+https://github.com/rust-lang/crates.io-index"
  5029. checksum = "1b1c7f239eb94671427157bd93b3694320f3668d4e1eff08c7285366fd777fac"
  5030. [[package]]
  5031. name = "tauri"
  5032. version = "1.4.1"
  5033. source = "registry+https://github.com/rust-lang/crates.io-index"
  5034. checksum = "7fbe522898e35407a8e60dc3870f7579fea2fc262a6a6072eccdd37ae1e1d91e"
  5035. dependencies = [
  5036. "anyhow",
  5037. "cocoa",
  5038. "dirs-next",
  5039. "embed_plist",
  5040. "encoding_rs",
  5041. "flate2",
  5042. "futures-util",
  5043. "glib",
  5044. "glob",
  5045. "gtk",
  5046. "heck 0.4.1",
  5047. "http",
  5048. "ignore",
  5049. "objc",
  5050. "once_cell",
  5051. "open",
  5052. "percent-encoding",
  5053. "rand 0.8.5",
  5054. "raw-window-handle",
  5055. "regex",
  5056. "semver",
  5057. "serde",
  5058. "serde_json",
  5059. "serde_repr",
  5060. "serialize-to-javascript",
  5061. "state",
  5062. "tar",
  5063. "tauri-macros",
  5064. "tauri-runtime",
  5065. "tauri-runtime-wry",
  5066. "tauri-utils",
  5067. "tempfile",
  5068. "thiserror",
  5069. "tokio",
  5070. "url",
  5071. "uuid",
  5072. "webkit2gtk",
  5073. "webview2-com",
  5074. "windows 0.39.0",
  5075. ]
  5076. [[package]]
  5077. name = "tauri-build"
  5078. version = "1.4.0"
  5079. source = "registry+https://github.com/rust-lang/crates.io-index"
  5080. checksum = "7d2edd6a259b5591c8efdeb9d5702cb53515b82a6affebd55c7fd6d3a27b7d1b"
  5081. dependencies = [
  5082. "anyhow",
  5083. "cargo_toml",
  5084. "heck 0.4.1",
  5085. "json-patch",
  5086. "semver",
  5087. "serde",
  5088. "serde_json",
  5089. "tauri-utils",
  5090. "tauri-winres",
  5091. ]
  5092. [[package]]
  5093. name = "tauri-codegen"
  5094. version = "1.4.0"
  5095. source = "registry+https://github.com/rust-lang/crates.io-index"
  5096. checksum = "54ad2d49fdeab4a08717f5b49a163bdc72efc3b1950b6758245fcde79b645e1a"
  5097. dependencies = [
  5098. "base64 0.21.2",
  5099. "brotli",
  5100. "ico",
  5101. "json-patch",
  5102. "plist",
  5103. "png",
  5104. "proc-macro2",
  5105. "quote",
  5106. "regex",
  5107. "semver",
  5108. "serde",
  5109. "serde_json",
  5110. "sha2",
  5111. "tauri-utils",
  5112. "thiserror",
  5113. "time 0.3.22",
  5114. "uuid",
  5115. "walkdir",
  5116. ]
  5117. [[package]]
  5118. name = "tauri-macros"
  5119. version = "1.4.0"
  5120. source = "registry+https://github.com/rust-lang/crates.io-index"
  5121. checksum = "8eb12a2454e747896929338d93b0642144bb51e0dddbb36e579035731f0d76b7"
  5122. dependencies = [
  5123. "heck 0.4.1",
  5124. "proc-macro2",
  5125. "quote",
  5126. "syn 1.0.109",
  5127. "tauri-codegen",
  5128. "tauri-utils",
  5129. ]
  5130. [[package]]
  5131. name = "tauri-runtime"
  5132. version = "0.14.0"
  5133. source = "registry+https://github.com/rust-lang/crates.io-index"
  5134. checksum = "108683199cb18f96d2d4134187bb789964143c845d2d154848dda209191fd769"
  5135. dependencies = [
  5136. "gtk",
  5137. "http",
  5138. "http-range",
  5139. "rand 0.8.5",
  5140. "raw-window-handle",
  5141. "serde",
  5142. "serde_json",
  5143. "tauri-utils",
  5144. "thiserror",
  5145. "url",
  5146. "uuid",
  5147. "webview2-com",
  5148. "windows 0.39.0",
  5149. ]
  5150. [[package]]
  5151. name = "tauri-runtime-wry"
  5152. version = "0.14.0"
  5153. source = "registry+https://github.com/rust-lang/crates.io-index"
  5154. checksum = "0b7aa256a1407a3a091b5d843eccc1a5042289baf0a43d1179d9f0fcfea37c1b"
  5155. dependencies = [
  5156. "cocoa",
  5157. "gtk",
  5158. "percent-encoding",
  5159. "rand 0.8.5",
  5160. "raw-window-handle",
  5161. "tauri-runtime",
  5162. "tauri-utils",
  5163. "uuid",
  5164. "webkit2gtk",
  5165. "webview2-com",
  5166. "windows 0.39.0",
  5167. "wry",
  5168. ]
  5169. [[package]]
  5170. name = "tauri-utils"
  5171. version = "1.4.0"
  5172. source = "registry+https://github.com/rust-lang/crates.io-index"
  5173. checksum = "03fc02bb6072bb397e1d473c6f76c953cda48b4a2d0cce605df284aa74a12e84"
  5174. dependencies = [
  5175. "brotli",
  5176. "ctor",
  5177. "dunce",
  5178. "glob",
  5179. "heck 0.4.1",
  5180. "html5ever",
  5181. "infer",
  5182. "json-patch",
  5183. "kuchiki",
  5184. "memchr",
  5185. "phf 0.10.1",
  5186. "proc-macro2",
  5187. "quote",
  5188. "semver",
  5189. "serde",
  5190. "serde_json",
  5191. "serde_with",
  5192. "thiserror",
  5193. "url",
  5194. "walkdir",
  5195. "windows 0.39.0",
  5196. ]
  5197. [[package]]
  5198. name = "tauri-winres"
  5199. version = "0.1.1"
  5200. source = "registry+https://github.com/rust-lang/crates.io-index"
  5201. checksum = "5993dc129e544393574288923d1ec447c857f3f644187f4fbf7d9a875fbfc4fb"
  5202. dependencies = [
  5203. "embed-resource",
  5204. "toml 0.7.5",
  5205. ]
  5206. [[package]]
  5207. name = "tempfile"
  5208. version = "3.6.0"
  5209. source = "registry+https://github.com/rust-lang/crates.io-index"
  5210. checksum = "31c0432476357e58790aaa47a8efb0c5138f137343f3b5f23bd36a27e3b0a6d6"
  5211. dependencies = [
  5212. "autocfg",
  5213. "cfg-if",
  5214. "fastrand",
  5215. "redox_syscall 0.3.5",
  5216. "rustix",
  5217. "windows-sys 0.48.0",
  5218. ]
  5219. [[package]]
  5220. name = "tendril"
  5221. version = "0.4.3"
  5222. source = "registry+https://github.com/rust-lang/crates.io-index"
  5223. checksum = "d24a120c5fc464a3458240ee02c299ebcb9d67b5249c8848b09d639dca8d7bb0"
  5224. dependencies = [
  5225. "futf",
  5226. "mac",
  5227. "utf-8",
  5228. ]
  5229. [[package]]
  5230. name = "tera"
  5231. version = "1.19.0"
  5232. source = "registry+https://github.com/rust-lang/crates.io-index"
  5233. checksum = "a5ab29bb4f3e256ae6ad5c3e2775aa1f8829f2c0c101fc407bfd3a6df15c60c5"
  5234. dependencies = [
  5235. "chrono",
  5236. "chrono-tz 0.6.1",
  5237. "globwalk",
  5238. "humansize",
  5239. "lazy_static",
  5240. "percent-encoding",
  5241. "pest",
  5242. "pest_derive",
  5243. "rand 0.8.5",
  5244. "regex",
  5245. "serde",
  5246. "serde_json",
  5247. "slug",
  5248. "thread_local",
  5249. "unic-segment",
  5250. ]
  5251. [[package]]
  5252. name = "terminal_size"
  5253. version = "0.1.17"
  5254. source = "registry+https://github.com/rust-lang/crates.io-index"
  5255. checksum = "633c1a546cee861a1a6d0dc69ebeca693bf4296661ba7852b9d21d159e0506df"
  5256. dependencies = [
  5257. "libc",
  5258. "winapi",
  5259. ]
  5260. [[package]]
  5261. name = "thin-slice"
  5262. version = "0.1.1"
  5263. source = "registry+https://github.com/rust-lang/crates.io-index"
  5264. checksum = "8eaa81235c7058867fa8c0e7314f33dcce9c215f535d1913822a2b3f5e289f3c"
  5265. [[package]]
  5266. name = "thiserror"
  5267. version = "1.0.40"
  5268. source = "registry+https://github.com/rust-lang/crates.io-index"
  5269. checksum = "978c9a314bd8dc99be594bc3c175faaa9794be04a5a5e153caba6915336cebac"
  5270. dependencies = [
  5271. "thiserror-impl",
  5272. ]
  5273. [[package]]
  5274. name = "thiserror-impl"
  5275. version = "1.0.40"
  5276. source = "registry+https://github.com/rust-lang/crates.io-index"
  5277. checksum = "f9456a42c5b0d803c8cd86e73dd7cc9edd429499f37a3550d286d5e86720569f"
  5278. dependencies = [
  5279. "proc-macro2",
  5280. "quote",
  5281. "syn 2.0.22",
  5282. ]
  5283. [[package]]
  5284. name = "thread-id"
  5285. version = "3.3.0"
  5286. source = "registry+https://github.com/rust-lang/crates.io-index"
  5287. checksum = "c7fbf4c9d56b320106cd64fd024dadfa0be7cb4706725fc44a7d7ce952d820c1"
  5288. dependencies = [
  5289. "libc",
  5290. "redox_syscall 0.1.57",
  5291. "winapi",
  5292. ]
  5293. [[package]]
  5294. name = "thread_local"
  5295. version = "1.1.4"
  5296. source = "registry+https://github.com/rust-lang/crates.io-index"
  5297. checksum = "5516c27b78311c50bf42c071425c560ac799b11c30b31f87e3081965fe5e0180"
  5298. dependencies = [
  5299. "once_cell",
  5300. ]
  5301. [[package]]
  5302. name = "time"
  5303. version = "0.1.45"
  5304. source = "registry+https://github.com/rust-lang/crates.io-index"
  5305. checksum = "1b797afad3f312d1c66a56d11d0316f916356d11bd158fbc6ca6389ff6bf805a"
  5306. dependencies = [
  5307. "libc",
  5308. "wasi 0.10.0+wasi-snapshot-preview1",
  5309. "winapi",
  5310. ]
  5311. [[package]]
  5312. name = "time"
  5313. version = "0.3.22"
  5314. source = "registry+https://github.com/rust-lang/crates.io-index"
  5315. checksum = "ea9e1b3cf1243ae005d9e74085d4d542f3125458f3a81af210d901dcd7411efd"
  5316. dependencies = [
  5317. "itoa 1.0.6",
  5318. "serde",
  5319. "time-core",
  5320. "time-macros",
  5321. ]
  5322. [[package]]
  5323. name = "time-core"
  5324. version = "0.1.1"
  5325. source = "registry+https://github.com/rust-lang/crates.io-index"
  5326. checksum = "7300fbefb4dadc1af235a9cef3737cea692a9d97e1b9cbcd4ebdae6f8868e6fb"
  5327. [[package]]
  5328. name = "time-macros"
  5329. version = "0.2.9"
  5330. source = "registry+https://github.com/rust-lang/crates.io-index"
  5331. checksum = "372950940a5f07bf38dbe211d7283c9e6d7327df53794992d293e534c733d09b"
  5332. dependencies = [
  5333. "time-core",
  5334. ]
  5335. [[package]]
  5336. name = "tinyvec"
  5337. version = "1.6.0"
  5338. source = "registry+https://github.com/rust-lang/crates.io-index"
  5339. checksum = "87cc5ceb3875bb20c2890005a4e226a4651264a5c75edb2421b52861a0a0cb50"
  5340. dependencies = [
  5341. "tinyvec_macros",
  5342. ]
  5343. [[package]]
  5344. name = "tinyvec_macros"
  5345. version = "0.1.1"
  5346. source = "registry+https://github.com/rust-lang/crates.io-index"
  5347. checksum = "1f3ccbac311fea05f86f61904b462b55fb3df8837a366dfc601a0161d0532f20"
  5348. [[package]]
  5349. name = "tokio"
  5350. version = "1.28.2"
  5351. source = "registry+https://github.com/rust-lang/crates.io-index"
  5352. checksum = "94d7b1cfd2aa4011f2de74c2c4c63665e27a71006b0a192dcd2710272e73dfa2"
  5353. dependencies = [
  5354. "autocfg",
  5355. "bytes",
  5356. "libc",
  5357. "mio",
  5358. "num_cpus",
  5359. "parking_lot 0.12.1",
  5360. "pin-project-lite",
  5361. "signal-hook-registry",
  5362. "socket2 0.4.9",
  5363. "tokio-macros",
  5364. "windows-sys 0.48.0",
  5365. ]
  5366. [[package]]
  5367. name = "tokio-macros"
  5368. version = "2.1.0"
  5369. source = "registry+https://github.com/rust-lang/crates.io-index"
  5370. checksum = "630bdcf245f78637c13ec01ffae6187cca34625e8c63150d424b59e55af2675e"
  5371. dependencies = [
  5372. "proc-macro2",
  5373. "quote",
  5374. "syn 2.0.22",
  5375. ]
  5376. [[package]]
  5377. name = "tokio-native-tls"
  5378. version = "0.3.1"
  5379. source = "registry+https://github.com/rust-lang/crates.io-index"
  5380. checksum = "bbae76ab933c85776efabc971569dd6119c580d8f5d448769dec1764bf796ef2"
  5381. dependencies = [
  5382. "native-tls",
  5383. "tokio",
  5384. ]
  5385. [[package]]
  5386. name = "tokio-postgres"
  5387. version = "0.7.8"
  5388. source = "registry+https://github.com/rust-lang/crates.io-index"
  5389. checksum = "6e89f6234aa8fd43779746012fcf53603cdb91fdd8399aa0de868c2d56b6dde1"
  5390. dependencies = [
  5391. "async-trait",
  5392. "byteorder",
  5393. "bytes",
  5394. "fallible-iterator",
  5395. "futures-channel",
  5396. "futures-util",
  5397. "log",
  5398. "parking_lot 0.12.1",
  5399. "percent-encoding",
  5400. "phf 0.11.2",
  5401. "pin-project-lite",
  5402. "postgres-protocol",
  5403. "postgres-types",
  5404. "socket2 0.5.3",
  5405. "tokio",
  5406. "tokio-util",
  5407. ]
  5408. [[package]]
  5409. name = "tokio-retry"
  5410. version = "0.3.0"
  5411. source = "registry+https://github.com/rust-lang/crates.io-index"
  5412. checksum = "7f57eb36ecbe0fc510036adff84824dd3c24bb781e21bfa67b69d556aa85214f"
  5413. dependencies = [
  5414. "pin-project",
  5415. "rand 0.8.5",
  5416. "tokio",
  5417. ]
  5418. [[package]]
  5419. name = "tokio-rustls"
  5420. version = "0.23.4"
  5421. source = "registry+https://github.com/rust-lang/crates.io-index"
  5422. checksum = "c43ee83903113e03984cb9e5cebe6c04a5116269e900e3ddba8f068a62adda59"
  5423. dependencies = [
  5424. "rustls 0.20.8",
  5425. "tokio",
  5426. "webpki",
  5427. ]
  5428. [[package]]
  5429. name = "tokio-rustls"
  5430. version = "0.24.1"
  5431. source = "registry+https://github.com/rust-lang/crates.io-index"
  5432. checksum = "c28327cf380ac148141087fbfb9de9d7bd4e84ab5d2c28fbc911d753de8a7081"
  5433. dependencies = [
  5434. "rustls 0.21.2",
  5435. "tokio",
  5436. ]
  5437. [[package]]
  5438. name = "tokio-stream"
  5439. version = "0.1.14"
  5440. source = "registry+https://github.com/rust-lang/crates.io-index"
  5441. checksum = "397c988d37662c7dda6d2208364a706264bf3d6138b11d436cbac0ad38832842"
  5442. dependencies = [
  5443. "futures-core",
  5444. "pin-project-lite",
  5445. "tokio",
  5446. "tokio-util",
  5447. ]
  5448. [[package]]
  5449. name = "tokio-tungstenite"
  5450. version = "0.15.0"
  5451. source = "registry+https://github.com/rust-lang/crates.io-index"
  5452. checksum = "511de3f85caf1c98983545490c3d09685fa8eb634e57eec22bb4db271f46cbd8"
  5453. dependencies = [
  5454. "futures-util",
  5455. "log",
  5456. "pin-project",
  5457. "tokio",
  5458. "tungstenite 0.14.0",
  5459. ]
  5460. [[package]]
  5461. name = "tokio-tungstenite"
  5462. version = "0.18.0"
  5463. source = "registry+https://github.com/rust-lang/crates.io-index"
  5464. checksum = "54319c93411147bced34cb5609a80e0a8e44c5999c93903a81cd866630ec0bfd"
  5465. dependencies = [
  5466. "futures-util",
  5467. "log",
  5468. "tokio",
  5469. "tungstenite 0.18.0",
  5470. ]
  5471. [[package]]
  5472. name = "tokio-util"
  5473. version = "0.7.8"
  5474. source = "registry+https://github.com/rust-lang/crates.io-index"
  5475. checksum = "806fe8c2c87eccc8b3267cbae29ed3ab2d0bd37fca70ab622e46aaa9375ddb7d"
  5476. dependencies = [
  5477. "bytes",
  5478. "futures-core",
  5479. "futures-sink",
  5480. "pin-project-lite",
  5481. "tokio",
  5482. "tracing",
  5483. ]
  5484. [[package]]
  5485. name = "toml"
  5486. version = "0.5.11"
  5487. source = "registry+https://github.com/rust-lang/crates.io-index"
  5488. checksum = "f4f7f0dd8d50a853a531c426359045b1998f04219d88799810762cd4ad314234"
  5489. dependencies = [
  5490. "serde",
  5491. ]
  5492. [[package]]
  5493. name = "toml"
  5494. version = "0.7.5"
  5495. source = "registry+https://github.com/rust-lang/crates.io-index"
  5496. checksum = "1ebafdf5ad1220cb59e7d17cf4d2c72015297b75b19a10472f99b89225089240"
  5497. dependencies = [
  5498. "serde",
  5499. "serde_spanned",
  5500. "toml_datetime",
  5501. "toml_edit",
  5502. ]
  5503. [[package]]
  5504. name = "toml_datetime"
  5505. version = "0.6.3"
  5506. source = "registry+https://github.com/rust-lang/crates.io-index"
  5507. checksum = "7cda73e2f1397b1262d6dfdcef8aafae14d1de7748d66822d3bfeeb6d03e5e4b"
  5508. dependencies = [
  5509. "serde",
  5510. ]
  5511. [[package]]
  5512. name = "toml_edit"
  5513. version = "0.19.11"
  5514. source = "registry+https://github.com/rust-lang/crates.io-index"
  5515. checksum = "266f016b7f039eec8a1a80dfe6156b633d208b9fccca5e4db1d6775b0c4e34a7"
  5516. dependencies = [
  5517. "indexmap 2.0.0",
  5518. "serde",
  5519. "serde_spanned",
  5520. "toml_datetime",
  5521. "winnow",
  5522. ]
  5523. [[package]]
  5524. name = "tower"
  5525. version = "0.4.13"
  5526. source = "registry+https://github.com/rust-lang/crates.io-index"
  5527. checksum = "b8fa9be0de6cf49e536ce1851f987bd21a43b771b09473c3549a6c853db37c1c"
  5528. dependencies = [
  5529. "futures-core",
  5530. "futures-util",
  5531. "pin-project",
  5532. "pin-project-lite",
  5533. "tokio",
  5534. "tower-layer",
  5535. "tower-service",
  5536. "tracing",
  5537. ]
  5538. [[package]]
  5539. name = "tower-layer"
  5540. version = "0.3.2"
  5541. source = "registry+https://github.com/rust-lang/crates.io-index"
  5542. checksum = "c20c8dbed6283a09604c3e69b4b7eeb54e298b8a600d4d5ecb5ad39de609f1d0"
  5543. [[package]]
  5544. name = "tower-service"
  5545. version = "0.3.2"
  5546. source = "registry+https://github.com/rust-lang/crates.io-index"
  5547. checksum = "b6bc1c9ce2b5135ac7f93c72918fc37feb872bdc6a5533a8b85eb4b86bfdae52"
  5548. [[package]]
  5549. name = "tracing"
  5550. version = "0.1.37"
  5551. source = "registry+https://github.com/rust-lang/crates.io-index"
  5552. checksum = "8ce8c33a8d48bd45d624a6e523445fd21ec13d3653cd51f681abf67418f54eb8"
  5553. dependencies = [
  5554. "cfg-if",
  5555. "log",
  5556. "pin-project-lite",
  5557. "tracing-attributes",
  5558. "tracing-core",
  5559. ]
  5560. [[package]]
  5561. name = "tracing-appender"
  5562. version = "0.1.2"
  5563. source = "registry+https://github.com/rust-lang/crates.io-index"
  5564. checksum = "9965507e507f12c8901432a33e31131222abac31edd90cabbcf85cf544b7127a"
  5565. dependencies = [
  5566. "chrono",
  5567. "crossbeam-channel",
  5568. "tracing-subscriber 0.2.25",
  5569. ]
  5570. [[package]]
  5571. name = "tracing-attributes"
  5572. version = "0.1.26"
  5573. source = "registry+https://github.com/rust-lang/crates.io-index"
  5574. checksum = "5f4f31f56159e98206da9efd823404b79b6ef3143b4a7ab76e67b1751b25a4ab"
  5575. dependencies = [
  5576. "proc-macro2",
  5577. "quote",
  5578. "syn 2.0.22",
  5579. ]
  5580. [[package]]
  5581. name = "tracing-bunyan-formatter"
  5582. version = "0.2.6"
  5583. source = "registry+https://github.com/rust-lang/crates.io-index"
  5584. checksum = "c408910c9b7eabc0215fe2b4a89f8ec95581a91cea1f7619f7c78caf14cbc2a1"
  5585. dependencies = [
  5586. "chrono",
  5587. "gethostname",
  5588. "log",
  5589. "serde",
  5590. "serde_json",
  5591. "tracing",
  5592. "tracing-core",
  5593. "tracing-log",
  5594. "tracing-subscriber 0.2.25",
  5595. ]
  5596. [[package]]
  5597. name = "tracing-core"
  5598. version = "0.1.31"
  5599. source = "registry+https://github.com/rust-lang/crates.io-index"
  5600. checksum = "0955b8137a1df6f1a2e9a37d8a6656291ff0297c1a97c24e0d8425fe2312f79a"
  5601. dependencies = [
  5602. "once_cell",
  5603. "valuable",
  5604. ]
  5605. [[package]]
  5606. name = "tracing-log"
  5607. version = "0.1.3"
  5608. source = "registry+https://github.com/rust-lang/crates.io-index"
  5609. checksum = "78ddad33d2d10b1ed7eb9d1f518a5674713876e97e5bb9b7345a7984fbb4f922"
  5610. dependencies = [
  5611. "lazy_static",
  5612. "log",
  5613. "tracing-core",
  5614. ]
  5615. [[package]]
  5616. name = "tracing-serde"
  5617. version = "0.1.3"
  5618. source = "registry+https://github.com/rust-lang/crates.io-index"
  5619. checksum = "bc6b213177105856957181934e4920de57730fc69bf42c37ee5bb664d406d9e1"
  5620. dependencies = [
  5621. "serde",
  5622. "tracing-core",
  5623. ]
  5624. [[package]]
  5625. name = "tracing-subscriber"
  5626. version = "0.2.25"
  5627. source = "registry+https://github.com/rust-lang/crates.io-index"
  5628. checksum = "0e0d2eaa99c3c2e41547cfa109e910a68ea03823cccad4a0525dcbc9b01e8c71"
  5629. dependencies = [
  5630. "ansi_term",
  5631. "chrono",
  5632. "lazy_static",
  5633. "matchers 0.0.1",
  5634. "regex",
  5635. "serde",
  5636. "serde_json",
  5637. "sharded-slab",
  5638. "smallvec",
  5639. "thread_local",
  5640. "tracing",
  5641. "tracing-core",
  5642. "tracing-log",
  5643. "tracing-serde",
  5644. ]
  5645. [[package]]
  5646. name = "tracing-subscriber"
  5647. version = "0.3.17"
  5648. source = "registry+https://github.com/rust-lang/crates.io-index"
  5649. checksum = "30a651bc37f915e81f087d86e62a18eec5f79550c7faff886f7090b4ea757c77"
  5650. dependencies = [
  5651. "matchers 0.1.0",
  5652. "nu-ansi-term",
  5653. "once_cell",
  5654. "regex",
  5655. "sharded-slab",
  5656. "smallvec",
  5657. "thread_local",
  5658. "tracing",
  5659. "tracing-core",
  5660. "tracing-log",
  5661. ]
  5662. [[package]]
  5663. name = "treediff"
  5664. version = "4.0.2"
  5665. source = "registry+https://github.com/rust-lang/crates.io-index"
  5666. checksum = "52984d277bdf2a751072b5df30ec0377febdb02f7696d64c2d7d54630bac4303"
  5667. dependencies = [
  5668. "serde_json",
  5669. ]
  5670. [[package]]
  5671. name = "try-lock"
  5672. version = "0.2.4"
  5673. source = "registry+https://github.com/rust-lang/crates.io-index"
  5674. checksum = "3528ecfd12c466c6f163363caf2d02a71161dd5e1cc6ae7b34207ea2d42d81ed"
  5675. [[package]]
  5676. name = "tungstenite"
  5677. version = "0.14.0"
  5678. source = "registry+https://github.com/rust-lang/crates.io-index"
  5679. checksum = "a0b2d8558abd2e276b0a8df5c05a2ec762609344191e5fd23e292c910e9165b5"
  5680. dependencies = [
  5681. "base64 0.13.1",
  5682. "byteorder",
  5683. "bytes",
  5684. "http",
  5685. "httparse",
  5686. "log",
  5687. "rand 0.8.5",
  5688. "sha-1",
  5689. "thiserror",
  5690. "url",
  5691. "utf-8",
  5692. ]
  5693. [[package]]
  5694. name = "tungstenite"
  5695. version = "0.18.0"
  5696. source = "registry+https://github.com/rust-lang/crates.io-index"
  5697. checksum = "30ee6ab729cd4cf0fd55218530c4522ed30b7b6081752839b68fcec8d0960788"
  5698. dependencies = [
  5699. "base64 0.13.1",
  5700. "byteorder",
  5701. "bytes",
  5702. "http",
  5703. "httparse",
  5704. "log",
  5705. "rand 0.8.5",
  5706. "sha1",
  5707. "thiserror",
  5708. "url",
  5709. "utf-8",
  5710. ]
  5711. [[package]]
  5712. name = "typenum"
  5713. version = "1.16.0"
  5714. source = "registry+https://github.com/rust-lang/crates.io-index"
  5715. checksum = "497961ef93d974e23eb6f433eb5fe1b7930b659f06d12dec6fc44a8f554c0bba"
  5716. [[package]]
  5717. name = "ucd-trie"
  5718. version = "0.1.5"
  5719. source = "registry+https://github.com/rust-lang/crates.io-index"
  5720. checksum = "9e79c4d996edb816c91e4308506774452e55e95c3c9de07b6729e17e15a5ef81"
  5721. [[package]]
  5722. name = "uncased"
  5723. version = "0.9.9"
  5724. source = "registry+https://github.com/rust-lang/crates.io-index"
  5725. checksum = "9b9bc53168a4be7402ab86c3aad243a84dd7381d09be0eddc81280c1da95ca68"
  5726. dependencies = [
  5727. "version_check",
  5728. ]
  5729. [[package]]
  5730. name = "unic-char-property"
  5731. version = "0.9.0"
  5732. source = "registry+https://github.com/rust-lang/crates.io-index"
  5733. checksum = "a8c57a407d9b6fa02b4795eb81c5b6652060a15a7903ea981f3d723e6c0be221"
  5734. dependencies = [
  5735. "unic-char-range",
  5736. ]
  5737. [[package]]
  5738. name = "unic-char-range"
  5739. version = "0.9.0"
  5740. source = "registry+https://github.com/rust-lang/crates.io-index"
  5741. checksum = "0398022d5f700414f6b899e10b8348231abf9173fa93144cbc1a43b9793c1fbc"
  5742. [[package]]
  5743. name = "unic-common"
  5744. version = "0.9.0"
  5745. source = "registry+https://github.com/rust-lang/crates.io-index"
  5746. checksum = "80d7ff825a6a654ee85a63e80f92f054f904f21e7d12da4e22f9834a4aaa35bc"
  5747. [[package]]
  5748. name = "unic-segment"
  5749. version = "0.9.0"
  5750. source = "registry+https://github.com/rust-lang/crates.io-index"
  5751. checksum = "e4ed5d26be57f84f176157270c112ef57b86debac9cd21daaabbe56db0f88f23"
  5752. dependencies = [
  5753. "unic-ucd-segment",
  5754. ]
  5755. [[package]]
  5756. name = "unic-ucd-segment"
  5757. version = "0.9.0"
  5758. source = "registry+https://github.com/rust-lang/crates.io-index"
  5759. checksum = "2079c122a62205b421f499da10f3ee0f7697f012f55b675e002483c73ea34700"
  5760. dependencies = [
  5761. "unic-char-property",
  5762. "unic-char-range",
  5763. "unic-ucd-version",
  5764. ]
  5765. [[package]]
  5766. name = "unic-ucd-version"
  5767. version = "0.9.0"
  5768. source = "registry+https://github.com/rust-lang/crates.io-index"
  5769. checksum = "96bd2f2237fe450fcd0a1d2f5f4e91711124f7857ba2e964247776ebeeb7b0c4"
  5770. dependencies = [
  5771. "unic-common",
  5772. ]
  5773. [[package]]
  5774. name = "unicode-bidi"
  5775. version = "0.3.13"
  5776. source = "registry+https://github.com/rust-lang/crates.io-index"
  5777. checksum = "92888ba5573ff080736b3648696b70cafad7d250551175acbaa4e0385b3e1460"
  5778. [[package]]
  5779. name = "unicode-ident"
  5780. version = "1.0.9"
  5781. source = "registry+https://github.com/rust-lang/crates.io-index"
  5782. checksum = "b15811caf2415fb889178633e7724bad2509101cde276048e013b9def5e51fa0"
  5783. [[package]]
  5784. name = "unicode-normalization"
  5785. version = "0.1.22"
  5786. source = "registry+https://github.com/rust-lang/crates.io-index"
  5787. checksum = "5c5713f0fc4b5db668a2ac63cdb7bb4469d8c9fed047b1d0292cc7b0ce2ba921"
  5788. dependencies = [
  5789. "tinyvec",
  5790. ]
  5791. [[package]]
  5792. name = "unicode-segmentation"
  5793. version = "1.10.1"
  5794. source = "registry+https://github.com/rust-lang/crates.io-index"
  5795. checksum = "1dd624098567895118886609431a7c3b8f516e41d30e0643f03d94592a147e36"
  5796. [[package]]
  5797. name = "unicode-width"
  5798. version = "0.1.10"
  5799. source = "registry+https://github.com/rust-lang/crates.io-index"
  5800. checksum = "c0edd1e5b14653f783770bce4a4dabb4a5108a5370a5f5d8cfe8710c361f6c8b"
  5801. [[package]]
  5802. name = "untrusted"
  5803. version = "0.7.1"
  5804. source = "registry+https://github.com/rust-lang/crates.io-index"
  5805. checksum = "a156c684c91ea7d62626509bce3cb4e1d9ed5c4d978f7b4352658f96a4c26b4a"
  5806. [[package]]
  5807. name = "url"
  5808. version = "2.4.0"
  5809. source = "registry+https://github.com/rust-lang/crates.io-index"
  5810. checksum = "50bff7831e19200a85b17131d085c25d7811bc4e186efdaf54bbd132994a88cb"
  5811. dependencies = [
  5812. "form_urlencoded",
  5813. "idna",
  5814. "percent-encoding",
  5815. "serde",
  5816. ]
  5817. [[package]]
  5818. name = "urlencoding"
  5819. version = "2.1.2"
  5820. source = "registry+https://github.com/rust-lang/crates.io-index"
  5821. checksum = "e8db7427f936968176eaa7cdf81b7f98b980b18495ec28f1b5791ac3bfe3eea9"
  5822. [[package]]
  5823. name = "utf-8"
  5824. version = "0.7.6"
  5825. source = "registry+https://github.com/rust-lang/crates.io-index"
  5826. checksum = "09cc8ee72d2a9becf2f2febe0205bbed8fc6615b7cb429ad062dc7b7ddd036a9"
  5827. [[package]]
  5828. name = "uuid"
  5829. version = "1.3.4"
  5830. source = "registry+https://github.com/rust-lang/crates.io-index"
  5831. checksum = "0fa2982af2eec27de306107c027578ff7f423d65f7250e40ce0fea8f45248b81"
  5832. dependencies = [
  5833. "getrandom 0.2.10",
  5834. "sha1_smol",
  5835. ]
  5836. [[package]]
  5837. name = "validator"
  5838. version = "0.16.1"
  5839. source = "registry+https://github.com/rust-lang/crates.io-index"
  5840. checksum = "b92f40481c04ff1f4f61f304d61793c7b56ff76ac1469f1beb199b1445b253bd"
  5841. dependencies = [
  5842. "idna",
  5843. "lazy_static",
  5844. "regex",
  5845. "serde",
  5846. "serde_derive",
  5847. "serde_json",
  5848. "url",
  5849. ]
  5850. [[package]]
  5851. name = "valuable"
  5852. version = "0.1.0"
  5853. source = "registry+https://github.com/rust-lang/crates.io-index"
  5854. checksum = "830b7e5d4d90034032940e4ace0d9a9a057e7a45cd94e6c007832e39edb82f6d"
  5855. [[package]]
  5856. name = "vcpkg"
  5857. version = "0.2.15"
  5858. source = "registry+https://github.com/rust-lang/crates.io-index"
  5859. checksum = "accd4ea62f7bb7a82fe23066fb0957d48ef677f6eeb8215f372f52e48bb32426"
  5860. [[package]]
  5861. name = "version-compare"
  5862. version = "0.0.11"
  5863. source = "registry+https://github.com/rust-lang/crates.io-index"
  5864. checksum = "1c18c859eead79d8b95d09e4678566e8d70105c4e7b251f707a03df32442661b"
  5865. [[package]]
  5866. name = "version-compare"
  5867. version = "0.1.1"
  5868. source = "registry+https://github.com/rust-lang/crates.io-index"
  5869. checksum = "579a42fc0b8e0c63b76519a339be31bed574929511fa53c1a3acae26eb258f29"
  5870. [[package]]
  5871. name = "version_check"
  5872. version = "0.9.4"
  5873. source = "registry+https://github.com/rust-lang/crates.io-index"
  5874. checksum = "49874b5167b65d7193b8aba1567f5c7d93d001cafc34600cee003eda787e483f"
  5875. [[package]]
  5876. name = "vsimd"
  5877. version = "0.8.0"
  5878. source = "registry+https://github.com/rust-lang/crates.io-index"
  5879. checksum = "5c3082ca00d5a5ef149bb8b555a72ae84c9c59f7250f013ac822ac2e49b19c64"
  5880. [[package]]
  5881. name = "vswhom"
  5882. version = "0.1.0"
  5883. source = "registry+https://github.com/rust-lang/crates.io-index"
  5884. checksum = "be979b7f07507105799e854203b470ff7c78a1639e330a58f183b5fea574608b"
  5885. dependencies = [
  5886. "libc",
  5887. "vswhom-sys",
  5888. ]
  5889. [[package]]
  5890. name = "vswhom-sys"
  5891. version = "0.1.2"
  5892. source = "registry+https://github.com/rust-lang/crates.io-index"
  5893. checksum = "d3b17ae1f6c8a2b28506cd96d412eebf83b4a0ff2cbefeeb952f2f9dfa44ba18"
  5894. dependencies = [
  5895. "cc",
  5896. "libc",
  5897. ]
  5898. [[package]]
  5899. name = "walkdir"
  5900. version = "2.3.3"
  5901. source = "registry+https://github.com/rust-lang/crates.io-index"
  5902. checksum = "36df944cda56c7d8d8b7496af378e6b16de9284591917d307c9b4d313c44e698"
  5903. dependencies = [
  5904. "same-file",
  5905. "winapi-util",
  5906. ]
  5907. [[package]]
  5908. name = "want"
  5909. version = "0.3.1"
  5910. source = "registry+https://github.com/rust-lang/crates.io-index"
  5911. checksum = "bfa7760aed19e106de2c7c0b581b509f2f25d3dacaf737cb82ac61bc6d760b0e"
  5912. dependencies = [
  5913. "try-lock",
  5914. ]
  5915. [[package]]
  5916. name = "wasi"
  5917. version = "0.9.0+wasi-snapshot-preview1"
  5918. source = "registry+https://github.com/rust-lang/crates.io-index"
  5919. checksum = "cccddf32554fecc6acb585f82a32a72e28b48f8c4c1883ddfeeeaa96f7d8e519"
  5920. [[package]]
  5921. name = "wasi"
  5922. version = "0.10.0+wasi-snapshot-preview1"
  5923. source = "registry+https://github.com/rust-lang/crates.io-index"
  5924. checksum = "1a143597ca7c7793eff794def352d41792a93c481eb1042423ff7ff72ba2c31f"
  5925. [[package]]
  5926. name = "wasi"
  5927. version = "0.11.0+wasi-snapshot-preview1"
  5928. source = "registry+https://github.com/rust-lang/crates.io-index"
  5929. checksum = "9c8d87e72b64a3b4db28d11ce29237c246188f4f51057d65a7eab63b7987e423"
  5930. [[package]]
  5931. name = "wasm-bindgen"
  5932. version = "0.2.87"
  5933. source = "registry+https://github.com/rust-lang/crates.io-index"
  5934. checksum = "7706a72ab36d8cb1f80ffbf0e071533974a60d0a308d01a5d0375bf60499a342"
  5935. dependencies = [
  5936. "cfg-if",
  5937. "wasm-bindgen-macro",
  5938. ]
  5939. [[package]]
  5940. name = "wasm-bindgen-backend"
  5941. version = "0.2.87"
  5942. source = "registry+https://github.com/rust-lang/crates.io-index"
  5943. checksum = "5ef2b6d3c510e9625e5fe6f509ab07d66a760f0885d858736483c32ed7809abd"
  5944. dependencies = [
  5945. "bumpalo",
  5946. "log",
  5947. "once_cell",
  5948. "proc-macro2",
  5949. "quote",
  5950. "syn 2.0.22",
  5951. "wasm-bindgen-shared",
  5952. ]
  5953. [[package]]
  5954. name = "wasm-bindgen-futures"
  5955. version = "0.4.37"
  5956. source = "registry+https://github.com/rust-lang/crates.io-index"
  5957. checksum = "c02dbc21516f9f1f04f187958890d7e6026df8d16540b7ad9492bc34a67cea03"
  5958. dependencies = [
  5959. "cfg-if",
  5960. "js-sys",
  5961. "wasm-bindgen",
  5962. "web-sys",
  5963. ]
  5964. [[package]]
  5965. name = "wasm-bindgen-macro"
  5966. version = "0.2.87"
  5967. source = "registry+https://github.com/rust-lang/crates.io-index"
  5968. checksum = "dee495e55982a3bd48105a7b947fd2a9b4a8ae3010041b9e0faab3f9cd028f1d"
  5969. dependencies = [
  5970. "quote",
  5971. "wasm-bindgen-macro-support",
  5972. ]
  5973. [[package]]
  5974. name = "wasm-bindgen-macro-support"
  5975. version = "0.2.87"
  5976. source = "registry+https://github.com/rust-lang/crates.io-index"
  5977. checksum = "54681b18a46765f095758388f2d0cf16eb8d4169b639ab575a8f5693af210c7b"
  5978. dependencies = [
  5979. "proc-macro2",
  5980. "quote",
  5981. "syn 2.0.22",
  5982. "wasm-bindgen-backend",
  5983. "wasm-bindgen-shared",
  5984. ]
  5985. [[package]]
  5986. name = "wasm-bindgen-shared"
  5987. version = "0.2.87"
  5988. source = "registry+https://github.com/rust-lang/crates.io-index"
  5989. checksum = "ca6ad05a4870b2bf5fe995117d3728437bd27d7cd5f06f13c17443ef369775a1"
  5990. [[package]]
  5991. name = "web-sys"
  5992. version = "0.3.64"
  5993. source = "registry+https://github.com/rust-lang/crates.io-index"
  5994. checksum = "9b85cbef8c220a6abc02aefd892dfc0fc23afb1c6a426316ec33253a3877249b"
  5995. dependencies = [
  5996. "js-sys",
  5997. "wasm-bindgen",
  5998. ]
  5999. [[package]]
  6000. name = "webkit2gtk"
  6001. version = "0.18.2"
  6002. source = "registry+https://github.com/rust-lang/crates.io-index"
  6003. checksum = "b8f859735e4a452aeb28c6c56a852967a8a76c8eb1cc32dbf931ad28a13d6370"
  6004. dependencies = [
  6005. "bitflags",
  6006. "cairo-rs",
  6007. "gdk",
  6008. "gdk-sys",
  6009. "gio",
  6010. "gio-sys",
  6011. "glib",
  6012. "glib-sys",
  6013. "gobject-sys",
  6014. "gtk",
  6015. "gtk-sys",
  6016. "javascriptcore-rs",
  6017. "libc",
  6018. "once_cell",
  6019. "soup2",
  6020. "webkit2gtk-sys",
  6021. ]
  6022. [[package]]
  6023. name = "webkit2gtk-sys"
  6024. version = "0.18.0"
  6025. source = "registry+https://github.com/rust-lang/crates.io-index"
  6026. checksum = "4d76ca6ecc47aeba01ec61e480139dda143796abcae6f83bcddf50d6b5b1dcf3"
  6027. dependencies = [
  6028. "atk-sys",
  6029. "bitflags",
  6030. "cairo-sys-rs",
  6031. "gdk-pixbuf-sys",
  6032. "gdk-sys",
  6033. "gio-sys",
  6034. "glib-sys",
  6035. "gobject-sys",
  6036. "gtk-sys",
  6037. "javascriptcore-rs-sys",
  6038. "libc",
  6039. "pango-sys",
  6040. "pkg-config",
  6041. "soup2-sys",
  6042. "system-deps 6.1.1",
  6043. ]
  6044. [[package]]
  6045. name = "webpki"
  6046. version = "0.22.0"
  6047. source = "registry+https://github.com/rust-lang/crates.io-index"
  6048. checksum = "f095d78192e208183081cc07bc5515ef55216397af48b873e5edcd72637fa1bd"
  6049. dependencies = [
  6050. "ring",
  6051. "untrusted",
  6052. ]
  6053. [[package]]
  6054. name = "webpki-roots"
  6055. version = "0.22.6"
  6056. source = "registry+https://github.com/rust-lang/crates.io-index"
  6057. checksum = "b6c71e40d7d2c34a5106301fb632274ca37242cd0c9d3e64dbece371a40a2d87"
  6058. dependencies = [
  6059. "webpki",
  6060. ]
  6061. [[package]]
  6062. name = "webview2-com"
  6063. version = "0.19.1"
  6064. source = "registry+https://github.com/rust-lang/crates.io-index"
  6065. checksum = "b4a769c9f1a64a8734bde70caafac2b96cada12cd4aefa49196b3a386b8b4178"
  6066. dependencies = [
  6067. "webview2-com-macros",
  6068. "webview2-com-sys",
  6069. "windows 0.39.0",
  6070. "windows-implement",
  6071. ]
  6072. [[package]]
  6073. name = "webview2-com-macros"
  6074. version = "0.6.0"
  6075. source = "registry+https://github.com/rust-lang/crates.io-index"
  6076. checksum = "eaebe196c01691db62e9e4ca52c5ef1e4fd837dcae27dae3ada599b5a8fd05ac"
  6077. dependencies = [
  6078. "proc-macro2",
  6079. "quote",
  6080. "syn 1.0.109",
  6081. ]
  6082. [[package]]
  6083. name = "webview2-com-sys"
  6084. version = "0.19.0"
  6085. source = "registry+https://github.com/rust-lang/crates.io-index"
  6086. checksum = "aac48ef20ddf657755fdcda8dfed2a7b4fc7e4581acce6fe9b88c3d64f29dee7"
  6087. dependencies = [
  6088. "regex",
  6089. "serde",
  6090. "serde_json",
  6091. "thiserror",
  6092. "windows 0.39.0",
  6093. "windows-bindgen",
  6094. "windows-metadata",
  6095. ]
  6096. [[package]]
  6097. name = "which"
  6098. version = "4.4.0"
  6099. source = "registry+https://github.com/rust-lang/crates.io-index"
  6100. checksum = "2441c784c52b289a054b7201fc93253e288f094e2f4be9058343127c4226a269"
  6101. dependencies = [
  6102. "either",
  6103. "libc",
  6104. "once_cell",
  6105. ]
  6106. [[package]]
  6107. name = "winapi"
  6108. version = "0.3.9"
  6109. source = "registry+https://github.com/rust-lang/crates.io-index"
  6110. checksum = "5c839a674fcd7a98952e593242ea400abe93992746761e38641405d28b00f419"
  6111. dependencies = [
  6112. "winapi-i686-pc-windows-gnu",
  6113. "winapi-x86_64-pc-windows-gnu",
  6114. ]
  6115. [[package]]
  6116. name = "winapi-i686-pc-windows-gnu"
  6117. version = "0.4.0"
  6118. source = "registry+https://github.com/rust-lang/crates.io-index"
  6119. checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6"
  6120. [[package]]
  6121. name = "winapi-util"
  6122. version = "0.1.5"
  6123. source = "registry+https://github.com/rust-lang/crates.io-index"
  6124. checksum = "70ec6ce85bb158151cae5e5c87f95a8e97d2c0c4b001223f33a334e3ce5de178"
  6125. dependencies = [
  6126. "winapi",
  6127. ]
  6128. [[package]]
  6129. name = "winapi-x86_64-pc-windows-gnu"
  6130. version = "0.4.0"
  6131. source = "registry+https://github.com/rust-lang/crates.io-index"
  6132. checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f"
  6133. [[package]]
  6134. name = "windows"
  6135. version = "0.39.0"
  6136. source = "registry+https://github.com/rust-lang/crates.io-index"
  6137. checksum = "f1c4bd0a50ac6020f65184721f758dba47bb9fbc2133df715ec74a237b26794a"
  6138. dependencies = [
  6139. "windows-implement",
  6140. "windows_aarch64_msvc 0.39.0",
  6141. "windows_i686_gnu 0.39.0",
  6142. "windows_i686_msvc 0.39.0",
  6143. "windows_x86_64_gnu 0.39.0",
  6144. "windows_x86_64_msvc 0.39.0",
  6145. ]
  6146. [[package]]
  6147. name = "windows"
  6148. version = "0.48.0"
  6149. source = "registry+https://github.com/rust-lang/crates.io-index"
  6150. checksum = "e686886bc078bc1b0b600cac0147aadb815089b6e4da64016cbd754b6342700f"
  6151. dependencies = [
  6152. "windows-targets",
  6153. ]
  6154. [[package]]
  6155. name = "windows-bindgen"
  6156. version = "0.39.0"
  6157. source = "registry+https://github.com/rust-lang/crates.io-index"
  6158. checksum = "68003dbd0e38abc0fb85b939240f4bce37c43a5981d3df37ccbaaa981b47cb41"
  6159. dependencies = [
  6160. "windows-metadata",
  6161. "windows-tokens",
  6162. ]
  6163. [[package]]
  6164. name = "windows-implement"
  6165. version = "0.39.0"
  6166. source = "registry+https://github.com/rust-lang/crates.io-index"
  6167. checksum = "ba01f98f509cb5dc05f4e5fc95e535f78260f15fea8fe1a8abdd08f774f1cee7"
  6168. dependencies = [
  6169. "syn 1.0.109",
  6170. "windows-tokens",
  6171. ]
  6172. [[package]]
  6173. name = "windows-metadata"
  6174. version = "0.39.0"
  6175. source = "registry+https://github.com/rust-lang/crates.io-index"
  6176. checksum = "9ee5e275231f07c6e240d14f34e1b635bf1faa1c76c57cfd59a5cdb9848e4278"
  6177. [[package]]
  6178. name = "windows-sys"
  6179. version = "0.42.0"
  6180. source = "registry+https://github.com/rust-lang/crates.io-index"
  6181. checksum = "5a3e1820f08b8513f676f7ab6c1f99ff312fb97b553d30ff4dd86f9f15728aa7"
  6182. dependencies = [
  6183. "windows_aarch64_gnullvm 0.42.2",
  6184. "windows_aarch64_msvc 0.42.2",
  6185. "windows_i686_gnu 0.42.2",
  6186. "windows_i686_msvc 0.42.2",
  6187. "windows_x86_64_gnu 0.42.2",
  6188. "windows_x86_64_gnullvm 0.42.2",
  6189. "windows_x86_64_msvc 0.42.2",
  6190. ]
  6191. [[package]]
  6192. name = "windows-sys"
  6193. version = "0.48.0"
  6194. source = "registry+https://github.com/rust-lang/crates.io-index"
  6195. checksum = "677d2418bec65e3338edb076e806bc1ec15693c5d0104683f2efe857f61056a9"
  6196. dependencies = [
  6197. "windows-targets",
  6198. ]
  6199. [[package]]
  6200. name = "windows-targets"
  6201. version = "0.48.0"
  6202. source = "registry+https://github.com/rust-lang/crates.io-index"
  6203. checksum = "7b1eb6f0cd7c80c79759c929114ef071b87354ce476d9d94271031c0497adfd5"
  6204. dependencies = [
  6205. "windows_aarch64_gnullvm 0.48.0",
  6206. "windows_aarch64_msvc 0.48.0",
  6207. "windows_i686_gnu 0.48.0",
  6208. "windows_i686_msvc 0.48.0",
  6209. "windows_x86_64_gnu 0.48.0",
  6210. "windows_x86_64_gnullvm 0.48.0",
  6211. "windows_x86_64_msvc 0.48.0",
  6212. ]
  6213. [[package]]
  6214. name = "windows-tokens"
  6215. version = "0.39.0"
  6216. source = "registry+https://github.com/rust-lang/crates.io-index"
  6217. checksum = "f838de2fe15fe6bac988e74b798f26499a8b21a9d97edec321e79b28d1d7f597"
  6218. [[package]]
  6219. name = "windows_aarch64_gnullvm"
  6220. version = "0.42.2"
  6221. source = "registry+https://github.com/rust-lang/crates.io-index"
  6222. checksum = "597a5118570b68bc08d8d59125332c54f1ba9d9adeedeef5b99b02ba2b0698f8"
  6223. [[package]]
  6224. name = "windows_aarch64_gnullvm"
  6225. version = "0.48.0"
  6226. source = "registry+https://github.com/rust-lang/crates.io-index"
  6227. checksum = "91ae572e1b79dba883e0d315474df7305d12f569b400fcf90581b06062f7e1bc"
  6228. [[package]]
  6229. name = "windows_aarch64_msvc"
  6230. version = "0.39.0"
  6231. source = "registry+https://github.com/rust-lang/crates.io-index"
  6232. checksum = "ec7711666096bd4096ffa835238905bb33fb87267910e154b18b44eaabb340f2"
  6233. [[package]]
  6234. name = "windows_aarch64_msvc"
  6235. version = "0.42.2"
  6236. source = "registry+https://github.com/rust-lang/crates.io-index"
  6237. checksum = "e08e8864a60f06ef0d0ff4ba04124db8b0fb3be5776a5cd47641e942e58c4d43"
  6238. [[package]]
  6239. name = "windows_aarch64_msvc"
  6240. version = "0.48.0"
  6241. source = "registry+https://github.com/rust-lang/crates.io-index"
  6242. checksum = "b2ef27e0d7bdfcfc7b868b317c1d32c641a6fe4629c171b8928c7b08d98d7cf3"
  6243. [[package]]
  6244. name = "windows_i686_gnu"
  6245. version = "0.39.0"
  6246. source = "registry+https://github.com/rust-lang/crates.io-index"
  6247. checksum = "763fc57100a5f7042e3057e7e8d9bdd7860d330070251a73d003563a3bb49e1b"
  6248. [[package]]
  6249. name = "windows_i686_gnu"
  6250. version = "0.42.2"
  6251. source = "registry+https://github.com/rust-lang/crates.io-index"
  6252. checksum = "c61d927d8da41da96a81f029489353e68739737d3beca43145c8afec9a31a84f"
  6253. [[package]]
  6254. name = "windows_i686_gnu"
  6255. version = "0.48.0"
  6256. source = "registry+https://github.com/rust-lang/crates.io-index"
  6257. checksum = "622a1962a7db830d6fd0a69683c80a18fda201879f0f447f065a3b7467daa241"
  6258. [[package]]
  6259. name = "windows_i686_msvc"
  6260. version = "0.39.0"
  6261. source = "registry+https://github.com/rust-lang/crates.io-index"
  6262. checksum = "7bc7cbfe58828921e10a9f446fcaaf649204dcfe6c1ddd712c5eebae6bda1106"
  6263. [[package]]
  6264. name = "windows_i686_msvc"
  6265. version = "0.42.2"
  6266. source = "registry+https://github.com/rust-lang/crates.io-index"
  6267. checksum = "44d840b6ec649f480a41c8d80f9c65108b92d89345dd94027bfe06ac444d1060"
  6268. [[package]]
  6269. name = "windows_i686_msvc"
  6270. version = "0.48.0"
  6271. source = "registry+https://github.com/rust-lang/crates.io-index"
  6272. checksum = "4542c6e364ce21bf45d69fdd2a8e455fa38d316158cfd43b3ac1c5b1b19f8e00"
  6273. [[package]]
  6274. name = "windows_x86_64_gnu"
  6275. version = "0.39.0"
  6276. source = "registry+https://github.com/rust-lang/crates.io-index"
  6277. checksum = "6868c165637d653ae1e8dc4d82c25d4f97dd6605eaa8d784b5c6e0ab2a252b65"
  6278. [[package]]
  6279. name = "windows_x86_64_gnu"
  6280. version = "0.42.2"
  6281. source = "registry+https://github.com/rust-lang/crates.io-index"
  6282. checksum = "8de912b8b8feb55c064867cf047dda097f92d51efad5b491dfb98f6bbb70cb36"
  6283. [[package]]
  6284. name = "windows_x86_64_gnu"
  6285. version = "0.48.0"
  6286. source = "registry+https://github.com/rust-lang/crates.io-index"
  6287. checksum = "ca2b8a661f7628cbd23440e50b05d705db3686f894fc9580820623656af974b1"
  6288. [[package]]
  6289. name = "windows_x86_64_gnullvm"
  6290. version = "0.42.2"
  6291. source = "registry+https://github.com/rust-lang/crates.io-index"
  6292. checksum = "26d41b46a36d453748aedef1486d5c7a85db22e56aff34643984ea85514e94a3"
  6293. [[package]]
  6294. name = "windows_x86_64_gnullvm"
  6295. version = "0.48.0"
  6296. source = "registry+https://github.com/rust-lang/crates.io-index"
  6297. checksum = "7896dbc1f41e08872e9d5e8f8baa8fdd2677f29468c4e156210174edc7f7b953"
  6298. [[package]]
  6299. name = "windows_x86_64_msvc"
  6300. version = "0.39.0"
  6301. source = "registry+https://github.com/rust-lang/crates.io-index"
  6302. checksum = "5e4d40883ae9cae962787ca76ba76390ffa29214667a111db9e0a1ad8377e809"
  6303. [[package]]
  6304. name = "windows_x86_64_msvc"
  6305. version = "0.42.2"
  6306. source = "registry+https://github.com/rust-lang/crates.io-index"
  6307. checksum = "9aec5da331524158c6d1a4ac0ab1541149c0b9505fde06423b02f5ef0106b9f0"
  6308. [[package]]
  6309. name = "windows_x86_64_msvc"
  6310. version = "0.48.0"
  6311. source = "registry+https://github.com/rust-lang/crates.io-index"
  6312. checksum = "1a515f5799fe4961cb532f983ce2b23082366b898e52ffbce459c86f67c8378a"
  6313. [[package]]
  6314. name = "winnow"
  6315. version = "0.4.7"
  6316. source = "registry+https://github.com/rust-lang/crates.io-index"
  6317. checksum = "ca0ace3845f0d96209f0375e6d367e3eb87eb65d27d445bdc9f1843a26f39448"
  6318. dependencies = [
  6319. "memchr",
  6320. ]
  6321. [[package]]
  6322. name = "winreg"
  6323. version = "0.10.1"
  6324. source = "registry+https://github.com/rust-lang/crates.io-index"
  6325. checksum = "80d0f4e272c85def139476380b12f9ac60926689dd2e01d4923222f40580869d"
  6326. dependencies = [
  6327. "winapi",
  6328. ]
  6329. [[package]]
  6330. name = "winreg"
  6331. version = "0.11.0"
  6332. source = "registry+https://github.com/rust-lang/crates.io-index"
  6333. checksum = "76a1a57ff50e9b408431e8f97d5456f2807f8eb2a2cd79b06068fc87f8ecf189"
  6334. dependencies = [
  6335. "cfg-if",
  6336. "winapi",
  6337. ]
  6338. [[package]]
  6339. name = "wry"
  6340. version = "0.24.3"
  6341. source = "registry+https://github.com/rust-lang/crates.io-index"
  6342. checksum = "33748f35413c8a98d45f7a08832d848c0c5915501803d1faade5a4ebcd258cea"
  6343. dependencies = [
  6344. "base64 0.13.1",
  6345. "block",
  6346. "cocoa",
  6347. "core-graphics",
  6348. "crossbeam-channel",
  6349. "dunce",
  6350. "gdk",
  6351. "gio",
  6352. "glib",
  6353. "gtk",
  6354. "html5ever",
  6355. "http",
  6356. "kuchiki",
  6357. "libc",
  6358. "log",
  6359. "objc",
  6360. "objc_id",
  6361. "once_cell",
  6362. "serde",
  6363. "serde_json",
  6364. "sha2",
  6365. "soup2",
  6366. "tao",
  6367. "thiserror",
  6368. "url",
  6369. "webkit2gtk",
  6370. "webkit2gtk-sys",
  6371. "webview2-com",
  6372. "windows 0.39.0",
  6373. "windows-implement",
  6374. ]
  6375. [[package]]
  6376. name = "wyz"
  6377. version = "0.5.1"
  6378. source = "registry+https://github.com/rust-lang/crates.io-index"
  6379. checksum = "05f360fc0b24296329c78fda852a1e9ae82de9cf7b27dae4b7f62f118f77b9ed"
  6380. dependencies = [
  6381. "tap",
  6382. ]
  6383. [[package]]
  6384. name = "x11"
  6385. version = "2.21.0"
  6386. source = "registry+https://github.com/rust-lang/crates.io-index"
  6387. checksum = "502da5464ccd04011667b11c435cb992822c2c0dbde1770c988480d312a0db2e"
  6388. dependencies = [
  6389. "libc",
  6390. "pkg-config",
  6391. ]
  6392. [[package]]
  6393. name = "x11-dl"
  6394. version = "2.21.0"
  6395. source = "registry+https://github.com/rust-lang/crates.io-index"
  6396. checksum = "38735924fedd5314a6e548792904ed8c6de6636285cb9fec04d5b1db85c1516f"
  6397. dependencies = [
  6398. "libc",
  6399. "once_cell",
  6400. "pkg-config",
  6401. ]
  6402. [[package]]
  6403. name = "xattr"
  6404. version = "0.2.3"
  6405. source = "registry+https://github.com/rust-lang/crates.io-index"
  6406. checksum = "6d1526bbe5aaeb5eb06885f4d987bcdfa5e23187055de9b83fe00156a821fabc"
  6407. dependencies = [
  6408. "libc",
  6409. ]
  6410. [[package]]
  6411. name = "xmlparser"
  6412. version = "0.13.5"
  6413. source = "registry+https://github.com/rust-lang/crates.io-index"
  6414. checksum = "4d25c75bf9ea12c4040a97f829154768bbbce366287e2dc044af160cd79a13fd"
  6415. [[package]]
  6416. name = "y-sync"
  6417. version = "0.3.1"
  6418. source = "registry+https://github.com/rust-lang/crates.io-index"
  6419. checksum = "f54d34b68ec4514a0659838c2b1ba867c571b20b3804a1338dacf4fa9062d801"
  6420. dependencies = [
  6421. "lib0",
  6422. "thiserror",
  6423. "yrs",
  6424. ]
  6425. [[package]]
  6426. name = "yaml-rust"
  6427. version = "0.4.5"
  6428. source = "registry+https://github.com/rust-lang/crates.io-index"
  6429. checksum = "56c1936c4cc7a1c9ab21a1ebb602eb942ba868cbd44a99cb7cdc5892335e1c85"
  6430. dependencies = [
  6431. "linked-hash-map",
  6432. ]
  6433. [[package]]
  6434. name = "yrs"
  6435. version = "0.16.8"
  6436. source = "registry+https://github.com/rust-lang/crates.io-index"
  6437. checksum = "04e5192da97bd1621497ddf66b42475fb0cc44b6ebcf64510f0d3827c0b15cad"
  6438. dependencies = [
  6439. "atomic_refcell",
  6440. "lib0",
  6441. "rand 0.7.3",
  6442. "smallstr",
  6443. "smallvec",
  6444. "thiserror",
  6445. ]
  6446. [[package]]
  6447. name = "zeroize"
  6448. version = "1.6.0"
  6449. source = "registry+https://github.com/rust-lang/crates.io-index"
  6450. checksum = "2a0956f1ba7c7909bfb66c2e9e4124ab6f6482560f6628b5aaeba39207c9aad9"
  6451. [[package]]
  6452. name = "zstd-sys"
  6453. version = "2.0.8+zstd.1.5.5"
  6454. source = "registry+https://github.com/rust-lang/crates.io-index"
  6455. checksum = "5556e6ee25d32df2586c098bbfa278803692a20d0ab9565e049480d52707ec8c"
  6456. dependencies = [
  6457. "cc",
  6458. "libc",
  6459. "pkg-config",
  6460. ]