Cargo.lock 132 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601160216031604160516061607160816091610161116121613161416151616161716181619162016211622162316241625162616271628162916301631163216331634163516361637163816391640164116421643164416451646164716481649165016511652165316541655165616571658165916601661166216631664166516661667166816691670167116721673167416751676167716781679168016811682168316841685168616871688168916901691169216931694169516961697169816991700170117021703170417051706170717081709171017111712171317141715171617171718171917201721172217231724172517261727172817291730173117321733173417351736173717381739174017411742174317441745174617471748174917501751175217531754175517561757175817591760176117621763176417651766176717681769177017711772177317741775177617771778177917801781178217831784178517861787178817891790179117921793179417951796179717981799180018011802180318041805180618071808180918101811181218131814181518161817181818191820182118221823182418251826182718281829183018311832183318341835183618371838183918401841184218431844184518461847184818491850185118521853185418551856185718581859186018611862186318641865186618671868186918701871187218731874187518761877187818791880188118821883188418851886188718881889189018911892189318941895189618971898189919001901190219031904190519061907190819091910191119121913191419151916191719181919192019211922192319241925192619271928192919301931193219331934193519361937193819391940194119421943194419451946194719481949195019511952195319541955195619571958195919601961196219631964196519661967196819691970197119721973197419751976197719781979198019811982198319841985198619871988198919901991199219931994199519961997199819992000200120022003200420052006200720082009201020112012201320142015201620172018201920202021202220232024202520262027202820292030203120322033203420352036203720382039204020412042204320442045204620472048204920502051205220532054205520562057205820592060206120622063206420652066206720682069207020712072207320742075207620772078207920802081208220832084208520862087208820892090209120922093209420952096209720982099210021012102210321042105210621072108210921102111211221132114211521162117211821192120212121222123212421252126212721282129213021312132213321342135213621372138213921402141214221432144214521462147214821492150215121522153215421552156215721582159216021612162216321642165216621672168216921702171217221732174217521762177217821792180218121822183218421852186218721882189219021912192219321942195219621972198219922002201220222032204220522062207220822092210221122122213221422152216221722182219222022212222222322242225222622272228222922302231223222332234223522362237223822392240224122422243224422452246224722482249225022512252225322542255225622572258225922602261226222632264226522662267226822692270227122722273227422752276227722782279228022812282228322842285228622872288228922902291229222932294229522962297229822992300230123022303230423052306230723082309231023112312231323142315231623172318231923202321232223232324232523262327232823292330233123322333233423352336233723382339234023412342234323442345234623472348234923502351235223532354235523562357235823592360236123622363236423652366236723682369237023712372237323742375237623772378237923802381238223832384238523862387238823892390239123922393239423952396239723982399240024012402240324042405240624072408240924102411241224132414241524162417241824192420242124222423242424252426242724282429243024312432243324342435243624372438243924402441244224432444244524462447244824492450245124522453245424552456245724582459246024612462246324642465246624672468246924702471247224732474247524762477247824792480248124822483248424852486248724882489249024912492249324942495249624972498249925002501250225032504250525062507250825092510251125122513251425152516251725182519252025212522252325242525252625272528252925302531253225332534253525362537253825392540254125422543254425452546254725482549255025512552255325542555255625572558255925602561256225632564256525662567256825692570257125722573257425752576257725782579258025812582258325842585258625872588258925902591259225932594259525962597259825992600260126022603260426052606260726082609261026112612261326142615261626172618261926202621262226232624262526262627262826292630263126322633263426352636263726382639264026412642264326442645264626472648264926502651265226532654265526562657265826592660266126622663266426652666266726682669267026712672267326742675267626772678267926802681268226832684268526862687268826892690269126922693269426952696269726982699270027012702270327042705270627072708270927102711271227132714271527162717271827192720272127222723272427252726272727282729273027312732273327342735273627372738273927402741274227432744274527462747274827492750275127522753275427552756275727582759276027612762276327642765276627672768276927702771277227732774277527762777277827792780278127822783278427852786278727882789279027912792279327942795279627972798279928002801280228032804280528062807280828092810281128122813281428152816281728182819282028212822282328242825282628272828282928302831283228332834283528362837283828392840284128422843284428452846284728482849285028512852285328542855285628572858285928602861286228632864286528662867286828692870287128722873287428752876287728782879288028812882288328842885288628872888288928902891289228932894289528962897289828992900290129022903290429052906290729082909291029112912291329142915291629172918291929202921292229232924292529262927292829292930293129322933293429352936293729382939294029412942294329442945294629472948294929502951295229532954295529562957295829592960296129622963296429652966296729682969297029712972297329742975297629772978297929802981298229832984298529862987298829892990299129922993299429952996299729982999300030013002300330043005300630073008300930103011301230133014301530163017301830193020302130223023302430253026302730283029303030313032303330343035303630373038303930403041304230433044304530463047304830493050305130523053305430553056305730583059306030613062306330643065306630673068306930703071307230733074307530763077307830793080308130823083308430853086308730883089309030913092309330943095309630973098309931003101310231033104310531063107310831093110311131123113311431153116311731183119312031213122312331243125312631273128312931303131313231333134313531363137313831393140314131423143314431453146314731483149315031513152315331543155315631573158315931603161316231633164316531663167316831693170317131723173317431753176317731783179318031813182318331843185318631873188318931903191319231933194319531963197319831993200320132023203320432053206320732083209321032113212321332143215321632173218321932203221322232233224322532263227322832293230323132323233323432353236323732383239324032413242324332443245324632473248324932503251325232533254325532563257325832593260326132623263326432653266326732683269327032713272327332743275327632773278327932803281328232833284328532863287328832893290329132923293329432953296329732983299330033013302330333043305330633073308330933103311331233133314331533163317331833193320332133223323332433253326332733283329333033313332333333343335333633373338333933403341334233433344334533463347334833493350335133523353335433553356335733583359336033613362336333643365336633673368336933703371337233733374337533763377337833793380338133823383338433853386338733883389339033913392339333943395339633973398339934003401340234033404340534063407340834093410341134123413341434153416341734183419342034213422342334243425342634273428342934303431343234333434343534363437343834393440344134423443344434453446344734483449345034513452345334543455345634573458345934603461346234633464346534663467346834693470347134723473347434753476347734783479348034813482348334843485348634873488348934903491349234933494349534963497349834993500350135023503350435053506350735083509351035113512351335143515351635173518351935203521352235233524352535263527352835293530353135323533353435353536353735383539354035413542354335443545354635473548354935503551355235533554355535563557355835593560356135623563356435653566356735683569357035713572357335743575357635773578357935803581358235833584358535863587358835893590359135923593359435953596359735983599360036013602360336043605360636073608360936103611361236133614361536163617361836193620362136223623362436253626362736283629363036313632363336343635363636373638363936403641364236433644364536463647364836493650365136523653365436553656365736583659366036613662366336643665366636673668366936703671367236733674367536763677367836793680368136823683368436853686368736883689369036913692369336943695369636973698369937003701370237033704370537063707370837093710371137123713371437153716371737183719372037213722372337243725372637273728372937303731373237333734373537363737373837393740374137423743374437453746374737483749375037513752375337543755375637573758375937603761376237633764376537663767376837693770377137723773377437753776377737783779378037813782378337843785378637873788378937903791379237933794379537963797379837993800380138023803380438053806380738083809381038113812381338143815381638173818381938203821382238233824382538263827382838293830383138323833383438353836383738383839384038413842384338443845384638473848384938503851385238533854385538563857385838593860386138623863386438653866386738683869387038713872387338743875387638773878387938803881388238833884388538863887388838893890389138923893389438953896389738983899390039013902390339043905390639073908390939103911391239133914391539163917391839193920392139223923392439253926392739283929393039313932393339343935393639373938393939403941394239433944394539463947394839493950395139523953395439553956395739583959396039613962396339643965396639673968396939703971397239733974397539763977397839793980398139823983398439853986398739883989399039913992399339943995399639973998399940004001400240034004400540064007400840094010401140124013401440154016401740184019402040214022402340244025402640274028402940304031403240334034403540364037403840394040404140424043404440454046404740484049405040514052405340544055405640574058405940604061406240634064406540664067406840694070407140724073407440754076407740784079408040814082408340844085408640874088408940904091409240934094409540964097409840994100410141024103410441054106410741084109411041114112411341144115411641174118411941204121412241234124412541264127412841294130413141324133413441354136413741384139414041414142414341444145414641474148414941504151415241534154415541564157415841594160416141624163416441654166416741684169417041714172417341744175417641774178417941804181418241834184418541864187418841894190419141924193419441954196419741984199420042014202420342044205420642074208420942104211421242134214421542164217421842194220422142224223422442254226422742284229423042314232423342344235423642374238423942404241424242434244424542464247424842494250425142524253425442554256425742584259426042614262426342644265426642674268426942704271427242734274427542764277427842794280428142824283428442854286428742884289429042914292429342944295429642974298429943004301430243034304430543064307430843094310431143124313431443154316431743184319432043214322432343244325432643274328432943304331433243334334433543364337433843394340434143424343434443454346434743484349435043514352435343544355435643574358435943604361436243634364436543664367436843694370437143724373437443754376437743784379438043814382438343844385438643874388438943904391439243934394439543964397439843994400440144024403440444054406440744084409441044114412441344144415441644174418441944204421442244234424442544264427442844294430443144324433443444354436443744384439444044414442444344444445444644474448444944504451445244534454445544564457445844594460446144624463446444654466446744684469447044714472447344744475447644774478447944804481448244834484448544864487448844894490449144924493449444954496449744984499450045014502450345044505450645074508450945104511451245134514451545164517451845194520452145224523452445254526452745284529453045314532453345344535453645374538453945404541454245434544454545464547454845494550455145524553455445554556455745584559456045614562456345644565456645674568456945704571457245734574457545764577457845794580458145824583458445854586458745884589459045914592459345944595459645974598459946004601460246034604460546064607460846094610461146124613461446154616461746184619462046214622462346244625462646274628462946304631463246334634463546364637463846394640464146424643464446454646464746484649465046514652465346544655465646574658465946604661466246634664466546664667466846694670467146724673467446754676467746784679468046814682468346844685468646874688468946904691469246934694469546964697469846994700470147024703470447054706470747084709471047114712471347144715471647174718471947204721472247234724472547264727472847294730473147324733473447354736473747384739474047414742474347444745474647474748474947504751475247534754475547564757475847594760476147624763476447654766476747684769477047714772477347744775477647774778477947804781478247834784478547864787478847894790479147924793479447954796479747984799480048014802480348044805480648074808480948104811481248134814481548164817481848194820482148224823482448254826482748284829483048314832483348344835483648374838483948404841484248434844484548464847484848494850485148524853485448554856485748584859486048614862486348644865486648674868486948704871487248734874487548764877487848794880488148824883488448854886488748884889489048914892489348944895489648974898489949004901490249034904490549064907490849094910491149124913491449154916491749184919492049214922492349244925492649274928492949304931493249334934493549364937493849394940494149424943494449454946494749484949495049514952495349544955495649574958495949604961496249634964496549664967496849694970497149724973497449754976497749784979498049814982498349844985498649874988498949904991499249934994499549964997499849995000500150025003500450055006500750085009501050115012501350145015501650175018501950205021502250235024502550265027502850295030503150325033503450355036503750385039504050415042504350445045504650475048504950505051505250535054505550565057505850595060506150625063506450655066506750685069507050715072507350745075507650775078507950805081508250835084508550865087508850895090509150925093509450955096509750985099510051015102510351045105510651075108510951105111511251135114511551165117511851195120512151225123512451255126512751285129513051315132513351345135513651375138513951405141514251435144514551465147514851495150515151525153515451555156515751585159516051615162516351645165516651675168516951705171517251735174517551765177517851795180518151825183518451855186518751885189519051915192519351945195519651975198519952005201520252035204520552065207520852095210521152125213521452155216521752185219522052215222522352245225522652275228522952305231523252335234523552365237523852395240524152425243524452455246524752485249525052515252525352545255525652575258525952605261526252635264526552665267526852695270527152725273527452755276527752785279528052815282528352845285528652875288528952905291529252935294529552965297529852995300530153025303530453055306530753085309531053115312531353145315531653175318531953205321532253235324532553265327532853295330533153325333533453355336533753385339534053415342534353445345534653475348534953505351535253535354535553565357535853595360536153625363536453655366536753685369537053715372537353745375537653775378537953805381538253835384538553865387538853895390539153925393539453955396539753985399540054015402540354045405540654075408540954105411541254135414541554165417541854195420542154225423542454255426542754285429543054315432543354345435543654375438543954405441544254435444544554465447544854495450545154525453545454555456545754585459546054615462546354645465546654675468546954705471547254735474547554765477547854795480548154825483548454855486548754885489549054915492549354945495549654975498549955005501550255035504550555065507550855095510551155125513551455155516551755185519552055215522552355245525552655275528552955305531553255335534553555365537553855395540554155425543554455455546554755485549555055515552555355545555555655575558555955605561556255635564556555665567556855695570557155725573557455755576557755785579558055815582558355845585558655875588558955905591559255935594559555965597559855995600560156025603560456055606560756085609561056115612561356145615561656175618561956205621562256235624
  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.24.2"
  7. source = "registry+https://github.com/rust-lang/crates.io-index"
  8. checksum = "dfbe277e56a376000877090da837660b4427aad530e3028d44e0bffe4f89a1c1"
  9. dependencies = [
  10. "gimli",
  11. ]
  12. [[package]]
  13. name = "adler2"
  14. version = "2.0.0"
  15. source = "registry+https://github.com/rust-lang/crates.io-index"
  16. checksum = "512761e0bb2578dd7380c6baaa0f4ce03e84f95e960231d1dec8bf4d7d6e2627"
  17. [[package]]
  18. name = "aead"
  19. version = "0.5.2"
  20. source = "registry+https://github.com/rust-lang/crates.io-index"
  21. checksum = "d122413f284cf2d62fb1b7db97e02edb8cda96d769b16e443a4f6195e35662b0"
  22. dependencies = [
  23. "crypto-common",
  24. "generic-array",
  25. ]
  26. [[package]]
  27. name = "aes"
  28. version = "0.8.4"
  29. source = "registry+https://github.com/rust-lang/crates.io-index"
  30. checksum = "b169f7a6d4742236a0a00c541b845991d0ac43e546831af1249753ab4c3aa3a0"
  31. dependencies = [
  32. "cfg-if",
  33. "cipher",
  34. "cpufeatures",
  35. ]
  36. [[package]]
  37. name = "ahash"
  38. version = "0.7.8"
  39. source = "registry+https://github.com/rust-lang/crates.io-index"
  40. checksum = "891477e0c6a8957309ee5c45a6368af3ae14bb510732d2684ffa19af310920f9"
  41. dependencies = [
  42. "getrandom",
  43. "once_cell",
  44. "version_check",
  45. ]
  46. [[package]]
  47. name = "ahash"
  48. version = "0.8.11"
  49. source = "registry+https://github.com/rust-lang/crates.io-index"
  50. checksum = "e89da841a80418a9b391ebaea17f5c112ffaaa96f621d2c285b5174da76b9011"
  51. dependencies = [
  52. "cfg-if",
  53. "once_cell",
  54. "version_check",
  55. "zerocopy",
  56. ]
  57. [[package]]
  58. name = "aho-corasick"
  59. version = "1.1.3"
  60. source = "registry+https://github.com/rust-lang/crates.io-index"
  61. checksum = "8e60d3430d3a69478ad0993f19238d2df97c507009a52b3c10addcd7f6bcb916"
  62. dependencies = [
  63. "memchr",
  64. ]
  65. [[package]]
  66. name = "alloc-no-stdlib"
  67. version = "2.0.4"
  68. source = "registry+https://github.com/rust-lang/crates.io-index"
  69. checksum = "cc7bb162ec39d46ab1ca8c77bf72e890535becd1751bb45f64c597edb4c8c6b3"
  70. [[package]]
  71. name = "alloc-stdlib"
  72. version = "0.2.2"
  73. source = "registry+https://github.com/rust-lang/crates.io-index"
  74. checksum = "94fb8275041c72129eb51b7d0322c29b8387a0386127718b096429201a5d6ece"
  75. dependencies = [
  76. "alloc-no-stdlib",
  77. ]
  78. [[package]]
  79. name = "allocator-api2"
  80. version = "0.2.21"
  81. source = "registry+https://github.com/rust-lang/crates.io-index"
  82. checksum = "683d7910e743518b0e34f1186f92494becacb047c7b6bf616c96772180fef923"
  83. [[package]]
  84. name = "android-tzdata"
  85. version = "0.1.1"
  86. source = "registry+https://github.com/rust-lang/crates.io-index"
  87. checksum = "e999941b234f3131b00bc13c22d06e8c5ff726d1b6318ac7eb276997bbb4fef0"
  88. [[package]]
  89. name = "android_system_properties"
  90. version = "0.1.5"
  91. source = "registry+https://github.com/rust-lang/crates.io-index"
  92. checksum = "819e7219dbd41043ac279b19830f2efc897156490d7fd6ea916720117ee66311"
  93. dependencies = [
  94. "libc",
  95. ]
  96. [[package]]
  97. name = "anes"
  98. version = "0.1.6"
  99. source = "registry+https://github.com/rust-lang/crates.io-index"
  100. checksum = "4b46cbb362ab8752921c97e041f5e366ee6297bd428a31275b9fcf1e380f7299"
  101. [[package]]
  102. name = "anstream"
  103. version = "0.6.18"
  104. source = "registry+https://github.com/rust-lang/crates.io-index"
  105. checksum = "8acc5369981196006228e28809f761875c0327210a891e941f4c683b3a99529b"
  106. dependencies = [
  107. "anstyle",
  108. "anstyle-parse",
  109. "anstyle-query",
  110. "anstyle-wincon",
  111. "colorchoice",
  112. "is_terminal_polyfill",
  113. "utf8parse",
  114. ]
  115. [[package]]
  116. name = "anstyle"
  117. version = "1.0.10"
  118. source = "registry+https://github.com/rust-lang/crates.io-index"
  119. checksum = "55cc3b69f167a1ef2e161439aa98aed94e6028e5f9a59be9a6ffb47aef1651f9"
  120. [[package]]
  121. name = "anstyle-parse"
  122. version = "0.2.6"
  123. source = "registry+https://github.com/rust-lang/crates.io-index"
  124. checksum = "3b2d16507662817a6a20a9ea92df6652ee4f94f914589377d69f3b21bc5798a9"
  125. dependencies = [
  126. "utf8parse",
  127. ]
  128. [[package]]
  129. name = "anstyle-query"
  130. version = "1.1.2"
  131. source = "registry+https://github.com/rust-lang/crates.io-index"
  132. checksum = "79947af37f4177cfead1110013d678905c37501914fba0efea834c3fe9a8d60c"
  133. dependencies = [
  134. "windows-sys 0.59.0",
  135. ]
  136. [[package]]
  137. name = "anstyle-wincon"
  138. version = "3.0.6"
  139. source = "registry+https://github.com/rust-lang/crates.io-index"
  140. checksum = "2109dbce0e72be3ec00bed26e6a7479ca384ad226efdd66db8fa2e3a38c83125"
  141. dependencies = [
  142. "anstyle",
  143. "windows-sys 0.59.0",
  144. ]
  145. [[package]]
  146. name = "anyhow"
  147. version = "1.0.95"
  148. source = "registry+https://github.com/rust-lang/crates.io-index"
  149. checksum = "34ac096ce696dc2fcabef30516bb13c0a68a11d30131d3df6f04711467681b04"
  150. dependencies = [
  151. "backtrace",
  152. ]
  153. [[package]]
  154. name = "arrayvec"
  155. version = "0.7.6"
  156. source = "registry+https://github.com/rust-lang/crates.io-index"
  157. checksum = "7c02d123df017efcdfbd739ef81735b36c5ba83ec3c59c80a9d7ecc718f92e50"
  158. [[package]]
  159. name = "async-compression"
  160. version = "0.4.18"
  161. source = "registry+https://github.com/rust-lang/crates.io-index"
  162. checksum = "df895a515f70646414f4b45c0b79082783b80552b373a68283012928df56f522"
  163. dependencies = [
  164. "brotli",
  165. "flate2",
  166. "futures-core",
  167. "memchr",
  168. "pin-project-lite",
  169. "tokio",
  170. "zstd",
  171. "zstd-safe",
  172. ]
  173. [[package]]
  174. name = "async-io"
  175. version = "1.13.0"
  176. source = "registry+https://github.com/rust-lang/crates.io-index"
  177. checksum = "0fc5b45d93ef0529756f812ca52e44c221b35341892d3dcc34132ac02f3dd2af"
  178. dependencies = [
  179. "async-lock",
  180. "autocfg",
  181. "cfg-if",
  182. "concurrent-queue",
  183. "futures-lite",
  184. "log",
  185. "parking",
  186. "polling",
  187. "rustix 0.37.27",
  188. "slab",
  189. "socket2 0.4.10",
  190. "waker-fn",
  191. ]
  192. [[package]]
  193. name = "async-lock"
  194. version = "2.8.0"
  195. source = "registry+https://github.com/rust-lang/crates.io-index"
  196. checksum = "287272293e9d8c41773cec55e365490fe034813a2f172f502d6ddcf75b2f582b"
  197. dependencies = [
  198. "event-listener",
  199. ]
  200. [[package]]
  201. name = "async-stream"
  202. version = "0.3.6"
  203. source = "registry+https://github.com/rust-lang/crates.io-index"
  204. checksum = "0b5a71a6f37880a80d1d7f19efd781e4b5de42c88f0722cc13bcb6cc2cfe8476"
  205. dependencies = [
  206. "async-stream-impl",
  207. "futures-core",
  208. "pin-project-lite",
  209. ]
  210. [[package]]
  211. name = "async-stream-impl"
  212. version = "0.3.6"
  213. source = "registry+https://github.com/rust-lang/crates.io-index"
  214. checksum = "c7c24de15d275a1ecfd47a380fb4d5ec9bfe0933f309ed5e705b775596a3574d"
  215. dependencies = [
  216. "proc-macro2",
  217. "quote",
  218. "syn 2.0.91",
  219. ]
  220. [[package]]
  221. name = "async-trait"
  222. version = "0.1.83"
  223. source = "registry+https://github.com/rust-lang/crates.io-index"
  224. checksum = "721cae7de5c34fbb2acd27e21e6d2cf7b886dce0c27388d46c4e6c47ea4318dd"
  225. dependencies = [
  226. "proc-macro2",
  227. "quote",
  228. "syn 2.0.91",
  229. ]
  230. [[package]]
  231. name = "async-utility"
  232. version = "0.2.0"
  233. source = "registry+https://github.com/rust-lang/crates.io-index"
  234. checksum = "a349201d80b4aa18d17a34a182bdd7f8ddf845e9e57d2ea130a12e10ef1e3a47"
  235. dependencies = [
  236. "futures-util",
  237. "gloo-timers",
  238. "tokio",
  239. "wasm-bindgen-futures",
  240. ]
  241. [[package]]
  242. name = "async-wsocket"
  243. version = "0.9.0"
  244. source = "registry+https://github.com/rust-lang/crates.io-index"
  245. checksum = "5c0984bead67f20366bc8dd46018dfbe189b67eeefb0e5b86b9eade18d7c3c3b"
  246. dependencies = [
  247. "async-utility",
  248. "futures",
  249. "futures-util",
  250. "js-sys",
  251. "thiserror 1.0.69",
  252. "tokio",
  253. "tokio-rustls 0.26.1",
  254. "tokio-socks",
  255. "tokio-tungstenite 0.24.0",
  256. "url",
  257. "wasm-bindgen",
  258. "web-sys",
  259. ]
  260. [[package]]
  261. name = "atoi"
  262. version = "1.0.0"
  263. source = "registry+https://github.com/rust-lang/crates.io-index"
  264. checksum = "d7c57d12312ff59c811c0643f4d80830505833c9ffaebd193d819392b265be8e"
  265. dependencies = [
  266. "num-traits",
  267. ]
  268. [[package]]
  269. name = "atomic-destructor"
  270. version = "0.2.0"
  271. source = "registry+https://github.com/rust-lang/crates.io-index"
  272. checksum = "7d919cb60ba95c87ba42777e9e246c4e8d658057299b437b7512531ce0a09a23"
  273. dependencies = [
  274. "tracing",
  275. ]
  276. [[package]]
  277. name = "autocfg"
  278. version = "1.4.0"
  279. source = "registry+https://github.com/rust-lang/crates.io-index"
  280. checksum = "ace50bade8e6234aa140d9a2f552bbee1db4d353f69b8217bc503490fc1a9f26"
  281. [[package]]
  282. name = "axum"
  283. version = "0.6.20"
  284. source = "registry+https://github.com/rust-lang/crates.io-index"
  285. checksum = "3b829e4e32b91e643de6eafe82b1d90675f5874230191a4ffbc1b336dec4d6bf"
  286. dependencies = [
  287. "async-trait",
  288. "axum-core",
  289. "base64 0.21.7",
  290. "bitflags 1.3.2",
  291. "bytes",
  292. "futures-util",
  293. "http 0.2.12",
  294. "http-body 0.4.6",
  295. "hyper 0.14.32",
  296. "itoa",
  297. "matchit",
  298. "memchr",
  299. "mime",
  300. "percent-encoding",
  301. "pin-project-lite",
  302. "rustversion",
  303. "serde",
  304. "serde_json",
  305. "serde_path_to_error",
  306. "serde_urlencoded",
  307. "sha1",
  308. "sync_wrapper 0.1.2",
  309. "tokio",
  310. "tokio-tungstenite 0.20.1",
  311. "tower",
  312. "tower-layer",
  313. "tower-service",
  314. ]
  315. [[package]]
  316. name = "axum-core"
  317. version = "0.3.4"
  318. source = "registry+https://github.com/rust-lang/crates.io-index"
  319. checksum = "759fa577a247914fd3f7f76d62972792636412fbfd634cd452f6a385a74d2d2c"
  320. dependencies = [
  321. "async-trait",
  322. "bytes",
  323. "futures-util",
  324. "http 0.2.12",
  325. "http-body 0.4.6",
  326. "mime",
  327. "rustversion",
  328. "tower-layer",
  329. "tower-service",
  330. ]
  331. [[package]]
  332. name = "backtrace"
  333. version = "0.3.74"
  334. source = "registry+https://github.com/rust-lang/crates.io-index"
  335. checksum = "8d82cb332cdfaed17ae235a638438ac4d4839913cc2af585c3c6746e8f8bee1a"
  336. dependencies = [
  337. "addr2line",
  338. "cfg-if",
  339. "libc",
  340. "miniz_oxide",
  341. "object",
  342. "rustc-demangle",
  343. "windows-targets 0.52.6",
  344. ]
  345. [[package]]
  346. name = "base58ck"
  347. version = "0.1.0"
  348. source = "registry+https://github.com/rust-lang/crates.io-index"
  349. checksum = "2c8d66485a3a2ea485c1913c4572ce0256067a5377ac8c75c4960e1cda98605f"
  350. dependencies = [
  351. "bitcoin-internals 0.3.0",
  352. "bitcoin_hashes 0.14.0",
  353. ]
  354. [[package]]
  355. name = "base64"
  356. version = "0.13.1"
  357. source = "registry+https://github.com/rust-lang/crates.io-index"
  358. checksum = "9e1b586273c5702936fe7b7d6896644d8be71e6314cfe09d3167c95f712589e8"
  359. [[package]]
  360. name = "base64"
  361. version = "0.21.7"
  362. source = "registry+https://github.com/rust-lang/crates.io-index"
  363. checksum = "9d297deb1925b89f2ccc13d7635fa0714f12c87adce1c75356b39ca9b7178567"
  364. [[package]]
  365. name = "base64"
  366. version = "0.22.1"
  367. source = "registry+https://github.com/rust-lang/crates.io-index"
  368. checksum = "72b3254f16251a8381aa12e40e3c4d2f0199f8c6508fbecb9d91f575e0fbb8c6"
  369. [[package]]
  370. name = "base64ct"
  371. version = "1.6.0"
  372. source = "registry+https://github.com/rust-lang/crates.io-index"
  373. checksum = "8c3c1a368f70d6cf7302d78f8f7093da241fb8e8807c05cc9e51a125895a6d5b"
  374. [[package]]
  375. name = "bech32"
  376. version = "0.9.1"
  377. source = "registry+https://github.com/rust-lang/crates.io-index"
  378. checksum = "d86b93f97252c47b41663388e6d155714a9d0c398b99f1005cbc5f978b29f445"
  379. [[package]]
  380. name = "bech32"
  381. version = "0.11.0"
  382. source = "registry+https://github.com/rust-lang/crates.io-index"
  383. checksum = "d965446196e3b7decd44aa7ee49e31d630118f90ef12f97900f262eb915c951d"
  384. [[package]]
  385. name = "bip39"
  386. version = "2.1.0"
  387. source = "registry+https://github.com/rust-lang/crates.io-index"
  388. checksum = "33415e24172c1b7d6066f6d999545375ab8e1d95421d6784bdfff9496f292387"
  389. dependencies = [
  390. "bitcoin_hashes 0.13.0",
  391. "rand",
  392. "rand_core",
  393. "serde",
  394. "unicode-normalization",
  395. ]
  396. [[package]]
  397. name = "bitcoin"
  398. version = "0.30.2"
  399. source = "registry+https://github.com/rust-lang/crates.io-index"
  400. checksum = "1945a5048598e4189e239d3f809b19bdad4845c4b2ba400d304d2dcf26d2c462"
  401. dependencies = [
  402. "bech32 0.9.1",
  403. "bitcoin-private",
  404. "bitcoin_hashes 0.12.0",
  405. "hex_lit",
  406. "secp256k1 0.27.0",
  407. "serde",
  408. ]
  409. [[package]]
  410. name = "bitcoin"
  411. version = "0.32.5"
  412. source = "registry+https://github.com/rust-lang/crates.io-index"
  413. checksum = "ce6bc65742dea50536e35ad42492b234c27904a27f0abdcbce605015cb4ea026"
  414. dependencies = [
  415. "base58ck",
  416. "base64 0.21.7",
  417. "bech32 0.11.0",
  418. "bitcoin-internals 0.3.0",
  419. "bitcoin-io",
  420. "bitcoin-units",
  421. "bitcoin_hashes 0.14.0",
  422. "hex-conservative 0.2.1",
  423. "hex_lit",
  424. "secp256k1 0.29.1",
  425. "serde",
  426. ]
  427. [[package]]
  428. name = "bitcoin-internals"
  429. version = "0.2.0"
  430. source = "registry+https://github.com/rust-lang/crates.io-index"
  431. checksum = "9425c3bf7089c983facbae04de54513cce73b41c7f9ff8c845b54e7bc64ebbfb"
  432. [[package]]
  433. name = "bitcoin-internals"
  434. version = "0.3.0"
  435. source = "registry+https://github.com/rust-lang/crates.io-index"
  436. checksum = "30bdbe14aa07b06e6cfeffc529a1f099e5fbe249524f8125358604df99a4bed2"
  437. dependencies = [
  438. "serde",
  439. ]
  440. [[package]]
  441. name = "bitcoin-io"
  442. version = "0.1.3"
  443. source = "registry+https://github.com/rust-lang/crates.io-index"
  444. checksum = "0b47c4ab7a93edb0c7198c5535ed9b52b63095f4e9b45279c6736cec4b856baf"
  445. [[package]]
  446. name = "bitcoin-private"
  447. version = "0.1.0"
  448. source = "registry+https://github.com/rust-lang/crates.io-index"
  449. checksum = "73290177011694f38ec25e165d0387ab7ea749a4b81cd4c80dae5988229f7a57"
  450. [[package]]
  451. name = "bitcoin-units"
  452. version = "0.1.2"
  453. source = "registry+https://github.com/rust-lang/crates.io-index"
  454. checksum = "5285c8bcaa25876d07f37e3d30c303f2609179716e11d688f51e8f1fe70063e2"
  455. dependencies = [
  456. "bitcoin-internals 0.3.0",
  457. "serde",
  458. ]
  459. [[package]]
  460. name = "bitcoin_hashes"
  461. version = "0.12.0"
  462. source = "registry+https://github.com/rust-lang/crates.io-index"
  463. checksum = "5d7066118b13d4b20b23645932dfb3a81ce7e29f95726c2036fa33cd7b092501"
  464. dependencies = [
  465. "bitcoin-private",
  466. "serde",
  467. ]
  468. [[package]]
  469. name = "bitcoin_hashes"
  470. version = "0.13.0"
  471. source = "registry+https://github.com/rust-lang/crates.io-index"
  472. checksum = "1930a4dabfebb8d7d9992db18ebe3ae2876f0a305fab206fd168df931ede293b"
  473. dependencies = [
  474. "bitcoin-internals 0.2.0",
  475. "hex-conservative 0.1.2",
  476. ]
  477. [[package]]
  478. name = "bitcoin_hashes"
  479. version = "0.14.0"
  480. source = "registry+https://github.com/rust-lang/crates.io-index"
  481. checksum = "bb18c03d0db0247e147a21a6faafd5a7eb851c743db062de72018b6b7e8e4d16"
  482. dependencies = [
  483. "bitcoin-io",
  484. "hex-conservative 0.2.1",
  485. "serde",
  486. ]
  487. [[package]]
  488. name = "bitcoincore-rpc"
  489. version = "0.19.0"
  490. source = "registry+https://github.com/rust-lang/crates.io-index"
  491. checksum = "aedd23ae0fd321affb4bbbc36126c6f49a32818dc6b979395d24da8c9d4e80ee"
  492. dependencies = [
  493. "bitcoincore-rpc-json",
  494. "jsonrpc",
  495. "log",
  496. "serde",
  497. "serde_json",
  498. ]
  499. [[package]]
  500. name = "bitcoincore-rpc-json"
  501. version = "0.19.0"
  502. source = "registry+https://github.com/rust-lang/crates.io-index"
  503. checksum = "d8909583c5fab98508e80ef73e5592a651c954993dc6b7739963257d19f0e71a"
  504. dependencies = [
  505. "bitcoin 0.32.5",
  506. "serde",
  507. "serde_json",
  508. ]
  509. [[package]]
  510. name = "bitflags"
  511. version = "1.3.2"
  512. source = "registry+https://github.com/rust-lang/crates.io-index"
  513. checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a"
  514. [[package]]
  515. name = "bitflags"
  516. version = "2.6.0"
  517. source = "registry+https://github.com/rust-lang/crates.io-index"
  518. checksum = "b048fb63fd8b5923fc5aa7b340d8e156aec7ec02f0c78fa8a6ddc2613f6f71de"
  519. [[package]]
  520. name = "block-buffer"
  521. version = "0.10.4"
  522. source = "registry+https://github.com/rust-lang/crates.io-index"
  523. checksum = "3078c7629b62d3f0439517fa394996acacc5cbc91c5a20d8c658e77abd503a71"
  524. dependencies = [
  525. "generic-array",
  526. ]
  527. [[package]]
  528. name = "block-padding"
  529. version = "0.3.3"
  530. source = "registry+https://github.com/rust-lang/crates.io-index"
  531. checksum = "a8894febbff9f758034a5b8e12d87918f56dfc64a8e1fe757d65e29041538d93"
  532. dependencies = [
  533. "generic-array",
  534. ]
  535. [[package]]
  536. name = "brotli"
  537. version = "7.0.0"
  538. source = "registry+https://github.com/rust-lang/crates.io-index"
  539. checksum = "cc97b8f16f944bba54f0433f07e30be199b6dc2bd25937444bbad560bcea29bd"
  540. dependencies = [
  541. "alloc-no-stdlib",
  542. "alloc-stdlib",
  543. "brotli-decompressor",
  544. ]
  545. [[package]]
  546. name = "brotli-decompressor"
  547. version = "4.0.1"
  548. source = "registry+https://github.com/rust-lang/crates.io-index"
  549. checksum = "9a45bd2e4095a8b518033b128020dd4a55aab1c0a381ba4404a472630f4bc362"
  550. dependencies = [
  551. "alloc-no-stdlib",
  552. "alloc-stdlib",
  553. ]
  554. [[package]]
  555. name = "bs58"
  556. version = "0.5.1"
  557. source = "registry+https://github.com/rust-lang/crates.io-index"
  558. checksum = "bf88ba1141d185c399bee5288d850d63b8369520c1eafc32a0430b5b6c287bf4"
  559. dependencies = [
  560. "tinyvec",
  561. ]
  562. [[package]]
  563. name = "bumpalo"
  564. version = "3.16.0"
  565. source = "registry+https://github.com/rust-lang/crates.io-index"
  566. checksum = "79296716171880943b8470b5f8d03aa55eb2e645a4874bdbb28adb49162e012c"
  567. [[package]]
  568. name = "bytecount"
  569. version = "0.6.8"
  570. source = "registry+https://github.com/rust-lang/crates.io-index"
  571. checksum = "5ce89b21cab1437276d2650d57e971f9d548a2d9037cc231abdc0562b97498ce"
  572. [[package]]
  573. name = "byteorder"
  574. version = "1.5.0"
  575. source = "registry+https://github.com/rust-lang/crates.io-index"
  576. checksum = "1fd0f2584146f6f2ef48085050886acf353beff7305ebd1ae69500e27c67f64b"
  577. [[package]]
  578. name = "bytes"
  579. version = "1.9.0"
  580. source = "registry+https://github.com/rust-lang/crates.io-index"
  581. checksum = "325918d6fe32f23b19878fe4b34794ae41fc19ddbe53b10571a4874d44ffd39b"
  582. [[package]]
  583. name = "camino"
  584. version = "1.1.9"
  585. source = "registry+https://github.com/rust-lang/crates.io-index"
  586. checksum = "8b96ec4966b5813e2c0507c1f86115c8c5abaadc3980879c3424042a02fd1ad3"
  587. dependencies = [
  588. "serde",
  589. ]
  590. [[package]]
  591. name = "cargo-platform"
  592. version = "0.1.9"
  593. source = "registry+https://github.com/rust-lang/crates.io-index"
  594. checksum = "e35af189006b9c0f00a064685c727031e3ed2d8020f7ba284d78cc2671bd36ea"
  595. dependencies = [
  596. "serde",
  597. ]
  598. [[package]]
  599. name = "cargo_metadata"
  600. version = "0.14.2"
  601. source = "registry+https://github.com/rust-lang/crates.io-index"
  602. checksum = "4acbb09d9ee8e23699b9634375c72795d095bf268439da88562cf9b501f181fa"
  603. dependencies = [
  604. "camino",
  605. "cargo-platform",
  606. "semver",
  607. "serde",
  608. "serde_json",
  609. ]
  610. [[package]]
  611. name = "cast"
  612. version = "0.3.0"
  613. source = "registry+https://github.com/rust-lang/crates.io-index"
  614. checksum = "37b2a672a2cb129a2e41c10b1224bb368f9f37a2b16b612598138befd7b37eb5"
  615. [[package]]
  616. name = "cbc"
  617. version = "0.1.2"
  618. source = "registry+https://github.com/rust-lang/crates.io-index"
  619. checksum = "26b52a9543ae338f279b96b0b9fed9c8093744685043739079ce85cd58f289a6"
  620. dependencies = [
  621. "cipher",
  622. ]
  623. [[package]]
  624. name = "cbor-diag"
  625. version = "0.1.12"
  626. source = "registry+https://github.com/rust-lang/crates.io-index"
  627. checksum = "dc245b6ecd09b23901a4fbad1ad975701fd5061ceaef6afa93a2d70605a64429"
  628. dependencies = [
  629. "bs58",
  630. "chrono",
  631. "data-encoding",
  632. "half",
  633. "nom",
  634. "num-bigint",
  635. "num-rational",
  636. "num-traits",
  637. "separator",
  638. "url",
  639. "uuid",
  640. ]
  641. [[package]]
  642. name = "cc"
  643. version = "1.2.5"
  644. source = "registry+https://github.com/rust-lang/crates.io-index"
  645. checksum = "c31a0499c1dc64f458ad13872de75c0eb7e3fdb0e67964610c914b034fc5956e"
  646. dependencies = [
  647. "jobserver",
  648. "libc",
  649. "shlex",
  650. ]
  651. [[package]]
  652. name = "cdk"
  653. version = "0.6.0"
  654. dependencies = [
  655. "anyhow",
  656. "async-trait",
  657. "bech32 0.9.1",
  658. "bip39",
  659. "bitcoin 0.32.5",
  660. "cbor-diag",
  661. "ciborium",
  662. "criterion",
  663. "futures",
  664. "getrandom",
  665. "instant",
  666. "lightning-invoice",
  667. "once_cell",
  668. "rand",
  669. "regex",
  670. "reqwest",
  671. "serde",
  672. "serde_json",
  673. "serde_with",
  674. "sync_wrapper 0.1.2",
  675. "thiserror 1.0.69",
  676. "tokio",
  677. "tokio-tungstenite 0.19.0",
  678. "tracing",
  679. "url",
  680. "utoipa",
  681. "uuid",
  682. ]
  683. [[package]]
  684. name = "cdk-axum"
  685. version = "0.6.0"
  686. dependencies = [
  687. "anyhow",
  688. "async-trait",
  689. "axum",
  690. "cdk",
  691. "futures",
  692. "moka",
  693. "paste",
  694. "redis",
  695. "serde",
  696. "serde_json",
  697. "sha2",
  698. "tokio",
  699. "tracing",
  700. "utoipa",
  701. "uuid",
  702. ]
  703. [[package]]
  704. name = "cdk-cli"
  705. version = "0.6.0"
  706. dependencies = [
  707. "anyhow",
  708. "bip39",
  709. "cdk",
  710. "cdk-redb",
  711. "cdk-sqlite",
  712. "clap",
  713. "home",
  714. "nostr-sdk",
  715. "rand",
  716. "reqwest",
  717. "serde",
  718. "serde_json",
  719. "tokio",
  720. "tracing",
  721. "tracing-subscriber",
  722. "url",
  723. ]
  724. [[package]]
  725. name = "cdk-cln"
  726. version = "0.6.0"
  727. dependencies = [
  728. "async-trait",
  729. "bitcoin 0.32.5",
  730. "cdk",
  731. "cln-rpc 0.2.0",
  732. "futures",
  733. "thiserror 1.0.69",
  734. "tokio",
  735. "tokio-util",
  736. "tracing",
  737. "uuid",
  738. ]
  739. [[package]]
  740. name = "cdk-fake-wallet"
  741. version = "0.6.0"
  742. dependencies = [
  743. "async-trait",
  744. "bitcoin 0.32.5",
  745. "cdk",
  746. "futures",
  747. "lightning-invoice",
  748. "rand",
  749. "serde",
  750. "serde_json",
  751. "thiserror 1.0.69",
  752. "tokio",
  753. "tokio-stream",
  754. "tokio-util",
  755. "tracing",
  756. ]
  757. [[package]]
  758. name = "cdk-integration-tests"
  759. version = "0.6.0"
  760. dependencies = [
  761. "anyhow",
  762. "async-trait",
  763. "axum",
  764. "bip39",
  765. "cdk",
  766. "cdk-axum",
  767. "cdk-cln",
  768. "cdk-fake-wallet",
  769. "cdk-redb",
  770. "cdk-sqlite",
  771. "futures",
  772. "getrandom",
  773. "instant",
  774. "lightning-invoice",
  775. "ln-regtest-rs",
  776. "once_cell",
  777. "rand",
  778. "serde",
  779. "serde_json",
  780. "tokio",
  781. "tokio-tungstenite 0.24.0",
  782. "tower-http",
  783. "tower-service",
  784. "tracing",
  785. "tracing-subscriber",
  786. "uuid",
  787. ]
  788. [[package]]
  789. name = "cdk-lnbits"
  790. version = "0.6.0"
  791. dependencies = [
  792. "anyhow",
  793. "async-trait",
  794. "axum",
  795. "bitcoin 0.32.5",
  796. "cdk",
  797. "futures",
  798. "lnbits-rs",
  799. "thiserror 1.0.69",
  800. "tokio",
  801. "tokio-util",
  802. "tracing",
  803. ]
  804. [[package]]
  805. name = "cdk-lnd"
  806. version = "0.6.0"
  807. dependencies = [
  808. "anyhow",
  809. "async-trait",
  810. "cdk",
  811. "fedimint-tonic-lnd",
  812. "futures",
  813. "thiserror 1.0.69",
  814. "tokio",
  815. "tokio-util",
  816. "tracing",
  817. ]
  818. [[package]]
  819. name = "cdk-mintd"
  820. version = "0.6.0"
  821. dependencies = [
  822. "anyhow",
  823. "axum",
  824. "bip39",
  825. "cdk",
  826. "cdk-axum",
  827. "cdk-cln",
  828. "cdk-fake-wallet",
  829. "cdk-lnbits",
  830. "cdk-lnd",
  831. "cdk-phoenixd",
  832. "cdk-redb",
  833. "cdk-sqlite",
  834. "cdk-strike",
  835. "clap",
  836. "config",
  837. "futures",
  838. "home",
  839. "lightning-invoice",
  840. "rand",
  841. "serde",
  842. "tokio",
  843. "tower-http",
  844. "tracing",
  845. "tracing-subscriber",
  846. "url",
  847. "utoipa",
  848. "utoipa-swagger-ui",
  849. ]
  850. [[package]]
  851. name = "cdk-phoenixd"
  852. version = "0.6.0"
  853. dependencies = [
  854. "anyhow",
  855. "async-trait",
  856. "axum",
  857. "bitcoin 0.32.5",
  858. "cdk",
  859. "futures",
  860. "phoenixd-rs",
  861. "thiserror 1.0.69",
  862. "tokio",
  863. "tokio-util",
  864. "tracing",
  865. "uuid",
  866. ]
  867. [[package]]
  868. name = "cdk-redb"
  869. version = "0.6.0"
  870. dependencies = [
  871. "async-trait",
  872. "cdk",
  873. "lightning-invoice",
  874. "redb",
  875. "serde",
  876. "serde_json",
  877. "thiserror 1.0.69",
  878. "tracing",
  879. "uuid",
  880. ]
  881. [[package]]
  882. name = "cdk-rexie"
  883. version = "0.6.0"
  884. dependencies = [
  885. "async-trait",
  886. "cdk",
  887. "rexie",
  888. "serde",
  889. "serde-wasm-bindgen",
  890. "serde_json",
  891. "thiserror 1.0.69",
  892. "tokio",
  893. "web-sys",
  894. ]
  895. [[package]]
  896. name = "cdk-sqlite"
  897. version = "0.6.0"
  898. dependencies = [
  899. "async-trait",
  900. "bitcoin 0.32.5",
  901. "cdk",
  902. "lightning-invoice",
  903. "serde_json",
  904. "sqlx",
  905. "thiserror 1.0.69",
  906. "tokio",
  907. "tracing",
  908. "uuid",
  909. ]
  910. [[package]]
  911. name = "cdk-strike"
  912. version = "0.6.0"
  913. dependencies = [
  914. "anyhow",
  915. "async-trait",
  916. "axum",
  917. "bitcoin 0.32.5",
  918. "cdk",
  919. "futures",
  920. "strike-rs",
  921. "thiserror 1.0.69",
  922. "tokio",
  923. "tokio-util",
  924. "tracing",
  925. "uuid",
  926. ]
  927. [[package]]
  928. name = "cfg-if"
  929. version = "1.0.0"
  930. source = "registry+https://github.com/rust-lang/crates.io-index"
  931. checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd"
  932. [[package]]
  933. name = "cfg_aliases"
  934. version = "0.2.1"
  935. source = "registry+https://github.com/rust-lang/crates.io-index"
  936. checksum = "613afe47fcd5fac7ccf1db93babcb082c5994d996f20b8b159f2ad1658eb5724"
  937. [[package]]
  938. name = "chacha20"
  939. version = "0.9.1"
  940. source = "registry+https://github.com/rust-lang/crates.io-index"
  941. checksum = "c3613f74bd2eac03dad61bd53dbe620703d4371614fe0bc3b9f04dd36fe4e818"
  942. dependencies = [
  943. "cfg-if",
  944. "cipher",
  945. "cpufeatures",
  946. ]
  947. [[package]]
  948. name = "chacha20poly1305"
  949. version = "0.10.1"
  950. source = "registry+https://github.com/rust-lang/crates.io-index"
  951. checksum = "10cd79432192d1c0f4e1a0fef9527696cc039165d729fb41b3f4f4f354c2dc35"
  952. dependencies = [
  953. "aead",
  954. "chacha20",
  955. "cipher",
  956. "poly1305",
  957. "zeroize",
  958. ]
  959. [[package]]
  960. name = "chrono"
  961. version = "0.4.39"
  962. source = "registry+https://github.com/rust-lang/crates.io-index"
  963. checksum = "7e36cc9d416881d2e24f9a963be5fb1cd90966419ac844274161d10488b3e825"
  964. dependencies = [
  965. "android-tzdata",
  966. "iana-time-zone",
  967. "num-traits",
  968. "serde",
  969. "windows-targets 0.52.6",
  970. ]
  971. [[package]]
  972. name = "ciborium"
  973. version = "0.2.2"
  974. source = "registry+https://github.com/rust-lang/crates.io-index"
  975. checksum = "42e69ffd6f0917f5c029256a24d0161db17cea3997d185db0d35926308770f0e"
  976. dependencies = [
  977. "ciborium-io",
  978. "ciborium-ll",
  979. "serde",
  980. ]
  981. [[package]]
  982. name = "ciborium-io"
  983. version = "0.2.2"
  984. source = "registry+https://github.com/rust-lang/crates.io-index"
  985. checksum = "05afea1e0a06c9be33d539b876f1ce3692f4afea2cb41f740e7743225ed1c757"
  986. [[package]]
  987. name = "ciborium-ll"
  988. version = "0.2.2"
  989. source = "registry+https://github.com/rust-lang/crates.io-index"
  990. checksum = "57663b653d948a338bfb3eeba9bb2fd5fcfaecb9e199e87e1eda4d9e8b240fd9"
  991. dependencies = [
  992. "ciborium-io",
  993. "half",
  994. ]
  995. [[package]]
  996. name = "cipher"
  997. version = "0.4.4"
  998. source = "registry+https://github.com/rust-lang/crates.io-index"
  999. checksum = "773f3b9af64447d2ce9850330c473515014aa235e6a783b02db81ff39e4a3dad"
  1000. dependencies = [
  1001. "crypto-common",
  1002. "inout",
  1003. "zeroize",
  1004. ]
  1005. [[package]]
  1006. name = "clap"
  1007. version = "4.5.23"
  1008. source = "registry+https://github.com/rust-lang/crates.io-index"
  1009. checksum = "3135e7ec2ef7b10c6ed8950f0f792ed96ee093fa088608f1c76e569722700c84"
  1010. dependencies = [
  1011. "clap_builder",
  1012. "clap_derive",
  1013. ]
  1014. [[package]]
  1015. name = "clap_builder"
  1016. version = "4.5.23"
  1017. source = "registry+https://github.com/rust-lang/crates.io-index"
  1018. checksum = "30582fc632330df2bd26877bde0c1f4470d57c582bbc070376afcd04d8cb4838"
  1019. dependencies = [
  1020. "anstream",
  1021. "anstyle",
  1022. "clap_lex",
  1023. "strsim",
  1024. ]
  1025. [[package]]
  1026. name = "clap_derive"
  1027. version = "4.5.18"
  1028. source = "registry+https://github.com/rust-lang/crates.io-index"
  1029. checksum = "4ac6a0c7b1a9e9a5186361f67dfa1b88213572f427fb9ab038efb2bd8c582dab"
  1030. dependencies = [
  1031. "heck 0.5.0",
  1032. "proc-macro2",
  1033. "quote",
  1034. "syn 2.0.91",
  1035. ]
  1036. [[package]]
  1037. name = "clap_lex"
  1038. version = "0.7.4"
  1039. source = "registry+https://github.com/rust-lang/crates.io-index"
  1040. checksum = "f46ad14479a25103f283c0f10005961cf086d8dc42205bb44c46ac563475dca6"
  1041. [[package]]
  1042. name = "cln-rpc"
  1043. version = "0.1.9"
  1044. source = "registry+https://github.com/rust-lang/crates.io-index"
  1045. checksum = "974dac6f40275b7b828087f4f9973c39658f9b4a46cc589c083a2c6c27cf67cb"
  1046. dependencies = [
  1047. "anyhow",
  1048. "bitcoin 0.30.2",
  1049. "bytes",
  1050. "futures-util",
  1051. "hex",
  1052. "log",
  1053. "serde",
  1054. "serde_json",
  1055. "tokio",
  1056. "tokio-util",
  1057. ]
  1058. [[package]]
  1059. name = "cln-rpc"
  1060. version = "0.2.0"
  1061. source = "registry+https://github.com/rust-lang/crates.io-index"
  1062. checksum = "3374857a63bde21f5cc54ed3884476f3118dd5e26d792d16dfa21d8a4acb23e8"
  1063. dependencies = [
  1064. "anyhow",
  1065. "bitcoin 0.30.2",
  1066. "bytes",
  1067. "futures-util",
  1068. "hex",
  1069. "log",
  1070. "serde",
  1071. "serde_json",
  1072. "tokio",
  1073. "tokio-util",
  1074. ]
  1075. [[package]]
  1076. name = "colorchoice"
  1077. version = "1.0.3"
  1078. source = "registry+https://github.com/rust-lang/crates.io-index"
  1079. checksum = "5b63caa9aa9397e2d9480a9b13673856c78d8ac123288526c37d7839f2a86990"
  1080. [[package]]
  1081. name = "combine"
  1082. version = "4.6.7"
  1083. source = "registry+https://github.com/rust-lang/crates.io-index"
  1084. checksum = "ba5a308b75df32fe02788e748662718f03fde005016435c444eea572398219fd"
  1085. dependencies = [
  1086. "bytes",
  1087. "futures-core",
  1088. "memchr",
  1089. "pin-project-lite",
  1090. "tokio",
  1091. "tokio-util",
  1092. ]
  1093. [[package]]
  1094. name = "concurrent-queue"
  1095. version = "2.5.0"
  1096. source = "registry+https://github.com/rust-lang/crates.io-index"
  1097. checksum = "4ca0197aee26d1ae37445ee532fefce43251d24cc7c166799f4d46817f1d3973"
  1098. dependencies = [
  1099. "crossbeam-utils",
  1100. ]
  1101. [[package]]
  1102. name = "config"
  1103. version = "0.13.4"
  1104. source = "registry+https://github.com/rust-lang/crates.io-index"
  1105. checksum = "23738e11972c7643e4ec947840fc463b6a571afcd3e735bdfce7d03c7a784aca"
  1106. dependencies = [
  1107. "async-trait",
  1108. "json5",
  1109. "lazy_static",
  1110. "nom",
  1111. "pathdiff",
  1112. "ron",
  1113. "rust-ini",
  1114. "serde",
  1115. "serde_json",
  1116. "toml",
  1117. "yaml-rust",
  1118. ]
  1119. [[package]]
  1120. name = "core-foundation"
  1121. version = "0.9.4"
  1122. source = "registry+https://github.com/rust-lang/crates.io-index"
  1123. checksum = "91e195e091a93c46f7102ec7818a2aa394e1e1771c3ab4825963fa03e45afb8f"
  1124. dependencies = [
  1125. "core-foundation-sys",
  1126. "libc",
  1127. ]
  1128. [[package]]
  1129. name = "core-foundation"
  1130. version = "0.10.0"
  1131. source = "registry+https://github.com/rust-lang/crates.io-index"
  1132. checksum = "b55271e5c8c478ad3f38ad24ef34923091e0548492a266d19b3c0b4d82574c63"
  1133. dependencies = [
  1134. "core-foundation-sys",
  1135. "libc",
  1136. ]
  1137. [[package]]
  1138. name = "core-foundation-sys"
  1139. version = "0.8.7"
  1140. source = "registry+https://github.com/rust-lang/crates.io-index"
  1141. checksum = "773648b94d0e5d620f64f280777445740e61fe701025087ec8b57f45c791888b"
  1142. [[package]]
  1143. name = "cpufeatures"
  1144. version = "0.2.16"
  1145. source = "registry+https://github.com/rust-lang/crates.io-index"
  1146. checksum = "16b80225097f2e5ae4e7179dd2266824648f3e2f49d9134d584b76389d31c4c3"
  1147. dependencies = [
  1148. "libc",
  1149. ]
  1150. [[package]]
  1151. name = "crc"
  1152. version = "3.2.1"
  1153. source = "registry+https://github.com/rust-lang/crates.io-index"
  1154. checksum = "69e6e4d7b33a94f0991c26729976b10ebde1d34c3ee82408fb536164fa10d636"
  1155. dependencies = [
  1156. "crc-catalog",
  1157. ]
  1158. [[package]]
  1159. name = "crc-catalog"
  1160. version = "2.4.0"
  1161. source = "registry+https://github.com/rust-lang/crates.io-index"
  1162. checksum = "19d374276b40fb8bbdee95aef7c7fa6b5316ec764510eb64b8dd0e2ed0d7e7f5"
  1163. [[package]]
  1164. name = "crc32fast"
  1165. version = "1.4.2"
  1166. source = "registry+https://github.com/rust-lang/crates.io-index"
  1167. checksum = "a97769d94ddab943e4510d138150169a2758b5ef3eb191a9ee688de3e23ef7b3"
  1168. dependencies = [
  1169. "cfg-if",
  1170. ]
  1171. [[package]]
  1172. name = "criterion"
  1173. version = "0.5.1"
  1174. source = "registry+https://github.com/rust-lang/crates.io-index"
  1175. checksum = "f2b12d017a929603d80db1831cd3a24082f8137ce19c69e6447f54f5fc8d692f"
  1176. dependencies = [
  1177. "anes",
  1178. "cast",
  1179. "ciborium",
  1180. "clap",
  1181. "criterion-plot",
  1182. "is-terminal",
  1183. "itertools 0.10.5",
  1184. "num-traits",
  1185. "once_cell",
  1186. "oorandom",
  1187. "plotters",
  1188. "rayon",
  1189. "regex",
  1190. "serde",
  1191. "serde_derive",
  1192. "serde_json",
  1193. "tinytemplate",
  1194. "walkdir",
  1195. ]
  1196. [[package]]
  1197. name = "criterion-plot"
  1198. version = "0.5.0"
  1199. source = "registry+https://github.com/rust-lang/crates.io-index"
  1200. checksum = "6b50826342786a51a89e2da3a28f1c32b06e387201bc2d19791f622c673706b1"
  1201. dependencies = [
  1202. "cast",
  1203. "itertools 0.10.5",
  1204. ]
  1205. [[package]]
  1206. name = "crossbeam-channel"
  1207. version = "0.5.14"
  1208. source = "registry+https://github.com/rust-lang/crates.io-index"
  1209. checksum = "06ba6d68e24814cb8de6bb986db8222d3a027d15872cabc0d18817bc3c0e4471"
  1210. dependencies = [
  1211. "crossbeam-utils",
  1212. ]
  1213. [[package]]
  1214. name = "crossbeam-deque"
  1215. version = "0.8.6"
  1216. source = "registry+https://github.com/rust-lang/crates.io-index"
  1217. checksum = "9dd111b7b7f7d55b72c0a6ae361660ee5853c9af73f70c3c2ef6858b950e2e51"
  1218. dependencies = [
  1219. "crossbeam-epoch",
  1220. "crossbeam-utils",
  1221. ]
  1222. [[package]]
  1223. name = "crossbeam-epoch"
  1224. version = "0.9.18"
  1225. source = "registry+https://github.com/rust-lang/crates.io-index"
  1226. checksum = "5b82ac4a3c2ca9c3460964f020e1402edd5753411d7737aa39c3714ad1b5420e"
  1227. dependencies = [
  1228. "crossbeam-utils",
  1229. ]
  1230. [[package]]
  1231. name = "crossbeam-queue"
  1232. version = "0.3.12"
  1233. source = "registry+https://github.com/rust-lang/crates.io-index"
  1234. checksum = "0f58bbc28f91df819d0aa2a2c00cd19754769c2fad90579b3592b1c9ba7a3115"
  1235. dependencies = [
  1236. "crossbeam-utils",
  1237. ]
  1238. [[package]]
  1239. name = "crossbeam-utils"
  1240. version = "0.8.21"
  1241. source = "registry+https://github.com/rust-lang/crates.io-index"
  1242. checksum = "d0a5c400df2834b80a4c3327b3aad3a4c4cd4de0629063962b03235697506a28"
  1243. [[package]]
  1244. name = "crunchy"
  1245. version = "0.2.2"
  1246. source = "registry+https://github.com/rust-lang/crates.io-index"
  1247. checksum = "7a81dae078cea95a014a339291cec439d2f232ebe854a9d672b796c6afafa9b7"
  1248. [[package]]
  1249. name = "crypto-common"
  1250. version = "0.1.6"
  1251. source = "registry+https://github.com/rust-lang/crates.io-index"
  1252. checksum = "1bfb12502f3fc46cca1bb51ac28df9d618d813cdc3d2f25b9fe775a34af26bb3"
  1253. dependencies = [
  1254. "generic-array",
  1255. "rand_core",
  1256. "typenum",
  1257. ]
  1258. [[package]]
  1259. name = "darling"
  1260. version = "0.20.10"
  1261. source = "registry+https://github.com/rust-lang/crates.io-index"
  1262. checksum = "6f63b86c8a8826a49b8c21f08a2d07338eec8d900540f8630dc76284be802989"
  1263. dependencies = [
  1264. "darling_core",
  1265. "darling_macro",
  1266. ]
  1267. [[package]]
  1268. name = "darling_core"
  1269. version = "0.20.10"
  1270. source = "registry+https://github.com/rust-lang/crates.io-index"
  1271. checksum = "95133861a8032aaea082871032f5815eb9e98cef03fa916ab4500513994df9e5"
  1272. dependencies = [
  1273. "fnv",
  1274. "ident_case",
  1275. "proc-macro2",
  1276. "quote",
  1277. "strsim",
  1278. "syn 2.0.91",
  1279. ]
  1280. [[package]]
  1281. name = "darling_macro"
  1282. version = "0.20.10"
  1283. source = "registry+https://github.com/rust-lang/crates.io-index"
  1284. checksum = "d336a2a514f6ccccaa3e09b02d41d35330c07ddf03a62165fcec10bb561c7806"
  1285. dependencies = [
  1286. "darling_core",
  1287. "quote",
  1288. "syn 2.0.91",
  1289. ]
  1290. [[package]]
  1291. name = "data-encoding"
  1292. version = "2.6.0"
  1293. source = "registry+https://github.com/rust-lang/crates.io-index"
  1294. checksum = "e8566979429cf69b49a5c740c60791108e86440e8be149bbea4fe54d2c32d6e2"
  1295. [[package]]
  1296. name = "deranged"
  1297. version = "0.3.11"
  1298. source = "registry+https://github.com/rust-lang/crates.io-index"
  1299. checksum = "b42b6fa04a440b495c8b04d0e71b707c585f83cb9cb28cf8cd0d976c315e31b4"
  1300. dependencies = [
  1301. "powerfmt",
  1302. "serde",
  1303. ]
  1304. [[package]]
  1305. name = "digest"
  1306. version = "0.10.7"
  1307. source = "registry+https://github.com/rust-lang/crates.io-index"
  1308. checksum = "9ed9a281f7bc9b7576e61468ba615a66a5c8cfdff42420a70aa82701a3b1e292"
  1309. dependencies = [
  1310. "block-buffer",
  1311. "crypto-common",
  1312. "subtle",
  1313. ]
  1314. [[package]]
  1315. name = "dirs"
  1316. version = "5.0.1"
  1317. source = "registry+https://github.com/rust-lang/crates.io-index"
  1318. checksum = "44c45a9d03d6676652bcb5e724c7e988de1acad23a711b5217ab9cbecbec2225"
  1319. dependencies = [
  1320. "dirs-sys",
  1321. ]
  1322. [[package]]
  1323. name = "dirs-sys"
  1324. version = "0.4.1"
  1325. source = "registry+https://github.com/rust-lang/crates.io-index"
  1326. checksum = "520f05a5cbd335fae5a99ff7a6ab8627577660ee5cfd6a94a6a929b52ff0321c"
  1327. dependencies = [
  1328. "libc",
  1329. "option-ext",
  1330. "redox_users",
  1331. "windows-sys 0.48.0",
  1332. ]
  1333. [[package]]
  1334. name = "displaydoc"
  1335. version = "0.2.5"
  1336. source = "registry+https://github.com/rust-lang/crates.io-index"
  1337. checksum = "97369cbbc041bc366949bc74d34658d6cda5621039731c6310521892a3a20ae0"
  1338. dependencies = [
  1339. "proc-macro2",
  1340. "quote",
  1341. "syn 2.0.91",
  1342. ]
  1343. [[package]]
  1344. name = "dlv-list"
  1345. version = "0.3.0"
  1346. source = "registry+https://github.com/rust-lang/crates.io-index"
  1347. checksum = "0688c2a7f92e427f44895cd63841bff7b29f8d7a1648b9e7e07a4a365b2e1257"
  1348. [[package]]
  1349. name = "dotenvy"
  1350. version = "0.15.7"
  1351. source = "registry+https://github.com/rust-lang/crates.io-index"
  1352. checksum = "1aaf95b3e5c8f23aa320147307562d361db0ae0d51242340f558153b4eb2439b"
  1353. [[package]]
  1354. name = "either"
  1355. version = "1.13.0"
  1356. source = "registry+https://github.com/rust-lang/crates.io-index"
  1357. checksum = "60b1af1c220855b6ceac025d3f6ecdd2b7c4894bfe9cd9bda4fbb4bc7c0d4cf0"
  1358. [[package]]
  1359. name = "equivalent"
  1360. version = "1.0.1"
  1361. source = "registry+https://github.com/rust-lang/crates.io-index"
  1362. checksum = "5443807d6dff69373d433ab9ef5378ad8df50ca6298caf15de6e52e24aaf54d5"
  1363. [[package]]
  1364. name = "errno"
  1365. version = "0.3.10"
  1366. source = "registry+https://github.com/rust-lang/crates.io-index"
  1367. checksum = "33d852cb9b869c2a9b3df2f71a3074817f01e1844f839a144f5fcef059a4eb5d"
  1368. dependencies = [
  1369. "libc",
  1370. "windows-sys 0.59.0",
  1371. ]
  1372. [[package]]
  1373. name = "error-chain"
  1374. version = "0.12.4"
  1375. source = "registry+https://github.com/rust-lang/crates.io-index"
  1376. checksum = "2d2f06b9cac1506ece98fe3231e3cc9c4410ec3d5b1f24ae1c8946f0742cdefc"
  1377. dependencies = [
  1378. "version_check",
  1379. ]
  1380. [[package]]
  1381. name = "event-listener"
  1382. version = "2.5.3"
  1383. source = "registry+https://github.com/rust-lang/crates.io-index"
  1384. checksum = "0206175f82b8d6bf6652ff7d71a1e27fd2e4efde587fd368662814d6ec1d9ce0"
  1385. [[package]]
  1386. name = "fastrand"
  1387. version = "1.9.0"
  1388. source = "registry+https://github.com/rust-lang/crates.io-index"
  1389. checksum = "e51093e27b0797c359783294ca4f0a911c270184cb10f85783b118614a1501be"
  1390. dependencies = [
  1391. "instant",
  1392. ]
  1393. [[package]]
  1394. name = "fastrand"
  1395. version = "2.3.0"
  1396. source = "registry+https://github.com/rust-lang/crates.io-index"
  1397. checksum = "37909eebbb50d72f9059c3b6d82c0463f2ff062c9e95845c43a6c9c0355411be"
  1398. [[package]]
  1399. name = "fedimint-tonic-lnd"
  1400. version = "0.2.0"
  1401. source = "registry+https://github.com/rust-lang/crates.io-index"
  1402. checksum = "df03ca33b5116de3051c1e233fe341e23b04c4913c7b16042497924559bc2a2e"
  1403. dependencies = [
  1404. "hex",
  1405. "http-body 0.4.6",
  1406. "hyper 0.14.32",
  1407. "hyper-rustls 0.24.2",
  1408. "prost",
  1409. "rustls 0.21.12",
  1410. "rustls-pemfile 1.0.4",
  1411. "tokio",
  1412. "tokio-stream",
  1413. "tonic",
  1414. "tonic-build",
  1415. "tower",
  1416. ]
  1417. [[package]]
  1418. name = "fixedbitset"
  1419. version = "0.4.2"
  1420. source = "registry+https://github.com/rust-lang/crates.io-index"
  1421. checksum = "0ce7134b9999ecaf8bcd65542e436736ef32ddca1b3e06094cb6ec5755203b80"
  1422. [[package]]
  1423. name = "flate2"
  1424. version = "1.0.35"
  1425. source = "registry+https://github.com/rust-lang/crates.io-index"
  1426. checksum = "c936bfdafb507ebbf50b8074c54fa31c5be9a1e7e5f467dd659697041407d07c"
  1427. dependencies = [
  1428. "crc32fast",
  1429. "miniz_oxide",
  1430. ]
  1431. [[package]]
  1432. name = "flume"
  1433. version = "0.10.14"
  1434. source = "registry+https://github.com/rust-lang/crates.io-index"
  1435. checksum = "1657b4441c3403d9f7b3409e47575237dac27b1b5726df654a6ecbf92f0f7577"
  1436. dependencies = [
  1437. "futures-core",
  1438. "futures-sink",
  1439. "pin-project",
  1440. "spin 0.9.8",
  1441. ]
  1442. [[package]]
  1443. name = "fnv"
  1444. version = "1.0.7"
  1445. source = "registry+https://github.com/rust-lang/crates.io-index"
  1446. checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1"
  1447. [[package]]
  1448. name = "foldhash"
  1449. version = "0.1.4"
  1450. source = "registry+https://github.com/rust-lang/crates.io-index"
  1451. checksum = "a0d2fde1f7b3d48b8395d5f2de76c18a528bd6a9cdde438df747bfcba3e05d6f"
  1452. [[package]]
  1453. name = "form_urlencoded"
  1454. version = "1.2.1"
  1455. source = "registry+https://github.com/rust-lang/crates.io-index"
  1456. checksum = "e13624c2627564efccf4934284bdd98cbaa14e79b0b5a141218e507b3a823456"
  1457. dependencies = [
  1458. "percent-encoding",
  1459. ]
  1460. [[package]]
  1461. name = "futures"
  1462. version = "0.3.31"
  1463. source = "registry+https://github.com/rust-lang/crates.io-index"
  1464. checksum = "65bc07b1a8bc7c85c5f2e110c476c7389b4554ba72af57d8445ea63a576b0876"
  1465. dependencies = [
  1466. "futures-channel",
  1467. "futures-core",
  1468. "futures-executor",
  1469. "futures-io",
  1470. "futures-sink",
  1471. "futures-task",
  1472. "futures-util",
  1473. ]
  1474. [[package]]
  1475. name = "futures-channel"
  1476. version = "0.3.31"
  1477. source = "registry+https://github.com/rust-lang/crates.io-index"
  1478. checksum = "2dff15bf788c671c1934e366d07e30c1814a8ef514e1af724a602e8a2fbe1b10"
  1479. dependencies = [
  1480. "futures-core",
  1481. "futures-sink",
  1482. ]
  1483. [[package]]
  1484. name = "futures-core"
  1485. version = "0.3.31"
  1486. source = "registry+https://github.com/rust-lang/crates.io-index"
  1487. checksum = "05f29059c0c2090612e8d742178b0580d2dc940c837851ad723096f87af6663e"
  1488. [[package]]
  1489. name = "futures-executor"
  1490. version = "0.3.31"
  1491. source = "registry+https://github.com/rust-lang/crates.io-index"
  1492. checksum = "1e28d1d997f585e54aebc3f97d39e72338912123a67330d723fdbb564d646c9f"
  1493. dependencies = [
  1494. "futures-core",
  1495. "futures-task",
  1496. "futures-util",
  1497. ]
  1498. [[package]]
  1499. name = "futures-intrusive"
  1500. version = "0.4.2"
  1501. source = "registry+https://github.com/rust-lang/crates.io-index"
  1502. checksum = "a604f7a68fbf8103337523b1fadc8ade7361ee3f112f7c680ad179651616aed5"
  1503. dependencies = [
  1504. "futures-core",
  1505. "lock_api",
  1506. "parking_lot 0.11.2",
  1507. ]
  1508. [[package]]
  1509. name = "futures-io"
  1510. version = "0.3.31"
  1511. source = "registry+https://github.com/rust-lang/crates.io-index"
  1512. checksum = "9e5c1b78ca4aae1ac06c48a526a655760685149f0d465d21f37abfe57ce075c6"
  1513. [[package]]
  1514. name = "futures-lite"
  1515. version = "1.13.0"
  1516. source = "registry+https://github.com/rust-lang/crates.io-index"
  1517. checksum = "49a9d51ce47660b1e808d3c990b4709f2f415d928835a17dfd16991515c46bce"
  1518. dependencies = [
  1519. "fastrand 1.9.0",
  1520. "futures-core",
  1521. "futures-io",
  1522. "memchr",
  1523. "parking",
  1524. "pin-project-lite",
  1525. "waker-fn",
  1526. ]
  1527. [[package]]
  1528. name = "futures-macro"
  1529. version = "0.3.31"
  1530. source = "registry+https://github.com/rust-lang/crates.io-index"
  1531. checksum = "162ee34ebcb7c64a8abebc059ce0fee27c2262618d7b60ed8faf72fef13c3650"
  1532. dependencies = [
  1533. "proc-macro2",
  1534. "quote",
  1535. "syn 2.0.91",
  1536. ]
  1537. [[package]]
  1538. name = "futures-sink"
  1539. version = "0.3.31"
  1540. source = "registry+https://github.com/rust-lang/crates.io-index"
  1541. checksum = "e575fab7d1e0dcb8d0c7bcf9a63ee213816ab51902e6d244a95819acacf1d4f7"
  1542. [[package]]
  1543. name = "futures-task"
  1544. version = "0.3.31"
  1545. source = "registry+https://github.com/rust-lang/crates.io-index"
  1546. checksum = "f90f7dce0722e95104fcb095585910c0977252f286e354b5e3bd38902cd99988"
  1547. [[package]]
  1548. name = "futures-util"
  1549. version = "0.3.31"
  1550. source = "registry+https://github.com/rust-lang/crates.io-index"
  1551. checksum = "9fa08315bb612088cc391249efdc3bc77536f16c91f6cf495e6fbe85b20a4a81"
  1552. dependencies = [
  1553. "futures-channel",
  1554. "futures-core",
  1555. "futures-io",
  1556. "futures-macro",
  1557. "futures-sink",
  1558. "futures-task",
  1559. "memchr",
  1560. "pin-project-lite",
  1561. "pin-utils",
  1562. "slab",
  1563. ]
  1564. [[package]]
  1565. name = "generic-array"
  1566. version = "0.14.7"
  1567. source = "registry+https://github.com/rust-lang/crates.io-index"
  1568. checksum = "85649ca51fd72272d7821adaf274ad91c288277713d9c18820d8499a7ff69e9a"
  1569. dependencies = [
  1570. "typenum",
  1571. "version_check",
  1572. ]
  1573. [[package]]
  1574. name = "getrandom"
  1575. version = "0.2.15"
  1576. source = "registry+https://github.com/rust-lang/crates.io-index"
  1577. checksum = "c4567c8db10ae91089c99af84c68c38da3ec2f087c3f82960bcdbf3656b6f4d7"
  1578. dependencies = [
  1579. "cfg-if",
  1580. "js-sys",
  1581. "libc",
  1582. "wasi",
  1583. "wasm-bindgen",
  1584. ]
  1585. [[package]]
  1586. name = "gimli"
  1587. version = "0.31.1"
  1588. source = "registry+https://github.com/rust-lang/crates.io-index"
  1589. checksum = "07e28edb80900c19c28f1072f2e8aeca7fa06b23cd4169cefe1af5aa3260783f"
  1590. [[package]]
  1591. name = "glob"
  1592. version = "0.3.1"
  1593. source = "registry+https://github.com/rust-lang/crates.io-index"
  1594. checksum = "d2fabcfbdc87f4758337ca535fb41a6d701b65693ce38287d856d1674551ec9b"
  1595. [[package]]
  1596. name = "gloo-timers"
  1597. version = "0.2.6"
  1598. source = "registry+https://github.com/rust-lang/crates.io-index"
  1599. checksum = "9b995a66bb87bebce9a0f4a95aed01daca4872c050bfcb21653361c03bc35e5c"
  1600. dependencies = [
  1601. "futures-channel",
  1602. "futures-core",
  1603. "js-sys",
  1604. "wasm-bindgen",
  1605. ]
  1606. [[package]]
  1607. name = "h2"
  1608. version = "0.3.26"
  1609. source = "registry+https://github.com/rust-lang/crates.io-index"
  1610. checksum = "81fe527a889e1532da5c525686d96d4c2e74cdd345badf8dfef9f6b39dd5f5e8"
  1611. dependencies = [
  1612. "bytes",
  1613. "fnv",
  1614. "futures-core",
  1615. "futures-sink",
  1616. "futures-util",
  1617. "http 0.2.12",
  1618. "indexmap 2.7.0",
  1619. "slab",
  1620. "tokio",
  1621. "tokio-util",
  1622. "tracing",
  1623. ]
  1624. [[package]]
  1625. name = "half"
  1626. version = "2.4.1"
  1627. source = "registry+https://github.com/rust-lang/crates.io-index"
  1628. checksum = "6dd08c532ae367adf81c312a4580bc67f1d0fe8bc9c460520283f4c0ff277888"
  1629. dependencies = [
  1630. "cfg-if",
  1631. "crunchy",
  1632. ]
  1633. [[package]]
  1634. name = "hashbrown"
  1635. version = "0.12.3"
  1636. source = "registry+https://github.com/rust-lang/crates.io-index"
  1637. checksum = "8a9ee70c43aaf417c914396645a0fa852624801b24ebb7ae78fe8272889ac888"
  1638. dependencies = [
  1639. "ahash 0.7.8",
  1640. ]
  1641. [[package]]
  1642. name = "hashbrown"
  1643. version = "0.14.5"
  1644. source = "registry+https://github.com/rust-lang/crates.io-index"
  1645. checksum = "e5274423e17b7c9fc20b6e7e208532f9b19825d82dfd615708b70edd83df41f1"
  1646. dependencies = [
  1647. "ahash 0.8.11",
  1648. "allocator-api2",
  1649. ]
  1650. [[package]]
  1651. name = "hashbrown"
  1652. version = "0.15.2"
  1653. source = "registry+https://github.com/rust-lang/crates.io-index"
  1654. checksum = "bf151400ff0baff5465007dd2f3e717f3fe502074ca563069ce3a6629d07b289"
  1655. dependencies = [
  1656. "allocator-api2",
  1657. "equivalent",
  1658. "foldhash",
  1659. ]
  1660. [[package]]
  1661. name = "hashlink"
  1662. version = "0.8.4"
  1663. source = "registry+https://github.com/rust-lang/crates.io-index"
  1664. checksum = "e8094feaf31ff591f651a2664fb9cfd92bba7a60ce3197265e9482ebe753c8f7"
  1665. dependencies = [
  1666. "hashbrown 0.14.5",
  1667. ]
  1668. [[package]]
  1669. name = "heck"
  1670. version = "0.4.1"
  1671. source = "registry+https://github.com/rust-lang/crates.io-index"
  1672. checksum = "95505c38b4572b2d910cecb0281560f54b440a19336cbbcb27bf6ce6adc6f5a8"
  1673. dependencies = [
  1674. "unicode-segmentation",
  1675. ]
  1676. [[package]]
  1677. name = "heck"
  1678. version = "0.5.0"
  1679. source = "registry+https://github.com/rust-lang/crates.io-index"
  1680. checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea"
  1681. [[package]]
  1682. name = "hermit-abi"
  1683. version = "0.3.9"
  1684. source = "registry+https://github.com/rust-lang/crates.io-index"
  1685. checksum = "d231dfb89cfffdbc30e7fc41579ed6066ad03abda9e567ccafae602b97ec5024"
  1686. [[package]]
  1687. name = "hermit-abi"
  1688. version = "0.4.0"
  1689. source = "registry+https://github.com/rust-lang/crates.io-index"
  1690. checksum = "fbf6a919d6cf397374f7dfeeea91d974c7c0a7221d0d0f4f20d859d329e53fcc"
  1691. [[package]]
  1692. name = "hex"
  1693. version = "0.4.3"
  1694. source = "registry+https://github.com/rust-lang/crates.io-index"
  1695. checksum = "7f24254aa9a54b5c858eaee2f5bccdb46aaf0e486a595ed5fd8f86ba55232a70"
  1696. [[package]]
  1697. name = "hex-conservative"
  1698. version = "0.1.2"
  1699. source = "registry+https://github.com/rust-lang/crates.io-index"
  1700. checksum = "212ab92002354b4819390025006c897e8140934349e8635c9b077f47b4dcbd20"
  1701. [[package]]
  1702. name = "hex-conservative"
  1703. version = "0.2.1"
  1704. source = "registry+https://github.com/rust-lang/crates.io-index"
  1705. checksum = "5313b072ce3c597065a808dbf612c4c8e8590bdbf8b579508bf7a762c5eae6cd"
  1706. dependencies = [
  1707. "arrayvec",
  1708. ]
  1709. [[package]]
  1710. name = "hex_lit"
  1711. version = "0.1.1"
  1712. source = "registry+https://github.com/rust-lang/crates.io-index"
  1713. checksum = "3011d1213f159867b13cfd6ac92d2cd5f1345762c63be3554e84092d85a50bbd"
  1714. [[package]]
  1715. name = "hmac"
  1716. version = "0.12.1"
  1717. source = "registry+https://github.com/rust-lang/crates.io-index"
  1718. checksum = "6c49c37c09c17a53d937dfbb742eb3a961d65a994e6bcdcf37e7399d0cc8ab5e"
  1719. dependencies = [
  1720. "digest",
  1721. ]
  1722. [[package]]
  1723. name = "home"
  1724. version = "0.5.11"
  1725. source = "registry+https://github.com/rust-lang/crates.io-index"
  1726. checksum = "589533453244b0995c858700322199b2becb13b627df2851f64a2775d024abcf"
  1727. dependencies = [
  1728. "windows-sys 0.59.0",
  1729. ]
  1730. [[package]]
  1731. name = "http"
  1732. version = "0.2.12"
  1733. source = "registry+https://github.com/rust-lang/crates.io-index"
  1734. checksum = "601cbb57e577e2f5ef5be8e7b83f0f63994f25aa94d673e54a92d5c516d101f1"
  1735. dependencies = [
  1736. "bytes",
  1737. "fnv",
  1738. "itoa",
  1739. ]
  1740. [[package]]
  1741. name = "http"
  1742. version = "1.2.0"
  1743. source = "registry+https://github.com/rust-lang/crates.io-index"
  1744. checksum = "f16ca2af56261c99fba8bac40a10251ce8188205a4c448fbb745a2e4daa76fea"
  1745. dependencies = [
  1746. "bytes",
  1747. "fnv",
  1748. "itoa",
  1749. ]
  1750. [[package]]
  1751. name = "http-body"
  1752. version = "0.4.6"
  1753. source = "registry+https://github.com/rust-lang/crates.io-index"
  1754. checksum = "7ceab25649e9960c0311ea418d17bee82c0dcec1bd053b5f9a66e265a693bed2"
  1755. dependencies = [
  1756. "bytes",
  1757. "http 0.2.12",
  1758. "pin-project-lite",
  1759. ]
  1760. [[package]]
  1761. name = "http-body"
  1762. version = "1.0.1"
  1763. source = "registry+https://github.com/rust-lang/crates.io-index"
  1764. checksum = "1efedce1fb8e6913f23e0c92de8e62cd5b772a67e7b3946df930a62566c93184"
  1765. dependencies = [
  1766. "bytes",
  1767. "http 1.2.0",
  1768. ]
  1769. [[package]]
  1770. name = "http-body-util"
  1771. version = "0.1.2"
  1772. source = "registry+https://github.com/rust-lang/crates.io-index"
  1773. checksum = "793429d76616a256bcb62c2a2ec2bed781c8307e797e2598c50010f2bee2544f"
  1774. dependencies = [
  1775. "bytes",
  1776. "futures-util",
  1777. "http 1.2.0",
  1778. "http-body 1.0.1",
  1779. "pin-project-lite",
  1780. ]
  1781. [[package]]
  1782. name = "http-range-header"
  1783. version = "0.3.1"
  1784. source = "registry+https://github.com/rust-lang/crates.io-index"
  1785. checksum = "add0ab9360ddbd88cfeb3bd9574a1d85cfdfa14db10b3e21d3700dbc4328758f"
  1786. [[package]]
  1787. name = "httparse"
  1788. version = "1.9.5"
  1789. source = "registry+https://github.com/rust-lang/crates.io-index"
  1790. checksum = "7d71d3574edd2771538b901e6549113b4006ece66150fb69c0fb6d9a2adae946"
  1791. [[package]]
  1792. name = "httpdate"
  1793. version = "1.0.3"
  1794. source = "registry+https://github.com/rust-lang/crates.io-index"
  1795. checksum = "df3b46402a9d5adb4c86a0cf463f42e19994e3ee891101b1841f30a545cb49a9"
  1796. [[package]]
  1797. name = "hyper"
  1798. version = "0.14.32"
  1799. source = "registry+https://github.com/rust-lang/crates.io-index"
  1800. checksum = "41dfc780fdec9373c01bae43289ea34c972e40ee3c9f6b3c8801a35f35586ce7"
  1801. dependencies = [
  1802. "bytes",
  1803. "futures-channel",
  1804. "futures-core",
  1805. "futures-util",
  1806. "h2",
  1807. "http 0.2.12",
  1808. "http-body 0.4.6",
  1809. "httparse",
  1810. "httpdate",
  1811. "itoa",
  1812. "pin-project-lite",
  1813. "socket2 0.5.8",
  1814. "tokio",
  1815. "tower-service",
  1816. "tracing",
  1817. "want",
  1818. ]
  1819. [[package]]
  1820. name = "hyper"
  1821. version = "1.5.2"
  1822. source = "registry+https://github.com/rust-lang/crates.io-index"
  1823. checksum = "256fb8d4bd6413123cc9d91832d78325c48ff41677595be797d90f42969beae0"
  1824. dependencies = [
  1825. "bytes",
  1826. "futures-channel",
  1827. "futures-util",
  1828. "http 1.2.0",
  1829. "http-body 1.0.1",
  1830. "httparse",
  1831. "itoa",
  1832. "pin-project-lite",
  1833. "smallvec",
  1834. "tokio",
  1835. "want",
  1836. ]
  1837. [[package]]
  1838. name = "hyper-rustls"
  1839. version = "0.24.2"
  1840. source = "registry+https://github.com/rust-lang/crates.io-index"
  1841. checksum = "ec3efd23720e2049821a693cbc7e65ea87c72f1c58ff2f9522ff332b1491e590"
  1842. dependencies = [
  1843. "futures-util",
  1844. "http 0.2.12",
  1845. "hyper 0.14.32",
  1846. "rustls 0.21.12",
  1847. "tokio",
  1848. "tokio-rustls 0.24.1",
  1849. ]
  1850. [[package]]
  1851. name = "hyper-rustls"
  1852. version = "0.27.5"
  1853. source = "registry+https://github.com/rust-lang/crates.io-index"
  1854. checksum = "2d191583f3da1305256f22463b9bb0471acad48a4e534a5218b9963e9c1f59b2"
  1855. dependencies = [
  1856. "futures-util",
  1857. "http 1.2.0",
  1858. "hyper 1.5.2",
  1859. "hyper-util",
  1860. "rustls 0.23.20",
  1861. "rustls-native-certs 0.8.1",
  1862. "rustls-pki-types",
  1863. "tokio",
  1864. "tokio-rustls 0.26.1",
  1865. "tower-service",
  1866. "webpki-roots 0.26.7",
  1867. ]
  1868. [[package]]
  1869. name = "hyper-timeout"
  1870. version = "0.4.1"
  1871. source = "registry+https://github.com/rust-lang/crates.io-index"
  1872. checksum = "bbb958482e8c7be4bc3cf272a766a2b0bf1a6755e7a6ae777f017a31d11b13b1"
  1873. dependencies = [
  1874. "hyper 0.14.32",
  1875. "pin-project-lite",
  1876. "tokio",
  1877. "tokio-io-timeout",
  1878. ]
  1879. [[package]]
  1880. name = "hyper-util"
  1881. version = "0.1.10"
  1882. source = "registry+https://github.com/rust-lang/crates.io-index"
  1883. checksum = "df2dcfbe0677734ab2f3ffa7fa7bfd4706bfdc1ef393f2ee30184aed67e631b4"
  1884. dependencies = [
  1885. "bytes",
  1886. "futures-channel",
  1887. "futures-util",
  1888. "http 1.2.0",
  1889. "http-body 1.0.1",
  1890. "hyper 1.5.2",
  1891. "pin-project-lite",
  1892. "socket2 0.5.8",
  1893. "tokio",
  1894. "tower-service",
  1895. "tracing",
  1896. ]
  1897. [[package]]
  1898. name = "iana-time-zone"
  1899. version = "0.1.61"
  1900. source = "registry+https://github.com/rust-lang/crates.io-index"
  1901. checksum = "235e081f3925a06703c2d0117ea8b91f042756fd6e7a6e5d901e8ca1a996b220"
  1902. dependencies = [
  1903. "android_system_properties",
  1904. "core-foundation-sys",
  1905. "iana-time-zone-haiku",
  1906. "js-sys",
  1907. "wasm-bindgen",
  1908. "windows-core",
  1909. ]
  1910. [[package]]
  1911. name = "iana-time-zone-haiku"
  1912. version = "0.1.2"
  1913. source = "registry+https://github.com/rust-lang/crates.io-index"
  1914. checksum = "f31827a206f56af32e590ba56d5d2d085f558508192593743f16b2306495269f"
  1915. dependencies = [
  1916. "cc",
  1917. ]
  1918. [[package]]
  1919. name = "icu_collections"
  1920. version = "1.5.0"
  1921. source = "registry+https://github.com/rust-lang/crates.io-index"
  1922. checksum = "db2fa452206ebee18c4b5c2274dbf1de17008e874b4dc4f0aea9d01ca79e4526"
  1923. dependencies = [
  1924. "displaydoc",
  1925. "yoke",
  1926. "zerofrom",
  1927. "zerovec",
  1928. ]
  1929. [[package]]
  1930. name = "icu_locid"
  1931. version = "1.5.0"
  1932. source = "registry+https://github.com/rust-lang/crates.io-index"
  1933. checksum = "13acbb8371917fc971be86fc8057c41a64b521c184808a698c02acc242dbf637"
  1934. dependencies = [
  1935. "displaydoc",
  1936. "litemap",
  1937. "tinystr",
  1938. "writeable",
  1939. "zerovec",
  1940. ]
  1941. [[package]]
  1942. name = "icu_locid_transform"
  1943. version = "1.5.0"
  1944. source = "registry+https://github.com/rust-lang/crates.io-index"
  1945. checksum = "01d11ac35de8e40fdeda00d9e1e9d92525f3f9d887cdd7aa81d727596788b54e"
  1946. dependencies = [
  1947. "displaydoc",
  1948. "icu_locid",
  1949. "icu_locid_transform_data",
  1950. "icu_provider",
  1951. "tinystr",
  1952. "zerovec",
  1953. ]
  1954. [[package]]
  1955. name = "icu_locid_transform_data"
  1956. version = "1.5.0"
  1957. source = "registry+https://github.com/rust-lang/crates.io-index"
  1958. checksum = "fdc8ff3388f852bede6b579ad4e978ab004f139284d7b28715f773507b946f6e"
  1959. [[package]]
  1960. name = "icu_normalizer"
  1961. version = "1.5.0"
  1962. source = "registry+https://github.com/rust-lang/crates.io-index"
  1963. checksum = "19ce3e0da2ec68599d193c93d088142efd7f9c5d6fc9b803774855747dc6a84f"
  1964. dependencies = [
  1965. "displaydoc",
  1966. "icu_collections",
  1967. "icu_normalizer_data",
  1968. "icu_properties",
  1969. "icu_provider",
  1970. "smallvec",
  1971. "utf16_iter",
  1972. "utf8_iter",
  1973. "write16",
  1974. "zerovec",
  1975. ]
  1976. [[package]]
  1977. name = "icu_normalizer_data"
  1978. version = "1.5.0"
  1979. source = "registry+https://github.com/rust-lang/crates.io-index"
  1980. checksum = "f8cafbf7aa791e9b22bec55a167906f9e1215fd475cd22adfcf660e03e989516"
  1981. [[package]]
  1982. name = "icu_properties"
  1983. version = "1.5.1"
  1984. source = "registry+https://github.com/rust-lang/crates.io-index"
  1985. checksum = "93d6020766cfc6302c15dbbc9c8778c37e62c14427cb7f6e601d849e092aeef5"
  1986. dependencies = [
  1987. "displaydoc",
  1988. "icu_collections",
  1989. "icu_locid_transform",
  1990. "icu_properties_data",
  1991. "icu_provider",
  1992. "tinystr",
  1993. "zerovec",
  1994. ]
  1995. [[package]]
  1996. name = "icu_properties_data"
  1997. version = "1.5.0"
  1998. source = "registry+https://github.com/rust-lang/crates.io-index"
  1999. checksum = "67a8effbc3dd3e4ba1afa8ad918d5684b8868b3b26500753effea8d2eed19569"
  2000. [[package]]
  2001. name = "icu_provider"
  2002. version = "1.5.0"
  2003. source = "registry+https://github.com/rust-lang/crates.io-index"
  2004. checksum = "6ed421c8a8ef78d3e2dbc98a973be2f3770cb42b606e3ab18d6237c4dfde68d9"
  2005. dependencies = [
  2006. "displaydoc",
  2007. "icu_locid",
  2008. "icu_provider_macros",
  2009. "stable_deref_trait",
  2010. "tinystr",
  2011. "writeable",
  2012. "yoke",
  2013. "zerofrom",
  2014. "zerovec",
  2015. ]
  2016. [[package]]
  2017. name = "icu_provider_macros"
  2018. version = "1.5.0"
  2019. source = "registry+https://github.com/rust-lang/crates.io-index"
  2020. checksum = "1ec89e9337638ecdc08744df490b221a7399bf8d164eb52a665454e60e075ad6"
  2021. dependencies = [
  2022. "proc-macro2",
  2023. "quote",
  2024. "syn 2.0.91",
  2025. ]
  2026. [[package]]
  2027. name = "idb"
  2028. version = "0.6.4"
  2029. source = "registry+https://github.com/rust-lang/crates.io-index"
  2030. checksum = "3afe8830d5802f769dc0be20a87f9f116798c896650cb6266eb5c19a3c109eed"
  2031. dependencies = [
  2032. "js-sys",
  2033. "num-traits",
  2034. "thiserror 1.0.69",
  2035. "tokio",
  2036. "wasm-bindgen",
  2037. "web-sys",
  2038. ]
  2039. [[package]]
  2040. name = "ident_case"
  2041. version = "1.0.1"
  2042. source = "registry+https://github.com/rust-lang/crates.io-index"
  2043. checksum = "b9e0384b61958566e926dc50660321d12159025e767c18e043daf26b70104c39"
  2044. [[package]]
  2045. name = "idna"
  2046. version = "1.0.3"
  2047. source = "registry+https://github.com/rust-lang/crates.io-index"
  2048. checksum = "686f825264d630750a544639377bae737628043f20d38bbc029e8f29ea968a7e"
  2049. dependencies = [
  2050. "idna_adapter",
  2051. "smallvec",
  2052. "utf8_iter",
  2053. ]
  2054. [[package]]
  2055. name = "idna_adapter"
  2056. version = "1.2.0"
  2057. source = "registry+https://github.com/rust-lang/crates.io-index"
  2058. checksum = "daca1df1c957320b2cf139ac61e7bd64fed304c5040df000a745aa1de3b4ef71"
  2059. dependencies = [
  2060. "icu_normalizer",
  2061. "icu_properties",
  2062. ]
  2063. [[package]]
  2064. name = "indexmap"
  2065. version = "1.9.3"
  2066. source = "registry+https://github.com/rust-lang/crates.io-index"
  2067. checksum = "bd070e393353796e801d209ad339e89596eb4c8d430d18ede6a1cced8fafbd99"
  2068. dependencies = [
  2069. "autocfg",
  2070. "hashbrown 0.12.3",
  2071. "serde",
  2072. ]
  2073. [[package]]
  2074. name = "indexmap"
  2075. version = "2.7.0"
  2076. source = "registry+https://github.com/rust-lang/crates.io-index"
  2077. checksum = "62f822373a4fe84d4bb149bf54e584a7f4abec90e072ed49cda0edea5b95471f"
  2078. dependencies = [
  2079. "equivalent",
  2080. "hashbrown 0.15.2",
  2081. "serde",
  2082. ]
  2083. [[package]]
  2084. name = "inout"
  2085. version = "0.1.3"
  2086. source = "registry+https://github.com/rust-lang/crates.io-index"
  2087. checksum = "a0c10553d664a4d0bcff9f4215d0aac67a639cc68ef660840afe309b807bc9f5"
  2088. dependencies = [
  2089. "block-padding",
  2090. "generic-array",
  2091. ]
  2092. [[package]]
  2093. name = "instant"
  2094. version = "0.1.13"
  2095. source = "registry+https://github.com/rust-lang/crates.io-index"
  2096. checksum = "e0242819d153cba4b4b05a5a8f2a7e9bbf97b6055b2a002b395c96b5ff3c0222"
  2097. dependencies = [
  2098. "cfg-if",
  2099. "js-sys",
  2100. "wasm-bindgen",
  2101. "web-sys",
  2102. ]
  2103. [[package]]
  2104. name = "io-lifetimes"
  2105. version = "1.0.11"
  2106. source = "registry+https://github.com/rust-lang/crates.io-index"
  2107. checksum = "eae7b9aee968036d54dce06cebaefd919e4472e753296daccd6d344e3e2df0c2"
  2108. dependencies = [
  2109. "hermit-abi 0.3.9",
  2110. "libc",
  2111. "windows-sys 0.48.0",
  2112. ]
  2113. [[package]]
  2114. name = "ipnet"
  2115. version = "2.10.1"
  2116. source = "registry+https://github.com/rust-lang/crates.io-index"
  2117. checksum = "ddc24109865250148c2e0f3d25d4f0f479571723792d3802153c60922a4fb708"
  2118. [[package]]
  2119. name = "is-terminal"
  2120. version = "0.4.13"
  2121. source = "registry+https://github.com/rust-lang/crates.io-index"
  2122. checksum = "261f68e344040fbd0edea105bef17c66edf46f984ddb1115b775ce31be948f4b"
  2123. dependencies = [
  2124. "hermit-abi 0.4.0",
  2125. "libc",
  2126. "windows-sys 0.52.0",
  2127. ]
  2128. [[package]]
  2129. name = "is_terminal_polyfill"
  2130. version = "1.70.1"
  2131. source = "registry+https://github.com/rust-lang/crates.io-index"
  2132. checksum = "7943c866cc5cd64cbc25b2e01621d07fa8eb2a1a23160ee81ce38704e97b8ecf"
  2133. [[package]]
  2134. name = "itertools"
  2135. version = "0.10.5"
  2136. source = "registry+https://github.com/rust-lang/crates.io-index"
  2137. checksum = "b0fd2260e829bddf4cb6ea802289de2f86d6a7a690192fbe91b3f46e0f2c8473"
  2138. dependencies = [
  2139. "either",
  2140. ]
  2141. [[package]]
  2142. name = "itertools"
  2143. version = "0.12.1"
  2144. source = "registry+https://github.com/rust-lang/crates.io-index"
  2145. checksum = "ba291022dbbd398a455acf126c1e341954079855bc60dfdda641363bd6922569"
  2146. dependencies = [
  2147. "either",
  2148. ]
  2149. [[package]]
  2150. name = "itoa"
  2151. version = "1.0.14"
  2152. source = "registry+https://github.com/rust-lang/crates.io-index"
  2153. checksum = "d75a2a4b1b190afb6f5425f10f6a8f959d2ea0b9c2b1d79553551850539e4674"
  2154. [[package]]
  2155. name = "jobserver"
  2156. version = "0.1.32"
  2157. source = "registry+https://github.com/rust-lang/crates.io-index"
  2158. checksum = "48d1dbcbbeb6a7fec7e059840aa538bd62aaccf972c7346c4d9d2059312853d0"
  2159. dependencies = [
  2160. "libc",
  2161. ]
  2162. [[package]]
  2163. name = "js-sys"
  2164. version = "0.3.76"
  2165. source = "registry+https://github.com/rust-lang/crates.io-index"
  2166. checksum = "6717b6b5b077764fb5966237269cb3c64edddde4b14ce42647430a78ced9e7b7"
  2167. dependencies = [
  2168. "once_cell",
  2169. "wasm-bindgen",
  2170. ]
  2171. [[package]]
  2172. name = "json5"
  2173. version = "0.4.1"
  2174. source = "registry+https://github.com/rust-lang/crates.io-index"
  2175. checksum = "96b0db21af676c1ce64250b5f40f3ce2cf27e4e47cb91ed91eb6fe9350b430c1"
  2176. dependencies = [
  2177. "pest",
  2178. "pest_derive",
  2179. "serde",
  2180. ]
  2181. [[package]]
  2182. name = "jsonrpc"
  2183. version = "0.18.0"
  2184. source = "registry+https://github.com/rust-lang/crates.io-index"
  2185. checksum = "3662a38d341d77efecb73caf01420cfa5aa63c0253fd7bc05289ef9f6616e1bf"
  2186. dependencies = [
  2187. "base64 0.13.1",
  2188. "minreq",
  2189. "serde",
  2190. "serde_json",
  2191. ]
  2192. [[package]]
  2193. name = "lazy_static"
  2194. version = "1.5.0"
  2195. source = "registry+https://github.com/rust-lang/crates.io-index"
  2196. checksum = "bbd2bcb4c963f2ddae06a2efc7e9f3591312473c50c6685e1f298068316e66fe"
  2197. [[package]]
  2198. name = "libc"
  2199. version = "0.2.169"
  2200. source = "registry+https://github.com/rust-lang/crates.io-index"
  2201. checksum = "b5aba8db14291edd000dfcc4d620c7ebfb122c613afb886ca8803fa4e128a20a"
  2202. [[package]]
  2203. name = "libredox"
  2204. version = "0.1.3"
  2205. source = "registry+https://github.com/rust-lang/crates.io-index"
  2206. checksum = "c0ff37bd590ca25063e35af745c343cb7a0271906fb7b37e4813e8f79f00268d"
  2207. dependencies = [
  2208. "bitflags 2.6.0",
  2209. "libc",
  2210. ]
  2211. [[package]]
  2212. name = "libsqlite3-sys"
  2213. version = "0.24.2"
  2214. source = "registry+https://github.com/rust-lang/crates.io-index"
  2215. checksum = "898745e570c7d0453cc1fbc4a701eb6c662ed54e8fec8b7d14be137ebeeb9d14"
  2216. dependencies = [
  2217. "cc",
  2218. "pkg-config",
  2219. "vcpkg",
  2220. ]
  2221. [[package]]
  2222. name = "lightning-invoice"
  2223. version = "0.32.0"
  2224. source = "registry+https://github.com/rust-lang/crates.io-index"
  2225. checksum = "90ab9f6ea77e20e3129235e62a2e6bd64ed932363df104e864ee65ccffb54a8f"
  2226. dependencies = [
  2227. "bech32 0.9.1",
  2228. "bitcoin 0.32.5",
  2229. "lightning-types",
  2230. "serde",
  2231. ]
  2232. [[package]]
  2233. name = "lightning-types"
  2234. version = "0.1.0"
  2235. source = "registry+https://github.com/rust-lang/crates.io-index"
  2236. checksum = "1083b8d9137000edf3bfcb1ff011c0d25e0cdd2feb98cc21d6765e64a494148f"
  2237. dependencies = [
  2238. "bech32 0.9.1",
  2239. "bitcoin 0.32.5",
  2240. "hex-conservative 0.2.1",
  2241. ]
  2242. [[package]]
  2243. name = "linked-hash-map"
  2244. version = "0.5.6"
  2245. source = "registry+https://github.com/rust-lang/crates.io-index"
  2246. checksum = "0717cef1bc8b636c6e1c1bbdefc09e6322da8a9321966e8928ef80d20f7f770f"
  2247. [[package]]
  2248. name = "linux-raw-sys"
  2249. version = "0.3.8"
  2250. source = "registry+https://github.com/rust-lang/crates.io-index"
  2251. checksum = "ef53942eb7bf7ff43a617b3e2c1c4a5ecf5944a7c1bc12d7ee39bbb15e5c1519"
  2252. [[package]]
  2253. name = "linux-raw-sys"
  2254. version = "0.4.14"
  2255. source = "registry+https://github.com/rust-lang/crates.io-index"
  2256. checksum = "78b3ae25bc7c8c38cec158d1f2757ee79e9b3740fbc7ccf0e59e4b08d793fa89"
  2257. [[package]]
  2258. name = "litemap"
  2259. version = "0.7.4"
  2260. source = "registry+https://github.com/rust-lang/crates.io-index"
  2261. checksum = "4ee93343901ab17bd981295f2cf0026d4ad018c7c31ba84549a4ddbb47a45104"
  2262. [[package]]
  2263. name = "ln-regtest-rs"
  2264. version = "0.1.0"
  2265. source = "git+https://github.com/thesimplekid/ln-regtest-rs?rev=e0ac418675#e0ac418675e66aa12f7c44a545ea5a831e2e3f69"
  2266. dependencies = [
  2267. "anyhow",
  2268. "async-trait",
  2269. "bitcoincore-rpc",
  2270. "cln-rpc 0.1.9",
  2271. "fedimint-tonic-lnd",
  2272. "serde",
  2273. "serde_json",
  2274. "tempfile",
  2275. "tokio",
  2276. "tracing",
  2277. "tracing-subscriber",
  2278. "uuid",
  2279. ]
  2280. [[package]]
  2281. name = "lnbits-rs"
  2282. version = "0.3.0"
  2283. source = "registry+https://github.com/rust-lang/crates.io-index"
  2284. checksum = "de0781184bc1ef37a5096191ab2cec74e7b467876547e067a61c515192cabfe7"
  2285. dependencies = [
  2286. "anyhow",
  2287. "axum",
  2288. "log",
  2289. "reqwest",
  2290. "serde",
  2291. "serde_json",
  2292. "tokio",
  2293. "url",
  2294. ]
  2295. [[package]]
  2296. name = "lock_api"
  2297. version = "0.4.12"
  2298. source = "registry+https://github.com/rust-lang/crates.io-index"
  2299. checksum = "07af8b9cdd281b7915f413fa73f29ebd5d55d0d3f0155584dade1ff18cea1b17"
  2300. dependencies = [
  2301. "autocfg",
  2302. "scopeguard",
  2303. ]
  2304. [[package]]
  2305. name = "log"
  2306. version = "0.4.22"
  2307. source = "registry+https://github.com/rust-lang/crates.io-index"
  2308. checksum = "a7a70ba024b9dc04c27ea2f0c0548feb474ec5c54bba33a7f72f873a39d07b24"
  2309. [[package]]
  2310. name = "lru"
  2311. version = "0.12.5"
  2312. source = "registry+https://github.com/rust-lang/crates.io-index"
  2313. checksum = "234cf4f4a04dc1f57e24b96cc0cd600cf2af460d4161ac5ecdd0af8e1f3b2a38"
  2314. dependencies = [
  2315. "hashbrown 0.15.2",
  2316. ]
  2317. [[package]]
  2318. name = "mach2"
  2319. version = "0.4.2"
  2320. source = "registry+https://github.com/rust-lang/crates.io-index"
  2321. checksum = "19b955cdeb2a02b9117f121ce63aa52d08ade45de53e48fe6a38b39c10f6f709"
  2322. dependencies = [
  2323. "libc",
  2324. ]
  2325. [[package]]
  2326. name = "matchers"
  2327. version = "0.1.0"
  2328. source = "registry+https://github.com/rust-lang/crates.io-index"
  2329. checksum = "8263075bb86c5a1b1427b5ae862e8889656f126e9f77c484496e8b47cf5c5558"
  2330. dependencies = [
  2331. "regex-automata 0.1.10",
  2332. ]
  2333. [[package]]
  2334. name = "matchit"
  2335. version = "0.7.3"
  2336. source = "registry+https://github.com/rust-lang/crates.io-index"
  2337. checksum = "0e7465ac9959cc2b1404e8e2367b43684a6d13790fe23056cc8c6c5a6b7bcb94"
  2338. [[package]]
  2339. name = "memchr"
  2340. version = "2.7.4"
  2341. source = "registry+https://github.com/rust-lang/crates.io-index"
  2342. checksum = "78ca9ab1a0babb1e7d5695e3530886289c18cf2f87ec19a575a0abdce112e3a3"
  2343. [[package]]
  2344. name = "mime"
  2345. version = "0.3.17"
  2346. source = "registry+https://github.com/rust-lang/crates.io-index"
  2347. checksum = "6877bb514081ee2a7ff5ef9de3281f14a4dd4bceac4c09388074a6b5df8a139a"
  2348. [[package]]
  2349. name = "mime_guess"
  2350. version = "2.0.5"
  2351. source = "registry+https://github.com/rust-lang/crates.io-index"
  2352. checksum = "f7c44f8e672c00fe5308fa235f821cb4198414e1c77935c1ab6948d3fd78550e"
  2353. dependencies = [
  2354. "mime",
  2355. "unicase",
  2356. ]
  2357. [[package]]
  2358. name = "minimal-lexical"
  2359. version = "0.2.1"
  2360. source = "registry+https://github.com/rust-lang/crates.io-index"
  2361. checksum = "68354c5c6bd36d73ff3feceb05efa59b6acb7626617f4962be322a825e61f79a"
  2362. [[package]]
  2363. name = "miniz_oxide"
  2364. version = "0.8.2"
  2365. source = "registry+https://github.com/rust-lang/crates.io-index"
  2366. checksum = "4ffbe83022cedc1d264172192511ae958937694cd57ce297164951b8b3568394"
  2367. dependencies = [
  2368. "adler2",
  2369. ]
  2370. [[package]]
  2371. name = "minreq"
  2372. version = "2.13.0"
  2373. source = "registry+https://github.com/rust-lang/crates.io-index"
  2374. checksum = "36a8e50e917e18a37d500d27d40b7bc7d127e71c0c94fb2d83f43b4afd308390"
  2375. dependencies = [
  2376. "log",
  2377. "serde",
  2378. "serde_json",
  2379. ]
  2380. [[package]]
  2381. name = "mio"
  2382. version = "1.0.3"
  2383. source = "registry+https://github.com/rust-lang/crates.io-index"
  2384. checksum = "2886843bf800fba2e3377cff24abf6379b4c4d5c6681eaf9ea5b0d15090450bd"
  2385. dependencies = [
  2386. "libc",
  2387. "wasi",
  2388. "windows-sys 0.52.0",
  2389. ]
  2390. [[package]]
  2391. name = "moka"
  2392. version = "0.11.3"
  2393. source = "registry+https://github.com/rust-lang/crates.io-index"
  2394. checksum = "fa6e72583bf6830c956235bff0d5afec8cf2952f579ebad18ae7821a917d950f"
  2395. dependencies = [
  2396. "async-io",
  2397. "async-lock",
  2398. "crossbeam-channel",
  2399. "crossbeam-epoch",
  2400. "crossbeam-utils",
  2401. "futures-util",
  2402. "once_cell",
  2403. "parking_lot 0.12.3",
  2404. "quanta",
  2405. "rustc_version",
  2406. "scheduled-thread-pool",
  2407. "skeptic",
  2408. "smallvec",
  2409. "tagptr",
  2410. "thiserror 1.0.69",
  2411. "triomphe",
  2412. "uuid",
  2413. ]
  2414. [[package]]
  2415. name = "multimap"
  2416. version = "0.10.0"
  2417. source = "registry+https://github.com/rust-lang/crates.io-index"
  2418. checksum = "defc4c55412d89136f966bbb339008b474350e5e6e78d2714439c386b3137a03"
  2419. [[package]]
  2420. name = "negentropy"
  2421. version = "0.3.1"
  2422. source = "registry+https://github.com/rust-lang/crates.io-index"
  2423. checksum = "e664971378a3987224f7a0e10059782035e89899ae403718ee07de85bec42afe"
  2424. [[package]]
  2425. name = "negentropy"
  2426. version = "0.4.3"
  2427. source = "registry+https://github.com/rust-lang/crates.io-index"
  2428. checksum = "43a88da9dd148bbcdce323dd6ac47d369b4769d4a3b78c6c52389b9269f77932"
  2429. [[package]]
  2430. name = "nom"
  2431. version = "7.1.3"
  2432. source = "registry+https://github.com/rust-lang/crates.io-index"
  2433. checksum = "d273983c5a657a70a3e8f2a01329822f3b8c8172b73826411a55751e404a0a4a"
  2434. dependencies = [
  2435. "memchr",
  2436. "minimal-lexical",
  2437. ]
  2438. [[package]]
  2439. name = "nostr"
  2440. version = "0.35.0"
  2441. source = "registry+https://github.com/rust-lang/crates.io-index"
  2442. checksum = "56db234b2e07901e372f34e9463f91590579cd8e6dbd34ed2ccc7e461e4ba639"
  2443. dependencies = [
  2444. "aes",
  2445. "base64 0.22.1",
  2446. "bech32 0.11.0",
  2447. "bip39",
  2448. "bitcoin 0.32.5",
  2449. "cbc",
  2450. "chacha20",
  2451. "chacha20poly1305",
  2452. "getrandom",
  2453. "instant",
  2454. "negentropy 0.3.1",
  2455. "negentropy 0.4.3",
  2456. "once_cell",
  2457. "scrypt",
  2458. "serde",
  2459. "serde_json",
  2460. "unicode-normalization",
  2461. "url",
  2462. ]
  2463. [[package]]
  2464. name = "nostr-database"
  2465. version = "0.35.0"
  2466. source = "registry+https://github.com/rust-lang/crates.io-index"
  2467. checksum = "50de8cc5e77e7dafa7e2e0d0d67187ef19e191dcd1a68efffd3e05152d91b3c3"
  2468. dependencies = [
  2469. "async-trait",
  2470. "lru",
  2471. "nostr",
  2472. "thiserror 1.0.69",
  2473. "tokio",
  2474. "tracing",
  2475. ]
  2476. [[package]]
  2477. name = "nostr-relay-pool"
  2478. version = "0.35.0"
  2479. source = "registry+https://github.com/rust-lang/crates.io-index"
  2480. checksum = "800b9ca169902977366f8243ec645b1fa4a128ab621331796d4a26bd7bc22a88"
  2481. dependencies = [
  2482. "async-utility",
  2483. "async-wsocket",
  2484. "atomic-destructor",
  2485. "negentropy 0.3.1",
  2486. "negentropy 0.4.3",
  2487. "nostr",
  2488. "nostr-database",
  2489. "thiserror 1.0.69",
  2490. "tokio",
  2491. "tokio-stream",
  2492. "tracing",
  2493. ]
  2494. [[package]]
  2495. name = "nostr-sdk"
  2496. version = "0.35.0"
  2497. source = "registry+https://github.com/rust-lang/crates.io-index"
  2498. checksum = "d93036bf4c1e35145ca2cd6ee4cb7bb9c74f41cbca9cc4caff1e87b5e192f253"
  2499. dependencies = [
  2500. "async-utility",
  2501. "atomic-destructor",
  2502. "nostr",
  2503. "nostr-database",
  2504. "nostr-relay-pool",
  2505. "nostr-signer",
  2506. "thiserror 1.0.69",
  2507. "tokio",
  2508. "tracing",
  2509. ]
  2510. [[package]]
  2511. name = "nostr-signer"
  2512. version = "0.35.0"
  2513. source = "registry+https://github.com/rust-lang/crates.io-index"
  2514. checksum = "c1e132975a677a1c97a7695ef1161291dc06517a588b6e17e3aa05d3fb4056a0"
  2515. dependencies = [
  2516. "async-utility",
  2517. "nostr",
  2518. "thiserror 1.0.69",
  2519. "tokio",
  2520. ]
  2521. [[package]]
  2522. name = "nu-ansi-term"
  2523. version = "0.46.0"
  2524. source = "registry+https://github.com/rust-lang/crates.io-index"
  2525. checksum = "77a8165726e8236064dbb45459242600304b42a5ea24ee2948e18e023bf7ba84"
  2526. dependencies = [
  2527. "overload",
  2528. "winapi",
  2529. ]
  2530. [[package]]
  2531. name = "num-bigint"
  2532. version = "0.4.6"
  2533. source = "registry+https://github.com/rust-lang/crates.io-index"
  2534. checksum = "a5e44f723f1133c9deac646763579fdb3ac745e418f2a7af9cd0c431da1f20b9"
  2535. dependencies = [
  2536. "num-integer",
  2537. "num-traits",
  2538. ]
  2539. [[package]]
  2540. name = "num-conv"
  2541. version = "0.1.0"
  2542. source = "registry+https://github.com/rust-lang/crates.io-index"
  2543. checksum = "51d515d32fb182ee37cda2ccdcb92950d6a3c2893aa280e540671c2cd0f3b1d9"
  2544. [[package]]
  2545. name = "num-integer"
  2546. version = "0.1.46"
  2547. source = "registry+https://github.com/rust-lang/crates.io-index"
  2548. checksum = "7969661fd2958a5cb096e56c8e1ad0444ac2bbcd0061bd28660485a44879858f"
  2549. dependencies = [
  2550. "num-traits",
  2551. ]
  2552. [[package]]
  2553. name = "num-rational"
  2554. version = "0.4.2"
  2555. source = "registry+https://github.com/rust-lang/crates.io-index"
  2556. checksum = "f83d14da390562dca69fc84082e73e548e1ad308d24accdedd2720017cb37824"
  2557. dependencies = [
  2558. "num-bigint",
  2559. "num-integer",
  2560. "num-traits",
  2561. ]
  2562. [[package]]
  2563. name = "num-traits"
  2564. version = "0.2.19"
  2565. source = "registry+https://github.com/rust-lang/crates.io-index"
  2566. checksum = "071dfc062690e90b734c0b2273ce72ad0ffa95f0c74596bc250dcfd960262841"
  2567. dependencies = [
  2568. "autocfg",
  2569. ]
  2570. [[package]]
  2571. name = "object"
  2572. version = "0.36.7"
  2573. source = "registry+https://github.com/rust-lang/crates.io-index"
  2574. checksum = "62948e14d923ea95ea2c7c86c71013138b66525b86bdc08d2dcc262bdb497b87"
  2575. dependencies = [
  2576. "memchr",
  2577. ]
  2578. [[package]]
  2579. name = "once_cell"
  2580. version = "1.20.2"
  2581. source = "registry+https://github.com/rust-lang/crates.io-index"
  2582. checksum = "1261fe7e33c73b354eab43b1273a57c8f967d0391e80353e51f764ac02cf6775"
  2583. [[package]]
  2584. name = "oorandom"
  2585. version = "11.1.4"
  2586. source = "registry+https://github.com/rust-lang/crates.io-index"
  2587. checksum = "b410bbe7e14ab526a0e86877eb47c6996a2bd7746f027ba551028c925390e4e9"
  2588. [[package]]
  2589. name = "opaque-debug"
  2590. version = "0.3.1"
  2591. source = "registry+https://github.com/rust-lang/crates.io-index"
  2592. checksum = "c08d65885ee38876c4f86fa503fb49d7b507c2b62552df7c70b2fce627e06381"
  2593. [[package]]
  2594. name = "openssl-probe"
  2595. version = "0.1.5"
  2596. source = "registry+https://github.com/rust-lang/crates.io-index"
  2597. checksum = "ff011a302c396a5197692431fc1948019154afc178baf7d8e37367442a4601cf"
  2598. [[package]]
  2599. name = "option-ext"
  2600. version = "0.2.0"
  2601. source = "registry+https://github.com/rust-lang/crates.io-index"
  2602. checksum = "04744f49eae99ab78e0d5c0b603ab218f515ea8cfe5a456d7629ad883a3b6e7d"
  2603. [[package]]
  2604. name = "ordered-multimap"
  2605. version = "0.4.3"
  2606. source = "registry+https://github.com/rust-lang/crates.io-index"
  2607. checksum = "ccd746e37177e1711c20dd619a1620f34f5c8b569c53590a72dedd5344d8924a"
  2608. dependencies = [
  2609. "dlv-list",
  2610. "hashbrown 0.12.3",
  2611. ]
  2612. [[package]]
  2613. name = "overload"
  2614. version = "0.1.1"
  2615. source = "registry+https://github.com/rust-lang/crates.io-index"
  2616. checksum = "b15813163c1d831bf4a13c3610c05c0d03b39feb07f7e09fa234dac9b15aaf39"
  2617. [[package]]
  2618. name = "parking"
  2619. version = "2.2.1"
  2620. source = "registry+https://github.com/rust-lang/crates.io-index"
  2621. checksum = "f38d5652c16fde515bb1ecef450ab0f6a219d619a7274976324d5e377f7dceba"
  2622. [[package]]
  2623. name = "parking_lot"
  2624. version = "0.11.2"
  2625. source = "registry+https://github.com/rust-lang/crates.io-index"
  2626. checksum = "7d17b78036a60663b797adeaee46f5c9dfebb86948d1255007a1d6be0271ff99"
  2627. dependencies = [
  2628. "instant",
  2629. "lock_api",
  2630. "parking_lot_core 0.8.6",
  2631. ]
  2632. [[package]]
  2633. name = "parking_lot"
  2634. version = "0.12.3"
  2635. source = "registry+https://github.com/rust-lang/crates.io-index"
  2636. checksum = "f1bf18183cf54e8d6059647fc3063646a1801cf30896933ec2311622cc4b9a27"
  2637. dependencies = [
  2638. "lock_api",
  2639. "parking_lot_core 0.9.10",
  2640. ]
  2641. [[package]]
  2642. name = "parking_lot_core"
  2643. version = "0.8.6"
  2644. source = "registry+https://github.com/rust-lang/crates.io-index"
  2645. checksum = "60a2cfe6f0ad2bfc16aefa463b497d5c7a5ecd44a23efa72aa342d90177356dc"
  2646. dependencies = [
  2647. "cfg-if",
  2648. "instant",
  2649. "libc",
  2650. "redox_syscall 0.2.16",
  2651. "smallvec",
  2652. "winapi",
  2653. ]
  2654. [[package]]
  2655. name = "parking_lot_core"
  2656. version = "0.9.10"
  2657. source = "registry+https://github.com/rust-lang/crates.io-index"
  2658. checksum = "1e401f977ab385c9e4e3ab30627d6f26d00e2c73eef317493c4ec6d468726cf8"
  2659. dependencies = [
  2660. "cfg-if",
  2661. "libc",
  2662. "redox_syscall 0.5.8",
  2663. "smallvec",
  2664. "windows-targets 0.52.6",
  2665. ]
  2666. [[package]]
  2667. name = "password-hash"
  2668. version = "0.5.0"
  2669. source = "registry+https://github.com/rust-lang/crates.io-index"
  2670. checksum = "346f04948ba92c43e8469c1ee6736c7563d71012b17d40745260fe106aac2166"
  2671. dependencies = [
  2672. "base64ct",
  2673. "rand_core",
  2674. "subtle",
  2675. ]
  2676. [[package]]
  2677. name = "paste"
  2678. version = "1.0.15"
  2679. source = "registry+https://github.com/rust-lang/crates.io-index"
  2680. checksum = "57c0d7b74b563b49d38dae00a0c37d4d6de9b432382b2892f0574ddcae73fd0a"
  2681. [[package]]
  2682. name = "pathdiff"
  2683. version = "0.2.3"
  2684. source = "registry+https://github.com/rust-lang/crates.io-index"
  2685. checksum = "df94ce210e5bc13cb6651479fa48d14f601d9858cfe0467f43ae157023b938d3"
  2686. [[package]]
  2687. name = "pbkdf2"
  2688. version = "0.12.2"
  2689. source = "registry+https://github.com/rust-lang/crates.io-index"
  2690. checksum = "f8ed6a7761f76e3b9f92dfb0a60a6a6477c61024b775147ff0973a02653abaf2"
  2691. dependencies = [
  2692. "digest",
  2693. "hmac",
  2694. ]
  2695. [[package]]
  2696. name = "percent-encoding"
  2697. version = "2.3.1"
  2698. source = "registry+https://github.com/rust-lang/crates.io-index"
  2699. checksum = "e3148f5046208a5d56bcfc03053e3ca6334e51da8dfb19b6cdc8b306fae3283e"
  2700. [[package]]
  2701. name = "pest"
  2702. version = "2.7.15"
  2703. source = "registry+https://github.com/rust-lang/crates.io-index"
  2704. checksum = "8b7cafe60d6cf8e62e1b9b2ea516a089c008945bb5a275416789e7db0bc199dc"
  2705. dependencies = [
  2706. "memchr",
  2707. "thiserror 2.0.9",
  2708. "ucd-trie",
  2709. ]
  2710. [[package]]
  2711. name = "pest_derive"
  2712. version = "2.7.15"
  2713. source = "registry+https://github.com/rust-lang/crates.io-index"
  2714. checksum = "816518421cfc6887a0d62bf441b6ffb4536fcc926395a69e1a85852d4363f57e"
  2715. dependencies = [
  2716. "pest",
  2717. "pest_generator",
  2718. ]
  2719. [[package]]
  2720. name = "pest_generator"
  2721. version = "2.7.15"
  2722. source = "registry+https://github.com/rust-lang/crates.io-index"
  2723. checksum = "7d1396fd3a870fc7838768d171b4616d5c91f6cc25e377b673d714567d99377b"
  2724. dependencies = [
  2725. "pest",
  2726. "pest_meta",
  2727. "proc-macro2",
  2728. "quote",
  2729. "syn 2.0.91",
  2730. ]
  2731. [[package]]
  2732. name = "pest_meta"
  2733. version = "2.7.15"
  2734. source = "registry+https://github.com/rust-lang/crates.io-index"
  2735. checksum = "e1e58089ea25d717bfd31fb534e4f3afcc2cc569c70de3e239778991ea3b7dea"
  2736. dependencies = [
  2737. "once_cell",
  2738. "pest",
  2739. "sha2",
  2740. ]
  2741. [[package]]
  2742. name = "petgraph"
  2743. version = "0.6.5"
  2744. source = "registry+https://github.com/rust-lang/crates.io-index"
  2745. checksum = "b4c5cc86750666a3ed20bdaf5ca2a0344f9c67674cae0515bec2da16fbaa47db"
  2746. dependencies = [
  2747. "fixedbitset",
  2748. "indexmap 2.7.0",
  2749. ]
  2750. [[package]]
  2751. name = "phoenixd-rs"
  2752. version = "0.4.0"
  2753. source = "registry+https://github.com/rust-lang/crates.io-index"
  2754. checksum = "06f3fb00880034c8199fa10d4635e984ccb09bad0ad294b869d63d3f2d15cc24"
  2755. dependencies = [
  2756. "anyhow",
  2757. "async-trait",
  2758. "axum",
  2759. "log",
  2760. "reqwest",
  2761. "serde",
  2762. "serde_json",
  2763. "thiserror 1.0.69",
  2764. "tokio",
  2765. ]
  2766. [[package]]
  2767. name = "pin-project"
  2768. version = "1.1.7"
  2769. source = "registry+https://github.com/rust-lang/crates.io-index"
  2770. checksum = "be57f64e946e500c8ee36ef6331845d40a93055567ec57e8fae13efd33759b95"
  2771. dependencies = [
  2772. "pin-project-internal",
  2773. ]
  2774. [[package]]
  2775. name = "pin-project-internal"
  2776. version = "1.1.7"
  2777. source = "registry+https://github.com/rust-lang/crates.io-index"
  2778. checksum = "3c0f5fad0874fc7abcd4d750e76917eaebbecaa2c20bde22e1dbeeba8beb758c"
  2779. dependencies = [
  2780. "proc-macro2",
  2781. "quote",
  2782. "syn 2.0.91",
  2783. ]
  2784. [[package]]
  2785. name = "pin-project-lite"
  2786. version = "0.2.15"
  2787. source = "registry+https://github.com/rust-lang/crates.io-index"
  2788. checksum = "915a1e146535de9163f3987b8944ed8cf49a18bb0056bcebcdcece385cece4ff"
  2789. [[package]]
  2790. name = "pin-utils"
  2791. version = "0.1.0"
  2792. source = "registry+https://github.com/rust-lang/crates.io-index"
  2793. checksum = "8b870d8c151b6f2fb93e84a13146138f05d02ed11c7e7c54f8826aaaf7c9f184"
  2794. [[package]]
  2795. name = "pkg-config"
  2796. version = "0.3.31"
  2797. source = "registry+https://github.com/rust-lang/crates.io-index"
  2798. checksum = "953ec861398dccce10c670dfeaf3ec4911ca479e9c02154b3a215178c5f566f2"
  2799. [[package]]
  2800. name = "plotters"
  2801. version = "0.3.7"
  2802. source = "registry+https://github.com/rust-lang/crates.io-index"
  2803. checksum = "5aeb6f403d7a4911efb1e33402027fc44f29b5bf6def3effcc22d7bb75f2b747"
  2804. dependencies = [
  2805. "num-traits",
  2806. "plotters-backend",
  2807. "plotters-svg",
  2808. "wasm-bindgen",
  2809. "web-sys",
  2810. ]
  2811. [[package]]
  2812. name = "plotters-backend"
  2813. version = "0.3.7"
  2814. source = "registry+https://github.com/rust-lang/crates.io-index"
  2815. checksum = "df42e13c12958a16b3f7f4386b9ab1f3e7933914ecea48da7139435263a4172a"
  2816. [[package]]
  2817. name = "plotters-svg"
  2818. version = "0.3.7"
  2819. source = "registry+https://github.com/rust-lang/crates.io-index"
  2820. checksum = "51bae2ac328883f7acdfea3d66a7c35751187f870bc81f94563733a154d7a670"
  2821. dependencies = [
  2822. "plotters-backend",
  2823. ]
  2824. [[package]]
  2825. name = "polling"
  2826. version = "2.8.0"
  2827. source = "registry+https://github.com/rust-lang/crates.io-index"
  2828. checksum = "4b2d323e8ca7996b3e23126511a523f7e62924d93ecd5ae73b333815b0eb3dce"
  2829. dependencies = [
  2830. "autocfg",
  2831. "bitflags 1.3.2",
  2832. "cfg-if",
  2833. "concurrent-queue",
  2834. "libc",
  2835. "log",
  2836. "pin-project-lite",
  2837. "windows-sys 0.48.0",
  2838. ]
  2839. [[package]]
  2840. name = "poly1305"
  2841. version = "0.8.0"
  2842. source = "registry+https://github.com/rust-lang/crates.io-index"
  2843. checksum = "8159bd90725d2df49889a078b54f4f79e87f1f8a8444194cdca81d38f5393abf"
  2844. dependencies = [
  2845. "cpufeatures",
  2846. "opaque-debug",
  2847. "universal-hash",
  2848. ]
  2849. [[package]]
  2850. name = "powerfmt"
  2851. version = "0.2.0"
  2852. source = "registry+https://github.com/rust-lang/crates.io-index"
  2853. checksum = "439ee305def115ba05938db6eb1644ff94165c5ab5e9420d1c1bcedbba909391"
  2854. [[package]]
  2855. name = "ppv-lite86"
  2856. version = "0.2.20"
  2857. source = "registry+https://github.com/rust-lang/crates.io-index"
  2858. checksum = "77957b295656769bb8ad2b6a6b09d897d94f05c41b069aede1fcdaa675eaea04"
  2859. dependencies = [
  2860. "zerocopy",
  2861. ]
  2862. [[package]]
  2863. name = "prettyplease"
  2864. version = "0.2.25"
  2865. source = "registry+https://github.com/rust-lang/crates.io-index"
  2866. checksum = "64d1ec885c64d0457d564db4ec299b2dae3f9c02808b8ad9c3a089c591b18033"
  2867. dependencies = [
  2868. "proc-macro2",
  2869. "syn 2.0.91",
  2870. ]
  2871. [[package]]
  2872. name = "proc-macro-error"
  2873. version = "1.0.4"
  2874. source = "registry+https://github.com/rust-lang/crates.io-index"
  2875. checksum = "da25490ff9892aab3fcf7c36f08cfb902dd3e71ca0f9f9517bea02a73a5ce38c"
  2876. dependencies = [
  2877. "proc-macro-error-attr",
  2878. "proc-macro2",
  2879. "quote",
  2880. "syn 1.0.109",
  2881. "version_check",
  2882. ]
  2883. [[package]]
  2884. name = "proc-macro-error-attr"
  2885. version = "1.0.4"
  2886. source = "registry+https://github.com/rust-lang/crates.io-index"
  2887. checksum = "a1be40180e52ecc98ad80b184934baf3d0d29f979574e439af5a55274b35f869"
  2888. dependencies = [
  2889. "proc-macro2",
  2890. "quote",
  2891. "version_check",
  2892. ]
  2893. [[package]]
  2894. name = "proc-macro2"
  2895. version = "1.0.92"
  2896. source = "registry+https://github.com/rust-lang/crates.io-index"
  2897. checksum = "37d3544b3f2748c54e147655edb5025752e2303145b5aefb3c3ea2c78b973bb0"
  2898. dependencies = [
  2899. "unicode-ident",
  2900. ]
  2901. [[package]]
  2902. name = "prost"
  2903. version = "0.12.6"
  2904. source = "registry+https://github.com/rust-lang/crates.io-index"
  2905. checksum = "deb1435c188b76130da55f17a466d252ff7b1418b2ad3e037d127b94e3411f29"
  2906. dependencies = [
  2907. "bytes",
  2908. "prost-derive",
  2909. ]
  2910. [[package]]
  2911. name = "prost-build"
  2912. version = "0.12.6"
  2913. source = "registry+https://github.com/rust-lang/crates.io-index"
  2914. checksum = "22505a5c94da8e3b7c2996394d1c933236c4d743e81a410bcca4e6989fc066a4"
  2915. dependencies = [
  2916. "bytes",
  2917. "heck 0.5.0",
  2918. "itertools 0.12.1",
  2919. "log",
  2920. "multimap",
  2921. "once_cell",
  2922. "petgraph",
  2923. "prettyplease",
  2924. "prost",
  2925. "prost-types",
  2926. "regex",
  2927. "syn 2.0.91",
  2928. "tempfile",
  2929. ]
  2930. [[package]]
  2931. name = "prost-derive"
  2932. version = "0.12.6"
  2933. source = "registry+https://github.com/rust-lang/crates.io-index"
  2934. checksum = "81bddcdb20abf9501610992b6759a4c888aef7d1a7247ef75e2404275ac24af1"
  2935. dependencies = [
  2936. "anyhow",
  2937. "itertools 0.12.1",
  2938. "proc-macro2",
  2939. "quote",
  2940. "syn 2.0.91",
  2941. ]
  2942. [[package]]
  2943. name = "prost-types"
  2944. version = "0.12.6"
  2945. source = "registry+https://github.com/rust-lang/crates.io-index"
  2946. checksum = "9091c90b0a32608e984ff2fa4091273cbdd755d54935c51d520887f4a1dbd5b0"
  2947. dependencies = [
  2948. "prost",
  2949. ]
  2950. [[package]]
  2951. name = "pulldown-cmark"
  2952. version = "0.9.6"
  2953. source = "registry+https://github.com/rust-lang/crates.io-index"
  2954. checksum = "57206b407293d2bcd3af849ce869d52068623f19e1b5ff8e8778e3309439682b"
  2955. dependencies = [
  2956. "bitflags 2.6.0",
  2957. "memchr",
  2958. "unicase",
  2959. ]
  2960. [[package]]
  2961. name = "quanta"
  2962. version = "0.11.1"
  2963. source = "registry+https://github.com/rust-lang/crates.io-index"
  2964. checksum = "a17e662a7a8291a865152364c20c7abc5e60486ab2001e8ec10b24862de0b9ab"
  2965. dependencies = [
  2966. "crossbeam-utils",
  2967. "libc",
  2968. "mach2",
  2969. "once_cell",
  2970. "raw-cpuid",
  2971. "wasi",
  2972. "web-sys",
  2973. "winapi",
  2974. ]
  2975. [[package]]
  2976. name = "quinn"
  2977. version = "0.11.6"
  2978. source = "registry+https://github.com/rust-lang/crates.io-index"
  2979. checksum = "62e96808277ec6f97351a2380e6c25114bc9e67037775464979f3037c92d05ef"
  2980. dependencies = [
  2981. "bytes",
  2982. "pin-project-lite",
  2983. "quinn-proto",
  2984. "quinn-udp",
  2985. "rustc-hash",
  2986. "rustls 0.23.20",
  2987. "socket2 0.5.8",
  2988. "thiserror 2.0.9",
  2989. "tokio",
  2990. "tracing",
  2991. ]
  2992. [[package]]
  2993. name = "quinn-proto"
  2994. version = "0.11.9"
  2995. source = "registry+https://github.com/rust-lang/crates.io-index"
  2996. checksum = "a2fe5ef3495d7d2e377ff17b1a8ce2ee2ec2a18cde8b6ad6619d65d0701c135d"
  2997. dependencies = [
  2998. "bytes",
  2999. "getrandom",
  3000. "rand",
  3001. "ring 0.17.8",
  3002. "rustc-hash",
  3003. "rustls 0.23.20",
  3004. "rustls-pki-types",
  3005. "slab",
  3006. "thiserror 2.0.9",
  3007. "tinyvec",
  3008. "tracing",
  3009. "web-time",
  3010. ]
  3011. [[package]]
  3012. name = "quinn-udp"
  3013. version = "0.5.9"
  3014. source = "registry+https://github.com/rust-lang/crates.io-index"
  3015. checksum = "1c40286217b4ba3a71d644d752e6a0b71f13f1b6a2c5311acfcbe0c2418ed904"
  3016. dependencies = [
  3017. "cfg_aliases",
  3018. "libc",
  3019. "once_cell",
  3020. "socket2 0.5.8",
  3021. "tracing",
  3022. "windows-sys 0.59.0",
  3023. ]
  3024. [[package]]
  3025. name = "quote"
  3026. version = "1.0.37"
  3027. source = "registry+https://github.com/rust-lang/crates.io-index"
  3028. checksum = "b5b9d34b8991d19d98081b46eacdd8eb58c6f2b201139f7c5f643cc155a633af"
  3029. dependencies = [
  3030. "proc-macro2",
  3031. ]
  3032. [[package]]
  3033. name = "rand"
  3034. version = "0.8.5"
  3035. source = "registry+https://github.com/rust-lang/crates.io-index"
  3036. checksum = "34af8d1a0e25924bc5b7c43c079c942339d8f0a8b57c39049bef581b46327404"
  3037. dependencies = [
  3038. "libc",
  3039. "rand_chacha",
  3040. "rand_core",
  3041. ]
  3042. [[package]]
  3043. name = "rand_chacha"
  3044. version = "0.3.1"
  3045. source = "registry+https://github.com/rust-lang/crates.io-index"
  3046. checksum = "e6c10a63a0fa32252be49d21e7709d4d4baf8d231c2dbce1eaa8141b9b127d88"
  3047. dependencies = [
  3048. "ppv-lite86",
  3049. "rand_core",
  3050. ]
  3051. [[package]]
  3052. name = "rand_core"
  3053. version = "0.6.4"
  3054. source = "registry+https://github.com/rust-lang/crates.io-index"
  3055. checksum = "ec0be4795e2f6a28069bec0b5ff3e2ac9bafc99e6a9a7dc3547996c5c816922c"
  3056. dependencies = [
  3057. "getrandom",
  3058. ]
  3059. [[package]]
  3060. name = "raw-cpuid"
  3061. version = "10.7.0"
  3062. source = "registry+https://github.com/rust-lang/crates.io-index"
  3063. checksum = "6c297679cb867470fa8c9f67dbba74a78d78e3e98d7cf2b08d6d71540f797332"
  3064. dependencies = [
  3065. "bitflags 1.3.2",
  3066. ]
  3067. [[package]]
  3068. name = "rayon"
  3069. version = "1.10.0"
  3070. source = "registry+https://github.com/rust-lang/crates.io-index"
  3071. checksum = "b418a60154510ca1a002a752ca9714984e21e4241e804d32555251faf8b78ffa"
  3072. dependencies = [
  3073. "either",
  3074. "rayon-core",
  3075. ]
  3076. [[package]]
  3077. name = "rayon-core"
  3078. version = "1.12.1"
  3079. source = "registry+https://github.com/rust-lang/crates.io-index"
  3080. checksum = "1465873a3dfdaa8ae7cb14b4383657caab0b3e8a0aa9ae8e04b044854c8dfce2"
  3081. dependencies = [
  3082. "crossbeam-deque",
  3083. "crossbeam-utils",
  3084. ]
  3085. [[package]]
  3086. name = "redb"
  3087. version = "2.3.0"
  3088. source = "registry+https://github.com/rust-lang/crates.io-index"
  3089. checksum = "a7c2a94325f9c5826b17c42af11067230f503747f870117a28180e85696e21ba"
  3090. dependencies = [
  3091. "libc",
  3092. ]
  3093. [[package]]
  3094. name = "redis"
  3095. version = "0.23.3"
  3096. source = "registry+https://github.com/rust-lang/crates.io-index"
  3097. checksum = "4f49cdc0bb3f412bf8e7d1bd90fe1d9eb10bc5c399ba90973c14662a27b3f8ba"
  3098. dependencies = [
  3099. "async-trait",
  3100. "bytes",
  3101. "combine",
  3102. "futures-util",
  3103. "itoa",
  3104. "percent-encoding",
  3105. "pin-project-lite",
  3106. "rustls 0.21.12",
  3107. "rustls-native-certs 0.6.3",
  3108. "ryu",
  3109. "sha1_smol",
  3110. "socket2 0.4.10",
  3111. "tokio",
  3112. "tokio-rustls 0.24.1",
  3113. "tokio-util",
  3114. "url",
  3115. ]
  3116. [[package]]
  3117. name = "redox_syscall"
  3118. version = "0.2.16"
  3119. source = "registry+https://github.com/rust-lang/crates.io-index"
  3120. checksum = "fb5a58c1855b4b6819d59012155603f0b22ad30cad752600aadfcb695265519a"
  3121. dependencies = [
  3122. "bitflags 1.3.2",
  3123. ]
  3124. [[package]]
  3125. name = "redox_syscall"
  3126. version = "0.5.8"
  3127. source = "registry+https://github.com/rust-lang/crates.io-index"
  3128. checksum = "03a862b389f93e68874fbf580b9de08dd02facb9a788ebadaf4a3fd33cf58834"
  3129. dependencies = [
  3130. "bitflags 2.6.0",
  3131. ]
  3132. [[package]]
  3133. name = "redox_users"
  3134. version = "0.4.6"
  3135. source = "registry+https://github.com/rust-lang/crates.io-index"
  3136. checksum = "ba009ff324d1fc1b900bd1fdb31564febe58a8ccc8a6fdbb93b543d33b13ca43"
  3137. dependencies = [
  3138. "getrandom",
  3139. "libredox",
  3140. "thiserror 1.0.69",
  3141. ]
  3142. [[package]]
  3143. name = "regex"
  3144. version = "1.11.1"
  3145. source = "registry+https://github.com/rust-lang/crates.io-index"
  3146. checksum = "b544ef1b4eac5dc2db33ea63606ae9ffcfac26c1416a2806ae0bf5f56b201191"
  3147. dependencies = [
  3148. "aho-corasick",
  3149. "memchr",
  3150. "regex-automata 0.4.9",
  3151. "regex-syntax 0.8.5",
  3152. ]
  3153. [[package]]
  3154. name = "regex-automata"
  3155. version = "0.1.10"
  3156. source = "registry+https://github.com/rust-lang/crates.io-index"
  3157. checksum = "6c230d73fb8d8c1b9c0b3135c5142a8acee3a0558fb8db5cf1cb65f8d7862132"
  3158. dependencies = [
  3159. "regex-syntax 0.6.29",
  3160. ]
  3161. [[package]]
  3162. name = "regex-automata"
  3163. version = "0.4.9"
  3164. source = "registry+https://github.com/rust-lang/crates.io-index"
  3165. checksum = "809e8dc61f6de73b46c85f4c96486310fe304c434cfa43669d7b40f711150908"
  3166. dependencies = [
  3167. "aho-corasick",
  3168. "memchr",
  3169. "regex-syntax 0.8.5",
  3170. ]
  3171. [[package]]
  3172. name = "regex-syntax"
  3173. version = "0.6.29"
  3174. source = "registry+https://github.com/rust-lang/crates.io-index"
  3175. checksum = "f162c6dd7b008981e4d40210aca20b4bd0f9b60ca9271061b07f78537722f2e1"
  3176. [[package]]
  3177. name = "regex-syntax"
  3178. version = "0.8.5"
  3179. source = "registry+https://github.com/rust-lang/crates.io-index"
  3180. checksum = "2b15c43186be67a4fd63bee50d0303afffcef381492ebe2c5d87f324e1b8815c"
  3181. [[package]]
  3182. name = "reqwest"
  3183. version = "0.12.9"
  3184. source = "registry+https://github.com/rust-lang/crates.io-index"
  3185. checksum = "a77c62af46e79de0a562e1a9849205ffcb7fc1238876e9bd743357570e04046f"
  3186. dependencies = [
  3187. "async-compression",
  3188. "base64 0.22.1",
  3189. "bytes",
  3190. "futures-core",
  3191. "futures-util",
  3192. "http 1.2.0",
  3193. "http-body 1.0.1",
  3194. "http-body-util",
  3195. "hyper 1.5.2",
  3196. "hyper-rustls 0.27.5",
  3197. "hyper-util",
  3198. "ipnet",
  3199. "js-sys",
  3200. "log",
  3201. "mime",
  3202. "once_cell",
  3203. "percent-encoding",
  3204. "pin-project-lite",
  3205. "quinn",
  3206. "rustls 0.23.20",
  3207. "rustls-native-certs 0.8.1",
  3208. "rustls-pemfile 2.2.0",
  3209. "rustls-pki-types",
  3210. "serde",
  3211. "serde_json",
  3212. "serde_urlencoded",
  3213. "sync_wrapper 1.0.2",
  3214. "tokio",
  3215. "tokio-rustls 0.26.1",
  3216. "tokio-socks",
  3217. "tokio-util",
  3218. "tower-service",
  3219. "url",
  3220. "wasm-bindgen",
  3221. "wasm-bindgen-futures",
  3222. "web-sys",
  3223. "webpki-roots 0.26.7",
  3224. "windows-registry",
  3225. ]
  3226. [[package]]
  3227. name = "rexie"
  3228. version = "0.6.2"
  3229. source = "registry+https://github.com/rust-lang/crates.io-index"
  3230. checksum = "887466cfa8a12c08ee4b174998135cea8ff0fd84858627cd793e56535a045bc9"
  3231. dependencies = [
  3232. "idb",
  3233. "thiserror 1.0.69",
  3234. "wasm-bindgen",
  3235. ]
  3236. [[package]]
  3237. name = "ring"
  3238. version = "0.16.20"
  3239. source = "registry+https://github.com/rust-lang/crates.io-index"
  3240. checksum = "3053cf52e236a3ed746dfc745aa9cacf1b791d846bdaf412f60a8d7d6e17c8fc"
  3241. dependencies = [
  3242. "cc",
  3243. "libc",
  3244. "once_cell",
  3245. "spin 0.5.2",
  3246. "untrusted 0.7.1",
  3247. "web-sys",
  3248. "winapi",
  3249. ]
  3250. [[package]]
  3251. name = "ring"
  3252. version = "0.17.8"
  3253. source = "registry+https://github.com/rust-lang/crates.io-index"
  3254. checksum = "c17fa4cb658e3583423e915b9f3acc01cceaee1860e33d59ebae66adc3a2dc0d"
  3255. dependencies = [
  3256. "cc",
  3257. "cfg-if",
  3258. "getrandom",
  3259. "libc",
  3260. "spin 0.9.8",
  3261. "untrusted 0.9.0",
  3262. "windows-sys 0.52.0",
  3263. ]
  3264. [[package]]
  3265. name = "ron"
  3266. version = "0.7.1"
  3267. source = "registry+https://github.com/rust-lang/crates.io-index"
  3268. checksum = "88073939a61e5b7680558e6be56b419e208420c2adb92be54921fa6b72283f1a"
  3269. dependencies = [
  3270. "base64 0.13.1",
  3271. "bitflags 1.3.2",
  3272. "serde",
  3273. ]
  3274. [[package]]
  3275. name = "rust-embed"
  3276. version = "8.5.0"
  3277. source = "registry+https://github.com/rust-lang/crates.io-index"
  3278. checksum = "fa66af4a4fdd5e7ebc276f115e895611a34739a9c1c01028383d612d550953c0"
  3279. dependencies = [
  3280. "rust-embed-impl",
  3281. "rust-embed-utils",
  3282. "walkdir",
  3283. ]
  3284. [[package]]
  3285. name = "rust-embed-impl"
  3286. version = "8.5.0"
  3287. source = "registry+https://github.com/rust-lang/crates.io-index"
  3288. checksum = "6125dbc8867951125eec87294137f4e9c2c96566e61bf72c45095a7c77761478"
  3289. dependencies = [
  3290. "proc-macro2",
  3291. "quote",
  3292. "rust-embed-utils",
  3293. "shellexpand",
  3294. "syn 2.0.91",
  3295. "walkdir",
  3296. ]
  3297. [[package]]
  3298. name = "rust-embed-utils"
  3299. version = "8.5.0"
  3300. source = "registry+https://github.com/rust-lang/crates.io-index"
  3301. checksum = "2e5347777e9aacb56039b0e1f28785929a8a3b709e87482e7442c72e7c12529d"
  3302. dependencies = [
  3303. "sha2",
  3304. "walkdir",
  3305. ]
  3306. [[package]]
  3307. name = "rust-ini"
  3308. version = "0.18.0"
  3309. source = "registry+https://github.com/rust-lang/crates.io-index"
  3310. checksum = "f6d5f2436026b4f6e79dc829837d467cc7e9a55ee40e750d716713540715a2df"
  3311. dependencies = [
  3312. "cfg-if",
  3313. "ordered-multimap",
  3314. ]
  3315. [[package]]
  3316. name = "rustc-demangle"
  3317. version = "0.1.24"
  3318. source = "registry+https://github.com/rust-lang/crates.io-index"
  3319. checksum = "719b953e2095829ee67db738b3bfa9fa368c94900df327b3f07fe6e794d2fe1f"
  3320. [[package]]
  3321. name = "rustc-hash"
  3322. version = "2.1.0"
  3323. source = "registry+https://github.com/rust-lang/crates.io-index"
  3324. checksum = "c7fb8039b3032c191086b10f11f319a6e99e1e82889c5cc6046f515c9db1d497"
  3325. [[package]]
  3326. name = "rustc_version"
  3327. version = "0.4.1"
  3328. source = "registry+https://github.com/rust-lang/crates.io-index"
  3329. checksum = "cfcb3a22ef46e85b45de6ee7e79d063319ebb6594faafcf1c225ea92ab6e9b92"
  3330. dependencies = [
  3331. "semver",
  3332. ]
  3333. [[package]]
  3334. name = "rustix"
  3335. version = "0.37.27"
  3336. source = "registry+https://github.com/rust-lang/crates.io-index"
  3337. checksum = "fea8ca367a3a01fe35e6943c400addf443c0f57670e6ec51196f71a4b8762dd2"
  3338. dependencies = [
  3339. "bitflags 1.3.2",
  3340. "errno",
  3341. "io-lifetimes",
  3342. "libc",
  3343. "linux-raw-sys 0.3.8",
  3344. "windows-sys 0.48.0",
  3345. ]
  3346. [[package]]
  3347. name = "rustix"
  3348. version = "0.38.42"
  3349. source = "registry+https://github.com/rust-lang/crates.io-index"
  3350. checksum = "f93dc38ecbab2eb790ff964bb77fa94faf256fd3e73285fd7ba0903b76bedb85"
  3351. dependencies = [
  3352. "bitflags 2.6.0",
  3353. "errno",
  3354. "libc",
  3355. "linux-raw-sys 0.4.14",
  3356. "windows-sys 0.59.0",
  3357. ]
  3358. [[package]]
  3359. name = "rustls"
  3360. version = "0.20.9"
  3361. source = "registry+https://github.com/rust-lang/crates.io-index"
  3362. checksum = "1b80e3dec595989ea8510028f30c408a4630db12c9cbb8de34203b89d6577e99"
  3363. dependencies = [
  3364. "log",
  3365. "ring 0.16.20",
  3366. "sct",
  3367. "webpki",
  3368. ]
  3369. [[package]]
  3370. name = "rustls"
  3371. version = "0.21.12"
  3372. source = "registry+https://github.com/rust-lang/crates.io-index"
  3373. checksum = "3f56a14d1f48b391359b22f731fd4bd7e43c97f3c50eee276f3aa09c94784d3e"
  3374. dependencies = [
  3375. "log",
  3376. "ring 0.17.8",
  3377. "rustls-webpki 0.101.7",
  3378. "sct",
  3379. ]
  3380. [[package]]
  3381. name = "rustls"
  3382. version = "0.23.20"
  3383. source = "registry+https://github.com/rust-lang/crates.io-index"
  3384. checksum = "5065c3f250cbd332cd894be57c40fa52387247659b14a2d6041d121547903b1b"
  3385. dependencies = [
  3386. "once_cell",
  3387. "ring 0.17.8",
  3388. "rustls-pki-types",
  3389. "rustls-webpki 0.102.8",
  3390. "subtle",
  3391. "zeroize",
  3392. ]
  3393. [[package]]
  3394. name = "rustls-native-certs"
  3395. version = "0.6.3"
  3396. source = "registry+https://github.com/rust-lang/crates.io-index"
  3397. checksum = "a9aace74cb666635c918e9c12bc0d348266037aa8eb599b5cba565709a8dff00"
  3398. dependencies = [
  3399. "openssl-probe",
  3400. "rustls-pemfile 1.0.4",
  3401. "schannel",
  3402. "security-framework 2.11.1",
  3403. ]
  3404. [[package]]
  3405. name = "rustls-native-certs"
  3406. version = "0.8.1"
  3407. source = "registry+https://github.com/rust-lang/crates.io-index"
  3408. checksum = "7fcff2dd52b58a8d98a70243663a0d234c4e2b79235637849d15913394a247d3"
  3409. dependencies = [
  3410. "openssl-probe",
  3411. "rustls-pki-types",
  3412. "schannel",
  3413. "security-framework 3.1.0",
  3414. ]
  3415. [[package]]
  3416. name = "rustls-pemfile"
  3417. version = "1.0.4"
  3418. source = "registry+https://github.com/rust-lang/crates.io-index"
  3419. checksum = "1c74cae0a4cf6ccbbf5f359f08efdf8ee7e1dc532573bf0db71968cb56b1448c"
  3420. dependencies = [
  3421. "base64 0.21.7",
  3422. ]
  3423. [[package]]
  3424. name = "rustls-pemfile"
  3425. version = "2.2.0"
  3426. source = "registry+https://github.com/rust-lang/crates.io-index"
  3427. checksum = "dce314e5fee3f39953d46bb63bb8a46d40c2f8fb7cc5a3b6cab2bde9721d6e50"
  3428. dependencies = [
  3429. "rustls-pki-types",
  3430. ]
  3431. [[package]]
  3432. name = "rustls-pki-types"
  3433. version = "1.10.1"
  3434. source = "registry+https://github.com/rust-lang/crates.io-index"
  3435. checksum = "d2bf47e6ff922db3825eb750c4e2ff784c6ff8fb9e13046ef6a1d1c5401b0b37"
  3436. dependencies = [
  3437. "web-time",
  3438. ]
  3439. [[package]]
  3440. name = "rustls-webpki"
  3441. version = "0.101.7"
  3442. source = "registry+https://github.com/rust-lang/crates.io-index"
  3443. checksum = "8b6275d1ee7a1cd780b64aca7726599a1dbc893b1e64144529e55c3c2f745765"
  3444. dependencies = [
  3445. "ring 0.17.8",
  3446. "untrusted 0.9.0",
  3447. ]
  3448. [[package]]
  3449. name = "rustls-webpki"
  3450. version = "0.102.8"
  3451. source = "registry+https://github.com/rust-lang/crates.io-index"
  3452. checksum = "64ca1bc8749bd4cf37b5ce386cc146580777b4e8572c7b97baf22c83f444bee9"
  3453. dependencies = [
  3454. "ring 0.17.8",
  3455. "rustls-pki-types",
  3456. "untrusted 0.9.0",
  3457. ]
  3458. [[package]]
  3459. name = "rustversion"
  3460. version = "1.0.18"
  3461. source = "registry+https://github.com/rust-lang/crates.io-index"
  3462. checksum = "0e819f2bc632f285be6d7cd36e25940d45b2391dd6d9b939e79de557f7014248"
  3463. [[package]]
  3464. name = "ryu"
  3465. version = "1.0.18"
  3466. source = "registry+https://github.com/rust-lang/crates.io-index"
  3467. checksum = "f3cb5ba0dc43242ce17de99c180e96db90b235b8a9fdc9543c96d2209116bd9f"
  3468. [[package]]
  3469. name = "salsa20"
  3470. version = "0.10.2"
  3471. source = "registry+https://github.com/rust-lang/crates.io-index"
  3472. checksum = "97a22f5af31f73a954c10289c93e8a50cc23d971e80ee446f1f6f7137a088213"
  3473. dependencies = [
  3474. "cipher",
  3475. ]
  3476. [[package]]
  3477. name = "same-file"
  3478. version = "1.0.6"
  3479. source = "registry+https://github.com/rust-lang/crates.io-index"
  3480. checksum = "93fc1dc3aaa9bfed95e02e6eadabb4baf7e3078b0bd1b4d7b6b0b68378900502"
  3481. dependencies = [
  3482. "winapi-util",
  3483. ]
  3484. [[package]]
  3485. name = "schannel"
  3486. version = "0.1.27"
  3487. source = "registry+https://github.com/rust-lang/crates.io-index"
  3488. checksum = "1f29ebaa345f945cec9fbbc532eb307f0fdad8161f281b6369539c8d84876b3d"
  3489. dependencies = [
  3490. "windows-sys 0.59.0",
  3491. ]
  3492. [[package]]
  3493. name = "scheduled-thread-pool"
  3494. version = "0.2.7"
  3495. source = "registry+https://github.com/rust-lang/crates.io-index"
  3496. checksum = "3cbc66816425a074528352f5789333ecff06ca41b36b0b0efdfbb29edc391a19"
  3497. dependencies = [
  3498. "parking_lot 0.12.3",
  3499. ]
  3500. [[package]]
  3501. name = "scopeguard"
  3502. version = "1.2.0"
  3503. source = "registry+https://github.com/rust-lang/crates.io-index"
  3504. checksum = "94143f37725109f92c262ed2cf5e59bce7498c01bcc1502d7b9afe439a4e9f49"
  3505. [[package]]
  3506. name = "scrypt"
  3507. version = "0.11.0"
  3508. source = "registry+https://github.com/rust-lang/crates.io-index"
  3509. checksum = "0516a385866c09368f0b5bcd1caff3366aace790fcd46e2bb032697bb172fd1f"
  3510. dependencies = [
  3511. "password-hash",
  3512. "pbkdf2",
  3513. "salsa20",
  3514. "sha2",
  3515. ]
  3516. [[package]]
  3517. name = "sct"
  3518. version = "0.7.1"
  3519. source = "registry+https://github.com/rust-lang/crates.io-index"
  3520. checksum = "da046153aa2352493d6cb7da4b6e5c0c057d8a1d0a9aa8560baffdd945acd414"
  3521. dependencies = [
  3522. "ring 0.17.8",
  3523. "untrusted 0.9.0",
  3524. ]
  3525. [[package]]
  3526. name = "secp256k1"
  3527. version = "0.27.0"
  3528. source = "registry+https://github.com/rust-lang/crates.io-index"
  3529. checksum = "25996b82292a7a57ed3508f052cfff8640d38d32018784acd714758b43da9c8f"
  3530. dependencies = [
  3531. "bitcoin_hashes 0.12.0",
  3532. "secp256k1-sys 0.8.1",
  3533. "serde",
  3534. ]
  3535. [[package]]
  3536. name = "secp256k1"
  3537. version = "0.29.1"
  3538. source = "registry+https://github.com/rust-lang/crates.io-index"
  3539. checksum = "9465315bc9d4566e1724f0fffcbcc446268cb522e60f9a27bcded6b19c108113"
  3540. dependencies = [
  3541. "bitcoin_hashes 0.14.0",
  3542. "rand",
  3543. "secp256k1-sys 0.10.1",
  3544. "serde",
  3545. ]
  3546. [[package]]
  3547. name = "secp256k1-sys"
  3548. version = "0.8.1"
  3549. source = "registry+https://github.com/rust-lang/crates.io-index"
  3550. checksum = "70a129b9e9efbfb223753b9163c4ab3b13cff7fd9c7f010fbac25ab4099fa07e"
  3551. dependencies = [
  3552. "cc",
  3553. ]
  3554. [[package]]
  3555. name = "secp256k1-sys"
  3556. version = "0.10.1"
  3557. source = "registry+https://github.com/rust-lang/crates.io-index"
  3558. checksum = "d4387882333d3aa8cb20530a17c69a3752e97837832f34f6dccc760e715001d9"
  3559. dependencies = [
  3560. "cc",
  3561. ]
  3562. [[package]]
  3563. name = "security-framework"
  3564. version = "2.11.1"
  3565. source = "registry+https://github.com/rust-lang/crates.io-index"
  3566. checksum = "897b2245f0b511c87893af39b033e5ca9cce68824c4d7e7630b5a1d339658d02"
  3567. dependencies = [
  3568. "bitflags 2.6.0",
  3569. "core-foundation 0.9.4",
  3570. "core-foundation-sys",
  3571. "libc",
  3572. "security-framework-sys",
  3573. ]
  3574. [[package]]
  3575. name = "security-framework"
  3576. version = "3.1.0"
  3577. source = "registry+https://github.com/rust-lang/crates.io-index"
  3578. checksum = "81d3f8c9bfcc3cbb6b0179eb57042d75b1582bdc65c3cb95f3fa999509c03cbc"
  3579. dependencies = [
  3580. "bitflags 2.6.0",
  3581. "core-foundation 0.10.0",
  3582. "core-foundation-sys",
  3583. "libc",
  3584. "security-framework-sys",
  3585. ]
  3586. [[package]]
  3587. name = "security-framework-sys"
  3588. version = "2.13.0"
  3589. source = "registry+https://github.com/rust-lang/crates.io-index"
  3590. checksum = "1863fd3768cd83c56a7f60faa4dc0d403f1b6df0a38c3c25f44b7894e45370d5"
  3591. dependencies = [
  3592. "core-foundation-sys",
  3593. "libc",
  3594. ]
  3595. [[package]]
  3596. name = "semver"
  3597. version = "1.0.24"
  3598. source = "registry+https://github.com/rust-lang/crates.io-index"
  3599. checksum = "3cb6eb87a131f756572d7fb904f6e7b68633f09cca868c5df1c4b8d1a694bbba"
  3600. dependencies = [
  3601. "serde",
  3602. ]
  3603. [[package]]
  3604. name = "separator"
  3605. version = "0.4.1"
  3606. source = "registry+https://github.com/rust-lang/crates.io-index"
  3607. checksum = "f97841a747eef040fcd2e7b3b9a220a7205926e60488e673d9e4926d27772ce5"
  3608. [[package]]
  3609. name = "serde"
  3610. version = "1.0.216"
  3611. source = "registry+https://github.com/rust-lang/crates.io-index"
  3612. checksum = "0b9781016e935a97e8beecf0c933758c97a5520d32930e460142b4cd80c6338e"
  3613. dependencies = [
  3614. "serde_derive",
  3615. ]
  3616. [[package]]
  3617. name = "serde-wasm-bindgen"
  3618. version = "0.6.5"
  3619. source = "registry+https://github.com/rust-lang/crates.io-index"
  3620. checksum = "8302e169f0eddcc139c70f139d19d6467353af16f9fce27e8c30158036a1e16b"
  3621. dependencies = [
  3622. "js-sys",
  3623. "serde",
  3624. "wasm-bindgen",
  3625. ]
  3626. [[package]]
  3627. name = "serde_derive"
  3628. version = "1.0.216"
  3629. source = "registry+https://github.com/rust-lang/crates.io-index"
  3630. checksum = "46f859dbbf73865c6627ed570e78961cd3ac92407a2d117204c49232485da55e"
  3631. dependencies = [
  3632. "proc-macro2",
  3633. "quote",
  3634. "syn 2.0.91",
  3635. ]
  3636. [[package]]
  3637. name = "serde_json"
  3638. version = "1.0.134"
  3639. source = "registry+https://github.com/rust-lang/crates.io-index"
  3640. checksum = "d00f4175c42ee48b15416f6193a959ba3a0d67fc699a0db9ad12df9f83991c7d"
  3641. dependencies = [
  3642. "indexmap 2.7.0",
  3643. "itoa",
  3644. "memchr",
  3645. "ryu",
  3646. "serde",
  3647. ]
  3648. [[package]]
  3649. name = "serde_path_to_error"
  3650. version = "0.1.16"
  3651. source = "registry+https://github.com/rust-lang/crates.io-index"
  3652. checksum = "af99884400da37c88f5e9146b7f1fd0fbcae8f6eec4e9da38b67d05486f814a6"
  3653. dependencies = [
  3654. "itoa",
  3655. "serde",
  3656. ]
  3657. [[package]]
  3658. name = "serde_urlencoded"
  3659. version = "0.7.1"
  3660. source = "registry+https://github.com/rust-lang/crates.io-index"
  3661. checksum = "d3491c14715ca2294c4d6a88f15e84739788c1d030eed8c110436aafdaa2f3fd"
  3662. dependencies = [
  3663. "form_urlencoded",
  3664. "itoa",
  3665. "ryu",
  3666. "serde",
  3667. ]
  3668. [[package]]
  3669. name = "serde_with"
  3670. version = "3.11.0"
  3671. source = "registry+https://github.com/rust-lang/crates.io-index"
  3672. checksum = "8e28bdad6db2b8340e449f7108f020b3b092e8583a9e3fb82713e1d4e71fe817"
  3673. dependencies = [
  3674. "base64 0.22.1",
  3675. "chrono",
  3676. "hex",
  3677. "indexmap 1.9.3",
  3678. "indexmap 2.7.0",
  3679. "serde",
  3680. "serde_derive",
  3681. "serde_json",
  3682. "serde_with_macros",
  3683. "time",
  3684. ]
  3685. [[package]]
  3686. name = "serde_with_macros"
  3687. version = "3.11.0"
  3688. source = "registry+https://github.com/rust-lang/crates.io-index"
  3689. checksum = "9d846214a9854ef724f3da161b426242d8de7c1fc7de2f89bb1efcb154dca79d"
  3690. dependencies = [
  3691. "darling",
  3692. "proc-macro2",
  3693. "quote",
  3694. "syn 2.0.91",
  3695. ]
  3696. [[package]]
  3697. name = "sha1"
  3698. version = "0.10.6"
  3699. source = "registry+https://github.com/rust-lang/crates.io-index"
  3700. checksum = "e3bf829a2d51ab4a5ddf1352d8470c140cadc8301b2ae1789db023f01cedd6ba"
  3701. dependencies = [
  3702. "cfg-if",
  3703. "cpufeatures",
  3704. "digest",
  3705. ]
  3706. [[package]]
  3707. name = "sha1_smol"
  3708. version = "1.0.1"
  3709. source = "registry+https://github.com/rust-lang/crates.io-index"
  3710. checksum = "bbfa15b3dddfee50a0fff136974b3e1bde555604ba463834a7eb7deb6417705d"
  3711. [[package]]
  3712. name = "sha2"
  3713. version = "0.10.8"
  3714. source = "registry+https://github.com/rust-lang/crates.io-index"
  3715. checksum = "793db75ad2bcafc3ffa7c68b215fee268f537982cd901d132f89c6343f3a3dc8"
  3716. dependencies = [
  3717. "cfg-if",
  3718. "cpufeatures",
  3719. "digest",
  3720. ]
  3721. [[package]]
  3722. name = "sharded-slab"
  3723. version = "0.1.7"
  3724. source = "registry+https://github.com/rust-lang/crates.io-index"
  3725. checksum = "f40ca3c46823713e0d4209592e8d6e826aa57e928f09752619fc696c499637f6"
  3726. dependencies = [
  3727. "lazy_static",
  3728. ]
  3729. [[package]]
  3730. name = "shellexpand"
  3731. version = "3.1.0"
  3732. source = "registry+https://github.com/rust-lang/crates.io-index"
  3733. checksum = "da03fa3b94cc19e3ebfc88c4229c49d8f08cdbd1228870a45f0ffdf84988e14b"
  3734. dependencies = [
  3735. "dirs",
  3736. ]
  3737. [[package]]
  3738. name = "shlex"
  3739. version = "1.3.0"
  3740. source = "registry+https://github.com/rust-lang/crates.io-index"
  3741. checksum = "0fda2ff0d084019ba4d7c6f371c95d8fd75ce3524c3cb8fb653a3023f6323e64"
  3742. [[package]]
  3743. name = "signal-hook-registry"
  3744. version = "1.4.2"
  3745. source = "registry+https://github.com/rust-lang/crates.io-index"
  3746. checksum = "a9e9e0b4211b72e7b8b6e85c807d36c212bdb33ea8587f7569562a84df5465b1"
  3747. dependencies = [
  3748. "libc",
  3749. ]
  3750. [[package]]
  3751. name = "skeptic"
  3752. version = "0.13.7"
  3753. source = "registry+https://github.com/rust-lang/crates.io-index"
  3754. checksum = "16d23b015676c90a0f01c197bfdc786c20342c73a0afdda9025adb0bc42940a8"
  3755. dependencies = [
  3756. "bytecount",
  3757. "cargo_metadata",
  3758. "error-chain",
  3759. "glob",
  3760. "pulldown-cmark",
  3761. "tempfile",
  3762. "walkdir",
  3763. ]
  3764. [[package]]
  3765. name = "slab"
  3766. version = "0.4.9"
  3767. source = "registry+https://github.com/rust-lang/crates.io-index"
  3768. checksum = "8f92a496fb766b417c996b9c5e57daf2f7ad3b0bebe1ccfca4856390e3d3bb67"
  3769. dependencies = [
  3770. "autocfg",
  3771. ]
  3772. [[package]]
  3773. name = "smallvec"
  3774. version = "1.13.2"
  3775. source = "registry+https://github.com/rust-lang/crates.io-index"
  3776. checksum = "3c5e1a9a646d36c3599cd173a41282daf47c44583ad367b8e6837255952e5c67"
  3777. [[package]]
  3778. name = "socket2"
  3779. version = "0.4.10"
  3780. source = "registry+https://github.com/rust-lang/crates.io-index"
  3781. checksum = "9f7916fc008ca5542385b89a3d3ce689953c143e9304a9bf8beec1de48994c0d"
  3782. dependencies = [
  3783. "libc",
  3784. "winapi",
  3785. ]
  3786. [[package]]
  3787. name = "socket2"
  3788. version = "0.5.8"
  3789. source = "registry+https://github.com/rust-lang/crates.io-index"
  3790. checksum = "c970269d99b64e60ec3bd6ad27270092a5394c4e309314b18ae3fe575695fbe8"
  3791. dependencies = [
  3792. "libc",
  3793. "windows-sys 0.52.0",
  3794. ]
  3795. [[package]]
  3796. name = "spin"
  3797. version = "0.5.2"
  3798. source = "registry+https://github.com/rust-lang/crates.io-index"
  3799. checksum = "6e63cff320ae2c57904679ba7cb63280a3dc4613885beafb148ee7bf9aa9042d"
  3800. [[package]]
  3801. name = "spin"
  3802. version = "0.9.8"
  3803. source = "registry+https://github.com/rust-lang/crates.io-index"
  3804. checksum = "6980e8d7511241f8acf4aebddbb1ff938df5eebe98691418c4468d0b72a96a67"
  3805. dependencies = [
  3806. "lock_api",
  3807. ]
  3808. [[package]]
  3809. name = "sqlformat"
  3810. version = "0.2.6"
  3811. source = "registry+https://github.com/rust-lang/crates.io-index"
  3812. checksum = "7bba3a93db0cc4f7bdece8bb09e77e2e785c20bfebf79eb8340ed80708048790"
  3813. dependencies = [
  3814. "nom",
  3815. "unicode_categories",
  3816. ]
  3817. [[package]]
  3818. name = "sqlx"
  3819. version = "0.6.3"
  3820. source = "registry+https://github.com/rust-lang/crates.io-index"
  3821. checksum = "f8de3b03a925878ed54a954f621e64bf55a3c1bd29652d0d1a17830405350188"
  3822. dependencies = [
  3823. "sqlx-core",
  3824. "sqlx-macros",
  3825. ]
  3826. [[package]]
  3827. name = "sqlx-core"
  3828. version = "0.6.3"
  3829. source = "registry+https://github.com/rust-lang/crates.io-index"
  3830. checksum = "fa8241483a83a3f33aa5fff7e7d9def398ff9990b2752b6c6112b83c6d246029"
  3831. dependencies = [
  3832. "ahash 0.7.8",
  3833. "atoi",
  3834. "bitflags 1.3.2",
  3835. "byteorder",
  3836. "bytes",
  3837. "crc",
  3838. "crossbeam-queue",
  3839. "dotenvy",
  3840. "either",
  3841. "event-listener",
  3842. "flume",
  3843. "futures-channel",
  3844. "futures-core",
  3845. "futures-executor",
  3846. "futures-intrusive",
  3847. "futures-util",
  3848. "hashlink",
  3849. "hex",
  3850. "indexmap 1.9.3",
  3851. "itoa",
  3852. "libc",
  3853. "libsqlite3-sys",
  3854. "log",
  3855. "memchr",
  3856. "once_cell",
  3857. "paste",
  3858. "percent-encoding",
  3859. "rustls 0.20.9",
  3860. "rustls-pemfile 1.0.4",
  3861. "sha2",
  3862. "smallvec",
  3863. "sqlformat",
  3864. "sqlx-rt",
  3865. "stringprep",
  3866. "thiserror 1.0.69",
  3867. "tokio-stream",
  3868. "url",
  3869. "uuid",
  3870. "webpki-roots 0.22.6",
  3871. ]
  3872. [[package]]
  3873. name = "sqlx-macros"
  3874. version = "0.6.3"
  3875. source = "registry+https://github.com/rust-lang/crates.io-index"
  3876. checksum = "9966e64ae989e7e575b19d7265cb79d7fc3cbbdf179835cb0d716f294c2049c9"
  3877. dependencies = [
  3878. "dotenvy",
  3879. "either",
  3880. "heck 0.4.1",
  3881. "once_cell",
  3882. "proc-macro2",
  3883. "quote",
  3884. "sha2",
  3885. "sqlx-core",
  3886. "sqlx-rt",
  3887. "syn 1.0.109",
  3888. "url",
  3889. ]
  3890. [[package]]
  3891. name = "sqlx-rt"
  3892. version = "0.6.3"
  3893. source = "registry+https://github.com/rust-lang/crates.io-index"
  3894. checksum = "804d3f245f894e61b1e6263c84b23ca675d96753b5abfd5cc8597d86806e8024"
  3895. dependencies = [
  3896. "once_cell",
  3897. "tokio",
  3898. "tokio-rustls 0.23.4",
  3899. ]
  3900. [[package]]
  3901. name = "stable_deref_trait"
  3902. version = "1.2.0"
  3903. source = "registry+https://github.com/rust-lang/crates.io-index"
  3904. checksum = "a8f112729512f8e442d81f95a8a7ddf2b7c6b8a1a6f509a95864142b30cab2d3"
  3905. [[package]]
  3906. name = "strike-rs"
  3907. version = "0.4.0"
  3908. source = "registry+https://github.com/rust-lang/crates.io-index"
  3909. checksum = "50bd122f8342d272c6818e216972295810297fb6681eae8d8f3357446860e928"
  3910. dependencies = [
  3911. "anyhow",
  3912. "async-trait",
  3913. "axum",
  3914. "http-body-util",
  3915. "hyper 0.14.32",
  3916. "log",
  3917. "rand",
  3918. "reqwest",
  3919. "ring 0.17.8",
  3920. "serde",
  3921. "serde_json",
  3922. "thiserror 1.0.69",
  3923. "tokio",
  3924. "tower",
  3925. "tower-http",
  3926. ]
  3927. [[package]]
  3928. name = "stringprep"
  3929. version = "0.1.5"
  3930. source = "registry+https://github.com/rust-lang/crates.io-index"
  3931. checksum = "7b4df3d392d81bd458a8a621b8bffbd2302a12ffe288a9d931670948749463b1"
  3932. dependencies = [
  3933. "unicode-bidi",
  3934. "unicode-normalization",
  3935. "unicode-properties",
  3936. ]
  3937. [[package]]
  3938. name = "strsim"
  3939. version = "0.11.1"
  3940. source = "registry+https://github.com/rust-lang/crates.io-index"
  3941. checksum = "7da8b5736845d9f2fcb837ea5d9e2628564b3b043a70948a3f0b778838c5fb4f"
  3942. [[package]]
  3943. name = "subtle"
  3944. version = "2.6.1"
  3945. source = "registry+https://github.com/rust-lang/crates.io-index"
  3946. checksum = "13c2bddecc57b384dee18652358fb23172facb8a2c51ccc10d74c157bdea3292"
  3947. [[package]]
  3948. name = "syn"
  3949. version = "1.0.109"
  3950. source = "registry+https://github.com/rust-lang/crates.io-index"
  3951. checksum = "72b64191b275b66ffe2469e8af2c1cfe3bafa67b529ead792a6d0160888b4237"
  3952. dependencies = [
  3953. "proc-macro2",
  3954. "quote",
  3955. "unicode-ident",
  3956. ]
  3957. [[package]]
  3958. name = "syn"
  3959. version = "2.0.91"
  3960. source = "registry+https://github.com/rust-lang/crates.io-index"
  3961. checksum = "d53cbcb5a243bd33b7858b1d7f4aca2153490815872d86d955d6ea29f743c035"
  3962. dependencies = [
  3963. "proc-macro2",
  3964. "quote",
  3965. "unicode-ident",
  3966. ]
  3967. [[package]]
  3968. name = "sync_wrapper"
  3969. version = "0.1.2"
  3970. source = "registry+https://github.com/rust-lang/crates.io-index"
  3971. checksum = "2047c6ded9c721764247e62cd3b03c09ffc529b2ba5b10ec482ae507a4a70160"
  3972. [[package]]
  3973. name = "sync_wrapper"
  3974. version = "1.0.2"
  3975. source = "registry+https://github.com/rust-lang/crates.io-index"
  3976. checksum = "0bf256ce5efdfa370213c1dabab5935a12e49f2c58d15e9eac2870d3b4f27263"
  3977. dependencies = [
  3978. "futures-core",
  3979. ]
  3980. [[package]]
  3981. name = "synstructure"
  3982. version = "0.13.1"
  3983. source = "registry+https://github.com/rust-lang/crates.io-index"
  3984. checksum = "c8af7666ab7b6390ab78131fb5b0fce11d6b7a6951602017c35fa82800708971"
  3985. dependencies = [
  3986. "proc-macro2",
  3987. "quote",
  3988. "syn 2.0.91",
  3989. ]
  3990. [[package]]
  3991. name = "tagptr"
  3992. version = "0.2.0"
  3993. source = "registry+https://github.com/rust-lang/crates.io-index"
  3994. checksum = "7b2093cf4c8eb1e67749a6762251bc9cd836b6fc171623bd0a9d324d37af2417"
  3995. [[package]]
  3996. name = "tempfile"
  3997. version = "3.14.0"
  3998. source = "registry+https://github.com/rust-lang/crates.io-index"
  3999. checksum = "28cce251fcbc87fac86a866eeb0d6c2d536fc16d06f184bb61aeae11aa4cee0c"
  4000. dependencies = [
  4001. "cfg-if",
  4002. "fastrand 2.3.0",
  4003. "once_cell",
  4004. "rustix 0.38.42",
  4005. "windows-sys 0.59.0",
  4006. ]
  4007. [[package]]
  4008. name = "thiserror"
  4009. version = "1.0.69"
  4010. source = "registry+https://github.com/rust-lang/crates.io-index"
  4011. checksum = "b6aaf5339b578ea85b50e080feb250a3e8ae8cfcdff9a461c9ec2904bc923f52"
  4012. dependencies = [
  4013. "thiserror-impl 1.0.69",
  4014. ]
  4015. [[package]]
  4016. name = "thiserror"
  4017. version = "2.0.9"
  4018. source = "registry+https://github.com/rust-lang/crates.io-index"
  4019. checksum = "f072643fd0190df67a8bab670c20ef5d8737177d6ac6b2e9a236cb096206b2cc"
  4020. dependencies = [
  4021. "thiserror-impl 2.0.9",
  4022. ]
  4023. [[package]]
  4024. name = "thiserror-impl"
  4025. version = "1.0.69"
  4026. source = "registry+https://github.com/rust-lang/crates.io-index"
  4027. checksum = "4fee6c4efc90059e10f81e6d42c60a18f76588c3d74cb83a0b242a2b6c7504c1"
  4028. dependencies = [
  4029. "proc-macro2",
  4030. "quote",
  4031. "syn 2.0.91",
  4032. ]
  4033. [[package]]
  4034. name = "thiserror-impl"
  4035. version = "2.0.9"
  4036. source = "registry+https://github.com/rust-lang/crates.io-index"
  4037. checksum = "7b50fa271071aae2e6ee85f842e2e28ba8cd2c5fb67f11fcb1fd70b276f9e7d4"
  4038. dependencies = [
  4039. "proc-macro2",
  4040. "quote",
  4041. "syn 2.0.91",
  4042. ]
  4043. [[package]]
  4044. name = "thread_local"
  4045. version = "1.1.8"
  4046. source = "registry+https://github.com/rust-lang/crates.io-index"
  4047. checksum = "8b9ef9bad013ada3808854ceac7b46812a6465ba368859a37e2100283d2d719c"
  4048. dependencies = [
  4049. "cfg-if",
  4050. "once_cell",
  4051. ]
  4052. [[package]]
  4053. name = "time"
  4054. version = "0.3.37"
  4055. source = "registry+https://github.com/rust-lang/crates.io-index"
  4056. checksum = "35e7868883861bd0e56d9ac6efcaaca0d6d5d82a2a7ec8209ff492c07cf37b21"
  4057. dependencies = [
  4058. "deranged",
  4059. "itoa",
  4060. "num-conv",
  4061. "powerfmt",
  4062. "serde",
  4063. "time-core",
  4064. "time-macros",
  4065. ]
  4066. [[package]]
  4067. name = "time-core"
  4068. version = "0.1.2"
  4069. source = "registry+https://github.com/rust-lang/crates.io-index"
  4070. checksum = "ef927ca75afb808a4d64dd374f00a2adf8d0fcff8e7b184af886c3c87ec4a3f3"
  4071. [[package]]
  4072. name = "time-macros"
  4073. version = "0.2.19"
  4074. source = "registry+https://github.com/rust-lang/crates.io-index"
  4075. checksum = "2834e6017e3e5e4b9834939793b282bc03b37a3336245fa820e35e233e2a85de"
  4076. dependencies = [
  4077. "num-conv",
  4078. "time-core",
  4079. ]
  4080. [[package]]
  4081. name = "tinystr"
  4082. version = "0.7.6"
  4083. source = "registry+https://github.com/rust-lang/crates.io-index"
  4084. checksum = "9117f5d4db391c1cf6927e7bea3db74b9a1c1add8f7eda9ffd5364f40f57b82f"
  4085. dependencies = [
  4086. "displaydoc",
  4087. "zerovec",
  4088. ]
  4089. [[package]]
  4090. name = "tinytemplate"
  4091. version = "1.2.1"
  4092. source = "registry+https://github.com/rust-lang/crates.io-index"
  4093. checksum = "be4d6b5f19ff7664e8c98d03e2139cb510db9b0a60b55f8e8709b689d939b6bc"
  4094. dependencies = [
  4095. "serde",
  4096. "serde_json",
  4097. ]
  4098. [[package]]
  4099. name = "tinyvec"
  4100. version = "1.8.1"
  4101. source = "registry+https://github.com/rust-lang/crates.io-index"
  4102. checksum = "022db8904dfa342efe721985167e9fcd16c29b226db4397ed752a761cfce81e8"
  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.42.0"
  4114. source = "registry+https://github.com/rust-lang/crates.io-index"
  4115. checksum = "5cec9b21b0450273377fc97bd4c33a8acffc8c996c987a7c5b319a0083707551"
  4116. dependencies = [
  4117. "backtrace",
  4118. "bytes",
  4119. "libc",
  4120. "mio",
  4121. "parking_lot 0.12.3",
  4122. "pin-project-lite",
  4123. "signal-hook-registry",
  4124. "socket2 0.5.8",
  4125. "tokio-macros",
  4126. "windows-sys 0.52.0",
  4127. ]
  4128. [[package]]
  4129. name = "tokio-io-timeout"
  4130. version = "1.2.0"
  4131. source = "registry+https://github.com/rust-lang/crates.io-index"
  4132. checksum = "30b74022ada614a1b4834de765f9bb43877f910cc8ce4be40e89042c9223a8bf"
  4133. dependencies = [
  4134. "pin-project-lite",
  4135. "tokio",
  4136. ]
  4137. [[package]]
  4138. name = "tokio-macros"
  4139. version = "2.4.0"
  4140. source = "registry+https://github.com/rust-lang/crates.io-index"
  4141. checksum = "693d596312e88961bc67d7f1f97af8a70227d9f90c31bba5806eec004978d752"
  4142. dependencies = [
  4143. "proc-macro2",
  4144. "quote",
  4145. "syn 2.0.91",
  4146. ]
  4147. [[package]]
  4148. name = "tokio-rustls"
  4149. version = "0.23.4"
  4150. source = "registry+https://github.com/rust-lang/crates.io-index"
  4151. checksum = "c43ee83903113e03984cb9e5cebe6c04a5116269e900e3ddba8f068a62adda59"
  4152. dependencies = [
  4153. "rustls 0.20.9",
  4154. "tokio",
  4155. "webpki",
  4156. ]
  4157. [[package]]
  4158. name = "tokio-rustls"
  4159. version = "0.24.1"
  4160. source = "registry+https://github.com/rust-lang/crates.io-index"
  4161. checksum = "c28327cf380ac148141087fbfb9de9d7bd4e84ab5d2c28fbc911d753de8a7081"
  4162. dependencies = [
  4163. "rustls 0.21.12",
  4164. "tokio",
  4165. ]
  4166. [[package]]
  4167. name = "tokio-rustls"
  4168. version = "0.26.1"
  4169. source = "registry+https://github.com/rust-lang/crates.io-index"
  4170. checksum = "5f6d0975eaace0cf0fcadee4e4aaa5da15b5c079146f2cffb67c113be122bf37"
  4171. dependencies = [
  4172. "rustls 0.23.20",
  4173. "tokio",
  4174. ]
  4175. [[package]]
  4176. name = "tokio-socks"
  4177. version = "0.5.2"
  4178. source = "registry+https://github.com/rust-lang/crates.io-index"
  4179. checksum = "0d4770b8024672c1101b3f6733eab95b18007dbe0847a8afe341fcf79e06043f"
  4180. dependencies = [
  4181. "either",
  4182. "futures-util",
  4183. "thiserror 1.0.69",
  4184. "tokio",
  4185. ]
  4186. [[package]]
  4187. name = "tokio-stream"
  4188. version = "0.1.17"
  4189. source = "registry+https://github.com/rust-lang/crates.io-index"
  4190. checksum = "eca58d7bba4a75707817a2c44174253f9236b2d5fbd055602e9d5c07c139a047"
  4191. dependencies = [
  4192. "futures-core",
  4193. "pin-project-lite",
  4194. "tokio",
  4195. ]
  4196. [[package]]
  4197. name = "tokio-tungstenite"
  4198. version = "0.19.0"
  4199. source = "registry+https://github.com/rust-lang/crates.io-index"
  4200. checksum = "ec509ac96e9a0c43427c74f003127d953a265737636129424288d27cb5c4b12c"
  4201. dependencies = [
  4202. "futures-util",
  4203. "log",
  4204. "rustls 0.21.12",
  4205. "rustls-native-certs 0.6.3",
  4206. "tokio",
  4207. "tokio-rustls 0.24.1",
  4208. "tungstenite 0.19.0",
  4209. ]
  4210. [[package]]
  4211. name = "tokio-tungstenite"
  4212. version = "0.20.1"
  4213. source = "registry+https://github.com/rust-lang/crates.io-index"
  4214. checksum = "212d5dcb2a1ce06d81107c3d0ffa3121fe974b73f068c8282cb1c32328113b6c"
  4215. dependencies = [
  4216. "futures-util",
  4217. "log",
  4218. "tokio",
  4219. "tungstenite 0.20.1",
  4220. ]
  4221. [[package]]
  4222. name = "tokio-tungstenite"
  4223. version = "0.24.0"
  4224. source = "registry+https://github.com/rust-lang/crates.io-index"
  4225. checksum = "edc5f74e248dc973e0dbb7b74c7e0d6fcc301c694ff50049504004ef4d0cdcd9"
  4226. dependencies = [
  4227. "futures-util",
  4228. "log",
  4229. "rustls 0.23.20",
  4230. "rustls-pki-types",
  4231. "tokio",
  4232. "tokio-rustls 0.26.1",
  4233. "tungstenite 0.24.0",
  4234. "webpki-roots 0.26.7",
  4235. ]
  4236. [[package]]
  4237. name = "tokio-util"
  4238. version = "0.7.13"
  4239. source = "registry+https://github.com/rust-lang/crates.io-index"
  4240. checksum = "d7fcaa8d55a2bdd6b83ace262b016eca0d79ee02818c5c1bcdf0305114081078"
  4241. dependencies = [
  4242. "bytes",
  4243. "futures-core",
  4244. "futures-sink",
  4245. "pin-project-lite",
  4246. "tokio",
  4247. ]
  4248. [[package]]
  4249. name = "toml"
  4250. version = "0.5.11"
  4251. source = "registry+https://github.com/rust-lang/crates.io-index"
  4252. checksum = "f4f7f0dd8d50a853a531c426359045b1998f04219d88799810762cd4ad314234"
  4253. dependencies = [
  4254. "serde",
  4255. ]
  4256. [[package]]
  4257. name = "tonic"
  4258. version = "0.10.2"
  4259. source = "registry+https://github.com/rust-lang/crates.io-index"
  4260. checksum = "d560933a0de61cf715926b9cac824d4c883c2c43142f787595e48280c40a1d0e"
  4261. dependencies = [
  4262. "async-stream",
  4263. "async-trait",
  4264. "axum",
  4265. "base64 0.21.7",
  4266. "bytes",
  4267. "h2",
  4268. "http 0.2.12",
  4269. "http-body 0.4.6",
  4270. "hyper 0.14.32",
  4271. "hyper-timeout",
  4272. "percent-encoding",
  4273. "pin-project",
  4274. "prost",
  4275. "rustls 0.21.12",
  4276. "rustls-pemfile 1.0.4",
  4277. "tokio",
  4278. "tokio-rustls 0.24.1",
  4279. "tokio-stream",
  4280. "tower",
  4281. "tower-layer",
  4282. "tower-service",
  4283. "tracing",
  4284. ]
  4285. [[package]]
  4286. name = "tonic-build"
  4287. version = "0.10.2"
  4288. source = "registry+https://github.com/rust-lang/crates.io-index"
  4289. checksum = "9d021fc044c18582b9a2408cd0dd05b1596e3ecdb5c4df822bb0183545683889"
  4290. dependencies = [
  4291. "prettyplease",
  4292. "proc-macro2",
  4293. "prost-build",
  4294. "quote",
  4295. "syn 2.0.91",
  4296. ]
  4297. [[package]]
  4298. name = "tower"
  4299. version = "0.4.13"
  4300. source = "registry+https://github.com/rust-lang/crates.io-index"
  4301. checksum = "b8fa9be0de6cf49e536ce1851f987bd21a43b771b09473c3549a6c853db37c1c"
  4302. dependencies = [
  4303. "futures-core",
  4304. "futures-util",
  4305. "indexmap 1.9.3",
  4306. "pin-project",
  4307. "pin-project-lite",
  4308. "rand",
  4309. "slab",
  4310. "tokio",
  4311. "tokio-util",
  4312. "tower-layer",
  4313. "tower-service",
  4314. "tracing",
  4315. ]
  4316. [[package]]
  4317. name = "tower-http"
  4318. version = "0.4.4"
  4319. source = "registry+https://github.com/rust-lang/crates.io-index"
  4320. checksum = "61c5bb1d698276a2443e5ecfabc1008bf15a36c12e6a7176e7bf089ea9131140"
  4321. dependencies = [
  4322. "async-compression",
  4323. "bitflags 2.6.0",
  4324. "bytes",
  4325. "futures-core",
  4326. "futures-util",
  4327. "http 0.2.12",
  4328. "http-body 0.4.6",
  4329. "http-range-header",
  4330. "pin-project-lite",
  4331. "tokio",
  4332. "tokio-util",
  4333. "tower",
  4334. "tower-layer",
  4335. "tower-service",
  4336. ]
  4337. [[package]]
  4338. name = "tower-layer"
  4339. version = "0.3.3"
  4340. source = "registry+https://github.com/rust-lang/crates.io-index"
  4341. checksum = "121c2a6cda46980bb0fcd1647ffaf6cd3fc79a013de288782836f6df9c48780e"
  4342. [[package]]
  4343. name = "tower-service"
  4344. version = "0.3.3"
  4345. source = "registry+https://github.com/rust-lang/crates.io-index"
  4346. checksum = "8df9b6e13f2d32c91b9bd719c00d1958837bc7dec474d94952798cc8e69eeec3"
  4347. [[package]]
  4348. name = "tracing"
  4349. version = "0.1.41"
  4350. source = "registry+https://github.com/rust-lang/crates.io-index"
  4351. checksum = "784e0ac535deb450455cbfa28a6f0df145ea1bb7ae51b821cf5e7927fdcfbdd0"
  4352. dependencies = [
  4353. "log",
  4354. "pin-project-lite",
  4355. "tracing-attributes",
  4356. "tracing-core",
  4357. ]
  4358. [[package]]
  4359. name = "tracing-attributes"
  4360. version = "0.1.28"
  4361. source = "registry+https://github.com/rust-lang/crates.io-index"
  4362. checksum = "395ae124c09f9e6918a2310af6038fba074bcf474ac352496d5910dd59a2226d"
  4363. dependencies = [
  4364. "proc-macro2",
  4365. "quote",
  4366. "syn 2.0.91",
  4367. ]
  4368. [[package]]
  4369. name = "tracing-core"
  4370. version = "0.1.33"
  4371. source = "registry+https://github.com/rust-lang/crates.io-index"
  4372. checksum = "e672c95779cf947c5311f83787af4fa8fffd12fb27e4993211a84bdfd9610f9c"
  4373. dependencies = [
  4374. "once_cell",
  4375. "valuable",
  4376. ]
  4377. [[package]]
  4378. name = "tracing-log"
  4379. version = "0.2.0"
  4380. source = "registry+https://github.com/rust-lang/crates.io-index"
  4381. checksum = "ee855f1f400bd0e5c02d150ae5de3840039a3f54b025156404e34c23c03f47c3"
  4382. dependencies = [
  4383. "log",
  4384. "once_cell",
  4385. "tracing-core",
  4386. ]
  4387. [[package]]
  4388. name = "tracing-subscriber"
  4389. version = "0.3.19"
  4390. source = "registry+https://github.com/rust-lang/crates.io-index"
  4391. checksum = "e8189decb5ac0fa7bc8b96b7cb9b2701d60d48805aca84a238004d665fcc4008"
  4392. dependencies = [
  4393. "matchers",
  4394. "nu-ansi-term",
  4395. "once_cell",
  4396. "regex",
  4397. "sharded-slab",
  4398. "smallvec",
  4399. "thread_local",
  4400. "tracing",
  4401. "tracing-core",
  4402. "tracing-log",
  4403. ]
  4404. [[package]]
  4405. name = "triomphe"
  4406. version = "0.1.14"
  4407. source = "registry+https://github.com/rust-lang/crates.io-index"
  4408. checksum = "ef8f7726da4807b58ea5c96fdc122f80702030edc33b35aff9190a51148ccc85"
  4409. [[package]]
  4410. name = "try-lock"
  4411. version = "0.2.5"
  4412. source = "registry+https://github.com/rust-lang/crates.io-index"
  4413. checksum = "e421abadd41a4225275504ea4d6566923418b7f05506fbc9c0fe86ba7396114b"
  4414. [[package]]
  4415. name = "tungstenite"
  4416. version = "0.19.0"
  4417. source = "registry+https://github.com/rust-lang/crates.io-index"
  4418. checksum = "15fba1a6d6bb030745759a9a2a588bfe8490fc8b4751a277db3a0be1c9ebbf67"
  4419. dependencies = [
  4420. "byteorder",
  4421. "bytes",
  4422. "data-encoding",
  4423. "http 0.2.12",
  4424. "httparse",
  4425. "log",
  4426. "rand",
  4427. "rustls 0.21.12",
  4428. "sha1",
  4429. "thiserror 1.0.69",
  4430. "url",
  4431. "utf-8",
  4432. "webpki",
  4433. ]
  4434. [[package]]
  4435. name = "tungstenite"
  4436. version = "0.20.1"
  4437. source = "registry+https://github.com/rust-lang/crates.io-index"
  4438. checksum = "9e3dac10fd62eaf6617d3a904ae222845979aec67c615d1c842b4002c7666fb9"
  4439. dependencies = [
  4440. "byteorder",
  4441. "bytes",
  4442. "data-encoding",
  4443. "http 0.2.12",
  4444. "httparse",
  4445. "log",
  4446. "rand",
  4447. "sha1",
  4448. "thiserror 1.0.69",
  4449. "url",
  4450. "utf-8",
  4451. ]
  4452. [[package]]
  4453. name = "tungstenite"
  4454. version = "0.24.0"
  4455. source = "registry+https://github.com/rust-lang/crates.io-index"
  4456. checksum = "18e5b8366ee7a95b16d32197d0b2604b43a0be89dc5fac9f8e96ccafbaedda8a"
  4457. dependencies = [
  4458. "byteorder",
  4459. "bytes",
  4460. "data-encoding",
  4461. "http 1.2.0",
  4462. "httparse",
  4463. "log",
  4464. "rand",
  4465. "rustls 0.23.20",
  4466. "rustls-pki-types",
  4467. "sha1",
  4468. "thiserror 1.0.69",
  4469. "utf-8",
  4470. ]
  4471. [[package]]
  4472. name = "typenum"
  4473. version = "1.17.0"
  4474. source = "registry+https://github.com/rust-lang/crates.io-index"
  4475. checksum = "42ff0bf0c66b8238c6f3b578df37d0b7848e55df8577b3f74f92a69acceeb825"
  4476. [[package]]
  4477. name = "ucd-trie"
  4478. version = "0.1.7"
  4479. source = "registry+https://github.com/rust-lang/crates.io-index"
  4480. checksum = "2896d95c02a80c6d6a5d6e953d479f5ddf2dfdb6a244441010e373ac0fb88971"
  4481. [[package]]
  4482. name = "unicase"
  4483. version = "2.8.0"
  4484. source = "registry+https://github.com/rust-lang/crates.io-index"
  4485. checksum = "7e51b68083f157f853b6379db119d1c1be0e6e4dec98101079dec41f6f5cf6df"
  4486. [[package]]
  4487. name = "unicode-bidi"
  4488. version = "0.3.18"
  4489. source = "registry+https://github.com/rust-lang/crates.io-index"
  4490. checksum = "5c1cb5db39152898a79168971543b1cb5020dff7fe43c8dc468b0885f5e29df5"
  4491. [[package]]
  4492. name = "unicode-ident"
  4493. version = "1.0.14"
  4494. source = "registry+https://github.com/rust-lang/crates.io-index"
  4495. checksum = "adb9e6ca4f869e1180728b7950e35922a7fc6397f7b641499e8f3ef06e50dc83"
  4496. [[package]]
  4497. name = "unicode-normalization"
  4498. version = "0.1.22"
  4499. source = "registry+https://github.com/rust-lang/crates.io-index"
  4500. checksum = "5c5713f0fc4b5db668a2ac63cdb7bb4469d8c9fed047b1d0292cc7b0ce2ba921"
  4501. dependencies = [
  4502. "tinyvec",
  4503. ]
  4504. [[package]]
  4505. name = "unicode-properties"
  4506. version = "0.1.3"
  4507. source = "registry+https://github.com/rust-lang/crates.io-index"
  4508. checksum = "e70f2a8b45122e719eb623c01822704c4e0907e7e426a05927e1a1cfff5b75d0"
  4509. [[package]]
  4510. name = "unicode-segmentation"
  4511. version = "1.12.0"
  4512. source = "registry+https://github.com/rust-lang/crates.io-index"
  4513. checksum = "f6ccf251212114b54433ec949fd6a7841275f9ada20dddd2f29e9ceea4501493"
  4514. [[package]]
  4515. name = "unicode_categories"
  4516. version = "0.1.1"
  4517. source = "registry+https://github.com/rust-lang/crates.io-index"
  4518. checksum = "39ec24b3121d976906ece63c9daad25b85969647682eee313cb5779fdd69e14e"
  4519. [[package]]
  4520. name = "universal-hash"
  4521. version = "0.5.1"
  4522. source = "registry+https://github.com/rust-lang/crates.io-index"
  4523. checksum = "fc1de2c688dc15305988b563c3854064043356019f97a4b46276fe734c4f07ea"
  4524. dependencies = [
  4525. "crypto-common",
  4526. "subtle",
  4527. ]
  4528. [[package]]
  4529. name = "untrusted"
  4530. version = "0.7.1"
  4531. source = "registry+https://github.com/rust-lang/crates.io-index"
  4532. checksum = "a156c684c91ea7d62626509bce3cb4e1d9ed5c4d978f7b4352658f96a4c26b4a"
  4533. [[package]]
  4534. name = "untrusted"
  4535. version = "0.9.0"
  4536. source = "registry+https://github.com/rust-lang/crates.io-index"
  4537. checksum = "8ecb6da28b8a351d773b68d5825ac39017e680750f980f3a1a85cd8dd28a47c1"
  4538. [[package]]
  4539. name = "url"
  4540. version = "2.5.4"
  4541. source = "registry+https://github.com/rust-lang/crates.io-index"
  4542. checksum = "32f8b686cadd1473f4bd0117a5d28d36b1ade384ea9b5069a1c40aefed7fda60"
  4543. dependencies = [
  4544. "form_urlencoded",
  4545. "idna",
  4546. "percent-encoding",
  4547. "serde",
  4548. ]
  4549. [[package]]
  4550. name = "utf-8"
  4551. version = "0.7.6"
  4552. source = "registry+https://github.com/rust-lang/crates.io-index"
  4553. checksum = "09cc8ee72d2a9becf2f2febe0205bbed8fc6615b7cb429ad062dc7b7ddd036a9"
  4554. [[package]]
  4555. name = "utf16_iter"
  4556. version = "1.0.5"
  4557. source = "registry+https://github.com/rust-lang/crates.io-index"
  4558. checksum = "c8232dd3cdaed5356e0f716d285e4b40b932ac434100fe9b7e0e8e935b9e6246"
  4559. [[package]]
  4560. name = "utf8_iter"
  4561. version = "1.0.4"
  4562. source = "registry+https://github.com/rust-lang/crates.io-index"
  4563. checksum = "b6c140620e7ffbb22c2dee59cafe6084a59b5ffc27a8859a5f0d494b5d52b6be"
  4564. [[package]]
  4565. name = "utf8parse"
  4566. version = "0.2.2"
  4567. source = "registry+https://github.com/rust-lang/crates.io-index"
  4568. checksum = "06abde3611657adf66d383f00b093d7faecc7fa57071cce2578660c9f1010821"
  4569. [[package]]
  4570. name = "utoipa"
  4571. version = "4.2.3"
  4572. source = "registry+https://github.com/rust-lang/crates.io-index"
  4573. checksum = "c5afb1a60e207dca502682537fefcfd9921e71d0b83e9576060f09abc6efab23"
  4574. dependencies = [
  4575. "indexmap 2.7.0",
  4576. "serde",
  4577. "serde_json",
  4578. "utoipa-gen",
  4579. ]
  4580. [[package]]
  4581. name = "utoipa-gen"
  4582. version = "4.3.1"
  4583. source = "registry+https://github.com/rust-lang/crates.io-index"
  4584. checksum = "20c24e8ab68ff9ee746aad22d39b5535601e6416d1b0feeabf78be986a5c4392"
  4585. dependencies = [
  4586. "proc-macro-error",
  4587. "proc-macro2",
  4588. "quote",
  4589. "syn 2.0.91",
  4590. ]
  4591. [[package]]
  4592. name = "utoipa-swagger-ui"
  4593. version = "4.0.0"
  4594. source = "registry+https://github.com/rust-lang/crates.io-index"
  4595. checksum = "154517adf0d0b6e22e8e1f385628f14fcaa3db43531dc74303d3edef89d6dfe5"
  4596. dependencies = [
  4597. "axum",
  4598. "mime_guess",
  4599. "regex",
  4600. "rust-embed",
  4601. "serde",
  4602. "serde_json",
  4603. "utoipa",
  4604. "zip",
  4605. ]
  4606. [[package]]
  4607. name = "uuid"
  4608. version = "1.11.0"
  4609. source = "registry+https://github.com/rust-lang/crates.io-index"
  4610. checksum = "f8c5f0a0af699448548ad1a2fbf920fb4bee257eae39953ba95cb84891a0446a"
  4611. dependencies = [
  4612. "getrandom",
  4613. "serde",
  4614. ]
  4615. [[package]]
  4616. name = "valuable"
  4617. version = "0.1.0"
  4618. source = "registry+https://github.com/rust-lang/crates.io-index"
  4619. checksum = "830b7e5d4d90034032940e4ace0d9a9a057e7a45cd94e6c007832e39edb82f6d"
  4620. [[package]]
  4621. name = "vcpkg"
  4622. version = "0.2.15"
  4623. source = "registry+https://github.com/rust-lang/crates.io-index"
  4624. checksum = "accd4ea62f7bb7a82fe23066fb0957d48ef677f6eeb8215f372f52e48bb32426"
  4625. [[package]]
  4626. name = "version_check"
  4627. version = "0.9.5"
  4628. source = "registry+https://github.com/rust-lang/crates.io-index"
  4629. checksum = "0b928f33d975fc6ad9f86c8f283853ad26bdd5b10b7f1542aa2fa15e2289105a"
  4630. [[package]]
  4631. name = "waker-fn"
  4632. version = "1.2.0"
  4633. source = "registry+https://github.com/rust-lang/crates.io-index"
  4634. checksum = "317211a0dc0ceedd78fb2ca9a44aed3d7b9b26f81870d485c07122b4350673b7"
  4635. [[package]]
  4636. name = "walkdir"
  4637. version = "2.5.0"
  4638. source = "registry+https://github.com/rust-lang/crates.io-index"
  4639. checksum = "29790946404f91d9c5d06f9874efddea1dc06c5efe94541a7d6863108e3a5e4b"
  4640. dependencies = [
  4641. "same-file",
  4642. "winapi-util",
  4643. ]
  4644. [[package]]
  4645. name = "want"
  4646. version = "0.3.1"
  4647. source = "registry+https://github.com/rust-lang/crates.io-index"
  4648. checksum = "bfa7760aed19e106de2c7c0b581b509f2f25d3dacaf737cb82ac61bc6d760b0e"
  4649. dependencies = [
  4650. "try-lock",
  4651. ]
  4652. [[package]]
  4653. name = "wasi"
  4654. version = "0.11.0+wasi-snapshot-preview1"
  4655. source = "registry+https://github.com/rust-lang/crates.io-index"
  4656. checksum = "9c8d87e72b64a3b4db28d11ce29237c246188f4f51057d65a7eab63b7987e423"
  4657. [[package]]
  4658. name = "wasm-bindgen"
  4659. version = "0.2.99"
  4660. source = "registry+https://github.com/rust-lang/crates.io-index"
  4661. checksum = "a474f6281d1d70c17ae7aa6a613c87fce69a127e2624002df63dcb39d6cf6396"
  4662. dependencies = [
  4663. "cfg-if",
  4664. "once_cell",
  4665. "wasm-bindgen-macro",
  4666. ]
  4667. [[package]]
  4668. name = "wasm-bindgen-backend"
  4669. version = "0.2.99"
  4670. source = "registry+https://github.com/rust-lang/crates.io-index"
  4671. checksum = "5f89bb38646b4f81674e8f5c3fb81b562be1fd936d84320f3264486418519c79"
  4672. dependencies = [
  4673. "bumpalo",
  4674. "log",
  4675. "proc-macro2",
  4676. "quote",
  4677. "syn 2.0.91",
  4678. "wasm-bindgen-shared",
  4679. ]
  4680. [[package]]
  4681. name = "wasm-bindgen-futures"
  4682. version = "0.4.49"
  4683. source = "registry+https://github.com/rust-lang/crates.io-index"
  4684. checksum = "38176d9b44ea84e9184eff0bc34cc167ed044f816accfe5922e54d84cf48eca2"
  4685. dependencies = [
  4686. "cfg-if",
  4687. "js-sys",
  4688. "once_cell",
  4689. "wasm-bindgen",
  4690. "web-sys",
  4691. ]
  4692. [[package]]
  4693. name = "wasm-bindgen-macro"
  4694. version = "0.2.99"
  4695. source = "registry+https://github.com/rust-lang/crates.io-index"
  4696. checksum = "2cc6181fd9a7492eef6fef1f33961e3695e4579b9872a6f7c83aee556666d4fe"
  4697. dependencies = [
  4698. "quote",
  4699. "wasm-bindgen-macro-support",
  4700. ]
  4701. [[package]]
  4702. name = "wasm-bindgen-macro-support"
  4703. version = "0.2.99"
  4704. source = "registry+https://github.com/rust-lang/crates.io-index"
  4705. checksum = "30d7a95b763d3c45903ed6c81f156801839e5ee968bb07e534c44df0fcd330c2"
  4706. dependencies = [
  4707. "proc-macro2",
  4708. "quote",
  4709. "syn 2.0.91",
  4710. "wasm-bindgen-backend",
  4711. "wasm-bindgen-shared",
  4712. ]
  4713. [[package]]
  4714. name = "wasm-bindgen-shared"
  4715. version = "0.2.99"
  4716. source = "registry+https://github.com/rust-lang/crates.io-index"
  4717. checksum = "943aab3fdaaa029a6e0271b35ea10b72b943135afe9bffca82384098ad0e06a6"
  4718. [[package]]
  4719. name = "web-sys"
  4720. version = "0.3.76"
  4721. source = "registry+https://github.com/rust-lang/crates.io-index"
  4722. checksum = "04dd7223427d52553d3702c004d3b2fe07c148165faa56313cb00211e31c12bc"
  4723. dependencies = [
  4724. "js-sys",
  4725. "wasm-bindgen",
  4726. ]
  4727. [[package]]
  4728. name = "web-time"
  4729. version = "1.1.0"
  4730. source = "registry+https://github.com/rust-lang/crates.io-index"
  4731. checksum = "5a6580f308b1fad9207618087a65c04e7a10bc77e02c8e84e9b00dd4b12fa0bb"
  4732. dependencies = [
  4733. "js-sys",
  4734. "wasm-bindgen",
  4735. ]
  4736. [[package]]
  4737. name = "webpki"
  4738. version = "0.22.4"
  4739. source = "registry+https://github.com/rust-lang/crates.io-index"
  4740. checksum = "ed63aea5ce73d0ff405984102c42de94fc55a6b75765d621c65262469b3c9b53"
  4741. dependencies = [
  4742. "ring 0.17.8",
  4743. "untrusted 0.9.0",
  4744. ]
  4745. [[package]]
  4746. name = "webpki-roots"
  4747. version = "0.22.6"
  4748. source = "registry+https://github.com/rust-lang/crates.io-index"
  4749. checksum = "b6c71e40d7d2c34a5106301fb632274ca37242cd0c9d3e64dbece371a40a2d87"
  4750. dependencies = [
  4751. "webpki",
  4752. ]
  4753. [[package]]
  4754. name = "webpki-roots"
  4755. version = "0.26.7"
  4756. source = "registry+https://github.com/rust-lang/crates.io-index"
  4757. checksum = "5d642ff16b7e79272ae451b7322067cdc17cadf68c23264be9d94a32319efe7e"
  4758. dependencies = [
  4759. "rustls-pki-types",
  4760. ]
  4761. [[package]]
  4762. name = "winapi"
  4763. version = "0.3.9"
  4764. source = "registry+https://github.com/rust-lang/crates.io-index"
  4765. checksum = "5c839a674fcd7a98952e593242ea400abe93992746761e38641405d28b00f419"
  4766. dependencies = [
  4767. "winapi-i686-pc-windows-gnu",
  4768. "winapi-x86_64-pc-windows-gnu",
  4769. ]
  4770. [[package]]
  4771. name = "winapi-i686-pc-windows-gnu"
  4772. version = "0.4.0"
  4773. source = "registry+https://github.com/rust-lang/crates.io-index"
  4774. checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6"
  4775. [[package]]
  4776. name = "winapi-util"
  4777. version = "0.1.9"
  4778. source = "registry+https://github.com/rust-lang/crates.io-index"
  4779. checksum = "cf221c93e13a30d793f7645a0e7762c55d169dbb0a49671918a2319d289b10bb"
  4780. dependencies = [
  4781. "windows-sys 0.59.0",
  4782. ]
  4783. [[package]]
  4784. name = "winapi-x86_64-pc-windows-gnu"
  4785. version = "0.4.0"
  4786. source = "registry+https://github.com/rust-lang/crates.io-index"
  4787. checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f"
  4788. [[package]]
  4789. name = "windows-core"
  4790. version = "0.52.0"
  4791. source = "registry+https://github.com/rust-lang/crates.io-index"
  4792. checksum = "33ab640c8d7e35bf8ba19b884ba838ceb4fba93a4e8c65a9059d08afcfc683d9"
  4793. dependencies = [
  4794. "windows-targets 0.52.6",
  4795. ]
  4796. [[package]]
  4797. name = "windows-registry"
  4798. version = "0.2.0"
  4799. source = "registry+https://github.com/rust-lang/crates.io-index"
  4800. checksum = "e400001bb720a623c1c69032f8e3e4cf09984deec740f007dd2b03ec864804b0"
  4801. dependencies = [
  4802. "windows-result",
  4803. "windows-strings",
  4804. "windows-targets 0.52.6",
  4805. ]
  4806. [[package]]
  4807. name = "windows-result"
  4808. version = "0.2.0"
  4809. source = "registry+https://github.com/rust-lang/crates.io-index"
  4810. checksum = "1d1043d8214f791817bab27572aaa8af63732e11bf84aa21a45a78d6c317ae0e"
  4811. dependencies = [
  4812. "windows-targets 0.52.6",
  4813. ]
  4814. [[package]]
  4815. name = "windows-strings"
  4816. version = "0.1.0"
  4817. source = "registry+https://github.com/rust-lang/crates.io-index"
  4818. checksum = "4cd9b125c486025df0eabcb585e62173c6c9eddcec5d117d3b6e8c30e2ee4d10"
  4819. dependencies = [
  4820. "windows-result",
  4821. "windows-targets 0.52.6",
  4822. ]
  4823. [[package]]
  4824. name = "windows-sys"
  4825. version = "0.48.0"
  4826. source = "registry+https://github.com/rust-lang/crates.io-index"
  4827. checksum = "677d2418bec65e3338edb076e806bc1ec15693c5d0104683f2efe857f61056a9"
  4828. dependencies = [
  4829. "windows-targets 0.48.5",
  4830. ]
  4831. [[package]]
  4832. name = "windows-sys"
  4833. version = "0.52.0"
  4834. source = "registry+https://github.com/rust-lang/crates.io-index"
  4835. checksum = "282be5f36a8ce781fad8c8ae18fa3f9beff57ec1b52cb3de0789201425d9a33d"
  4836. dependencies = [
  4837. "windows-targets 0.52.6",
  4838. ]
  4839. [[package]]
  4840. name = "windows-sys"
  4841. version = "0.59.0"
  4842. source = "registry+https://github.com/rust-lang/crates.io-index"
  4843. checksum = "1e38bc4d79ed67fd075bcc251a1c39b32a1776bbe92e5bef1f0bf1f8c531853b"
  4844. dependencies = [
  4845. "windows-targets 0.52.6",
  4846. ]
  4847. [[package]]
  4848. name = "windows-targets"
  4849. version = "0.48.5"
  4850. source = "registry+https://github.com/rust-lang/crates.io-index"
  4851. checksum = "9a2fa6e2155d7247be68c096456083145c183cbbbc2764150dda45a87197940c"
  4852. dependencies = [
  4853. "windows_aarch64_gnullvm 0.48.5",
  4854. "windows_aarch64_msvc 0.48.5",
  4855. "windows_i686_gnu 0.48.5",
  4856. "windows_i686_msvc 0.48.5",
  4857. "windows_x86_64_gnu 0.48.5",
  4858. "windows_x86_64_gnullvm 0.48.5",
  4859. "windows_x86_64_msvc 0.48.5",
  4860. ]
  4861. [[package]]
  4862. name = "windows-targets"
  4863. version = "0.52.6"
  4864. source = "registry+https://github.com/rust-lang/crates.io-index"
  4865. checksum = "9b724f72796e036ab90c1021d4780d4d3d648aca59e491e6b98e725b84e99973"
  4866. dependencies = [
  4867. "windows_aarch64_gnullvm 0.52.6",
  4868. "windows_aarch64_msvc 0.52.6",
  4869. "windows_i686_gnu 0.52.6",
  4870. "windows_i686_gnullvm",
  4871. "windows_i686_msvc 0.52.6",
  4872. "windows_x86_64_gnu 0.52.6",
  4873. "windows_x86_64_gnullvm 0.52.6",
  4874. "windows_x86_64_msvc 0.52.6",
  4875. ]
  4876. [[package]]
  4877. name = "windows_aarch64_gnullvm"
  4878. version = "0.48.5"
  4879. source = "registry+https://github.com/rust-lang/crates.io-index"
  4880. checksum = "2b38e32f0abccf9987a4e3079dfb67dcd799fb61361e53e2882c3cbaf0d905d8"
  4881. [[package]]
  4882. name = "windows_aarch64_gnullvm"
  4883. version = "0.52.6"
  4884. source = "registry+https://github.com/rust-lang/crates.io-index"
  4885. checksum = "32a4622180e7a0ec044bb555404c800bc9fd9ec262ec147edd5989ccd0c02cd3"
  4886. [[package]]
  4887. name = "windows_aarch64_msvc"
  4888. version = "0.48.5"
  4889. source = "registry+https://github.com/rust-lang/crates.io-index"
  4890. checksum = "dc35310971f3b2dbbf3f0690a219f40e2d9afcf64f9ab7cc1be722937c26b4bc"
  4891. [[package]]
  4892. name = "windows_aarch64_msvc"
  4893. version = "0.52.6"
  4894. source = "registry+https://github.com/rust-lang/crates.io-index"
  4895. checksum = "09ec2a7bb152e2252b53fa7803150007879548bc709c039df7627cabbd05d469"
  4896. [[package]]
  4897. name = "windows_i686_gnu"
  4898. version = "0.48.5"
  4899. source = "registry+https://github.com/rust-lang/crates.io-index"
  4900. checksum = "a75915e7def60c94dcef72200b9a8e58e5091744960da64ec734a6c6e9b3743e"
  4901. [[package]]
  4902. name = "windows_i686_gnu"
  4903. version = "0.52.6"
  4904. source = "registry+https://github.com/rust-lang/crates.io-index"
  4905. checksum = "8e9b5ad5ab802e97eb8e295ac6720e509ee4c243f69d781394014ebfe8bbfa0b"
  4906. [[package]]
  4907. name = "windows_i686_gnullvm"
  4908. version = "0.52.6"
  4909. source = "registry+https://github.com/rust-lang/crates.io-index"
  4910. checksum = "0eee52d38c090b3caa76c563b86c3a4bd71ef1a819287c19d586d7334ae8ed66"
  4911. [[package]]
  4912. name = "windows_i686_msvc"
  4913. version = "0.48.5"
  4914. source = "registry+https://github.com/rust-lang/crates.io-index"
  4915. checksum = "8f55c233f70c4b27f66c523580f78f1004e8b5a8b659e05a4eb49d4166cca406"
  4916. [[package]]
  4917. name = "windows_i686_msvc"
  4918. version = "0.52.6"
  4919. source = "registry+https://github.com/rust-lang/crates.io-index"
  4920. checksum = "240948bc05c5e7c6dabba28bf89d89ffce3e303022809e73deaefe4f6ec56c66"
  4921. [[package]]
  4922. name = "windows_x86_64_gnu"
  4923. version = "0.48.5"
  4924. source = "registry+https://github.com/rust-lang/crates.io-index"
  4925. checksum = "53d40abd2583d23e4718fddf1ebec84dbff8381c07cae67ff7768bbf19c6718e"
  4926. [[package]]
  4927. name = "windows_x86_64_gnu"
  4928. version = "0.52.6"
  4929. source = "registry+https://github.com/rust-lang/crates.io-index"
  4930. checksum = "147a5c80aabfbf0c7d901cb5895d1de30ef2907eb21fbbab29ca94c5b08b1a78"
  4931. [[package]]
  4932. name = "windows_x86_64_gnullvm"
  4933. version = "0.48.5"
  4934. source = "registry+https://github.com/rust-lang/crates.io-index"
  4935. checksum = "0b7b52767868a23d5bab768e390dc5f5c55825b6d30b86c844ff2dc7414044cc"
  4936. [[package]]
  4937. name = "windows_x86_64_gnullvm"
  4938. version = "0.52.6"
  4939. source = "registry+https://github.com/rust-lang/crates.io-index"
  4940. checksum = "24d5b23dc417412679681396f2b49f3de8c1473deb516bd34410872eff51ed0d"
  4941. [[package]]
  4942. name = "windows_x86_64_msvc"
  4943. version = "0.48.5"
  4944. source = "registry+https://github.com/rust-lang/crates.io-index"
  4945. checksum = "ed94fce61571a4006852b7389a063ab983c02eb1bb37b47f8272ce92d06d9538"
  4946. [[package]]
  4947. name = "windows_x86_64_msvc"
  4948. version = "0.52.6"
  4949. source = "registry+https://github.com/rust-lang/crates.io-index"
  4950. checksum = "589f6da84c646204747d1270a2a5661ea66ed1cced2631d546fdfb155959f9ec"
  4951. [[package]]
  4952. name = "write16"
  4953. version = "1.0.0"
  4954. source = "registry+https://github.com/rust-lang/crates.io-index"
  4955. checksum = "d1890f4022759daae28ed4fe62859b1236caebfc61ede2f63ed4e695f3f6d936"
  4956. [[package]]
  4957. name = "writeable"
  4958. version = "0.5.5"
  4959. source = "registry+https://github.com/rust-lang/crates.io-index"
  4960. checksum = "1e9df38ee2d2c3c5948ea468a8406ff0db0b29ae1ffde1bcf20ef305bcc95c51"
  4961. [[package]]
  4962. name = "yaml-rust"
  4963. version = "0.4.5"
  4964. source = "registry+https://github.com/rust-lang/crates.io-index"
  4965. checksum = "56c1936c4cc7a1c9ab21a1ebb602eb942ba868cbd44a99cb7cdc5892335e1c85"
  4966. dependencies = [
  4967. "linked-hash-map",
  4968. ]
  4969. [[package]]
  4970. name = "yoke"
  4971. version = "0.7.5"
  4972. source = "registry+https://github.com/rust-lang/crates.io-index"
  4973. checksum = "120e6aef9aa629e3d4f52dc8cc43a015c7724194c97dfaf45180d2daf2b77f40"
  4974. dependencies = [
  4975. "serde",
  4976. "stable_deref_trait",
  4977. "yoke-derive",
  4978. "zerofrom",
  4979. ]
  4980. [[package]]
  4981. name = "yoke-derive"
  4982. version = "0.7.5"
  4983. source = "registry+https://github.com/rust-lang/crates.io-index"
  4984. checksum = "2380878cad4ac9aac1e2435f3eb4020e8374b5f13c296cb75b4620ff8e229154"
  4985. dependencies = [
  4986. "proc-macro2",
  4987. "quote",
  4988. "syn 2.0.91",
  4989. "synstructure",
  4990. ]
  4991. [[package]]
  4992. name = "zerocopy"
  4993. version = "0.7.35"
  4994. source = "registry+https://github.com/rust-lang/crates.io-index"
  4995. checksum = "1b9b4fd18abc82b8136838da5d50bae7bdea537c574d8dc1a34ed098d6c166f0"
  4996. dependencies = [
  4997. "byteorder",
  4998. "zerocopy-derive",
  4999. ]
  5000. [[package]]
  5001. name = "zerocopy-derive"
  5002. version = "0.7.35"
  5003. source = "registry+https://github.com/rust-lang/crates.io-index"
  5004. checksum = "fa4f8080344d4671fb4e831a13ad1e68092748387dfc4f55e356242fae12ce3e"
  5005. dependencies = [
  5006. "proc-macro2",
  5007. "quote",
  5008. "syn 2.0.91",
  5009. ]
  5010. [[package]]
  5011. name = "zerofrom"
  5012. version = "0.1.5"
  5013. source = "registry+https://github.com/rust-lang/crates.io-index"
  5014. checksum = "cff3ee08c995dee1859d998dea82f7374f2826091dd9cd47def953cae446cd2e"
  5015. dependencies = [
  5016. "zerofrom-derive",
  5017. ]
  5018. [[package]]
  5019. name = "zerofrom-derive"
  5020. version = "0.1.5"
  5021. source = "registry+https://github.com/rust-lang/crates.io-index"
  5022. checksum = "595eed982f7d355beb85837f651fa22e90b3c044842dc7f2c2842c086f295808"
  5023. dependencies = [
  5024. "proc-macro2",
  5025. "quote",
  5026. "syn 2.0.91",
  5027. "synstructure",
  5028. ]
  5029. [[package]]
  5030. name = "zeroize"
  5031. version = "1.8.1"
  5032. source = "registry+https://github.com/rust-lang/crates.io-index"
  5033. checksum = "ced3678a2879b30306d323f4542626697a464a97c0a07c9aebf7ebca65cd4dde"
  5034. [[package]]
  5035. name = "zerovec"
  5036. version = "0.10.4"
  5037. source = "registry+https://github.com/rust-lang/crates.io-index"
  5038. checksum = "aa2b893d79df23bfb12d5461018d408ea19dfafe76c2c7ef6d4eba614f8ff079"
  5039. dependencies = [
  5040. "yoke",
  5041. "zerofrom",
  5042. "zerovec-derive",
  5043. ]
  5044. [[package]]
  5045. name = "zerovec-derive"
  5046. version = "0.10.3"
  5047. source = "registry+https://github.com/rust-lang/crates.io-index"
  5048. checksum = "6eafa6dfb17584ea3e2bd6e76e0cc15ad7af12b09abdd1ca55961bed9b1063c6"
  5049. dependencies = [
  5050. "proc-macro2",
  5051. "quote",
  5052. "syn 2.0.91",
  5053. ]
  5054. [[package]]
  5055. name = "zip"
  5056. version = "0.6.6"
  5057. source = "registry+https://github.com/rust-lang/crates.io-index"
  5058. checksum = "760394e246e4c28189f19d488c058bf16f564016aefac5d32bb1f3b51d5e9261"
  5059. dependencies = [
  5060. "byteorder",
  5061. "crc32fast",
  5062. "crossbeam-utils",
  5063. "flate2",
  5064. ]
  5065. [[package]]
  5066. name = "zstd"
  5067. version = "0.13.2"
  5068. source = "registry+https://github.com/rust-lang/crates.io-index"
  5069. checksum = "fcf2b778a664581e31e389454a7072dab1647606d44f7feea22cd5abb9c9f3f9"
  5070. dependencies = [
  5071. "zstd-safe",
  5072. ]
  5073. [[package]]
  5074. name = "zstd-safe"
  5075. version = "7.2.1"
  5076. source = "registry+https://github.com/rust-lang/crates.io-index"
  5077. checksum = "54a3ab4db68cea366acc5c897c7b4d4d1b8994a9cd6e6f841f8964566a419059"
  5078. dependencies = [
  5079. "zstd-sys",
  5080. ]
  5081. [[package]]
  5082. name = "zstd-sys"
  5083. version = "2.0.13+zstd.1.5.6"
  5084. source = "registry+https://github.com/rust-lang/crates.io-index"
  5085. checksum = "38ff0f21cfee8f97d94cef41359e0c89aa6113028ab0291aa8ca0038995a95aa"
  5086. dependencies = [
  5087. "cc",
  5088. "pkg-config",
  5089. ]