Cargo.lock 126 KB

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