Cargo.lock 137 KB

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