Cargo.lock 155 KB

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