Cargo.lock 136 KB

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