Cargo.lock 130 KB

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