Cargo.lock 158 KB

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