Cargo.lock 129 KB

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