Cargo.lock 133 KB

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