Cargo.lock 124 KB

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