Cargo.lock 160 KB

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