Cargo.lock 127 KB

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