Cargo.lock 159 KB

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