Cargo.lock 131 KB

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