Cargo.lock 131 KB

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