Cargo.lock 129 KB

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