Cargo.lock 127 KB

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