Cargo.lock 132 KB

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