Cargo.lock 132 KB

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