Cargo.lock 125 KB

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