Cargo.lock 130 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601160216031604160516061607160816091610161116121613161416151616161716181619162016211622162316241625162616271628162916301631163216331634163516361637163816391640164116421643164416451646164716481649165016511652165316541655165616571658165916601661166216631664166516661667166816691670167116721673167416751676167716781679168016811682168316841685168616871688168916901691169216931694169516961697169816991700170117021703170417051706170717081709171017111712171317141715171617171718171917201721172217231724172517261727172817291730173117321733173417351736173717381739174017411742174317441745174617471748174917501751175217531754175517561757175817591760176117621763176417651766176717681769177017711772177317741775177617771778177917801781178217831784178517861787178817891790179117921793179417951796179717981799180018011802180318041805180618071808180918101811181218131814181518161817181818191820182118221823182418251826182718281829183018311832183318341835183618371838183918401841184218431844184518461847184818491850185118521853185418551856185718581859186018611862186318641865186618671868186918701871187218731874187518761877187818791880188118821883188418851886188718881889189018911892189318941895189618971898189919001901190219031904190519061907190819091910191119121913191419151916191719181919192019211922192319241925192619271928192919301931193219331934193519361937193819391940194119421943194419451946194719481949195019511952195319541955195619571958195919601961196219631964196519661967196819691970197119721973197419751976197719781979198019811982198319841985198619871988198919901991199219931994199519961997199819992000200120022003200420052006200720082009201020112012201320142015201620172018201920202021202220232024202520262027202820292030203120322033203420352036203720382039204020412042204320442045204620472048204920502051205220532054205520562057205820592060206120622063206420652066206720682069207020712072207320742075207620772078207920802081208220832084208520862087208820892090209120922093209420952096209720982099210021012102210321042105210621072108210921102111211221132114211521162117211821192120212121222123212421252126212721282129213021312132213321342135213621372138213921402141214221432144214521462147214821492150215121522153215421552156215721582159216021612162216321642165216621672168216921702171217221732174217521762177217821792180218121822183218421852186218721882189219021912192219321942195219621972198219922002201220222032204220522062207220822092210221122122213221422152216221722182219222022212222222322242225222622272228222922302231223222332234223522362237223822392240224122422243224422452246224722482249225022512252225322542255225622572258225922602261226222632264226522662267226822692270227122722273227422752276227722782279228022812282228322842285228622872288228922902291229222932294229522962297229822992300230123022303230423052306230723082309231023112312231323142315231623172318231923202321232223232324232523262327232823292330233123322333233423352336233723382339234023412342234323442345234623472348234923502351235223532354235523562357235823592360236123622363236423652366236723682369237023712372237323742375237623772378237923802381238223832384238523862387238823892390239123922393239423952396239723982399240024012402240324042405240624072408240924102411241224132414241524162417241824192420242124222423242424252426242724282429243024312432243324342435243624372438243924402441244224432444244524462447244824492450245124522453245424552456245724582459246024612462246324642465246624672468246924702471247224732474247524762477247824792480248124822483248424852486248724882489249024912492249324942495249624972498249925002501250225032504250525062507250825092510251125122513251425152516251725182519252025212522252325242525252625272528252925302531253225332534253525362537253825392540254125422543254425452546254725482549255025512552255325542555255625572558255925602561256225632564256525662567256825692570257125722573257425752576257725782579258025812582258325842585258625872588258925902591259225932594259525962597259825992600260126022603260426052606260726082609261026112612261326142615261626172618261926202621262226232624262526262627262826292630263126322633263426352636263726382639264026412642264326442645264626472648264926502651265226532654265526562657265826592660266126622663266426652666266726682669267026712672267326742675267626772678267926802681268226832684268526862687268826892690269126922693269426952696269726982699270027012702270327042705270627072708270927102711271227132714271527162717271827192720272127222723272427252726272727282729273027312732273327342735273627372738273927402741274227432744274527462747274827492750275127522753275427552756275727582759276027612762276327642765276627672768276927702771277227732774277527762777277827792780278127822783278427852786278727882789279027912792279327942795279627972798279928002801280228032804280528062807280828092810281128122813281428152816281728182819282028212822282328242825282628272828282928302831283228332834283528362837283828392840284128422843284428452846284728482849285028512852285328542855285628572858285928602861286228632864286528662867286828692870287128722873287428752876287728782879288028812882288328842885288628872888288928902891289228932894289528962897289828992900290129022903290429052906290729082909291029112912291329142915291629172918291929202921292229232924292529262927292829292930293129322933293429352936293729382939294029412942294329442945294629472948294929502951295229532954295529562957295829592960296129622963296429652966296729682969297029712972297329742975297629772978297929802981298229832984298529862987298829892990299129922993299429952996299729982999300030013002300330043005300630073008300930103011301230133014301530163017301830193020302130223023302430253026302730283029303030313032303330343035303630373038303930403041304230433044304530463047304830493050305130523053305430553056305730583059306030613062306330643065306630673068306930703071307230733074307530763077307830793080308130823083308430853086308730883089309030913092309330943095309630973098309931003101310231033104310531063107310831093110311131123113311431153116311731183119312031213122312331243125312631273128312931303131313231333134313531363137313831393140314131423143314431453146314731483149315031513152315331543155315631573158315931603161316231633164316531663167316831693170317131723173317431753176317731783179318031813182318331843185318631873188318931903191319231933194319531963197319831993200320132023203320432053206320732083209321032113212321332143215321632173218321932203221322232233224322532263227322832293230323132323233323432353236323732383239324032413242324332443245324632473248324932503251325232533254325532563257325832593260326132623263326432653266326732683269327032713272327332743275327632773278327932803281328232833284328532863287328832893290329132923293329432953296329732983299330033013302330333043305330633073308330933103311331233133314331533163317331833193320332133223323332433253326332733283329333033313332333333343335333633373338333933403341334233433344334533463347334833493350335133523353335433553356335733583359336033613362336333643365336633673368336933703371337233733374337533763377337833793380338133823383338433853386338733883389339033913392339333943395339633973398339934003401340234033404340534063407340834093410341134123413341434153416341734183419342034213422342334243425342634273428342934303431343234333434343534363437343834393440344134423443344434453446344734483449345034513452345334543455345634573458345934603461346234633464346534663467346834693470347134723473347434753476347734783479348034813482348334843485348634873488348934903491349234933494349534963497349834993500350135023503350435053506350735083509351035113512351335143515351635173518351935203521352235233524352535263527352835293530353135323533353435353536353735383539354035413542354335443545354635473548354935503551355235533554355535563557355835593560356135623563356435653566356735683569357035713572357335743575357635773578357935803581358235833584358535863587358835893590359135923593359435953596359735983599360036013602360336043605360636073608360936103611361236133614361536163617361836193620362136223623362436253626362736283629363036313632363336343635363636373638363936403641364236433644364536463647364836493650365136523653365436553656365736583659366036613662366336643665366636673668366936703671367236733674367536763677367836793680368136823683368436853686368736883689369036913692369336943695369636973698369937003701370237033704370537063707370837093710371137123713371437153716371737183719372037213722372337243725372637273728372937303731373237333734373537363737373837393740374137423743374437453746374737483749375037513752375337543755375637573758375937603761376237633764376537663767376837693770377137723773377437753776377737783779378037813782378337843785378637873788378937903791379237933794379537963797379837993800380138023803380438053806380738083809381038113812381338143815381638173818381938203821382238233824382538263827382838293830383138323833383438353836383738383839384038413842384338443845384638473848384938503851385238533854385538563857385838593860386138623863386438653866386738683869387038713872387338743875387638773878387938803881388238833884388538863887388838893890389138923893389438953896389738983899390039013902390339043905390639073908390939103911391239133914391539163917391839193920392139223923392439253926392739283929393039313932393339343935393639373938393939403941394239433944394539463947394839493950395139523953395439553956395739583959396039613962396339643965396639673968396939703971397239733974397539763977397839793980398139823983398439853986398739883989399039913992399339943995399639973998399940004001400240034004400540064007400840094010401140124013401440154016401740184019402040214022402340244025402640274028402940304031403240334034403540364037403840394040404140424043404440454046404740484049405040514052405340544055405640574058405940604061406240634064406540664067406840694070407140724073407440754076407740784079408040814082408340844085408640874088408940904091409240934094409540964097409840994100410141024103410441054106410741084109411041114112411341144115411641174118411941204121412241234124412541264127412841294130413141324133413441354136413741384139414041414142414341444145414641474148414941504151415241534154415541564157415841594160416141624163416441654166416741684169417041714172417341744175417641774178417941804181418241834184418541864187418841894190419141924193419441954196419741984199420042014202420342044205420642074208420942104211421242134214421542164217421842194220422142224223422442254226422742284229423042314232423342344235423642374238423942404241424242434244424542464247424842494250425142524253425442554256425742584259426042614262426342644265426642674268426942704271427242734274427542764277427842794280428142824283428442854286428742884289429042914292429342944295429642974298429943004301430243034304430543064307430843094310431143124313431443154316431743184319432043214322432343244325432643274328432943304331433243334334433543364337433843394340434143424343434443454346434743484349435043514352435343544355435643574358435943604361436243634364436543664367436843694370437143724373437443754376437743784379438043814382438343844385438643874388438943904391439243934394439543964397439843994400440144024403440444054406440744084409441044114412441344144415441644174418441944204421442244234424442544264427442844294430443144324433443444354436443744384439444044414442444344444445444644474448444944504451445244534454445544564457445844594460446144624463446444654466446744684469447044714472447344744475447644774478447944804481448244834484448544864487448844894490449144924493449444954496449744984499450045014502450345044505450645074508450945104511451245134514451545164517451845194520452145224523452445254526452745284529453045314532453345344535453645374538453945404541454245434544454545464547454845494550455145524553455445554556455745584559456045614562456345644565456645674568456945704571457245734574457545764577457845794580458145824583458445854586458745884589459045914592459345944595459645974598459946004601460246034604460546064607460846094610461146124613461446154616461746184619462046214622462346244625462646274628462946304631463246334634463546364637463846394640464146424643464446454646464746484649465046514652465346544655465646574658465946604661466246634664466546664667466846694670467146724673467446754676467746784679468046814682468346844685468646874688468946904691469246934694469546964697469846994700470147024703470447054706470747084709471047114712471347144715471647174718471947204721472247234724472547264727472847294730473147324733473447354736473747384739474047414742474347444745474647474748474947504751475247534754475547564757475847594760476147624763476447654766476747684769477047714772477347744775477647774778477947804781478247834784478547864787478847894790479147924793479447954796479747984799480048014802480348044805480648074808480948104811481248134814481548164817481848194820482148224823482448254826482748284829483048314832483348344835483648374838483948404841484248434844484548464847484848494850485148524853485448554856485748584859486048614862486348644865486648674868486948704871487248734874487548764877487848794880488148824883488448854886488748884889489048914892489348944895489648974898489949004901490249034904490549064907490849094910491149124913491449154916491749184919492049214922492349244925492649274928492949304931493249334934493549364937493849394940494149424943494449454946494749484949495049514952495349544955495649574958495949604961496249634964496549664967496849694970497149724973497449754976497749784979498049814982498349844985498649874988498949904991499249934994499549964997499849995000500150025003500450055006500750085009501050115012501350145015501650175018501950205021502250235024502550265027502850295030503150325033503450355036503750385039504050415042504350445045504650475048504950505051505250535054505550565057505850595060506150625063506450655066506750685069507050715072507350745075507650775078507950805081508250835084508550865087508850895090509150925093509450955096509750985099510051015102510351045105510651075108510951105111511251135114511551165117511851195120512151225123512451255126512751285129513051315132513351345135513651375138513951405141514251435144514551465147514851495150515151525153515451555156515751585159516051615162516351645165516651675168516951705171517251735174517551765177517851795180518151825183518451855186518751885189519051915192519351945195519651975198519952005201520252035204520552065207520852095210521152125213521452155216521752185219522052215222522352245225522652275228522952305231523252335234523552365237523852395240524152425243524452455246524752485249525052515252525352545255525652575258525952605261526252635264526552665267526852695270527152725273527452755276527752785279528052815282528352845285528652875288528952905291529252935294529552965297529852995300530153025303530453055306530753085309531053115312531353145315531653175318531953205321532253235324532553265327532853295330533153325333533453355336533753385339534053415342534353445345534653475348534953505351535253535354535553565357535853595360536153625363536453655366536753685369537053715372537353745375537653775378537953805381538253835384538553865387538853895390539153925393539453955396539753985399540054015402540354045405540654075408540954105411541254135414541554165417541854195420542154225423542454255426542754285429543054315432543354345435543654375438543954405441544254435444544554465447544854495450545154525453545454555456545754585459546054615462546354645465546654675468546954705471547254735474547554765477547854795480548154825483548454855486548754885489549054915492549354945495549654975498549955005501550255035504550555065507550855095510551155125513551455155516551755185519552055215522552355245525552655275528552955305531553255335534553555365537553855395540554155425543554455455546554755485549555055515552555355545555555655575558555955605561556255635564556555665567556855695570557155725573557455755576557755785579558055815582558355845585558655875588558955905591559255935594559555965597559855995600560156025603560456055606560756085609561056115612561356145615561656175618561956205621562256235624562556265627562856295630563156325633563456355636563756385639564056415642564356445645564656475648564956505651565256535654565556565657565856595660
  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 = "aes"
  19. version = "0.8.3"
  20. source = "registry+https://github.com/rust-lang/crates.io-index"
  21. checksum = "ac1f845298e95f983ff1944b728ae08b8cebab80d684f0a832ed0fc74dfa27e2"
  22. dependencies = [
  23. "cfg-if",
  24. "cipher",
  25. "cpufeatures",
  26. ]
  27. [[package]]
  28. name = "ahash"
  29. version = "0.7.6"
  30. source = "registry+https://github.com/rust-lang/crates.io-index"
  31. checksum = "fcb51a0695d8f838b1ee009b3fbf66bda078cd64590202a864a8f3e8c4315c47"
  32. dependencies = [
  33. "getrandom 0.2.9",
  34. "once_cell",
  35. "version_check",
  36. ]
  37. [[package]]
  38. name = "ahash"
  39. version = "0.8.3"
  40. source = "registry+https://github.com/rust-lang/crates.io-index"
  41. checksum = "2c99f64d1e06488f620f932677e24bc6e2897582980441ae90a671415bd7ec2f"
  42. dependencies = [
  43. "cfg-if",
  44. "once_cell",
  45. "version_check",
  46. ]
  47. [[package]]
  48. name = "aho-corasick"
  49. version = "0.7.20"
  50. source = "registry+https://github.com/rust-lang/crates.io-index"
  51. checksum = "cc936419f96fa211c1b9166887b38e5e40b19958e5b895be7c1f93adec7071ac"
  52. dependencies = [
  53. "memchr",
  54. ]
  55. [[package]]
  56. name = "allo-isolate"
  57. version = "0.1.14"
  58. source = "registry+https://github.com/rust-lang/crates.io-index"
  59. checksum = "8ed55848be9f41d44c79df6045b680a74a78bc579e0813f7f196cd7928e22fb1"
  60. dependencies = [
  61. "atomic",
  62. "pin-project",
  63. ]
  64. [[package]]
  65. name = "android_system_properties"
  66. version = "0.1.5"
  67. source = "registry+https://github.com/rust-lang/crates.io-index"
  68. checksum = "819e7219dbd41043ac279b19830f2efc897156490d7fd6ea916720117ee66311"
  69. dependencies = [
  70. "libc",
  71. ]
  72. [[package]]
  73. name = "ansi_term"
  74. version = "0.12.1"
  75. source = "registry+https://github.com/rust-lang/crates.io-index"
  76. checksum = "d52a9bb7ec0cf484c551830a7ce27bd20d67eac647e1befb56b0be4ee39a55d2"
  77. dependencies = [
  78. "winapi",
  79. ]
  80. [[package]]
  81. name = "anyhow"
  82. version = "1.0.71"
  83. source = "registry+https://github.com/rust-lang/crates.io-index"
  84. checksum = "9c7d0618f0e0b7e8ff11427422b64564d5fb0be1940354bfe2e0529b18a9d9b8"
  85. [[package]]
  86. name = "appflowy-integrate"
  87. version = "0.1.0"
  88. source = "git+https://github.com/AppFlowy-IO/AppFlowy-Collab?rev=aac4e56#aac4e56bdb6a61598697283582d369a7af85d9c8"
  89. dependencies = [
  90. "anyhow",
  91. "collab",
  92. "collab-database",
  93. "collab-document",
  94. "collab-folder",
  95. "collab-persistence",
  96. "collab-plugins",
  97. "parking_lot 0.12.1",
  98. "serde",
  99. "serde_json",
  100. "tracing",
  101. ]
  102. [[package]]
  103. name = "arrayvec"
  104. version = "0.5.2"
  105. source = "registry+https://github.com/rust-lang/crates.io-index"
  106. checksum = "23b62fc65de8e4e7f52534fb52b0f3ed04746ae267519eef2a83941e8085068b"
  107. [[package]]
  108. name = "arrayvec"
  109. version = "0.7.2"
  110. source = "registry+https://github.com/rust-lang/crates.io-index"
  111. checksum = "8da52d66c7071e2e3fa2a1e5c6d088fec47b593032b254f5e980de8ea54454d6"
  112. [[package]]
  113. name = "assert-json-diff"
  114. version = "2.0.2"
  115. source = "registry+https://github.com/rust-lang/crates.io-index"
  116. checksum = "47e4f2b81832e72834d7518d8487a0396a28cc408186a2e8854c0f98011faf12"
  117. dependencies = [
  118. "serde",
  119. "serde_json",
  120. ]
  121. [[package]]
  122. name = "async-stream"
  123. version = "0.3.5"
  124. source = "registry+https://github.com/rust-lang/crates.io-index"
  125. checksum = "cd56dd203fef61ac097dd65721a419ddccb106b2d2b70ba60a6b529f03961a51"
  126. dependencies = [
  127. "async-stream-impl",
  128. "futures-core",
  129. "pin-project-lite",
  130. ]
  131. [[package]]
  132. name = "async-stream-impl"
  133. version = "0.3.5"
  134. source = "registry+https://github.com/rust-lang/crates.io-index"
  135. checksum = "16e62a023e7c117e27523144c5d2459f4397fcc3cab0085af8e2224f643a0193"
  136. dependencies = [
  137. "proc-macro2",
  138. "quote",
  139. "syn 2.0.27",
  140. ]
  141. [[package]]
  142. name = "async-trait"
  143. version = "0.1.68"
  144. source = "registry+https://github.com/rust-lang/crates.io-index"
  145. checksum = "b9ccdd8f2a161be9bd5c023df56f1b2a0bd1d83872ae53b71a84a12c9bf6e842"
  146. dependencies = [
  147. "proc-macro2",
  148. "quote",
  149. "syn 2.0.27",
  150. ]
  151. [[package]]
  152. name = "atomic"
  153. version = "0.5.1"
  154. source = "registry+https://github.com/rust-lang/crates.io-index"
  155. checksum = "b88d82667eca772c4aa12f0f1348b3ae643424c8876448f3f7bd5787032e234c"
  156. dependencies = [
  157. "autocfg",
  158. ]
  159. [[package]]
  160. name = "atomic_refcell"
  161. version = "0.1.9"
  162. source = "registry+https://github.com/rust-lang/crates.io-index"
  163. checksum = "857253367827bd9d0fd973f0ef15506a96e79e41b0ad7aa691203a4e3214f6c8"
  164. [[package]]
  165. name = "autocfg"
  166. version = "1.1.0"
  167. source = "registry+https://github.com/rust-lang/crates.io-index"
  168. checksum = "d468802bab17cbc0cc575e9b053f41e72aa36bfa6b7f55e3529ffa43161b97fa"
  169. [[package]]
  170. name = "aws-config"
  171. version = "0.55.3"
  172. source = "registry+https://github.com/rust-lang/crates.io-index"
  173. checksum = "bcdcf0d683fe9c23d32cf5b53c9918ea0a500375a9fb20109802552658e576c9"
  174. dependencies = [
  175. "aws-credential-types",
  176. "aws-http",
  177. "aws-sdk-sso",
  178. "aws-sdk-sts",
  179. "aws-smithy-async",
  180. "aws-smithy-client",
  181. "aws-smithy-http",
  182. "aws-smithy-http-tower",
  183. "aws-smithy-json",
  184. "aws-smithy-types",
  185. "aws-types",
  186. "bytes",
  187. "fastrand",
  188. "hex",
  189. "http",
  190. "hyper",
  191. "ring",
  192. "time 0.3.21",
  193. "tokio",
  194. "tower",
  195. "tracing",
  196. "zeroize",
  197. ]
  198. [[package]]
  199. name = "aws-credential-types"
  200. version = "0.55.3"
  201. source = "registry+https://github.com/rust-lang/crates.io-index"
  202. checksum = "1fcdb2f7acbc076ff5ad05e7864bdb191ca70a6fd07668dc3a1a8bcd051de5ae"
  203. dependencies = [
  204. "aws-smithy-async",
  205. "aws-smithy-types",
  206. "fastrand",
  207. "tokio",
  208. "tracing",
  209. "zeroize",
  210. ]
  211. [[package]]
  212. name = "aws-endpoint"
  213. version = "0.55.3"
  214. source = "registry+https://github.com/rust-lang/crates.io-index"
  215. checksum = "8cce1c41a6cfaa726adee9ebb9a56fcd2bbfd8be49fd8a04c5e20fd968330b04"
  216. dependencies = [
  217. "aws-smithy-http",
  218. "aws-smithy-types",
  219. "aws-types",
  220. "http",
  221. "regex",
  222. "tracing",
  223. ]
  224. [[package]]
  225. name = "aws-http"
  226. version = "0.55.3"
  227. source = "registry+https://github.com/rust-lang/crates.io-index"
  228. checksum = "aadbc44e7a8f3e71c8b374e03ecd972869eb91dd2bc89ed018954a52ba84bc44"
  229. dependencies = [
  230. "aws-credential-types",
  231. "aws-smithy-http",
  232. "aws-smithy-types",
  233. "aws-types",
  234. "bytes",
  235. "http",
  236. "http-body",
  237. "lazy_static",
  238. "percent-encoding",
  239. "pin-project-lite",
  240. "tracing",
  241. ]
  242. [[package]]
  243. name = "aws-sdk-dynamodb"
  244. version = "0.27.0"
  245. source = "registry+https://github.com/rust-lang/crates.io-index"
  246. checksum = "67fb64867fe098cffee7e34352b01bbfa2beb3aa1b2ff0e0a7bf9ff293557852"
  247. dependencies = [
  248. "aws-credential-types",
  249. "aws-endpoint",
  250. "aws-http",
  251. "aws-sig-auth",
  252. "aws-smithy-async",
  253. "aws-smithy-client",
  254. "aws-smithy-http",
  255. "aws-smithy-http-tower",
  256. "aws-smithy-json",
  257. "aws-smithy-types",
  258. "aws-types",
  259. "bytes",
  260. "fastrand",
  261. "http",
  262. "regex",
  263. "tokio-stream",
  264. "tower",
  265. "tracing",
  266. ]
  267. [[package]]
  268. name = "aws-sdk-sso"
  269. version = "0.28.0"
  270. source = "registry+https://github.com/rust-lang/crates.io-index"
  271. checksum = "c8b812340d86d4a766b2ca73f740dfd47a97c2dff0c06c8517a16d88241957e4"
  272. dependencies = [
  273. "aws-credential-types",
  274. "aws-endpoint",
  275. "aws-http",
  276. "aws-sig-auth",
  277. "aws-smithy-async",
  278. "aws-smithy-client",
  279. "aws-smithy-http",
  280. "aws-smithy-http-tower",
  281. "aws-smithy-json",
  282. "aws-smithy-types",
  283. "aws-types",
  284. "bytes",
  285. "http",
  286. "regex",
  287. "tokio-stream",
  288. "tower",
  289. "tracing",
  290. ]
  291. [[package]]
  292. name = "aws-sdk-sts"
  293. version = "0.28.0"
  294. source = "registry+https://github.com/rust-lang/crates.io-index"
  295. checksum = "265fac131fbfc188e5c3d96652ea90ecc676a934e3174eaaee523c6cec040b3b"
  296. dependencies = [
  297. "aws-credential-types",
  298. "aws-endpoint",
  299. "aws-http",
  300. "aws-sig-auth",
  301. "aws-smithy-async",
  302. "aws-smithy-client",
  303. "aws-smithy-http",
  304. "aws-smithy-http-tower",
  305. "aws-smithy-json",
  306. "aws-smithy-query",
  307. "aws-smithy-types",
  308. "aws-smithy-xml",
  309. "aws-types",
  310. "bytes",
  311. "http",
  312. "regex",
  313. "tower",
  314. "tracing",
  315. ]
  316. [[package]]
  317. name = "aws-sig-auth"
  318. version = "0.55.3"
  319. source = "registry+https://github.com/rust-lang/crates.io-index"
  320. checksum = "3b94acb10af0c879ecd5c7bdf51cda6679a0a4f4643ce630905a77673bfa3c61"
  321. dependencies = [
  322. "aws-credential-types",
  323. "aws-sigv4",
  324. "aws-smithy-http",
  325. "aws-types",
  326. "http",
  327. "tracing",
  328. ]
  329. [[package]]
  330. name = "aws-sigv4"
  331. version = "0.55.3"
  332. source = "registry+https://github.com/rust-lang/crates.io-index"
  333. checksum = "9d2ce6f507be68e968a33485ced670111d1cbad161ddbbab1e313c03d37d8f4c"
  334. dependencies = [
  335. "aws-smithy-http",
  336. "form_urlencoded",
  337. "hex",
  338. "hmac",
  339. "http",
  340. "once_cell",
  341. "percent-encoding",
  342. "regex",
  343. "sha2",
  344. "time 0.3.21",
  345. "tracing",
  346. ]
  347. [[package]]
  348. name = "aws-smithy-async"
  349. version = "0.55.3"
  350. source = "registry+https://github.com/rust-lang/crates.io-index"
  351. checksum = "13bda3996044c202d75b91afeb11a9afae9db9a721c6a7a427410018e286b880"
  352. dependencies = [
  353. "futures-util",
  354. "pin-project-lite",
  355. "tokio",
  356. "tokio-stream",
  357. ]
  358. [[package]]
  359. name = "aws-smithy-client"
  360. version = "0.55.3"
  361. source = "registry+https://github.com/rust-lang/crates.io-index"
  362. checksum = "0a86aa6e21e86c4252ad6a0e3e74da9617295d8d6e374d552be7d3059c41cedd"
  363. dependencies = [
  364. "aws-smithy-async",
  365. "aws-smithy-http",
  366. "aws-smithy-http-tower",
  367. "aws-smithy-types",
  368. "bytes",
  369. "fastrand",
  370. "http",
  371. "http-body",
  372. "hyper",
  373. "hyper-rustls",
  374. "lazy_static",
  375. "pin-project-lite",
  376. "rustls",
  377. "tokio",
  378. "tower",
  379. "tracing",
  380. ]
  381. [[package]]
  382. name = "aws-smithy-http"
  383. version = "0.55.3"
  384. source = "registry+https://github.com/rust-lang/crates.io-index"
  385. checksum = "2b3b693869133551f135e1f2c77cb0b8277d9e3e17feaf2213f735857c4f0d28"
  386. dependencies = [
  387. "aws-smithy-types",
  388. "bytes",
  389. "bytes-utils",
  390. "futures-core",
  391. "http",
  392. "http-body",
  393. "hyper",
  394. "once_cell",
  395. "percent-encoding",
  396. "pin-project-lite",
  397. "pin-utils",
  398. "tokio",
  399. "tokio-util",
  400. "tracing",
  401. ]
  402. [[package]]
  403. name = "aws-smithy-http-tower"
  404. version = "0.55.3"
  405. source = "registry+https://github.com/rust-lang/crates.io-index"
  406. checksum = "3ae4f6c5798a247fac98a867698197d9ac22643596dc3777f0c76b91917616b9"
  407. dependencies = [
  408. "aws-smithy-http",
  409. "aws-smithy-types",
  410. "bytes",
  411. "http",
  412. "http-body",
  413. "pin-project-lite",
  414. "tower",
  415. "tracing",
  416. ]
  417. [[package]]
  418. name = "aws-smithy-json"
  419. version = "0.55.3"
  420. source = "registry+https://github.com/rust-lang/crates.io-index"
  421. checksum = "23f9f42fbfa96d095194a632fbac19f60077748eba536eb0b9fecc28659807f8"
  422. dependencies = [
  423. "aws-smithy-types",
  424. ]
  425. [[package]]
  426. name = "aws-smithy-query"
  427. version = "0.55.3"
  428. source = "registry+https://github.com/rust-lang/crates.io-index"
  429. checksum = "98819eb0b04020a1c791903533b638534ae6c12e2aceda3e6e6fba015608d51d"
  430. dependencies = [
  431. "aws-smithy-types",
  432. "urlencoding",
  433. ]
  434. [[package]]
  435. name = "aws-smithy-types"
  436. version = "0.55.3"
  437. source = "registry+https://github.com/rust-lang/crates.io-index"
  438. checksum = "16a3d0bf4f324f4ef9793b86a1701d9700fbcdbd12a846da45eed104c634c6e8"
  439. dependencies = [
  440. "base64-simd",
  441. "itoa",
  442. "num-integer",
  443. "ryu",
  444. "time 0.3.21",
  445. ]
  446. [[package]]
  447. name = "aws-smithy-xml"
  448. version = "0.55.3"
  449. source = "registry+https://github.com/rust-lang/crates.io-index"
  450. checksum = "b1b9d12875731bd07e767be7baad95700c3137b56730ec9ddeedb52a5e5ca63b"
  451. dependencies = [
  452. "xmlparser",
  453. ]
  454. [[package]]
  455. name = "aws-types"
  456. version = "0.55.3"
  457. source = "registry+https://github.com/rust-lang/crates.io-index"
  458. checksum = "6dd209616cc8d7bfb82f87811a5c655dc97537f592689b18743bddf5dc5c4829"
  459. dependencies = [
  460. "aws-credential-types",
  461. "aws-smithy-async",
  462. "aws-smithy-client",
  463. "aws-smithy-http",
  464. "aws-smithy-types",
  465. "http",
  466. "rustc_version",
  467. "tracing",
  468. ]
  469. [[package]]
  470. name = "axum"
  471. version = "0.6.15"
  472. source = "registry+https://github.com/rust-lang/crates.io-index"
  473. checksum = "3b32c5ea3aabaf4deb5f5ced2d688ec0844c881c9e6c696a8b769a05fc691e62"
  474. dependencies = [
  475. "async-trait",
  476. "axum-core",
  477. "bitflags",
  478. "bytes",
  479. "futures-util",
  480. "http",
  481. "http-body",
  482. "hyper",
  483. "itoa",
  484. "matchit",
  485. "memchr",
  486. "mime",
  487. "percent-encoding",
  488. "pin-project-lite",
  489. "rustversion",
  490. "serde",
  491. "sync_wrapper",
  492. "tower",
  493. "tower-layer",
  494. "tower-service",
  495. ]
  496. [[package]]
  497. name = "axum-core"
  498. version = "0.3.4"
  499. source = "registry+https://github.com/rust-lang/crates.io-index"
  500. checksum = "759fa577a247914fd3f7f76d62972792636412fbfd634cd452f6a385a74d2d2c"
  501. dependencies = [
  502. "async-trait",
  503. "bytes",
  504. "futures-util",
  505. "http",
  506. "http-body",
  507. "mime",
  508. "rustversion",
  509. "tower-layer",
  510. "tower-service",
  511. ]
  512. [[package]]
  513. name = "backtrace"
  514. version = "0.3.67"
  515. source = "registry+https://github.com/rust-lang/crates.io-index"
  516. checksum = "233d376d6d185f2a3093e58f283f60f880315b6c60075b01f36b3b85154564ca"
  517. dependencies = [
  518. "addr2line",
  519. "cc",
  520. "cfg-if",
  521. "libc",
  522. "miniz_oxide",
  523. "object",
  524. "rustc-demangle",
  525. ]
  526. [[package]]
  527. name = "base64"
  528. version = "0.13.1"
  529. source = "registry+https://github.com/rust-lang/crates.io-index"
  530. checksum = "9e1b586273c5702936fe7b7d6896644d8be71e6314cfe09d3167c95f712589e8"
  531. [[package]]
  532. name = "base64"
  533. version = "0.21.0"
  534. source = "registry+https://github.com/rust-lang/crates.io-index"
  535. checksum = "a4a4ddaa51a5bc52a6948f74c06d20aaaddb71924eab79b8c97a8c556e942d6a"
  536. [[package]]
  537. name = "base64-simd"
  538. version = "0.8.0"
  539. source = "registry+https://github.com/rust-lang/crates.io-index"
  540. checksum = "339abbe78e73178762e23bea9dfd08e697eb3f3301cd4be981c0f78ba5859195"
  541. dependencies = [
  542. "outref",
  543. "vsimd",
  544. ]
  545. [[package]]
  546. name = "base64ct"
  547. version = "1.6.0"
  548. source = "registry+https://github.com/rust-lang/crates.io-index"
  549. checksum = "8c3c1a368f70d6cf7302d78f8f7093da241fb8e8807c05cc9e51a125895a6d5b"
  550. [[package]]
  551. name = "bincode"
  552. version = "1.3.3"
  553. source = "registry+https://github.com/rust-lang/crates.io-index"
  554. checksum = "b1f45e9417d87227c7a56d22e471c6206462cba514c7590c09aff4cf6d1ddcad"
  555. dependencies = [
  556. "serde",
  557. ]
  558. [[package]]
  559. name = "bindgen"
  560. version = "0.65.1"
  561. source = "registry+https://github.com/rust-lang/crates.io-index"
  562. checksum = "cfdf7b466f9a4903edc73f95d6d2bcd5baf8ae620638762244d3f60143643cc5"
  563. dependencies = [
  564. "bitflags",
  565. "cexpr",
  566. "clang-sys",
  567. "lazy_static",
  568. "lazycell",
  569. "peeking_take_while",
  570. "prettyplease",
  571. "proc-macro2",
  572. "quote",
  573. "regex",
  574. "rustc-hash",
  575. "shlex",
  576. "syn 2.0.27",
  577. ]
  578. [[package]]
  579. name = "bit-set"
  580. version = "0.5.3"
  581. source = "registry+https://github.com/rust-lang/crates.io-index"
  582. checksum = "0700ddab506f33b20a03b13996eccd309a48e5ff77d0d95926aa0210fb4e95f1"
  583. dependencies = [
  584. "bit-vec",
  585. ]
  586. [[package]]
  587. name = "bit-vec"
  588. version = "0.6.3"
  589. source = "registry+https://github.com/rust-lang/crates.io-index"
  590. checksum = "349f9b6a179ed607305526ca489b34ad0a41aed5f7980fa90eb03160b69598fb"
  591. [[package]]
  592. name = "bitflags"
  593. version = "1.3.2"
  594. source = "registry+https://github.com/rust-lang/crates.io-index"
  595. checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a"
  596. [[package]]
  597. name = "block-buffer"
  598. version = "0.10.4"
  599. source = "registry+https://github.com/rust-lang/crates.io-index"
  600. checksum = "3078c7629b62d3f0439517fa394996acacc5cbc91c5a20d8c658e77abd503a71"
  601. dependencies = [
  602. "generic-array",
  603. ]
  604. [[package]]
  605. name = "borsh"
  606. version = "0.10.3"
  607. source = "registry+https://github.com/rust-lang/crates.io-index"
  608. checksum = "4114279215a005bc675e386011e594e1d9b800918cea18fcadadcce864a2046b"
  609. dependencies = [
  610. "borsh-derive",
  611. "hashbrown 0.13.2",
  612. ]
  613. [[package]]
  614. name = "borsh-derive"
  615. version = "0.10.3"
  616. source = "registry+https://github.com/rust-lang/crates.io-index"
  617. checksum = "0754613691538d51f329cce9af41d7b7ca150bc973056f1156611489475f54f7"
  618. dependencies = [
  619. "borsh-derive-internal",
  620. "borsh-schema-derive-internal",
  621. "proc-macro-crate",
  622. "proc-macro2",
  623. "syn 1.0.109",
  624. ]
  625. [[package]]
  626. name = "borsh-derive-internal"
  627. version = "0.10.3"
  628. source = "registry+https://github.com/rust-lang/crates.io-index"
  629. checksum = "afb438156919598d2c7bad7e1c0adf3d26ed3840dbc010db1a882a65583ca2fb"
  630. dependencies = [
  631. "proc-macro2",
  632. "quote",
  633. "syn 1.0.109",
  634. ]
  635. [[package]]
  636. name = "borsh-schema-derive-internal"
  637. version = "0.10.3"
  638. source = "registry+https://github.com/rust-lang/crates.io-index"
  639. checksum = "634205cc43f74a1b9046ef87c4540ebda95696ec0f315024860cad7c5b0f5ccd"
  640. dependencies = [
  641. "proc-macro2",
  642. "quote",
  643. "syn 1.0.109",
  644. ]
  645. [[package]]
  646. name = "bstr"
  647. version = "1.4.0"
  648. source = "registry+https://github.com/rust-lang/crates.io-index"
  649. checksum = "c3d4260bcc2e8fc9df1eac4919a720effeb63a3f0952f5bf4944adfa18897f09"
  650. dependencies = [
  651. "memchr",
  652. "serde",
  653. ]
  654. [[package]]
  655. name = "bumpalo"
  656. version = "3.12.0"
  657. source = "registry+https://github.com/rust-lang/crates.io-index"
  658. checksum = "0d261e256854913907f67ed06efbc3338dfe6179796deefc1ff763fc1aee5535"
  659. [[package]]
  660. name = "bytecheck"
  661. version = "0.6.10"
  662. source = "registry+https://github.com/rust-lang/crates.io-index"
  663. checksum = "13fe11640a23eb24562225322cd3e452b93a3d4091d62fab69c70542fcd17d1f"
  664. dependencies = [
  665. "bytecheck_derive",
  666. "ptr_meta",
  667. "simdutf8",
  668. ]
  669. [[package]]
  670. name = "bytecheck_derive"
  671. version = "0.6.10"
  672. source = "registry+https://github.com/rust-lang/crates.io-index"
  673. checksum = "e31225543cb46f81a7e224762764f4a6a0f097b1db0b175f69e8065efaa42de5"
  674. dependencies = [
  675. "proc-macro2",
  676. "quote",
  677. "syn 1.0.109",
  678. ]
  679. [[package]]
  680. name = "byteorder"
  681. version = "1.4.3"
  682. source = "registry+https://github.com/rust-lang/crates.io-index"
  683. checksum = "14c189c53d098945499cdfa7ecc63567cf3886b3332b312a5b4585d8d3a6a610"
  684. [[package]]
  685. name = "bytes"
  686. version = "1.4.0"
  687. source = "registry+https://github.com/rust-lang/crates.io-index"
  688. checksum = "89b2fd2a0dcf38d7971e2194b6b6eebab45ae01067456a7fd93d5547a61b70be"
  689. dependencies = [
  690. "serde",
  691. ]
  692. [[package]]
  693. name = "bytes-utils"
  694. version = "0.1.3"
  695. source = "registry+https://github.com/rust-lang/crates.io-index"
  696. checksum = "e47d3a8076e283f3acd27400535992edb3ba4b5bb72f8891ad8fbe7932a7d4b9"
  697. dependencies = [
  698. "bytes",
  699. "either",
  700. ]
  701. [[package]]
  702. name = "bzip2"
  703. version = "0.4.4"
  704. source = "registry+https://github.com/rust-lang/crates.io-index"
  705. checksum = "bdb116a6ef3f6c3698828873ad02c3014b3c85cadb88496095628e3ef1e347f8"
  706. dependencies = [
  707. "bzip2-sys",
  708. "libc",
  709. ]
  710. [[package]]
  711. name = "bzip2-sys"
  712. version = "0.1.11+1.0.8"
  713. source = "registry+https://github.com/rust-lang/crates.io-index"
  714. checksum = "736a955f3fa7875102d57c82b8cac37ec45224a07fd32d58f9f7a186b6cd4cdc"
  715. dependencies = [
  716. "cc",
  717. "libc",
  718. "pkg-config",
  719. ]
  720. [[package]]
  721. name = "cc"
  722. version = "1.0.79"
  723. source = "registry+https://github.com/rust-lang/crates.io-index"
  724. checksum = "50d30906286121d95be3d479533b458f87493b30a4b5f79a607db8f5d11aa91f"
  725. dependencies = [
  726. "jobserver",
  727. ]
  728. [[package]]
  729. name = "cexpr"
  730. version = "0.6.0"
  731. source = "registry+https://github.com/rust-lang/crates.io-index"
  732. checksum = "6fac387a98bb7c37292057cffc56d62ecb629900026402633ae9160df93a8766"
  733. dependencies = [
  734. "nom 7.1.3",
  735. ]
  736. [[package]]
  737. name = "cfg-if"
  738. version = "1.0.0"
  739. source = "registry+https://github.com/rust-lang/crates.io-index"
  740. checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd"
  741. [[package]]
  742. name = "chrono"
  743. version = "0.4.24"
  744. source = "registry+https://github.com/rust-lang/crates.io-index"
  745. checksum = "4e3c5919066adf22df73762e50cffcde3a758f2a848b113b586d1f86728b673b"
  746. dependencies = [
  747. "iana-time-zone",
  748. "js-sys",
  749. "num-integer",
  750. "num-traits",
  751. "serde",
  752. "time 0.1.45",
  753. "wasm-bindgen",
  754. "winapi",
  755. ]
  756. [[package]]
  757. name = "chrono-tz"
  758. version = "0.6.1"
  759. source = "registry+https://github.com/rust-lang/crates.io-index"
  760. checksum = "58549f1842da3080ce63002102d5bc954c7bc843d4f47818e642abdc36253552"
  761. dependencies = [
  762. "chrono",
  763. "chrono-tz-build 0.0.2",
  764. "phf 0.10.1",
  765. ]
  766. [[package]]
  767. name = "chrono-tz"
  768. version = "0.8.2"
  769. source = "registry+https://github.com/rust-lang/crates.io-index"
  770. checksum = "cf9cc2b23599e6d7479755f3594285efb3f74a1bdca7a7374948bc831e23a552"
  771. dependencies = [
  772. "chrono",
  773. "chrono-tz-build 0.1.0",
  774. "phf 0.11.1",
  775. ]
  776. [[package]]
  777. name = "chrono-tz-build"
  778. version = "0.0.2"
  779. source = "registry+https://github.com/rust-lang/crates.io-index"
  780. checksum = "db058d493fb2f65f41861bfed7e3fe6335264a9f0f92710cab5bdf01fef09069"
  781. dependencies = [
  782. "parse-zoneinfo",
  783. "phf 0.10.1",
  784. "phf_codegen 0.10.0",
  785. ]
  786. [[package]]
  787. name = "chrono-tz-build"
  788. version = "0.1.0"
  789. source = "registry+https://github.com/rust-lang/crates.io-index"
  790. checksum = "d9998fb9f7e9b2111641485bf8beb32f92945f97f92a3d061f744cfef335f751"
  791. dependencies = [
  792. "parse-zoneinfo",
  793. "phf 0.11.1",
  794. "phf_codegen 0.11.1",
  795. ]
  796. [[package]]
  797. name = "cipher"
  798. version = "0.4.4"
  799. source = "registry+https://github.com/rust-lang/crates.io-index"
  800. checksum = "773f3b9af64447d2ce9850330c473515014aa235e6a783b02db81ff39e4a3dad"
  801. dependencies = [
  802. "crypto-common",
  803. "inout",
  804. ]
  805. [[package]]
  806. name = "clang-sys"
  807. version = "1.6.1"
  808. source = "registry+https://github.com/rust-lang/crates.io-index"
  809. checksum = "c688fc74432808e3eb684cae8830a86be1d66a2bd58e1f248ed0960a590baf6f"
  810. dependencies = [
  811. "glob",
  812. "libc",
  813. "libloading",
  814. ]
  815. [[package]]
  816. name = "cmd_lib"
  817. version = "1.3.0"
  818. source = "registry+https://github.com/rust-lang/crates.io-index"
  819. checksum = "0ba0f413777386d37f85afa5242f277a7b461905254c1af3c339d4af06800f62"
  820. dependencies = [
  821. "cmd_lib_macros",
  822. "faccess",
  823. "lazy_static",
  824. "log",
  825. "os_pipe",
  826. ]
  827. [[package]]
  828. name = "cmd_lib_macros"
  829. version = "1.3.0"
  830. source = "registry+https://github.com/rust-lang/crates.io-index"
  831. checksum = "9e66605092ff6c6e37e0246601ae6c3f62dc1880e0599359b5f303497c112dc0"
  832. dependencies = [
  833. "proc-macro-error",
  834. "proc-macro2",
  835. "quote",
  836. "syn 1.0.109",
  837. ]
  838. [[package]]
  839. name = "codespan-reporting"
  840. version = "0.11.1"
  841. source = "registry+https://github.com/rust-lang/crates.io-index"
  842. checksum = "3538270d33cc669650c4b093848450d380def10c331d38c768e34cac80576e6e"
  843. dependencies = [
  844. "termcolor",
  845. "unicode-width",
  846. ]
  847. [[package]]
  848. name = "collab"
  849. version = "0.1.0"
  850. source = "git+https://github.com/AppFlowy-IO/AppFlowy-Collab?rev=aac4e56#aac4e56bdb6a61598697283582d369a7af85d9c8"
  851. dependencies = [
  852. "anyhow",
  853. "bytes",
  854. "lib0",
  855. "parking_lot 0.12.1",
  856. "serde",
  857. "serde_json",
  858. "thiserror",
  859. "tokio",
  860. "tracing",
  861. "y-sync",
  862. "yrs",
  863. ]
  864. [[package]]
  865. name = "collab-client-ws"
  866. version = "0.1.0"
  867. source = "git+https://github.com/AppFlowy-IO/AppFlowy-Collab?rev=aac4e56#aac4e56bdb6a61598697283582d369a7af85d9c8"
  868. dependencies = [
  869. "bytes",
  870. "collab-sync",
  871. "futures-util",
  872. "serde",
  873. "serde_json",
  874. "thiserror",
  875. "tokio",
  876. "tokio-retry",
  877. "tokio-stream",
  878. "tokio-tungstenite",
  879. "tracing",
  880. ]
  881. [[package]]
  882. name = "collab-database"
  883. version = "0.1.0"
  884. source = "git+https://github.com/AppFlowy-IO/AppFlowy-Collab?rev=aac4e56#aac4e56bdb6a61598697283582d369a7af85d9c8"
  885. dependencies = [
  886. "anyhow",
  887. "async-trait",
  888. "base64 0.21.0",
  889. "chrono",
  890. "collab",
  891. "collab-derive",
  892. "collab-persistence",
  893. "collab-plugins",
  894. "lazy_static",
  895. "lru",
  896. "nanoid",
  897. "parking_lot 0.12.1",
  898. "serde",
  899. "serde_json",
  900. "serde_repr",
  901. "thiserror",
  902. "tokio",
  903. "tokio-stream",
  904. "tracing",
  905. "uuid",
  906. ]
  907. [[package]]
  908. name = "collab-derive"
  909. version = "0.1.0"
  910. source = "git+https://github.com/AppFlowy-IO/AppFlowy-Collab?rev=aac4e56#aac4e56bdb6a61598697283582d369a7af85d9c8"
  911. dependencies = [
  912. "proc-macro2",
  913. "quote",
  914. "serde_json",
  915. "syn 1.0.109",
  916. "yrs",
  917. ]
  918. [[package]]
  919. name = "collab-document"
  920. version = "0.1.0"
  921. source = "git+https://github.com/AppFlowy-IO/AppFlowy-Collab?rev=aac4e56#aac4e56bdb6a61598697283582d369a7af85d9c8"
  922. dependencies = [
  923. "anyhow",
  924. "collab",
  925. "collab-derive",
  926. "collab-persistence",
  927. "nanoid",
  928. "parking_lot 0.12.1",
  929. "serde",
  930. "serde_json",
  931. "thiserror",
  932. "tokio",
  933. "tokio-stream",
  934. "tracing",
  935. ]
  936. [[package]]
  937. name = "collab-folder"
  938. version = "0.1.0"
  939. source = "git+https://github.com/AppFlowy-IO/AppFlowy-Collab?rev=aac4e56#aac4e56bdb6a61598697283582d369a7af85d9c8"
  940. dependencies = [
  941. "anyhow",
  942. "chrono",
  943. "collab",
  944. "collab-derive",
  945. "collab-persistence",
  946. "parking_lot 0.12.1",
  947. "serde",
  948. "serde_json",
  949. "serde_repr",
  950. "thiserror",
  951. "tokio",
  952. "tokio-stream",
  953. "tracing",
  954. ]
  955. [[package]]
  956. name = "collab-persistence"
  957. version = "0.1.0"
  958. source = "git+https://github.com/AppFlowy-IO/AppFlowy-Collab?rev=aac4e56#aac4e56bdb6a61598697283582d369a7af85d9c8"
  959. dependencies = [
  960. "bincode",
  961. "chrono",
  962. "lazy_static",
  963. "lib0",
  964. "parking_lot 0.12.1",
  965. "rocksdb",
  966. "serde",
  967. "sled",
  968. "smallvec",
  969. "thiserror",
  970. "tokio",
  971. "tracing",
  972. "yrs",
  973. ]
  974. [[package]]
  975. name = "collab-plugins"
  976. version = "0.1.0"
  977. source = "git+https://github.com/AppFlowy-IO/AppFlowy-Collab?rev=aac4e56#aac4e56bdb6a61598697283582d369a7af85d9c8"
  978. dependencies = [
  979. "anyhow",
  980. "async-trait",
  981. "aws-config",
  982. "aws-credential-types",
  983. "aws-sdk-dynamodb",
  984. "collab",
  985. "collab-client-ws",
  986. "collab-persistence",
  987. "collab-sync",
  988. "futures-util",
  989. "parking_lot 0.12.1",
  990. "rand 0.8.5",
  991. "rusoto_credential",
  992. "serde",
  993. "serde_json",
  994. "similar 2.2.1",
  995. "thiserror",
  996. "tokio",
  997. "tokio-retry",
  998. "tokio-stream",
  999. "tracing",
  1000. "y-sync",
  1001. "yrs",
  1002. ]
  1003. [[package]]
  1004. name = "collab-sync"
  1005. version = "0.1.0"
  1006. source = "git+https://github.com/AppFlowy-IO/AppFlowy-Collab?rev=aac4e56#aac4e56bdb6a61598697283582d369a7af85d9c8"
  1007. dependencies = [
  1008. "bytes",
  1009. "collab",
  1010. "futures-util",
  1011. "lib0",
  1012. "md5",
  1013. "parking_lot 0.12.1",
  1014. "serde",
  1015. "serde_json",
  1016. "thiserror",
  1017. "tokio",
  1018. "tokio-stream",
  1019. "tokio-util",
  1020. "tracing",
  1021. "y-sync",
  1022. "yrs",
  1023. ]
  1024. [[package]]
  1025. name = "config"
  1026. version = "0.10.1"
  1027. source = "registry+https://github.com/rust-lang/crates.io-index"
  1028. checksum = "19b076e143e1d9538dde65da30f8481c2a6c44040edb8e02b9bf1351edb92ce3"
  1029. dependencies = [
  1030. "lazy_static",
  1031. "nom 5.1.2",
  1032. "serde",
  1033. "yaml-rust",
  1034. ]
  1035. [[package]]
  1036. name = "console"
  1037. version = "0.14.1"
  1038. source = "registry+https://github.com/rust-lang/crates.io-index"
  1039. checksum = "3993e6445baa160675931ec041a5e03ca84b9c6e32a056150d3aa2bdda0a1f45"
  1040. dependencies = [
  1041. "encode_unicode",
  1042. "lazy_static",
  1043. "libc",
  1044. "regex",
  1045. "terminal_size",
  1046. "unicode-width",
  1047. "winapi",
  1048. ]
  1049. [[package]]
  1050. name = "console-api"
  1051. version = "0.4.0"
  1052. source = "registry+https://github.com/rust-lang/crates.io-index"
  1053. checksum = "e57ff02e8ad8e06ab9731d5dc72dc23bef9200778eae1a89d555d8c42e5d4a86"
  1054. dependencies = [
  1055. "prost",
  1056. "prost-types",
  1057. "tonic",
  1058. "tracing-core",
  1059. ]
  1060. [[package]]
  1061. name = "console-subscriber"
  1062. version = "0.1.8"
  1063. source = "registry+https://github.com/rust-lang/crates.io-index"
  1064. checksum = "22a3a81dfaf6b66bce5d159eddae701e3a002f194d378cbf7be5f053c281d9be"
  1065. dependencies = [
  1066. "console-api",
  1067. "crossbeam-channel",
  1068. "crossbeam-utils",
  1069. "futures",
  1070. "hdrhistogram",
  1071. "humantime",
  1072. "prost-types",
  1073. "serde",
  1074. "serde_json",
  1075. "thread_local",
  1076. "tokio",
  1077. "tokio-stream",
  1078. "tonic",
  1079. "tracing",
  1080. "tracing-core",
  1081. "tracing-subscriber 0.3.16",
  1082. ]
  1083. [[package]]
  1084. name = "constant_time_eq"
  1085. version = "0.1.5"
  1086. source = "registry+https://github.com/rust-lang/crates.io-index"
  1087. checksum = "245097e9a4535ee1e3e3931fcfcd55a796a44c643e8596ff6566d68f09b87bbc"
  1088. [[package]]
  1089. name = "core-foundation"
  1090. version = "0.9.3"
  1091. source = "registry+https://github.com/rust-lang/crates.io-index"
  1092. checksum = "194a7a9e6de53fa55116934067c844d9d749312f75c6f6d0980e8c252f8c2146"
  1093. dependencies = [
  1094. "core-foundation-sys",
  1095. "libc",
  1096. ]
  1097. [[package]]
  1098. name = "core-foundation-sys"
  1099. version = "0.8.4"
  1100. source = "registry+https://github.com/rust-lang/crates.io-index"
  1101. checksum = "e496a50fda8aacccc86d7529e2c1e0892dbd0f898a6b5645b5561b89c3210efa"
  1102. [[package]]
  1103. name = "cpufeatures"
  1104. version = "0.2.6"
  1105. source = "registry+https://github.com/rust-lang/crates.io-index"
  1106. checksum = "280a9f2d8b3a38871a3c8a46fb80db65e5e5ed97da80c4d08bf27fb63e35e181"
  1107. dependencies = [
  1108. "libc",
  1109. ]
  1110. [[package]]
  1111. name = "crc32fast"
  1112. version = "1.3.2"
  1113. source = "registry+https://github.com/rust-lang/crates.io-index"
  1114. checksum = "b540bd8bc810d3885c6ea91e2018302f68baba2129ab3e88f32389ee9370880d"
  1115. dependencies = [
  1116. "cfg-if",
  1117. ]
  1118. [[package]]
  1119. name = "crossbeam-channel"
  1120. version = "0.5.8"
  1121. source = "registry+https://github.com/rust-lang/crates.io-index"
  1122. checksum = "a33c2bf77f2df06183c3aa30d1e96c0695a313d4f9c453cc3762a6db39f99200"
  1123. dependencies = [
  1124. "cfg-if",
  1125. "crossbeam-utils",
  1126. ]
  1127. [[package]]
  1128. name = "crossbeam-deque"
  1129. version = "0.8.3"
  1130. source = "registry+https://github.com/rust-lang/crates.io-index"
  1131. checksum = "ce6fd6f855243022dcecf8702fef0c297d4338e226845fe067f6341ad9fa0cef"
  1132. dependencies = [
  1133. "cfg-if",
  1134. "crossbeam-epoch",
  1135. "crossbeam-utils",
  1136. ]
  1137. [[package]]
  1138. name = "crossbeam-epoch"
  1139. version = "0.9.14"
  1140. source = "registry+https://github.com/rust-lang/crates.io-index"
  1141. checksum = "46bd5f3f85273295a9d14aedfb86f6aadbff6d8f5295c4a9edb08e819dcf5695"
  1142. dependencies = [
  1143. "autocfg",
  1144. "cfg-if",
  1145. "crossbeam-utils",
  1146. "memoffset",
  1147. "scopeguard",
  1148. ]
  1149. [[package]]
  1150. name = "crossbeam-utils"
  1151. version = "0.8.15"
  1152. source = "registry+https://github.com/rust-lang/crates.io-index"
  1153. checksum = "3c063cd8cc95f5c377ed0d4b49a4b21f632396ff690e8470c29b3359b346984b"
  1154. dependencies = [
  1155. "cfg-if",
  1156. ]
  1157. [[package]]
  1158. name = "crypto-common"
  1159. version = "0.1.6"
  1160. source = "registry+https://github.com/rust-lang/crates.io-index"
  1161. checksum = "1bfb12502f3fc46cca1bb51ac28df9d618d813cdc3d2f25b9fe775a34af26bb3"
  1162. dependencies = [
  1163. "generic-array",
  1164. "typenum",
  1165. ]
  1166. [[package]]
  1167. name = "csv"
  1168. version = "1.2.1"
  1169. source = "registry+https://github.com/rust-lang/crates.io-index"
  1170. checksum = "0b015497079b9a9d69c02ad25de6c0a6edef051ea6360a327d0bd05802ef64ad"
  1171. dependencies = [
  1172. "csv-core",
  1173. "itoa",
  1174. "ryu",
  1175. "serde",
  1176. ]
  1177. [[package]]
  1178. name = "csv-core"
  1179. version = "0.1.10"
  1180. source = "registry+https://github.com/rust-lang/crates.io-index"
  1181. checksum = "2b2466559f260f48ad25fe6317b3c8dac77b5bdb5763ac7d9d6103530663bc90"
  1182. dependencies = [
  1183. "memchr",
  1184. ]
  1185. [[package]]
  1186. name = "cxx"
  1187. version = "1.0.94"
  1188. source = "registry+https://github.com/rust-lang/crates.io-index"
  1189. checksum = "f61f1b6389c3fe1c316bf8a4dccc90a38208354b330925bce1f74a6c4756eb93"
  1190. dependencies = [
  1191. "cc",
  1192. "cxxbridge-flags",
  1193. "cxxbridge-macro",
  1194. "link-cplusplus",
  1195. ]
  1196. [[package]]
  1197. name = "cxx-build"
  1198. version = "1.0.94"
  1199. source = "registry+https://github.com/rust-lang/crates.io-index"
  1200. checksum = "12cee708e8962df2aeb38f594aae5d827c022b6460ac71a7a3e2c3c2aae5a07b"
  1201. dependencies = [
  1202. "cc",
  1203. "codespan-reporting",
  1204. "once_cell",
  1205. "proc-macro2",
  1206. "quote",
  1207. "scratch",
  1208. "syn 2.0.27",
  1209. ]
  1210. [[package]]
  1211. name = "cxxbridge-flags"
  1212. version = "1.0.94"
  1213. source = "registry+https://github.com/rust-lang/crates.io-index"
  1214. checksum = "7944172ae7e4068c533afbb984114a56c46e9ccddda550499caa222902c7f7bb"
  1215. [[package]]
  1216. name = "cxxbridge-macro"
  1217. version = "1.0.94"
  1218. source = "registry+https://github.com/rust-lang/crates.io-index"
  1219. checksum = "2345488264226bf682893e25de0769f3360aac9957980ec49361b083ddaa5bc5"
  1220. dependencies = [
  1221. "proc-macro2",
  1222. "quote",
  1223. "syn 2.0.27",
  1224. ]
  1225. [[package]]
  1226. name = "dart-ffi"
  1227. version = "0.1.0"
  1228. dependencies = [
  1229. "allo-isolate",
  1230. "appflowy-integrate",
  1231. "byteorder",
  1232. "bytes",
  1233. "crossbeam-utils",
  1234. "flowy-codegen",
  1235. "flowy-core",
  1236. "flowy-derive",
  1237. "flowy-net",
  1238. "flowy-notification",
  1239. "flowy-server",
  1240. "flowy-server-config",
  1241. "lazy_static",
  1242. "lib-dispatch",
  1243. "log",
  1244. "parking_lot 0.12.1",
  1245. "protobuf",
  1246. "serde",
  1247. "serde_json",
  1248. "tokio",
  1249. "tracing",
  1250. ]
  1251. [[package]]
  1252. name = "dashmap"
  1253. version = "5.4.0"
  1254. source = "registry+https://github.com/rust-lang/crates.io-index"
  1255. checksum = "907076dfda823b0b36d2a1bb5f90c96660a5bbcd7729e10727f07858f22c4edc"
  1256. dependencies = [
  1257. "cfg-if",
  1258. "hashbrown 0.12.3",
  1259. "lock_api",
  1260. "once_cell",
  1261. "parking_lot_core 0.9.7",
  1262. ]
  1263. [[package]]
  1264. name = "derivative"
  1265. version = "2.2.0"
  1266. source = "registry+https://github.com/rust-lang/crates.io-index"
  1267. checksum = "fcc3dd5e9e9c0b295d6e1e4d811fb6f157d5ffd784b8d202fc62eac8035a770b"
  1268. dependencies = [
  1269. "proc-macro2",
  1270. "quote",
  1271. "syn 1.0.109",
  1272. ]
  1273. [[package]]
  1274. name = "deunicode"
  1275. version = "0.4.3"
  1276. source = "registry+https://github.com/rust-lang/crates.io-index"
  1277. checksum = "850878694b7933ca4c9569d30a34b55031b9b139ee1fc7b94a527c4ef960d690"
  1278. [[package]]
  1279. name = "diesel"
  1280. version = "1.4.8"
  1281. source = "registry+https://github.com/rust-lang/crates.io-index"
  1282. checksum = "b28135ecf6b7d446b43e27e225622a038cc4e2930a1022f51cdb97ada19b8e4d"
  1283. dependencies = [
  1284. "byteorder",
  1285. "chrono",
  1286. "diesel_derives",
  1287. "libsqlite3-sys",
  1288. ]
  1289. [[package]]
  1290. name = "diesel_derives"
  1291. version = "1.4.1"
  1292. source = "registry+https://github.com/rust-lang/crates.io-index"
  1293. checksum = "45f5098f628d02a7a0f68ddba586fb61e80edec3bdc1be3b921f4ceec60858d3"
  1294. dependencies = [
  1295. "proc-macro2",
  1296. "quote",
  1297. "syn 1.0.109",
  1298. ]
  1299. [[package]]
  1300. name = "diesel_migrations"
  1301. version = "1.4.0"
  1302. source = "registry+https://github.com/rust-lang/crates.io-index"
  1303. checksum = "bf3cde8413353dc7f5d72fa8ce0b99a560a359d2c5ef1e5817ca731cd9008f4c"
  1304. dependencies = [
  1305. "migrations_internals",
  1306. "migrations_macros",
  1307. ]
  1308. [[package]]
  1309. name = "digest"
  1310. version = "0.10.6"
  1311. source = "registry+https://github.com/rust-lang/crates.io-index"
  1312. checksum = "8168378f4e5023e7218c89c891c0fd8ecdb5e5e4f18cb78f38cf245dd021e76f"
  1313. dependencies = [
  1314. "block-buffer",
  1315. "crypto-common",
  1316. "subtle",
  1317. ]
  1318. [[package]]
  1319. name = "dirs-next"
  1320. version = "2.0.0"
  1321. source = "registry+https://github.com/rust-lang/crates.io-index"
  1322. checksum = "b98cf8ebf19c3d1b223e151f99a4f9f0690dca41414773390fc824184ac833e1"
  1323. dependencies = [
  1324. "cfg-if",
  1325. "dirs-sys-next",
  1326. ]
  1327. [[package]]
  1328. name = "dirs-sys-next"
  1329. version = "0.1.2"
  1330. source = "registry+https://github.com/rust-lang/crates.io-index"
  1331. checksum = "4ebda144c4fe02d1f7ea1a7d9641b6fc6b580adcfa024ae48797ecdeb6825b4d"
  1332. dependencies = [
  1333. "libc",
  1334. "redox_users",
  1335. "winapi",
  1336. ]
  1337. [[package]]
  1338. name = "dotenv"
  1339. version = "0.15.0"
  1340. source = "registry+https://github.com/rust-lang/crates.io-index"
  1341. checksum = "77c90badedccf4105eca100756a0b1289e191f6fcbdadd3cee1d2f614f97da8f"
  1342. [[package]]
  1343. name = "dyn-clone"
  1344. version = "1.0.11"
  1345. source = "registry+https://github.com/rust-lang/crates.io-index"
  1346. checksum = "68b0cf012f1230e43cd00ebb729c6bb58707ecfa8ad08b52ef3a4ccd2697fc30"
  1347. [[package]]
  1348. name = "either"
  1349. version = "1.8.1"
  1350. source = "registry+https://github.com/rust-lang/crates.io-index"
  1351. checksum = "7fcaabb2fef8c910e7f4c7ce9f67a1283a1715879a7c230ca9d6d1ae31f16d91"
  1352. [[package]]
  1353. name = "encode_unicode"
  1354. version = "0.3.6"
  1355. source = "registry+https://github.com/rust-lang/crates.io-index"
  1356. checksum = "a357d28ed41a50f9c765dbfe56cbc04a64e53e5fc58ba79fbc34c10ef3df831f"
  1357. [[package]]
  1358. name = "encoding_rs"
  1359. version = "0.8.32"
  1360. source = "registry+https://github.com/rust-lang/crates.io-index"
  1361. checksum = "071a31f4ee85403370b58aca746f01041ede6f0da2730960ad001edc2b71b394"
  1362. dependencies = [
  1363. "cfg-if",
  1364. ]
  1365. [[package]]
  1366. name = "env_logger"
  1367. version = "0.8.4"
  1368. source = "registry+https://github.com/rust-lang/crates.io-index"
  1369. checksum = "a19187fea3ac7e84da7dacf48de0c45d63c6a76f9490dae389aead16c243fce3"
  1370. dependencies = [
  1371. "log",
  1372. "regex",
  1373. ]
  1374. [[package]]
  1375. name = "errno"
  1376. version = "0.3.1"
  1377. source = "registry+https://github.com/rust-lang/crates.io-index"
  1378. checksum = "4bcfec3a70f97c962c307b2d2c56e358cf1d00b558d74262b5f929ee8cc7e73a"
  1379. dependencies = [
  1380. "errno-dragonfly",
  1381. "libc",
  1382. "windows-sys 0.48.0",
  1383. ]
  1384. [[package]]
  1385. name = "errno-dragonfly"
  1386. version = "0.1.2"
  1387. source = "registry+https://github.com/rust-lang/crates.io-index"
  1388. checksum = "aa68f1b12764fab894d2755d2518754e71b4fd80ecfb822714a1206c2aab39bf"
  1389. dependencies = [
  1390. "cc",
  1391. "libc",
  1392. ]
  1393. [[package]]
  1394. name = "error-chain"
  1395. version = "0.12.0"
  1396. source = "registry+https://github.com/rust-lang/crates.io-index"
  1397. checksum = "07e791d3be96241c77c43846b665ef1384606da2cd2a48730abe606a12906e02"
  1398. dependencies = [
  1399. "backtrace",
  1400. ]
  1401. [[package]]
  1402. name = "faccess"
  1403. version = "0.2.4"
  1404. source = "registry+https://github.com/rust-lang/crates.io-index"
  1405. checksum = "59ae66425802d6a903e268ae1a08b8c38ba143520f227a205edf4e9c7e3e26d5"
  1406. dependencies = [
  1407. "bitflags",
  1408. "libc",
  1409. "winapi",
  1410. ]
  1411. [[package]]
  1412. name = "fake"
  1413. version = "2.5.0"
  1414. source = "registry+https://github.com/rust-lang/crates.io-index"
  1415. checksum = "4d68f517805463f3a896a9d29c1d6ff09d3579ded64a7201b4069f8f9c0d52fd"
  1416. dependencies = [
  1417. "rand 0.8.5",
  1418. ]
  1419. [[package]]
  1420. name = "fallible-iterator"
  1421. version = "0.2.0"
  1422. source = "registry+https://github.com/rust-lang/crates.io-index"
  1423. checksum = "4443176a9f2c162692bd3d352d745ef9413eec5782a80d8fd6f8a1ac692a07f7"
  1424. [[package]]
  1425. name = "fancy-regex"
  1426. version = "0.10.0"
  1427. source = "registry+https://github.com/rust-lang/crates.io-index"
  1428. checksum = "0678ab2d46fa5195aaf59ad034c083d351377d4af57f3e073c074d0da3e3c766"
  1429. dependencies = [
  1430. "bit-set",
  1431. "regex",
  1432. ]
  1433. [[package]]
  1434. name = "fancy-regex"
  1435. version = "0.11.0"
  1436. source = "registry+https://github.com/rust-lang/crates.io-index"
  1437. checksum = "b95f7c0680e4142284cf8b22c14a476e87d61b004a3a0861872b32ef7ead40a2"
  1438. dependencies = [
  1439. "bit-set",
  1440. "regex",
  1441. ]
  1442. [[package]]
  1443. name = "fastrand"
  1444. version = "1.9.0"
  1445. source = "registry+https://github.com/rust-lang/crates.io-index"
  1446. checksum = "e51093e27b0797c359783294ca4f0a911c270184cb10f85783b118614a1501be"
  1447. dependencies = [
  1448. "instant",
  1449. ]
  1450. [[package]]
  1451. name = "flate2"
  1452. version = "1.0.25"
  1453. source = "registry+https://github.com/rust-lang/crates.io-index"
  1454. checksum = "a8a2db397cb1c8772f31494cb8917e48cd1e64f0fa7efac59fbd741a0a8ce841"
  1455. dependencies = [
  1456. "crc32fast",
  1457. "miniz_oxide",
  1458. ]
  1459. [[package]]
  1460. name = "flowy-ast"
  1461. version = "0.1.0"
  1462. dependencies = [
  1463. "proc-macro2",
  1464. "quote",
  1465. "syn 1.0.109",
  1466. ]
  1467. [[package]]
  1468. name = "flowy-codegen"
  1469. version = "0.1.0"
  1470. dependencies = [
  1471. "cmd_lib",
  1472. "console",
  1473. "fancy-regex 0.10.0",
  1474. "flowy-ast",
  1475. "itertools",
  1476. "lazy_static",
  1477. "log",
  1478. "phf 0.8.0",
  1479. "protoc-bin-vendored",
  1480. "protoc-rust",
  1481. "quote",
  1482. "serde",
  1483. "serde_json",
  1484. "similar 1.3.0",
  1485. "syn 1.0.109",
  1486. "tera",
  1487. "toml",
  1488. "walkdir",
  1489. ]
  1490. [[package]]
  1491. name = "flowy-config"
  1492. version = "0.1.0"
  1493. dependencies = [
  1494. "bytes",
  1495. "flowy-codegen",
  1496. "flowy-derive",
  1497. "flowy-error",
  1498. "flowy-sqlite",
  1499. "lib-dispatch",
  1500. "protobuf",
  1501. "strum_macros",
  1502. ]
  1503. [[package]]
  1504. name = "flowy-core"
  1505. version = "0.1.0"
  1506. dependencies = [
  1507. "appflowy-integrate",
  1508. "bytes",
  1509. "console-subscriber",
  1510. "diesel",
  1511. "flowy-config",
  1512. "flowy-database-deps",
  1513. "flowy-database2",
  1514. "flowy-document-deps",
  1515. "flowy-document2",
  1516. "flowy-error",
  1517. "flowy-folder-deps",
  1518. "flowy-folder2",
  1519. "flowy-net",
  1520. "flowy-server",
  1521. "flowy-server-config",
  1522. "flowy-sqlite",
  1523. "flowy-task",
  1524. "flowy-user",
  1525. "flowy-user-deps",
  1526. "futures-core",
  1527. "lib-dispatch",
  1528. "lib-infra",
  1529. "lib-log",
  1530. "parking_lot 0.12.1",
  1531. "serde",
  1532. "serde_json",
  1533. "serde_repr",
  1534. "tokio",
  1535. "tracing",
  1536. "uuid",
  1537. ]
  1538. [[package]]
  1539. name = "flowy-database-deps"
  1540. version = "0.1.0"
  1541. dependencies = [
  1542. "anyhow",
  1543. "collab-plugins",
  1544. "flowy-error",
  1545. "lib-infra",
  1546. ]
  1547. [[package]]
  1548. name = "flowy-database2"
  1549. version = "0.1.0"
  1550. dependencies = [
  1551. "anyhow",
  1552. "appflowy-integrate",
  1553. "async-stream",
  1554. "async-trait",
  1555. "bytes",
  1556. "chrono",
  1557. "chrono-tz 0.8.2",
  1558. "collab",
  1559. "collab-database",
  1560. "csv",
  1561. "dashmap",
  1562. "fancy-regex 0.10.0",
  1563. "flowy-codegen",
  1564. "flowy-database-deps",
  1565. "flowy-derive",
  1566. "flowy-error",
  1567. "flowy-notification",
  1568. "flowy-task",
  1569. "flowy-test",
  1570. "futures",
  1571. "indexmap",
  1572. "lazy_static",
  1573. "lib-dispatch",
  1574. "lib-infra",
  1575. "nanoid",
  1576. "parking_lot 0.12.1",
  1577. "protobuf",
  1578. "rayon",
  1579. "rust_decimal",
  1580. "rusty-money",
  1581. "serde",
  1582. "serde_json",
  1583. "serde_repr",
  1584. "strum",
  1585. "strum_macros",
  1586. "tokio",
  1587. "tracing",
  1588. "url",
  1589. ]
  1590. [[package]]
  1591. name = "flowy-derive"
  1592. version = "0.1.0"
  1593. dependencies = [
  1594. "dashmap",
  1595. "flowy-ast",
  1596. "flowy-codegen",
  1597. "lazy_static",
  1598. "proc-macro2",
  1599. "quote",
  1600. "serde_json",
  1601. "syn 1.0.109",
  1602. "walkdir",
  1603. ]
  1604. [[package]]
  1605. name = "flowy-document-deps"
  1606. version = "0.1.0"
  1607. dependencies = [
  1608. "anyhow",
  1609. "collab-document",
  1610. "flowy-error",
  1611. "lib-infra",
  1612. ]
  1613. [[package]]
  1614. name = "flowy-document2"
  1615. version = "0.1.0"
  1616. dependencies = [
  1617. "anyhow",
  1618. "appflowy-integrate",
  1619. "bytes",
  1620. "collab",
  1621. "collab-document",
  1622. "flowy-codegen",
  1623. "flowy-derive",
  1624. "flowy-document-deps",
  1625. "flowy-error",
  1626. "flowy-notification",
  1627. "futures",
  1628. "indexmap",
  1629. "lib-dispatch",
  1630. "lib-infra",
  1631. "nanoid",
  1632. "parking_lot 0.12.1",
  1633. "protobuf",
  1634. "serde",
  1635. "serde_json",
  1636. "strum_macros",
  1637. "tempfile",
  1638. "tokio",
  1639. "tokio-stream",
  1640. "tracing",
  1641. "tracing-subscriber 0.3.16",
  1642. "uuid",
  1643. ]
  1644. [[package]]
  1645. name = "flowy-error"
  1646. version = "0.1.0"
  1647. dependencies = [
  1648. "anyhow",
  1649. "bytes",
  1650. "collab-database",
  1651. "collab-document",
  1652. "flowy-codegen",
  1653. "flowy-derive",
  1654. "flowy-sqlite",
  1655. "http-error-code",
  1656. "lib-dispatch",
  1657. "protobuf",
  1658. "r2d2",
  1659. "reqwest",
  1660. "serde",
  1661. "serde_json",
  1662. "serde_repr",
  1663. "thiserror",
  1664. "tokio",
  1665. "tokio-postgres",
  1666. ]
  1667. [[package]]
  1668. name = "flowy-folder-deps"
  1669. version = "0.1.0"
  1670. dependencies = [
  1671. "anyhow",
  1672. "collab-folder",
  1673. "flowy-error",
  1674. "lib-infra",
  1675. "uuid",
  1676. ]
  1677. [[package]]
  1678. name = "flowy-folder2"
  1679. version = "0.1.0"
  1680. dependencies = [
  1681. "appflowy-integrate",
  1682. "bytes",
  1683. "chrono",
  1684. "collab",
  1685. "collab-folder",
  1686. "flowy-codegen",
  1687. "flowy-derive",
  1688. "flowy-error",
  1689. "flowy-folder-deps",
  1690. "flowy-folder2",
  1691. "flowy-notification",
  1692. "flowy-test",
  1693. "lazy_static",
  1694. "lib-dispatch",
  1695. "lib-infra",
  1696. "nanoid",
  1697. "parking_lot 0.12.1",
  1698. "protobuf",
  1699. "strum_macros",
  1700. "tokio",
  1701. "tokio-stream",
  1702. "tracing",
  1703. "unicode-segmentation",
  1704. "uuid",
  1705. ]
  1706. [[package]]
  1707. name = "flowy-net"
  1708. version = "0.1.0"
  1709. dependencies = [
  1710. "bytes",
  1711. "flowy-codegen",
  1712. "lib-dispatch",
  1713. "protobuf",
  1714. "tracing",
  1715. ]
  1716. [[package]]
  1717. name = "flowy-notification"
  1718. version = "0.1.0"
  1719. dependencies = [
  1720. "bytes",
  1721. "flowy-codegen",
  1722. "flowy-derive",
  1723. "lazy_static",
  1724. "lib-dispatch",
  1725. "protobuf",
  1726. "serde",
  1727. "tracing",
  1728. ]
  1729. [[package]]
  1730. name = "flowy-server"
  1731. version = "0.1.0"
  1732. dependencies = [
  1733. "anyhow",
  1734. "assert-json-diff",
  1735. "bytes",
  1736. "chrono",
  1737. "collab",
  1738. "collab-document",
  1739. "collab-plugins",
  1740. "config",
  1741. "dotenv",
  1742. "flowy-database-deps",
  1743. "flowy-document-deps",
  1744. "flowy-error",
  1745. "flowy-folder-deps",
  1746. "flowy-server-config",
  1747. "flowy-user-deps",
  1748. "futures",
  1749. "futures-util",
  1750. "hex",
  1751. "hyper",
  1752. "lazy_static",
  1753. "lib-infra",
  1754. "parking_lot 0.12.1",
  1755. "postgrest",
  1756. "reqwest",
  1757. "serde",
  1758. "serde-aux",
  1759. "serde_json",
  1760. "thiserror",
  1761. "tokio",
  1762. "tokio-retry",
  1763. "tracing",
  1764. "tracing-subscriber 0.3.16",
  1765. "uuid",
  1766. "yrs",
  1767. ]
  1768. [[package]]
  1769. name = "flowy-server-config"
  1770. version = "0.1.0"
  1771. dependencies = [
  1772. "flowy-error",
  1773. "serde",
  1774. ]
  1775. [[package]]
  1776. name = "flowy-sqlite"
  1777. version = "0.1.0"
  1778. dependencies = [
  1779. "anyhow",
  1780. "diesel",
  1781. "diesel_derives",
  1782. "diesel_migrations",
  1783. "error-chain",
  1784. "lazy_static",
  1785. "libsqlite3-sys",
  1786. "openssl",
  1787. "openssl-sys",
  1788. "parking_lot 0.12.1",
  1789. "r2d2",
  1790. "scheduled-thread-pool",
  1791. "serde",
  1792. "serde_json",
  1793. "tempfile",
  1794. "tracing",
  1795. ]
  1796. [[package]]
  1797. name = "flowy-task"
  1798. version = "0.1.0"
  1799. dependencies = [
  1800. "anyhow",
  1801. "atomic_refcell",
  1802. "futures",
  1803. "lib-infra",
  1804. "rand 0.8.5",
  1805. "tokio",
  1806. "tracing",
  1807. ]
  1808. [[package]]
  1809. name = "flowy-test"
  1810. version = "0.1.0"
  1811. dependencies = [
  1812. "anyhow",
  1813. "assert-json-diff",
  1814. "bytes",
  1815. "collab",
  1816. "collab-database",
  1817. "collab-document",
  1818. "collab-folder",
  1819. "collab-plugins",
  1820. "dotenv",
  1821. "flowy-core",
  1822. "flowy-database2",
  1823. "flowy-document2",
  1824. "flowy-folder2",
  1825. "flowy-net",
  1826. "flowy-notification",
  1827. "flowy-server",
  1828. "flowy-server-config",
  1829. "flowy-user",
  1830. "flowy-user-deps",
  1831. "futures-util",
  1832. "lib-dispatch",
  1833. "lib-infra",
  1834. "nanoid",
  1835. "parking_lot 0.12.1",
  1836. "protobuf",
  1837. "serde",
  1838. "serde_json",
  1839. "tempdir",
  1840. "thread-id",
  1841. "tokio",
  1842. "tokio-postgres",
  1843. "tracing",
  1844. "uuid",
  1845. "zip",
  1846. ]
  1847. [[package]]
  1848. name = "flowy-user"
  1849. version = "0.1.0"
  1850. dependencies = [
  1851. "appflowy-integrate",
  1852. "base64 0.21.0",
  1853. "bytes",
  1854. "chrono",
  1855. "collab",
  1856. "collab-document",
  1857. "collab-folder",
  1858. "diesel",
  1859. "diesel_derives",
  1860. "fake",
  1861. "fancy-regex 0.11.0",
  1862. "flowy-codegen",
  1863. "flowy-derive",
  1864. "flowy-error",
  1865. "flowy-notification",
  1866. "flowy-server-config",
  1867. "flowy-sqlite",
  1868. "flowy-user-deps",
  1869. "lazy_static",
  1870. "lib-dispatch",
  1871. "lib-infra",
  1872. "log",
  1873. "nanoid",
  1874. "once_cell",
  1875. "parking_lot 0.12.1",
  1876. "protobuf",
  1877. "quickcheck",
  1878. "quickcheck_macros",
  1879. "rand 0.8.5",
  1880. "rand_core 0.6.4",
  1881. "serde",
  1882. "serde_json",
  1883. "serde_repr",
  1884. "strum_macros",
  1885. "tokio",
  1886. "tracing",
  1887. "unicode-segmentation",
  1888. "uuid",
  1889. "validator",
  1890. ]
  1891. [[package]]
  1892. name = "flowy-user-deps"
  1893. version = "0.1.0"
  1894. dependencies = [
  1895. "anyhow",
  1896. "chrono",
  1897. "flowy-error",
  1898. "lib-infra",
  1899. "serde",
  1900. "serde_json",
  1901. "serde_repr",
  1902. "uuid",
  1903. ]
  1904. [[package]]
  1905. name = "fnv"
  1906. version = "1.0.7"
  1907. source = "registry+https://github.com/rust-lang/crates.io-index"
  1908. checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1"
  1909. [[package]]
  1910. name = "foreign-types"
  1911. version = "0.3.2"
  1912. source = "registry+https://github.com/rust-lang/crates.io-index"
  1913. checksum = "f6f339eb8adc052cd2ca78910fda869aefa38d22d5cb648e6485e4d3fc06f3b1"
  1914. dependencies = [
  1915. "foreign-types-shared",
  1916. ]
  1917. [[package]]
  1918. name = "foreign-types-shared"
  1919. version = "0.1.1"
  1920. source = "registry+https://github.com/rust-lang/crates.io-index"
  1921. checksum = "00b0228411908ca8685dba7fc2cdd70ec9990a6e753e89b6ac91a84c40fbaf4b"
  1922. [[package]]
  1923. name = "form_urlencoded"
  1924. version = "1.1.0"
  1925. source = "registry+https://github.com/rust-lang/crates.io-index"
  1926. checksum = "a9c384f161156f5260c24a097c56119f9be8c798586aecc13afbcbe7b7e26bf8"
  1927. dependencies = [
  1928. "percent-encoding",
  1929. ]
  1930. [[package]]
  1931. name = "fs2"
  1932. version = "0.4.3"
  1933. source = "registry+https://github.com/rust-lang/crates.io-index"
  1934. checksum = "9564fc758e15025b46aa6643b1b77d047d1a56a1aea6e01002ac0c7026876213"
  1935. dependencies = [
  1936. "libc",
  1937. "winapi",
  1938. ]
  1939. [[package]]
  1940. name = "fuchsia-cprng"
  1941. version = "0.1.1"
  1942. source = "registry+https://github.com/rust-lang/crates.io-index"
  1943. checksum = "a06f77d526c1a601b7c4cdd98f54b5eaabffc14d5f2f0296febdc7f357c6d3ba"
  1944. [[package]]
  1945. name = "futures"
  1946. version = "0.3.28"
  1947. source = "registry+https://github.com/rust-lang/crates.io-index"
  1948. checksum = "23342abe12aba583913b2e62f22225ff9c950774065e4bfb61a19cd9770fec40"
  1949. dependencies = [
  1950. "futures-channel",
  1951. "futures-core",
  1952. "futures-executor",
  1953. "futures-io",
  1954. "futures-sink",
  1955. "futures-task",
  1956. "futures-util",
  1957. ]
  1958. [[package]]
  1959. name = "futures-channel"
  1960. version = "0.3.28"
  1961. source = "registry+https://github.com/rust-lang/crates.io-index"
  1962. checksum = "955518d47e09b25bbebc7a18df10b81f0c766eaf4c4f1cccef2fca5f2a4fb5f2"
  1963. dependencies = [
  1964. "futures-core",
  1965. "futures-sink",
  1966. ]
  1967. [[package]]
  1968. name = "futures-core"
  1969. version = "0.3.28"
  1970. source = "registry+https://github.com/rust-lang/crates.io-index"
  1971. checksum = "4bca583b7e26f571124fe5b7561d49cb2868d79116cfa0eefce955557c6fee8c"
  1972. [[package]]
  1973. name = "futures-executor"
  1974. version = "0.3.28"
  1975. source = "registry+https://github.com/rust-lang/crates.io-index"
  1976. checksum = "ccecee823288125bd88b4d7f565c9e58e41858e47ab72e8ea2d64e93624386e0"
  1977. dependencies = [
  1978. "futures-core",
  1979. "futures-task",
  1980. "futures-util",
  1981. ]
  1982. [[package]]
  1983. name = "futures-io"
  1984. version = "0.3.28"
  1985. source = "registry+https://github.com/rust-lang/crates.io-index"
  1986. checksum = "4fff74096e71ed47f8e023204cfd0aa1289cd54ae5430a9523be060cdb849964"
  1987. [[package]]
  1988. name = "futures-macro"
  1989. version = "0.3.28"
  1990. source = "registry+https://github.com/rust-lang/crates.io-index"
  1991. checksum = "89ca545a94061b6365f2c7355b4b32bd20df3ff95f02da9329b34ccc3bd6ee72"
  1992. dependencies = [
  1993. "proc-macro2",
  1994. "quote",
  1995. "syn 2.0.27",
  1996. ]
  1997. [[package]]
  1998. name = "futures-sink"
  1999. version = "0.3.28"
  2000. source = "registry+https://github.com/rust-lang/crates.io-index"
  2001. checksum = "f43be4fe21a13b9781a69afa4985b0f6ee0e1afab2c6f454a8cf30e2b2237b6e"
  2002. [[package]]
  2003. name = "futures-task"
  2004. version = "0.3.28"
  2005. source = "registry+https://github.com/rust-lang/crates.io-index"
  2006. checksum = "76d3d132be6c0e6aa1534069c705a74a5997a356c0dc2f86a47765e5617c5b65"
  2007. [[package]]
  2008. name = "futures-util"
  2009. version = "0.3.28"
  2010. source = "registry+https://github.com/rust-lang/crates.io-index"
  2011. checksum = "26b01e40b772d54cf6c6d721c1d1abd0647a0106a12ecaa1c186273392a69533"
  2012. dependencies = [
  2013. "futures-channel",
  2014. "futures-core",
  2015. "futures-io",
  2016. "futures-macro",
  2017. "futures-sink",
  2018. "futures-task",
  2019. "memchr",
  2020. "pin-project-lite",
  2021. "pin-utils",
  2022. "slab",
  2023. ]
  2024. [[package]]
  2025. name = "fxhash"
  2026. version = "0.2.1"
  2027. source = "registry+https://github.com/rust-lang/crates.io-index"
  2028. checksum = "c31b6d751ae2c7f11320402d34e41349dd1016f8d5d45e48c4312bc8625af50c"
  2029. dependencies = [
  2030. "byteorder",
  2031. ]
  2032. [[package]]
  2033. name = "generic-array"
  2034. version = "0.14.7"
  2035. source = "registry+https://github.com/rust-lang/crates.io-index"
  2036. checksum = "85649ca51fd72272d7821adaf274ad91c288277713d9c18820d8499a7ff69e9a"
  2037. dependencies = [
  2038. "typenum",
  2039. "version_check",
  2040. ]
  2041. [[package]]
  2042. name = "gethostname"
  2043. version = "0.2.3"
  2044. source = "registry+https://github.com/rust-lang/crates.io-index"
  2045. checksum = "c1ebd34e35c46e00bb73e81363248d627782724609fe1b6396f553f68fe3862e"
  2046. dependencies = [
  2047. "libc",
  2048. "winapi",
  2049. ]
  2050. [[package]]
  2051. name = "getrandom"
  2052. version = "0.1.16"
  2053. source = "registry+https://github.com/rust-lang/crates.io-index"
  2054. checksum = "8fc3cb4d91f53b50155bdcfd23f6a4c39ae1969c2ae85982b135750cccaf5fce"
  2055. dependencies = [
  2056. "cfg-if",
  2057. "js-sys",
  2058. "libc",
  2059. "wasi 0.9.0+wasi-snapshot-preview1",
  2060. "wasm-bindgen",
  2061. ]
  2062. [[package]]
  2063. name = "getrandom"
  2064. version = "0.2.9"
  2065. source = "registry+https://github.com/rust-lang/crates.io-index"
  2066. checksum = "c85e1d9ab2eadba7e5040d4e09cbd6d072b76a557ad64e797c2cb9d4da21d7e4"
  2067. dependencies = [
  2068. "cfg-if",
  2069. "libc",
  2070. "wasi 0.11.0+wasi-snapshot-preview1",
  2071. ]
  2072. [[package]]
  2073. name = "gimli"
  2074. version = "0.27.2"
  2075. source = "registry+https://github.com/rust-lang/crates.io-index"
  2076. checksum = "ad0a93d233ebf96623465aad4046a8d3aa4da22d4f4beba5388838c8a434bbb4"
  2077. [[package]]
  2078. name = "glob"
  2079. version = "0.3.1"
  2080. source = "registry+https://github.com/rust-lang/crates.io-index"
  2081. checksum = "d2fabcfbdc87f4758337ca535fb41a6d701b65693ce38287d856d1674551ec9b"
  2082. [[package]]
  2083. name = "globset"
  2084. version = "0.4.10"
  2085. source = "registry+https://github.com/rust-lang/crates.io-index"
  2086. checksum = "029d74589adefde59de1a0c4f4732695c32805624aec7b68d91503d4dba79afc"
  2087. dependencies = [
  2088. "aho-corasick",
  2089. "bstr",
  2090. "fnv",
  2091. "log",
  2092. "regex",
  2093. ]
  2094. [[package]]
  2095. name = "globwalk"
  2096. version = "0.8.1"
  2097. source = "registry+https://github.com/rust-lang/crates.io-index"
  2098. checksum = "93e3af942408868f6934a7b85134a3230832b9977cf66125df2f9edcfce4ddcc"
  2099. dependencies = [
  2100. "bitflags",
  2101. "ignore",
  2102. "walkdir",
  2103. ]
  2104. [[package]]
  2105. name = "h2"
  2106. version = "0.3.17"
  2107. source = "registry+https://github.com/rust-lang/crates.io-index"
  2108. checksum = "66b91535aa35fea1523ad1b86cb6b53c28e0ae566ba4a460f4457e936cad7c6f"
  2109. dependencies = [
  2110. "bytes",
  2111. "fnv",
  2112. "futures-core",
  2113. "futures-sink",
  2114. "futures-util",
  2115. "http",
  2116. "indexmap",
  2117. "slab",
  2118. "tokio",
  2119. "tokio-util",
  2120. "tracing",
  2121. ]
  2122. [[package]]
  2123. name = "hashbrown"
  2124. version = "0.12.3"
  2125. source = "registry+https://github.com/rust-lang/crates.io-index"
  2126. checksum = "8a9ee70c43aaf417c914396645a0fa852624801b24ebb7ae78fe8272889ac888"
  2127. dependencies = [
  2128. "ahash 0.7.6",
  2129. ]
  2130. [[package]]
  2131. name = "hashbrown"
  2132. version = "0.13.2"
  2133. source = "registry+https://github.com/rust-lang/crates.io-index"
  2134. checksum = "43a3c133739dddd0d2990f9a4bdf8eb4b21ef50e4851ca85ab661199821d510e"
  2135. dependencies = [
  2136. "ahash 0.8.3",
  2137. ]
  2138. [[package]]
  2139. name = "hdrhistogram"
  2140. version = "7.5.2"
  2141. source = "registry+https://github.com/rust-lang/crates.io-index"
  2142. checksum = "7f19b9f54f7c7f55e31401bb647626ce0cf0f67b0004982ce815b3ee72a02aa8"
  2143. dependencies = [
  2144. "base64 0.13.1",
  2145. "byteorder",
  2146. "flate2",
  2147. "nom 7.1.3",
  2148. "num-traits",
  2149. ]
  2150. [[package]]
  2151. name = "heck"
  2152. version = "0.3.3"
  2153. source = "registry+https://github.com/rust-lang/crates.io-index"
  2154. checksum = "6d621efb26863f0e9924c6ac577e8275e5e6b77455db64ffa6c65c904e9e132c"
  2155. dependencies = [
  2156. "unicode-segmentation",
  2157. ]
  2158. [[package]]
  2159. name = "hermit-abi"
  2160. version = "0.2.6"
  2161. source = "registry+https://github.com/rust-lang/crates.io-index"
  2162. checksum = "ee512640fe35acbfb4bb779db6f0d80704c2cacfa2e39b601ef3e3f47d1ae4c7"
  2163. dependencies = [
  2164. "libc",
  2165. ]
  2166. [[package]]
  2167. name = "hermit-abi"
  2168. version = "0.3.1"
  2169. source = "registry+https://github.com/rust-lang/crates.io-index"
  2170. checksum = "fed44880c466736ef9a5c5b5facefb5ed0785676d0c02d612db14e54f0d84286"
  2171. [[package]]
  2172. name = "hex"
  2173. version = "0.4.3"
  2174. source = "registry+https://github.com/rust-lang/crates.io-index"
  2175. checksum = "7f24254aa9a54b5c858eaee2f5bccdb46aaf0e486a595ed5fd8f86ba55232a70"
  2176. [[package]]
  2177. name = "hmac"
  2178. version = "0.12.1"
  2179. source = "registry+https://github.com/rust-lang/crates.io-index"
  2180. checksum = "6c49c37c09c17a53d937dfbb742eb3a961d65a994e6bcdcf37e7399d0cc8ab5e"
  2181. dependencies = [
  2182. "digest",
  2183. ]
  2184. [[package]]
  2185. name = "http"
  2186. version = "0.2.9"
  2187. source = "registry+https://github.com/rust-lang/crates.io-index"
  2188. checksum = "bd6effc99afb63425aff9b05836f029929e345a6148a14b7ecd5ab67af944482"
  2189. dependencies = [
  2190. "bytes",
  2191. "fnv",
  2192. "itoa",
  2193. ]
  2194. [[package]]
  2195. name = "http-body"
  2196. version = "0.4.5"
  2197. source = "registry+https://github.com/rust-lang/crates.io-index"
  2198. checksum = "d5f38f16d184e36f2408a55281cd658ecbd3ca05cce6d6510a176eca393e26d1"
  2199. dependencies = [
  2200. "bytes",
  2201. "http",
  2202. "pin-project-lite",
  2203. ]
  2204. [[package]]
  2205. name = "http-error-code"
  2206. version = "0.1.0"
  2207. source = "git+https://github.com/AppFlowy-IO/AppFlowy-Server?branch=refactor/appflowy_server#1ccd296de8530760d92652dbd9f38f27178059b6"
  2208. dependencies = [
  2209. "serde",
  2210. "serde_repr",
  2211. "thiserror",
  2212. ]
  2213. [[package]]
  2214. name = "httparse"
  2215. version = "1.8.0"
  2216. source = "registry+https://github.com/rust-lang/crates.io-index"
  2217. checksum = "d897f394bad6a705d5f4104762e116a75639e470d80901eed05a860a95cb1904"
  2218. [[package]]
  2219. name = "httpdate"
  2220. version = "1.0.2"
  2221. source = "registry+https://github.com/rust-lang/crates.io-index"
  2222. checksum = "c4a1e36c821dbe04574f602848a19f742f4fb3c98d40449f11bcad18d6b17421"
  2223. [[package]]
  2224. name = "humansize"
  2225. version = "2.1.3"
  2226. source = "registry+https://github.com/rust-lang/crates.io-index"
  2227. checksum = "6cb51c9a029ddc91b07a787f1d86b53ccfa49b0e86688c946ebe8d3555685dd7"
  2228. dependencies = [
  2229. "libm",
  2230. ]
  2231. [[package]]
  2232. name = "humantime"
  2233. version = "2.1.0"
  2234. source = "registry+https://github.com/rust-lang/crates.io-index"
  2235. checksum = "9a3a5bfb195931eeb336b2a7b4d761daec841b97f947d34394601737a7bba5e4"
  2236. [[package]]
  2237. name = "hyper"
  2238. version = "0.14.26"
  2239. source = "registry+https://github.com/rust-lang/crates.io-index"
  2240. checksum = "ab302d72a6f11a3b910431ff93aae7e773078c769f0a3ef15fb9ec692ed147d4"
  2241. dependencies = [
  2242. "bytes",
  2243. "futures-channel",
  2244. "futures-core",
  2245. "futures-util",
  2246. "h2",
  2247. "http",
  2248. "http-body",
  2249. "httparse",
  2250. "httpdate",
  2251. "itoa",
  2252. "pin-project-lite",
  2253. "socket2 0.4.9",
  2254. "tokio",
  2255. "tower-service",
  2256. "tracing",
  2257. "want",
  2258. ]
  2259. [[package]]
  2260. name = "hyper-rustls"
  2261. version = "0.23.2"
  2262. source = "registry+https://github.com/rust-lang/crates.io-index"
  2263. checksum = "1788965e61b367cd03a62950836d5cd41560c3577d90e40e0819373194d1661c"
  2264. dependencies = [
  2265. "http",
  2266. "hyper",
  2267. "log",
  2268. "rustls",
  2269. "rustls-native-certs",
  2270. "tokio",
  2271. "tokio-rustls",
  2272. ]
  2273. [[package]]
  2274. name = "hyper-timeout"
  2275. version = "0.4.1"
  2276. source = "registry+https://github.com/rust-lang/crates.io-index"
  2277. checksum = "bbb958482e8c7be4bc3cf272a766a2b0bf1a6755e7a6ae777f017a31d11b13b1"
  2278. dependencies = [
  2279. "hyper",
  2280. "pin-project-lite",
  2281. "tokio",
  2282. "tokio-io-timeout",
  2283. ]
  2284. [[package]]
  2285. name = "hyper-tls"
  2286. version = "0.5.0"
  2287. source = "registry+https://github.com/rust-lang/crates.io-index"
  2288. checksum = "d6183ddfa99b85da61a140bea0efc93fdf56ceaa041b37d553518030827f9905"
  2289. dependencies = [
  2290. "bytes",
  2291. "hyper",
  2292. "native-tls",
  2293. "tokio",
  2294. "tokio-native-tls",
  2295. ]
  2296. [[package]]
  2297. name = "iana-time-zone"
  2298. version = "0.1.56"
  2299. source = "registry+https://github.com/rust-lang/crates.io-index"
  2300. checksum = "0722cd7114b7de04316e7ea5456a0bbb20e4adb46fd27a3697adb812cff0f37c"
  2301. dependencies = [
  2302. "android_system_properties",
  2303. "core-foundation-sys",
  2304. "iana-time-zone-haiku",
  2305. "js-sys",
  2306. "wasm-bindgen",
  2307. "windows",
  2308. ]
  2309. [[package]]
  2310. name = "iana-time-zone-haiku"
  2311. version = "0.1.1"
  2312. source = "registry+https://github.com/rust-lang/crates.io-index"
  2313. checksum = "0703ae284fc167426161c2e3f1da3ea71d94b21bedbcc9494e92b28e334e3dca"
  2314. dependencies = [
  2315. "cxx",
  2316. "cxx-build",
  2317. ]
  2318. [[package]]
  2319. name = "idna"
  2320. version = "0.2.3"
  2321. source = "registry+https://github.com/rust-lang/crates.io-index"
  2322. checksum = "418a0a6fab821475f634efe3ccc45c013f742efe03d853e8d3355d5cb850ecf8"
  2323. dependencies = [
  2324. "matches",
  2325. "unicode-bidi",
  2326. "unicode-normalization",
  2327. ]
  2328. [[package]]
  2329. name = "idna"
  2330. version = "0.3.0"
  2331. source = "registry+https://github.com/rust-lang/crates.io-index"
  2332. checksum = "e14ddfc70884202db2244c223200c204c2bda1bc6e0998d11b5e024d657209e6"
  2333. dependencies = [
  2334. "unicode-bidi",
  2335. "unicode-normalization",
  2336. ]
  2337. [[package]]
  2338. name = "ignore"
  2339. version = "0.4.20"
  2340. source = "registry+https://github.com/rust-lang/crates.io-index"
  2341. checksum = "dbe7873dab538a9a44ad79ede1faf5f30d49f9a5c883ddbab48bce81b64b7492"
  2342. dependencies = [
  2343. "globset",
  2344. "lazy_static",
  2345. "log",
  2346. "memchr",
  2347. "regex",
  2348. "same-file",
  2349. "thread_local",
  2350. "walkdir",
  2351. "winapi-util",
  2352. ]
  2353. [[package]]
  2354. name = "indexmap"
  2355. version = "1.9.3"
  2356. source = "registry+https://github.com/rust-lang/crates.io-index"
  2357. checksum = "bd070e393353796e801d209ad339e89596eb4c8d430d18ede6a1cced8fafbd99"
  2358. dependencies = [
  2359. "autocfg",
  2360. "hashbrown 0.12.3",
  2361. "serde",
  2362. ]
  2363. [[package]]
  2364. name = "inout"
  2365. version = "0.1.3"
  2366. source = "registry+https://github.com/rust-lang/crates.io-index"
  2367. checksum = "a0c10553d664a4d0bcff9f4215d0aac67a639cc68ef660840afe309b807bc9f5"
  2368. dependencies = [
  2369. "generic-array",
  2370. ]
  2371. [[package]]
  2372. name = "instant"
  2373. version = "0.1.12"
  2374. source = "registry+https://github.com/rust-lang/crates.io-index"
  2375. checksum = "7a5bbe824c507c5da5956355e86a746d82e0e1464f65d862cc5e71da70e94b2c"
  2376. dependencies = [
  2377. "cfg-if",
  2378. ]
  2379. [[package]]
  2380. name = "io-lifetimes"
  2381. version = "1.0.10"
  2382. source = "registry+https://github.com/rust-lang/crates.io-index"
  2383. checksum = "9c66c74d2ae7e79a5a8f7ac924adbe38ee42a859c6539ad869eb51f0b52dc220"
  2384. dependencies = [
  2385. "hermit-abi 0.3.1",
  2386. "libc",
  2387. "windows-sys 0.48.0",
  2388. ]
  2389. [[package]]
  2390. name = "ipnet"
  2391. version = "2.7.2"
  2392. source = "registry+https://github.com/rust-lang/crates.io-index"
  2393. checksum = "12b6ee2129af8d4fb011108c73d99a1b83a85977f23b82460c0ae2e25bb4b57f"
  2394. [[package]]
  2395. name = "itertools"
  2396. version = "0.10.5"
  2397. source = "registry+https://github.com/rust-lang/crates.io-index"
  2398. checksum = "b0fd2260e829bddf4cb6ea802289de2f86d6a7a690192fbe91b3f46e0f2c8473"
  2399. dependencies = [
  2400. "either",
  2401. ]
  2402. [[package]]
  2403. name = "itoa"
  2404. version = "1.0.6"
  2405. source = "registry+https://github.com/rust-lang/crates.io-index"
  2406. checksum = "453ad9f582a441959e5f0d088b02ce04cfe8d51a8eaf077f12ac6d3e94164ca6"
  2407. [[package]]
  2408. name = "jobserver"
  2409. version = "0.1.26"
  2410. source = "registry+https://github.com/rust-lang/crates.io-index"
  2411. checksum = "936cfd212a0155903bcbc060e316fb6cc7cbf2e1907329391ebadc1fe0ce77c2"
  2412. dependencies = [
  2413. "libc",
  2414. ]
  2415. [[package]]
  2416. name = "js-sys"
  2417. version = "0.3.61"
  2418. source = "registry+https://github.com/rust-lang/crates.io-index"
  2419. checksum = "445dde2150c55e483f3d8416706b97ec8e8237c307e5b7b4b8dd15e6af2a0730"
  2420. dependencies = [
  2421. "wasm-bindgen",
  2422. ]
  2423. [[package]]
  2424. name = "lazy_static"
  2425. version = "1.4.0"
  2426. source = "registry+https://github.com/rust-lang/crates.io-index"
  2427. checksum = "e2abad23fbc42b3700f2f279844dc832adb2b2eb069b2df918f455c4e18cc646"
  2428. [[package]]
  2429. name = "lazycell"
  2430. version = "1.3.0"
  2431. source = "registry+https://github.com/rust-lang/crates.io-index"
  2432. checksum = "830d08ce1d1d941e6b30645f1a0eb5643013d835ce3779a5fc208261dbe10f55"
  2433. [[package]]
  2434. name = "lexical-core"
  2435. version = "0.7.6"
  2436. source = "registry+https://github.com/rust-lang/crates.io-index"
  2437. checksum = "6607c62aa161d23d17a9072cc5da0be67cdfc89d3afb1e8d9c842bebc2525ffe"
  2438. dependencies = [
  2439. "arrayvec 0.5.2",
  2440. "bitflags",
  2441. "cfg-if",
  2442. "ryu",
  2443. "static_assertions",
  2444. ]
  2445. [[package]]
  2446. name = "lib-dispatch"
  2447. version = "0.1.0"
  2448. dependencies = [
  2449. "bincode",
  2450. "bytes",
  2451. "derivative",
  2452. "dyn-clone",
  2453. "futures",
  2454. "futures-channel",
  2455. "futures-core",
  2456. "futures-util",
  2457. "log",
  2458. "nanoid",
  2459. "pin-project",
  2460. "protobuf",
  2461. "serde",
  2462. "serde_json",
  2463. "serde_repr",
  2464. "thread-id",
  2465. "tokio",
  2466. "tracing",
  2467. ]
  2468. [[package]]
  2469. name = "lib-infra"
  2470. version = "0.1.0"
  2471. dependencies = [
  2472. "anyhow",
  2473. "async-trait",
  2474. "bytes",
  2475. "chrono",
  2476. "futures-core",
  2477. "md5",
  2478. "pin-project",
  2479. "rand 0.8.5",
  2480. "tokio",
  2481. ]
  2482. [[package]]
  2483. name = "lib-log"
  2484. version = "0.1.0"
  2485. dependencies = [
  2486. "chrono",
  2487. "lazy_static",
  2488. "log",
  2489. "serde",
  2490. "serde_json",
  2491. "tracing",
  2492. "tracing-appender",
  2493. "tracing-bunyan-formatter",
  2494. "tracing-core",
  2495. "tracing-log",
  2496. "tracing-subscriber 0.2.25",
  2497. ]
  2498. [[package]]
  2499. name = "lib0"
  2500. version = "0.16.5"
  2501. source = "registry+https://github.com/rust-lang/crates.io-index"
  2502. checksum = "daf23122cb1c970b77ea6030eac5e328669415b65d2ab245c99bfb110f9d62dc"
  2503. dependencies = [
  2504. "serde",
  2505. "serde_json",
  2506. "thiserror",
  2507. ]
  2508. [[package]]
  2509. name = "libc"
  2510. version = "0.2.141"
  2511. source = "registry+https://github.com/rust-lang/crates.io-index"
  2512. checksum = "3304a64d199bb964be99741b7a14d26972741915b3649639149b2479bb46f4b5"
  2513. [[package]]
  2514. name = "libloading"
  2515. version = "0.7.4"
  2516. source = "registry+https://github.com/rust-lang/crates.io-index"
  2517. checksum = "b67380fd3b2fbe7527a606e18729d21c6f3951633d0500574c4dc22d2d638b9f"
  2518. dependencies = [
  2519. "cfg-if",
  2520. "winapi",
  2521. ]
  2522. [[package]]
  2523. name = "libm"
  2524. version = "0.2.6"
  2525. source = "registry+https://github.com/rust-lang/crates.io-index"
  2526. checksum = "348108ab3fba42ec82ff6e9564fc4ca0247bdccdc68dd8af9764bbc79c3c8ffb"
  2527. [[package]]
  2528. name = "librocksdb-sys"
  2529. version = "0.11.0+8.1.1"
  2530. source = "registry+https://github.com/rust-lang/crates.io-index"
  2531. checksum = "d3386f101bcb4bd252d8e9d2fb41ec3b0862a15a62b478c355b2982efa469e3e"
  2532. dependencies = [
  2533. "bindgen",
  2534. "bzip2-sys",
  2535. "cc",
  2536. "glob",
  2537. "libc",
  2538. "libz-sys",
  2539. "zstd-sys",
  2540. ]
  2541. [[package]]
  2542. name = "libsqlite3-sys"
  2543. version = "0.22.2"
  2544. source = "registry+https://github.com/rust-lang/crates.io-index"
  2545. checksum = "290b64917f8b0cb885d9de0f9959fe1f775d7fa12f1da2db9001c1c8ab60f89d"
  2546. dependencies = [
  2547. "cc",
  2548. "pkg-config",
  2549. "vcpkg",
  2550. ]
  2551. [[package]]
  2552. name = "libz-sys"
  2553. version = "1.1.8"
  2554. source = "registry+https://github.com/rust-lang/crates.io-index"
  2555. checksum = "9702761c3935f8cc2f101793272e202c72b99da8f4224a19ddcf1279a6450bbf"
  2556. dependencies = [
  2557. "cc",
  2558. "pkg-config",
  2559. "vcpkg",
  2560. ]
  2561. [[package]]
  2562. name = "link-cplusplus"
  2563. version = "1.0.8"
  2564. source = "registry+https://github.com/rust-lang/crates.io-index"
  2565. checksum = "ecd207c9c713c34f95a097a5b029ac2ce6010530c7b49d7fea24d977dede04f5"
  2566. dependencies = [
  2567. "cc",
  2568. ]
  2569. [[package]]
  2570. name = "linked-hash-map"
  2571. version = "0.5.6"
  2572. source = "registry+https://github.com/rust-lang/crates.io-index"
  2573. checksum = "0717cef1bc8b636c6e1c1bbdefc09e6322da8a9321966e8928ef80d20f7f770f"
  2574. [[package]]
  2575. name = "linux-raw-sys"
  2576. version = "0.3.1"
  2577. source = "registry+https://github.com/rust-lang/crates.io-index"
  2578. checksum = "d59d8c75012853d2e872fb56bc8a2e53718e2cafe1a4c823143141c6d90c322f"
  2579. [[package]]
  2580. name = "lock_api"
  2581. version = "0.4.9"
  2582. source = "registry+https://github.com/rust-lang/crates.io-index"
  2583. checksum = "435011366fe56583b16cf956f9df0095b405b82d76425bc8981c0e22e60ec4df"
  2584. dependencies = [
  2585. "autocfg",
  2586. "scopeguard",
  2587. ]
  2588. [[package]]
  2589. name = "log"
  2590. version = "0.4.17"
  2591. source = "registry+https://github.com/rust-lang/crates.io-index"
  2592. checksum = "abb12e687cfb44aa40f41fc3978ef76448f9b6038cad6aef4259d3c095a2382e"
  2593. dependencies = [
  2594. "cfg-if",
  2595. ]
  2596. [[package]]
  2597. name = "lru"
  2598. version = "0.10.0"
  2599. source = "registry+https://github.com/rust-lang/crates.io-index"
  2600. checksum = "03f1160296536f10c833a82dca22267d5486734230d47bf00bf435885814ba1e"
  2601. dependencies = [
  2602. "hashbrown 0.13.2",
  2603. ]
  2604. [[package]]
  2605. name = "matchers"
  2606. version = "0.0.1"
  2607. source = "registry+https://github.com/rust-lang/crates.io-index"
  2608. checksum = "f099785f7595cc4b4553a174ce30dd7589ef93391ff414dbb67f62392b9e0ce1"
  2609. dependencies = [
  2610. "regex-automata",
  2611. ]
  2612. [[package]]
  2613. name = "matchers"
  2614. version = "0.1.0"
  2615. source = "registry+https://github.com/rust-lang/crates.io-index"
  2616. checksum = "8263075bb86c5a1b1427b5ae862e8889656f126e9f77c484496e8b47cf5c5558"
  2617. dependencies = [
  2618. "regex-automata",
  2619. ]
  2620. [[package]]
  2621. name = "matches"
  2622. version = "0.1.10"
  2623. source = "registry+https://github.com/rust-lang/crates.io-index"
  2624. checksum = "2532096657941c2fea9c289d370a250971c689d4f143798ff67113ec042024a5"
  2625. [[package]]
  2626. name = "matchit"
  2627. version = "0.7.0"
  2628. source = "registry+https://github.com/rust-lang/crates.io-index"
  2629. checksum = "b87248edafb776e59e6ee64a79086f65890d3510f2c656c000bf2a7e8a0aea40"
  2630. [[package]]
  2631. name = "md-5"
  2632. version = "0.10.5"
  2633. source = "registry+https://github.com/rust-lang/crates.io-index"
  2634. checksum = "6365506850d44bff6e2fbcb5176cf63650e48bd45ef2fe2665ae1570e0f4b9ca"
  2635. dependencies = [
  2636. "digest",
  2637. ]
  2638. [[package]]
  2639. name = "md5"
  2640. version = "0.7.0"
  2641. source = "registry+https://github.com/rust-lang/crates.io-index"
  2642. checksum = "490cc448043f947bae3cbee9c203358d62dbee0db12107a74be5c30ccfd09771"
  2643. [[package]]
  2644. name = "memchr"
  2645. version = "2.5.0"
  2646. source = "registry+https://github.com/rust-lang/crates.io-index"
  2647. checksum = "2dffe52ecf27772e601905b7522cb4ef790d2cc203488bbd0e2fe85fcb74566d"
  2648. [[package]]
  2649. name = "memoffset"
  2650. version = "0.8.0"
  2651. source = "registry+https://github.com/rust-lang/crates.io-index"
  2652. checksum = "d61c719bcfbcf5d62b3a09efa6088de8c54bc0bfcd3ea7ae39fcc186108b8de1"
  2653. dependencies = [
  2654. "autocfg",
  2655. ]
  2656. [[package]]
  2657. name = "migrations_internals"
  2658. version = "1.4.1"
  2659. source = "registry+https://github.com/rust-lang/crates.io-index"
  2660. checksum = "2b4fc84e4af020b837029e017966f86a1c2d5e83e64b589963d5047525995860"
  2661. dependencies = [
  2662. "diesel",
  2663. ]
  2664. [[package]]
  2665. name = "migrations_macros"
  2666. version = "1.4.2"
  2667. source = "registry+https://github.com/rust-lang/crates.io-index"
  2668. checksum = "9753f12909fd8d923f75ae5c3258cae1ed3c8ec052e1b38c93c21a6d157f789c"
  2669. dependencies = [
  2670. "migrations_internals",
  2671. "proc-macro2",
  2672. "quote",
  2673. "syn 1.0.109",
  2674. ]
  2675. [[package]]
  2676. name = "mime"
  2677. version = "0.3.17"
  2678. source = "registry+https://github.com/rust-lang/crates.io-index"
  2679. checksum = "6877bb514081ee2a7ff5ef9de3281f14a4dd4bceac4c09388074a6b5df8a139a"
  2680. [[package]]
  2681. name = "minimal-lexical"
  2682. version = "0.2.1"
  2683. source = "registry+https://github.com/rust-lang/crates.io-index"
  2684. checksum = "68354c5c6bd36d73ff3feceb05efa59b6acb7626617f4962be322a825e61f79a"
  2685. [[package]]
  2686. name = "miniz_oxide"
  2687. version = "0.6.2"
  2688. source = "registry+https://github.com/rust-lang/crates.io-index"
  2689. checksum = "b275950c28b37e794e8c55d88aeb5e139d0ce23fdbbeda68f8d7174abdf9e8fa"
  2690. dependencies = [
  2691. "adler",
  2692. ]
  2693. [[package]]
  2694. name = "mio"
  2695. version = "0.8.6"
  2696. source = "registry+https://github.com/rust-lang/crates.io-index"
  2697. checksum = "5b9d9a46eff5b4ff64b45a9e316a6d1e0bc719ef429cbec4dc630684212bfdf9"
  2698. dependencies = [
  2699. "libc",
  2700. "log",
  2701. "wasi 0.11.0+wasi-snapshot-preview1",
  2702. "windows-sys 0.45.0",
  2703. ]
  2704. [[package]]
  2705. name = "nanoid"
  2706. version = "0.4.0"
  2707. source = "registry+https://github.com/rust-lang/crates.io-index"
  2708. checksum = "3ffa00dec017b5b1a8b7cf5e2c008bfda1aa7e0697ac1508b491fdf2622fb4d8"
  2709. dependencies = [
  2710. "rand 0.8.5",
  2711. ]
  2712. [[package]]
  2713. name = "native-tls"
  2714. version = "0.2.11"
  2715. source = "registry+https://github.com/rust-lang/crates.io-index"
  2716. checksum = "07226173c32f2926027b63cce4bcd8076c3552846cbe7925f3aaffeac0a3b92e"
  2717. dependencies = [
  2718. "lazy_static",
  2719. "libc",
  2720. "log",
  2721. "openssl",
  2722. "openssl-probe",
  2723. "openssl-sys",
  2724. "schannel",
  2725. "security-framework",
  2726. "security-framework-sys",
  2727. "tempfile",
  2728. ]
  2729. [[package]]
  2730. name = "nom"
  2731. version = "5.1.2"
  2732. source = "registry+https://github.com/rust-lang/crates.io-index"
  2733. checksum = "ffb4262d26ed83a1c0a33a38fe2bb15797329c85770da05e6b828ddb782627af"
  2734. dependencies = [
  2735. "lexical-core",
  2736. "memchr",
  2737. "version_check",
  2738. ]
  2739. [[package]]
  2740. name = "nom"
  2741. version = "7.1.3"
  2742. source = "registry+https://github.com/rust-lang/crates.io-index"
  2743. checksum = "d273983c5a657a70a3e8f2a01329822f3b8c8172b73826411a55751e404a0a4a"
  2744. dependencies = [
  2745. "memchr",
  2746. "minimal-lexical",
  2747. ]
  2748. [[package]]
  2749. name = "nu-ansi-term"
  2750. version = "0.46.0"
  2751. source = "registry+https://github.com/rust-lang/crates.io-index"
  2752. checksum = "77a8165726e8236064dbb45459242600304b42a5ea24ee2948e18e023bf7ba84"
  2753. dependencies = [
  2754. "overload",
  2755. "winapi",
  2756. ]
  2757. [[package]]
  2758. name = "num-integer"
  2759. version = "0.1.45"
  2760. source = "registry+https://github.com/rust-lang/crates.io-index"
  2761. checksum = "225d3389fb3509a24c93f5c29eb6bde2586b98d9f016636dff58d7c6f7569cd9"
  2762. dependencies = [
  2763. "autocfg",
  2764. "num-traits",
  2765. ]
  2766. [[package]]
  2767. name = "num-traits"
  2768. version = "0.2.15"
  2769. source = "registry+https://github.com/rust-lang/crates.io-index"
  2770. checksum = "578ede34cf02f8924ab9447f50c28075b4d3e5b269972345e7e0372b38c6cdcd"
  2771. dependencies = [
  2772. "autocfg",
  2773. ]
  2774. [[package]]
  2775. name = "num_cpus"
  2776. version = "1.15.0"
  2777. source = "registry+https://github.com/rust-lang/crates.io-index"
  2778. checksum = "0fac9e2da13b5eb447a6ce3d392f23a29d8694bff781bf03a16cd9ac8697593b"
  2779. dependencies = [
  2780. "hermit-abi 0.2.6",
  2781. "libc",
  2782. ]
  2783. [[package]]
  2784. name = "object"
  2785. version = "0.30.3"
  2786. source = "registry+https://github.com/rust-lang/crates.io-index"
  2787. checksum = "ea86265d3d3dcb6a27fc51bd29a4bf387fae9d2986b823079d4986af253eb439"
  2788. dependencies = [
  2789. "memchr",
  2790. ]
  2791. [[package]]
  2792. name = "once_cell"
  2793. version = "1.17.1"
  2794. source = "registry+https://github.com/rust-lang/crates.io-index"
  2795. checksum = "b7e5500299e16ebb147ae15a00a942af264cf3688f47923b8fc2cd5858f23ad3"
  2796. [[package]]
  2797. name = "openssl"
  2798. version = "0.10.50"
  2799. source = "registry+https://github.com/rust-lang/crates.io-index"
  2800. checksum = "7e30d8bc91859781f0a943411186324d580f2bbeb71b452fe91ae344806af3f1"
  2801. dependencies = [
  2802. "bitflags",
  2803. "cfg-if",
  2804. "foreign-types",
  2805. "libc",
  2806. "once_cell",
  2807. "openssl-macros",
  2808. "openssl-sys",
  2809. ]
  2810. [[package]]
  2811. name = "openssl-macros"
  2812. version = "0.1.1"
  2813. source = "registry+https://github.com/rust-lang/crates.io-index"
  2814. checksum = "a948666b637a0f465e8564c73e89d4dde00d72d4d473cc972f390fc3dcee7d9c"
  2815. dependencies = [
  2816. "proc-macro2",
  2817. "quote",
  2818. "syn 2.0.27",
  2819. ]
  2820. [[package]]
  2821. name = "openssl-probe"
  2822. version = "0.1.5"
  2823. source = "registry+https://github.com/rust-lang/crates.io-index"
  2824. checksum = "ff011a302c396a5197692431fc1948019154afc178baf7d8e37367442a4601cf"
  2825. [[package]]
  2826. name = "openssl-src"
  2827. version = "111.25.2+1.1.1t"
  2828. source = "registry+https://github.com/rust-lang/crates.io-index"
  2829. checksum = "320708a054ad9b3bf314688b5db87cf4d6683d64cfc835e2337924ae62bf4431"
  2830. dependencies = [
  2831. "cc",
  2832. ]
  2833. [[package]]
  2834. name = "openssl-sys"
  2835. version = "0.9.85"
  2836. source = "registry+https://github.com/rust-lang/crates.io-index"
  2837. checksum = "0d3d193fb1488ad46ffe3aaabc912cc931d02ee8518fe2959aea8ef52718b0c0"
  2838. dependencies = [
  2839. "cc",
  2840. "libc",
  2841. "openssl-src",
  2842. "pkg-config",
  2843. "vcpkg",
  2844. ]
  2845. [[package]]
  2846. name = "os_pipe"
  2847. version = "0.9.2"
  2848. source = "registry+https://github.com/rust-lang/crates.io-index"
  2849. checksum = "fb233f06c2307e1f5ce2ecad9f8121cffbbee2c95428f44ea85222e460d0d213"
  2850. dependencies = [
  2851. "libc",
  2852. "winapi",
  2853. ]
  2854. [[package]]
  2855. name = "outref"
  2856. version = "0.5.1"
  2857. source = "registry+https://github.com/rust-lang/crates.io-index"
  2858. checksum = "4030760ffd992bef45b0ae3f10ce1aba99e33464c90d14dd7c039884963ddc7a"
  2859. [[package]]
  2860. name = "overload"
  2861. version = "0.1.1"
  2862. source = "registry+https://github.com/rust-lang/crates.io-index"
  2863. checksum = "b15813163c1d831bf4a13c3610c05c0d03b39feb07f7e09fa234dac9b15aaf39"
  2864. [[package]]
  2865. name = "parking_lot"
  2866. version = "0.11.2"
  2867. source = "registry+https://github.com/rust-lang/crates.io-index"
  2868. checksum = "7d17b78036a60663b797adeaee46f5c9dfebb86948d1255007a1d6be0271ff99"
  2869. dependencies = [
  2870. "instant",
  2871. "lock_api",
  2872. "parking_lot_core 0.8.6",
  2873. ]
  2874. [[package]]
  2875. name = "parking_lot"
  2876. version = "0.12.1"
  2877. source = "registry+https://github.com/rust-lang/crates.io-index"
  2878. checksum = "3742b2c103b9f06bc9fff0a37ff4912935851bee6d36f3c02bcc755bcfec228f"
  2879. dependencies = [
  2880. "lock_api",
  2881. "parking_lot_core 0.9.7",
  2882. ]
  2883. [[package]]
  2884. name = "parking_lot_core"
  2885. version = "0.8.6"
  2886. source = "registry+https://github.com/rust-lang/crates.io-index"
  2887. checksum = "60a2cfe6f0ad2bfc16aefa463b497d5c7a5ecd44a23efa72aa342d90177356dc"
  2888. dependencies = [
  2889. "cfg-if",
  2890. "instant",
  2891. "libc",
  2892. "redox_syscall 0.2.16",
  2893. "smallvec",
  2894. "winapi",
  2895. ]
  2896. [[package]]
  2897. name = "parking_lot_core"
  2898. version = "0.9.7"
  2899. source = "registry+https://github.com/rust-lang/crates.io-index"
  2900. checksum = "9069cbb9f99e3a5083476ccb29ceb1de18b9118cafa53e90c9551235de2b9521"
  2901. dependencies = [
  2902. "cfg-if",
  2903. "libc",
  2904. "redox_syscall 0.2.16",
  2905. "smallvec",
  2906. "windows-sys 0.45.0",
  2907. ]
  2908. [[package]]
  2909. name = "parse-zoneinfo"
  2910. version = "0.3.0"
  2911. source = "registry+https://github.com/rust-lang/crates.io-index"
  2912. checksum = "c705f256449c60da65e11ff6626e0c16a0a0b96aaa348de61376b249bc340f41"
  2913. dependencies = [
  2914. "regex",
  2915. ]
  2916. [[package]]
  2917. name = "password-hash"
  2918. version = "0.4.2"
  2919. source = "registry+https://github.com/rust-lang/crates.io-index"
  2920. checksum = "7676374caaee8a325c9e7a2ae557f216c5563a171d6997b0ef8a65af35147700"
  2921. dependencies = [
  2922. "base64ct",
  2923. "rand_core 0.6.4",
  2924. "subtle",
  2925. ]
  2926. [[package]]
  2927. name = "pbkdf2"
  2928. version = "0.11.0"
  2929. source = "registry+https://github.com/rust-lang/crates.io-index"
  2930. checksum = "83a0692ec44e4cf1ef28ca317f14f8f07da2d95ec3fa01f86e4467b725e60917"
  2931. dependencies = [
  2932. "digest",
  2933. "hmac",
  2934. "password-hash",
  2935. "sha2",
  2936. ]
  2937. [[package]]
  2938. name = "peeking_take_while"
  2939. version = "0.1.2"
  2940. source = "registry+https://github.com/rust-lang/crates.io-index"
  2941. checksum = "19b17cddbe7ec3f8bc800887bab5e717348c95ea2ca0b1bf0837fb964dc67099"
  2942. [[package]]
  2943. name = "percent-encoding"
  2944. version = "2.2.0"
  2945. source = "registry+https://github.com/rust-lang/crates.io-index"
  2946. checksum = "478c572c3d73181ff3c2539045f6eb99e5491218eae919370993b890cdbdd98e"
  2947. [[package]]
  2948. name = "pest"
  2949. version = "2.5.7"
  2950. source = "registry+https://github.com/rust-lang/crates.io-index"
  2951. checksum = "7b1403e8401ad5dedea73c626b99758535b342502f8d1e361f4a2dd952749122"
  2952. dependencies = [
  2953. "thiserror",
  2954. "ucd-trie",
  2955. ]
  2956. [[package]]
  2957. name = "pest_derive"
  2958. version = "2.5.7"
  2959. source = "registry+https://github.com/rust-lang/crates.io-index"
  2960. checksum = "be99c4c1d2fc2769b1d00239431d711d08f6efedcecb8b6e30707160aee99c15"
  2961. dependencies = [
  2962. "pest",
  2963. "pest_generator",
  2964. ]
  2965. [[package]]
  2966. name = "pest_generator"
  2967. version = "2.5.7"
  2968. source = "registry+https://github.com/rust-lang/crates.io-index"
  2969. checksum = "e56094789873daa36164de2e822b3888c6ae4b4f9da555a1103587658c805b1e"
  2970. dependencies = [
  2971. "pest",
  2972. "pest_meta",
  2973. "proc-macro2",
  2974. "quote",
  2975. "syn 2.0.27",
  2976. ]
  2977. [[package]]
  2978. name = "pest_meta"
  2979. version = "2.5.7"
  2980. source = "registry+https://github.com/rust-lang/crates.io-index"
  2981. checksum = "6733073c7cff3d8459fda0e42f13a047870242aed8b509fe98000928975f359e"
  2982. dependencies = [
  2983. "once_cell",
  2984. "pest",
  2985. "sha2",
  2986. ]
  2987. [[package]]
  2988. name = "phf"
  2989. version = "0.8.0"
  2990. source = "registry+https://github.com/rust-lang/crates.io-index"
  2991. checksum = "3dfb61232e34fcb633f43d12c58f83c1df82962dcdfa565a4e866ffc17dafe12"
  2992. dependencies = [
  2993. "phf_macros",
  2994. "phf_shared 0.8.0",
  2995. "proc-macro-hack",
  2996. ]
  2997. [[package]]
  2998. name = "phf"
  2999. version = "0.10.1"
  3000. source = "registry+https://github.com/rust-lang/crates.io-index"
  3001. checksum = "fabbf1ead8a5bcbc20f5f8b939ee3f5b0f6f281b6ad3468b84656b658b455259"
  3002. dependencies = [
  3003. "phf_shared 0.10.0",
  3004. ]
  3005. [[package]]
  3006. name = "phf"
  3007. version = "0.11.1"
  3008. source = "registry+https://github.com/rust-lang/crates.io-index"
  3009. checksum = "928c6535de93548188ef63bb7c4036bd415cd8f36ad25af44b9789b2ee72a48c"
  3010. dependencies = [
  3011. "phf_shared 0.11.1",
  3012. ]
  3013. [[package]]
  3014. name = "phf_codegen"
  3015. version = "0.10.0"
  3016. source = "registry+https://github.com/rust-lang/crates.io-index"
  3017. checksum = "4fb1c3a8bc4dd4e5cfce29b44ffc14bedd2ee294559a294e2a4d4c9e9a6a13cd"
  3018. dependencies = [
  3019. "phf_generator 0.10.0",
  3020. "phf_shared 0.10.0",
  3021. ]
  3022. [[package]]
  3023. name = "phf_codegen"
  3024. version = "0.11.1"
  3025. source = "registry+https://github.com/rust-lang/crates.io-index"
  3026. checksum = "a56ac890c5e3ca598bbdeaa99964edb5b0258a583a9eb6ef4e89fc85d9224770"
  3027. dependencies = [
  3028. "phf_generator 0.11.1",
  3029. "phf_shared 0.11.1",
  3030. ]
  3031. [[package]]
  3032. name = "phf_generator"
  3033. version = "0.8.0"
  3034. source = "registry+https://github.com/rust-lang/crates.io-index"
  3035. checksum = "17367f0cc86f2d25802b2c26ee58a7b23faeccf78a396094c13dced0d0182526"
  3036. dependencies = [
  3037. "phf_shared 0.8.0",
  3038. "rand 0.7.3",
  3039. ]
  3040. [[package]]
  3041. name = "phf_generator"
  3042. version = "0.10.0"
  3043. source = "registry+https://github.com/rust-lang/crates.io-index"
  3044. checksum = "5d5285893bb5eb82e6aaf5d59ee909a06a16737a8970984dd7746ba9283498d6"
  3045. dependencies = [
  3046. "phf_shared 0.10.0",
  3047. "rand 0.8.5",
  3048. ]
  3049. [[package]]
  3050. name = "phf_generator"
  3051. version = "0.11.1"
  3052. source = "registry+https://github.com/rust-lang/crates.io-index"
  3053. checksum = "b1181c94580fa345f50f19d738aaa39c0ed30a600d95cb2d3e23f94266f14fbf"
  3054. dependencies = [
  3055. "phf_shared 0.11.1",
  3056. "rand 0.8.5",
  3057. ]
  3058. [[package]]
  3059. name = "phf_macros"
  3060. version = "0.8.0"
  3061. source = "registry+https://github.com/rust-lang/crates.io-index"
  3062. checksum = "7f6fde18ff429ffc8fe78e2bf7f8b7a5a5a6e2a8b58bc5a9ac69198bbda9189c"
  3063. dependencies = [
  3064. "phf_generator 0.8.0",
  3065. "phf_shared 0.8.0",
  3066. "proc-macro-hack",
  3067. "proc-macro2",
  3068. "quote",
  3069. "syn 1.0.109",
  3070. ]
  3071. [[package]]
  3072. name = "phf_shared"
  3073. version = "0.8.0"
  3074. source = "registry+https://github.com/rust-lang/crates.io-index"
  3075. checksum = "c00cf8b9eafe68dde5e9eaa2cef8ee84a9336a47d566ec55ca16589633b65af7"
  3076. dependencies = [
  3077. "siphasher",
  3078. ]
  3079. [[package]]
  3080. name = "phf_shared"
  3081. version = "0.10.0"
  3082. source = "registry+https://github.com/rust-lang/crates.io-index"
  3083. checksum = "b6796ad771acdc0123d2a88dc428b5e38ef24456743ddb1744ed628f9815c096"
  3084. dependencies = [
  3085. "siphasher",
  3086. "uncased",
  3087. ]
  3088. [[package]]
  3089. name = "phf_shared"
  3090. version = "0.11.1"
  3091. source = "registry+https://github.com/rust-lang/crates.io-index"
  3092. checksum = "e1fb5f6f826b772a8d4c0394209441e7d37cbbb967ae9c7e0e8134365c9ee676"
  3093. dependencies = [
  3094. "siphasher",
  3095. ]
  3096. [[package]]
  3097. name = "pin-project"
  3098. version = "1.0.12"
  3099. source = "registry+https://github.com/rust-lang/crates.io-index"
  3100. checksum = "ad29a609b6bcd67fee905812e544992d216af9d755757c05ed2d0e15a74c6ecc"
  3101. dependencies = [
  3102. "pin-project-internal",
  3103. ]
  3104. [[package]]
  3105. name = "pin-project-internal"
  3106. version = "1.0.12"
  3107. source = "registry+https://github.com/rust-lang/crates.io-index"
  3108. checksum = "069bdb1e05adc7a8990dce9cc75370895fbe4e3d58b9b73bf1aee56359344a55"
  3109. dependencies = [
  3110. "proc-macro2",
  3111. "quote",
  3112. "syn 1.0.109",
  3113. ]
  3114. [[package]]
  3115. name = "pin-project-lite"
  3116. version = "0.2.9"
  3117. source = "registry+https://github.com/rust-lang/crates.io-index"
  3118. checksum = "e0a7ae3ac2f1173085d398531c705756c94a4c56843785df85a60c1a0afac116"
  3119. [[package]]
  3120. name = "pin-utils"
  3121. version = "0.1.0"
  3122. source = "registry+https://github.com/rust-lang/crates.io-index"
  3123. checksum = "8b870d8c151b6f2fb93e84a13146138f05d02ed11c7e7c54f8826aaaf7c9f184"
  3124. [[package]]
  3125. name = "pkg-config"
  3126. version = "0.3.26"
  3127. source = "registry+https://github.com/rust-lang/crates.io-index"
  3128. checksum = "6ac9a59f73473f1b8d852421e59e64809f025994837ef743615c6d0c5b305160"
  3129. [[package]]
  3130. name = "postgres-protocol"
  3131. version = "0.6.5"
  3132. source = "registry+https://github.com/rust-lang/crates.io-index"
  3133. checksum = "78b7fa9f396f51dffd61546fd8573ee20592287996568e6175ceb0f8699ad75d"
  3134. dependencies = [
  3135. "base64 0.21.0",
  3136. "byteorder",
  3137. "bytes",
  3138. "fallible-iterator",
  3139. "hmac",
  3140. "md-5",
  3141. "memchr",
  3142. "rand 0.8.5",
  3143. "sha2",
  3144. "stringprep",
  3145. ]
  3146. [[package]]
  3147. name = "postgres-types"
  3148. version = "0.2.5"
  3149. source = "registry+https://github.com/rust-lang/crates.io-index"
  3150. checksum = "f028f05971fe20f512bcc679e2c10227e57809a3af86a7606304435bc8896cd6"
  3151. dependencies = [
  3152. "bytes",
  3153. "fallible-iterator",
  3154. "postgres-protocol",
  3155. ]
  3156. [[package]]
  3157. name = "postgrest"
  3158. version = "1.6.0"
  3159. source = "registry+https://github.com/rust-lang/crates.io-index"
  3160. checksum = "5a966c650b47a064e7082170b4be74fca08c088d893244fc4b70123e3c1f3ee7"
  3161. dependencies = [
  3162. "reqwest",
  3163. ]
  3164. [[package]]
  3165. name = "ppv-lite86"
  3166. version = "0.2.17"
  3167. source = "registry+https://github.com/rust-lang/crates.io-index"
  3168. checksum = "5b40af805b3121feab8a3c29f04d8ad262fa8e0561883e7653e024ae4479e6de"
  3169. [[package]]
  3170. name = "prettyplease"
  3171. version = "0.2.5"
  3172. source = "registry+https://github.com/rust-lang/crates.io-index"
  3173. checksum = "617feabb81566b593beb4886fb8c1f38064169dae4dccad0e3220160c3b37203"
  3174. dependencies = [
  3175. "proc-macro2",
  3176. "syn 2.0.27",
  3177. ]
  3178. [[package]]
  3179. name = "proc-macro-crate"
  3180. version = "0.1.5"
  3181. source = "registry+https://github.com/rust-lang/crates.io-index"
  3182. checksum = "1d6ea3c4595b96363c13943497db34af4460fb474a95c43f4446ad341b8c9785"
  3183. dependencies = [
  3184. "toml",
  3185. ]
  3186. [[package]]
  3187. name = "proc-macro-error"
  3188. version = "1.0.4"
  3189. source = "registry+https://github.com/rust-lang/crates.io-index"
  3190. checksum = "da25490ff9892aab3fcf7c36f08cfb902dd3e71ca0f9f9517bea02a73a5ce38c"
  3191. dependencies = [
  3192. "proc-macro-error-attr",
  3193. "proc-macro2",
  3194. "quote",
  3195. "syn 1.0.109",
  3196. "version_check",
  3197. ]
  3198. [[package]]
  3199. name = "proc-macro-error-attr"
  3200. version = "1.0.4"
  3201. source = "registry+https://github.com/rust-lang/crates.io-index"
  3202. checksum = "a1be40180e52ecc98ad80b184934baf3d0d29f979574e439af5a55274b35f869"
  3203. dependencies = [
  3204. "proc-macro2",
  3205. "quote",
  3206. "version_check",
  3207. ]
  3208. [[package]]
  3209. name = "proc-macro-hack"
  3210. version = "0.5.20+deprecated"
  3211. source = "registry+https://github.com/rust-lang/crates.io-index"
  3212. checksum = "dc375e1527247fe1a97d8b7156678dfe7c1af2fc075c9a4db3690ecd2a148068"
  3213. [[package]]
  3214. name = "proc-macro2"
  3215. version = "1.0.66"
  3216. source = "registry+https://github.com/rust-lang/crates.io-index"
  3217. checksum = "18fb31db3f9bddb2ea821cde30a9f70117e3f119938b5ee630b7403aa6e2ead9"
  3218. dependencies = [
  3219. "unicode-ident",
  3220. ]
  3221. [[package]]
  3222. name = "prost"
  3223. version = "0.11.9"
  3224. source = "registry+https://github.com/rust-lang/crates.io-index"
  3225. checksum = "0b82eaa1d779e9a4bc1c3217db8ffbeabaae1dca241bf70183242128d48681cd"
  3226. dependencies = [
  3227. "bytes",
  3228. "prost-derive",
  3229. ]
  3230. [[package]]
  3231. name = "prost-derive"
  3232. version = "0.11.9"
  3233. source = "registry+https://github.com/rust-lang/crates.io-index"
  3234. checksum = "e5d2d8d10f3c6ded6da8b05b5fb3b8a5082514344d56c9f871412d29b4e075b4"
  3235. dependencies = [
  3236. "anyhow",
  3237. "itertools",
  3238. "proc-macro2",
  3239. "quote",
  3240. "syn 1.0.109",
  3241. ]
  3242. [[package]]
  3243. name = "prost-types"
  3244. version = "0.11.9"
  3245. source = "registry+https://github.com/rust-lang/crates.io-index"
  3246. checksum = "213622a1460818959ac1181aaeb2dc9c7f63df720db7d788b3e24eacd1983e13"
  3247. dependencies = [
  3248. "prost",
  3249. ]
  3250. [[package]]
  3251. name = "protobuf"
  3252. version = "2.28.0"
  3253. source = "registry+https://github.com/rust-lang/crates.io-index"
  3254. checksum = "106dd99e98437432fed6519dedecfade6a06a73bb7b2a1e019fdd2bee5778d94"
  3255. [[package]]
  3256. name = "protobuf-codegen"
  3257. version = "2.28.0"
  3258. source = "registry+https://github.com/rust-lang/crates.io-index"
  3259. checksum = "033460afb75cf755fcfc16dfaed20b86468082a2ea24e05ac35ab4a099a017d6"
  3260. dependencies = [
  3261. "protobuf",
  3262. ]
  3263. [[package]]
  3264. name = "protoc"
  3265. version = "2.28.0"
  3266. source = "registry+https://github.com/rust-lang/crates.io-index"
  3267. checksum = "a0218039c514f9e14a5060742ecd50427f8ac4f85a6dc58f2ddb806e318c55ee"
  3268. dependencies = [
  3269. "log",
  3270. "which",
  3271. ]
  3272. [[package]]
  3273. name = "protoc-bin-vendored"
  3274. version = "3.0.0"
  3275. source = "registry+https://github.com/rust-lang/crates.io-index"
  3276. checksum = "005ca8623e5633e298ad1f917d8be0a44bcf406bf3cde3b80e63003e49a3f27d"
  3277. dependencies = [
  3278. "protoc-bin-vendored-linux-aarch_64",
  3279. "protoc-bin-vendored-linux-ppcle_64",
  3280. "protoc-bin-vendored-linux-x86_32",
  3281. "protoc-bin-vendored-linux-x86_64",
  3282. "protoc-bin-vendored-macos-x86_64",
  3283. "protoc-bin-vendored-win32",
  3284. ]
  3285. [[package]]
  3286. name = "protoc-bin-vendored-linux-aarch_64"
  3287. version = "3.0.0"
  3288. source = "registry+https://github.com/rust-lang/crates.io-index"
  3289. checksum = "8fb9fc9cce84c8694b6ea01cc6296617b288b703719b725b8c9c65f7c5874435"
  3290. [[package]]
  3291. name = "protoc-bin-vendored-linux-ppcle_64"
  3292. version = "3.0.0"
  3293. source = "registry+https://github.com/rust-lang/crates.io-index"
  3294. checksum = "02d2a07dcf7173a04d49974930ccbfb7fd4d74df30ecfc8762cf2f895a094516"
  3295. [[package]]
  3296. name = "protoc-bin-vendored-linux-x86_32"
  3297. version = "3.0.0"
  3298. source = "registry+https://github.com/rust-lang/crates.io-index"
  3299. checksum = "d54fef0b04fcacba64d1d80eed74a20356d96847da8497a59b0a0a436c9165b0"
  3300. [[package]]
  3301. name = "protoc-bin-vendored-linux-x86_64"
  3302. version = "3.0.0"
  3303. source = "registry+https://github.com/rust-lang/crates.io-index"
  3304. checksum = "b8782f2ce7d43a9a5c74ea4936f001e9e8442205c244f7a3d4286bd4c37bc924"
  3305. [[package]]
  3306. name = "protoc-bin-vendored-macos-x86_64"
  3307. version = "3.0.0"
  3308. source = "registry+https://github.com/rust-lang/crates.io-index"
  3309. checksum = "b5de656c7ee83f08e0ae5b81792ccfdc1d04e7876b1d9a38e6876a9e09e02537"
  3310. [[package]]
  3311. name = "protoc-bin-vendored-win32"
  3312. version = "3.0.0"
  3313. source = "registry+https://github.com/rust-lang/crates.io-index"
  3314. checksum = "9653c3ed92974e34c5a6e0a510864dab979760481714c172e0a34e437cb98804"
  3315. [[package]]
  3316. name = "protoc-rust"
  3317. version = "2.28.0"
  3318. source = "registry+https://github.com/rust-lang/crates.io-index"
  3319. checksum = "22f8a182bb17c485f20bdc4274a8c39000a61024cfe461c799b50fec77267838"
  3320. dependencies = [
  3321. "protobuf",
  3322. "protobuf-codegen",
  3323. "protoc",
  3324. "tempfile",
  3325. ]
  3326. [[package]]
  3327. name = "ptr_meta"
  3328. version = "0.1.4"
  3329. source = "registry+https://github.com/rust-lang/crates.io-index"
  3330. checksum = "0738ccf7ea06b608c10564b31debd4f5bc5e197fc8bfe088f68ae5ce81e7a4f1"
  3331. dependencies = [
  3332. "ptr_meta_derive",
  3333. ]
  3334. [[package]]
  3335. name = "ptr_meta_derive"
  3336. version = "0.1.4"
  3337. source = "registry+https://github.com/rust-lang/crates.io-index"
  3338. checksum = "16b845dbfca988fa33db069c0e230574d15a3088f147a87b64c7589eb662c9ac"
  3339. dependencies = [
  3340. "proc-macro2",
  3341. "quote",
  3342. "syn 1.0.109",
  3343. ]
  3344. [[package]]
  3345. name = "quickcheck"
  3346. version = "1.0.3"
  3347. source = "registry+https://github.com/rust-lang/crates.io-index"
  3348. checksum = "588f6378e4dd99458b60ec275b4477add41ce4fa9f64dcba6f15adccb19b50d6"
  3349. dependencies = [
  3350. "env_logger",
  3351. "log",
  3352. "rand 0.8.5",
  3353. ]
  3354. [[package]]
  3355. name = "quickcheck_macros"
  3356. version = "1.0.0"
  3357. source = "registry+https://github.com/rust-lang/crates.io-index"
  3358. checksum = "b22a693222d716a9587786f37ac3f6b4faedb5b80c23914e7303ff5a1d8016e9"
  3359. dependencies = [
  3360. "proc-macro2",
  3361. "quote",
  3362. "syn 1.0.109",
  3363. ]
  3364. [[package]]
  3365. name = "quote"
  3366. version = "1.0.32"
  3367. source = "registry+https://github.com/rust-lang/crates.io-index"
  3368. checksum = "50f3b39ccfb720540debaa0164757101c08ecb8d326b15358ce76a62c7e85965"
  3369. dependencies = [
  3370. "proc-macro2",
  3371. ]
  3372. [[package]]
  3373. name = "r2d2"
  3374. version = "0.8.10"
  3375. source = "registry+https://github.com/rust-lang/crates.io-index"
  3376. checksum = "51de85fb3fb6524929c8a2eb85e6b6d363de4e8c48f9e2c2eac4944abc181c93"
  3377. dependencies = [
  3378. "log",
  3379. "parking_lot 0.12.1",
  3380. "scheduled-thread-pool",
  3381. ]
  3382. [[package]]
  3383. name = "rand"
  3384. version = "0.4.6"
  3385. source = "registry+https://github.com/rust-lang/crates.io-index"
  3386. checksum = "552840b97013b1a26992c11eac34bdd778e464601a4c2054b5f0bff7c6761293"
  3387. dependencies = [
  3388. "fuchsia-cprng",
  3389. "libc",
  3390. "rand_core 0.3.1",
  3391. "rdrand",
  3392. "winapi",
  3393. ]
  3394. [[package]]
  3395. name = "rand"
  3396. version = "0.7.3"
  3397. source = "registry+https://github.com/rust-lang/crates.io-index"
  3398. checksum = "6a6b1679d49b24bbfe0c803429aa1874472f50d9b363131f0e89fc356b544d03"
  3399. dependencies = [
  3400. "getrandom 0.1.16",
  3401. "libc",
  3402. "rand_chacha 0.2.2",
  3403. "rand_core 0.5.1",
  3404. "rand_hc",
  3405. "rand_pcg",
  3406. ]
  3407. [[package]]
  3408. name = "rand"
  3409. version = "0.8.5"
  3410. source = "registry+https://github.com/rust-lang/crates.io-index"
  3411. checksum = "34af8d1a0e25924bc5b7c43c079c942339d8f0a8b57c39049bef581b46327404"
  3412. dependencies = [
  3413. "libc",
  3414. "rand_chacha 0.3.1",
  3415. "rand_core 0.6.4",
  3416. ]
  3417. [[package]]
  3418. name = "rand_chacha"
  3419. version = "0.2.2"
  3420. source = "registry+https://github.com/rust-lang/crates.io-index"
  3421. checksum = "f4c8ed856279c9737206bf725bf36935d8666ead7aa69b52be55af369d193402"
  3422. dependencies = [
  3423. "ppv-lite86",
  3424. "rand_core 0.5.1",
  3425. ]
  3426. [[package]]
  3427. name = "rand_chacha"
  3428. version = "0.3.1"
  3429. source = "registry+https://github.com/rust-lang/crates.io-index"
  3430. checksum = "e6c10a63a0fa32252be49d21e7709d4d4baf8d231c2dbce1eaa8141b9b127d88"
  3431. dependencies = [
  3432. "ppv-lite86",
  3433. "rand_core 0.6.4",
  3434. ]
  3435. [[package]]
  3436. name = "rand_core"
  3437. version = "0.3.1"
  3438. source = "registry+https://github.com/rust-lang/crates.io-index"
  3439. checksum = "7a6fdeb83b075e8266dcc8762c22776f6877a63111121f5f8c7411e5be7eed4b"
  3440. dependencies = [
  3441. "rand_core 0.4.2",
  3442. ]
  3443. [[package]]
  3444. name = "rand_core"
  3445. version = "0.4.2"
  3446. source = "registry+https://github.com/rust-lang/crates.io-index"
  3447. checksum = "9c33a3c44ca05fa6f1807d8e6743f3824e8509beca625669633be0acbdf509dc"
  3448. [[package]]
  3449. name = "rand_core"
  3450. version = "0.5.1"
  3451. source = "registry+https://github.com/rust-lang/crates.io-index"
  3452. checksum = "90bde5296fc891b0cef12a6d03ddccc162ce7b2aff54160af9338f8d40df6d19"
  3453. dependencies = [
  3454. "getrandom 0.1.16",
  3455. ]
  3456. [[package]]
  3457. name = "rand_core"
  3458. version = "0.6.4"
  3459. source = "registry+https://github.com/rust-lang/crates.io-index"
  3460. checksum = "ec0be4795e2f6a28069bec0b5ff3e2ac9bafc99e6a9a7dc3547996c5c816922c"
  3461. dependencies = [
  3462. "getrandom 0.2.9",
  3463. ]
  3464. [[package]]
  3465. name = "rand_hc"
  3466. version = "0.2.0"
  3467. source = "registry+https://github.com/rust-lang/crates.io-index"
  3468. checksum = "ca3129af7b92a17112d59ad498c6f81eaf463253766b90396d39ea7a39d6613c"
  3469. dependencies = [
  3470. "rand_core 0.5.1",
  3471. ]
  3472. [[package]]
  3473. name = "rand_pcg"
  3474. version = "0.2.1"
  3475. source = "registry+https://github.com/rust-lang/crates.io-index"
  3476. checksum = "16abd0c1b639e9eb4d7c50c0b8100b0d0f849be2349829c740fe8e6eb4816429"
  3477. dependencies = [
  3478. "rand_core 0.5.1",
  3479. ]
  3480. [[package]]
  3481. name = "rayon"
  3482. version = "1.7.0"
  3483. source = "registry+https://github.com/rust-lang/crates.io-index"
  3484. checksum = "1d2df5196e37bcc87abebc0053e20787d73847bb33134a69841207dd0a47f03b"
  3485. dependencies = [
  3486. "either",
  3487. "rayon-core",
  3488. ]
  3489. [[package]]
  3490. name = "rayon-core"
  3491. version = "1.11.0"
  3492. source = "registry+https://github.com/rust-lang/crates.io-index"
  3493. checksum = "4b8f95bd6966f5c87776639160a66bd8ab9895d9d4ab01ddba9fc60661aebe8d"
  3494. dependencies = [
  3495. "crossbeam-channel",
  3496. "crossbeam-deque",
  3497. "crossbeam-utils",
  3498. "num_cpus",
  3499. ]
  3500. [[package]]
  3501. name = "rdrand"
  3502. version = "0.4.0"
  3503. source = "registry+https://github.com/rust-lang/crates.io-index"
  3504. checksum = "678054eb77286b51581ba43620cc911abf02758c91f93f479767aed0f90458b2"
  3505. dependencies = [
  3506. "rand_core 0.3.1",
  3507. ]
  3508. [[package]]
  3509. name = "redox_syscall"
  3510. version = "0.1.57"
  3511. source = "registry+https://github.com/rust-lang/crates.io-index"
  3512. checksum = "41cc0f7e4d5d4544e8861606a285bb08d3e70712ccc7d2b84d7c0ccfaf4b05ce"
  3513. [[package]]
  3514. name = "redox_syscall"
  3515. version = "0.2.16"
  3516. source = "registry+https://github.com/rust-lang/crates.io-index"
  3517. checksum = "fb5a58c1855b4b6819d59012155603f0b22ad30cad752600aadfcb695265519a"
  3518. dependencies = [
  3519. "bitflags",
  3520. ]
  3521. [[package]]
  3522. name = "redox_syscall"
  3523. version = "0.3.5"
  3524. source = "registry+https://github.com/rust-lang/crates.io-index"
  3525. checksum = "567664f262709473930a4bf9e51bf2ebf3348f2e748ccc50dea20646858f8f29"
  3526. dependencies = [
  3527. "bitflags",
  3528. ]
  3529. [[package]]
  3530. name = "redox_users"
  3531. version = "0.4.3"
  3532. source = "registry+https://github.com/rust-lang/crates.io-index"
  3533. checksum = "b033d837a7cf162d7993aded9304e30a83213c648b6e389db233191f891e5c2b"
  3534. dependencies = [
  3535. "getrandom 0.2.9",
  3536. "redox_syscall 0.2.16",
  3537. "thiserror",
  3538. ]
  3539. [[package]]
  3540. name = "regex"
  3541. version = "1.7.3"
  3542. source = "registry+https://github.com/rust-lang/crates.io-index"
  3543. checksum = "8b1f693b24f6ac912f4893ef08244d70b6067480d2f1a46e950c9691e6749d1d"
  3544. dependencies = [
  3545. "aho-corasick",
  3546. "memchr",
  3547. "regex-syntax",
  3548. ]
  3549. [[package]]
  3550. name = "regex-automata"
  3551. version = "0.1.10"
  3552. source = "registry+https://github.com/rust-lang/crates.io-index"
  3553. checksum = "6c230d73fb8d8c1b9c0b3135c5142a8acee3a0558fb8db5cf1cb65f8d7862132"
  3554. dependencies = [
  3555. "regex-syntax",
  3556. ]
  3557. [[package]]
  3558. name = "regex-syntax"
  3559. version = "0.6.29"
  3560. source = "registry+https://github.com/rust-lang/crates.io-index"
  3561. checksum = "f162c6dd7b008981e4d40210aca20b4bd0f9b60ca9271061b07f78537722f2e1"
  3562. [[package]]
  3563. name = "remove_dir_all"
  3564. version = "0.5.3"
  3565. source = "registry+https://github.com/rust-lang/crates.io-index"
  3566. checksum = "3acd125665422973a33ac9d3dd2df85edad0f4ae9b00dafb1a05e43a9f5ef8e7"
  3567. dependencies = [
  3568. "winapi",
  3569. ]
  3570. [[package]]
  3571. name = "rend"
  3572. version = "0.4.0"
  3573. source = "registry+https://github.com/rust-lang/crates.io-index"
  3574. checksum = "581008d2099240d37fb08d77ad713bcaec2c4d89d50b5b21a8bb1996bbab68ab"
  3575. dependencies = [
  3576. "bytecheck",
  3577. ]
  3578. [[package]]
  3579. name = "reqwest"
  3580. version = "0.11.16"
  3581. source = "registry+https://github.com/rust-lang/crates.io-index"
  3582. checksum = "27b71749df584b7f4cac2c426c127a7c785a5106cc98f7a8feb044115f0fa254"
  3583. dependencies = [
  3584. "base64 0.21.0",
  3585. "bytes",
  3586. "encoding_rs",
  3587. "futures-core",
  3588. "futures-util",
  3589. "h2",
  3590. "http",
  3591. "http-body",
  3592. "hyper",
  3593. "hyper-rustls",
  3594. "hyper-tls",
  3595. "ipnet",
  3596. "js-sys",
  3597. "log",
  3598. "mime",
  3599. "native-tls",
  3600. "once_cell",
  3601. "percent-encoding",
  3602. "pin-project-lite",
  3603. "rustls",
  3604. "rustls-pemfile",
  3605. "serde",
  3606. "serde_json",
  3607. "serde_urlencoded",
  3608. "tokio",
  3609. "tokio-native-tls",
  3610. "tokio-rustls",
  3611. "tower-service",
  3612. "url",
  3613. "wasm-bindgen",
  3614. "wasm-bindgen-futures",
  3615. "web-sys",
  3616. "webpki-roots",
  3617. "winreg",
  3618. ]
  3619. [[package]]
  3620. name = "ring"
  3621. version = "0.16.20"
  3622. source = "registry+https://github.com/rust-lang/crates.io-index"
  3623. checksum = "3053cf52e236a3ed746dfc745aa9cacf1b791d846bdaf412f60a8d7d6e17c8fc"
  3624. dependencies = [
  3625. "cc",
  3626. "libc",
  3627. "once_cell",
  3628. "spin",
  3629. "untrusted",
  3630. "web-sys",
  3631. "winapi",
  3632. ]
  3633. [[package]]
  3634. name = "rkyv"
  3635. version = "0.7.41"
  3636. source = "registry+https://github.com/rust-lang/crates.io-index"
  3637. checksum = "21499ed91807f07ae081880aabb2ccc0235e9d88011867d984525e9a4c3cfa3e"
  3638. dependencies = [
  3639. "bytecheck",
  3640. "hashbrown 0.12.3",
  3641. "ptr_meta",
  3642. "rend",
  3643. "rkyv_derive",
  3644. "seahash",
  3645. ]
  3646. [[package]]
  3647. name = "rkyv_derive"
  3648. version = "0.7.41"
  3649. source = "registry+https://github.com/rust-lang/crates.io-index"
  3650. checksum = "ac1c672430eb41556291981f45ca900a0239ad007242d1cb4b4167af842db666"
  3651. dependencies = [
  3652. "proc-macro2",
  3653. "quote",
  3654. "syn 1.0.109",
  3655. ]
  3656. [[package]]
  3657. name = "rocksdb"
  3658. version = "0.21.0"
  3659. source = "registry+https://github.com/rust-lang/crates.io-index"
  3660. checksum = "bb6f170a4041d50a0ce04b0d2e14916d6ca863ea2e422689a5b694395d299ffe"
  3661. dependencies = [
  3662. "libc",
  3663. "librocksdb-sys",
  3664. ]
  3665. [[package]]
  3666. name = "rusoto_credential"
  3667. version = "0.48.0"
  3668. source = "registry+https://github.com/rust-lang/crates.io-index"
  3669. checksum = "ee0a6c13db5aad6047b6a44ef023dbbc21a056b6dab5be3b79ce4283d5c02d05"
  3670. dependencies = [
  3671. "async-trait",
  3672. "chrono",
  3673. "dirs-next",
  3674. "futures",
  3675. "hyper",
  3676. "serde",
  3677. "serde_json",
  3678. "shlex",
  3679. "tokio",
  3680. "zeroize",
  3681. ]
  3682. [[package]]
  3683. name = "rust_decimal"
  3684. version = "1.29.1"
  3685. source = "registry+https://github.com/rust-lang/crates.io-index"
  3686. checksum = "26bd36b60561ee1fb5ec2817f198b6fd09fa571c897a5e86d1487cfc2b096dfc"
  3687. dependencies = [
  3688. "arrayvec 0.7.2",
  3689. "borsh",
  3690. "bytecheck",
  3691. "byteorder",
  3692. "bytes",
  3693. "num-traits",
  3694. "rand 0.8.5",
  3695. "rkyv",
  3696. "serde",
  3697. "serde_json",
  3698. ]
  3699. [[package]]
  3700. name = "rust_decimal_macros"
  3701. version = "1.29.1"
  3702. source = "registry+https://github.com/rust-lang/crates.io-index"
  3703. checksum = "0e773fd3da1ed42472fdf3cfdb4972948a555bc3d73f5e0bdb99d17e7b54c687"
  3704. dependencies = [
  3705. "quote",
  3706. "rust_decimal",
  3707. ]
  3708. [[package]]
  3709. name = "rustc-demangle"
  3710. version = "0.1.22"
  3711. source = "registry+https://github.com/rust-lang/crates.io-index"
  3712. checksum = "d4a36c42d1873f9a77c53bde094f9664d9891bc604a45b4798fd2c389ed12e5b"
  3713. [[package]]
  3714. name = "rustc-hash"
  3715. version = "1.1.0"
  3716. source = "registry+https://github.com/rust-lang/crates.io-index"
  3717. checksum = "08d43f7aa6b08d49f382cde6a7982047c3426db949b1424bc4b7ec9ae12c6ce2"
  3718. [[package]]
  3719. name = "rustc_version"
  3720. version = "0.4.0"
  3721. source = "registry+https://github.com/rust-lang/crates.io-index"
  3722. checksum = "bfa0f585226d2e68097d4f95d113b15b83a82e819ab25717ec0590d9584ef366"
  3723. dependencies = [
  3724. "semver",
  3725. ]
  3726. [[package]]
  3727. name = "rustix"
  3728. version = "0.37.11"
  3729. source = "registry+https://github.com/rust-lang/crates.io-index"
  3730. checksum = "85597d61f83914ddeba6a47b3b8ffe7365107221c2e557ed94426489fefb5f77"
  3731. dependencies = [
  3732. "bitflags",
  3733. "errno",
  3734. "io-lifetimes",
  3735. "libc",
  3736. "linux-raw-sys",
  3737. "windows-sys 0.48.0",
  3738. ]
  3739. [[package]]
  3740. name = "rustls"
  3741. version = "0.20.8"
  3742. source = "registry+https://github.com/rust-lang/crates.io-index"
  3743. checksum = "fff78fc74d175294f4e83b28343315ffcfb114b156f0185e9741cb5570f50e2f"
  3744. dependencies = [
  3745. "log",
  3746. "ring",
  3747. "sct",
  3748. "webpki",
  3749. ]
  3750. [[package]]
  3751. name = "rustls-native-certs"
  3752. version = "0.6.3"
  3753. source = "registry+https://github.com/rust-lang/crates.io-index"
  3754. checksum = "a9aace74cb666635c918e9c12bc0d348266037aa8eb599b5cba565709a8dff00"
  3755. dependencies = [
  3756. "openssl-probe",
  3757. "rustls-pemfile",
  3758. "schannel",
  3759. "security-framework",
  3760. ]
  3761. [[package]]
  3762. name = "rustls-pemfile"
  3763. version = "1.0.2"
  3764. source = "registry+https://github.com/rust-lang/crates.io-index"
  3765. checksum = "d194b56d58803a43635bdc398cd17e383d6f71f9182b9a192c127ca42494a59b"
  3766. dependencies = [
  3767. "base64 0.21.0",
  3768. ]
  3769. [[package]]
  3770. name = "rustversion"
  3771. version = "1.0.12"
  3772. source = "registry+https://github.com/rust-lang/crates.io-index"
  3773. checksum = "4f3208ce4d8448b3f3e7d168a73f5e0c43a61e32930de3bceeccedb388b6bf06"
  3774. [[package]]
  3775. name = "rusty-money"
  3776. version = "0.4.1"
  3777. source = "registry+https://github.com/rust-lang/crates.io-index"
  3778. checksum = "5b28f881005eac7ad8d46b6f075da5f322bd7f4f83a38720fc069694ddadd683"
  3779. dependencies = [
  3780. "rust_decimal",
  3781. "rust_decimal_macros",
  3782. ]
  3783. [[package]]
  3784. name = "ryu"
  3785. version = "1.0.13"
  3786. source = "registry+https://github.com/rust-lang/crates.io-index"
  3787. checksum = "f91339c0467de62360649f8d3e185ca8de4224ff281f66000de5eb2a77a79041"
  3788. [[package]]
  3789. name = "same-file"
  3790. version = "1.0.6"
  3791. source = "registry+https://github.com/rust-lang/crates.io-index"
  3792. checksum = "93fc1dc3aaa9bfed95e02e6eadabb4baf7e3078b0bd1b4d7b6b0b68378900502"
  3793. dependencies = [
  3794. "winapi-util",
  3795. ]
  3796. [[package]]
  3797. name = "schannel"
  3798. version = "0.1.21"
  3799. source = "registry+https://github.com/rust-lang/crates.io-index"
  3800. checksum = "713cfb06c7059f3588fb8044c0fad1d09e3c01d225e25b9220dbfdcf16dbb1b3"
  3801. dependencies = [
  3802. "windows-sys 0.42.0",
  3803. ]
  3804. [[package]]
  3805. name = "scheduled-thread-pool"
  3806. version = "0.2.7"
  3807. source = "registry+https://github.com/rust-lang/crates.io-index"
  3808. checksum = "3cbc66816425a074528352f5789333ecff06ca41b36b0b0efdfbb29edc391a19"
  3809. dependencies = [
  3810. "parking_lot 0.12.1",
  3811. ]
  3812. [[package]]
  3813. name = "scopeguard"
  3814. version = "1.1.0"
  3815. source = "registry+https://github.com/rust-lang/crates.io-index"
  3816. checksum = "d29ab0c6d3fc0ee92fe66e2d99f700eab17a8d57d1c1d3b748380fb20baa78cd"
  3817. [[package]]
  3818. name = "scratch"
  3819. version = "1.0.5"
  3820. source = "registry+https://github.com/rust-lang/crates.io-index"
  3821. checksum = "1792db035ce95be60c3f8853017b3999209281c24e2ba5bc8e59bf97a0c590c1"
  3822. [[package]]
  3823. name = "sct"
  3824. version = "0.7.0"
  3825. source = "registry+https://github.com/rust-lang/crates.io-index"
  3826. checksum = "d53dcdb7c9f8158937a7981b48accfd39a43af418591a5d008c7b22b5e1b7ca4"
  3827. dependencies = [
  3828. "ring",
  3829. "untrusted",
  3830. ]
  3831. [[package]]
  3832. name = "seahash"
  3833. version = "4.1.0"
  3834. source = "registry+https://github.com/rust-lang/crates.io-index"
  3835. checksum = "1c107b6f4780854c8b126e228ea8869f4d7b71260f962fefb57b996b8959ba6b"
  3836. [[package]]
  3837. name = "security-framework"
  3838. version = "2.8.2"
  3839. source = "registry+https://github.com/rust-lang/crates.io-index"
  3840. checksum = "a332be01508d814fed64bf28f798a146d73792121129962fdf335bb3c49a4254"
  3841. dependencies = [
  3842. "bitflags",
  3843. "core-foundation",
  3844. "core-foundation-sys",
  3845. "libc",
  3846. "security-framework-sys",
  3847. ]
  3848. [[package]]
  3849. name = "security-framework-sys"
  3850. version = "2.8.0"
  3851. source = "registry+https://github.com/rust-lang/crates.io-index"
  3852. checksum = "31c9bb296072e961fcbd8853511dd39c2d8be2deb1e17c6860b1d30732b323b4"
  3853. dependencies = [
  3854. "core-foundation-sys",
  3855. "libc",
  3856. ]
  3857. [[package]]
  3858. name = "semver"
  3859. version = "1.0.18"
  3860. source = "registry+https://github.com/rust-lang/crates.io-index"
  3861. checksum = "b0293b4b29daaf487284529cc2f5675b8e57c61f70167ba415a463651fd6a918"
  3862. [[package]]
  3863. name = "serde"
  3864. version = "1.0.175"
  3865. source = "registry+https://github.com/rust-lang/crates.io-index"
  3866. checksum = "5d25439cd7397d044e2748a6fe2432b5e85db703d6d097bd014b3c0ad1ebff0b"
  3867. dependencies = [
  3868. "serde_derive",
  3869. ]
  3870. [[package]]
  3871. name = "serde-aux"
  3872. version = "4.2.0"
  3873. source = "registry+https://github.com/rust-lang/crates.io-index"
  3874. checksum = "c3dfe1b7eb6f9dcf011bd6fad169cdeaae75eda0d61b1a99a3f015b41b0cae39"
  3875. dependencies = [
  3876. "chrono",
  3877. "serde",
  3878. "serde_json",
  3879. ]
  3880. [[package]]
  3881. name = "serde_derive"
  3882. version = "1.0.175"
  3883. source = "registry+https://github.com/rust-lang/crates.io-index"
  3884. checksum = "b23f7ade6f110613c0d63858ddb8b94c1041f550eab58a16b371bdf2c9c80ab4"
  3885. dependencies = [
  3886. "proc-macro2",
  3887. "quote",
  3888. "syn 2.0.27",
  3889. ]
  3890. [[package]]
  3891. name = "serde_json"
  3892. version = "1.0.104"
  3893. source = "registry+https://github.com/rust-lang/crates.io-index"
  3894. checksum = "076066c5f1078eac5b722a31827a8832fe108bed65dfa75e233c89f8206e976c"
  3895. dependencies = [
  3896. "itoa",
  3897. "ryu",
  3898. "serde",
  3899. ]
  3900. [[package]]
  3901. name = "serde_repr"
  3902. version = "0.1.12"
  3903. source = "registry+https://github.com/rust-lang/crates.io-index"
  3904. checksum = "bcec881020c684085e55a25f7fd888954d56609ef363479dc5a1305eb0d40cab"
  3905. dependencies = [
  3906. "proc-macro2",
  3907. "quote",
  3908. "syn 2.0.27",
  3909. ]
  3910. [[package]]
  3911. name = "serde_urlencoded"
  3912. version = "0.7.1"
  3913. source = "registry+https://github.com/rust-lang/crates.io-index"
  3914. checksum = "d3491c14715ca2294c4d6a88f15e84739788c1d030eed8c110436aafdaa2f3fd"
  3915. dependencies = [
  3916. "form_urlencoded",
  3917. "itoa",
  3918. "ryu",
  3919. "serde",
  3920. ]
  3921. [[package]]
  3922. name = "sha1"
  3923. version = "0.10.5"
  3924. source = "registry+https://github.com/rust-lang/crates.io-index"
  3925. checksum = "f04293dc80c3993519f2d7f6f511707ee7094fe0c6d3406feb330cdb3540eba3"
  3926. dependencies = [
  3927. "cfg-if",
  3928. "cpufeatures",
  3929. "digest",
  3930. ]
  3931. [[package]]
  3932. name = "sha1_smol"
  3933. version = "1.0.0"
  3934. source = "registry+https://github.com/rust-lang/crates.io-index"
  3935. checksum = "ae1a47186c03a32177042e55dbc5fd5aee900b8e0069a8d70fba96a9375cd012"
  3936. [[package]]
  3937. name = "sha2"
  3938. version = "0.10.6"
  3939. source = "registry+https://github.com/rust-lang/crates.io-index"
  3940. checksum = "82e6b795fe2e3b1e845bafcb27aa35405c4d47cdfc92af5fc8d3002f76cebdc0"
  3941. dependencies = [
  3942. "cfg-if",
  3943. "cpufeatures",
  3944. "digest",
  3945. ]
  3946. [[package]]
  3947. name = "sharded-slab"
  3948. version = "0.1.4"
  3949. source = "registry+https://github.com/rust-lang/crates.io-index"
  3950. checksum = "900fba806f70c630b0a382d0d825e17a0f19fcd059a2ade1ff237bcddf446b31"
  3951. dependencies = [
  3952. "lazy_static",
  3953. ]
  3954. [[package]]
  3955. name = "shlex"
  3956. version = "1.1.0"
  3957. source = "registry+https://github.com/rust-lang/crates.io-index"
  3958. checksum = "43b2853a4d09f215c24cc5489c992ce46052d359b5109343cbafbf26bc62f8a3"
  3959. [[package]]
  3960. name = "signal-hook-registry"
  3961. version = "1.4.1"
  3962. source = "registry+https://github.com/rust-lang/crates.io-index"
  3963. checksum = "d8229b473baa5980ac72ef434c4415e70c4b5e71b423043adb4ba059f89c99a1"
  3964. dependencies = [
  3965. "libc",
  3966. ]
  3967. [[package]]
  3968. name = "simdutf8"
  3969. version = "0.1.4"
  3970. source = "registry+https://github.com/rust-lang/crates.io-index"
  3971. checksum = "f27f6278552951f1f2b8cf9da965d10969b2efdea95a6ec47987ab46edfe263a"
  3972. [[package]]
  3973. name = "similar"
  3974. version = "1.3.0"
  3975. source = "registry+https://github.com/rust-lang/crates.io-index"
  3976. checksum = "1ad1d488a557b235fc46dae55512ffbfc429d2482b08b4d9435ab07384ca8aec"
  3977. [[package]]
  3978. name = "similar"
  3979. version = "2.2.1"
  3980. source = "registry+https://github.com/rust-lang/crates.io-index"
  3981. checksum = "420acb44afdae038210c99e69aae24109f32f15500aa708e81d46c9f29d55fcf"
  3982. [[package]]
  3983. name = "siphasher"
  3984. version = "0.3.10"
  3985. source = "registry+https://github.com/rust-lang/crates.io-index"
  3986. checksum = "7bd3e3206899af3f8b12af284fafc038cc1dc2b41d1b89dd17297221c5d225de"
  3987. [[package]]
  3988. name = "slab"
  3989. version = "0.4.8"
  3990. source = "registry+https://github.com/rust-lang/crates.io-index"
  3991. checksum = "6528351c9bc8ab22353f9d776db39a20288e8d6c37ef8cfe3317cf875eecfc2d"
  3992. dependencies = [
  3993. "autocfg",
  3994. ]
  3995. [[package]]
  3996. name = "sled"
  3997. version = "0.34.7"
  3998. source = "registry+https://github.com/rust-lang/crates.io-index"
  3999. checksum = "7f96b4737c2ce5987354855aed3797279def4ebf734436c6aa4552cf8e169935"
  4000. dependencies = [
  4001. "crc32fast",
  4002. "crossbeam-epoch",
  4003. "crossbeam-utils",
  4004. "fs2",
  4005. "fxhash",
  4006. "libc",
  4007. "log",
  4008. "parking_lot 0.11.2",
  4009. ]
  4010. [[package]]
  4011. name = "slug"
  4012. version = "0.1.4"
  4013. source = "registry+https://github.com/rust-lang/crates.io-index"
  4014. checksum = "b3bc762e6a4b6c6fcaade73e77f9ebc6991b676f88bb2358bddb56560f073373"
  4015. dependencies = [
  4016. "deunicode",
  4017. ]
  4018. [[package]]
  4019. name = "smallstr"
  4020. version = "0.2.0"
  4021. source = "registry+https://github.com/rust-lang/crates.io-index"
  4022. checksum = "1e922794d168678729ffc7e07182721a14219c65814e66e91b839a272fe5ae4f"
  4023. dependencies = [
  4024. "smallvec",
  4025. ]
  4026. [[package]]
  4027. name = "smallvec"
  4028. version = "1.10.0"
  4029. source = "registry+https://github.com/rust-lang/crates.io-index"
  4030. checksum = "a507befe795404456341dfab10cef66ead4c041f62b8b11bbb92bffe5d0953e0"
  4031. [[package]]
  4032. name = "socket2"
  4033. version = "0.4.9"
  4034. source = "registry+https://github.com/rust-lang/crates.io-index"
  4035. checksum = "64a4a911eed85daf18834cfaa86a79b7d266ff93ff5ba14005426219480ed662"
  4036. dependencies = [
  4037. "libc",
  4038. "winapi",
  4039. ]
  4040. [[package]]
  4041. name = "socket2"
  4042. version = "0.5.3"
  4043. source = "registry+https://github.com/rust-lang/crates.io-index"
  4044. checksum = "2538b18701741680e0322a2302176d3253a35388e2e62f172f64f4f16605f877"
  4045. dependencies = [
  4046. "libc",
  4047. "windows-sys 0.48.0",
  4048. ]
  4049. [[package]]
  4050. name = "spin"
  4051. version = "0.5.2"
  4052. source = "registry+https://github.com/rust-lang/crates.io-index"
  4053. checksum = "6e63cff320ae2c57904679ba7cb63280a3dc4613885beafb148ee7bf9aa9042d"
  4054. [[package]]
  4055. name = "static_assertions"
  4056. version = "1.1.0"
  4057. source = "registry+https://github.com/rust-lang/crates.io-index"
  4058. checksum = "a2eb9349b6444b326872e140eb1cf5e7c522154d69e7a0ffb0fb81c06b37543f"
  4059. [[package]]
  4060. name = "stringprep"
  4061. version = "0.1.2"
  4062. source = "registry+https://github.com/rust-lang/crates.io-index"
  4063. checksum = "8ee348cb74b87454fff4b551cbf727025810a004f88aeacae7f85b87f4e9a1c1"
  4064. dependencies = [
  4065. "unicode-bidi",
  4066. "unicode-normalization",
  4067. ]
  4068. [[package]]
  4069. name = "strum"
  4070. version = "0.21.0"
  4071. source = "registry+https://github.com/rust-lang/crates.io-index"
  4072. checksum = "aaf86bbcfd1fa9670b7a129f64fc0c9fcbbfe4f1bc4210e9e98fe71ffc12cde2"
  4073. [[package]]
  4074. name = "strum_macros"
  4075. version = "0.21.1"
  4076. source = "registry+https://github.com/rust-lang/crates.io-index"
  4077. checksum = "d06aaeeee809dbc59eb4556183dd927df67db1540de5be8d3ec0b6636358a5ec"
  4078. dependencies = [
  4079. "heck",
  4080. "proc-macro2",
  4081. "quote",
  4082. "syn 1.0.109",
  4083. ]
  4084. [[package]]
  4085. name = "subtle"
  4086. version = "2.4.1"
  4087. source = "registry+https://github.com/rust-lang/crates.io-index"
  4088. checksum = "6bdef32e8150c2a081110b42772ffe7d7c9032b606bc226c8260fd97e0976601"
  4089. [[package]]
  4090. name = "syn"
  4091. version = "1.0.109"
  4092. source = "registry+https://github.com/rust-lang/crates.io-index"
  4093. checksum = "72b64191b275b66ffe2469e8af2c1cfe3bafa67b529ead792a6d0160888b4237"
  4094. dependencies = [
  4095. "proc-macro2",
  4096. "quote",
  4097. "unicode-ident",
  4098. ]
  4099. [[package]]
  4100. name = "syn"
  4101. version = "2.0.27"
  4102. source = "registry+https://github.com/rust-lang/crates.io-index"
  4103. checksum = "b60f673f44a8255b9c8c657daf66a596d435f2da81a555b06dc644d080ba45e0"
  4104. dependencies = [
  4105. "proc-macro2",
  4106. "quote",
  4107. "unicode-ident",
  4108. ]
  4109. [[package]]
  4110. name = "sync_wrapper"
  4111. version = "0.1.2"
  4112. source = "registry+https://github.com/rust-lang/crates.io-index"
  4113. checksum = "2047c6ded9c721764247e62cd3b03c09ffc529b2ba5b10ec482ae507a4a70160"
  4114. [[package]]
  4115. name = "tempdir"
  4116. version = "0.3.7"
  4117. source = "registry+https://github.com/rust-lang/crates.io-index"
  4118. checksum = "15f2b5fb00ccdf689e0149d1b1b3c03fead81c2b37735d812fa8bddbbf41b6d8"
  4119. dependencies = [
  4120. "rand 0.4.6",
  4121. "remove_dir_all",
  4122. ]
  4123. [[package]]
  4124. name = "tempfile"
  4125. version = "3.5.0"
  4126. source = "registry+https://github.com/rust-lang/crates.io-index"
  4127. checksum = "b9fbec84f381d5795b08656e4912bec604d162bff9291d6189a78f4c8ab87998"
  4128. dependencies = [
  4129. "cfg-if",
  4130. "fastrand",
  4131. "redox_syscall 0.3.5",
  4132. "rustix",
  4133. "windows-sys 0.45.0",
  4134. ]
  4135. [[package]]
  4136. name = "tera"
  4137. version = "1.18.1"
  4138. source = "registry+https://github.com/rust-lang/crates.io-index"
  4139. checksum = "95a665751302f22a03c56721e23094e4dc22b04a80f381e6737a07bf7a7c70c0"
  4140. dependencies = [
  4141. "chrono",
  4142. "chrono-tz 0.6.1",
  4143. "globwalk",
  4144. "humansize",
  4145. "lazy_static",
  4146. "percent-encoding",
  4147. "pest",
  4148. "pest_derive",
  4149. "rand 0.8.5",
  4150. "regex",
  4151. "serde",
  4152. "serde_json",
  4153. "slug",
  4154. "thread_local",
  4155. "unic-segment",
  4156. ]
  4157. [[package]]
  4158. name = "termcolor"
  4159. version = "1.2.0"
  4160. source = "registry+https://github.com/rust-lang/crates.io-index"
  4161. checksum = "be55cf8942feac5c765c2c993422806843c9a9a45d4d5c407ad6dd2ea95eb9b6"
  4162. dependencies = [
  4163. "winapi-util",
  4164. ]
  4165. [[package]]
  4166. name = "terminal_size"
  4167. version = "0.1.17"
  4168. source = "registry+https://github.com/rust-lang/crates.io-index"
  4169. checksum = "633c1a546cee861a1a6d0dc69ebeca693bf4296661ba7852b9d21d159e0506df"
  4170. dependencies = [
  4171. "libc",
  4172. "winapi",
  4173. ]
  4174. [[package]]
  4175. name = "thiserror"
  4176. version = "1.0.40"
  4177. source = "registry+https://github.com/rust-lang/crates.io-index"
  4178. checksum = "978c9a314bd8dc99be594bc3c175faaa9794be04a5a5e153caba6915336cebac"
  4179. dependencies = [
  4180. "thiserror-impl",
  4181. ]
  4182. [[package]]
  4183. name = "thiserror-impl"
  4184. version = "1.0.40"
  4185. source = "registry+https://github.com/rust-lang/crates.io-index"
  4186. checksum = "f9456a42c5b0d803c8cd86e73dd7cc9edd429499f37a3550d286d5e86720569f"
  4187. dependencies = [
  4188. "proc-macro2",
  4189. "quote",
  4190. "syn 2.0.27",
  4191. ]
  4192. [[package]]
  4193. name = "thread-id"
  4194. version = "3.3.0"
  4195. source = "registry+https://github.com/rust-lang/crates.io-index"
  4196. checksum = "c7fbf4c9d56b320106cd64fd024dadfa0be7cb4706725fc44a7d7ce952d820c1"
  4197. dependencies = [
  4198. "libc",
  4199. "redox_syscall 0.1.57",
  4200. "winapi",
  4201. ]
  4202. [[package]]
  4203. name = "thread_local"
  4204. version = "1.1.4"
  4205. source = "registry+https://github.com/rust-lang/crates.io-index"
  4206. checksum = "5516c27b78311c50bf42c071425c560ac799b11c30b31f87e3081965fe5e0180"
  4207. dependencies = [
  4208. "once_cell",
  4209. ]
  4210. [[package]]
  4211. name = "time"
  4212. version = "0.1.45"
  4213. source = "registry+https://github.com/rust-lang/crates.io-index"
  4214. checksum = "1b797afad3f312d1c66a56d11d0316f916356d11bd158fbc6ca6389ff6bf805a"
  4215. dependencies = [
  4216. "libc",
  4217. "wasi 0.10.0+wasi-snapshot-preview1",
  4218. "winapi",
  4219. ]
  4220. [[package]]
  4221. name = "time"
  4222. version = "0.3.21"
  4223. source = "registry+https://github.com/rust-lang/crates.io-index"
  4224. checksum = "8f3403384eaacbca9923fa06940178ac13e4edb725486d70e8e15881d0c836cc"
  4225. dependencies = [
  4226. "serde",
  4227. "time-core",
  4228. "time-macros",
  4229. ]
  4230. [[package]]
  4231. name = "time-core"
  4232. version = "0.1.1"
  4233. source = "registry+https://github.com/rust-lang/crates.io-index"
  4234. checksum = "7300fbefb4dadc1af235a9cef3737cea692a9d97e1b9cbcd4ebdae6f8868e6fb"
  4235. [[package]]
  4236. name = "time-macros"
  4237. version = "0.2.9"
  4238. source = "registry+https://github.com/rust-lang/crates.io-index"
  4239. checksum = "372950940a5f07bf38dbe211d7283c9e6d7327df53794992d293e534c733d09b"
  4240. dependencies = [
  4241. "time-core",
  4242. ]
  4243. [[package]]
  4244. name = "tinyvec"
  4245. version = "1.6.0"
  4246. source = "registry+https://github.com/rust-lang/crates.io-index"
  4247. checksum = "87cc5ceb3875bb20c2890005a4e226a4651264a5c75edb2421b52861a0a0cb50"
  4248. dependencies = [
  4249. "tinyvec_macros",
  4250. ]
  4251. [[package]]
  4252. name = "tinyvec_macros"
  4253. version = "0.1.1"
  4254. source = "registry+https://github.com/rust-lang/crates.io-index"
  4255. checksum = "1f3ccbac311fea05f86f61904b462b55fb3df8837a366dfc601a0161d0532f20"
  4256. [[package]]
  4257. name = "tokio"
  4258. version = "1.27.0"
  4259. source = "registry+https://github.com/rust-lang/crates.io-index"
  4260. checksum = "d0de47a4eecbe11f498978a9b29d792f0d2692d1dd003650c24c76510e3bc001"
  4261. dependencies = [
  4262. "autocfg",
  4263. "bytes",
  4264. "libc",
  4265. "mio",
  4266. "num_cpus",
  4267. "parking_lot 0.12.1",
  4268. "pin-project-lite",
  4269. "signal-hook-registry",
  4270. "socket2 0.4.9",
  4271. "tokio-macros",
  4272. "tracing",
  4273. "windows-sys 0.45.0",
  4274. ]
  4275. [[package]]
  4276. name = "tokio-io-timeout"
  4277. version = "1.2.0"
  4278. source = "registry+https://github.com/rust-lang/crates.io-index"
  4279. checksum = "30b74022ada614a1b4834de765f9bb43877f910cc8ce4be40e89042c9223a8bf"
  4280. dependencies = [
  4281. "pin-project-lite",
  4282. "tokio",
  4283. ]
  4284. [[package]]
  4285. name = "tokio-macros"
  4286. version = "2.0.0"
  4287. source = "registry+https://github.com/rust-lang/crates.io-index"
  4288. checksum = "61a573bdc87985e9d6ddeed1b3d864e8a302c847e40d647746df2f1de209d1ce"
  4289. dependencies = [
  4290. "proc-macro2",
  4291. "quote",
  4292. "syn 2.0.27",
  4293. ]
  4294. [[package]]
  4295. name = "tokio-native-tls"
  4296. version = "0.3.1"
  4297. source = "registry+https://github.com/rust-lang/crates.io-index"
  4298. checksum = "bbae76ab933c85776efabc971569dd6119c580d8f5d448769dec1764bf796ef2"
  4299. dependencies = [
  4300. "native-tls",
  4301. "tokio",
  4302. ]
  4303. [[package]]
  4304. name = "tokio-postgres"
  4305. version = "0.7.8"
  4306. source = "registry+https://github.com/rust-lang/crates.io-index"
  4307. checksum = "6e89f6234aa8fd43779746012fcf53603cdb91fdd8399aa0de868c2d56b6dde1"
  4308. dependencies = [
  4309. "async-trait",
  4310. "byteorder",
  4311. "bytes",
  4312. "fallible-iterator",
  4313. "futures-channel",
  4314. "futures-util",
  4315. "log",
  4316. "parking_lot 0.12.1",
  4317. "percent-encoding",
  4318. "phf 0.11.1",
  4319. "pin-project-lite",
  4320. "postgres-protocol",
  4321. "postgres-types",
  4322. "socket2 0.5.3",
  4323. "tokio",
  4324. "tokio-util",
  4325. ]
  4326. [[package]]
  4327. name = "tokio-retry"
  4328. version = "0.3.0"
  4329. source = "registry+https://github.com/rust-lang/crates.io-index"
  4330. checksum = "7f57eb36ecbe0fc510036adff84824dd3c24bb781e21bfa67b69d556aa85214f"
  4331. dependencies = [
  4332. "pin-project",
  4333. "rand 0.8.5",
  4334. "tokio",
  4335. ]
  4336. [[package]]
  4337. name = "tokio-rustls"
  4338. version = "0.23.4"
  4339. source = "registry+https://github.com/rust-lang/crates.io-index"
  4340. checksum = "c43ee83903113e03984cb9e5cebe6c04a5116269e900e3ddba8f068a62adda59"
  4341. dependencies = [
  4342. "rustls",
  4343. "tokio",
  4344. "webpki",
  4345. ]
  4346. [[package]]
  4347. name = "tokio-stream"
  4348. version = "0.1.14"
  4349. source = "registry+https://github.com/rust-lang/crates.io-index"
  4350. checksum = "397c988d37662c7dda6d2208364a706264bf3d6138b11d436cbac0ad38832842"
  4351. dependencies = [
  4352. "futures-core",
  4353. "pin-project-lite",
  4354. "tokio",
  4355. "tokio-util",
  4356. ]
  4357. [[package]]
  4358. name = "tokio-tungstenite"
  4359. version = "0.18.0"
  4360. source = "registry+https://github.com/rust-lang/crates.io-index"
  4361. checksum = "54319c93411147bced34cb5609a80e0a8e44c5999c93903a81cd866630ec0bfd"
  4362. dependencies = [
  4363. "futures-util",
  4364. "log",
  4365. "tokio",
  4366. "tungstenite",
  4367. ]
  4368. [[package]]
  4369. name = "tokio-util"
  4370. version = "0.7.7"
  4371. source = "registry+https://github.com/rust-lang/crates.io-index"
  4372. checksum = "5427d89453009325de0d8f342c9490009f76e999cb7672d77e46267448f7e6b2"
  4373. dependencies = [
  4374. "bytes",
  4375. "futures-core",
  4376. "futures-sink",
  4377. "pin-project-lite",
  4378. "tokio",
  4379. "tracing",
  4380. ]
  4381. [[package]]
  4382. name = "toml"
  4383. version = "0.5.11"
  4384. source = "registry+https://github.com/rust-lang/crates.io-index"
  4385. checksum = "f4f7f0dd8d50a853a531c426359045b1998f04219d88799810762cd4ad314234"
  4386. dependencies = [
  4387. "serde",
  4388. ]
  4389. [[package]]
  4390. name = "tonic"
  4391. version = "0.8.3"
  4392. source = "registry+https://github.com/rust-lang/crates.io-index"
  4393. checksum = "8f219fad3b929bef19b1f86fbc0358d35daed8f2cac972037ac0dc10bbb8d5fb"
  4394. dependencies = [
  4395. "async-stream",
  4396. "async-trait",
  4397. "axum",
  4398. "base64 0.13.1",
  4399. "bytes",
  4400. "futures-core",
  4401. "futures-util",
  4402. "h2",
  4403. "http",
  4404. "http-body",
  4405. "hyper",
  4406. "hyper-timeout",
  4407. "percent-encoding",
  4408. "pin-project",
  4409. "prost",
  4410. "prost-derive",
  4411. "tokio",
  4412. "tokio-stream",
  4413. "tokio-util",
  4414. "tower",
  4415. "tower-layer",
  4416. "tower-service",
  4417. "tracing",
  4418. "tracing-futures",
  4419. ]
  4420. [[package]]
  4421. name = "tower"
  4422. version = "0.4.13"
  4423. source = "registry+https://github.com/rust-lang/crates.io-index"
  4424. checksum = "b8fa9be0de6cf49e536ce1851f987bd21a43b771b09473c3549a6c853db37c1c"
  4425. dependencies = [
  4426. "futures-core",
  4427. "futures-util",
  4428. "indexmap",
  4429. "pin-project",
  4430. "pin-project-lite",
  4431. "rand 0.8.5",
  4432. "slab",
  4433. "tokio",
  4434. "tokio-util",
  4435. "tower-layer",
  4436. "tower-service",
  4437. "tracing",
  4438. ]
  4439. [[package]]
  4440. name = "tower-layer"
  4441. version = "0.3.2"
  4442. source = "registry+https://github.com/rust-lang/crates.io-index"
  4443. checksum = "c20c8dbed6283a09604c3e69b4b7eeb54e298b8a600d4d5ecb5ad39de609f1d0"
  4444. [[package]]
  4445. name = "tower-service"
  4446. version = "0.3.2"
  4447. source = "registry+https://github.com/rust-lang/crates.io-index"
  4448. checksum = "b6bc1c9ce2b5135ac7f93c72918fc37feb872bdc6a5533a8b85eb4b86bfdae52"
  4449. [[package]]
  4450. name = "tracing"
  4451. version = "0.1.37"
  4452. source = "registry+https://github.com/rust-lang/crates.io-index"
  4453. checksum = "8ce8c33a8d48bd45d624a6e523445fd21ec13d3653cd51f681abf67418f54eb8"
  4454. dependencies = [
  4455. "cfg-if",
  4456. "log",
  4457. "pin-project-lite",
  4458. "tracing-attributes",
  4459. "tracing-core",
  4460. ]
  4461. [[package]]
  4462. name = "tracing-appender"
  4463. version = "0.1.2"
  4464. source = "registry+https://github.com/rust-lang/crates.io-index"
  4465. checksum = "9965507e507f12c8901432a33e31131222abac31edd90cabbcf85cf544b7127a"
  4466. dependencies = [
  4467. "chrono",
  4468. "crossbeam-channel",
  4469. "tracing-subscriber 0.2.25",
  4470. ]
  4471. [[package]]
  4472. name = "tracing-attributes"
  4473. version = "0.1.23"
  4474. source = "registry+https://github.com/rust-lang/crates.io-index"
  4475. checksum = "4017f8f45139870ca7e672686113917c71c7a6e02d4924eda67186083c03081a"
  4476. dependencies = [
  4477. "proc-macro2",
  4478. "quote",
  4479. "syn 1.0.109",
  4480. ]
  4481. [[package]]
  4482. name = "tracing-bunyan-formatter"
  4483. version = "0.2.6"
  4484. source = "registry+https://github.com/rust-lang/crates.io-index"
  4485. checksum = "c408910c9b7eabc0215fe2b4a89f8ec95581a91cea1f7619f7c78caf14cbc2a1"
  4486. dependencies = [
  4487. "chrono",
  4488. "gethostname",
  4489. "log",
  4490. "serde",
  4491. "serde_json",
  4492. "tracing",
  4493. "tracing-core",
  4494. "tracing-log",
  4495. "tracing-subscriber 0.2.25",
  4496. ]
  4497. [[package]]
  4498. name = "tracing-core"
  4499. version = "0.1.30"
  4500. source = "registry+https://github.com/rust-lang/crates.io-index"
  4501. checksum = "24eb03ba0eab1fd845050058ce5e616558e8f8d8fca633e6b163fe25c797213a"
  4502. dependencies = [
  4503. "once_cell",
  4504. "valuable",
  4505. ]
  4506. [[package]]
  4507. name = "tracing-futures"
  4508. version = "0.2.5"
  4509. source = "registry+https://github.com/rust-lang/crates.io-index"
  4510. checksum = "97d095ae15e245a057c8e8451bab9b3ee1e1f68e9ba2b4fbc18d0ac5237835f2"
  4511. dependencies = [
  4512. "pin-project",
  4513. "tracing",
  4514. ]
  4515. [[package]]
  4516. name = "tracing-log"
  4517. version = "0.1.3"
  4518. source = "registry+https://github.com/rust-lang/crates.io-index"
  4519. checksum = "78ddad33d2d10b1ed7eb9d1f518a5674713876e97e5bb9b7345a7984fbb4f922"
  4520. dependencies = [
  4521. "lazy_static",
  4522. "log",
  4523. "tracing-core",
  4524. ]
  4525. [[package]]
  4526. name = "tracing-serde"
  4527. version = "0.1.3"
  4528. source = "registry+https://github.com/rust-lang/crates.io-index"
  4529. checksum = "bc6b213177105856957181934e4920de57730fc69bf42c37ee5bb664d406d9e1"
  4530. dependencies = [
  4531. "serde",
  4532. "tracing-core",
  4533. ]
  4534. [[package]]
  4535. name = "tracing-subscriber"
  4536. version = "0.2.25"
  4537. source = "registry+https://github.com/rust-lang/crates.io-index"
  4538. checksum = "0e0d2eaa99c3c2e41547cfa109e910a68ea03823cccad4a0525dcbc9b01e8c71"
  4539. dependencies = [
  4540. "ansi_term",
  4541. "chrono",
  4542. "lazy_static",
  4543. "matchers 0.0.1",
  4544. "regex",
  4545. "serde",
  4546. "serde_json",
  4547. "sharded-slab",
  4548. "smallvec",
  4549. "thread_local",
  4550. "tracing",
  4551. "tracing-core",
  4552. "tracing-log",
  4553. "tracing-serde",
  4554. ]
  4555. [[package]]
  4556. name = "tracing-subscriber"
  4557. version = "0.3.16"
  4558. source = "registry+https://github.com/rust-lang/crates.io-index"
  4559. checksum = "a6176eae26dd70d0c919749377897b54a9276bd7061339665dd68777926b5a70"
  4560. dependencies = [
  4561. "matchers 0.1.0",
  4562. "nu-ansi-term",
  4563. "once_cell",
  4564. "regex",
  4565. "sharded-slab",
  4566. "smallvec",
  4567. "thread_local",
  4568. "tracing",
  4569. "tracing-core",
  4570. "tracing-log",
  4571. ]
  4572. [[package]]
  4573. name = "try-lock"
  4574. version = "0.2.4"
  4575. source = "registry+https://github.com/rust-lang/crates.io-index"
  4576. checksum = "3528ecfd12c466c6f163363caf2d02a71161dd5e1cc6ae7b34207ea2d42d81ed"
  4577. [[package]]
  4578. name = "tungstenite"
  4579. version = "0.18.0"
  4580. source = "registry+https://github.com/rust-lang/crates.io-index"
  4581. checksum = "30ee6ab729cd4cf0fd55218530c4522ed30b7b6081752839b68fcec8d0960788"
  4582. dependencies = [
  4583. "base64 0.13.1",
  4584. "byteorder",
  4585. "bytes",
  4586. "http",
  4587. "httparse",
  4588. "log",
  4589. "rand 0.8.5",
  4590. "sha1",
  4591. "thiserror",
  4592. "url",
  4593. "utf-8",
  4594. ]
  4595. [[package]]
  4596. name = "typenum"
  4597. version = "1.16.0"
  4598. source = "registry+https://github.com/rust-lang/crates.io-index"
  4599. checksum = "497961ef93d974e23eb6f433eb5fe1b7930b659f06d12dec6fc44a8f554c0bba"
  4600. [[package]]
  4601. name = "ucd-trie"
  4602. version = "0.1.5"
  4603. source = "registry+https://github.com/rust-lang/crates.io-index"
  4604. checksum = "9e79c4d996edb816c91e4308506774452e55e95c3c9de07b6729e17e15a5ef81"
  4605. [[package]]
  4606. name = "uncased"
  4607. version = "0.9.7"
  4608. source = "registry+https://github.com/rust-lang/crates.io-index"
  4609. checksum = "09b01702b0fd0b3fadcf98e098780badda8742d4f4a7676615cad90e8ac73622"
  4610. dependencies = [
  4611. "version_check",
  4612. ]
  4613. [[package]]
  4614. name = "unic-char-property"
  4615. version = "0.9.0"
  4616. source = "registry+https://github.com/rust-lang/crates.io-index"
  4617. checksum = "a8c57a407d9b6fa02b4795eb81c5b6652060a15a7903ea981f3d723e6c0be221"
  4618. dependencies = [
  4619. "unic-char-range",
  4620. ]
  4621. [[package]]
  4622. name = "unic-char-range"
  4623. version = "0.9.0"
  4624. source = "registry+https://github.com/rust-lang/crates.io-index"
  4625. checksum = "0398022d5f700414f6b899e10b8348231abf9173fa93144cbc1a43b9793c1fbc"
  4626. [[package]]
  4627. name = "unic-common"
  4628. version = "0.9.0"
  4629. source = "registry+https://github.com/rust-lang/crates.io-index"
  4630. checksum = "80d7ff825a6a654ee85a63e80f92f054f904f21e7d12da4e22f9834a4aaa35bc"
  4631. [[package]]
  4632. name = "unic-segment"
  4633. version = "0.9.0"
  4634. source = "registry+https://github.com/rust-lang/crates.io-index"
  4635. checksum = "e4ed5d26be57f84f176157270c112ef57b86debac9cd21daaabbe56db0f88f23"
  4636. dependencies = [
  4637. "unic-ucd-segment",
  4638. ]
  4639. [[package]]
  4640. name = "unic-ucd-segment"
  4641. version = "0.9.0"
  4642. source = "registry+https://github.com/rust-lang/crates.io-index"
  4643. checksum = "2079c122a62205b421f499da10f3ee0f7697f012f55b675e002483c73ea34700"
  4644. dependencies = [
  4645. "unic-char-property",
  4646. "unic-char-range",
  4647. "unic-ucd-version",
  4648. ]
  4649. [[package]]
  4650. name = "unic-ucd-version"
  4651. version = "0.9.0"
  4652. source = "registry+https://github.com/rust-lang/crates.io-index"
  4653. checksum = "96bd2f2237fe450fcd0a1d2f5f4e91711124f7857ba2e964247776ebeeb7b0c4"
  4654. dependencies = [
  4655. "unic-common",
  4656. ]
  4657. [[package]]
  4658. name = "unicode-bidi"
  4659. version = "0.3.13"
  4660. source = "registry+https://github.com/rust-lang/crates.io-index"
  4661. checksum = "92888ba5573ff080736b3648696b70cafad7d250551175acbaa4e0385b3e1460"
  4662. [[package]]
  4663. name = "unicode-ident"
  4664. version = "1.0.8"
  4665. source = "registry+https://github.com/rust-lang/crates.io-index"
  4666. checksum = "e5464a87b239f13a63a501f2701565754bae92d243d4bb7eb12f6d57d2269bf4"
  4667. [[package]]
  4668. name = "unicode-normalization"
  4669. version = "0.1.22"
  4670. source = "registry+https://github.com/rust-lang/crates.io-index"
  4671. checksum = "5c5713f0fc4b5db668a2ac63cdb7bb4469d8c9fed047b1d0292cc7b0ce2ba921"
  4672. dependencies = [
  4673. "tinyvec",
  4674. ]
  4675. [[package]]
  4676. name = "unicode-segmentation"
  4677. version = "1.10.1"
  4678. source = "registry+https://github.com/rust-lang/crates.io-index"
  4679. checksum = "1dd624098567895118886609431a7c3b8f516e41d30e0643f03d94592a147e36"
  4680. [[package]]
  4681. name = "unicode-width"
  4682. version = "0.1.10"
  4683. source = "registry+https://github.com/rust-lang/crates.io-index"
  4684. checksum = "c0edd1e5b14653f783770bce4a4dabb4a5108a5370a5f5d8cfe8710c361f6c8b"
  4685. [[package]]
  4686. name = "untrusted"
  4687. version = "0.7.1"
  4688. source = "registry+https://github.com/rust-lang/crates.io-index"
  4689. checksum = "a156c684c91ea7d62626509bce3cb4e1d9ed5c4d978f7b4352658f96a4c26b4a"
  4690. [[package]]
  4691. name = "url"
  4692. version = "2.3.1"
  4693. source = "registry+https://github.com/rust-lang/crates.io-index"
  4694. checksum = "0d68c799ae75762b8c3fe375feb6600ef5602c883c5d21eb51c09f22b83c4643"
  4695. dependencies = [
  4696. "form_urlencoded",
  4697. "idna 0.3.0",
  4698. "percent-encoding",
  4699. ]
  4700. [[package]]
  4701. name = "urlencoding"
  4702. version = "2.1.3"
  4703. source = "registry+https://github.com/rust-lang/crates.io-index"
  4704. checksum = "daf8dba3b7eb870caf1ddeed7bc9d2a049f3cfdfae7cb521b087cc33ae4c49da"
  4705. [[package]]
  4706. name = "utf-8"
  4707. version = "0.7.6"
  4708. source = "registry+https://github.com/rust-lang/crates.io-index"
  4709. checksum = "09cc8ee72d2a9becf2f2febe0205bbed8fc6615b7cb429ad062dc7b7ddd036a9"
  4710. [[package]]
  4711. name = "uuid"
  4712. version = "1.3.3"
  4713. source = "registry+https://github.com/rust-lang/crates.io-index"
  4714. checksum = "345444e32442451b267fc254ae85a209c64be56d2890e601a0c37ff0c3c5ecd2"
  4715. dependencies = [
  4716. "getrandom 0.2.9",
  4717. "serde",
  4718. "sha1_smol",
  4719. ]
  4720. [[package]]
  4721. name = "validator"
  4722. version = "0.16.0"
  4723. source = "registry+https://github.com/rust-lang/crates.io-index"
  4724. checksum = "32ad5bf234c7d3ad1042e5252b7eddb2c4669ee23f32c7dd0e9b7705f07ef591"
  4725. dependencies = [
  4726. "idna 0.2.3",
  4727. "lazy_static",
  4728. "regex",
  4729. "serde",
  4730. "serde_derive",
  4731. "serde_json",
  4732. "url",
  4733. ]
  4734. [[package]]
  4735. name = "valuable"
  4736. version = "0.1.0"
  4737. source = "registry+https://github.com/rust-lang/crates.io-index"
  4738. checksum = "830b7e5d4d90034032940e4ace0d9a9a057e7a45cd94e6c007832e39edb82f6d"
  4739. [[package]]
  4740. name = "vcpkg"
  4741. version = "0.2.15"
  4742. source = "registry+https://github.com/rust-lang/crates.io-index"
  4743. checksum = "accd4ea62f7bb7a82fe23066fb0957d48ef677f6eeb8215f372f52e48bb32426"
  4744. [[package]]
  4745. name = "version_check"
  4746. version = "0.9.4"
  4747. source = "registry+https://github.com/rust-lang/crates.io-index"
  4748. checksum = "49874b5167b65d7193b8aba1567f5c7d93d001cafc34600cee003eda787e483f"
  4749. [[package]]
  4750. name = "vsimd"
  4751. version = "0.8.0"
  4752. source = "registry+https://github.com/rust-lang/crates.io-index"
  4753. checksum = "5c3082ca00d5a5ef149bb8b555a72ae84c9c59f7250f013ac822ac2e49b19c64"
  4754. [[package]]
  4755. name = "walkdir"
  4756. version = "2.3.3"
  4757. source = "registry+https://github.com/rust-lang/crates.io-index"
  4758. checksum = "36df944cda56c7d8d8b7496af378e6b16de9284591917d307c9b4d313c44e698"
  4759. dependencies = [
  4760. "same-file",
  4761. "winapi-util",
  4762. ]
  4763. [[package]]
  4764. name = "want"
  4765. version = "0.3.0"
  4766. source = "registry+https://github.com/rust-lang/crates.io-index"
  4767. checksum = "1ce8a968cb1cd110d136ff8b819a556d6fb6d919363c61534f6860c7eb172ba0"
  4768. dependencies = [
  4769. "log",
  4770. "try-lock",
  4771. ]
  4772. [[package]]
  4773. name = "wasi"
  4774. version = "0.9.0+wasi-snapshot-preview1"
  4775. source = "registry+https://github.com/rust-lang/crates.io-index"
  4776. checksum = "cccddf32554fecc6acb585f82a32a72e28b48f8c4c1883ddfeeeaa96f7d8e519"
  4777. [[package]]
  4778. name = "wasi"
  4779. version = "0.10.0+wasi-snapshot-preview1"
  4780. source = "registry+https://github.com/rust-lang/crates.io-index"
  4781. checksum = "1a143597ca7c7793eff794def352d41792a93c481eb1042423ff7ff72ba2c31f"
  4782. [[package]]
  4783. name = "wasi"
  4784. version = "0.11.0+wasi-snapshot-preview1"
  4785. source = "registry+https://github.com/rust-lang/crates.io-index"
  4786. checksum = "9c8d87e72b64a3b4db28d11ce29237c246188f4f51057d65a7eab63b7987e423"
  4787. [[package]]
  4788. name = "wasm-bindgen"
  4789. version = "0.2.84"
  4790. source = "registry+https://github.com/rust-lang/crates.io-index"
  4791. checksum = "31f8dcbc21f30d9b8f2ea926ecb58f6b91192c17e9d33594b3df58b2007ca53b"
  4792. dependencies = [
  4793. "cfg-if",
  4794. "wasm-bindgen-macro",
  4795. ]
  4796. [[package]]
  4797. name = "wasm-bindgen-backend"
  4798. version = "0.2.84"
  4799. source = "registry+https://github.com/rust-lang/crates.io-index"
  4800. checksum = "95ce90fd5bcc06af55a641a86428ee4229e44e07033963a2290a8e241607ccb9"
  4801. dependencies = [
  4802. "bumpalo",
  4803. "log",
  4804. "once_cell",
  4805. "proc-macro2",
  4806. "quote",
  4807. "syn 1.0.109",
  4808. "wasm-bindgen-shared",
  4809. ]
  4810. [[package]]
  4811. name = "wasm-bindgen-futures"
  4812. version = "0.4.34"
  4813. source = "registry+https://github.com/rust-lang/crates.io-index"
  4814. checksum = "f219e0d211ba40266969f6dbdd90636da12f75bee4fc9d6c23d1260dadb51454"
  4815. dependencies = [
  4816. "cfg-if",
  4817. "js-sys",
  4818. "wasm-bindgen",
  4819. "web-sys",
  4820. ]
  4821. [[package]]
  4822. name = "wasm-bindgen-macro"
  4823. version = "0.2.84"
  4824. source = "registry+https://github.com/rust-lang/crates.io-index"
  4825. checksum = "4c21f77c0bedc37fd5dc21f897894a5ca01e7bb159884559461862ae90c0b4c5"
  4826. dependencies = [
  4827. "quote",
  4828. "wasm-bindgen-macro-support",
  4829. ]
  4830. [[package]]
  4831. name = "wasm-bindgen-macro-support"
  4832. version = "0.2.84"
  4833. source = "registry+https://github.com/rust-lang/crates.io-index"
  4834. checksum = "2aff81306fcac3c7515ad4e177f521b5c9a15f2b08f4e32d823066102f35a5f6"
  4835. dependencies = [
  4836. "proc-macro2",
  4837. "quote",
  4838. "syn 1.0.109",
  4839. "wasm-bindgen-backend",
  4840. "wasm-bindgen-shared",
  4841. ]
  4842. [[package]]
  4843. name = "wasm-bindgen-shared"
  4844. version = "0.2.84"
  4845. source = "registry+https://github.com/rust-lang/crates.io-index"
  4846. checksum = "0046fef7e28c3804e5e38bfa31ea2a0f73905319b677e57ebe37e49358989b5d"
  4847. [[package]]
  4848. name = "web-sys"
  4849. version = "0.3.61"
  4850. source = "registry+https://github.com/rust-lang/crates.io-index"
  4851. checksum = "e33b99f4b23ba3eec1a53ac264e35a755f00e966e0065077d6027c0f575b0b97"
  4852. dependencies = [
  4853. "js-sys",
  4854. "wasm-bindgen",
  4855. ]
  4856. [[package]]
  4857. name = "webpki"
  4858. version = "0.22.0"
  4859. source = "registry+https://github.com/rust-lang/crates.io-index"
  4860. checksum = "f095d78192e208183081cc07bc5515ef55216397af48b873e5edcd72637fa1bd"
  4861. dependencies = [
  4862. "ring",
  4863. "untrusted",
  4864. ]
  4865. [[package]]
  4866. name = "webpki-roots"
  4867. version = "0.22.6"
  4868. source = "registry+https://github.com/rust-lang/crates.io-index"
  4869. checksum = "b6c71e40d7d2c34a5106301fb632274ca37242cd0c9d3e64dbece371a40a2d87"
  4870. dependencies = [
  4871. "webpki",
  4872. ]
  4873. [[package]]
  4874. name = "which"
  4875. version = "4.4.0"
  4876. source = "registry+https://github.com/rust-lang/crates.io-index"
  4877. checksum = "2441c784c52b289a054b7201fc93253e288f094e2f4be9058343127c4226a269"
  4878. dependencies = [
  4879. "either",
  4880. "libc",
  4881. "once_cell",
  4882. ]
  4883. [[package]]
  4884. name = "winapi"
  4885. version = "0.3.9"
  4886. source = "registry+https://github.com/rust-lang/crates.io-index"
  4887. checksum = "5c839a674fcd7a98952e593242ea400abe93992746761e38641405d28b00f419"
  4888. dependencies = [
  4889. "winapi-i686-pc-windows-gnu",
  4890. "winapi-x86_64-pc-windows-gnu",
  4891. ]
  4892. [[package]]
  4893. name = "winapi-i686-pc-windows-gnu"
  4894. version = "0.4.0"
  4895. source = "registry+https://github.com/rust-lang/crates.io-index"
  4896. checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6"
  4897. [[package]]
  4898. name = "winapi-util"
  4899. version = "0.1.5"
  4900. source = "registry+https://github.com/rust-lang/crates.io-index"
  4901. checksum = "70ec6ce85bb158151cae5e5c87f95a8e97d2c0c4b001223f33a334e3ce5de178"
  4902. dependencies = [
  4903. "winapi",
  4904. ]
  4905. [[package]]
  4906. name = "winapi-x86_64-pc-windows-gnu"
  4907. version = "0.4.0"
  4908. source = "registry+https://github.com/rust-lang/crates.io-index"
  4909. checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f"
  4910. [[package]]
  4911. name = "windows"
  4912. version = "0.48.0"
  4913. source = "registry+https://github.com/rust-lang/crates.io-index"
  4914. checksum = "e686886bc078bc1b0b600cac0147aadb815089b6e4da64016cbd754b6342700f"
  4915. dependencies = [
  4916. "windows-targets 0.48.0",
  4917. ]
  4918. [[package]]
  4919. name = "windows-sys"
  4920. version = "0.42.0"
  4921. source = "registry+https://github.com/rust-lang/crates.io-index"
  4922. checksum = "5a3e1820f08b8513f676f7ab6c1f99ff312fb97b553d30ff4dd86f9f15728aa7"
  4923. dependencies = [
  4924. "windows_aarch64_gnullvm 0.42.2",
  4925. "windows_aarch64_msvc 0.42.2",
  4926. "windows_i686_gnu 0.42.2",
  4927. "windows_i686_msvc 0.42.2",
  4928. "windows_x86_64_gnu 0.42.2",
  4929. "windows_x86_64_gnullvm 0.42.2",
  4930. "windows_x86_64_msvc 0.42.2",
  4931. ]
  4932. [[package]]
  4933. name = "windows-sys"
  4934. version = "0.45.0"
  4935. source = "registry+https://github.com/rust-lang/crates.io-index"
  4936. checksum = "75283be5efb2831d37ea142365f009c02ec203cd29a3ebecbc093d52315b66d0"
  4937. dependencies = [
  4938. "windows-targets 0.42.2",
  4939. ]
  4940. [[package]]
  4941. name = "windows-sys"
  4942. version = "0.48.0"
  4943. source = "registry+https://github.com/rust-lang/crates.io-index"
  4944. checksum = "677d2418bec65e3338edb076e806bc1ec15693c5d0104683f2efe857f61056a9"
  4945. dependencies = [
  4946. "windows-targets 0.48.0",
  4947. ]
  4948. [[package]]
  4949. name = "windows-targets"
  4950. version = "0.42.2"
  4951. source = "registry+https://github.com/rust-lang/crates.io-index"
  4952. checksum = "8e5180c00cd44c9b1c88adb3693291f1cd93605ded80c250a75d472756b4d071"
  4953. dependencies = [
  4954. "windows_aarch64_gnullvm 0.42.2",
  4955. "windows_aarch64_msvc 0.42.2",
  4956. "windows_i686_gnu 0.42.2",
  4957. "windows_i686_msvc 0.42.2",
  4958. "windows_x86_64_gnu 0.42.2",
  4959. "windows_x86_64_gnullvm 0.42.2",
  4960. "windows_x86_64_msvc 0.42.2",
  4961. ]
  4962. [[package]]
  4963. name = "windows-targets"
  4964. version = "0.48.0"
  4965. source = "registry+https://github.com/rust-lang/crates.io-index"
  4966. checksum = "7b1eb6f0cd7c80c79759c929114ef071b87354ce476d9d94271031c0497adfd5"
  4967. dependencies = [
  4968. "windows_aarch64_gnullvm 0.48.0",
  4969. "windows_aarch64_msvc 0.48.0",
  4970. "windows_i686_gnu 0.48.0",
  4971. "windows_i686_msvc 0.48.0",
  4972. "windows_x86_64_gnu 0.48.0",
  4973. "windows_x86_64_gnullvm 0.48.0",
  4974. "windows_x86_64_msvc 0.48.0",
  4975. ]
  4976. [[package]]
  4977. name = "windows_aarch64_gnullvm"
  4978. version = "0.42.2"
  4979. source = "registry+https://github.com/rust-lang/crates.io-index"
  4980. checksum = "597a5118570b68bc08d8d59125332c54f1ba9d9adeedeef5b99b02ba2b0698f8"
  4981. [[package]]
  4982. name = "windows_aarch64_gnullvm"
  4983. version = "0.48.0"
  4984. source = "registry+https://github.com/rust-lang/crates.io-index"
  4985. checksum = "91ae572e1b79dba883e0d315474df7305d12f569b400fcf90581b06062f7e1bc"
  4986. [[package]]
  4987. name = "windows_aarch64_msvc"
  4988. version = "0.42.2"
  4989. source = "registry+https://github.com/rust-lang/crates.io-index"
  4990. checksum = "e08e8864a60f06ef0d0ff4ba04124db8b0fb3be5776a5cd47641e942e58c4d43"
  4991. [[package]]
  4992. name = "windows_aarch64_msvc"
  4993. version = "0.48.0"
  4994. source = "registry+https://github.com/rust-lang/crates.io-index"
  4995. checksum = "b2ef27e0d7bdfcfc7b868b317c1d32c641a6fe4629c171b8928c7b08d98d7cf3"
  4996. [[package]]
  4997. name = "windows_i686_gnu"
  4998. version = "0.42.2"
  4999. source = "registry+https://github.com/rust-lang/crates.io-index"
  5000. checksum = "c61d927d8da41da96a81f029489353e68739737d3beca43145c8afec9a31a84f"
  5001. [[package]]
  5002. name = "windows_i686_gnu"
  5003. version = "0.48.0"
  5004. source = "registry+https://github.com/rust-lang/crates.io-index"
  5005. checksum = "622a1962a7db830d6fd0a69683c80a18fda201879f0f447f065a3b7467daa241"
  5006. [[package]]
  5007. name = "windows_i686_msvc"
  5008. version = "0.42.2"
  5009. source = "registry+https://github.com/rust-lang/crates.io-index"
  5010. checksum = "44d840b6ec649f480a41c8d80f9c65108b92d89345dd94027bfe06ac444d1060"
  5011. [[package]]
  5012. name = "windows_i686_msvc"
  5013. version = "0.48.0"
  5014. source = "registry+https://github.com/rust-lang/crates.io-index"
  5015. checksum = "4542c6e364ce21bf45d69fdd2a8e455fa38d316158cfd43b3ac1c5b1b19f8e00"
  5016. [[package]]
  5017. name = "windows_x86_64_gnu"
  5018. version = "0.42.2"
  5019. source = "registry+https://github.com/rust-lang/crates.io-index"
  5020. checksum = "8de912b8b8feb55c064867cf047dda097f92d51efad5b491dfb98f6bbb70cb36"
  5021. [[package]]
  5022. name = "windows_x86_64_gnu"
  5023. version = "0.48.0"
  5024. source = "registry+https://github.com/rust-lang/crates.io-index"
  5025. checksum = "ca2b8a661f7628cbd23440e50b05d705db3686f894fc9580820623656af974b1"
  5026. [[package]]
  5027. name = "windows_x86_64_gnullvm"
  5028. version = "0.42.2"
  5029. source = "registry+https://github.com/rust-lang/crates.io-index"
  5030. checksum = "26d41b46a36d453748aedef1486d5c7a85db22e56aff34643984ea85514e94a3"
  5031. [[package]]
  5032. name = "windows_x86_64_gnullvm"
  5033. version = "0.48.0"
  5034. source = "registry+https://github.com/rust-lang/crates.io-index"
  5035. checksum = "7896dbc1f41e08872e9d5e8f8baa8fdd2677f29468c4e156210174edc7f7b953"
  5036. [[package]]
  5037. name = "windows_x86_64_msvc"
  5038. version = "0.42.2"
  5039. source = "registry+https://github.com/rust-lang/crates.io-index"
  5040. checksum = "9aec5da331524158c6d1a4ac0ab1541149c0b9505fde06423b02f5ef0106b9f0"
  5041. [[package]]
  5042. name = "windows_x86_64_msvc"
  5043. version = "0.48.0"
  5044. source = "registry+https://github.com/rust-lang/crates.io-index"
  5045. checksum = "1a515f5799fe4961cb532f983ce2b23082366b898e52ffbce459c86f67c8378a"
  5046. [[package]]
  5047. name = "winreg"
  5048. version = "0.10.1"
  5049. source = "registry+https://github.com/rust-lang/crates.io-index"
  5050. checksum = "80d0f4e272c85def139476380b12f9ac60926689dd2e01d4923222f40580869d"
  5051. dependencies = [
  5052. "winapi",
  5053. ]
  5054. [[package]]
  5055. name = "xmlparser"
  5056. version = "0.13.5"
  5057. source = "registry+https://github.com/rust-lang/crates.io-index"
  5058. checksum = "4d25c75bf9ea12c4040a97f829154768bbbce366287e2dc044af160cd79a13fd"
  5059. [[package]]
  5060. name = "y-sync"
  5061. version = "0.3.1"
  5062. source = "registry+https://github.com/rust-lang/crates.io-index"
  5063. checksum = "f54d34b68ec4514a0659838c2b1ba867c571b20b3804a1338dacf4fa9062d801"
  5064. dependencies = [
  5065. "lib0",
  5066. "thiserror",
  5067. "yrs",
  5068. ]
  5069. [[package]]
  5070. name = "yaml-rust"
  5071. version = "0.4.5"
  5072. source = "registry+https://github.com/rust-lang/crates.io-index"
  5073. checksum = "56c1936c4cc7a1c9ab21a1ebb602eb942ba868cbd44a99cb7cdc5892335e1c85"
  5074. dependencies = [
  5075. "linked-hash-map",
  5076. ]
  5077. [[package]]
  5078. name = "yrs"
  5079. version = "0.16.5"
  5080. source = "registry+https://github.com/rust-lang/crates.io-index"
  5081. checksum = "4c2aef2bf89b4f7c003f9c73f1c8097427ca32e1d006443f3f607f11e79a797b"
  5082. dependencies = [
  5083. "atomic_refcell",
  5084. "lib0",
  5085. "rand 0.7.3",
  5086. "smallstr",
  5087. "smallvec",
  5088. "thiserror",
  5089. ]
  5090. [[package]]
  5091. name = "zeroize"
  5092. version = "1.6.0"
  5093. source = "registry+https://github.com/rust-lang/crates.io-index"
  5094. checksum = "2a0956f1ba7c7909bfb66c2e9e4124ab6f6482560f6628b5aaeba39207c9aad9"
  5095. [[package]]
  5096. name = "zip"
  5097. version = "0.6.6"
  5098. source = "registry+https://github.com/rust-lang/crates.io-index"
  5099. checksum = "760394e246e4c28189f19d488c058bf16f564016aefac5d32bb1f3b51d5e9261"
  5100. dependencies = [
  5101. "aes",
  5102. "byteorder",
  5103. "bzip2",
  5104. "constant_time_eq",
  5105. "crc32fast",
  5106. "crossbeam-utils",
  5107. "flate2",
  5108. "hmac",
  5109. "pbkdf2",
  5110. "sha1",
  5111. "time 0.3.21",
  5112. "zstd",
  5113. ]
  5114. [[package]]
  5115. name = "zstd"
  5116. version = "0.11.2+zstd.1.5.2"
  5117. source = "registry+https://github.com/rust-lang/crates.io-index"
  5118. checksum = "20cc960326ece64f010d2d2107537f26dc589a6573a316bd5b1dba685fa5fde4"
  5119. dependencies = [
  5120. "zstd-safe",
  5121. ]
  5122. [[package]]
  5123. name = "zstd-safe"
  5124. version = "5.0.2+zstd.1.5.2"
  5125. source = "registry+https://github.com/rust-lang/crates.io-index"
  5126. checksum = "1d2a5585e04f9eea4b2a3d1eca508c4dee9592a89ef6f450c11719da0726f4db"
  5127. dependencies = [
  5128. "libc",
  5129. "zstd-sys",
  5130. ]
  5131. [[package]]
  5132. name = "zstd-sys"
  5133. version = "2.0.8+zstd.1.5.5"
  5134. source = "registry+https://github.com/rust-lang/crates.io-index"
  5135. checksum = "5556e6ee25d32df2586c098bbfa278803692a20d0ab9565e049480d52707ec8c"
  5136. dependencies = [
  5137. "cc",
  5138. "libc",
  5139. "pkg-config",
  5140. ]