Cargo.lock 140 KB

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