pyqwest.cyclonedx.json 249 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601160216031604160516061607160816091610161116121613161416151616161716181619162016211622162316241625162616271628162916301631163216331634163516361637163816391640164116421643164416451646164716481649165016511652165316541655165616571658165916601661166216631664166516661667166816691670167116721673167416751676167716781679168016811682168316841685168616871688168916901691169216931694169516961697169816991700170117021703170417051706170717081709171017111712171317141715171617171718171917201721172217231724172517261727172817291730173117321733173417351736173717381739174017411742174317441745174617471748174917501751175217531754175517561757175817591760176117621763176417651766176717681769177017711772177317741775177617771778177917801781178217831784178517861787178817891790179117921793179417951796179717981799180018011802180318041805180618071808180918101811181218131814181518161817181818191820182118221823182418251826182718281829183018311832183318341835183618371838183918401841184218431844184518461847184818491850185118521853185418551856185718581859186018611862186318641865186618671868186918701871187218731874187518761877187818791880188118821883188418851886188718881889189018911892189318941895189618971898189919001901190219031904190519061907190819091910191119121913191419151916191719181919192019211922192319241925192619271928192919301931193219331934193519361937193819391940194119421943194419451946194719481949195019511952195319541955195619571958195919601961196219631964196519661967196819691970197119721973197419751976197719781979198019811982198319841985198619871988198919901991199219931994199519961997199819992000200120022003200420052006200720082009201020112012201320142015201620172018201920202021202220232024202520262027202820292030203120322033203420352036203720382039204020412042204320442045204620472048204920502051205220532054205520562057205820592060206120622063206420652066206720682069207020712072207320742075207620772078207920802081208220832084208520862087208820892090209120922093209420952096209720982099210021012102210321042105210621072108210921102111211221132114211521162117211821192120212121222123212421252126212721282129213021312132213321342135213621372138213921402141214221432144214521462147214821492150215121522153215421552156215721582159216021612162216321642165216621672168216921702171217221732174217521762177217821792180218121822183218421852186218721882189219021912192219321942195219621972198219922002201220222032204220522062207220822092210221122122213221422152216221722182219222022212222222322242225222622272228222922302231223222332234223522362237223822392240224122422243224422452246224722482249225022512252225322542255225622572258225922602261226222632264226522662267226822692270227122722273227422752276227722782279228022812282228322842285228622872288228922902291229222932294229522962297229822992300230123022303230423052306230723082309231023112312231323142315231623172318231923202321232223232324232523262327232823292330233123322333233423352336233723382339234023412342234323442345234623472348234923502351235223532354235523562357235823592360236123622363236423652366236723682369237023712372237323742375237623772378237923802381238223832384238523862387238823892390239123922393239423952396239723982399240024012402240324042405240624072408240924102411241224132414241524162417241824192420242124222423242424252426242724282429243024312432243324342435243624372438243924402441244224432444244524462447244824492450245124522453245424552456245724582459246024612462246324642465246624672468246924702471247224732474247524762477247824792480248124822483248424852486248724882489249024912492249324942495249624972498249925002501250225032504250525062507250825092510251125122513251425152516251725182519252025212522252325242525252625272528252925302531253225332534253525362537253825392540254125422543254425452546254725482549255025512552255325542555255625572558255925602561256225632564256525662567256825692570257125722573257425752576257725782579258025812582258325842585258625872588258925902591259225932594259525962597259825992600260126022603260426052606260726082609261026112612261326142615261626172618261926202621262226232624262526262627262826292630263126322633263426352636263726382639264026412642264326442645264626472648264926502651265226532654265526562657265826592660266126622663266426652666266726682669267026712672267326742675267626772678267926802681268226832684268526862687268826892690269126922693269426952696269726982699270027012702270327042705270627072708270927102711271227132714271527162717271827192720272127222723272427252726272727282729273027312732273327342735273627372738273927402741274227432744274527462747274827492750275127522753275427552756275727582759276027612762276327642765276627672768276927702771277227732774277527762777277827792780278127822783278427852786278727882789279027912792279327942795279627972798279928002801280228032804280528062807280828092810281128122813281428152816281728182819282028212822282328242825282628272828282928302831283228332834283528362837283828392840284128422843284428452846284728482849285028512852285328542855285628572858285928602861286228632864286528662867286828692870287128722873287428752876287728782879288028812882288328842885288628872888288928902891289228932894289528962897289828992900290129022903290429052906290729082909291029112912291329142915291629172918291929202921292229232924292529262927292829292930293129322933293429352936293729382939294029412942294329442945294629472948294929502951295229532954295529562957295829592960296129622963296429652966296729682969297029712972297329742975297629772978297929802981298229832984298529862987298829892990299129922993299429952996299729982999300030013002300330043005300630073008300930103011301230133014301530163017301830193020302130223023302430253026302730283029303030313032303330343035303630373038303930403041304230433044304530463047304830493050305130523053305430553056305730583059306030613062306330643065306630673068306930703071307230733074307530763077307830793080308130823083308430853086308730883089309030913092309330943095309630973098309931003101310231033104310531063107310831093110311131123113311431153116311731183119312031213122312331243125312631273128312931303131313231333134313531363137313831393140314131423143314431453146314731483149315031513152315331543155315631573158315931603161316231633164316531663167316831693170317131723173317431753176317731783179318031813182318331843185318631873188318931903191319231933194319531963197319831993200320132023203320432053206320732083209321032113212321332143215321632173218321932203221322232233224322532263227322832293230323132323233323432353236323732383239324032413242324332443245324632473248324932503251325232533254325532563257325832593260326132623263326432653266326732683269327032713272327332743275327632773278327932803281328232833284328532863287328832893290329132923293329432953296329732983299330033013302330333043305330633073308330933103311331233133314331533163317331833193320332133223323332433253326332733283329333033313332333333343335333633373338333933403341334233433344334533463347334833493350335133523353335433553356335733583359336033613362336333643365336633673368336933703371337233733374337533763377337833793380338133823383338433853386338733883389339033913392339333943395339633973398339934003401340234033404340534063407340834093410341134123413341434153416341734183419342034213422342334243425342634273428342934303431343234333434343534363437343834393440344134423443344434453446344734483449345034513452345334543455345634573458345934603461346234633464346534663467346834693470347134723473347434753476347734783479348034813482348334843485348634873488348934903491349234933494349534963497349834993500350135023503350435053506350735083509351035113512351335143515351635173518351935203521352235233524352535263527352835293530353135323533353435353536353735383539354035413542354335443545354635473548354935503551355235533554355535563557355835593560356135623563356435653566356735683569357035713572357335743575357635773578357935803581358235833584358535863587358835893590359135923593359435953596359735983599360036013602360336043605360636073608360936103611361236133614361536163617361836193620362136223623362436253626362736283629363036313632363336343635363636373638363936403641364236433644364536463647364836493650365136523653365436553656365736583659366036613662366336643665366636673668366936703671367236733674367536763677367836793680368136823683368436853686368736883689369036913692369336943695369636973698369937003701370237033704370537063707370837093710371137123713371437153716371737183719372037213722372337243725372637273728372937303731373237333734373537363737373837393740374137423743374437453746374737483749375037513752375337543755375637573758375937603761376237633764376537663767376837693770377137723773377437753776377737783779378037813782378337843785378637873788378937903791379237933794379537963797379837993800380138023803380438053806380738083809381038113812381338143815381638173818381938203821382238233824382538263827382838293830383138323833383438353836383738383839384038413842384338443845384638473848384938503851385238533854385538563857385838593860386138623863386438653866386738683869387038713872387338743875387638773878387938803881388238833884388538863887388838893890389138923893389438953896389738983899390039013902390339043905390639073908390939103911391239133914391539163917391839193920392139223923392439253926392739283929393039313932393339343935393639373938393939403941394239433944394539463947394839493950395139523953395439553956395739583959396039613962396339643965396639673968396939703971397239733974397539763977397839793980398139823983398439853986398739883989399039913992399339943995399639973998399940004001400240034004400540064007400840094010401140124013401440154016401740184019402040214022402340244025402640274028402940304031403240334034403540364037403840394040404140424043404440454046404740484049405040514052405340544055405640574058405940604061406240634064406540664067406840694070407140724073407440754076407740784079408040814082408340844085408640874088408940904091409240934094409540964097409840994100410141024103410441054106410741084109411041114112411341144115411641174118411941204121412241234124412541264127412841294130413141324133413441354136413741384139414041414142414341444145414641474148414941504151415241534154415541564157415841594160416141624163416441654166416741684169417041714172417341744175417641774178417941804181418241834184418541864187418841894190419141924193419441954196419741984199420042014202420342044205420642074208420942104211421242134214421542164217421842194220422142224223422442254226422742284229423042314232423342344235423642374238423942404241424242434244424542464247424842494250425142524253425442554256425742584259426042614262426342644265426642674268426942704271427242734274427542764277427842794280428142824283428442854286428742884289429042914292429342944295429642974298429943004301430243034304430543064307430843094310431143124313431443154316431743184319432043214322432343244325432643274328432943304331433243334334433543364337433843394340434143424343434443454346434743484349435043514352435343544355435643574358435943604361436243634364436543664367436843694370437143724373437443754376437743784379438043814382438343844385438643874388438943904391439243934394439543964397439843994400440144024403440444054406440744084409441044114412441344144415441644174418441944204421442244234424442544264427442844294430443144324433443444354436443744384439444044414442444344444445444644474448444944504451445244534454445544564457445844594460446144624463446444654466446744684469447044714472447344744475447644774478447944804481448244834484448544864487448844894490449144924493449444954496449744984499450045014502450345044505450645074508450945104511451245134514451545164517451845194520452145224523452445254526452745284529453045314532453345344535453645374538453945404541454245434544454545464547454845494550455145524553455445554556455745584559456045614562456345644565456645674568456945704571457245734574457545764577457845794580458145824583458445854586458745884589459045914592459345944595459645974598459946004601460246034604460546064607460846094610461146124613461446154616461746184619462046214622462346244625462646274628462946304631463246334634463546364637463846394640464146424643464446454646464746484649465046514652465346544655465646574658465946604661466246634664466546664667466846694670467146724673467446754676467746784679468046814682468346844685468646874688468946904691469246934694469546964697469846994700470147024703470447054706470747084709471047114712471347144715471647174718471947204721472247234724472547264727472847294730473147324733473447354736473747384739474047414742474347444745474647474748474947504751475247534754475547564757475847594760476147624763476447654766476747684769477047714772477347744775477647774778477947804781478247834784478547864787478847894790479147924793479447954796479747984799480048014802480348044805480648074808480948104811481248134814481548164817481848194820482148224823482448254826482748284829483048314832483348344835483648374838483948404841484248434844484548464847484848494850485148524853485448554856485748584859486048614862486348644865486648674868486948704871487248734874487548764877487848794880488148824883488448854886488748884889489048914892489348944895489648974898489949004901490249034904490549064907490849094910491149124913491449154916491749184919492049214922492349244925492649274928492949304931493249334934493549364937493849394940494149424943494449454946494749484949495049514952495349544955495649574958495949604961496249634964496549664967496849694970497149724973497449754976497749784979498049814982498349844985498649874988498949904991499249934994499549964997499849995000500150025003500450055006500750085009501050115012501350145015501650175018501950205021502250235024502550265027502850295030503150325033503450355036503750385039504050415042504350445045504650475048504950505051505250535054505550565057505850595060506150625063506450655066506750685069507050715072507350745075507650775078507950805081508250835084508550865087508850895090509150925093509450955096509750985099510051015102510351045105510651075108510951105111511251135114511551165117511851195120512151225123512451255126512751285129513051315132513351345135513651375138513951405141514251435144514551465147514851495150515151525153515451555156515751585159516051615162516351645165516651675168516951705171517251735174517551765177517851795180518151825183518451855186518751885189519051915192519351945195519651975198519952005201520252035204520552065207520852095210521152125213521452155216521752185219522052215222522352245225522652275228522952305231523252335234523552365237523852395240524152425243524452455246524752485249525052515252525352545255525652575258525952605261526252635264526552665267526852695270527152725273527452755276527752785279528052815282528352845285528652875288528952905291529252935294529552965297529852995300530153025303530453055306530753085309531053115312531353145315531653175318531953205321532253235324532553265327532853295330533153325333533453355336533753385339534053415342534353445345534653475348534953505351535253535354535553565357535853595360536153625363536453655366536753685369537053715372537353745375537653775378537953805381538253835384538553865387538853895390539153925393539453955396539753985399540054015402540354045405540654075408540954105411541254135414541554165417541854195420542154225423542454255426542754285429543054315432543354345435543654375438543954405441544254435444544554465447544854495450545154525453545454555456545754585459546054615462546354645465546654675468546954705471547254735474547554765477547854795480548154825483548454855486548754885489549054915492549354945495549654975498549955005501550255035504550555065507550855095510551155125513551455155516551755185519552055215522552355245525552655275528552955305531553255335534553555365537553855395540554155425543554455455546554755485549555055515552555355545555555655575558555955605561556255635564556555665567556855695570557155725573557455755576557755785579558055815582558355845585558655875588558955905591559255935594559555965597559855995600560156025603560456055606560756085609561056115612561356145615561656175618561956205621562256235624562556265627562856295630563156325633563456355636563756385639564056415642564356445645564656475648564956505651565256535654565556565657565856595660566156625663566456655666566756685669567056715672567356745675567656775678567956805681568256835684568556865687568856895690569156925693569456955696569756985699570057015702570357045705570657075708570957105711571257135714571557165717571857195720572157225723572457255726572757285729573057315732573357345735573657375738573957405741574257435744574557465747574857495750575157525753575457555756575757585759576057615762576357645765576657675768576957705771577257735774577557765777577857795780578157825783578457855786578757885789579057915792579357945795579657975798579958005801580258035804580558065807580858095810581158125813581458155816581758185819582058215822582358245825582658275828582958305831583258335834583558365837583858395840584158425843584458455846584758485849585058515852585358545855585658575858585958605861586258635864586558665867586858695870587158725873587458755876587758785879588058815882588358845885588658875888588958905891589258935894589558965897589858995900590159025903590459055906590759085909591059115912591359145915591659175918591959205921592259235924592559265927592859295930593159325933593459355936593759385939594059415942594359445945594659475948594959505951595259535954595559565957595859595960596159625963596459655966596759685969597059715972597359745975597659775978597959805981598259835984598559865987598859895990599159925993599459955996599759985999600060016002600360046005600660076008600960106011601260136014601560166017601860196020602160226023602460256026602760286029603060316032603360346035603660376038603960406041604260436044604560466047604860496050605160526053605460556056605760586059606060616062606360646065606660676068606960706071607260736074607560766077607860796080608160826083608460856086608760886089609060916092609360946095609660976098609961006101610261036104610561066107610861096110611161126113611461156116611761186119612061216122612361246125612661276128612961306131613261336134613561366137613861396140614161426143614461456146614761486149615061516152615361546155615661576158615961606161616261636164616561666167616861696170617161726173617461756176617761786179618061816182618361846185618661876188618961906191619261936194619561966197619861996200620162026203620462056206620762086209621062116212621362146215621662176218621962206221622262236224622562266227622862296230623162326233623462356236623762386239624062416242624362446245624662476248624962506251625262536254625562566257625862596260626162626263626462656266626762686269627062716272627362746275627662776278627962806281628262836284628562866287628862896290629162926293629462956296629762986299630063016302630363046305630663076308630963106311631263136314631563166317631863196320632163226323632463256326632763286329633063316332633363346335633663376338633963406341634263436344634563466347634863496350635163526353635463556356635763586359636063616362636363646365636663676368636963706371637263736374637563766377637863796380638163826383638463856386638763886389639063916392639363946395639663976398639964006401640264036404640564066407640864096410641164126413641464156416641764186419642064216422642364246425642664276428642964306431643264336434643564366437643864396440644164426443644464456446644764486449645064516452645364546455645664576458645964606461646264636464646564666467646864696470647164726473647464756476647764786479648064816482648364846485648664876488648964906491649264936494649564966497649864996500650165026503650465056506650765086509651065116512651365146515651665176518651965206521652265236524652565266527652865296530653165326533653465356536653765386539654065416542654365446545654665476548654965506551655265536554655565566557655865596560656165626563656465656566656765686569657065716572657365746575657665776578657965806581658265836584658565866587658865896590659165926593659465956596659765986599660066016602660366046605660666076608660966106611661266136614661566166617661866196620662166226623662466256626662766286629663066316632663366346635663666376638663966406641664266436644664566466647664866496650665166526653665466556656665766586659666066616662666366646665666666676668666966706671667266736674667566766677667866796680668166826683668466856686668766886689669066916692669366946695669666976698669967006701670267036704670567066707670867096710671167126713671467156716671767186719672067216722672367246725672667276728672967306731673267336734673567366737673867396740674167426743674467456746674767486749675067516752675367546755675667576758675967606761676267636764676567666767676867696770677167726773677467756776677767786779678067816782678367846785678667876788678967906791679267936794679567966797679867996800680168026803680468056806680768086809681068116812681368146815681668176818681968206821682268236824682568266827682868296830683168326833683468356836683768386839684068416842684368446845684668476848684968506851685268536854685568566857685868596860686168626863686468656866686768686869687068716872687368746875687668776878687968806881688268836884688568866887688868896890689168926893689468956896689768986899690069016902690369046905690669076908690969106911691269136914691569166917691869196920692169226923692469256926692769286929693069316932693369346935693669376938693969406941694269436944694569466947694869496950695169526953695469556956695769586959696069616962696369646965696669676968696969706971697269736974697569766977697869796980698169826983698469856986698769886989699069916992699369946995699669976998699970007001700270037004700570067007700870097010701170127013701470157016701770187019702070217022702370247025702670277028702970307031703270337034703570367037703870397040704170427043704470457046704770487049705070517052705370547055705670577058705970607061706270637064706570667067706870697070707170727073707470757076707770787079708070817082708370847085708670877088708970907091709270937094709570967097709870997100710171027103710471057106710771087109711071117112711371147115711671177118711971207121712271237124712571267127712871297130713171327133713471357136713771387139714071417142714371447145714671477148714971507151715271537154715571567157715871597160716171627163716471657166716771687169717071717172717371747175717671777178717971807181718271837184718571867187718871897190719171927193719471957196719771987199720072017202720372047205720672077208720972107211721272137214721572167217721872197220722172227223722472257226722772287229723072317232723372347235723672377238723972407241724272437244724572467247724872497250725172527253725472557256725772587259726072617262726372647265726672677268726972707271727272737274727572767277727872797280728172827283728472857286728772887289729072917292729372947295729672977298729973007301730273037304730573067307730873097310731173127313731473157316731773187319732073217322732373247325732673277328732973307331733273337334733573367337733873397340734173427343734473457346734773487349735073517352735373547355735673577358735973607361736273637364736573667367736873697370737173727373737473757376737773787379738073817382738373847385738673877388738973907391739273937394739573967397739873997400740174027403740474057406740774087409741074117412741374147415741674177418741974207421742274237424742574267427742874297430743174327433743474357436743774387439744074417442744374447445744674477448744974507451745274537454745574567457745874597460746174627463746474657466746774687469747074717472747374747475747674777478747974807481748274837484748574867487748874897490749174927493749474957496749774987499750075017502750375047505750675077508750975107511751275137514751575167517751875197520752175227523752475257526752775287529753075317532753375347535753675377538753975407541754275437544754575467547754875497550755175527553755475557556755775587559756075617562756375647565756675677568756975707571757275737574757575767577757875797580758175827583758475857586758775887589759075917592759375947595759675977598759976007601760276037604760576067607760876097610761176127613761476157616761776187619762076217622762376247625762676277628762976307631763276337634763576367637763876397640764176427643764476457646764776487649765076517652765376547655765676577658765976607661766276637664766576667667766876697670767176727673767476757676767776787679768076817682768376847685768676877688768976907691769276937694769576967697769876997700770177027703770477057706770777087709771077117712771377147715771677177718771977207721772277237724772577267727772877297730773177327733773477357736773777387739774077417742774377447745774677477748774977507751775277537754775577567757775877597760776177627763776477657766776777687769777077717772777377747775777677777778777977807781778277837784778577867787778877897790779177927793779477957796779777987799780078017802780378047805780678077808
  1. {
  2. "bomFormat": "CycloneDX",
  3. "specVersion": "1.5",
  4. "version": 1,
  5. "serialNumber": "urn:uuid:b2403bce-f4ac-480b-908a-c85e06f6cd51",
  6. "metadata": {
  7. "timestamp": "2026-08-21T05:51:30.820240099Z",
  8. "tools": [
  9. {
  10. "vendor": "CycloneDX",
  11. "name": "cargo-cyclonedx",
  12. "version": "0.5.9"
  13. }
  14. ],
  15. "component": {
  16. "type": "library",
  17. "bom-ref": "path+file:///home/runner/work/pyqwest/pyqwest#0.0.1",
  18. "name": "pyqwest",
  19. "version": "0.0.1",
  20. "scope": "required",
  21. "purl": "pkg:cargo/pyqwest@0.0.1?download_url=file://.",
  22. "components": [
  23. {
  24. "type": "library",
  25. "bom-ref": "path+file:///home/runner/work/pyqwest/pyqwest#0.0.1 bin-target-0",
  26. "name": "pyqwest",
  27. "version": "0.0.1",
  28. "purl": "pkg:cargo/pyqwest@0.0.1?download_url=file://.#src/lib.rs"
  29. }
  30. ]
  31. },
  32. "properties": [
  33. {
  34. "name": "cdx:rustc:sbom:target:all_targets",
  35. "value": "true"
  36. }
  37. ]
  38. },
  39. "components": [
  40. {
  41. "type": "library",
  42. "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#adler2@2.0.1",
  43. "author": "Jonas Schievink <jonasschievink@gmail.com>, oyvindln <oyvindln@users.noreply.github.com>",
  44. "name": "adler2",
  45. "version": "2.0.1",
  46. "description": "A simple clean-room implementation of the Adler-32 checksum",
  47. "scope": "required",
  48. "hashes": [
  49. {
  50. "alg": "SHA-256",
  51. "content": "320119579fcad9c21884f5c4861d16174d0e06250625266f50fe6898340abefa"
  52. }
  53. ],
  54. "licenses": [
  55. {
  56. "expression": "0BSD OR MIT OR Apache-2.0"
  57. }
  58. ],
  59. "purl": "pkg:cargo/adler2@2.0.1",
  60. "externalReferences": [
  61. {
  62. "type": "documentation",
  63. "url": "https://docs.rs/adler2/"
  64. },
  65. {
  66. "type": "vcs",
  67. "url": "https://github.com/oyvindln/adler2"
  68. }
  69. ]
  70. },
  71. {
  72. "type": "library",
  73. "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#alloc-no-stdlib@2.0.4",
  74. "author": "Daniel Reiter Horn <danielrh@dropbox.com>",
  75. "name": "alloc-no-stdlib",
  76. "version": "2.0.4",
  77. "description": "A dynamic allocator that may be used with or without the stdlib. This allows a package with nostd to allocate memory dynamically and be used either with a custom allocator, items on the stack, or by a package that wishes to simply use Box<>. It also provides options to use calloc or a mutable global variable for pre-zeroed memory",
  78. "scope": "required",
  79. "hashes": [
  80. {
  81. "alg": "SHA-256",
  82. "content": "cc7bb162ec39d46ab1ca8c77bf72e890535becd1751bb45f64c597edb4c8c6b3"
  83. }
  84. ],
  85. "licenses": [
  86. {
  87. "expression": "BSD-3-Clause"
  88. }
  89. ],
  90. "purl": "pkg:cargo/alloc-no-stdlib@2.0.4",
  91. "externalReferences": [
  92. {
  93. "type": "documentation",
  94. "url": "https://raw.githubusercontent.com/dropbox/rust-alloc-no-stdlib/master/tests/lib.rs"
  95. },
  96. {
  97. "type": "website",
  98. "url": "https://github.com/dropbox/rust-alloc-no-stdlib"
  99. },
  100. {
  101. "type": "vcs",
  102. "url": "https://github.com/dropbox/rust-alloc-no-stdlib"
  103. }
  104. ]
  105. },
  106. {
  107. "type": "library",
  108. "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#alloc-stdlib@0.2.2",
  109. "author": "Daniel Reiter Horn <danielrh@dropbox.com>",
  110. "name": "alloc-stdlib",
  111. "version": "0.2.2",
  112. "description": "A dynamic allocator example that may be used with the stdlib",
  113. "scope": "required",
  114. "hashes": [
  115. {
  116. "alg": "SHA-256",
  117. "content": "94fb8275041c72129eb51b7d0322c29b8387a0386127718b096429201a5d6ece"
  118. }
  119. ],
  120. "licenses": [
  121. {
  122. "expression": "BSD-3-Clause"
  123. }
  124. ],
  125. "purl": "pkg:cargo/alloc-stdlib@0.2.2",
  126. "externalReferences": [
  127. {
  128. "type": "documentation",
  129. "url": "https://raw.githubusercontent.com/dropbox/rust-alloc-no-stdlib/master/alloc-stdlib/tests/lib.rs"
  130. },
  131. {
  132. "type": "website",
  133. "url": "https://github.com/dropbox/rust-alloc-no-stdlib"
  134. },
  135. {
  136. "type": "vcs",
  137. "url": "https://github.com/dropbox/rust-alloc-no-stdlib"
  138. }
  139. ]
  140. },
  141. {
  142. "type": "library",
  143. "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#arc-swap@1.9.1",
  144. "author": "Michal 'vorner' Vaner <vorner@vorner.cz>",
  145. "name": "arc-swap",
  146. "version": "1.9.1",
  147. "description": "Atomically swappable Arc",
  148. "scope": "required",
  149. "hashes": [
  150. {
  151. "alg": "SHA-256",
  152. "content": "6a3a1fd6f75306b68087b831f025c712524bcb19aad54e557b1129cfa0a2b207"
  153. }
  154. ],
  155. "licenses": [
  156. {
  157. "expression": "MIT OR Apache-2.0"
  158. }
  159. ],
  160. "purl": "pkg:cargo/arc-swap@1.9.1",
  161. "externalReferences": [
  162. {
  163. "type": "documentation",
  164. "url": "https://docs.rs/arc-swap"
  165. },
  166. {
  167. "type": "vcs",
  168. "url": "https://github.com/vorner/arc-swap"
  169. }
  170. ]
  171. },
  172. {
  173. "type": "library",
  174. "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#async-channel@2.5.0",
  175. "author": "Stjepan Glavina <stjepang@gmail.com>",
  176. "name": "async-channel",
  177. "version": "2.5.0",
  178. "description": "Async multi-producer multi-consumer channel",
  179. "scope": "required",
  180. "hashes": [
  181. {
  182. "alg": "SHA-256",
  183. "content": "924ed96dd52d1b75e9c1a3e6275715fd320f5f9439fb5a4a11fa51f4221158d2"
  184. }
  185. ],
  186. "licenses": [
  187. {
  188. "expression": "Apache-2.0 OR MIT"
  189. }
  190. ],
  191. "purl": "pkg:cargo/async-channel@2.5.0",
  192. "externalReferences": [
  193. {
  194. "type": "vcs",
  195. "url": "https://github.com/smol-rs/async-channel"
  196. }
  197. ]
  198. },
  199. {
  200. "type": "library",
  201. "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#async-compression@0.4.42",
  202. "author": "Wim Looman <wim@nemo157.com>, Allen Bui <fairingrey@gmail.com>",
  203. "name": "async-compression",
  204. "version": "0.4.42",
  205. "description": "Adaptors between compression crates and Rust's modern asynchronous IO types. ",
  206. "scope": "required",
  207. "hashes": [
  208. {
  209. "alg": "SHA-256",
  210. "content": "e79b3f8a79cccc2898f31920fc69f304859b3bd567490f75ebf51ae1c792a9ac"
  211. }
  212. ],
  213. "licenses": [
  214. {
  215. "expression": "MIT OR Apache-2.0"
  216. }
  217. ],
  218. "purl": "pkg:cargo/async-compression@0.4.42",
  219. "externalReferences": [
  220. {
  221. "type": "vcs",
  222. "url": "https://github.com/Nullus157/async-compression"
  223. }
  224. ]
  225. },
  226. {
  227. "type": "library",
  228. "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#async-trait@0.1.89",
  229. "author": "David Tolnay <dtolnay@gmail.com>",
  230. "name": "async-trait",
  231. "version": "0.1.89",
  232. "description": "Type erasure for async trait methods",
  233. "scope": "required",
  234. "hashes": [
  235. {
  236. "alg": "SHA-256",
  237. "content": "9035ad2d096bed7955a320ee7e2230574d28fd3c3a0f186cbea1ff3c7eed5dbb"
  238. }
  239. ],
  240. "licenses": [
  241. {
  242. "expression": "MIT OR Apache-2.0"
  243. }
  244. ],
  245. "purl": "pkg:cargo/async-trait@0.1.89",
  246. "externalReferences": [
  247. {
  248. "type": "documentation",
  249. "url": "https://docs.rs/async-trait"
  250. },
  251. {
  252. "type": "vcs",
  253. "url": "https://github.com/dtolnay/async-trait"
  254. }
  255. ]
  256. },
  257. {
  258. "type": "library",
  259. "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#atomic-waker@1.1.2",
  260. "author": "Stjepan Glavina <stjepang@gmail.com>, Contributors to futures-rs",
  261. "name": "atomic-waker",
  262. "version": "1.1.2",
  263. "description": "A synchronization primitive for task wakeup",
  264. "scope": "required",
  265. "hashes": [
  266. {
  267. "alg": "SHA-256",
  268. "content": "1505bd5d3d116872e7271a6d4e16d81d0c8570876c8de68093a09ac269d8aac0"
  269. }
  270. ],
  271. "licenses": [
  272. {
  273. "expression": "Apache-2.0 OR MIT"
  274. }
  275. ],
  276. "purl": "pkg:cargo/atomic-waker@1.1.2",
  277. "externalReferences": [
  278. {
  279. "type": "vcs",
  280. "url": "https://github.com/smol-rs/atomic-waker"
  281. }
  282. ]
  283. },
  284. {
  285. "type": "library",
  286. "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#autocfg@1.5.1",
  287. "author": "Josh Stone <cuviper@gmail.com>",
  288. "name": "autocfg",
  289. "version": "1.5.1",
  290. "description": "Automatic cfg for Rust compiler features",
  291. "scope": "excluded",
  292. "hashes": [
  293. {
  294. "alg": "SHA-256",
  295. "content": "f2032f911046de80f0a198e0901378627c33f59ea0ac00e363d481118bd70a53"
  296. }
  297. ],
  298. "licenses": [
  299. {
  300. "expression": "Apache-2.0 OR MIT"
  301. }
  302. ],
  303. "purl": "pkg:cargo/autocfg@1.5.1",
  304. "externalReferences": [
  305. {
  306. "type": "documentation",
  307. "url": "https://docs.rs/autocfg/"
  308. },
  309. {
  310. "type": "vcs",
  311. "url": "https://github.com/cuviper/autocfg"
  312. }
  313. ]
  314. },
  315. {
  316. "type": "library",
  317. "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#aws-lc-rs@1.17.0",
  318. "author": "AWS-LibCrypto",
  319. "name": "aws-lc-rs",
  320. "version": "1.17.0",
  321. "description": "aws-lc-rs is a cryptographic library using AWS-LC for its cryptographic operations. This library strives to be API-compatible with the popular Rust library named ring.",
  322. "scope": "required",
  323. "hashes": [
  324. {
  325. "alg": "SHA-256",
  326. "content": "5ec2f1fc3ec205783a5da9a7e6c1509cc69dedf09a1949e412c1e18469326d00"
  327. }
  328. ],
  329. "licenses": [
  330. {
  331. "expression": "ISC AND (Apache-2.0 OR ISC)"
  332. }
  333. ],
  334. "purl": "pkg:cargo/aws-lc-rs@1.17.0",
  335. "externalReferences": [
  336. {
  337. "type": "documentation",
  338. "url": "https://docs.rs/crate/aws-lc-rs"
  339. },
  340. {
  341. "type": "website",
  342. "url": "https://github.com/aws/aws-lc-rs"
  343. },
  344. {
  345. "type": "other",
  346. "url": "aws_lc_rs_1_17_0_sys"
  347. },
  348. {
  349. "type": "vcs",
  350. "url": "https://github.com/aws/aws-lc-rs"
  351. }
  352. ]
  353. },
  354. {
  355. "type": "library",
  356. "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#aws-lc-sys@0.41.0",
  357. "author": "AWS-LC",
  358. "name": "aws-lc-sys",
  359. "version": "0.41.0",
  360. "description": "AWS-LC is a general-purpose cryptographic library maintained by the AWS Cryptography team for AWS and their customers. It іs based on code from the Google BoringSSL project and the OpenSSL project.",
  361. "scope": "required",
  362. "hashes": [
  363. {
  364. "alg": "SHA-256",
  365. "content": "1a2f9779ce85b93ab6170dd940ad0169b5766ff848247aff13bb788b832fe3f4"
  366. }
  367. ],
  368. "licenses": [
  369. {
  370. "expression": "ISC AND (Apache-2.0 OR ISC) AND Apache-2.0 AND MIT AND BSD-3-Clause AND (Apache-2.0 OR ISC OR MIT) AND (Apache-2.0 OR ISC OR MIT-0)"
  371. }
  372. ],
  373. "purl": "pkg:cargo/aws-lc-sys@0.41.0",
  374. "externalReferences": [
  375. {
  376. "type": "other",
  377. "url": "aws_lc_0_41_0"
  378. },
  379. {
  380. "type": "vcs",
  381. "url": "https://github.com/aws/aws-lc-rs"
  382. }
  383. ]
  384. },
  385. {
  386. "type": "library",
  387. "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#backoff@0.4.0",
  388. "author": "Tibor Benke <ihrwein@gmail.com>",
  389. "name": "backoff",
  390. "version": "0.4.0",
  391. "description": "Retry operations with exponential backoff policy. ",
  392. "scope": "required",
  393. "hashes": [
  394. {
  395. "alg": "SHA-256",
  396. "content": "b62ddb9cb1ec0a098ad4bbf9344d0713fa193ae1a80af55febcff2627b6a00c1"
  397. }
  398. ],
  399. "licenses": [
  400. {
  401. "expression": "MIT OR Apache-2.0"
  402. }
  403. ],
  404. "purl": "pkg:cargo/backoff@0.4.0",
  405. "externalReferences": [
  406. {
  407. "type": "documentation",
  408. "url": "https://docs.rs/backoff"
  409. },
  410. {
  411. "type": "website",
  412. "url": "https://github.com/ihrwein/backoff"
  413. },
  414. {
  415. "type": "vcs",
  416. "url": "https://github.com/ihrwein/backoff"
  417. }
  418. ]
  419. },
  420. {
  421. "type": "library",
  422. "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#base64@0.22.1",
  423. "author": "Marshall Pierce <marshall@mpierce.org>",
  424. "name": "base64",
  425. "version": "0.22.1",
  426. "description": "encodes and decodes base64 as bytes or utf8",
  427. "scope": "required",
  428. "hashes": [
  429. {
  430. "alg": "SHA-256",
  431. "content": "72b3254f16251a8381aa12e40e3c4d2f0199f8c6508fbecb9d91f575e0fbb8c6"
  432. }
  433. ],
  434. "licenses": [
  435. {
  436. "expression": "MIT OR Apache-2.0"
  437. }
  438. ],
  439. "purl": "pkg:cargo/base64@0.22.1",
  440. "externalReferences": [
  441. {
  442. "type": "documentation",
  443. "url": "https://docs.rs/base64"
  444. },
  445. {
  446. "type": "vcs",
  447. "url": "https://github.com/marshallpierce/rust-base64"
  448. }
  449. ]
  450. },
  451. {
  452. "type": "library",
  453. "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#bitflags@2.13.0",
  454. "author": "The Rust Project Developers",
  455. "name": "bitflags",
  456. "version": "2.13.0",
  457. "description": "A macro to generate structures which behave like bitflags. ",
  458. "scope": "required",
  459. "hashes": [
  460. {
  461. "alg": "SHA-256",
  462. "content": "b4388bee8683e3d04af747c73422af53102d2bd24d9eadb6cbc100baef4b43f8"
  463. }
  464. ],
  465. "licenses": [
  466. {
  467. "expression": "MIT OR Apache-2.0"
  468. }
  469. ],
  470. "purl": "pkg:cargo/bitflags@2.13.0",
  471. "externalReferences": [
  472. {
  473. "type": "documentation",
  474. "url": "https://docs.rs/bitflags"
  475. },
  476. {
  477. "type": "website",
  478. "url": "https://github.com/bitflags/bitflags"
  479. },
  480. {
  481. "type": "vcs",
  482. "url": "https://github.com/bitflags/bitflags"
  483. }
  484. ]
  485. },
  486. {
  487. "type": "library",
  488. "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#brotli-decompressor@5.0.1",
  489. "author": "Daniel Reiter Horn <danielrh@dropbox.com>, The Brotli Authors",
  490. "name": "brotli-decompressor",
  491. "version": "5.0.1",
  492. "description": "A brotli decompressor that with an interface avoiding the rust stdlib. This makes it suitable for embedded devices and kernels. It is designed with a pluggable allocator so that the standard lib's allocator may be employed. The default build also includes a stdlib allocator and stream interface. Disable this with --features=no-stdlib. Alternatively, --features=unsafe turns off array bounds checks and memory initialization but provides a safe interface for the caller. Without adding the --features=unsafe argument, all included code is safe. For compression in addition to this library, download https://github.com/dropbox/rust-brotli ",
  493. "scope": "required",
  494. "hashes": [
  495. {
  496. "alg": "SHA-256",
  497. "content": "5962523e1b92ce1b5e793d9169b9943eece10d39f62550bc04bb605d75b94924"
  498. }
  499. ],
  500. "licenses": [
  501. {
  502. "expression": "BSD-3-Clause OR MIT"
  503. }
  504. ],
  505. "purl": "pkg:cargo/brotli-decompressor@5.0.1",
  506. "externalReferences": [
  507. {
  508. "type": "documentation",
  509. "url": "https://github.com/dropbox/rust-brotli-decompressor/blob/master/README.md"
  510. },
  511. {
  512. "type": "website",
  513. "url": "https://github.com/dropbox/rust-brotli-decompressor"
  514. },
  515. {
  516. "type": "vcs",
  517. "url": "https://github.com/dropbox/rust-brotli-decompressor"
  518. }
  519. ]
  520. },
  521. {
  522. "type": "library",
  523. "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#brotli@8.0.4",
  524. "author": "Daniel Reiter Horn <danielrh@dropbox.com>, The Brotli Authors",
  525. "name": "brotli",
  526. "version": "8.0.4",
  527. "description": "A brotli compressor and decompressor that with an interface avoiding the rust stdlib. This makes it suitable for embedded devices and kernels. It is designed with a pluggable allocator so that the standard lib's allocator may be employed. The default build also includes a stdlib allocator and stream interface. Disable this with --features=no-stdlib. All included code is safe.",
  528. "scope": "required",
  529. "hashes": [
  530. {
  531. "alg": "SHA-256",
  532. "content": "5cc91aac060a7a1e25823bdccbfb6af1875b88f17c6daac97894eed8207166b3"
  533. }
  534. ],
  535. "licenses": [
  536. {
  537. "expression": "BSD-3-Clause AND MIT"
  538. }
  539. ],
  540. "purl": "pkg:cargo/brotli@8.0.4",
  541. "externalReferences": [
  542. {
  543. "type": "documentation",
  544. "url": "https://docs.rs/brotli/"
  545. },
  546. {
  547. "type": "website",
  548. "url": "https://github.com/dropbox/rust-brotli"
  549. },
  550. {
  551. "type": "vcs",
  552. "url": "https://github.com/dropbox/rust-brotli"
  553. }
  554. ]
  555. },
  556. {
  557. "type": "library",
  558. "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#bytes@1.11.1",
  559. "author": "Carl Lerche <me@carllerche.com>, Sean McArthur <sean@seanmonstar.com>",
  560. "name": "bytes",
  561. "version": "1.11.1",
  562. "description": "Types and traits for working with bytes",
  563. "scope": "required",
  564. "hashes": [
  565. {
  566. "alg": "SHA-256",
  567. "content": "1e748733b7cbc798e1434b6ac524f0c1ff2ab456fe201501e6497c8417a4fc33"
  568. }
  569. ],
  570. "licenses": [
  571. {
  572. "expression": "MIT"
  573. }
  574. ],
  575. "purl": "pkg:cargo/bytes@1.11.1",
  576. "externalReferences": [
  577. {
  578. "type": "vcs",
  579. "url": "https://github.com/tokio-rs/bytes"
  580. }
  581. ]
  582. },
  583. {
  584. "type": "library",
  585. "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#cc@1.2.63",
  586. "author": "Alex Crichton <alex@alexcrichton.com>",
  587. "name": "cc",
  588. "version": "1.2.63",
  589. "description": "A build-time dependency for Cargo build scripts to assist in invoking the native C compiler to compile native C code into a static archive to be linked into Rust code. ",
  590. "scope": "excluded",
  591. "hashes": [
  592. {
  593. "alg": "SHA-256",
  594. "content": "556e016178bb5662a08681bbe0f00f8e17631781a4dfc8c45e466e4b185ec27f"
  595. }
  596. ],
  597. "licenses": [
  598. {
  599. "expression": "MIT OR Apache-2.0"
  600. }
  601. ],
  602. "purl": "pkg:cargo/cc@1.2.63",
  603. "externalReferences": [
  604. {
  605. "type": "documentation",
  606. "url": "https://docs.rs/cc"
  607. },
  608. {
  609. "type": "website",
  610. "url": "https://github.com/rust-lang/cc-rs"
  611. },
  612. {
  613. "type": "vcs",
  614. "url": "https://github.com/rust-lang/cc-rs"
  615. }
  616. ]
  617. },
  618. {
  619. "type": "library",
  620. "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#cfg-if@1.0.4",
  621. "author": "Alex Crichton <alex@alexcrichton.com>",
  622. "name": "cfg-if",
  623. "version": "1.0.4",
  624. "description": "A macro to ergonomically define an item depending on a large number of #[cfg] parameters. Structured like an if-else chain, the first matching branch is the item that gets emitted. ",
  625. "scope": "required",
  626. "hashes": [
  627. {
  628. "alg": "SHA-256",
  629. "content": "9330f8b2ff13f34540b44e946ef35111825727b38d33286ef986142615121801"
  630. }
  631. ],
  632. "licenses": [
  633. {
  634. "expression": "MIT OR Apache-2.0"
  635. }
  636. ],
  637. "purl": "pkg:cargo/cfg-if@1.0.4",
  638. "externalReferences": [
  639. {
  640. "type": "vcs",
  641. "url": "https://github.com/rust-lang/cfg-if"
  642. }
  643. ]
  644. },
  645. {
  646. "type": "library",
  647. "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#cfg_aliases@0.2.1",
  648. "author": "Zicklag <zicklag@katharostech.com>",
  649. "name": "cfg_aliases",
  650. "version": "0.2.1",
  651. "description": "A tiny utility to help save you a lot of effort with long winded `#[cfg()]` checks.",
  652. "scope": "excluded",
  653. "hashes": [
  654. {
  655. "alg": "SHA-256",
  656. "content": "613afe47fcd5fac7ccf1db93babcb082c5994d996f20b8b159f2ad1658eb5724"
  657. }
  658. ],
  659. "licenses": [
  660. {
  661. "expression": "MIT"
  662. }
  663. ],
  664. "purl": "pkg:cargo/cfg_aliases@0.2.1",
  665. "externalReferences": [
  666. {
  667. "type": "documentation",
  668. "url": "https://docs.rs/cfg_aliases"
  669. },
  670. {
  671. "type": "website",
  672. "url": "https://github.com/katharostech/cfg_aliases"
  673. },
  674. {
  675. "type": "vcs",
  676. "url": "https://github.com/katharostech/cfg_aliases"
  677. }
  678. ]
  679. },
  680. {
  681. "type": "library",
  682. "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#chacha20@0.10.0",
  683. "author": "RustCrypto Developers",
  684. "name": "chacha20",
  685. "version": "0.10.0",
  686. "description": "The ChaCha20 stream cipher (RFC 8439) implemented in pure Rust using traits from the RustCrypto `cipher` crate, with optional architecture-specific hardware acceleration (AVX2, SSE2). Additionally provides the ChaCha8, ChaCha12, XChaCha20, XChaCha12 and XChaCha8 stream ciphers, and also optional rand_core-compatible RNGs based on those ciphers. ",
  687. "scope": "required",
  688. "hashes": [
  689. {
  690. "alg": "SHA-256",
  691. "content": "6f8d983286843e49675a4b7a2d174efe136dc93a18d69130dd18198a6c167601"
  692. }
  693. ],
  694. "licenses": [
  695. {
  696. "expression": "MIT OR Apache-2.0"
  697. }
  698. ],
  699. "purl": "pkg:cargo/chacha20@0.10.0",
  700. "externalReferences": [
  701. {
  702. "type": "documentation",
  703. "url": "https://docs.rs/chacha20"
  704. },
  705. {
  706. "type": "vcs",
  707. "url": "https://github.com/RustCrypto/stream-ciphers"
  708. }
  709. ]
  710. },
  711. {
  712. "type": "library",
  713. "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#cmake@0.1.58",
  714. "author": "Alex Crichton <alex@alexcrichton.com>",
  715. "name": "cmake",
  716. "version": "0.1.58",
  717. "description": "A build dependency for running `cmake` to build a native library ",
  718. "scope": "excluded",
  719. "hashes": [
  720. {
  721. "alg": "SHA-256",
  722. "content": "c0f78a02292a74a88ac736019ab962ece0bc380e3f977bf72e376c5d78ff0678"
  723. }
  724. ],
  725. "licenses": [
  726. {
  727. "expression": "MIT OR Apache-2.0"
  728. }
  729. ],
  730. "purl": "pkg:cargo/cmake@0.1.58",
  731. "externalReferences": [
  732. {
  733. "type": "documentation",
  734. "url": "https://docs.rs/cmake"
  735. },
  736. {
  737. "type": "website",
  738. "url": "https://github.com/rust-lang/cmake-rs"
  739. },
  740. {
  741. "type": "vcs",
  742. "url": "https://github.com/rust-lang/cmake-rs"
  743. }
  744. ]
  745. },
  746. {
  747. "type": "library",
  748. "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#compression-codecs@0.4.38",
  749. "author": "Wim Looman <wim@nemo157.com>, Allen Bui <fairingrey@gmail.com>",
  750. "name": "compression-codecs",
  751. "version": "0.4.38",
  752. "description": "Adaptors for various compression algorithms. ",
  753. "scope": "required",
  754. "hashes": [
  755. {
  756. "alg": "SHA-256",
  757. "content": "ce2548391e9c1929c21bf6aa2680af86fe4c1b33e6cea9ac1cfeec0bd11218cf"
  758. }
  759. ],
  760. "licenses": [
  761. {
  762. "expression": "MIT OR Apache-2.0"
  763. }
  764. ],
  765. "purl": "pkg:cargo/compression-codecs@0.4.38",
  766. "externalReferences": [
  767. {
  768. "type": "vcs",
  769. "url": "https://github.com/Nullus157/async-compression"
  770. }
  771. ]
  772. },
  773. {
  774. "type": "library",
  775. "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#compression-core@0.4.32",
  776. "author": "Wim Looman <wim@nemo157.com>, Allen Bui <fairingrey@gmail.com>",
  777. "name": "compression-core",
  778. "version": "0.4.32",
  779. "description": "Abstractions for compression algorithms. ",
  780. "scope": "required",
  781. "hashes": [
  782. {
  783. "alg": "SHA-256",
  784. "content": "cc14f565cf027a105f7a44ccf9e5b424348421a1d8952a8fc9d499d313107789"
  785. }
  786. ],
  787. "licenses": [
  788. {
  789. "expression": "MIT OR Apache-2.0"
  790. }
  791. ],
  792. "purl": "pkg:cargo/compression-core@0.4.32",
  793. "externalReferences": [
  794. {
  795. "type": "vcs",
  796. "url": "https://github.com/Nullus157/async-compression"
  797. }
  798. ]
  799. },
  800. {
  801. "type": "library",
  802. "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#concurrent-queue@2.5.0",
  803. "author": "Stjepan Glavina <stjepang@gmail.com>, Taiki Endo <te316e89@gmail.com>, John Nunley <dev@notgull.net>",
  804. "name": "concurrent-queue",
  805. "version": "2.5.0",
  806. "description": "Concurrent multi-producer multi-consumer queue",
  807. "scope": "required",
  808. "hashes": [
  809. {
  810. "alg": "SHA-256",
  811. "content": "4ca0197aee26d1ae37445ee532fefce43251d24cc7c166799f4d46817f1d3973"
  812. }
  813. ],
  814. "licenses": [
  815. {
  816. "expression": "Apache-2.0 OR MIT"
  817. }
  818. ],
  819. "purl": "pkg:cargo/concurrent-queue@2.5.0",
  820. "externalReferences": [
  821. {
  822. "type": "vcs",
  823. "url": "https://github.com/smol-rs/concurrent-queue"
  824. }
  825. ]
  826. },
  827. {
  828. "type": "library",
  829. "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#cookie@0.18.1",
  830. "author": "Sergio Benitez <sb@sergio.bz>, Alex Crichton <alex@alexcrichton.com>",
  831. "name": "cookie",
  832. "version": "0.18.1",
  833. "description": "HTTP cookie parsing and cookie jar management. Supports signed and private (encrypted, authenticated) jars. ",
  834. "scope": "required",
  835. "hashes": [
  836. {
  837. "alg": "SHA-256",
  838. "content": "4ddef33a339a91ea89fb53151bd0a4689cfce27055c291dfa69945475d22c747"
  839. }
  840. ],
  841. "licenses": [
  842. {
  843. "expression": "MIT OR Apache-2.0"
  844. }
  845. ],
  846. "purl": "pkg:cargo/cookie@0.18.1",
  847. "externalReferences": [
  848. {
  849. "type": "documentation",
  850. "url": "https://docs.rs/cookie"
  851. },
  852. {
  853. "type": "vcs",
  854. "url": "https://github.com/SergioBenitez/cookie-rs"
  855. }
  856. ]
  857. },
  858. {
  859. "type": "library",
  860. "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#cookie_store@0.22.1",
  861. "author": "Patrick Fernie <patrick.fernie@gmail.com>",
  862. "name": "cookie_store",
  863. "version": "0.22.1",
  864. "description": "Implementation of Cookie storage and retrieval",
  865. "scope": "required",
  866. "hashes": [
  867. {
  868. "alg": "SHA-256",
  869. "content": "15b2c103cf610ec6cae3da84a766285b42fd16aad564758459e6ecf128c75206"
  870. }
  871. ],
  872. "licenses": [
  873. {
  874. "expression": "MIT OR Apache-2.0"
  875. }
  876. ],
  877. "purl": "pkg:cargo/cookie_store@0.22.1",
  878. "externalReferences": [
  879. {
  880. "type": "documentation",
  881. "url": "https://docs.rs/cookie_store"
  882. },
  883. {
  884. "type": "vcs",
  885. "url": "https://github.com/pfernie/cookie_store"
  886. }
  887. ]
  888. },
  889. {
  890. "type": "library",
  891. "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#cpufeatures@0.3.0",
  892. "author": "RustCrypto Developers",
  893. "name": "cpufeatures",
  894. "version": "0.3.0",
  895. "description": "Lightweight runtime CPU feature detection for aarch64, loongarch64, and x86/x86_64 targets, with no_std support and support for mobile targets including Android and iOS ",
  896. "scope": "required",
  897. "hashes": [
  898. {
  899. "alg": "SHA-256",
  900. "content": "8b2a41393f66f16b0823bb79094d54ac5fbd34ab292ddafb9a0456ac9f87d201"
  901. }
  902. ],
  903. "licenses": [
  904. {
  905. "expression": "MIT OR Apache-2.0"
  906. }
  907. ],
  908. "purl": "pkg:cargo/cpufeatures@0.3.0",
  909. "externalReferences": [
  910. {
  911. "type": "documentation",
  912. "url": "https://docs.rs/cpufeatures"
  913. },
  914. {
  915. "type": "vcs",
  916. "url": "https://github.com/RustCrypto/utils"
  917. }
  918. ]
  919. },
  920. {
  921. "type": "library",
  922. "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#crc32fast@1.5.0",
  923. "author": "Sam Rijs <srijs@airpost.net>, Alex Crichton <alex@alexcrichton.com>",
  924. "name": "crc32fast",
  925. "version": "1.5.0",
  926. "description": "Fast, SIMD-accelerated CRC32 (IEEE) checksum computation",
  927. "scope": "required",
  928. "hashes": [
  929. {
  930. "alg": "SHA-256",
  931. "content": "9481c1c90cbf2ac953f07c8d4a58aa3945c425b7185c9154d67a65e4230da511"
  932. }
  933. ],
  934. "licenses": [
  935. {
  936. "expression": "MIT OR Apache-2.0"
  937. }
  938. ],
  939. "purl": "pkg:cargo/crc32fast@1.5.0",
  940. "externalReferences": [
  941. {
  942. "type": "vcs",
  943. "url": "https://github.com/srijs/rust-crc32fast"
  944. }
  945. ]
  946. },
  947. {
  948. "type": "library",
  949. "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#critical-section@1.2.0",
  950. "name": "critical-section",
  951. "version": "1.2.0",
  952. "description": "Cross-platform critical section",
  953. "scope": "required",
  954. "hashes": [
  955. {
  956. "alg": "SHA-256",
  957. "content": "790eea4361631c5e7d22598ecd5723ff611904e3344ce8720784c93e3d83d40b"
  958. }
  959. ],
  960. "licenses": [
  961. {
  962. "expression": "MIT OR Apache-2.0"
  963. }
  964. ],
  965. "purl": "pkg:cargo/critical-section@1.2.0",
  966. "externalReferences": [
  967. {
  968. "type": "vcs",
  969. "url": "https://github.com/rust-embedded/critical-section"
  970. }
  971. ]
  972. },
  973. {
  974. "type": "library",
  975. "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#crossbeam-channel@0.5.15",
  976. "name": "crossbeam-channel",
  977. "version": "0.5.15",
  978. "description": "Multi-producer multi-consumer channels for message passing",
  979. "scope": "required",
  980. "hashes": [
  981. {
  982. "alg": "SHA-256",
  983. "content": "82b8f8f868b36967f9606790d1903570de9ceaf870a7bf9fbbd3016d636a2cb2"
  984. }
  985. ],
  986. "licenses": [
  987. {
  988. "expression": "MIT OR Apache-2.0"
  989. }
  990. ],
  991. "purl": "pkg:cargo/crossbeam-channel@0.5.15",
  992. "externalReferences": [
  993. {
  994. "type": "website",
  995. "url": "https://github.com/crossbeam-rs/crossbeam/tree/master/crossbeam-channel"
  996. },
  997. {
  998. "type": "vcs",
  999. "url": "https://github.com/crossbeam-rs/crossbeam"
  1000. }
  1001. ]
  1002. },
  1003. {
  1004. "type": "library",
  1005. "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#crossbeam-epoch@0.9.18",
  1006. "name": "crossbeam-epoch",
  1007. "version": "0.9.18",
  1008. "description": "Epoch-based garbage collection",
  1009. "scope": "required",
  1010. "hashes": [
  1011. {
  1012. "alg": "SHA-256",
  1013. "content": "5b82ac4a3c2ca9c3460964f020e1402edd5753411d7737aa39c3714ad1b5420e"
  1014. }
  1015. ],
  1016. "licenses": [
  1017. {
  1018. "expression": "MIT OR Apache-2.0"
  1019. }
  1020. ],
  1021. "purl": "pkg:cargo/crossbeam-epoch@0.9.18",
  1022. "externalReferences": [
  1023. {
  1024. "type": "website",
  1025. "url": "https://github.com/crossbeam-rs/crossbeam/tree/master/crossbeam-epoch"
  1026. },
  1027. {
  1028. "type": "vcs",
  1029. "url": "https://github.com/crossbeam-rs/crossbeam"
  1030. }
  1031. ]
  1032. },
  1033. {
  1034. "type": "library",
  1035. "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#crossbeam-utils@0.8.21",
  1036. "name": "crossbeam-utils",
  1037. "version": "0.8.21",
  1038. "description": "Utilities for concurrent programming",
  1039. "scope": "required",
  1040. "hashes": [
  1041. {
  1042. "alg": "SHA-256",
  1043. "content": "d0a5c400df2834b80a4c3327b3aad3a4c4cd4de0629063962b03235697506a28"
  1044. }
  1045. ],
  1046. "licenses": [
  1047. {
  1048. "expression": "MIT OR Apache-2.0"
  1049. }
  1050. ],
  1051. "purl": "pkg:cargo/crossbeam-utils@0.8.21",
  1052. "externalReferences": [
  1053. {
  1054. "type": "website",
  1055. "url": "https://github.com/crossbeam-rs/crossbeam/tree/master/crossbeam-utils"
  1056. },
  1057. {
  1058. "type": "vcs",
  1059. "url": "https://github.com/crossbeam-rs/crossbeam"
  1060. }
  1061. ]
  1062. },
  1063. {
  1064. "type": "library",
  1065. "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#data-encoding@2.11.0",
  1066. "author": "Julien Cretin <git@ia0.eu>",
  1067. "name": "data-encoding",
  1068. "version": "2.11.0",
  1069. "description": "Efficient and customizable data-encoding functions like base64, base32, and hex",
  1070. "scope": "required",
  1071. "hashes": [
  1072. {
  1073. "alg": "SHA-256",
  1074. "content": "a4ae5f15dda3c708c0ade84bfee31ccab44a3da4f88015ed22f63732abe300c8"
  1075. }
  1076. ],
  1077. "licenses": [
  1078. {
  1079. "expression": "MIT"
  1080. }
  1081. ],
  1082. "purl": "pkg:cargo/data-encoding@2.11.0",
  1083. "externalReferences": [
  1084. {
  1085. "type": "documentation",
  1086. "url": "https://docs.rs/data-encoding"
  1087. },
  1088. {
  1089. "type": "vcs",
  1090. "url": "https://github.com/ia0/data-encoding"
  1091. }
  1092. ]
  1093. },
  1094. {
  1095. "type": "library",
  1096. "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#deranged@0.5.8",
  1097. "author": "Jacob Pratt <jacob@jhpratt.dev>",
  1098. "name": "deranged",
  1099. "version": "0.5.8",
  1100. "description": "Ranged integers",
  1101. "scope": "required",
  1102. "hashes": [
  1103. {
  1104. "alg": "SHA-256",
  1105. "content": "7cd812cc2bc1d69d4764bd80df88b4317eaef9e773c75226407d9bc0876b211c"
  1106. }
  1107. ],
  1108. "licenses": [
  1109. {
  1110. "expression": "MIT OR Apache-2.0"
  1111. }
  1112. ],
  1113. "purl": "pkg:cargo/deranged@0.5.8",
  1114. "externalReferences": [
  1115. {
  1116. "type": "vcs",
  1117. "url": "https://github.com/jhpratt/deranged"
  1118. }
  1119. ]
  1120. },
  1121. {
  1122. "type": "library",
  1123. "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#displaydoc@0.2.6",
  1124. "author": "Jane Lusby <jlusby@yaah.dev>",
  1125. "name": "displaydoc",
  1126. "version": "0.2.6",
  1127. "description": "A derive macro for implementing the display Trait via a doc comment and string interpolation ",
  1128. "scope": "required",
  1129. "hashes": [
  1130. {
  1131. "alg": "SHA-256",
  1132. "content": "1ac70aa55017e108007fbaf5aa0f54b021c98f92ff8af59d42eda9da96e3dd4f"
  1133. }
  1134. ],
  1135. "licenses": [
  1136. {
  1137. "expression": "MIT OR Apache-2.0"
  1138. }
  1139. ],
  1140. "purl": "pkg:cargo/displaydoc@0.2.6",
  1141. "externalReferences": [
  1142. {
  1143. "type": "documentation",
  1144. "url": "https://docs.rs/displaydoc"
  1145. },
  1146. {
  1147. "type": "website",
  1148. "url": "https://github.com/yaahc/displaydoc"
  1149. },
  1150. {
  1151. "type": "vcs",
  1152. "url": "https://github.com/yaahc/displaydoc"
  1153. }
  1154. ]
  1155. },
  1156. {
  1157. "type": "library",
  1158. "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#document-features@0.2.12",
  1159. "author": "Slint Developers <info@slint.dev>",
  1160. "name": "document-features",
  1161. "version": "0.2.12",
  1162. "description": "Extract documentation for the feature flags from comments in Cargo.toml",
  1163. "scope": "required",
  1164. "hashes": [
  1165. {
  1166. "alg": "SHA-256",
  1167. "content": "d4b8a88685455ed29a21542a33abd9cb6510b6b129abadabdcef0f4c55bc8f61"
  1168. }
  1169. ],
  1170. "licenses": [
  1171. {
  1172. "expression": "MIT OR Apache-2.0"
  1173. }
  1174. ],
  1175. "purl": "pkg:cargo/document-features@0.2.12",
  1176. "externalReferences": [
  1177. {
  1178. "type": "website",
  1179. "url": "https://slint.rs"
  1180. },
  1181. {
  1182. "type": "vcs",
  1183. "url": "https://github.com/slint-ui/document-features"
  1184. }
  1185. ]
  1186. },
  1187. {
  1188. "type": "library",
  1189. "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#dunce@1.0.5",
  1190. "author": "Kornel <kornel@geekhood.net>",
  1191. "name": "dunce",
  1192. "version": "1.0.5",
  1193. "description": "Normalize Windows paths to the most compatible format, avoiding UNC where possible",
  1194. "scope": "excluded",
  1195. "hashes": [
  1196. {
  1197. "alg": "SHA-256",
  1198. "content": "92773504d58c093f6de2459af4af33faa518c13451eb8f2b5698ed3d36e7c813"
  1199. }
  1200. ],
  1201. "licenses": [
  1202. {
  1203. "expression": "CC0-1.0 OR MIT-0 OR Apache-2.0"
  1204. }
  1205. ],
  1206. "purl": "pkg:cargo/dunce@1.0.5",
  1207. "externalReferences": [
  1208. {
  1209. "type": "documentation",
  1210. "url": "https://docs.rs/dunce"
  1211. },
  1212. {
  1213. "type": "website",
  1214. "url": "https://lib.rs/crates/dunce"
  1215. },
  1216. {
  1217. "type": "vcs",
  1218. "url": "https://gitlab.com/kornelski/dunce"
  1219. }
  1220. ]
  1221. },
  1222. {
  1223. "type": "library",
  1224. "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#either@1.16.0",
  1225. "name": "either",
  1226. "version": "1.16.0",
  1227. "description": "The enum `Either` with variants `Left` and `Right` is a general purpose sum type with two cases. ",
  1228. "scope": "required",
  1229. "hashes": [
  1230. {
  1231. "alg": "SHA-256",
  1232. "content": "91622ff5e7162018101f2fea40d6ebf4a78bbe5a49736a2020649edf9693679e"
  1233. }
  1234. ],
  1235. "licenses": [
  1236. {
  1237. "expression": "MIT OR Apache-2.0"
  1238. }
  1239. ],
  1240. "purl": "pkg:cargo/either@1.16.0",
  1241. "externalReferences": [
  1242. {
  1243. "type": "documentation",
  1244. "url": "https://docs.rs/either/1/"
  1245. },
  1246. {
  1247. "type": "vcs",
  1248. "url": "https://github.com/rayon-rs/either"
  1249. }
  1250. ]
  1251. },
  1252. {
  1253. "type": "library",
  1254. "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#encoding_rs@0.8.35",
  1255. "author": "Henri Sivonen <hsivonen@hsivonen.fi>",
  1256. "name": "encoding_rs",
  1257. "version": "0.8.35",
  1258. "description": "A Gecko-oriented implementation of the Encoding Standard",
  1259. "scope": "required",
  1260. "hashes": [
  1261. {
  1262. "alg": "SHA-256",
  1263. "content": "75030f3c4f45dafd7586dd6780965a8c7e8e285a5ecb86713e63a79c5b2766f3"
  1264. }
  1265. ],
  1266. "licenses": [
  1267. {
  1268. "expression": "(Apache-2.0 OR MIT) AND BSD-3-Clause"
  1269. }
  1270. ],
  1271. "purl": "pkg:cargo/encoding_rs@0.8.35",
  1272. "externalReferences": [
  1273. {
  1274. "type": "documentation",
  1275. "url": "https://docs.rs/encoding_rs/"
  1276. },
  1277. {
  1278. "type": "website",
  1279. "url": "https://docs.rs/encoding_rs/"
  1280. },
  1281. {
  1282. "type": "vcs",
  1283. "url": "https://github.com/hsivonen/encoding_rs"
  1284. }
  1285. ]
  1286. },
  1287. {
  1288. "type": "library",
  1289. "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#equivalent@1.0.2",
  1290. "name": "equivalent",
  1291. "version": "1.0.2",
  1292. "description": "Traits for key comparison in maps.",
  1293. "scope": "required",
  1294. "hashes": [
  1295. {
  1296. "alg": "SHA-256",
  1297. "content": "877a4ace8713b0bcf2a4e7eec82529c029f1d0619886d18145fea96c3ffe5c0f"
  1298. }
  1299. ],
  1300. "licenses": [
  1301. {
  1302. "expression": "Apache-2.0 OR MIT"
  1303. }
  1304. ],
  1305. "purl": "pkg:cargo/equivalent@1.0.2",
  1306. "externalReferences": [
  1307. {
  1308. "type": "vcs",
  1309. "url": "https://github.com/indexmap-rs/equivalent"
  1310. }
  1311. ]
  1312. },
  1313. {
  1314. "type": "library",
  1315. "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#errors@0.1.0",
  1316. "author": "Sean McArthur <sean@seanmonstar.com>",
  1317. "name": "errors",
  1318. "version": "0.1.0",
  1319. "description": "std::error::Error utilities",
  1320. "scope": "required",
  1321. "hashes": [
  1322. {
  1323. "alg": "SHA-256",
  1324. "content": "f8d4e67af827b736a7f90b55da24181f4d504c302a352918b65c36e6b0fdcc89"
  1325. }
  1326. ],
  1327. "licenses": [
  1328. {
  1329. "expression": "MIT"
  1330. }
  1331. ],
  1332. "purl": "pkg:cargo/errors@0.1.0",
  1333. "externalReferences": [
  1334. {
  1335. "type": "documentation",
  1336. "url": "https://docs.rs/errors"
  1337. },
  1338. {
  1339. "type": "vcs",
  1340. "url": "https://github.com/seanmonstar/errors"
  1341. }
  1342. ]
  1343. },
  1344. {
  1345. "type": "library",
  1346. "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#event-listener-strategy@0.5.4",
  1347. "author": "John Nunley <dev@notgull.net>",
  1348. "name": "event-listener-strategy",
  1349. "version": "0.5.4",
  1350. "description": "Block or poll on event_listener easily",
  1351. "scope": "required",
  1352. "hashes": [
  1353. {
  1354. "alg": "SHA-256",
  1355. "content": "8be9f3dfaaffdae2972880079a491a1a8bb7cbed0b8dd7a347f668b4150a3b93"
  1356. }
  1357. ],
  1358. "licenses": [
  1359. {
  1360. "expression": "Apache-2.0 OR MIT"
  1361. }
  1362. ],
  1363. "purl": "pkg:cargo/event-listener-strategy@0.5.4",
  1364. "externalReferences": [
  1365. {
  1366. "type": "vcs",
  1367. "url": "https://github.com/smol-rs/event-listener-strategy"
  1368. }
  1369. ]
  1370. },
  1371. {
  1372. "type": "library",
  1373. "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#event-listener@5.4.1",
  1374. "author": "Stjepan Glavina <stjepang@gmail.com>, John Nunley <dev@notgull.net>",
  1375. "name": "event-listener",
  1376. "version": "5.4.1",
  1377. "description": "Notify async tasks or threads",
  1378. "scope": "required",
  1379. "hashes": [
  1380. {
  1381. "alg": "SHA-256",
  1382. "content": "e13b66accf52311f30a0db42147dadea9850cb48cd070028831ae5f5d4b856ab"
  1383. }
  1384. ],
  1385. "licenses": [
  1386. {
  1387. "expression": "Apache-2.0 OR MIT"
  1388. }
  1389. ],
  1390. "purl": "pkg:cargo/event-listener@5.4.1",
  1391. "externalReferences": [
  1392. {
  1393. "type": "vcs",
  1394. "url": "https://github.com/smol-rs/event-listener"
  1395. }
  1396. ]
  1397. },
  1398. {
  1399. "type": "library",
  1400. "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#fastrand@2.4.1",
  1401. "author": "Stjepan Glavina <stjepang@gmail.com>",
  1402. "name": "fastrand",
  1403. "version": "2.4.1",
  1404. "description": "A simple and fast random number generator",
  1405. "scope": "required",
  1406. "hashes": [
  1407. {
  1408. "alg": "SHA-256",
  1409. "content": "9f1f227452a390804cdb637b74a86990f2a7d7ba4b7d5693aac9b4dd6defd8d6"
  1410. }
  1411. ],
  1412. "licenses": [
  1413. {
  1414. "expression": "Apache-2.0 OR MIT"
  1415. }
  1416. ],
  1417. "purl": "pkg:cargo/fastrand@2.4.1",
  1418. "externalReferences": [
  1419. {
  1420. "type": "vcs",
  1421. "url": "https://github.com/smol-rs/fastrand"
  1422. }
  1423. ]
  1424. },
  1425. {
  1426. "type": "library",
  1427. "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#find-msvc-tools@0.1.9",
  1428. "name": "find-msvc-tools",
  1429. "version": "0.1.9",
  1430. "description": "Find windows-specific tools, read MSVC versions from the registry and from COM interfaces",
  1431. "scope": "excluded",
  1432. "hashes": [
  1433. {
  1434. "alg": "SHA-256",
  1435. "content": "5baebc0774151f905a1a2cc41989300b1e6fbb29aff0ceffa1064fdd3088d582"
  1436. }
  1437. ],
  1438. "licenses": [
  1439. {
  1440. "expression": "MIT OR Apache-2.0"
  1441. }
  1442. ],
  1443. "purl": "pkg:cargo/find-msvc-tools@0.1.9",
  1444. "externalReferences": [
  1445. {
  1446. "type": "documentation",
  1447. "url": "https://docs.rs/find-msvc-tools"
  1448. },
  1449. {
  1450. "type": "vcs",
  1451. "url": "https://github.com/rust-lang/cc-rs"
  1452. }
  1453. ]
  1454. },
  1455. {
  1456. "type": "library",
  1457. "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#flate2@1.1.9",
  1458. "author": "Alex Crichton <alex@alexcrichton.com>, Josh Triplett <josh@joshtriplett.org>",
  1459. "name": "flate2",
  1460. "version": "1.1.9",
  1461. "description": "DEFLATE compression and decompression exposed as Read/BufRead/Write streams. Supports miniz_oxide and multiple zlib implementations. Supports zlib, gzip, and raw deflate streams. ",
  1462. "scope": "required",
  1463. "hashes": [
  1464. {
  1465. "alg": "SHA-256",
  1466. "content": "843fba2746e448b37e26a819579957415c8cef339bf08564fe8b7ddbd959573c"
  1467. }
  1468. ],
  1469. "licenses": [
  1470. {
  1471. "expression": "MIT OR Apache-2.0"
  1472. }
  1473. ],
  1474. "purl": "pkg:cargo/flate2@1.1.9",
  1475. "externalReferences": [
  1476. {
  1477. "type": "documentation",
  1478. "url": "https://docs.rs/flate2"
  1479. },
  1480. {
  1481. "type": "website",
  1482. "url": "https://github.com/rust-lang/flate2-rs"
  1483. },
  1484. {
  1485. "type": "vcs",
  1486. "url": "https://github.com/rust-lang/flate2-rs"
  1487. }
  1488. ]
  1489. },
  1490. {
  1491. "type": "library",
  1492. "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#fnv@1.0.7",
  1493. "author": "Alex Crichton <alex@alexcrichton.com>",
  1494. "name": "fnv",
  1495. "version": "1.0.7",
  1496. "description": "Fowler–Noll–Vo hash function",
  1497. "scope": "required",
  1498. "hashes": [
  1499. {
  1500. "alg": "SHA-256",
  1501. "content": "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1"
  1502. }
  1503. ],
  1504. "licenses": [
  1505. {
  1506. "expression": "Apache-2.0 OR MIT"
  1507. }
  1508. ],
  1509. "purl": "pkg:cargo/fnv@1.0.7",
  1510. "externalReferences": [
  1511. {
  1512. "type": "documentation",
  1513. "url": "https://doc.servo.org/fnv/"
  1514. },
  1515. {
  1516. "type": "vcs",
  1517. "url": "https://github.com/servo/rust-fnv"
  1518. }
  1519. ]
  1520. },
  1521. {
  1522. "type": "library",
  1523. "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#form_urlencoded@1.2.2",
  1524. "author": "The rust-url developers",
  1525. "name": "form_urlencoded",
  1526. "version": "1.2.2",
  1527. "description": "Parser and serializer for the application/x-www-form-urlencoded syntax, as used by HTML forms.",
  1528. "scope": "required",
  1529. "hashes": [
  1530. {
  1531. "alg": "SHA-256",
  1532. "content": "cb4cb245038516f5f85277875cdaa4f7d2c9a0fa0468de06ed190163b1581fcf"
  1533. }
  1534. ],
  1535. "licenses": [
  1536. {
  1537. "expression": "MIT OR Apache-2.0"
  1538. }
  1539. ],
  1540. "purl": "pkg:cargo/form_urlencoded@1.2.2",
  1541. "externalReferences": [
  1542. {
  1543. "type": "vcs",
  1544. "url": "https://github.com/servo/rust-url"
  1545. }
  1546. ]
  1547. },
  1548. {
  1549. "type": "library",
  1550. "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#fs_extra@1.3.0",
  1551. "author": "Denis Kurilenko <webdesus@gmail.com>",
  1552. "name": "fs_extra",
  1553. "version": "1.3.0",
  1554. "description": "Expanding std::fs and std::io. Recursively copy folders with information about process and much more.",
  1555. "scope": "excluded",
  1556. "hashes": [
  1557. {
  1558. "alg": "SHA-256",
  1559. "content": "42703706b716c37f96a77aea830392ad231f44c9e9a67872fa5548707e11b11c"
  1560. }
  1561. ],
  1562. "licenses": [
  1563. {
  1564. "expression": "MIT"
  1565. }
  1566. ],
  1567. "purl": "pkg:cargo/fs_extra@1.3.0",
  1568. "externalReferences": [
  1569. {
  1570. "type": "documentation",
  1571. "url": "https://docs.rs/fs_extra"
  1572. },
  1573. {
  1574. "type": "website",
  1575. "url": "https://github.com/webdesus/fs_extra"
  1576. },
  1577. {
  1578. "type": "vcs",
  1579. "url": "https://github.com/webdesus/fs_extra"
  1580. }
  1581. ]
  1582. },
  1583. {
  1584. "type": "library",
  1585. "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#futures-channel@0.3.32",
  1586. "name": "futures-channel",
  1587. "version": "0.3.32",
  1588. "description": "Channels for asynchronous communication using futures-rs. ",
  1589. "scope": "required",
  1590. "hashes": [
  1591. {
  1592. "alg": "SHA-256",
  1593. "content": "07bbe89c50d7a535e539b8c17bc0b49bdb77747034daa8087407d655f3f7cc1d"
  1594. }
  1595. ],
  1596. "licenses": [
  1597. {
  1598. "expression": "MIT OR Apache-2.0"
  1599. }
  1600. ],
  1601. "purl": "pkg:cargo/futures-channel@0.3.32",
  1602. "externalReferences": [
  1603. {
  1604. "type": "website",
  1605. "url": "https://rust-lang.github.io/futures-rs"
  1606. },
  1607. {
  1608. "type": "vcs",
  1609. "url": "https://github.com/rust-lang/futures-rs"
  1610. }
  1611. ]
  1612. },
  1613. {
  1614. "type": "library",
  1615. "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#futures-core@0.3.32",
  1616. "name": "futures-core",
  1617. "version": "0.3.32",
  1618. "description": "The core traits and types in for the `futures` library. ",
  1619. "scope": "required",
  1620. "hashes": [
  1621. {
  1622. "alg": "SHA-256",
  1623. "content": "7e3450815272ef58cec6d564423f6e755e25379b217b0bc688e295ba24df6b1d"
  1624. }
  1625. ],
  1626. "licenses": [
  1627. {
  1628. "expression": "MIT OR Apache-2.0"
  1629. }
  1630. ],
  1631. "purl": "pkg:cargo/futures-core@0.3.32",
  1632. "externalReferences": [
  1633. {
  1634. "type": "website",
  1635. "url": "https://rust-lang.github.io/futures-rs"
  1636. },
  1637. {
  1638. "type": "vcs",
  1639. "url": "https://github.com/rust-lang/futures-rs"
  1640. }
  1641. ]
  1642. },
  1643. {
  1644. "type": "library",
  1645. "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#futures-executor@0.3.32",
  1646. "name": "futures-executor",
  1647. "version": "0.3.32",
  1648. "description": "Executors for asynchronous tasks based on the futures-rs library. ",
  1649. "scope": "required",
  1650. "hashes": [
  1651. {
  1652. "alg": "SHA-256",
  1653. "content": "baf29c38818342a3b26b5b923639e7b1f4a61fc5e76102d4b1981c6dc7a7579d"
  1654. }
  1655. ],
  1656. "licenses": [
  1657. {
  1658. "expression": "MIT OR Apache-2.0"
  1659. }
  1660. ],
  1661. "purl": "pkg:cargo/futures-executor@0.3.32",
  1662. "externalReferences": [
  1663. {
  1664. "type": "website",
  1665. "url": "https://rust-lang.github.io/futures-rs"
  1666. },
  1667. {
  1668. "type": "vcs",
  1669. "url": "https://github.com/rust-lang/futures-rs"
  1670. }
  1671. ]
  1672. },
  1673. {
  1674. "type": "library",
  1675. "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#futures-io@0.3.32",
  1676. "name": "futures-io",
  1677. "version": "0.3.32",
  1678. "description": "The `AsyncRead`, `AsyncWrite`, `AsyncSeek`, and `AsyncBufRead` traits for the futures-rs library. ",
  1679. "scope": "required",
  1680. "hashes": [
  1681. {
  1682. "alg": "SHA-256",
  1683. "content": "cecba35d7ad927e23624b22ad55235f2239cfa44fd10428eecbeba6d6a717718"
  1684. }
  1685. ],
  1686. "licenses": [
  1687. {
  1688. "expression": "MIT OR Apache-2.0"
  1689. }
  1690. ],
  1691. "purl": "pkg:cargo/futures-io@0.3.32",
  1692. "externalReferences": [
  1693. {
  1694. "type": "website",
  1695. "url": "https://rust-lang.github.io/futures-rs"
  1696. },
  1697. {
  1698. "type": "vcs",
  1699. "url": "https://github.com/rust-lang/futures-rs"
  1700. }
  1701. ]
  1702. },
  1703. {
  1704. "type": "library",
  1705. "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#futures-macro@0.3.32",
  1706. "name": "futures-macro",
  1707. "version": "0.3.32",
  1708. "description": "The futures-rs procedural macro implementations. ",
  1709. "scope": "required",
  1710. "hashes": [
  1711. {
  1712. "alg": "SHA-256",
  1713. "content": "e835b70203e41293343137df5c0664546da5745f82ec9b84d40be8336958447b"
  1714. }
  1715. ],
  1716. "licenses": [
  1717. {
  1718. "expression": "MIT OR Apache-2.0"
  1719. }
  1720. ],
  1721. "purl": "pkg:cargo/futures-macro@0.3.32",
  1722. "externalReferences": [
  1723. {
  1724. "type": "website",
  1725. "url": "https://rust-lang.github.io/futures-rs"
  1726. },
  1727. {
  1728. "type": "vcs",
  1729. "url": "https://github.com/rust-lang/futures-rs"
  1730. }
  1731. ]
  1732. },
  1733. {
  1734. "type": "library",
  1735. "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#futures-sink@0.3.32",
  1736. "name": "futures-sink",
  1737. "version": "0.3.32",
  1738. "description": "The asynchronous `Sink` trait for the futures-rs library. ",
  1739. "scope": "required",
  1740. "hashes": [
  1741. {
  1742. "alg": "SHA-256",
  1743. "content": "c39754e157331b013978ec91992bde1ac089843443c49cbc7f46150b0fad0893"
  1744. }
  1745. ],
  1746. "licenses": [
  1747. {
  1748. "expression": "MIT OR Apache-2.0"
  1749. }
  1750. ],
  1751. "purl": "pkg:cargo/futures-sink@0.3.32",
  1752. "externalReferences": [
  1753. {
  1754. "type": "website",
  1755. "url": "https://rust-lang.github.io/futures-rs"
  1756. },
  1757. {
  1758. "type": "vcs",
  1759. "url": "https://github.com/rust-lang/futures-rs"
  1760. }
  1761. ]
  1762. },
  1763. {
  1764. "type": "library",
  1765. "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#futures-task@0.3.32",
  1766. "name": "futures-task",
  1767. "version": "0.3.32",
  1768. "description": "Tools for working with tasks. ",
  1769. "scope": "required",
  1770. "hashes": [
  1771. {
  1772. "alg": "SHA-256",
  1773. "content": "037711b3d59c33004d3856fbdc83b99d4ff37a24768fa1be9ce3538a1cde4393"
  1774. }
  1775. ],
  1776. "licenses": [
  1777. {
  1778. "expression": "MIT OR Apache-2.0"
  1779. }
  1780. ],
  1781. "purl": "pkg:cargo/futures-task@0.3.32",
  1782. "externalReferences": [
  1783. {
  1784. "type": "website",
  1785. "url": "https://rust-lang.github.io/futures-rs"
  1786. },
  1787. {
  1788. "type": "vcs",
  1789. "url": "https://github.com/rust-lang/futures-rs"
  1790. }
  1791. ]
  1792. },
  1793. {
  1794. "type": "library",
  1795. "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#futures-util@0.3.32",
  1796. "name": "futures-util",
  1797. "version": "0.3.32",
  1798. "description": "Common utilities and extension traits for the futures-rs library. ",
  1799. "scope": "required",
  1800. "hashes": [
  1801. {
  1802. "alg": "SHA-256",
  1803. "content": "389ca41296e6190b48053de0321d02a77f32f8a5d2461dd38762c0593805c6d6"
  1804. }
  1805. ],
  1806. "licenses": [
  1807. {
  1808. "expression": "MIT OR Apache-2.0"
  1809. }
  1810. ],
  1811. "purl": "pkg:cargo/futures-util@0.3.32",
  1812. "externalReferences": [
  1813. {
  1814. "type": "website",
  1815. "url": "https://rust-lang.github.io/futures-rs"
  1816. },
  1817. {
  1818. "type": "vcs",
  1819. "url": "https://github.com/rust-lang/futures-rs"
  1820. }
  1821. ]
  1822. },
  1823. {
  1824. "type": "library",
  1825. "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#futures@0.3.32",
  1826. "name": "futures",
  1827. "version": "0.3.32",
  1828. "description": "An implementation of futures and streams featuring zero allocations, composability, and iterator-like interfaces. ",
  1829. "scope": "required",
  1830. "hashes": [
  1831. {
  1832. "alg": "SHA-256",
  1833. "content": "8b147ee9d1f6d097cef9ce628cd2ee62288d963e16fb287bd9286455b241382d"
  1834. }
  1835. ],
  1836. "licenses": [
  1837. {
  1838. "expression": "MIT OR Apache-2.0"
  1839. }
  1840. ],
  1841. "purl": "pkg:cargo/futures@0.3.32",
  1842. "externalReferences": [
  1843. {
  1844. "type": "website",
  1845. "url": "https://rust-lang.github.io/futures-rs"
  1846. },
  1847. {
  1848. "type": "vcs",
  1849. "url": "https://github.com/rust-lang/futures-rs"
  1850. }
  1851. ]
  1852. },
  1853. {
  1854. "type": "library",
  1855. "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#getrandom@0.2.17",
  1856. "author": "The Rand Project Developers",
  1857. "name": "getrandom",
  1858. "version": "0.2.17",
  1859. "description": "A small cross-platform library for retrieving random data from system source",
  1860. "scope": "required",
  1861. "hashes": [
  1862. {
  1863. "alg": "SHA-256",
  1864. "content": "ff2abc00be7fca6ebc474524697ae276ad847ad0a6b3faa4bcb027e9a4614ad0"
  1865. }
  1866. ],
  1867. "licenses": [
  1868. {
  1869. "expression": "MIT OR Apache-2.0"
  1870. }
  1871. ],
  1872. "purl": "pkg:cargo/getrandom@0.2.17",
  1873. "externalReferences": [
  1874. {
  1875. "type": "documentation",
  1876. "url": "https://docs.rs/getrandom"
  1877. },
  1878. {
  1879. "type": "vcs",
  1880. "url": "https://github.com/rust-random/getrandom"
  1881. }
  1882. ]
  1883. },
  1884. {
  1885. "type": "library",
  1886. "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#getrandom@0.3.4",
  1887. "author": "The Rand Project Developers",
  1888. "name": "getrandom",
  1889. "version": "0.3.4",
  1890. "description": "A small cross-platform library for retrieving random data from system source",
  1891. "scope": "required",
  1892. "hashes": [
  1893. {
  1894. "alg": "SHA-256",
  1895. "content": "899def5c37c4fd7b2664648c28120ecec138e4d395b459e5ca34f9cce2dd77fd"
  1896. }
  1897. ],
  1898. "licenses": [
  1899. {
  1900. "expression": "MIT OR Apache-2.0"
  1901. }
  1902. ],
  1903. "purl": "pkg:cargo/getrandom@0.3.4",
  1904. "externalReferences": [
  1905. {
  1906. "type": "documentation",
  1907. "url": "https://docs.rs/getrandom"
  1908. },
  1909. {
  1910. "type": "vcs",
  1911. "url": "https://github.com/rust-random/getrandom"
  1912. }
  1913. ]
  1914. },
  1915. {
  1916. "type": "library",
  1917. "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#getrandom@0.4.2",
  1918. "author": "The Rand Project Developers",
  1919. "name": "getrandom",
  1920. "version": "0.4.2",
  1921. "description": "A small cross-platform library for retrieving random data from system source",
  1922. "scope": "required",
  1923. "hashes": [
  1924. {
  1925. "alg": "SHA-256",
  1926. "content": "0de51e6874e94e7bf76d726fc5d13ba782deca734ff60d5bb2fb2607c7406555"
  1927. }
  1928. ],
  1929. "licenses": [
  1930. {
  1931. "expression": "MIT OR Apache-2.0"
  1932. }
  1933. ],
  1934. "purl": "pkg:cargo/getrandom@0.4.2",
  1935. "externalReferences": [
  1936. {
  1937. "type": "documentation",
  1938. "url": "https://docs.rs/getrandom"
  1939. },
  1940. {
  1941. "type": "vcs",
  1942. "url": "https://github.com/rust-random/getrandom"
  1943. }
  1944. ]
  1945. },
  1946. {
  1947. "type": "library",
  1948. "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#h2@0.4.14",
  1949. "author": "Carl Lerche <me@carllerche.com>, Sean McArthur <sean@seanmonstar.com>",
  1950. "name": "h2",
  1951. "version": "0.4.14",
  1952. "description": "An HTTP/2 client and server",
  1953. "scope": "required",
  1954. "hashes": [
  1955. {
  1956. "alg": "SHA-256",
  1957. "content": "171fefbc92fe4a4de27e0698d6a5b392d6a0e333506bc49133760b3bcf948733"
  1958. }
  1959. ],
  1960. "licenses": [
  1961. {
  1962. "expression": "MIT"
  1963. }
  1964. ],
  1965. "purl": "pkg:cargo/h2@0.4.14",
  1966. "externalReferences": [
  1967. {
  1968. "type": "documentation",
  1969. "url": "https://docs.rs/h2"
  1970. },
  1971. {
  1972. "type": "vcs",
  1973. "url": "https://github.com/hyperium/h2"
  1974. }
  1975. ]
  1976. },
  1977. {
  1978. "type": "library",
  1979. "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#h3-quinn@0.0.10",
  1980. "author": "Jean-Christophe BEGUE <jc.begue@pm.me>",
  1981. "name": "h3-quinn",
  1982. "version": "0.0.10",
  1983. "description": "QUIC transport implementation based on Quinn.",
  1984. "scope": "required",
  1985. "hashes": [
  1986. {
  1987. "alg": "SHA-256",
  1988. "content": "8b2e732c8d91a74731663ac8479ab505042fbf547b9a207213ab7fbcbfc4f8b4"
  1989. }
  1990. ],
  1991. "licenses": [
  1992. {
  1993. "expression": "MIT"
  1994. }
  1995. ],
  1996. "purl": "pkg:cargo/h3-quinn@0.0.10",
  1997. "externalReferences": [
  1998. {
  1999. "type": "documentation",
  2000. "url": "https://docs.rs/h3-quinn"
  2001. },
  2002. {
  2003. "type": "vcs",
  2004. "url": "https://github.com/hyperium/h3"
  2005. }
  2006. ]
  2007. },
  2008. {
  2009. "type": "library",
  2010. "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#h3@0.0.8",
  2011. "author": "Sean McArthur <sean@seanmonstar.com>, Jean-Christophe BEGUE <jc.begue@pm.me>",
  2012. "name": "h3",
  2013. "version": "0.0.8",
  2014. "description": "An async HTTP/3 implementation.",
  2015. "scope": "required",
  2016. "hashes": [
  2017. {
  2018. "alg": "SHA-256",
  2019. "content": "10872b55cfb02a821b69dc7cf8dc6a71d6af25eb9a79662bec4a9d016056b3be"
  2020. }
  2021. ],
  2022. "licenses": [
  2023. {
  2024. "expression": "MIT"
  2025. }
  2026. ],
  2027. "purl": "pkg:cargo/h3@0.0.8",
  2028. "externalReferences": [
  2029. {
  2030. "type": "documentation",
  2031. "url": "https://docs.rs/h3"
  2032. },
  2033. {
  2034. "type": "vcs",
  2035. "url": "https://github.com/hyperium/h3"
  2036. }
  2037. ]
  2038. },
  2039. {
  2040. "type": "library",
  2041. "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#hashbrown@0.17.1",
  2042. "name": "hashbrown",
  2043. "version": "0.17.1",
  2044. "description": "A Rust port of Google's SwissTable hash map",
  2045. "scope": "required",
  2046. "hashes": [
  2047. {
  2048. "alg": "SHA-256",
  2049. "content": "ed5909b6e89a2db4456e54cd5f673791d7eca6732202bbf2a9cc504fe2f9b84a"
  2050. }
  2051. ],
  2052. "licenses": [
  2053. {
  2054. "expression": "MIT OR Apache-2.0"
  2055. }
  2056. ],
  2057. "purl": "pkg:cargo/hashbrown@0.17.1",
  2058. "externalReferences": [
  2059. {
  2060. "type": "vcs",
  2061. "url": "https://github.com/rust-lang/hashbrown"
  2062. }
  2063. ]
  2064. },
  2065. {
  2066. "type": "library",
  2067. "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#heck@0.5.0",
  2068. "name": "heck",
  2069. "version": "0.5.0",
  2070. "description": "heck is a case conversion library.",
  2071. "scope": "required",
  2072. "hashes": [
  2073. {
  2074. "alg": "SHA-256",
  2075. "content": "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea"
  2076. }
  2077. ],
  2078. "licenses": [
  2079. {
  2080. "expression": "MIT OR Apache-2.0"
  2081. }
  2082. ],
  2083. "purl": "pkg:cargo/heck@0.5.0",
  2084. "externalReferences": [
  2085. {
  2086. "type": "vcs",
  2087. "url": "https://github.com/withoutboats/heck"
  2088. }
  2089. ]
  2090. },
  2091. {
  2092. "type": "library",
  2093. "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#hickory-net@0.26.1",
  2094. "author": "The contributors to Hickory DNS",
  2095. "name": "hickory-net",
  2096. "version": "0.26.1",
  2097. "description": "hickory-net is a safe and secure low-level DNS library. This is the foundational DNS protocol library used by the other higher-level Hickory DNS crates. ",
  2098. "scope": "required",
  2099. "hashes": [
  2100. {
  2101. "alg": "SHA-256",
  2102. "content": "e2295ed2f9c31e471e1428a8f88a3f0e1f4b27c15049592138d1eebe9c35b183"
  2103. }
  2104. ],
  2105. "licenses": [
  2106. {
  2107. "expression": "MIT OR Apache-2.0"
  2108. }
  2109. ],
  2110. "purl": "pkg:cargo/hickory-net@0.26.1",
  2111. "externalReferences": [
  2112. {
  2113. "type": "documentation",
  2114. "url": "https://docs.rs/hickory-net"
  2115. },
  2116. {
  2117. "type": "website",
  2118. "url": "https://hickory-dns.org/"
  2119. },
  2120. {
  2121. "type": "vcs",
  2122. "url": "https://github.com/hickory-dns/hickory-dns"
  2123. }
  2124. ]
  2125. },
  2126. {
  2127. "type": "library",
  2128. "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#hickory-proto@0.26.1",
  2129. "author": "The contributors to Hickory DNS",
  2130. "name": "hickory-proto",
  2131. "version": "0.26.1",
  2132. "description": "hickory-proto is a safe and secure low-level DNS library. This is the foundational DNS protocol library used by the other higher-level Hickory DNS crates. ",
  2133. "scope": "required",
  2134. "hashes": [
  2135. {
  2136. "alg": "SHA-256",
  2137. "content": "0bab31817bfb44672a252e97fe81cd0c18d1b2cf892108922f6818820df8c643"
  2138. }
  2139. ],
  2140. "licenses": [
  2141. {
  2142. "expression": "MIT OR Apache-2.0"
  2143. }
  2144. ],
  2145. "purl": "pkg:cargo/hickory-proto@0.26.1",
  2146. "externalReferences": [
  2147. {
  2148. "type": "documentation",
  2149. "url": "https://docs.rs/hickory-proto"
  2150. },
  2151. {
  2152. "type": "website",
  2153. "url": "https://hickory-dns.org/"
  2154. },
  2155. {
  2156. "type": "vcs",
  2157. "url": "https://github.com/hickory-dns/hickory-dns"
  2158. }
  2159. ]
  2160. },
  2161. {
  2162. "type": "library",
  2163. "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#hickory-resolver@0.26.1",
  2164. "author": "The contributors to Hickory DNS",
  2165. "name": "hickory-resolver",
  2166. "version": "0.26.1",
  2167. "description": "hickory-resolver is a safe and secure DNS stub resolver library intended to be a high-level library for DNS record resolution. ",
  2168. "scope": "required",
  2169. "hashes": [
  2170. {
  2171. "alg": "SHA-256",
  2172. "content": "f0d58d28879ceecde6607729660c2667a081ccdc082e082675042793960f178c"
  2173. }
  2174. ],
  2175. "licenses": [
  2176. {
  2177. "expression": "MIT OR Apache-2.0"
  2178. }
  2179. ],
  2180. "purl": "pkg:cargo/hickory-resolver@0.26.1",
  2181. "externalReferences": [
  2182. {
  2183. "type": "documentation",
  2184. "url": "https://docs.rs/hickory-resolver"
  2185. },
  2186. {
  2187. "type": "website",
  2188. "url": "https://hickory-dns.org/"
  2189. },
  2190. {
  2191. "type": "vcs",
  2192. "url": "https://github.com/hickory-dns/hickory-dns"
  2193. }
  2194. ]
  2195. },
  2196. {
  2197. "type": "library",
  2198. "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#http-body-util@0.1.3",
  2199. "author": "Carl Lerche <me@carllerche.com>, Lucio Franco <luciofranco14@gmail.com>, Sean McArthur <sean@seanmonstar.com>",
  2200. "name": "http-body-util",
  2201. "version": "0.1.3",
  2202. "description": "Combinators and adapters for HTTP request or response bodies. ",
  2203. "scope": "required",
  2204. "hashes": [
  2205. {
  2206. "alg": "SHA-256",
  2207. "content": "b021d93e26becf5dc7e1b75b1bed1fd93124b374ceb73f43d4d4eafec896a64a"
  2208. }
  2209. ],
  2210. "licenses": [
  2211. {
  2212. "expression": "MIT"
  2213. }
  2214. ],
  2215. "purl": "pkg:cargo/http-body-util@0.1.3",
  2216. "externalReferences": [
  2217. {
  2218. "type": "documentation",
  2219. "url": "https://docs.rs/http-body-util"
  2220. },
  2221. {
  2222. "type": "vcs",
  2223. "url": "https://github.com/hyperium/http-body"
  2224. }
  2225. ]
  2226. },
  2227. {
  2228. "type": "library",
  2229. "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#http-body@1.0.1",
  2230. "author": "Carl Lerche <me@carllerche.com>, Lucio Franco <luciofranco14@gmail.com>, Sean McArthur <sean@seanmonstar.com>",
  2231. "name": "http-body",
  2232. "version": "1.0.1",
  2233. "description": "Trait representing an asynchronous, streaming, HTTP request or response body. ",
  2234. "scope": "required",
  2235. "hashes": [
  2236. {
  2237. "alg": "SHA-256",
  2238. "content": "1efedce1fb8e6913f23e0c92de8e62cd5b772a67e7b3946df930a62566c93184"
  2239. }
  2240. ],
  2241. "licenses": [
  2242. {
  2243. "expression": "MIT"
  2244. }
  2245. ],
  2246. "purl": "pkg:cargo/http-body@1.0.1",
  2247. "externalReferences": [
  2248. {
  2249. "type": "documentation",
  2250. "url": "https://docs.rs/http-body"
  2251. },
  2252. {
  2253. "type": "vcs",
  2254. "url": "https://github.com/hyperium/http-body"
  2255. }
  2256. ]
  2257. },
  2258. {
  2259. "type": "library",
  2260. "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#http@1.4.2",
  2261. "author": "Alex Crichton <alex@alexcrichton.com>, Carl Lerche <me@carllerche.com>, Sean McArthur <sean@seanmonstar.com>",
  2262. "name": "http",
  2263. "version": "1.4.2",
  2264. "description": "A set of types for representing HTTP requests and responses. ",
  2265. "scope": "required",
  2266. "hashes": [
  2267. {
  2268. "alg": "SHA-256",
  2269. "content": "6970f50e31d6fc17d3fa27329444bfa74e196cf62e95052a3f6fee181dba6425"
  2270. }
  2271. ],
  2272. "licenses": [
  2273. {
  2274. "expression": "MIT OR Apache-2.0"
  2275. }
  2276. ],
  2277. "purl": "pkg:cargo/http@1.4.2",
  2278. "externalReferences": [
  2279. {
  2280. "type": "documentation",
  2281. "url": "https://docs.rs/http"
  2282. },
  2283. {
  2284. "type": "vcs",
  2285. "url": "https://github.com/hyperium/http"
  2286. }
  2287. ]
  2288. },
  2289. {
  2290. "type": "library",
  2291. "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#httparse@1.10.1",
  2292. "author": "Sean McArthur <sean@seanmonstar.com>",
  2293. "name": "httparse",
  2294. "version": "1.10.1",
  2295. "description": "A tiny, safe, speedy, zero-copy HTTP/1.x parser.",
  2296. "scope": "required",
  2297. "hashes": [
  2298. {
  2299. "alg": "SHA-256",
  2300. "content": "6dbf3de79e51f3d586ab4cb9d5c3e2c14aa28ed23d180cf89b4df0454a69cc87"
  2301. }
  2302. ],
  2303. "licenses": [
  2304. {
  2305. "expression": "MIT OR Apache-2.0"
  2306. }
  2307. ],
  2308. "purl": "pkg:cargo/httparse@1.10.1",
  2309. "externalReferences": [
  2310. {
  2311. "type": "documentation",
  2312. "url": "https://docs.rs/httparse"
  2313. },
  2314. {
  2315. "type": "vcs",
  2316. "url": "https://github.com/seanmonstar/httparse"
  2317. }
  2318. ]
  2319. },
  2320. {
  2321. "type": "library",
  2322. "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#hyper-rustls@0.27.9",
  2323. "name": "hyper-rustls",
  2324. "version": "0.27.9",
  2325. "description": "Rustls+hyper integration for pure rust HTTPS",
  2326. "scope": "required",
  2327. "hashes": [
  2328. {
  2329. "alg": "SHA-256",
  2330. "content": "33ca68d021ef39cf6463ab54c1d0f5daf03377b70561305bb89a8f83aab66e0f"
  2331. }
  2332. ],
  2333. "licenses": [
  2334. {
  2335. "expression": "Apache-2.0 OR ISC OR MIT"
  2336. }
  2337. ],
  2338. "purl": "pkg:cargo/hyper-rustls@0.27.9",
  2339. "externalReferences": [
  2340. {
  2341. "type": "documentation",
  2342. "url": "https://docs.rs/hyper-rustls/"
  2343. },
  2344. {
  2345. "type": "website",
  2346. "url": "https://github.com/rustls/hyper-rustls"
  2347. },
  2348. {
  2349. "type": "vcs",
  2350. "url": "https://github.com/rustls/hyper-rustls"
  2351. }
  2352. ]
  2353. },
  2354. {
  2355. "type": "library",
  2356. "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#hyper-util@0.1.20",
  2357. "author": "Sean McArthur <sean@seanmonstar.com>",
  2358. "name": "hyper-util",
  2359. "version": "0.1.20",
  2360. "description": "hyper utilities",
  2361. "scope": "required",
  2362. "hashes": [
  2363. {
  2364. "alg": "SHA-256",
  2365. "content": "96547c2556ec9d12fb1578c4eaf448b04993e7fb79cbaad930a656880a6bdfa0"
  2366. }
  2367. ],
  2368. "licenses": [
  2369. {
  2370. "expression": "MIT"
  2371. }
  2372. ],
  2373. "purl": "pkg:cargo/hyper-util@0.1.20",
  2374. "externalReferences": [
  2375. {
  2376. "type": "documentation",
  2377. "url": "https://docs.rs/hyper-util"
  2378. },
  2379. {
  2380. "type": "website",
  2381. "url": "https://hyper.rs"
  2382. },
  2383. {
  2384. "type": "vcs",
  2385. "url": "https://github.com/hyperium/hyper-util"
  2386. }
  2387. ]
  2388. },
  2389. {
  2390. "type": "library",
  2391. "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#hyper@1.10.1",
  2392. "author": "Sean McArthur <sean@seanmonstar.com>",
  2393. "name": "hyper",
  2394. "version": "1.10.1",
  2395. "description": "A protective and efficient HTTP library for all.",
  2396. "scope": "required",
  2397. "hashes": [
  2398. {
  2399. "alg": "SHA-256",
  2400. "content": "55281c53a1894c864990125767da440a4e630446785086f52523b20033b74498"
  2401. }
  2402. ],
  2403. "licenses": [
  2404. {
  2405. "expression": "MIT"
  2406. }
  2407. ],
  2408. "purl": "pkg:cargo/hyper@1.10.1",
  2409. "externalReferences": [
  2410. {
  2411. "type": "documentation",
  2412. "url": "https://docs.rs/hyper"
  2413. },
  2414. {
  2415. "type": "website",
  2416. "url": "https://hyper.rs"
  2417. },
  2418. {
  2419. "type": "vcs",
  2420. "url": "https://github.com/hyperium/hyper"
  2421. }
  2422. ]
  2423. },
  2424. {
  2425. "type": "library",
  2426. "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#icu_collections@2.2.0",
  2427. "author": "The ICU4X Project Developers",
  2428. "name": "icu_collections",
  2429. "version": "2.2.0",
  2430. "description": "Collection of API for use in ICU libraries.",
  2431. "scope": "required",
  2432. "hashes": [
  2433. {
  2434. "alg": "SHA-256",
  2435. "content": "2984d1cd16c883d7935b9e07e44071dca8d917fd52ecc02c04d5fa0b5a3f191c"
  2436. }
  2437. ],
  2438. "licenses": [
  2439. {
  2440. "expression": "Unicode-3.0"
  2441. }
  2442. ],
  2443. "purl": "pkg:cargo/icu_collections@2.2.0",
  2444. "externalReferences": [
  2445. {
  2446. "type": "website",
  2447. "url": "https://icu4x.unicode.org"
  2448. },
  2449. {
  2450. "type": "vcs",
  2451. "url": "https://github.com/unicode-org/icu4x"
  2452. }
  2453. ]
  2454. },
  2455. {
  2456. "type": "library",
  2457. "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#icu_locale_core@2.2.0",
  2458. "author": "The ICU4X Project Developers",
  2459. "name": "icu_locale_core",
  2460. "version": "2.2.0",
  2461. "description": "API for managing Unicode Language and Locale Identifiers",
  2462. "scope": "required",
  2463. "hashes": [
  2464. {
  2465. "alg": "SHA-256",
  2466. "content": "92219b62b3e2b4d88ac5119f8904c10f8f61bf7e95b640d25ba3075e6cac2c29"
  2467. }
  2468. ],
  2469. "licenses": [
  2470. {
  2471. "expression": "Unicode-3.0"
  2472. }
  2473. ],
  2474. "purl": "pkg:cargo/icu_locale_core@2.2.0",
  2475. "externalReferences": [
  2476. {
  2477. "type": "website",
  2478. "url": "https://icu4x.unicode.org"
  2479. },
  2480. {
  2481. "type": "vcs",
  2482. "url": "https://github.com/unicode-org/icu4x"
  2483. }
  2484. ]
  2485. },
  2486. {
  2487. "type": "library",
  2488. "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#icu_normalizer@2.2.0",
  2489. "author": "The ICU4X Project Developers",
  2490. "name": "icu_normalizer",
  2491. "version": "2.2.0",
  2492. "description": "API for normalizing text into Unicode Normalization Forms",
  2493. "scope": "required",
  2494. "hashes": [
  2495. {
  2496. "alg": "SHA-256",
  2497. "content": "c56e5ee99d6e3d33bd91c5d85458b6005a22140021cc324cea84dd0e72cff3b4"
  2498. }
  2499. ],
  2500. "licenses": [
  2501. {
  2502. "expression": "Unicode-3.0"
  2503. }
  2504. ],
  2505. "purl": "pkg:cargo/icu_normalizer@2.2.0",
  2506. "externalReferences": [
  2507. {
  2508. "type": "website",
  2509. "url": "https://icu4x.unicode.org"
  2510. },
  2511. {
  2512. "type": "vcs",
  2513. "url": "https://github.com/unicode-org/icu4x"
  2514. }
  2515. ]
  2516. },
  2517. {
  2518. "type": "library",
  2519. "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#icu_normalizer_data@2.2.0",
  2520. "author": "The ICU4X Project Developers",
  2521. "name": "icu_normalizer_data",
  2522. "version": "2.2.0",
  2523. "description": "Data for the icu_normalizer crate",
  2524. "scope": "required",
  2525. "hashes": [
  2526. {
  2527. "alg": "SHA-256",
  2528. "content": "da3be0ae77ea334f4da67c12f149704f19f81d1adf7c51cf482943e84a2bad38"
  2529. }
  2530. ],
  2531. "licenses": [
  2532. {
  2533. "expression": "Unicode-3.0"
  2534. }
  2535. ],
  2536. "purl": "pkg:cargo/icu_normalizer_data@2.2.0",
  2537. "externalReferences": [
  2538. {
  2539. "type": "website",
  2540. "url": "https://icu4x.unicode.org"
  2541. },
  2542. {
  2543. "type": "vcs",
  2544. "url": "https://github.com/unicode-org/icu4x"
  2545. }
  2546. ]
  2547. },
  2548. {
  2549. "type": "library",
  2550. "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#icu_properties@2.2.0",
  2551. "author": "The ICU4X Project Developers",
  2552. "name": "icu_properties",
  2553. "version": "2.2.0",
  2554. "description": "Definitions for Unicode properties",
  2555. "scope": "required",
  2556. "hashes": [
  2557. {
  2558. "alg": "SHA-256",
  2559. "content": "bee3b67d0ea5c2cca5003417989af8996f8604e34fb9ddf96208a033901e70de"
  2560. }
  2561. ],
  2562. "licenses": [
  2563. {
  2564. "expression": "Unicode-3.0"
  2565. }
  2566. ],
  2567. "purl": "pkg:cargo/icu_properties@2.2.0",
  2568. "externalReferences": [
  2569. {
  2570. "type": "website",
  2571. "url": "https://icu4x.unicode.org"
  2572. },
  2573. {
  2574. "type": "vcs",
  2575. "url": "https://github.com/unicode-org/icu4x"
  2576. }
  2577. ]
  2578. },
  2579. {
  2580. "type": "library",
  2581. "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#icu_properties_data@2.2.0",
  2582. "author": "The ICU4X Project Developers",
  2583. "name": "icu_properties_data",
  2584. "version": "2.2.0",
  2585. "description": "Data for the icu_properties crate",
  2586. "scope": "required",
  2587. "hashes": [
  2588. {
  2589. "alg": "SHA-256",
  2590. "content": "8e2bbb201e0c04f7b4b3e14382af113e17ba4f63e2c9d2ee626b720cbce54a14"
  2591. }
  2592. ],
  2593. "licenses": [
  2594. {
  2595. "expression": "Unicode-3.0"
  2596. }
  2597. ],
  2598. "purl": "pkg:cargo/icu_properties_data@2.2.0",
  2599. "externalReferences": [
  2600. {
  2601. "type": "website",
  2602. "url": "https://icu4x.unicode.org"
  2603. },
  2604. {
  2605. "type": "vcs",
  2606. "url": "https://github.com/unicode-org/icu4x"
  2607. }
  2608. ]
  2609. },
  2610. {
  2611. "type": "library",
  2612. "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#icu_provider@2.2.0",
  2613. "author": "The ICU4X Project Developers",
  2614. "name": "icu_provider",
  2615. "version": "2.2.0",
  2616. "description": "Trait and struct definitions for the ICU data provider",
  2617. "scope": "required",
  2618. "hashes": [
  2619. {
  2620. "alg": "SHA-256",
  2621. "content": "139c4cf31c8b5f33d7e199446eff9c1e02decfc2f0eec2c8d71f65befa45b421"
  2622. }
  2623. ],
  2624. "licenses": [
  2625. {
  2626. "expression": "Unicode-3.0"
  2627. }
  2628. ],
  2629. "purl": "pkg:cargo/icu_provider@2.2.0",
  2630. "externalReferences": [
  2631. {
  2632. "type": "website",
  2633. "url": "https://icu4x.unicode.org"
  2634. },
  2635. {
  2636. "type": "vcs",
  2637. "url": "https://github.com/unicode-org/icu4x"
  2638. }
  2639. ]
  2640. },
  2641. {
  2642. "type": "library",
  2643. "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#idna@1.1.0",
  2644. "author": "The rust-url developers",
  2645. "name": "idna",
  2646. "version": "1.1.0",
  2647. "description": "IDNA (Internationalizing Domain Names in Applications) and Punycode.",
  2648. "scope": "required",
  2649. "hashes": [
  2650. {
  2651. "alg": "SHA-256",
  2652. "content": "3b0875f23caa03898994f6ddc501886a45c7d3d62d04d2d90788d47be1b1e4de"
  2653. }
  2654. ],
  2655. "licenses": [
  2656. {
  2657. "expression": "MIT OR Apache-2.0"
  2658. }
  2659. ],
  2660. "purl": "pkg:cargo/idna@1.1.0",
  2661. "externalReferences": [
  2662. {
  2663. "type": "vcs",
  2664. "url": "https://github.com/servo/rust-url/"
  2665. }
  2666. ]
  2667. },
  2668. {
  2669. "type": "library",
  2670. "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#idna_adapter@1.2.2",
  2671. "author": "The rust-url developers",
  2672. "name": "idna_adapter",
  2673. "version": "1.2.2",
  2674. "description": "Back end adapter for idna",
  2675. "scope": "required",
  2676. "hashes": [
  2677. {
  2678. "alg": "SHA-256",
  2679. "content": "cb68373c0d6620ef8105e855e7745e18b0d00d3bdb07fb532e434244cdb9a714"
  2680. }
  2681. ],
  2682. "licenses": [
  2683. {
  2684. "expression": "Apache-2.0 OR MIT"
  2685. }
  2686. ],
  2687. "purl": "pkg:cargo/idna_adapter@1.2.2",
  2688. "externalReferences": [
  2689. {
  2690. "type": "documentation",
  2691. "url": "https://docs.rs/idna_adapter/latest/idna_adapter/"
  2692. },
  2693. {
  2694. "type": "website",
  2695. "url": "https://docs.rs/crate/idna_adapter/latest"
  2696. },
  2697. {
  2698. "type": "vcs",
  2699. "url": "https://github.com/hsivonen/idna_adapter"
  2700. }
  2701. ]
  2702. },
  2703. {
  2704. "type": "library",
  2705. "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#indexmap@2.14.0",
  2706. "name": "indexmap",
  2707. "version": "2.14.0",
  2708. "description": "A hash table with consistent order and fast iteration.",
  2709. "scope": "required",
  2710. "hashes": [
  2711. {
  2712. "alg": "SHA-256",
  2713. "content": "d466e9454f08e4a911e14806c24e16fba1b4c121d1ea474396f396069cf949d9"
  2714. }
  2715. ],
  2716. "licenses": [
  2717. {
  2718. "expression": "Apache-2.0 OR MIT"
  2719. }
  2720. ],
  2721. "purl": "pkg:cargo/indexmap@2.14.0",
  2722. "externalReferences": [
  2723. {
  2724. "type": "documentation",
  2725. "url": "https://docs.rs/indexmap/"
  2726. },
  2727. {
  2728. "type": "vcs",
  2729. "url": "https://github.com/indexmap-rs/indexmap"
  2730. }
  2731. ]
  2732. },
  2733. {
  2734. "type": "library",
  2735. "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#instant@0.1.13",
  2736. "author": "sebcrozet <developer@crozet.re>",
  2737. "name": "instant",
  2738. "version": "0.1.13",
  2739. "description": "Unmaintained, consider using web-time instead - A partial replacement for std::time::Instant that works on WASM to.",
  2740. "scope": "required",
  2741. "hashes": [
  2742. {
  2743. "alg": "SHA-256",
  2744. "content": "e0242819d153cba4b4b05a5a8f2a7e9bbf97b6055b2a002b395c96b5ff3c0222"
  2745. }
  2746. ],
  2747. "licenses": [
  2748. {
  2749. "expression": "BSD-3-Clause"
  2750. }
  2751. ],
  2752. "purl": "pkg:cargo/instant@0.1.13",
  2753. "externalReferences": [
  2754. {
  2755. "type": "vcs",
  2756. "url": "https://github.com/sebcrozet/instant"
  2757. }
  2758. ]
  2759. },
  2760. {
  2761. "type": "library",
  2762. "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#ipnet@2.12.0",
  2763. "author": "Kris Price <kris@krisprice.nz>",
  2764. "name": "ipnet",
  2765. "version": "2.12.0",
  2766. "description": "Provides types and useful methods for working with IPv4 and IPv6 network addresses, commonly called IP prefixes. The new `IpNet`, `Ipv4Net`, and `Ipv6Net` types build on the existing `IpAddr`, `Ipv4Addr`, and `Ipv6Addr` types already provided in Rust's standard library and align to their design to stay consistent. The module also provides useful traits that extend `Ipv4Addr` and `Ipv6Addr` with methods for `Add`, `Sub`, `BitAnd`, and `BitOr` operations. The module only uses stable feature so it is guaranteed to compile using the stable toolchain.",
  2767. "scope": "required",
  2768. "hashes": [
  2769. {
  2770. "alg": "SHA-256",
  2771. "content": "d98f6fed1fde3f8c21bc40a1abb88dd75e67924f9cffc3ef95607bad8017f8e2"
  2772. }
  2773. ],
  2774. "licenses": [
  2775. {
  2776. "expression": "MIT OR Apache-2.0"
  2777. }
  2778. ],
  2779. "purl": "pkg:cargo/ipnet@2.12.0",
  2780. "externalReferences": [
  2781. {
  2782. "type": "documentation",
  2783. "url": "https://docs.rs/ipnet"
  2784. },
  2785. {
  2786. "type": "vcs",
  2787. "url": "https://github.com/krisprice/ipnet"
  2788. }
  2789. ]
  2790. },
  2791. {
  2792. "type": "library",
  2793. "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#itoa@1.0.18",
  2794. "author": "David Tolnay <dtolnay@gmail.com>",
  2795. "name": "itoa",
  2796. "version": "1.0.18",
  2797. "description": "Fast integer primitive to string conversion",
  2798. "scope": "required",
  2799. "hashes": [
  2800. {
  2801. "alg": "SHA-256",
  2802. "content": "8f42a60cbdf9a97f5d2305f08a87dc4e09308d1276d28c869c684d7777685682"
  2803. }
  2804. ],
  2805. "licenses": [
  2806. {
  2807. "expression": "MIT OR Apache-2.0"
  2808. }
  2809. ],
  2810. "purl": "pkg:cargo/itoa@1.0.18",
  2811. "externalReferences": [
  2812. {
  2813. "type": "documentation",
  2814. "url": "https://docs.rs/itoa"
  2815. },
  2816. {
  2817. "type": "vcs",
  2818. "url": "https://github.com/dtolnay/itoa"
  2819. }
  2820. ]
  2821. },
  2822. {
  2823. "type": "library",
  2824. "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#jobserver@0.1.34",
  2825. "author": "Alex Crichton <alex@alexcrichton.com>",
  2826. "name": "jobserver",
  2827. "version": "0.1.34",
  2828. "description": "An implementation of the GNU Make jobserver for Rust. ",
  2829. "scope": "excluded",
  2830. "hashes": [
  2831. {
  2832. "alg": "SHA-256",
  2833. "content": "9afb3de4395d6b3e67a780b6de64b51c978ecf11cb9a462c66be7d4ca9039d33"
  2834. }
  2835. ],
  2836. "licenses": [
  2837. {
  2838. "expression": "MIT OR Apache-2.0"
  2839. }
  2840. ],
  2841. "purl": "pkg:cargo/jobserver@0.1.34",
  2842. "externalReferences": [
  2843. {
  2844. "type": "documentation",
  2845. "url": "https://docs.rs/jobserver"
  2846. },
  2847. {
  2848. "type": "website",
  2849. "url": "https://github.com/rust-lang/jobserver-rs"
  2850. },
  2851. {
  2852. "type": "vcs",
  2853. "url": "https://github.com/rust-lang/jobserver-rs"
  2854. }
  2855. ]
  2856. },
  2857. {
  2858. "type": "library",
  2859. "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#libc@0.2.186",
  2860. "author": "The Rust Project Developers",
  2861. "name": "libc",
  2862. "version": "0.2.186",
  2863. "description": "Raw FFI bindings to platform libraries like libc.",
  2864. "scope": "required",
  2865. "hashes": [
  2866. {
  2867. "alg": "SHA-256",
  2868. "content": "68ab91017fe16c622486840e4c83c9a37afeff978bd239b5293d61ece587de66"
  2869. }
  2870. ],
  2871. "licenses": [
  2872. {
  2873. "expression": "MIT OR Apache-2.0"
  2874. }
  2875. ],
  2876. "purl": "pkg:cargo/libc@0.2.186",
  2877. "externalReferences": [
  2878. {
  2879. "type": "vcs",
  2880. "url": "https://github.com/rust-lang/libc"
  2881. }
  2882. ]
  2883. },
  2884. {
  2885. "type": "library",
  2886. "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#litemap@0.8.2",
  2887. "author": "The ICU4X Project Developers",
  2888. "name": "litemap",
  2889. "version": "0.8.2",
  2890. "description": "A key-value Map implementation based on a flat, sorted Vec.",
  2891. "scope": "required",
  2892. "hashes": [
  2893. {
  2894. "alg": "SHA-256",
  2895. "content": "92daf443525c4cce67b150400bc2316076100ce0b3686209eb8cf3c31612e6f0"
  2896. }
  2897. ],
  2898. "licenses": [
  2899. {
  2900. "expression": "Unicode-3.0"
  2901. }
  2902. ],
  2903. "purl": "pkg:cargo/litemap@0.8.2",
  2904. "externalReferences": [
  2905. {
  2906. "type": "documentation",
  2907. "url": "https://docs.rs/litemap"
  2908. },
  2909. {
  2910. "type": "vcs",
  2911. "url": "https://github.com/unicode-org/icu4x"
  2912. }
  2913. ]
  2914. },
  2915. {
  2916. "type": "library",
  2917. "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#litrs@1.0.0",
  2918. "author": "Lukas Kalbertodt <lukas.kalbertodt@gmail.com>",
  2919. "name": "litrs",
  2920. "version": "1.0.0",
  2921. "description": "Parse and inspect Rust literals (i.e. tokens in the Rust programming language representing fixed values). Particularly useful for proc macros, but can also be used outside of a proc-macro context. ",
  2922. "scope": "required",
  2923. "hashes": [
  2924. {
  2925. "alg": "SHA-256",
  2926. "content": "11d3d7f243d5c5a8b9bb5d6dd2b1602c0cb0b9db1621bafc7ed66e35ff9fe092"
  2927. }
  2928. ],
  2929. "licenses": [
  2930. {
  2931. "expression": "MIT OR Apache-2.0"
  2932. }
  2933. ],
  2934. "purl": "pkg:cargo/litrs@1.0.0",
  2935. "externalReferences": [
  2936. {
  2937. "type": "documentation",
  2938. "url": "https://docs.rs/litrs"
  2939. },
  2940. {
  2941. "type": "vcs",
  2942. "url": "https://github.com/LukasKalbertodt/litrs"
  2943. }
  2944. ]
  2945. },
  2946. {
  2947. "type": "library",
  2948. "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#lock_api@0.4.14",
  2949. "author": "Amanieu d'Antras <amanieu@gmail.com>",
  2950. "name": "lock_api",
  2951. "version": "0.4.14",
  2952. "description": "Wrappers to create fully-featured Mutex and RwLock types. Compatible with no_std.",
  2953. "scope": "required",
  2954. "hashes": [
  2955. {
  2956. "alg": "SHA-256",
  2957. "content": "224399e74b87b5f3557511d98dff8b14089b3dadafcab6bb93eab67d3aace965"
  2958. }
  2959. ],
  2960. "licenses": [
  2961. {
  2962. "expression": "MIT OR Apache-2.0"
  2963. }
  2964. ],
  2965. "purl": "pkg:cargo/lock_api@0.4.14",
  2966. "externalReferences": [
  2967. {
  2968. "type": "vcs",
  2969. "url": "https://github.com/Amanieu/parking_lot"
  2970. }
  2971. ]
  2972. },
  2973. {
  2974. "type": "library",
  2975. "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#log@0.4.32",
  2976. "author": "The Rust Project Developers",
  2977. "name": "log",
  2978. "version": "0.4.32",
  2979. "description": "A lightweight logging facade for Rust ",
  2980. "scope": "required",
  2981. "hashes": [
  2982. {
  2983. "alg": "SHA-256",
  2984. "content": "953f07c43838f8e6f9758cab68bf5bed85465e7587ebe0b823f1bcd81978ad3a"
  2985. }
  2986. ],
  2987. "licenses": [
  2988. {
  2989. "expression": "MIT OR Apache-2.0"
  2990. }
  2991. ],
  2992. "purl": "pkg:cargo/log@0.4.32",
  2993. "externalReferences": [
  2994. {
  2995. "type": "documentation",
  2996. "url": "https://docs.rs/log"
  2997. },
  2998. {
  2999. "type": "vcs",
  3000. "url": "https://github.com/rust-lang/log"
  3001. }
  3002. ]
  3003. },
  3004. {
  3005. "type": "library",
  3006. "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#lru-slab@0.1.2",
  3007. "author": "Benjamin Saunders <ben.e.saunders@gmail.com>",
  3008. "name": "lru-slab",
  3009. "version": "0.1.2",
  3010. "description": "Pre-allocated storage with constant-time LRU tracking",
  3011. "scope": "required",
  3012. "hashes": [
  3013. {
  3014. "alg": "SHA-256",
  3015. "content": "112b39cec0b298b6c1999fee3e31427f74f676e4cb9879ed1a121b43661a4154"
  3016. }
  3017. ],
  3018. "licenses": [
  3019. {
  3020. "expression": "MIT OR Apache-2.0 OR Zlib"
  3021. }
  3022. ],
  3023. "purl": "pkg:cargo/lru-slab@0.1.2",
  3024. "externalReferences": [
  3025. {
  3026. "type": "vcs",
  3027. "url": "https://github.com/Ralith/lru-slab"
  3028. }
  3029. ]
  3030. },
  3031. {
  3032. "type": "library",
  3033. "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#memchr@2.8.1",
  3034. "author": "Andrew Gallant <jamslam@gmail.com>, bluss",
  3035. "name": "memchr",
  3036. "version": "2.8.1",
  3037. "description": "Provides extremely fast (uses SIMD on x86_64, aarch64 and wasm32) routines for 1, 2 or 3 byte search and single substring search. ",
  3038. "scope": "required",
  3039. "hashes": [
  3040. {
  3041. "alg": "SHA-256",
  3042. "content": "6b947ae49db0d222b1dbc6b113ce7248a3fc3a6ca21b696717bfc000ba4484d8"
  3043. }
  3044. ],
  3045. "licenses": [
  3046. {
  3047. "expression": "Unlicense OR MIT"
  3048. }
  3049. ],
  3050. "purl": "pkg:cargo/memchr@2.8.1",
  3051. "externalReferences": [
  3052. {
  3053. "type": "documentation",
  3054. "url": "https://docs.rs/memchr/"
  3055. },
  3056. {
  3057. "type": "website",
  3058. "url": "https://github.com/BurntSushi/memchr"
  3059. },
  3060. {
  3061. "type": "vcs",
  3062. "url": "https://github.com/BurntSushi/memchr"
  3063. }
  3064. ]
  3065. },
  3066. {
  3067. "type": "library",
  3068. "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#mime@0.3.17",
  3069. "author": "Sean McArthur <sean@seanmonstar.com>",
  3070. "name": "mime",
  3071. "version": "0.3.17",
  3072. "description": "Strongly Typed Mimes",
  3073. "scope": "required",
  3074. "hashes": [
  3075. {
  3076. "alg": "SHA-256",
  3077. "content": "6877bb514081ee2a7ff5ef9de3281f14a4dd4bceac4c09388074a6b5df8a139a"
  3078. }
  3079. ],
  3080. "licenses": [
  3081. {
  3082. "expression": "MIT OR Apache-2.0"
  3083. }
  3084. ],
  3085. "purl": "pkg:cargo/mime@0.3.17",
  3086. "externalReferences": [
  3087. {
  3088. "type": "documentation",
  3089. "url": "https://docs.rs/mime"
  3090. },
  3091. {
  3092. "type": "vcs",
  3093. "url": "https://github.com/hyperium/mime"
  3094. }
  3095. ]
  3096. },
  3097. {
  3098. "type": "library",
  3099. "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#miniz_oxide@0.8.9",
  3100. "author": "Frommi <daniil.liferenko@gmail.com>, oyvindln <oyvindln@users.noreply.github.com>, Rich Geldreich richgel99@gmail.com",
  3101. "name": "miniz_oxide",
  3102. "version": "0.8.9",
  3103. "description": "DEFLATE compression and decompression library rewritten in Rust based on miniz",
  3104. "scope": "required",
  3105. "hashes": [
  3106. {
  3107. "alg": "SHA-256",
  3108. "content": "1fa76a2c86f704bdb222d66965fb3d63269ce38518b83cb0575fca855ebb6316"
  3109. }
  3110. ],
  3111. "licenses": [
  3112. {
  3113. "expression": "MIT OR Zlib OR Apache-2.0"
  3114. }
  3115. ],
  3116. "purl": "pkg:cargo/miniz_oxide@0.8.9",
  3117. "externalReferences": [
  3118. {
  3119. "type": "documentation",
  3120. "url": "https://docs.rs/miniz_oxide"
  3121. },
  3122. {
  3123. "type": "website",
  3124. "url": "https://github.com/Frommi/miniz_oxide/tree/master/miniz_oxide"
  3125. },
  3126. {
  3127. "type": "vcs",
  3128. "url": "https://github.com/Frommi/miniz_oxide/tree/master/miniz_oxide"
  3129. }
  3130. ]
  3131. },
  3132. {
  3133. "type": "library",
  3134. "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#mio@1.2.1",
  3135. "author": "Carl Lerche <me@carllerche.com>, Thomas de Zeeuw <thomasdezeeuw@gmail.com>, Tokio Contributors <team@tokio.rs>",
  3136. "name": "mio",
  3137. "version": "1.2.1",
  3138. "description": "Lightweight non-blocking I/O.",
  3139. "scope": "required",
  3140. "hashes": [
  3141. {
  3142. "alg": "SHA-256",
  3143. "content": "02bd0af71c67b473010cbbc60715ee815645a4dc942899111f494b4b737d6fda"
  3144. }
  3145. ],
  3146. "licenses": [
  3147. {
  3148. "expression": "MIT"
  3149. }
  3150. ],
  3151. "purl": "pkg:cargo/mio@1.2.1",
  3152. "externalReferences": [
  3153. {
  3154. "type": "website",
  3155. "url": "https://github.com/tokio-rs/mio"
  3156. },
  3157. {
  3158. "type": "vcs",
  3159. "url": "https://github.com/tokio-rs/mio"
  3160. }
  3161. ]
  3162. },
  3163. {
  3164. "type": "library",
  3165. "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#moka@0.12.15",
  3166. "name": "moka",
  3167. "version": "0.12.15",
  3168. "description": "A fast and concurrent cache library inspired by Java Caffeine",
  3169. "scope": "required",
  3170. "hashes": [
  3171. {
  3172. "alg": "SHA-256",
  3173. "content": "957228ad12042ee839f93c8f257b62b4c0ab5eaae1d4fa60de53b27c9d7c5046"
  3174. }
  3175. ],
  3176. "licenses": [
  3177. {
  3178. "expression": "(MIT OR Apache-2.0) AND Apache-2.0"
  3179. }
  3180. ],
  3181. "purl": "pkg:cargo/moka@0.12.15",
  3182. "externalReferences": [
  3183. {
  3184. "type": "documentation",
  3185. "url": "https://docs.rs/moka/"
  3186. },
  3187. {
  3188. "type": "vcs",
  3189. "url": "https://github.com/moka-rs/moka"
  3190. }
  3191. ]
  3192. },
  3193. {
  3194. "type": "library",
  3195. "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#num-conv@0.2.2",
  3196. "author": "Jacob Pratt <jacob@jhpratt.dev>",
  3197. "name": "num-conv",
  3198. "version": "0.2.2",
  3199. "description": "`num_conv` is a crate to convert between integer types without using `as` casts. This provides better certainty when refactoring, makes the exact behavior of code more explicit, and allows using turbofish syntax. ",
  3200. "scope": "required",
  3201. "hashes": [
  3202. {
  3203. "alg": "SHA-256",
  3204. "content": "521739c6d2bac4aa25192232afe6841231376b2b26d4d9fae5ecf8ca5772e441"
  3205. }
  3206. ],
  3207. "licenses": [
  3208. {
  3209. "expression": "MIT OR Apache-2.0"
  3210. }
  3211. ],
  3212. "purl": "pkg:cargo/num-conv@0.2.2",
  3213. "externalReferences": [
  3214. {
  3215. "type": "vcs",
  3216. "url": "https://github.com/jhpratt/num-conv"
  3217. }
  3218. ]
  3219. },
  3220. {
  3221. "type": "library",
  3222. "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#num-traits@0.2.19",
  3223. "author": "The Rust Project Developers",
  3224. "name": "num-traits",
  3225. "version": "0.2.19",
  3226. "description": "Numeric traits for generic mathematics",
  3227. "scope": "required",
  3228. "hashes": [
  3229. {
  3230. "alg": "SHA-256",
  3231. "content": "071dfc062690e90b734c0b2273ce72ad0ffa95f0c74596bc250dcfd960262841"
  3232. }
  3233. ],
  3234. "licenses": [
  3235. {
  3236. "expression": "MIT OR Apache-2.0"
  3237. }
  3238. ],
  3239. "purl": "pkg:cargo/num-traits@0.2.19",
  3240. "externalReferences": [
  3241. {
  3242. "type": "documentation",
  3243. "url": "https://docs.rs/num-traits"
  3244. },
  3245. {
  3246. "type": "website",
  3247. "url": "https://github.com/rust-num/num-traits"
  3248. },
  3249. {
  3250. "type": "vcs",
  3251. "url": "https://github.com/rust-num/num-traits"
  3252. }
  3253. ]
  3254. },
  3255. {
  3256. "type": "library",
  3257. "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#once_cell@1.21.4",
  3258. "author": "Aleksey Kladov <aleksey.kladov@gmail.com>",
  3259. "name": "once_cell",
  3260. "version": "1.21.4",
  3261. "description": "Single assignment cells and lazy values.",
  3262. "scope": "required",
  3263. "hashes": [
  3264. {
  3265. "alg": "SHA-256",
  3266. "content": "9f7c3e4beb33f85d45ae3e3a1792185706c8e16d043238c593331cc7cd313b50"
  3267. }
  3268. ],
  3269. "licenses": [
  3270. {
  3271. "expression": "MIT OR Apache-2.0"
  3272. }
  3273. ],
  3274. "purl": "pkg:cargo/once_cell@1.21.4",
  3275. "externalReferences": [
  3276. {
  3277. "type": "documentation",
  3278. "url": "https://docs.rs/once_cell"
  3279. },
  3280. {
  3281. "type": "vcs",
  3282. "url": "https://github.com/matklad/once_cell"
  3283. }
  3284. ]
  3285. },
  3286. {
  3287. "type": "library",
  3288. "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#openssl-probe@0.2.1",
  3289. "author": "Alex Crichton <alex@alexcrichton.com>",
  3290. "name": "openssl-probe",
  3291. "version": "0.2.1",
  3292. "description": "A library for helping to find system-wide trust anchor (\"root\") certificate locations based on paths typically used by `openssl`. ",
  3293. "scope": "required",
  3294. "hashes": [
  3295. {
  3296. "alg": "SHA-256",
  3297. "content": "7c87def4c32ab89d880effc9e097653c8da5d6ef28e6b539d313baaacfbafcbe"
  3298. }
  3299. ],
  3300. "licenses": [
  3301. {
  3302. "expression": "MIT OR Apache-2.0"
  3303. }
  3304. ],
  3305. "purl": "pkg:cargo/openssl-probe@0.2.1",
  3306. "externalReferences": [
  3307. {
  3308. "type": "website",
  3309. "url": "https://github.com/rustls/openssl-probe"
  3310. },
  3311. {
  3312. "type": "vcs",
  3313. "url": "https://github.com/rustls/openssl-probe"
  3314. }
  3315. ]
  3316. },
  3317. {
  3318. "type": "library",
  3319. "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#parking@2.2.1",
  3320. "author": "Stjepan Glavina <stjepang@gmail.com>, The Rust Project Developers",
  3321. "name": "parking",
  3322. "version": "2.2.1",
  3323. "description": "Thread parking and unparking",
  3324. "scope": "required",
  3325. "hashes": [
  3326. {
  3327. "alg": "SHA-256",
  3328. "content": "f38d5652c16fde515bb1ecef450ab0f6a219d619a7274976324d5e377f7dceba"
  3329. }
  3330. ],
  3331. "licenses": [
  3332. {
  3333. "expression": "Apache-2.0 OR MIT"
  3334. }
  3335. ],
  3336. "purl": "pkg:cargo/parking@2.2.1",
  3337. "externalReferences": [
  3338. {
  3339. "type": "documentation",
  3340. "url": "https://docs.rs/parking"
  3341. },
  3342. {
  3343. "type": "website",
  3344. "url": "https://github.com/smol-rs/parking"
  3345. },
  3346. {
  3347. "type": "vcs",
  3348. "url": "https://github.com/smol-rs/parking"
  3349. }
  3350. ]
  3351. },
  3352. {
  3353. "type": "library",
  3354. "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#parking_lot@0.12.5",
  3355. "author": "Amanieu d'Antras <amanieu@gmail.com>",
  3356. "name": "parking_lot",
  3357. "version": "0.12.5",
  3358. "description": "More compact and efficient implementations of the standard synchronization primitives.",
  3359. "scope": "required",
  3360. "hashes": [
  3361. {
  3362. "alg": "SHA-256",
  3363. "content": "93857453250e3077bd71ff98b6a65ea6621a19bb0f559a85248955ac12c45a1a"
  3364. }
  3365. ],
  3366. "licenses": [
  3367. {
  3368. "expression": "MIT OR Apache-2.0"
  3369. }
  3370. ],
  3371. "purl": "pkg:cargo/parking_lot@0.12.5",
  3372. "externalReferences": [
  3373. {
  3374. "type": "vcs",
  3375. "url": "https://github.com/Amanieu/parking_lot"
  3376. }
  3377. ]
  3378. },
  3379. {
  3380. "type": "library",
  3381. "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#parking_lot_core@0.9.12",
  3382. "author": "Amanieu d'Antras <amanieu@gmail.com>",
  3383. "name": "parking_lot_core",
  3384. "version": "0.9.12",
  3385. "description": "An advanced API for creating custom synchronization primitives.",
  3386. "scope": "required",
  3387. "hashes": [
  3388. {
  3389. "alg": "SHA-256",
  3390. "content": "2621685985a2ebf1c516881c026032ac7deafcda1a2c9b7850dc81e3dfcb64c1"
  3391. }
  3392. ],
  3393. "licenses": [
  3394. {
  3395. "expression": "MIT OR Apache-2.0"
  3396. }
  3397. ],
  3398. "purl": "pkg:cargo/parking_lot_core@0.9.12",
  3399. "externalReferences": [
  3400. {
  3401. "type": "vcs",
  3402. "url": "https://github.com/Amanieu/parking_lot"
  3403. }
  3404. ]
  3405. },
  3406. {
  3407. "type": "library",
  3408. "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#percent-encoding@2.3.2",
  3409. "author": "The rust-url developers",
  3410. "name": "percent-encoding",
  3411. "version": "2.3.2",
  3412. "description": "Percent encoding and decoding",
  3413. "scope": "required",
  3414. "hashes": [
  3415. {
  3416. "alg": "SHA-256",
  3417. "content": "9b4f627cb1b25917193a259e49bdad08f671f8d9708acfd5fe0a8c1455d87220"
  3418. }
  3419. ],
  3420. "licenses": [
  3421. {
  3422. "expression": "MIT OR Apache-2.0"
  3423. }
  3424. ],
  3425. "purl": "pkg:cargo/percent-encoding@2.3.2",
  3426. "externalReferences": [
  3427. {
  3428. "type": "vcs",
  3429. "url": "https://github.com/servo/rust-url/"
  3430. }
  3431. ]
  3432. },
  3433. {
  3434. "type": "library",
  3435. "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#pin-project-lite@0.2.17",
  3436. "name": "pin-project-lite",
  3437. "version": "0.2.17",
  3438. "description": "A lightweight version of pin-project written with declarative macros. ",
  3439. "scope": "required",
  3440. "hashes": [
  3441. {
  3442. "alg": "SHA-256",
  3443. "content": "a89322df9ebe1c1578d689c92318e070967d1042b512afbe49518723f4e6d5cd"
  3444. }
  3445. ],
  3446. "licenses": [
  3447. {
  3448. "expression": "Apache-2.0 OR MIT"
  3449. }
  3450. ],
  3451. "purl": "pkg:cargo/pin-project-lite@0.2.17",
  3452. "externalReferences": [
  3453. {
  3454. "type": "vcs",
  3455. "url": "https://github.com/taiki-e/pin-project-lite"
  3456. }
  3457. ]
  3458. },
  3459. {
  3460. "type": "library",
  3461. "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#pkg-config@0.3.33",
  3462. "author": "Alex Crichton <alex@alexcrichton.com>",
  3463. "name": "pkg-config",
  3464. "version": "0.3.33",
  3465. "description": "A library to run the pkg-config system tool at build time in order to be used in Cargo build scripts. ",
  3466. "scope": "excluded",
  3467. "hashes": [
  3468. {
  3469. "alg": "SHA-256",
  3470. "content": "19f132c84eca552bf34cab8ec81f1c1dcc229b811638f9d283dceabe58c5569e"
  3471. }
  3472. ],
  3473. "licenses": [
  3474. {
  3475. "expression": "MIT OR Apache-2.0"
  3476. }
  3477. ],
  3478. "purl": "pkg:cargo/pkg-config@0.3.33",
  3479. "externalReferences": [
  3480. {
  3481. "type": "documentation",
  3482. "url": "https://docs.rs/pkg-config"
  3483. },
  3484. {
  3485. "type": "vcs",
  3486. "url": "https://github.com/rust-lang/pkg-config-rs"
  3487. }
  3488. ]
  3489. },
  3490. {
  3491. "type": "library",
  3492. "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#portable-atomic@1.13.1",
  3493. "name": "portable-atomic",
  3494. "version": "1.13.1",
  3495. "description": "Portable atomic types including support for 128-bit atomics, atomic float, etc. ",
  3496. "scope": "required",
  3497. "hashes": [
  3498. {
  3499. "alg": "SHA-256",
  3500. "content": "c33a9471896f1c69cecef8d20cbe2f7accd12527ce60845ff44c153bb2a21b49"
  3501. }
  3502. ],
  3503. "licenses": [
  3504. {
  3505. "expression": "Apache-2.0 OR MIT"
  3506. }
  3507. ],
  3508. "purl": "pkg:cargo/portable-atomic@1.13.1",
  3509. "externalReferences": [
  3510. {
  3511. "type": "vcs",
  3512. "url": "https://github.com/taiki-e/portable-atomic"
  3513. }
  3514. ]
  3515. },
  3516. {
  3517. "type": "library",
  3518. "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#potential_utf@0.1.5",
  3519. "author": "The ICU4X Project Developers",
  3520. "name": "potential_utf",
  3521. "version": "0.1.5",
  3522. "description": "Unvalidated string and character types",
  3523. "scope": "required",
  3524. "hashes": [
  3525. {
  3526. "alg": "SHA-256",
  3527. "content": "0103b1cef7ec0cf76490e969665504990193874ea05c85ff9bab8b911d0a0564"
  3528. }
  3529. ],
  3530. "licenses": [
  3531. {
  3532. "expression": "Unicode-3.0"
  3533. }
  3534. ],
  3535. "purl": "pkg:cargo/potential_utf@0.1.5",
  3536. "externalReferences": [
  3537. {
  3538. "type": "website",
  3539. "url": "https://icu4x.unicode.org"
  3540. },
  3541. {
  3542. "type": "vcs",
  3543. "url": "https://github.com/unicode-org/icu4x"
  3544. }
  3545. ]
  3546. },
  3547. {
  3548. "type": "library",
  3549. "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#powerfmt@0.2.0",
  3550. "author": "Jacob Pratt <jacob@jhpratt.dev>",
  3551. "name": "powerfmt",
  3552. "version": "0.2.0",
  3553. "description": " `powerfmt` is a library that provides utilities for formatting values. This crate makes it significantly easier to support filling to a minimum width with alignment, avoid heap allocation, and avoid repetitive calculations. ",
  3554. "scope": "required",
  3555. "hashes": [
  3556. {
  3557. "alg": "SHA-256",
  3558. "content": "439ee305def115ba05938db6eb1644ff94165c5ab5e9420d1c1bcedbba909391"
  3559. }
  3560. ],
  3561. "licenses": [
  3562. {
  3563. "expression": "MIT OR Apache-2.0"
  3564. }
  3565. ],
  3566. "purl": "pkg:cargo/powerfmt@0.2.0",
  3567. "externalReferences": [
  3568. {
  3569. "type": "vcs",
  3570. "url": "https://github.com/jhpratt/powerfmt"
  3571. }
  3572. ]
  3573. },
  3574. {
  3575. "type": "library",
  3576. "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#ppv-lite86@0.2.21",
  3577. "author": "The CryptoCorrosion Contributors",
  3578. "name": "ppv-lite86",
  3579. "version": "0.2.21",
  3580. "description": "Cross-platform cryptography-oriented low-level SIMD library.",
  3581. "scope": "required",
  3582. "hashes": [
  3583. {
  3584. "alg": "SHA-256",
  3585. "content": "85eae3c4ed2f50dcfe72643da4befc30deadb458a9b590d720cde2f2b1e97da9"
  3586. }
  3587. ],
  3588. "licenses": [
  3589. {
  3590. "expression": "MIT OR Apache-2.0"
  3591. }
  3592. ],
  3593. "purl": "pkg:cargo/ppv-lite86@0.2.21",
  3594. "externalReferences": [
  3595. {
  3596. "type": "vcs",
  3597. "url": "https://github.com/cryptocorrosion/cryptocorrosion"
  3598. }
  3599. ]
  3600. },
  3601. {
  3602. "type": "library",
  3603. "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#prefix-trie@0.8.4",
  3604. "name": "prefix-trie",
  3605. "version": "0.8.4",
  3606. "description": "Prefix trie (tree) datastructure (both a set and a map) that provides exact and longest-prefix matches.",
  3607. "scope": "required",
  3608. "hashes": [
  3609. {
  3610. "alg": "SHA-256",
  3611. "content": "4cf6e3177f0684016a5c209b00882e15f8bdd3f3bb48f0491df10cd102d0c6e7"
  3612. }
  3613. ],
  3614. "licenses": [
  3615. {
  3616. "expression": "MIT OR Apache-2.0"
  3617. }
  3618. ],
  3619. "purl": "pkg:cargo/prefix-trie@0.8.4",
  3620. "externalReferences": [
  3621. {
  3622. "type": "documentation",
  3623. "url": "https://docs.rs/prefix-trie"
  3624. },
  3625. {
  3626. "type": "website",
  3627. "url": "https://github.com/tiborschneider/prefix-trie"
  3628. },
  3629. {
  3630. "type": "vcs",
  3631. "url": "https://github.com/tiborschneider/prefix-trie"
  3632. }
  3633. ]
  3634. },
  3635. {
  3636. "type": "library",
  3637. "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#proc-macro2@1.0.106",
  3638. "author": "David Tolnay <dtolnay@gmail.com>, Alex Crichton <alex@alexcrichton.com>",
  3639. "name": "proc-macro2",
  3640. "version": "1.0.106",
  3641. "description": "A substitute implementation of the compiler's `proc_macro` API to decouple token-based libraries from the procedural macro use case.",
  3642. "scope": "required",
  3643. "hashes": [
  3644. {
  3645. "alg": "SHA-256",
  3646. "content": "8fd00f0bb2e90d81d1044c2b32617f68fcb9fa3bb7640c23e9c748e53fb30934"
  3647. }
  3648. ],
  3649. "licenses": [
  3650. {
  3651. "expression": "MIT OR Apache-2.0"
  3652. }
  3653. ],
  3654. "purl": "pkg:cargo/proc-macro2@1.0.106",
  3655. "externalReferences": [
  3656. {
  3657. "type": "documentation",
  3658. "url": "https://docs.rs/proc-macro2"
  3659. },
  3660. {
  3661. "type": "vcs",
  3662. "url": "https://github.com/dtolnay/proc-macro2"
  3663. }
  3664. ]
  3665. },
  3666. {
  3667. "type": "library",
  3668. "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#psl-types@2.0.11",
  3669. "author": "rushmorem <rushmore@webenchanter.com>",
  3670. "name": "psl-types",
  3671. "version": "2.0.11",
  3672. "description": "Common types for the public suffix implementation crates",
  3673. "scope": "required",
  3674. "hashes": [
  3675. {
  3676. "alg": "SHA-256",
  3677. "content": "33cb294fe86a74cbcf50d4445b37da762029549ebeea341421c7c70370f86cac"
  3678. }
  3679. ],
  3680. "licenses": [
  3681. {
  3682. "expression": "MIT OR Apache-2.0"
  3683. }
  3684. ],
  3685. "purl": "pkg:cargo/psl-types@2.0.11",
  3686. "externalReferences": [
  3687. {
  3688. "type": "documentation",
  3689. "url": "https://docs.rs/psl-types"
  3690. },
  3691. {
  3692. "type": "vcs",
  3693. "url": "https://github.com/addr-rs/psl-types"
  3694. }
  3695. ]
  3696. },
  3697. {
  3698. "type": "library",
  3699. "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#publicsuffix@2.3.0",
  3700. "author": "rushmorem <rushmore@webenchanter.com>",
  3701. "name": "publicsuffix",
  3702. "version": "2.3.0",
  3703. "description": "Extract root domain and suffix from a domain name",
  3704. "scope": "required",
  3705. "hashes": [
  3706. {
  3707. "alg": "SHA-256",
  3708. "content": "6f42ea446cab60335f76979ec15e12619a2165b5ae2c12166bef27d283a9fadf"
  3709. }
  3710. ],
  3711. "licenses": [
  3712. {
  3713. "expression": "MIT OR Apache-2.0"
  3714. }
  3715. ],
  3716. "purl": "pkg:cargo/publicsuffix@2.3.0",
  3717. "externalReferences": [
  3718. {
  3719. "type": "documentation",
  3720. "url": "https://docs.rs/publicsuffix"
  3721. },
  3722. {
  3723. "type": "vcs",
  3724. "url": "https://github.com/rushmorem/publicsuffix"
  3725. }
  3726. ]
  3727. },
  3728. {
  3729. "type": "library",
  3730. "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#pyo3-async-runtimes@0.29.0",
  3731. "author": "Andrew J Westlake <awestlake87@yahoo.com>, David Hewitt <mail@davidhewitt.dev>",
  3732. "name": "pyo3-async-runtimes",
  3733. "version": "0.29.0",
  3734. "description": "PyO3 bridges from Rust runtimes to Python's Asyncio library",
  3735. "scope": "required",
  3736. "hashes": [
  3737. {
  3738. "alg": "SHA-256",
  3739. "content": "b3ef68daa7316a3fac65e5e18b2203f010346de1c1c53456811a2624673ab046"
  3740. }
  3741. ],
  3742. "licenses": [
  3743. {
  3744. "expression": "Apache-2.0"
  3745. }
  3746. ],
  3747. "purl": "pkg:cargo/pyo3-async-runtimes@0.29.0",
  3748. "externalReferences": [
  3749. {
  3750. "type": "documentation",
  3751. "url": "https://docs.rs/crate/pyo3-async-runtimes/"
  3752. },
  3753. {
  3754. "type": "website",
  3755. "url": "https://github.com/PyO3/pyo3-async-runtimes"
  3756. },
  3757. {
  3758. "type": "vcs",
  3759. "url": "https://github.com/PyO3/pyo3-async-runtimes"
  3760. }
  3761. ]
  3762. },
  3763. {
  3764. "type": "library",
  3765. "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#pyo3-build-config@0.29.0",
  3766. "author": "PyO3 Project and Contributors <https://github.com/PyO3>",
  3767. "name": "pyo3-build-config",
  3768. "version": "0.29.0",
  3769. "description": "Build configuration for the PyO3 ecosystem",
  3770. "scope": "excluded",
  3771. "hashes": [
  3772. {
  3773. "alg": "SHA-256",
  3774. "content": "c5e2a7d2f0d013342f295c048ad19237add5154a55b1c5a254c0ec93d4109078"
  3775. }
  3776. ],
  3777. "licenses": [
  3778. {
  3779. "expression": "MIT OR Apache-2.0"
  3780. }
  3781. ],
  3782. "purl": "pkg:cargo/pyo3-build-config@0.29.0",
  3783. "externalReferences": [
  3784. {
  3785. "type": "website",
  3786. "url": "https://github.com/pyo3/pyo3"
  3787. },
  3788. {
  3789. "type": "vcs",
  3790. "url": "https://github.com/pyo3/pyo3"
  3791. }
  3792. ]
  3793. },
  3794. {
  3795. "type": "library",
  3796. "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#pyo3-ffi@0.29.0",
  3797. "author": "PyO3 Project and Contributors <https://github.com/PyO3>",
  3798. "name": "pyo3-ffi",
  3799. "version": "0.29.0",
  3800. "description": "Python-API bindings for the PyO3 ecosystem",
  3801. "scope": "required",
  3802. "hashes": [
  3803. {
  3804. "alg": "SHA-256",
  3805. "content": "ca85c467da1bbc8d866eea5deff9cf29ea5f7785054a17da36e65bda9c05845b"
  3806. }
  3807. ],
  3808. "licenses": [
  3809. {
  3810. "expression": "MIT OR Apache-2.0"
  3811. }
  3812. ],
  3813. "purl": "pkg:cargo/pyo3-ffi@0.29.0",
  3814. "externalReferences": [
  3815. {
  3816. "type": "website",
  3817. "url": "https://github.com/pyo3/pyo3"
  3818. },
  3819. {
  3820. "type": "other",
  3821. "url": "python"
  3822. },
  3823. {
  3824. "type": "vcs",
  3825. "url": "https://github.com/pyo3/pyo3"
  3826. }
  3827. ]
  3828. },
  3829. {
  3830. "type": "library",
  3831. "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#pyo3-macros-backend@0.29.0",
  3832. "author": "PyO3 Project and Contributors <https://github.com/PyO3>",
  3833. "name": "pyo3-macros-backend",
  3834. "version": "0.29.0",
  3835. "description": "Code generation for PyO3 package",
  3836. "scope": "required",
  3837. "hashes": [
  3838. {
  3839. "alg": "SHA-256",
  3840. "content": "4ca3a1557399783172dc5bf39cfca835157732532cba56b71d2292161e53b362"
  3841. }
  3842. ],
  3843. "licenses": [
  3844. {
  3845. "expression": "MIT OR Apache-2.0"
  3846. }
  3847. ],
  3848. "purl": "pkg:cargo/pyo3-macros-backend@0.29.0",
  3849. "externalReferences": [
  3850. {
  3851. "type": "website",
  3852. "url": "https://github.com/pyo3/pyo3"
  3853. },
  3854. {
  3855. "type": "vcs",
  3856. "url": "https://github.com/pyo3/pyo3"
  3857. }
  3858. ]
  3859. },
  3860. {
  3861. "type": "library",
  3862. "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#pyo3-macros@0.29.0",
  3863. "author": "PyO3 Project and Contributors <https://github.com/PyO3>",
  3864. "name": "pyo3-macros",
  3865. "version": "0.29.0",
  3866. "description": "Proc macros for PyO3 package",
  3867. "scope": "required",
  3868. "hashes": [
  3869. {
  3870. "alg": "SHA-256",
  3871. "content": "9ac53762fd065daa3194dd09337a38bd793a188100fd1a9304c4ab312d901771"
  3872. }
  3873. ],
  3874. "licenses": [
  3875. {
  3876. "expression": "MIT OR Apache-2.0"
  3877. }
  3878. ],
  3879. "purl": "pkg:cargo/pyo3-macros@0.29.0",
  3880. "externalReferences": [
  3881. {
  3882. "type": "website",
  3883. "url": "https://github.com/pyo3/pyo3"
  3884. },
  3885. {
  3886. "type": "vcs",
  3887. "url": "https://github.com/pyo3/pyo3"
  3888. }
  3889. ]
  3890. },
  3891. {
  3892. "type": "library",
  3893. "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#pyo3@0.29.0",
  3894. "author": "PyO3 Project and Contributors <https://github.com/PyO3>",
  3895. "name": "pyo3",
  3896. "version": "0.29.0",
  3897. "description": "Bindings to Python interpreter",
  3898. "scope": "required",
  3899. "hashes": [
  3900. {
  3901. "alg": "SHA-256",
  3902. "content": "cd274650b21d4bfc26a0a47587962c1edb425f69287324355cd040c3ea66071c"
  3903. }
  3904. ],
  3905. "licenses": [
  3906. {
  3907. "expression": "MIT OR Apache-2.0"
  3908. }
  3909. ],
  3910. "purl": "pkg:cargo/pyo3@0.29.0",
  3911. "externalReferences": [
  3912. {
  3913. "type": "documentation",
  3914. "url": "https://docs.rs/crate/pyo3/"
  3915. },
  3916. {
  3917. "type": "website",
  3918. "url": "https://github.com/pyo3/pyo3"
  3919. },
  3920. {
  3921. "type": "other",
  3922. "url": "pyo3-python"
  3923. },
  3924. {
  3925. "type": "vcs",
  3926. "url": "https://github.com/pyo3/pyo3"
  3927. }
  3928. ]
  3929. },
  3930. {
  3931. "type": "library",
  3932. "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#quinn-proto@0.11.14",
  3933. "name": "quinn-proto",
  3934. "version": "0.11.14",
  3935. "description": "State machine for the QUIC transport protocol",
  3936. "scope": "required",
  3937. "hashes": [
  3938. {
  3939. "alg": "SHA-256",
  3940. "content": "434b42fec591c96ef50e21e886936e66d3cc3f737104fdb9b737c40ffb94c098"
  3941. }
  3942. ],
  3943. "licenses": [
  3944. {
  3945. "expression": "MIT OR Apache-2.0"
  3946. }
  3947. ],
  3948. "purl": "pkg:cargo/quinn-proto@0.11.14",
  3949. "externalReferences": [
  3950. {
  3951. "type": "vcs",
  3952. "url": "https://github.com/quinn-rs/quinn"
  3953. }
  3954. ]
  3955. },
  3956. {
  3957. "type": "library",
  3958. "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#quinn-udp@0.5.14",
  3959. "name": "quinn-udp",
  3960. "version": "0.5.14",
  3961. "description": "UDP sockets with ECN information for the QUIC transport protocol",
  3962. "scope": "required",
  3963. "hashes": [
  3964. {
  3965. "alg": "SHA-256",
  3966. "content": "addec6a0dcad8a8d96a771f815f0eaf55f9d1805756410b39f5fa81332574cbd"
  3967. }
  3968. ],
  3969. "licenses": [
  3970. {
  3971. "expression": "MIT OR Apache-2.0"
  3972. }
  3973. ],
  3974. "purl": "pkg:cargo/quinn-udp@0.5.14",
  3975. "externalReferences": [
  3976. {
  3977. "type": "vcs",
  3978. "url": "https://github.com/quinn-rs/quinn"
  3979. }
  3980. ]
  3981. },
  3982. {
  3983. "type": "library",
  3984. "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#quinn@0.11.9",
  3985. "name": "quinn",
  3986. "version": "0.11.9",
  3987. "description": "Versatile QUIC transport protocol implementation",
  3988. "scope": "required",
  3989. "hashes": [
  3990. {
  3991. "alg": "SHA-256",
  3992. "content": "b9e20a958963c291dc322d98411f541009df2ced7b5a4f2bd52337638cfccf20"
  3993. }
  3994. ],
  3995. "licenses": [
  3996. {
  3997. "expression": "MIT OR Apache-2.0"
  3998. }
  3999. ],
  4000. "purl": "pkg:cargo/quinn@0.11.9",
  4001. "externalReferences": [
  4002. {
  4003. "type": "vcs",
  4004. "url": "https://github.com/quinn-rs/quinn"
  4005. }
  4006. ]
  4007. },
  4008. {
  4009. "type": "library",
  4010. "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#quote@1.0.45",
  4011. "author": "David Tolnay <dtolnay@gmail.com>",
  4012. "name": "quote",
  4013. "version": "1.0.45",
  4014. "description": "Quasi-quoting macro quote!(...)",
  4015. "scope": "required",
  4016. "hashes": [
  4017. {
  4018. "alg": "SHA-256",
  4019. "content": "41f2619966050689382d2b44f664f4bc593e129785a36d6ee376ddf37259b924"
  4020. }
  4021. ],
  4022. "licenses": [
  4023. {
  4024. "expression": "MIT OR Apache-2.0"
  4025. }
  4026. ],
  4027. "purl": "pkg:cargo/quote@1.0.45",
  4028. "externalReferences": [
  4029. {
  4030. "type": "documentation",
  4031. "url": "https://docs.rs/quote/"
  4032. },
  4033. {
  4034. "type": "vcs",
  4035. "url": "https://github.com/dtolnay/quote"
  4036. }
  4037. ]
  4038. },
  4039. {
  4040. "type": "library",
  4041. "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#rand@0.10.1",
  4042. "author": "The Rand Project Developers, The Rust Project Developers",
  4043. "name": "rand",
  4044. "version": "0.10.1",
  4045. "description": "Random number generators and other randomness functionality. ",
  4046. "scope": "required",
  4047. "hashes": [
  4048. {
  4049. "alg": "SHA-256",
  4050. "content": "d2e8e8bcc7961af1fdac401278c6a831614941f6164ee3bf4ce61b7edb162207"
  4051. }
  4052. ],
  4053. "licenses": [
  4054. {
  4055. "expression": "MIT OR Apache-2.0"
  4056. }
  4057. ],
  4058. "purl": "pkg:cargo/rand@0.10.1",
  4059. "externalReferences": [
  4060. {
  4061. "type": "documentation",
  4062. "url": "https://docs.rs/rand"
  4063. },
  4064. {
  4065. "type": "website",
  4066. "url": "https://rust-random.github.io/book"
  4067. },
  4068. {
  4069. "type": "vcs",
  4070. "url": "https://github.com/rust-random/rand"
  4071. }
  4072. ]
  4073. },
  4074. {
  4075. "type": "library",
  4076. "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#rand@0.8.6",
  4077. "author": "The Rand Project Developers, The Rust Project Developers",
  4078. "name": "rand",
  4079. "version": "0.8.6",
  4080. "description": "Random number generators and other randomness functionality. ",
  4081. "scope": "required",
  4082. "hashes": [
  4083. {
  4084. "alg": "SHA-256",
  4085. "content": "5ca0ecfa931c29007047d1bc58e623ab12e5590e8c7cc53200d5202b69266d8a"
  4086. }
  4087. ],
  4088. "licenses": [
  4089. {
  4090. "expression": "MIT OR Apache-2.0"
  4091. }
  4092. ],
  4093. "purl": "pkg:cargo/rand@0.8.6",
  4094. "externalReferences": [
  4095. {
  4096. "type": "documentation",
  4097. "url": "https://docs.rs/rand"
  4098. },
  4099. {
  4100. "type": "website",
  4101. "url": "https://rust-random.github.io/book"
  4102. },
  4103. {
  4104. "type": "vcs",
  4105. "url": "https://github.com/rust-random/rand"
  4106. }
  4107. ]
  4108. },
  4109. {
  4110. "type": "library",
  4111. "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#rand@0.9.4",
  4112. "author": "The Rand Project Developers, The Rust Project Developers",
  4113. "name": "rand",
  4114. "version": "0.9.4",
  4115. "description": "Random number generators and other randomness functionality. ",
  4116. "scope": "required",
  4117. "hashes": [
  4118. {
  4119. "alg": "SHA-256",
  4120. "content": "44c5af06bb1b7d3216d91932aed5265164bf384dc89cd6ba05cf59a35f5f76ea"
  4121. }
  4122. ],
  4123. "licenses": [
  4124. {
  4125. "expression": "MIT OR Apache-2.0"
  4126. }
  4127. ],
  4128. "purl": "pkg:cargo/rand@0.9.4",
  4129. "externalReferences": [
  4130. {
  4131. "type": "documentation",
  4132. "url": "https://docs.rs/rand"
  4133. },
  4134. {
  4135. "type": "website",
  4136. "url": "https://rust-random.github.io/book"
  4137. },
  4138. {
  4139. "type": "vcs",
  4140. "url": "https://github.com/rust-random/rand"
  4141. }
  4142. ]
  4143. },
  4144. {
  4145. "type": "library",
  4146. "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#rand_chacha@0.3.1",
  4147. "author": "The Rand Project Developers, The Rust Project Developers, The CryptoCorrosion Contributors",
  4148. "name": "rand_chacha",
  4149. "version": "0.3.1",
  4150. "description": "ChaCha random number generator ",
  4151. "scope": "required",
  4152. "hashes": [
  4153. {
  4154. "alg": "SHA-256",
  4155. "content": "e6c10a63a0fa32252be49d21e7709d4d4baf8d231c2dbce1eaa8141b9b127d88"
  4156. }
  4157. ],
  4158. "licenses": [
  4159. {
  4160. "expression": "MIT OR Apache-2.0"
  4161. }
  4162. ],
  4163. "purl": "pkg:cargo/rand_chacha@0.3.1",
  4164. "externalReferences": [
  4165. {
  4166. "type": "documentation",
  4167. "url": "https://docs.rs/rand_chacha"
  4168. },
  4169. {
  4170. "type": "website",
  4171. "url": "https://rust-random.github.io/book"
  4172. },
  4173. {
  4174. "type": "vcs",
  4175. "url": "https://github.com/rust-random/rand"
  4176. }
  4177. ]
  4178. },
  4179. {
  4180. "type": "library",
  4181. "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#rand_chacha@0.9.0",
  4182. "author": "The Rand Project Developers, The Rust Project Developers, The CryptoCorrosion Contributors",
  4183. "name": "rand_chacha",
  4184. "version": "0.9.0",
  4185. "description": "ChaCha random number generator ",
  4186. "scope": "required",
  4187. "hashes": [
  4188. {
  4189. "alg": "SHA-256",
  4190. "content": "d3022b5f1df60f26e1ffddd6c66e8aa15de382ae63b3a0c1bfc0e4d3e3f325cb"
  4191. }
  4192. ],
  4193. "licenses": [
  4194. {
  4195. "expression": "MIT OR Apache-2.0"
  4196. }
  4197. ],
  4198. "purl": "pkg:cargo/rand_chacha@0.9.0",
  4199. "externalReferences": [
  4200. {
  4201. "type": "documentation",
  4202. "url": "https://docs.rs/rand_chacha"
  4203. },
  4204. {
  4205. "type": "website",
  4206. "url": "https://rust-random.github.io/book"
  4207. },
  4208. {
  4209. "type": "vcs",
  4210. "url": "https://github.com/rust-random/rand"
  4211. }
  4212. ]
  4213. },
  4214. {
  4215. "type": "library",
  4216. "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#rand_core@0.10.1",
  4217. "author": "The Rand Project Developers",
  4218. "name": "rand_core",
  4219. "version": "0.10.1",
  4220. "description": "Core random number generation traits and tools for implementation.",
  4221. "scope": "required",
  4222. "hashes": [
  4223. {
  4224. "alg": "SHA-256",
  4225. "content": "63b8176103e19a2643978565ca18b50549f6101881c443590420e4dc998a3c69"
  4226. }
  4227. ],
  4228. "licenses": [
  4229. {
  4230. "expression": "MIT OR Apache-2.0"
  4231. }
  4232. ],
  4233. "purl": "pkg:cargo/rand_core@0.10.1",
  4234. "externalReferences": [
  4235. {
  4236. "type": "documentation",
  4237. "url": "https://docs.rs/rand_core"
  4238. },
  4239. {
  4240. "type": "website",
  4241. "url": "https://rust-random.github.io/book"
  4242. },
  4243. {
  4244. "type": "vcs",
  4245. "url": "https://github.com/rust-random/rand_core"
  4246. }
  4247. ]
  4248. },
  4249. {
  4250. "type": "library",
  4251. "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#rand_core@0.6.4",
  4252. "author": "The Rand Project Developers, The Rust Project Developers",
  4253. "name": "rand_core",
  4254. "version": "0.6.4",
  4255. "description": "Core random number generator traits and tools for implementation. ",
  4256. "scope": "required",
  4257. "hashes": [
  4258. {
  4259. "alg": "SHA-256",
  4260. "content": "ec0be4795e2f6a28069bec0b5ff3e2ac9bafc99e6a9a7dc3547996c5c816922c"
  4261. }
  4262. ],
  4263. "licenses": [
  4264. {
  4265. "expression": "MIT OR Apache-2.0"
  4266. }
  4267. ],
  4268. "purl": "pkg:cargo/rand_core@0.6.4",
  4269. "externalReferences": [
  4270. {
  4271. "type": "documentation",
  4272. "url": "https://docs.rs/rand_core"
  4273. },
  4274. {
  4275. "type": "website",
  4276. "url": "https://rust-random.github.io/book"
  4277. },
  4278. {
  4279. "type": "vcs",
  4280. "url": "https://github.com/rust-random/rand"
  4281. }
  4282. ]
  4283. },
  4284. {
  4285. "type": "library",
  4286. "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#rand_core@0.9.5",
  4287. "author": "The Rand Project Developers, The Rust Project Developers",
  4288. "name": "rand_core",
  4289. "version": "0.9.5",
  4290. "description": "Core random number generator traits and tools for implementation. ",
  4291. "scope": "required",
  4292. "hashes": [
  4293. {
  4294. "alg": "SHA-256",
  4295. "content": "76afc826de14238e6e8c374ddcc1fa19e374fd8dd986b0d2af0d02377261d83c"
  4296. }
  4297. ],
  4298. "licenses": [
  4299. {
  4300. "expression": "MIT OR Apache-2.0"
  4301. }
  4302. ],
  4303. "purl": "pkg:cargo/rand_core@0.9.5",
  4304. "externalReferences": [
  4305. {
  4306. "type": "documentation",
  4307. "url": "https://docs.rs/rand_core"
  4308. },
  4309. {
  4310. "type": "website",
  4311. "url": "https://rust-random.github.io/book"
  4312. },
  4313. {
  4314. "type": "vcs",
  4315. "url": "https://github.com/rust-random/rand"
  4316. }
  4317. ]
  4318. },
  4319. {
  4320. "type": "library",
  4321. "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#reqwest@0.13.4",
  4322. "author": "Sean McArthur <sean@seanmonstar.com>",
  4323. "name": "reqwest",
  4324. "version": "0.13.4",
  4325. "description": "higher level HTTP client library",
  4326. "scope": "required",
  4327. "hashes": [
  4328. {
  4329. "alg": "SHA-256",
  4330. "content": "219c5811de6525e5416c7d5d53bb656d3afdbc6c5af816e0802bcfa42dbdc1c3"
  4331. }
  4332. ],
  4333. "licenses": [
  4334. {
  4335. "expression": "MIT OR Apache-2.0"
  4336. }
  4337. ],
  4338. "purl": "pkg:cargo/reqwest@0.13.4",
  4339. "externalReferences": [
  4340. {
  4341. "type": "documentation",
  4342. "url": "https://docs.rs/reqwest"
  4343. },
  4344. {
  4345. "type": "vcs",
  4346. "url": "https://github.com/seanmonstar/reqwest"
  4347. }
  4348. ]
  4349. },
  4350. {
  4351. "type": "library",
  4352. "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#resolv-conf@0.7.6",
  4353. "name": "resolv-conf",
  4354. "version": "0.7.6",
  4355. "description": "The resolv.conf file parser",
  4356. "scope": "required",
  4357. "hashes": [
  4358. {
  4359. "alg": "SHA-256",
  4360. "content": "1e061d1b48cb8d38042de4ae0a7a6401009d6143dc80d2e2d6f31f0bdd6470c7"
  4361. }
  4362. ],
  4363. "licenses": [
  4364. {
  4365. "expression": "MIT OR Apache-2.0"
  4366. }
  4367. ],
  4368. "purl": "pkg:cargo/resolv-conf@0.7.6",
  4369. "externalReferences": [
  4370. {
  4371. "type": "documentation",
  4372. "url": "https://docs.rs/resolv-conf/"
  4373. },
  4374. {
  4375. "type": "website",
  4376. "url": "https://github.com/hickory-dns/resolv-conf"
  4377. },
  4378. {
  4379. "type": "vcs",
  4380. "url": "https://github.com/hickory-dns/resolv-conf"
  4381. }
  4382. ]
  4383. },
  4384. {
  4385. "type": "library",
  4386. "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#ring@0.17.14",
  4387. "name": "ring",
  4388. "version": "0.17.14",
  4389. "description": "An experiment.",
  4390. "scope": "required",
  4391. "hashes": [
  4392. {
  4393. "alg": "SHA-256",
  4394. "content": "a4689e6c2294d81e88dc6261c768b63bc4fcdb852be6d1352498b114f61383b7"
  4395. }
  4396. ],
  4397. "licenses": [
  4398. {
  4399. "expression": "Apache-2.0 AND ISC"
  4400. }
  4401. ],
  4402. "purl": "pkg:cargo/ring@0.17.14",
  4403. "externalReferences": [
  4404. {
  4405. "type": "other",
  4406. "url": "ring_core_0_17_14_"
  4407. },
  4408. {
  4409. "type": "vcs",
  4410. "url": "https://github.com/briansmith/ring"
  4411. }
  4412. ]
  4413. },
  4414. {
  4415. "type": "library",
  4416. "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#rustc-hash@2.1.2",
  4417. "author": "The Rust Project Developers",
  4418. "name": "rustc-hash",
  4419. "version": "2.1.2",
  4420. "description": "A speedy, non-cryptographic hashing algorithm used by rustc",
  4421. "scope": "required",
  4422. "hashes": [
  4423. {
  4424. "alg": "SHA-256",
  4425. "content": "94300abf3f1ae2e2b8ffb7b58043de3d399c73fa6f4b73826402a5c457614dbe"
  4426. }
  4427. ],
  4428. "licenses": [
  4429. {
  4430. "expression": "Apache-2.0 OR MIT"
  4431. }
  4432. ],
  4433. "purl": "pkg:cargo/rustc-hash@2.1.2",
  4434. "externalReferences": [
  4435. {
  4436. "type": "vcs",
  4437. "url": "https://github.com/rust-lang/rustc-hash"
  4438. }
  4439. ]
  4440. },
  4441. {
  4442. "type": "library",
  4443. "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#rustls-native-certs@0.8.4",
  4444. "name": "rustls-native-certs",
  4445. "version": "0.8.4",
  4446. "description": "rustls-native-certs allows rustls to use the platform native certificate store",
  4447. "scope": "required",
  4448. "hashes": [
  4449. {
  4450. "alg": "SHA-256",
  4451. "content": "dab5152771c58876a2146916e53e35057e1a4dfa2b9df0f0305b07f611fdea4d"
  4452. }
  4453. ],
  4454. "licenses": [
  4455. {
  4456. "expression": "Apache-2.0 OR ISC OR MIT"
  4457. }
  4458. ],
  4459. "purl": "pkg:cargo/rustls-native-certs@0.8.4",
  4460. "externalReferences": [
  4461. {
  4462. "type": "website",
  4463. "url": "https://github.com/rustls/rustls-native-certs"
  4464. },
  4465. {
  4466. "type": "vcs",
  4467. "url": "https://github.com/rustls/rustls-native-certs"
  4468. }
  4469. ]
  4470. },
  4471. {
  4472. "type": "library",
  4473. "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#rustls-pki-types@1.14.1",
  4474. "name": "rustls-pki-types",
  4475. "version": "1.14.1",
  4476. "description": "Shared types for the rustls PKI ecosystem",
  4477. "scope": "required",
  4478. "hashes": [
  4479. {
  4480. "alg": "SHA-256",
  4481. "content": "30a7197ae7eb376e574fe940d068c30fe0462554a3ddbe4eca7838e049c937a9"
  4482. }
  4483. ],
  4484. "licenses": [
  4485. {
  4486. "expression": "MIT OR Apache-2.0"
  4487. }
  4488. ],
  4489. "purl": "pkg:cargo/rustls-pki-types@1.14.1",
  4490. "externalReferences": [
  4491. {
  4492. "type": "documentation",
  4493. "url": "https://docs.rs/rustls-pki-types"
  4494. },
  4495. {
  4496. "type": "website",
  4497. "url": "https://github.com/rustls/pki-types"
  4498. },
  4499. {
  4500. "type": "vcs",
  4501. "url": "https://github.com/rustls/pki-types"
  4502. }
  4503. ]
  4504. },
  4505. {
  4506. "type": "library",
  4507. "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#rustls-platform-verifier@0.6.2",
  4508. "name": "rustls-platform-verifier",
  4509. "version": "0.6.2",
  4510. "description": "rustls-platform-verifier supports verifying TLS certificates in rustls with the operating system verifier",
  4511. "scope": "required",
  4512. "hashes": [
  4513. {
  4514. "alg": "SHA-256",
  4515. "content": "1d99feebc72bae7ab76ba994bb5e121b8d83d910ca40b36e0921f53becc41784"
  4516. }
  4517. ],
  4518. "licenses": [
  4519. {
  4520. "expression": "MIT OR Apache-2.0"
  4521. }
  4522. ],
  4523. "purl": "pkg:cargo/rustls-platform-verifier@0.6.2",
  4524. "externalReferences": [
  4525. {
  4526. "type": "vcs",
  4527. "url": "https://github.com/rustls/rustls-platform-verifier"
  4528. }
  4529. ]
  4530. },
  4531. {
  4532. "type": "library",
  4533. "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#rustls-webpki@0.103.13",
  4534. "name": "rustls-webpki",
  4535. "version": "0.103.13",
  4536. "description": "Web PKI X.509 Certificate Verification.",
  4537. "scope": "required",
  4538. "hashes": [
  4539. {
  4540. "alg": "SHA-256",
  4541. "content": "61c429a8649f110dddef65e2a5ad240f747e85f7758a6bccc7e5777bd33f756e"
  4542. }
  4543. ],
  4544. "licenses": [
  4545. {
  4546. "expression": "ISC"
  4547. }
  4548. ],
  4549. "purl": "pkg:cargo/rustls-webpki@0.103.13",
  4550. "externalReferences": [
  4551. {
  4552. "type": "vcs",
  4553. "url": "https://github.com/rustls/webpki"
  4554. }
  4555. ]
  4556. },
  4557. {
  4558. "type": "library",
  4559. "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#rustls@0.23.40",
  4560. "name": "rustls",
  4561. "version": "0.23.40",
  4562. "description": "Rustls is a modern TLS library written in Rust.",
  4563. "scope": "required",
  4564. "hashes": [
  4565. {
  4566. "alg": "SHA-256",
  4567. "content": "ef86cd5876211988985292b91c96a8f2d298df24e75989a43a3c73f2d4d8168b"
  4568. }
  4569. ],
  4570. "licenses": [
  4571. {
  4572. "expression": "Apache-2.0 OR ISC OR MIT"
  4573. }
  4574. ],
  4575. "purl": "pkg:cargo/rustls@0.23.40",
  4576. "externalReferences": [
  4577. {
  4578. "type": "website",
  4579. "url": "https://github.com/rustls/rustls"
  4580. },
  4581. {
  4582. "type": "vcs",
  4583. "url": "https://github.com/rustls/rustls"
  4584. }
  4585. ]
  4586. },
  4587. {
  4588. "type": "library",
  4589. "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#rustversion@1.0.22",
  4590. "author": "David Tolnay <dtolnay@gmail.com>",
  4591. "name": "rustversion",
  4592. "version": "1.0.22",
  4593. "description": "Conditional compilation according to rustc compiler version",
  4594. "scope": "required",
  4595. "hashes": [
  4596. {
  4597. "alg": "SHA-256",
  4598. "content": "b39cdef0fa800fc44525c84ccb54a029961a8215f9619753635a9c0d2538d46d"
  4599. }
  4600. ],
  4601. "licenses": [
  4602. {
  4603. "expression": "MIT OR Apache-2.0"
  4604. }
  4605. ],
  4606. "purl": "pkg:cargo/rustversion@1.0.22",
  4607. "externalReferences": [
  4608. {
  4609. "type": "documentation",
  4610. "url": "https://docs.rs/rustversion"
  4611. },
  4612. {
  4613. "type": "vcs",
  4614. "url": "https://github.com/dtolnay/rustversion"
  4615. }
  4616. ]
  4617. },
  4618. {
  4619. "type": "library",
  4620. "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#scopeguard@1.2.0",
  4621. "author": "bluss",
  4622. "name": "scopeguard",
  4623. "version": "1.2.0",
  4624. "description": "A RAII scope guard that will run a given closure when it goes out of scope, even if the code between panics (assuming unwinding panic). Defines the macros `defer!`, `defer_on_unwind!`, `defer_on_success!` as shorthands for guards with one of the implemented strategies. ",
  4625. "scope": "required",
  4626. "hashes": [
  4627. {
  4628. "alg": "SHA-256",
  4629. "content": "94143f37725109f92c262ed2cf5e59bce7498c01bcc1502d7b9afe439a4e9f49"
  4630. }
  4631. ],
  4632. "licenses": [
  4633. {
  4634. "expression": "MIT OR Apache-2.0"
  4635. }
  4636. ],
  4637. "purl": "pkg:cargo/scopeguard@1.2.0",
  4638. "externalReferences": [
  4639. {
  4640. "type": "documentation",
  4641. "url": "https://docs.rs/scopeguard/"
  4642. },
  4643. {
  4644. "type": "vcs",
  4645. "url": "https://github.com/bluss/scopeguard"
  4646. }
  4647. ]
  4648. },
  4649. {
  4650. "type": "library",
  4651. "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#serde@1.0.228",
  4652. "author": "Erick Tryzelaar <erick.tryzelaar@gmail.com>, David Tolnay <dtolnay@gmail.com>",
  4653. "name": "serde",
  4654. "version": "1.0.228",
  4655. "description": "A generic serialization/deserialization framework",
  4656. "scope": "required",
  4657. "hashes": [
  4658. {
  4659. "alg": "SHA-256",
  4660. "content": "9a8e94ea7f378bd32cbbd37198a4a91436180c5bb472411e48b5ec2e2124ae9e"
  4661. }
  4662. ],
  4663. "licenses": [
  4664. {
  4665. "expression": "MIT OR Apache-2.0"
  4666. }
  4667. ],
  4668. "purl": "pkg:cargo/serde@1.0.228",
  4669. "externalReferences": [
  4670. {
  4671. "type": "documentation",
  4672. "url": "https://docs.rs/serde"
  4673. },
  4674. {
  4675. "type": "website",
  4676. "url": "https://serde.rs"
  4677. },
  4678. {
  4679. "type": "vcs",
  4680. "url": "https://github.com/serde-rs/serde"
  4681. }
  4682. ]
  4683. },
  4684. {
  4685. "type": "library",
  4686. "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#serde_core@1.0.228",
  4687. "author": "Erick Tryzelaar <erick.tryzelaar@gmail.com>, David Tolnay <dtolnay@gmail.com>",
  4688. "name": "serde_core",
  4689. "version": "1.0.228",
  4690. "description": "Serde traits only, with no support for derive -- use the `serde` crate instead",
  4691. "scope": "required",
  4692. "hashes": [
  4693. {
  4694. "alg": "SHA-256",
  4695. "content": "41d385c7d4ca58e59fc732af25c3983b67ac852c1a25000afe1175de458b67ad"
  4696. }
  4697. ],
  4698. "licenses": [
  4699. {
  4700. "expression": "MIT OR Apache-2.0"
  4701. }
  4702. ],
  4703. "purl": "pkg:cargo/serde_core@1.0.228",
  4704. "externalReferences": [
  4705. {
  4706. "type": "documentation",
  4707. "url": "https://docs.rs/serde_core"
  4708. },
  4709. {
  4710. "type": "website",
  4711. "url": "https://serde.rs"
  4712. },
  4713. {
  4714. "type": "vcs",
  4715. "url": "https://github.com/serde-rs/serde"
  4716. }
  4717. ]
  4718. },
  4719. {
  4720. "type": "library",
  4721. "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#serde_derive@1.0.228",
  4722. "author": "Erick Tryzelaar <erick.tryzelaar@gmail.com>, David Tolnay <dtolnay@gmail.com>",
  4723. "name": "serde_derive",
  4724. "version": "1.0.228",
  4725. "description": "Macros 1.1 implementation of #[derive(Serialize, Deserialize)]",
  4726. "scope": "required",
  4727. "hashes": [
  4728. {
  4729. "alg": "SHA-256",
  4730. "content": "d540f220d3187173da220f885ab66608367b6574e925011a9353e4badda91d79"
  4731. }
  4732. ],
  4733. "licenses": [
  4734. {
  4735. "expression": "MIT OR Apache-2.0"
  4736. }
  4737. ],
  4738. "purl": "pkg:cargo/serde_derive@1.0.228",
  4739. "externalReferences": [
  4740. {
  4741. "type": "documentation",
  4742. "url": "https://serde.rs/derive.html"
  4743. },
  4744. {
  4745. "type": "website",
  4746. "url": "https://serde.rs"
  4747. },
  4748. {
  4749. "type": "vcs",
  4750. "url": "https://github.com/serde-rs/serde"
  4751. }
  4752. ]
  4753. },
  4754. {
  4755. "type": "library",
  4756. "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#serde_json@1.0.150",
  4757. "author": "Erick Tryzelaar <erick.tryzelaar@gmail.com>, David Tolnay <dtolnay@gmail.com>",
  4758. "name": "serde_json",
  4759. "version": "1.0.150",
  4760. "description": "A JSON serialization file format",
  4761. "scope": "required",
  4762. "hashes": [
  4763. {
  4764. "alg": "SHA-256",
  4765. "content": "e8014e44b4736ed0538adeecded0fce2a272f22dc9578a7eb6b2d9993c74cfb9"
  4766. }
  4767. ],
  4768. "licenses": [
  4769. {
  4770. "expression": "MIT OR Apache-2.0"
  4771. }
  4772. ],
  4773. "purl": "pkg:cargo/serde_json@1.0.150",
  4774. "externalReferences": [
  4775. {
  4776. "type": "documentation",
  4777. "url": "https://docs.rs/serde_json"
  4778. },
  4779. {
  4780. "type": "vcs",
  4781. "url": "https://github.com/serde-rs/json"
  4782. }
  4783. ]
  4784. },
  4785. {
  4786. "type": "library",
  4787. "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#shlex@2.0.1",
  4788. "author": "comex <comexk@gmail.com>, Fenhl <fenhl@fenhl.net>, Adrian Taylor <adetaylor@chromium.org>, Alex Touchet <alextouchet@outlook.com>, Daniel Parks <dp+git@oxidized.org>, Garrett Berg <googberg@gmail.com>",
  4789. "name": "shlex",
  4790. "version": "2.0.1",
  4791. "description": "Split a string into shell words, like Python's shlex.",
  4792. "scope": "excluded",
  4793. "hashes": [
  4794. {
  4795. "alg": "SHA-256",
  4796. "content": "f8fadd59c855ef2080decdef8ff161eb6661b86933c9d82e5ba29dc602a55aba"
  4797. }
  4798. ],
  4799. "licenses": [
  4800. {
  4801. "expression": "MIT OR Apache-2.0"
  4802. }
  4803. ],
  4804. "purl": "pkg:cargo/shlex@2.0.1",
  4805. "externalReferences": [
  4806. {
  4807. "type": "vcs",
  4808. "url": "https://github.com/comex/rust-shlex"
  4809. }
  4810. ]
  4811. },
  4812. {
  4813. "type": "library",
  4814. "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#simd-adler32@0.3.9",
  4815. "author": "Marvin Countryman <me@maar.vin>",
  4816. "name": "simd-adler32",
  4817. "version": "0.3.9",
  4818. "description": "A SIMD-accelerated Adler-32 hash algorithm implementation.",
  4819. "scope": "required",
  4820. "hashes": [
  4821. {
  4822. "alg": "SHA-256",
  4823. "content": "703d5c7ef118737c72f1af64ad2f6f8c5e1921f818cdcb97b8fe6fc69bf66214"
  4824. }
  4825. ],
  4826. "licenses": [
  4827. {
  4828. "expression": "MIT"
  4829. }
  4830. ],
  4831. "purl": "pkg:cargo/simd-adler32@0.3.9",
  4832. "externalReferences": [
  4833. {
  4834. "type": "vcs",
  4835. "url": "https://github.com/mcountryman/simd-adler32"
  4836. }
  4837. ]
  4838. },
  4839. {
  4840. "type": "library",
  4841. "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#slab@0.4.12",
  4842. "author": "Carl Lerche <me@carllerche.com>",
  4843. "name": "slab",
  4844. "version": "0.4.12",
  4845. "description": "Pre-allocated storage for a uniform data type",
  4846. "scope": "required",
  4847. "hashes": [
  4848. {
  4849. "alg": "SHA-256",
  4850. "content": "0c790de23124f9ab44544d7ac05d60440adc586479ce501c1d6d7da3cd8c9cf5"
  4851. }
  4852. ],
  4853. "licenses": [
  4854. {
  4855. "expression": "MIT"
  4856. }
  4857. ],
  4858. "purl": "pkg:cargo/slab@0.4.12",
  4859. "externalReferences": [
  4860. {
  4861. "type": "vcs",
  4862. "url": "https://github.com/tokio-rs/slab"
  4863. }
  4864. ]
  4865. },
  4866. {
  4867. "type": "library",
  4868. "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#smallvec@1.15.1",
  4869. "author": "The Servo Project Developers",
  4870. "name": "smallvec",
  4871. "version": "1.15.1",
  4872. "description": "'Small vector' optimization: store up to a small number of items on the stack",
  4873. "scope": "required",
  4874. "hashes": [
  4875. {
  4876. "alg": "SHA-256",
  4877. "content": "67b1b7a3b5fe4f1376887184045fcf45c69e92af734b7aaddc05fb777b6fbd03"
  4878. }
  4879. ],
  4880. "licenses": [
  4881. {
  4882. "expression": "MIT OR Apache-2.0"
  4883. }
  4884. ],
  4885. "purl": "pkg:cargo/smallvec@1.15.1",
  4886. "externalReferences": [
  4887. {
  4888. "type": "documentation",
  4889. "url": "https://docs.rs/smallvec/"
  4890. },
  4891. {
  4892. "type": "vcs",
  4893. "url": "https://github.com/servo/rust-smallvec"
  4894. }
  4895. ]
  4896. },
  4897. {
  4898. "type": "library",
  4899. "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#socket2@0.6.4",
  4900. "author": "Alex Crichton <alex@alexcrichton.com>, Thomas de Zeeuw <thomasdezeeuw@gmail.com>",
  4901. "name": "socket2",
  4902. "version": "0.6.4",
  4903. "description": "Utilities for handling networking sockets with a maximal amount of configuration possible intended. ",
  4904. "scope": "required",
  4905. "hashes": [
  4906. {
  4907. "alg": "SHA-256",
  4908. "content": "52d1cfed4120b4d927bf7c0f86d2087a4a7d6027c906d9f9d525a80573b9be51"
  4909. }
  4910. ],
  4911. "licenses": [
  4912. {
  4913. "expression": "MIT OR Apache-2.0"
  4914. }
  4915. ],
  4916. "purl": "pkg:cargo/socket2@0.6.4",
  4917. "externalReferences": [
  4918. {
  4919. "type": "documentation",
  4920. "url": "https://docs.rs/socket2"
  4921. },
  4922. {
  4923. "type": "website",
  4924. "url": "https://github.com/rust-lang/socket2"
  4925. },
  4926. {
  4927. "type": "vcs",
  4928. "url": "https://github.com/rust-lang/socket2"
  4929. }
  4930. ]
  4931. },
  4932. {
  4933. "type": "library",
  4934. "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#stable_deref_trait@1.2.1",
  4935. "author": "Robert Grosse <n210241048576@gmail.com>",
  4936. "name": "stable_deref_trait",
  4937. "version": "1.2.1",
  4938. "description": "An unsafe marker trait for types like Box and Rc that dereference to a stable address even when moved, and hence can be used with libraries such as owning_ref and rental. ",
  4939. "scope": "required",
  4940. "hashes": [
  4941. {
  4942. "alg": "SHA-256",
  4943. "content": "6ce2be8dc25455e1f91df71bfa12ad37d7af1092ae736f3a6cd0e37bc7810596"
  4944. }
  4945. ],
  4946. "licenses": [
  4947. {
  4948. "expression": "MIT OR Apache-2.0"
  4949. }
  4950. ],
  4951. "purl": "pkg:cargo/stable_deref_trait@1.2.1",
  4952. "externalReferences": [
  4953. {
  4954. "type": "documentation",
  4955. "url": "https://docs.rs/stable_deref_trait/1.2.1/stable_deref_trait"
  4956. },
  4957. {
  4958. "type": "vcs",
  4959. "url": "https://github.com/storyyeller/stable_deref_trait"
  4960. }
  4961. ]
  4962. },
  4963. {
  4964. "type": "library",
  4965. "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#subtle@2.6.1",
  4966. "author": "Isis Lovecruft <isis@patternsinthevoid.net>, Henry de Valence <hdevalence@hdevalence.ca>",
  4967. "name": "subtle",
  4968. "version": "2.6.1",
  4969. "description": "Pure-Rust traits and utilities for constant-time cryptographic implementations.",
  4970. "scope": "required",
  4971. "hashes": [
  4972. {
  4973. "alg": "SHA-256",
  4974. "content": "13c2bddecc57b384dee18652358fb23172facb8a2c51ccc10d74c157bdea3292"
  4975. }
  4976. ],
  4977. "licenses": [
  4978. {
  4979. "expression": "BSD-3-Clause"
  4980. }
  4981. ],
  4982. "purl": "pkg:cargo/subtle@2.6.1",
  4983. "externalReferences": [
  4984. {
  4985. "type": "documentation",
  4986. "url": "https://docs.rs/subtle"
  4987. },
  4988. {
  4989. "type": "website",
  4990. "url": "https://dalek.rs/"
  4991. },
  4992. {
  4993. "type": "vcs",
  4994. "url": "https://github.com/dalek-cryptography/subtle"
  4995. }
  4996. ]
  4997. },
  4998. {
  4999. "type": "library",
  5000. "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#syn@2.0.117",
  5001. "author": "David Tolnay <dtolnay@gmail.com>",
  5002. "name": "syn",
  5003. "version": "2.0.117",
  5004. "description": "Parser for Rust source code",
  5005. "scope": "required",
  5006. "hashes": [
  5007. {
  5008. "alg": "SHA-256",
  5009. "content": "e665b8803e7b1d2a727f4023456bbbbe74da67099c585258af0ad9c5013b9b99"
  5010. }
  5011. ],
  5012. "licenses": [
  5013. {
  5014. "expression": "MIT OR Apache-2.0"
  5015. }
  5016. ],
  5017. "purl": "pkg:cargo/syn@2.0.117",
  5018. "externalReferences": [
  5019. {
  5020. "type": "documentation",
  5021. "url": "https://docs.rs/syn"
  5022. },
  5023. {
  5024. "type": "vcs",
  5025. "url": "https://github.com/dtolnay/syn"
  5026. }
  5027. ]
  5028. },
  5029. {
  5030. "type": "library",
  5031. "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#sync_wrapper@1.0.2",
  5032. "author": "Actyx AG <developer@actyx.io>",
  5033. "name": "sync_wrapper",
  5034. "version": "1.0.2",
  5035. "description": "A tool for enlisting the compiler's help in proving the absence of concurrency",
  5036. "scope": "required",
  5037. "hashes": [
  5038. {
  5039. "alg": "SHA-256",
  5040. "content": "0bf256ce5efdfa370213c1dabab5935a12e49f2c58d15e9eac2870d3b4f27263"
  5041. }
  5042. ],
  5043. "licenses": [
  5044. {
  5045. "expression": "Apache-2.0"
  5046. }
  5047. ],
  5048. "purl": "pkg:cargo/sync_wrapper@1.0.2",
  5049. "externalReferences": [
  5050. {
  5051. "type": "documentation",
  5052. "url": "https://docs.rs/sync_wrapper"
  5053. },
  5054. {
  5055. "type": "website",
  5056. "url": "https://docs.rs/sync_wrapper"
  5057. },
  5058. {
  5059. "type": "vcs",
  5060. "url": "https://github.com/Actyx/sync_wrapper"
  5061. }
  5062. ]
  5063. },
  5064. {
  5065. "type": "library",
  5066. "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#synstructure@0.13.2",
  5067. "author": "Nika Layzell <nika@thelayzells.com>",
  5068. "name": "synstructure",
  5069. "version": "0.13.2",
  5070. "description": "Helper methods and macros for custom derives",
  5071. "scope": "required",
  5072. "hashes": [
  5073. {
  5074. "alg": "SHA-256",
  5075. "content": "728a70f3dbaf5bab7f0c4b1ac8d7ae5ea60a4b5549c8a5914361c99147a709d2"
  5076. }
  5077. ],
  5078. "licenses": [
  5079. {
  5080. "expression": "MIT"
  5081. }
  5082. ],
  5083. "purl": "pkg:cargo/synstructure@0.13.2",
  5084. "externalReferences": [
  5085. {
  5086. "type": "documentation",
  5087. "url": "https://docs.rs/synstructure"
  5088. },
  5089. {
  5090. "type": "vcs",
  5091. "url": "https://github.com/mystor/synstructure"
  5092. }
  5093. ]
  5094. },
  5095. {
  5096. "type": "library",
  5097. "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#tagptr@0.2.0",
  5098. "author": "Oliver Giersch",
  5099. "name": "tagptr",
  5100. "version": "0.2.0",
  5101. "description": "Strongly typed atomic and non-atomic tagged pointers",
  5102. "scope": "required",
  5103. "hashes": [
  5104. {
  5105. "alg": "SHA-256",
  5106. "content": "7b2093cf4c8eb1e67749a6762251bc9cd836b6fc171623bd0a9d324d37af2417"
  5107. }
  5108. ],
  5109. "licenses": [
  5110. {
  5111. "expression": "MIT OR Apache-2.0"
  5112. }
  5113. ],
  5114. "purl": "pkg:cargo/tagptr@0.2.0",
  5115. "externalReferences": [
  5116. {
  5117. "type": "documentation",
  5118. "url": "https://docs.rs/tagptr"
  5119. },
  5120. {
  5121. "type": "vcs",
  5122. "url": "https://github.com/oliver-giersch/tagptr.git"
  5123. }
  5124. ]
  5125. },
  5126. {
  5127. "type": "library",
  5128. "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#target-lexicon@0.13.5",
  5129. "author": "Dan Gohman <sunfish@mozilla.com>",
  5130. "name": "target-lexicon",
  5131. "version": "0.13.5",
  5132. "description": "LLVM target triple types",
  5133. "scope": "excluded",
  5134. "hashes": [
  5135. {
  5136. "alg": "SHA-256",
  5137. "content": "adb6935a6f5c20170eeceb1a3835a49e12e19d792f6dd344ccc76a985ca5a6ca"
  5138. }
  5139. ],
  5140. "licenses": [
  5141. {
  5142. "expression": "Apache-2.0 WITH LLVM-exception"
  5143. }
  5144. ],
  5145. "purl": "pkg:cargo/target-lexicon@0.13.5",
  5146. "externalReferences": [
  5147. {
  5148. "type": "documentation",
  5149. "url": "https://docs.rs/target-lexicon/"
  5150. },
  5151. {
  5152. "type": "vcs",
  5153. "url": "https://github.com/bytecodealliance/target-lexicon"
  5154. }
  5155. ]
  5156. },
  5157. {
  5158. "type": "library",
  5159. "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#thiserror-impl@2.0.18",
  5160. "author": "David Tolnay <dtolnay@gmail.com>",
  5161. "name": "thiserror-impl",
  5162. "version": "2.0.18",
  5163. "description": "Implementation detail of the `thiserror` crate",
  5164. "scope": "required",
  5165. "hashes": [
  5166. {
  5167. "alg": "SHA-256",
  5168. "content": "ebc4ee7f67670e9b64d05fa4253e753e016c6c95ff35b89b7941d6b856dec1d5"
  5169. }
  5170. ],
  5171. "licenses": [
  5172. {
  5173. "expression": "MIT OR Apache-2.0"
  5174. }
  5175. ],
  5176. "purl": "pkg:cargo/thiserror-impl@2.0.18",
  5177. "externalReferences": [
  5178. {
  5179. "type": "vcs",
  5180. "url": "https://github.com/dtolnay/thiserror"
  5181. }
  5182. ]
  5183. },
  5184. {
  5185. "type": "library",
  5186. "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#thiserror@2.0.18",
  5187. "author": "David Tolnay <dtolnay@gmail.com>",
  5188. "name": "thiserror",
  5189. "version": "2.0.18",
  5190. "description": "derive(Error)",
  5191. "scope": "required",
  5192. "hashes": [
  5193. {
  5194. "alg": "SHA-256",
  5195. "content": "4288b5bcbc7920c07a1149a35cf9590a2aa808e0bc1eafaade0b80947865fbc4"
  5196. }
  5197. ],
  5198. "licenses": [
  5199. {
  5200. "expression": "MIT OR Apache-2.0"
  5201. }
  5202. ],
  5203. "purl": "pkg:cargo/thiserror@2.0.18",
  5204. "externalReferences": [
  5205. {
  5206. "type": "documentation",
  5207. "url": "https://docs.rs/thiserror"
  5208. },
  5209. {
  5210. "type": "vcs",
  5211. "url": "https://github.com/dtolnay/thiserror"
  5212. }
  5213. ]
  5214. },
  5215. {
  5216. "type": "library",
  5217. "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#time-core@0.1.8",
  5218. "author": "Jacob Pratt <open-source@jhpratt.dev>, Time contributors",
  5219. "name": "time-core",
  5220. "version": "0.1.8",
  5221. "description": "This crate is an implementation detail and should not be relied upon directly.",
  5222. "scope": "required",
  5223. "hashes": [
  5224. {
  5225. "alg": "SHA-256",
  5226. "content": "7694e1cfe791f8d31026952abf09c69ca6f6fa4e1a1229e18988f06a04a12dca"
  5227. }
  5228. ],
  5229. "licenses": [
  5230. {
  5231. "expression": "MIT OR Apache-2.0"
  5232. }
  5233. ],
  5234. "purl": "pkg:cargo/time-core@0.1.8",
  5235. "externalReferences": [
  5236. {
  5237. "type": "vcs",
  5238. "url": "https://github.com/time-rs/time"
  5239. }
  5240. ]
  5241. },
  5242. {
  5243. "type": "library",
  5244. "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#time-macros@0.2.27",
  5245. "author": "Jacob Pratt <open-source@jhpratt.dev>, Time contributors",
  5246. "name": "time-macros",
  5247. "version": "0.2.27",
  5248. "description": " Procedural macros for the time crate. This crate is an implementation detail and should not be relied upon directly. ",
  5249. "scope": "required",
  5250. "hashes": [
  5251. {
  5252. "alg": "SHA-256",
  5253. "content": "2e70e4c5a0e0a8a4823ad65dfe1a6930e4f4d756dcd9dd7939022b5e8c501215"
  5254. }
  5255. ],
  5256. "licenses": [
  5257. {
  5258. "expression": "MIT OR Apache-2.0"
  5259. }
  5260. ],
  5261. "purl": "pkg:cargo/time-macros@0.2.27",
  5262. "externalReferences": [
  5263. {
  5264. "type": "vcs",
  5265. "url": "https://github.com/time-rs/time"
  5266. }
  5267. ]
  5268. },
  5269. {
  5270. "type": "library",
  5271. "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#time@0.3.47",
  5272. "author": "Jacob Pratt <open-source@jhpratt.dev>, Time contributors",
  5273. "name": "time",
  5274. "version": "0.3.47",
  5275. "description": "Date and time library. Fully interoperable with the standard library. Mostly compatible with #![no_std].",
  5276. "scope": "required",
  5277. "hashes": [
  5278. {
  5279. "alg": "SHA-256",
  5280. "content": "743bd48c283afc0388f9b8827b976905fb217ad9e647fae3a379a9283c4def2c"
  5281. }
  5282. ],
  5283. "licenses": [
  5284. {
  5285. "expression": "MIT OR Apache-2.0"
  5286. }
  5287. ],
  5288. "purl": "pkg:cargo/time@0.3.47",
  5289. "externalReferences": [
  5290. {
  5291. "type": "website",
  5292. "url": "https://time-rs.github.io"
  5293. },
  5294. {
  5295. "type": "vcs",
  5296. "url": "https://github.com/time-rs/time"
  5297. }
  5298. ]
  5299. },
  5300. {
  5301. "type": "library",
  5302. "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#tinystr@0.8.3",
  5303. "author": "The ICU4X Project Developers",
  5304. "name": "tinystr",
  5305. "version": "0.8.3",
  5306. "description": "A small ASCII-only bounded length string representation.",
  5307. "scope": "required",
  5308. "hashes": [
  5309. {
  5310. "alg": "SHA-256",
  5311. "content": "c8323304221c2a851516f22236c5722a72eaa19749016521d6dff0824447d96d"
  5312. }
  5313. ],
  5314. "licenses": [
  5315. {
  5316. "expression": "Unicode-3.0"
  5317. }
  5318. ],
  5319. "purl": "pkg:cargo/tinystr@0.8.3",
  5320. "externalReferences": [
  5321. {
  5322. "type": "vcs",
  5323. "url": "https://github.com/unicode-org/icu4x"
  5324. }
  5325. ]
  5326. },
  5327. {
  5328. "type": "library",
  5329. "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#tinyvec@1.11.0",
  5330. "author": "Lokathor <zefria@gmail.com>",
  5331. "name": "tinyvec",
  5332. "version": "1.11.0",
  5333. "description": "`tinyvec` provides 100% safe vec-like data structures.",
  5334. "scope": "required",
  5335. "hashes": [
  5336. {
  5337. "alg": "SHA-256",
  5338. "content": "3e61e67053d25a4e82c844e8424039d9745781b3fc4f32b8d55ed50f5f667ef3"
  5339. }
  5340. ],
  5341. "licenses": [
  5342. {
  5343. "expression": "Zlib OR Apache-2.0 OR MIT"
  5344. }
  5345. ],
  5346. "purl": "pkg:cargo/tinyvec@1.11.0",
  5347. "externalReferences": [
  5348. {
  5349. "type": "vcs",
  5350. "url": "https://github.com/Lokathor/tinyvec"
  5351. }
  5352. ]
  5353. },
  5354. {
  5355. "type": "library",
  5356. "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#tinyvec_macros@0.1.1",
  5357. "author": "Soveu <marx.tomasz@gmail.com>",
  5358. "name": "tinyvec_macros",
  5359. "version": "0.1.1",
  5360. "description": "Some macros for tiny containers",
  5361. "scope": "required",
  5362. "hashes": [
  5363. {
  5364. "alg": "SHA-256",
  5365. "content": "1f3ccbac311fea05f86f61904b462b55fb3df8837a366dfc601a0161d0532f20"
  5366. }
  5367. ],
  5368. "licenses": [
  5369. {
  5370. "expression": "MIT OR Apache-2.0 OR Zlib"
  5371. }
  5372. ],
  5373. "purl": "pkg:cargo/tinyvec_macros@0.1.1",
  5374. "externalReferences": [
  5375. {
  5376. "type": "vcs",
  5377. "url": "https://github.com/Soveu/tinyvec_macros"
  5378. }
  5379. ]
  5380. },
  5381. {
  5382. "type": "library",
  5383. "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#tokio-macros@2.7.0",
  5384. "author": "Tokio Contributors <team@tokio.rs>",
  5385. "name": "tokio-macros",
  5386. "version": "2.7.0",
  5387. "description": "Tokio's proc macros. ",
  5388. "scope": "required",
  5389. "hashes": [
  5390. {
  5391. "alg": "SHA-256",
  5392. "content": "385a6cb71ab9ab790c5fe8d67f1645e6c450a7ce006a33de03daa956cf70a496"
  5393. }
  5394. ],
  5395. "licenses": [
  5396. {
  5397. "expression": "MIT"
  5398. }
  5399. ],
  5400. "purl": "pkg:cargo/tokio-macros@2.7.0",
  5401. "externalReferences": [
  5402. {
  5403. "type": "website",
  5404. "url": "https://tokio.rs"
  5405. },
  5406. {
  5407. "type": "vcs",
  5408. "url": "https://github.com/tokio-rs/tokio"
  5409. }
  5410. ]
  5411. },
  5412. {
  5413. "type": "library",
  5414. "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#tokio-rustls@0.26.4",
  5415. "name": "tokio-rustls",
  5416. "version": "0.26.4",
  5417. "description": "Asynchronous TLS/SSL streams for Tokio using Rustls.",
  5418. "scope": "required",
  5419. "hashes": [
  5420. {
  5421. "alg": "SHA-256",
  5422. "content": "1729aa945f29d91ba541258c8df89027d5792d85a8841fb65e8bf0f4ede4ef61"
  5423. }
  5424. ],
  5425. "licenses": [
  5426. {
  5427. "expression": "MIT OR Apache-2.0"
  5428. }
  5429. ],
  5430. "purl": "pkg:cargo/tokio-rustls@0.26.4",
  5431. "externalReferences": [
  5432. {
  5433. "type": "documentation",
  5434. "url": "https://docs.rs/tokio-rustls"
  5435. },
  5436. {
  5437. "type": "website",
  5438. "url": "https://github.com/rustls/tokio-rustls"
  5439. },
  5440. {
  5441. "type": "vcs",
  5442. "url": "https://github.com/rustls/tokio-rustls"
  5443. }
  5444. ]
  5445. },
  5446. {
  5447. "type": "library",
  5448. "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#tokio-stream@0.1.18",
  5449. "author": "Tokio Contributors <team@tokio.rs>",
  5450. "name": "tokio-stream",
  5451. "version": "0.1.18",
  5452. "description": "Utilities to work with `Stream` and `tokio`. ",
  5453. "scope": "required",
  5454. "hashes": [
  5455. {
  5456. "alg": "SHA-256",
  5457. "content": "32da49809aab5c3bc678af03902d4ccddea2a87d028d86392a4b1560c6906c70"
  5458. }
  5459. ],
  5460. "licenses": [
  5461. {
  5462. "expression": "MIT"
  5463. }
  5464. ],
  5465. "purl": "pkg:cargo/tokio-stream@0.1.18",
  5466. "externalReferences": [
  5467. {
  5468. "type": "website",
  5469. "url": "https://tokio.rs"
  5470. },
  5471. {
  5472. "type": "vcs",
  5473. "url": "https://github.com/tokio-rs/tokio"
  5474. }
  5475. ]
  5476. },
  5477. {
  5478. "type": "library",
  5479. "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#tokio-util@0.7.18",
  5480. "author": "Tokio Contributors <team@tokio.rs>",
  5481. "name": "tokio-util",
  5482. "version": "0.7.18",
  5483. "description": "Additional utilities for working with Tokio. ",
  5484. "scope": "required",
  5485. "hashes": [
  5486. {
  5487. "alg": "SHA-256",
  5488. "content": "9ae9cec805b01e8fc3fd2fe289f89149a9b66dd16786abd8b19cfa7b48cb0098"
  5489. }
  5490. ],
  5491. "licenses": [
  5492. {
  5493. "expression": "MIT"
  5494. }
  5495. ],
  5496. "purl": "pkg:cargo/tokio-util@0.7.18",
  5497. "externalReferences": [
  5498. {
  5499. "type": "website",
  5500. "url": "https://tokio.rs"
  5501. },
  5502. {
  5503. "type": "vcs",
  5504. "url": "https://github.com/tokio-rs/tokio"
  5505. }
  5506. ]
  5507. },
  5508. {
  5509. "type": "library",
  5510. "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#tokio@1.52.3",
  5511. "author": "Tokio Contributors <team@tokio.rs>",
  5512. "name": "tokio",
  5513. "version": "1.52.3",
  5514. "description": "An event-driven, non-blocking I/O platform for writing asynchronous I/O backed applications. ",
  5515. "scope": "required",
  5516. "hashes": [
  5517. {
  5518. "alg": "SHA-256",
  5519. "content": "8fc7f01b389ac15039e4dc9531aa973a135d7a4135281b12d7c1bc79fd57fffe"
  5520. }
  5521. ],
  5522. "licenses": [
  5523. {
  5524. "expression": "MIT"
  5525. }
  5526. ],
  5527. "purl": "pkg:cargo/tokio@1.52.3",
  5528. "externalReferences": [
  5529. {
  5530. "type": "website",
  5531. "url": "https://tokio.rs"
  5532. },
  5533. {
  5534. "type": "vcs",
  5535. "url": "https://github.com/tokio-rs/tokio"
  5536. }
  5537. ]
  5538. },
  5539. {
  5540. "type": "library",
  5541. "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#tower-http@0.6.11",
  5542. "author": "Tower Maintainers <team@tower-rs.com>",
  5543. "name": "tower-http",
  5544. "version": "0.6.11",
  5545. "description": "Tower middleware and utilities for HTTP clients and servers",
  5546. "scope": "required",
  5547. "hashes": [
  5548. {
  5549. "alg": "SHA-256",
  5550. "content": "4cfcf7e2740e6fc6d4d688b4ef00650406bb94adf4731e43c096c3a19fe40840"
  5551. }
  5552. ],
  5553. "licenses": [
  5554. {
  5555. "expression": "MIT"
  5556. }
  5557. ],
  5558. "purl": "pkg:cargo/tower-http@0.6.11",
  5559. "externalReferences": [
  5560. {
  5561. "type": "website",
  5562. "url": "https://github.com/tower-rs/tower-http"
  5563. },
  5564. {
  5565. "type": "vcs",
  5566. "url": "https://github.com/tower-rs/tower-http"
  5567. }
  5568. ]
  5569. },
  5570. {
  5571. "type": "library",
  5572. "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#tower-layer@0.3.3",
  5573. "author": "Tower Maintainers <team@tower-rs.com>",
  5574. "name": "tower-layer",
  5575. "version": "0.3.3",
  5576. "description": "Decorates a `Service` to allow easy composition between `Service`s. ",
  5577. "scope": "required",
  5578. "hashes": [
  5579. {
  5580. "alg": "SHA-256",
  5581. "content": "121c2a6cda46980bb0fcd1647ffaf6cd3fc79a013de288782836f6df9c48780e"
  5582. }
  5583. ],
  5584. "licenses": [
  5585. {
  5586. "expression": "MIT"
  5587. }
  5588. ],
  5589. "purl": "pkg:cargo/tower-layer@0.3.3",
  5590. "externalReferences": [
  5591. {
  5592. "type": "documentation",
  5593. "url": "https://docs.rs/tower-layer/0.3.3"
  5594. },
  5595. {
  5596. "type": "website",
  5597. "url": "https://github.com/tower-rs/tower"
  5598. },
  5599. {
  5600. "type": "vcs",
  5601. "url": "https://github.com/tower-rs/tower"
  5602. }
  5603. ]
  5604. },
  5605. {
  5606. "type": "library",
  5607. "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#tower-service@0.3.3",
  5608. "author": "Tower Maintainers <team@tower-rs.com>",
  5609. "name": "tower-service",
  5610. "version": "0.3.3",
  5611. "description": "Trait representing an asynchronous, request / response based, client or server. ",
  5612. "scope": "required",
  5613. "hashes": [
  5614. {
  5615. "alg": "SHA-256",
  5616. "content": "8df9b6e13f2d32c91b9bd719c00d1958837bc7dec474d94952798cc8e69eeec3"
  5617. }
  5618. ],
  5619. "licenses": [
  5620. {
  5621. "expression": "MIT"
  5622. }
  5623. ],
  5624. "purl": "pkg:cargo/tower-service@0.3.3",
  5625. "externalReferences": [
  5626. {
  5627. "type": "documentation",
  5628. "url": "https://docs.rs/tower-service/0.3.3"
  5629. },
  5630. {
  5631. "type": "website",
  5632. "url": "https://github.com/tower-rs/tower"
  5633. },
  5634. {
  5635. "type": "vcs",
  5636. "url": "https://github.com/tower-rs/tower"
  5637. }
  5638. ]
  5639. },
  5640. {
  5641. "type": "library",
  5642. "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#tower@0.5.3",
  5643. "author": "Tower Maintainers <team@tower-rs.com>",
  5644. "name": "tower",
  5645. "version": "0.5.3",
  5646. "description": "Tower is a library of modular and reusable components for building robust clients and servers. ",
  5647. "scope": "required",
  5648. "hashes": [
  5649. {
  5650. "alg": "SHA-256",
  5651. "content": "ebe5ef63511595f1344e2d5cfa636d973292adc0eec1f0ad45fae9f0851ab1d4"
  5652. }
  5653. ],
  5654. "licenses": [
  5655. {
  5656. "expression": "MIT"
  5657. }
  5658. ],
  5659. "purl": "pkg:cargo/tower@0.5.3",
  5660. "externalReferences": [
  5661. {
  5662. "type": "website",
  5663. "url": "https://github.com/tower-rs/tower"
  5664. },
  5665. {
  5666. "type": "vcs",
  5667. "url": "https://github.com/tower-rs/tower"
  5668. }
  5669. ]
  5670. },
  5671. {
  5672. "type": "library",
  5673. "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#tracing-core@0.1.36",
  5674. "author": "Tokio Contributors <team@tokio.rs>",
  5675. "name": "tracing-core",
  5676. "version": "0.1.36",
  5677. "description": "Core primitives for application-level tracing. ",
  5678. "scope": "required",
  5679. "hashes": [
  5680. {
  5681. "alg": "SHA-256",
  5682. "content": "db97caf9d906fbde555dd62fa95ddba9eecfd14cb388e4f491a66d74cd5fb79a"
  5683. }
  5684. ],
  5685. "licenses": [
  5686. {
  5687. "expression": "MIT"
  5688. }
  5689. ],
  5690. "purl": "pkg:cargo/tracing-core@0.1.36",
  5691. "externalReferences": [
  5692. {
  5693. "type": "website",
  5694. "url": "https://tokio.rs"
  5695. },
  5696. {
  5697. "type": "vcs",
  5698. "url": "https://github.com/tokio-rs/tracing"
  5699. }
  5700. ]
  5701. },
  5702. {
  5703. "type": "library",
  5704. "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#tracing@0.1.44",
  5705. "author": "Eliza Weisman <eliza@buoyant.io>, Tokio Contributors <team@tokio.rs>",
  5706. "name": "tracing",
  5707. "version": "0.1.44",
  5708. "description": "Application-level tracing for Rust. ",
  5709. "scope": "required",
  5710. "hashes": [
  5711. {
  5712. "alg": "SHA-256",
  5713. "content": "63e71662fa4b2a2c3a26f570f037eb95bb1f85397f3cd8076caed2f026a6d100"
  5714. }
  5715. ],
  5716. "licenses": [
  5717. {
  5718. "expression": "MIT"
  5719. }
  5720. ],
  5721. "purl": "pkg:cargo/tracing@0.1.44",
  5722. "externalReferences": [
  5723. {
  5724. "type": "website",
  5725. "url": "https://tokio.rs"
  5726. },
  5727. {
  5728. "type": "vcs",
  5729. "url": "https://github.com/tokio-rs/tracing"
  5730. }
  5731. ]
  5732. },
  5733. {
  5734. "type": "library",
  5735. "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#try-lock@0.2.5",
  5736. "author": "Sean McArthur <sean@seanmonstar.com>",
  5737. "name": "try-lock",
  5738. "version": "0.2.5",
  5739. "description": "A lightweight atomic lock.",
  5740. "scope": "required",
  5741. "hashes": [
  5742. {
  5743. "alg": "SHA-256",
  5744. "content": "e421abadd41a4225275504ea4d6566923418b7f05506fbc9c0fe86ba7396114b"
  5745. }
  5746. ],
  5747. "licenses": [
  5748. {
  5749. "expression": "MIT"
  5750. }
  5751. ],
  5752. "purl": "pkg:cargo/try-lock@0.2.5",
  5753. "externalReferences": [
  5754. {
  5755. "type": "documentation",
  5756. "url": "https://docs.rs/try-lock"
  5757. },
  5758. {
  5759. "type": "website",
  5760. "url": "https://github.com/seanmonstar/try-lock"
  5761. },
  5762. {
  5763. "type": "vcs",
  5764. "url": "https://github.com/seanmonstar/try-lock"
  5765. }
  5766. ]
  5767. },
  5768. {
  5769. "type": "library",
  5770. "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#unicode-ident@1.0.24",
  5771. "author": "David Tolnay <dtolnay@gmail.com>",
  5772. "name": "unicode-ident",
  5773. "version": "1.0.24",
  5774. "description": "Determine whether characters have the XID_Start or XID_Continue properties according to Unicode Standard Annex #31",
  5775. "scope": "required",
  5776. "hashes": [
  5777. {
  5778. "alg": "SHA-256",
  5779. "content": "e6e4313cd5fcd3dad5cafa179702e2b244f760991f45397d14d4ebf38247da75"
  5780. }
  5781. ],
  5782. "licenses": [
  5783. {
  5784. "expression": "(MIT OR Apache-2.0) AND Unicode-3.0"
  5785. }
  5786. ],
  5787. "purl": "pkg:cargo/unicode-ident@1.0.24",
  5788. "externalReferences": [
  5789. {
  5790. "type": "documentation",
  5791. "url": "https://docs.rs/unicode-ident"
  5792. },
  5793. {
  5794. "type": "vcs",
  5795. "url": "https://github.com/dtolnay/unicode-ident"
  5796. }
  5797. ]
  5798. },
  5799. {
  5800. "type": "library",
  5801. "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#untrusted@0.9.0",
  5802. "author": "Brian Smith <brian@briansmith.org>",
  5803. "name": "untrusted",
  5804. "version": "0.9.0",
  5805. "description": "Safe, fast, zero-panic, zero-crashing, zero-allocation parsing of untrusted inputs in Rust.",
  5806. "scope": "required",
  5807. "hashes": [
  5808. {
  5809. "alg": "SHA-256",
  5810. "content": "8ecb6da28b8a351d773b68d5825ac39017e680750f980f3a1a85cd8dd28a47c1"
  5811. }
  5812. ],
  5813. "licenses": [
  5814. {
  5815. "expression": "ISC"
  5816. }
  5817. ],
  5818. "purl": "pkg:cargo/untrusted@0.9.0",
  5819. "externalReferences": [
  5820. {
  5821. "type": "documentation",
  5822. "url": "https://briansmith.org/rustdoc/untrusted/"
  5823. },
  5824. {
  5825. "type": "vcs",
  5826. "url": "https://github.com/briansmith/untrusted"
  5827. }
  5828. ]
  5829. },
  5830. {
  5831. "type": "library",
  5832. "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#url@2.5.8",
  5833. "author": "The rust-url developers",
  5834. "name": "url",
  5835. "version": "2.5.8",
  5836. "description": "URL library for Rust, based on the WHATWG URL Standard",
  5837. "scope": "required",
  5838. "hashes": [
  5839. {
  5840. "alg": "SHA-256",
  5841. "content": "ff67a8a4397373c3ef660812acab3268222035010ab8680ec4215f38ba3d0eed"
  5842. }
  5843. ],
  5844. "licenses": [
  5845. {
  5846. "expression": "MIT OR Apache-2.0"
  5847. }
  5848. ],
  5849. "purl": "pkg:cargo/url@2.5.8",
  5850. "externalReferences": [
  5851. {
  5852. "type": "documentation",
  5853. "url": "https://docs.rs/url"
  5854. },
  5855. {
  5856. "type": "vcs",
  5857. "url": "https://github.com/servo/rust-url"
  5858. }
  5859. ]
  5860. },
  5861. {
  5862. "type": "library",
  5863. "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#utf8_iter@1.0.4",
  5864. "author": "Henri Sivonen <hsivonen@hsivonen.fi>",
  5865. "name": "utf8_iter",
  5866. "version": "1.0.4",
  5867. "description": "Iterator by char over potentially-invalid UTF-8 in &[u8]",
  5868. "scope": "required",
  5869. "hashes": [
  5870. {
  5871. "alg": "SHA-256",
  5872. "content": "b6c140620e7ffbb22c2dee59cafe6084a59b5ffc27a8859a5f0d494b5d52b6be"
  5873. }
  5874. ],
  5875. "licenses": [
  5876. {
  5877. "expression": "Apache-2.0 OR MIT"
  5878. }
  5879. ],
  5880. "purl": "pkg:cargo/utf8_iter@1.0.4",
  5881. "externalReferences": [
  5882. {
  5883. "type": "documentation",
  5884. "url": "https://docs.rs/utf8_iter/"
  5885. },
  5886. {
  5887. "type": "website",
  5888. "url": "https://docs.rs/utf8_iter/"
  5889. },
  5890. {
  5891. "type": "vcs",
  5892. "url": "https://github.com/hsivonen/utf8_iter"
  5893. }
  5894. ]
  5895. },
  5896. {
  5897. "type": "library",
  5898. "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#uuid@1.23.3",
  5899. "author": "Ashley Mannix<ashleymannix@live.com.au>, Dylan DPC<dylan.dpc@gmail.com>, Hunar Roop Kahlon<hunar.roop@gmail.com>",
  5900. "name": "uuid",
  5901. "version": "1.23.3",
  5902. "description": "A library to generate and parse UUIDs.",
  5903. "scope": "required",
  5904. "hashes": [
  5905. {
  5906. "alg": "SHA-256",
  5907. "content": "144d6b123cef80b301b8f72a9e2ca4370ddec21950d0a103dd22c437006d2db7"
  5908. }
  5909. ],
  5910. "licenses": [
  5911. {
  5912. "expression": "Apache-2.0 OR MIT"
  5913. }
  5914. ],
  5915. "purl": "pkg:cargo/uuid@1.23.3",
  5916. "externalReferences": [
  5917. {
  5918. "type": "documentation",
  5919. "url": "https://docs.rs/uuid"
  5920. },
  5921. {
  5922. "type": "website",
  5923. "url": "https://github.com/uuid-rs/uuid"
  5924. },
  5925. {
  5926. "type": "vcs",
  5927. "url": "https://github.com/uuid-rs/uuid"
  5928. }
  5929. ]
  5930. },
  5931. {
  5932. "type": "library",
  5933. "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#version_check@0.9.5",
  5934. "author": "Sergio Benitez <sb@sergio.bz>",
  5935. "name": "version_check",
  5936. "version": "0.9.5",
  5937. "description": "Tiny crate to check the version of the installed/running rustc.",
  5938. "scope": "excluded",
  5939. "hashes": [
  5940. {
  5941. "alg": "SHA-256",
  5942. "content": "0b928f33d975fc6ad9f86c8f283853ad26bdd5b10b7f1542aa2fa15e2289105a"
  5943. }
  5944. ],
  5945. "licenses": [
  5946. {
  5947. "expression": "MIT OR Apache-2.0"
  5948. }
  5949. ],
  5950. "purl": "pkg:cargo/version_check@0.9.5",
  5951. "externalReferences": [
  5952. {
  5953. "type": "documentation",
  5954. "url": "https://docs.rs/version_check/"
  5955. },
  5956. {
  5957. "type": "vcs",
  5958. "url": "https://github.com/SergioBenitez/version_check"
  5959. }
  5960. ]
  5961. },
  5962. {
  5963. "type": "library",
  5964. "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#want@0.3.1",
  5965. "author": "Sean McArthur <sean@seanmonstar.com>",
  5966. "name": "want",
  5967. "version": "0.3.1",
  5968. "description": "Detect when another Future wants a result.",
  5969. "scope": "required",
  5970. "hashes": [
  5971. {
  5972. "alg": "SHA-256",
  5973. "content": "bfa7760aed19e106de2c7c0b581b509f2f25d3dacaf737cb82ac61bc6d760b0e"
  5974. }
  5975. ],
  5976. "licenses": [
  5977. {
  5978. "expression": "MIT"
  5979. }
  5980. ],
  5981. "purl": "pkg:cargo/want@0.3.1",
  5982. "externalReferences": [
  5983. {
  5984. "type": "documentation",
  5985. "url": "https://docs.rs/want"
  5986. },
  5987. {
  5988. "type": "vcs",
  5989. "url": "https://github.com/seanmonstar/want"
  5990. }
  5991. ]
  5992. },
  5993. {
  5994. "type": "library",
  5995. "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#writeable@0.6.3",
  5996. "author": "The ICU4X Project Developers",
  5997. "name": "writeable",
  5998. "version": "0.6.3",
  5999. "description": "A more efficient alternative to fmt::Display",
  6000. "scope": "required",
  6001. "hashes": [
  6002. {
  6003. "alg": "SHA-256",
  6004. "content": "1ffae5123b2d3fc086436f8834ae3ab053a283cfac8fe0a0b8eaae044768a4c4"
  6005. }
  6006. ],
  6007. "licenses": [
  6008. {
  6009. "expression": "Unicode-3.0"
  6010. }
  6011. ],
  6012. "purl": "pkg:cargo/writeable@0.6.3",
  6013. "externalReferences": [
  6014. {
  6015. "type": "vcs",
  6016. "url": "https://github.com/unicode-org/icu4x"
  6017. }
  6018. ]
  6019. },
  6020. {
  6021. "type": "library",
  6022. "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#yoke-derive@0.8.2",
  6023. "author": "Manish Goregaokar <manishsmail@gmail.com>",
  6024. "name": "yoke-derive",
  6025. "version": "0.8.2",
  6026. "description": "Custom derive for the yoke crate",
  6027. "scope": "required",
  6028. "hashes": [
  6029. {
  6030. "alg": "SHA-256",
  6031. "content": "de844c262c8848816172cef550288e7dc6c7b7814b4ee56b3e1553f275f1858e"
  6032. }
  6033. ],
  6034. "licenses": [
  6035. {
  6036. "expression": "Unicode-3.0"
  6037. }
  6038. ],
  6039. "purl": "pkg:cargo/yoke-derive@0.8.2",
  6040. "externalReferences": [
  6041. {
  6042. "type": "vcs",
  6043. "url": "https://github.com/unicode-org/icu4x"
  6044. }
  6045. ]
  6046. },
  6047. {
  6048. "type": "library",
  6049. "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#yoke@0.8.3",
  6050. "author": "Manish Goregaokar <manishsmail@gmail.com>",
  6051. "name": "yoke",
  6052. "version": "0.8.3",
  6053. "description": "Abstraction allowing borrowed data to be carried along with the backing data it borrows from",
  6054. "scope": "required",
  6055. "hashes": [
  6056. {
  6057. "alg": "SHA-256",
  6058. "content": "709fe23a0424b6a435d82152b1bd3fdfb0833487d5fa90d05d42762a9891fef5"
  6059. }
  6060. ],
  6061. "licenses": [
  6062. {
  6063. "expression": "Unicode-3.0"
  6064. }
  6065. ],
  6066. "purl": "pkg:cargo/yoke@0.8.3",
  6067. "externalReferences": [
  6068. {
  6069. "type": "vcs",
  6070. "url": "https://github.com/unicode-org/icu4x"
  6071. }
  6072. ]
  6073. },
  6074. {
  6075. "type": "library",
  6076. "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#zerocopy@0.8.52",
  6077. "author": "Joshua Liebow-Feeser <joshlf@google.com>, Jack Wrenn <jswrenn@amazon.com>",
  6078. "name": "zerocopy",
  6079. "version": "0.8.52",
  6080. "description": "Zerocopy makes zero-cost memory manipulation effortless. We write \"unsafe\" so you don't have to.",
  6081. "scope": "required",
  6082. "hashes": [
  6083. {
  6084. "alg": "SHA-256",
  6085. "content": "ce1022995ff5ff5d841ad7d994facc23098cd40152f2c1d11cd607c6f530653f"
  6086. }
  6087. ],
  6088. "licenses": [
  6089. {
  6090. "expression": "BSD-2-Clause OR Apache-2.0 OR MIT"
  6091. }
  6092. ],
  6093. "purl": "pkg:cargo/zerocopy@0.8.52",
  6094. "externalReferences": [
  6095. {
  6096. "type": "vcs",
  6097. "url": "https://github.com/google/zerocopy"
  6098. }
  6099. ]
  6100. },
  6101. {
  6102. "type": "library",
  6103. "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#zerofrom-derive@0.1.7",
  6104. "author": "Manish Goregaokar <manishsmail@gmail.com>",
  6105. "name": "zerofrom-derive",
  6106. "version": "0.1.7",
  6107. "description": "Custom derive for the zerofrom crate",
  6108. "scope": "required",
  6109. "hashes": [
  6110. {
  6111. "alg": "SHA-256",
  6112. "content": "11532158c46691caf0f2593ea8358fed6bbf68a0315e80aae9bd41fbade684a1"
  6113. }
  6114. ],
  6115. "licenses": [
  6116. {
  6117. "expression": "Unicode-3.0"
  6118. }
  6119. ],
  6120. "purl": "pkg:cargo/zerofrom-derive@0.1.7",
  6121. "externalReferences": [
  6122. {
  6123. "type": "vcs",
  6124. "url": "https://github.com/unicode-org/icu4x"
  6125. }
  6126. ]
  6127. },
  6128. {
  6129. "type": "library",
  6130. "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#zerofrom@0.1.8",
  6131. "author": "The ICU4X Project Developers",
  6132. "name": "zerofrom",
  6133. "version": "0.1.8",
  6134. "description": "ZeroFrom trait for constructing",
  6135. "scope": "required",
  6136. "hashes": [
  6137. {
  6138. "alg": "SHA-256",
  6139. "content": "0ec05a11813ea801ff6d75110ad09cd0824ddba17dfe17128ea0d5f68e6c5272"
  6140. }
  6141. ],
  6142. "licenses": [
  6143. {
  6144. "expression": "Unicode-3.0"
  6145. }
  6146. ],
  6147. "purl": "pkg:cargo/zerofrom@0.1.8",
  6148. "externalReferences": [
  6149. {
  6150. "type": "vcs",
  6151. "url": "https://github.com/unicode-org/icu4x"
  6152. }
  6153. ]
  6154. },
  6155. {
  6156. "type": "library",
  6157. "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#zeroize@1.8.2",
  6158. "author": "The RustCrypto Project Developers",
  6159. "name": "zeroize",
  6160. "version": "1.8.2",
  6161. "description": "Securely clear secrets from memory with a simple trait built on stable Rust primitives which guarantee memory is zeroed using an operation will not be 'optimized away' by the compiler. Uses a portable pure Rust implementation that works everywhere, even WASM! ",
  6162. "scope": "required",
  6163. "hashes": [
  6164. {
  6165. "alg": "SHA-256",
  6166. "content": "b97154e67e32c85465826e8bcc1c59429aaaf107c1e4a9e53c8d8ccd5eff88d0"
  6167. }
  6168. ],
  6169. "licenses": [
  6170. {
  6171. "expression": "Apache-2.0 OR MIT"
  6172. }
  6173. ],
  6174. "purl": "pkg:cargo/zeroize@1.8.2",
  6175. "externalReferences": [
  6176. {
  6177. "type": "website",
  6178. "url": "https://github.com/RustCrypto/utils/tree/master/zeroize"
  6179. },
  6180. {
  6181. "type": "vcs",
  6182. "url": "https://github.com/RustCrypto/utils"
  6183. }
  6184. ]
  6185. },
  6186. {
  6187. "type": "library",
  6188. "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#zerotrie@0.2.4",
  6189. "author": "The ICU4X Project Developers",
  6190. "name": "zerotrie",
  6191. "version": "0.2.4",
  6192. "description": "A data structure that efficiently maps strings to integers",
  6193. "scope": "required",
  6194. "hashes": [
  6195. {
  6196. "alg": "SHA-256",
  6197. "content": "0f9152d31db0792fa83f70fb2f83148effb5c1f5b8c7686c3459e361d9bc20bf"
  6198. }
  6199. ],
  6200. "licenses": [
  6201. {
  6202. "expression": "Unicode-3.0"
  6203. }
  6204. ],
  6205. "purl": "pkg:cargo/zerotrie@0.2.4",
  6206. "externalReferences": [
  6207. {
  6208. "type": "website",
  6209. "url": "https://icu4x.unicode.org"
  6210. },
  6211. {
  6212. "type": "vcs",
  6213. "url": "https://github.com/unicode-org/icu4x"
  6214. }
  6215. ]
  6216. },
  6217. {
  6218. "type": "library",
  6219. "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#zerovec-derive@0.11.3",
  6220. "author": "Manish Goregaokar <manishsmail@gmail.com>",
  6221. "name": "zerovec-derive",
  6222. "version": "0.11.3",
  6223. "description": "Custom derive for the zerovec crate",
  6224. "scope": "required",
  6225. "hashes": [
  6226. {
  6227. "alg": "SHA-256",
  6228. "content": "625dc425cab0dca6dc3c3319506e6593dcb08a9f387ea3b284dbd52a92c40555"
  6229. }
  6230. ],
  6231. "licenses": [
  6232. {
  6233. "expression": "Unicode-3.0"
  6234. }
  6235. ],
  6236. "purl": "pkg:cargo/zerovec-derive@0.11.3",
  6237. "externalReferences": [
  6238. {
  6239. "type": "vcs",
  6240. "url": "https://github.com/unicode-org/icu4x"
  6241. }
  6242. ]
  6243. },
  6244. {
  6245. "type": "library",
  6246. "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#zerovec@0.11.6",
  6247. "author": "The ICU4X Project Developers",
  6248. "name": "zerovec",
  6249. "version": "0.11.6",
  6250. "description": "Zero-copy vector backed by a byte array",
  6251. "scope": "required",
  6252. "hashes": [
  6253. {
  6254. "alg": "SHA-256",
  6255. "content": "90f911cbc359ab6af17377d242225f4d75119aec87ea711a880987b18cd7b239"
  6256. }
  6257. ],
  6258. "licenses": [
  6259. {
  6260. "expression": "Unicode-3.0"
  6261. }
  6262. ],
  6263. "purl": "pkg:cargo/zerovec@0.11.6",
  6264. "externalReferences": [
  6265. {
  6266. "type": "vcs",
  6267. "url": "https://github.com/unicode-org/icu4x"
  6268. }
  6269. ]
  6270. },
  6271. {
  6272. "type": "library",
  6273. "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#zmij@1.0.21",
  6274. "author": "David Tolnay <dtolnay@gmail.com>",
  6275. "name": "zmij",
  6276. "version": "1.0.21",
  6277. "description": "A double-to-string conversion algorithm based on Schubfach and yy",
  6278. "scope": "required",
  6279. "hashes": [
  6280. {
  6281. "alg": "SHA-256",
  6282. "content": "b8848ee67ecc8aedbaf3e4122217aff892639231befc6a1b58d29fff4c2cabaa"
  6283. }
  6284. ],
  6285. "licenses": [
  6286. {
  6287. "expression": "MIT"
  6288. }
  6289. ],
  6290. "purl": "pkg:cargo/zmij@1.0.21",
  6291. "externalReferences": [
  6292. {
  6293. "type": "documentation",
  6294. "url": "https://docs.rs/zmij"
  6295. },
  6296. {
  6297. "type": "vcs",
  6298. "url": "https://github.com/dtolnay/zmij"
  6299. }
  6300. ]
  6301. },
  6302. {
  6303. "type": "library",
  6304. "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#zstd-safe@7.2.4",
  6305. "author": "Alexandre Bury <alexandre.bury@gmail.com>",
  6306. "name": "zstd-safe",
  6307. "version": "7.2.4",
  6308. "description": "Safe low-level bindings for the zstd compression library.",
  6309. "scope": "required",
  6310. "hashes": [
  6311. {
  6312. "alg": "SHA-256",
  6313. "content": "8f49c4d5f0abb602a93fb8736af2a4f4dd9512e36f7f570d66e65ff867ed3b9d"
  6314. }
  6315. ],
  6316. "licenses": [
  6317. {
  6318. "expression": "MIT OR Apache-2.0"
  6319. }
  6320. ],
  6321. "purl": "pkg:cargo/zstd-safe@7.2.4",
  6322. "externalReferences": [
  6323. {
  6324. "type": "vcs",
  6325. "url": "https://github.com/gyscos/zstd-rs"
  6326. }
  6327. ]
  6328. },
  6329. {
  6330. "type": "library",
  6331. "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#zstd-sys@2.0.16+zstd.1.5.7",
  6332. "author": "Alexandre Bury <alexandre.bury@gmail.com>",
  6333. "name": "zstd-sys",
  6334. "version": "2.0.16+zstd.1.5.7",
  6335. "description": "Low-level bindings for the zstd compression library.",
  6336. "scope": "required",
  6337. "hashes": [
  6338. {
  6339. "alg": "SHA-256",
  6340. "content": "91e19ebc2adc8f83e43039e79776e3fda8ca919132d68a1fed6a5faca2683748"
  6341. }
  6342. ],
  6343. "licenses": [
  6344. {
  6345. "expression": "MIT OR Apache-2.0"
  6346. }
  6347. ],
  6348. "purl": "pkg:cargo/zstd-sys@2.0.16+zstd.1.5.7",
  6349. "externalReferences": [
  6350. {
  6351. "type": "other",
  6352. "url": "zstd"
  6353. },
  6354. {
  6355. "type": "vcs",
  6356. "url": "https://github.com/gyscos/zstd-rs"
  6357. }
  6358. ]
  6359. },
  6360. {
  6361. "type": "library",
  6362. "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#zstd@0.13.3",
  6363. "author": "Alexandre Bury <alexandre.bury@gmail.com>",
  6364. "name": "zstd",
  6365. "version": "0.13.3",
  6366. "description": "Binding for the zstd compression library.",
  6367. "scope": "required",
  6368. "hashes": [
  6369. {
  6370. "alg": "SHA-256",
  6371. "content": "e91ee311a569c327171651566e07972200e76fcfe2242a4fa446149a3881c08a"
  6372. }
  6373. ],
  6374. "licenses": [
  6375. {
  6376. "expression": "MIT"
  6377. }
  6378. ],
  6379. "purl": "pkg:cargo/zstd@0.13.3",
  6380. "externalReferences": [
  6381. {
  6382. "type": "documentation",
  6383. "url": "https://docs.rs/zstd"
  6384. },
  6385. {
  6386. "type": "vcs",
  6387. "url": "https://github.com/gyscos/zstd-rs"
  6388. }
  6389. ]
  6390. }
  6391. ],
  6392. "dependencies": [
  6393. {
  6394. "ref": "path+file:///home/runner/work/pyqwest/pyqwest#0.0.1",
  6395. "dependsOn": [
  6396. "registry+https://github.com/rust-lang/crates.io-index#arc-swap@1.9.1",
  6397. "registry+https://github.com/rust-lang/crates.io-index#backoff@0.4.0",
  6398. "registry+https://github.com/rust-lang/crates.io-index#brotli@8.0.4",
  6399. "registry+https://github.com/rust-lang/crates.io-index#bytes@1.11.1",
  6400. "registry+https://github.com/rust-lang/crates.io-index#errors@0.1.0",
  6401. "registry+https://github.com/rust-lang/crates.io-index#futures-core@0.3.32",
  6402. "registry+https://github.com/rust-lang/crates.io-index#h2@0.4.14",
  6403. "registry+https://github.com/rust-lang/crates.io-index#h3@0.0.8",
  6404. "registry+https://github.com/rust-lang/crates.io-index#http@1.4.2",
  6405. "registry+https://github.com/rust-lang/crates.io-index#http-body@1.0.1",
  6406. "registry+https://github.com/rust-lang/crates.io-index#http-body-util@0.1.3",
  6407. "registry+https://github.com/rust-lang/crates.io-index#hyper@1.10.1",
  6408. "registry+https://github.com/rust-lang/crates.io-index#mime@0.3.17",
  6409. "registry+https://github.com/rust-lang/crates.io-index#pyo3@0.29.0",
  6410. "registry+https://github.com/rust-lang/crates.io-index#pyo3-async-runtimes@0.29.0",
  6411. "registry+https://github.com/rust-lang/crates.io-index#pyo3-build-config@0.29.0",
  6412. "registry+https://github.com/rust-lang/crates.io-index#reqwest@0.13.4",
  6413. "registry+https://github.com/rust-lang/crates.io-index#tokio@1.52.3",
  6414. "registry+https://github.com/rust-lang/crates.io-index#tokio-stream@0.1.18",
  6415. "registry+https://github.com/rust-lang/crates.io-index#url@2.5.8",
  6416. "registry+https://github.com/rust-lang/crates.io-index#zstd@0.13.3"
  6417. ]
  6418. },
  6419. {
  6420. "ref": "registry+https://github.com/rust-lang/crates.io-index#adler2@2.0.1"
  6421. },
  6422. {
  6423. "ref": "registry+https://github.com/rust-lang/crates.io-index#alloc-no-stdlib@2.0.4"
  6424. },
  6425. {
  6426. "ref": "registry+https://github.com/rust-lang/crates.io-index#alloc-stdlib@0.2.2",
  6427. "dependsOn": [
  6428. "registry+https://github.com/rust-lang/crates.io-index#alloc-no-stdlib@2.0.4"
  6429. ]
  6430. },
  6431. {
  6432. "ref": "registry+https://github.com/rust-lang/crates.io-index#arc-swap@1.9.1",
  6433. "dependsOn": [
  6434. "registry+https://github.com/rust-lang/crates.io-index#rustversion@1.0.22"
  6435. ]
  6436. },
  6437. {
  6438. "ref": "registry+https://github.com/rust-lang/crates.io-index#async-channel@2.5.0",
  6439. "dependsOn": [
  6440. "registry+https://github.com/rust-lang/crates.io-index#concurrent-queue@2.5.0",
  6441. "registry+https://github.com/rust-lang/crates.io-index#event-listener-strategy@0.5.4",
  6442. "registry+https://github.com/rust-lang/crates.io-index#futures-core@0.3.32",
  6443. "registry+https://github.com/rust-lang/crates.io-index#pin-project-lite@0.2.17"
  6444. ]
  6445. },
  6446. {
  6447. "ref": "registry+https://github.com/rust-lang/crates.io-index#async-compression@0.4.42",
  6448. "dependsOn": [
  6449. "registry+https://github.com/rust-lang/crates.io-index#compression-codecs@0.4.38",
  6450. "registry+https://github.com/rust-lang/crates.io-index#compression-core@0.4.32",
  6451. "registry+https://github.com/rust-lang/crates.io-index#pin-project-lite@0.2.17",
  6452. "registry+https://github.com/rust-lang/crates.io-index#tokio@1.52.3"
  6453. ]
  6454. },
  6455. {
  6456. "ref": "registry+https://github.com/rust-lang/crates.io-index#async-trait@0.1.89",
  6457. "dependsOn": [
  6458. "registry+https://github.com/rust-lang/crates.io-index#proc-macro2@1.0.106",
  6459. "registry+https://github.com/rust-lang/crates.io-index#quote@1.0.45",
  6460. "registry+https://github.com/rust-lang/crates.io-index#syn@2.0.117"
  6461. ]
  6462. },
  6463. {
  6464. "ref": "registry+https://github.com/rust-lang/crates.io-index#atomic-waker@1.1.2"
  6465. },
  6466. {
  6467. "ref": "registry+https://github.com/rust-lang/crates.io-index#autocfg@1.5.1"
  6468. },
  6469. {
  6470. "ref": "registry+https://github.com/rust-lang/crates.io-index#aws-lc-rs@1.17.0",
  6471. "dependsOn": [
  6472. "registry+https://github.com/rust-lang/crates.io-index#aws-lc-sys@0.41.0",
  6473. "registry+https://github.com/rust-lang/crates.io-index#zeroize@1.8.2"
  6474. ]
  6475. },
  6476. {
  6477. "ref": "registry+https://github.com/rust-lang/crates.io-index#aws-lc-sys@0.41.0",
  6478. "dependsOn": [
  6479. "registry+https://github.com/rust-lang/crates.io-index#cc@1.2.63",
  6480. "registry+https://github.com/rust-lang/crates.io-index#cmake@0.1.58",
  6481. "registry+https://github.com/rust-lang/crates.io-index#dunce@1.0.5",
  6482. "registry+https://github.com/rust-lang/crates.io-index#fs_extra@1.3.0"
  6483. ]
  6484. },
  6485. {
  6486. "ref": "registry+https://github.com/rust-lang/crates.io-index#backoff@0.4.0",
  6487. "dependsOn": [
  6488. "registry+https://github.com/rust-lang/crates.io-index#getrandom@0.2.17",
  6489. "registry+https://github.com/rust-lang/crates.io-index#instant@0.1.13",
  6490. "registry+https://github.com/rust-lang/crates.io-index#rand@0.8.6"
  6491. ]
  6492. },
  6493. {
  6494. "ref": "registry+https://github.com/rust-lang/crates.io-index#base64@0.22.1"
  6495. },
  6496. {
  6497. "ref": "registry+https://github.com/rust-lang/crates.io-index#bitflags@2.13.0"
  6498. },
  6499. {
  6500. "ref": "registry+https://github.com/rust-lang/crates.io-index#brotli-decompressor@5.0.1",
  6501. "dependsOn": [
  6502. "registry+https://github.com/rust-lang/crates.io-index#alloc-no-stdlib@2.0.4",
  6503. "registry+https://github.com/rust-lang/crates.io-index#alloc-stdlib@0.2.2"
  6504. ]
  6505. },
  6506. {
  6507. "ref": "registry+https://github.com/rust-lang/crates.io-index#brotli@8.0.4",
  6508. "dependsOn": [
  6509. "registry+https://github.com/rust-lang/crates.io-index#alloc-no-stdlib@2.0.4",
  6510. "registry+https://github.com/rust-lang/crates.io-index#alloc-stdlib@0.2.2",
  6511. "registry+https://github.com/rust-lang/crates.io-index#brotli-decompressor@5.0.1"
  6512. ]
  6513. },
  6514. {
  6515. "ref": "registry+https://github.com/rust-lang/crates.io-index#bytes@1.11.1"
  6516. },
  6517. {
  6518. "ref": "registry+https://github.com/rust-lang/crates.io-index#cc@1.2.63",
  6519. "dependsOn": [
  6520. "registry+https://github.com/rust-lang/crates.io-index#find-msvc-tools@0.1.9",
  6521. "registry+https://github.com/rust-lang/crates.io-index#jobserver@0.1.34",
  6522. "registry+https://github.com/rust-lang/crates.io-index#libc@0.2.186",
  6523. "registry+https://github.com/rust-lang/crates.io-index#shlex@2.0.1"
  6524. ]
  6525. },
  6526. {
  6527. "ref": "registry+https://github.com/rust-lang/crates.io-index#cfg-if@1.0.4"
  6528. },
  6529. {
  6530. "ref": "registry+https://github.com/rust-lang/crates.io-index#cfg_aliases@0.2.1"
  6531. },
  6532. {
  6533. "ref": "registry+https://github.com/rust-lang/crates.io-index#chacha20@0.10.0",
  6534. "dependsOn": [
  6535. "registry+https://github.com/rust-lang/crates.io-index#cfg-if@1.0.4",
  6536. "registry+https://github.com/rust-lang/crates.io-index#cpufeatures@0.3.0",
  6537. "registry+https://github.com/rust-lang/crates.io-index#rand_core@0.10.1"
  6538. ]
  6539. },
  6540. {
  6541. "ref": "registry+https://github.com/rust-lang/crates.io-index#cmake@0.1.58",
  6542. "dependsOn": [
  6543. "registry+https://github.com/rust-lang/crates.io-index#cc@1.2.63"
  6544. ]
  6545. },
  6546. {
  6547. "ref": "registry+https://github.com/rust-lang/crates.io-index#compression-codecs@0.4.38",
  6548. "dependsOn": [
  6549. "registry+https://github.com/rust-lang/crates.io-index#brotli@8.0.4",
  6550. "registry+https://github.com/rust-lang/crates.io-index#compression-core@0.4.32",
  6551. "registry+https://github.com/rust-lang/crates.io-index#flate2@1.1.9",
  6552. "registry+https://github.com/rust-lang/crates.io-index#memchr@2.8.1",
  6553. "registry+https://github.com/rust-lang/crates.io-index#zstd@0.13.3",
  6554. "registry+https://github.com/rust-lang/crates.io-index#zstd-safe@7.2.4"
  6555. ]
  6556. },
  6557. {
  6558. "ref": "registry+https://github.com/rust-lang/crates.io-index#compression-core@0.4.32"
  6559. },
  6560. {
  6561. "ref": "registry+https://github.com/rust-lang/crates.io-index#concurrent-queue@2.5.0",
  6562. "dependsOn": [
  6563. "registry+https://github.com/rust-lang/crates.io-index#crossbeam-utils@0.8.21"
  6564. ]
  6565. },
  6566. {
  6567. "ref": "registry+https://github.com/rust-lang/crates.io-index#cookie@0.18.1",
  6568. "dependsOn": [
  6569. "registry+https://github.com/rust-lang/crates.io-index#percent-encoding@2.3.2",
  6570. "registry+https://github.com/rust-lang/crates.io-index#time@0.3.47",
  6571. "registry+https://github.com/rust-lang/crates.io-index#version_check@0.9.5"
  6572. ]
  6573. },
  6574. {
  6575. "ref": "registry+https://github.com/rust-lang/crates.io-index#cookie_store@0.22.1",
  6576. "dependsOn": [
  6577. "registry+https://github.com/rust-lang/crates.io-index#cookie@0.18.1",
  6578. "registry+https://github.com/rust-lang/crates.io-index#document-features@0.2.12",
  6579. "registry+https://github.com/rust-lang/crates.io-index#idna@1.1.0",
  6580. "registry+https://github.com/rust-lang/crates.io-index#log@0.4.32",
  6581. "registry+https://github.com/rust-lang/crates.io-index#publicsuffix@2.3.0",
  6582. "registry+https://github.com/rust-lang/crates.io-index#serde@1.0.228",
  6583. "registry+https://github.com/rust-lang/crates.io-index#serde_derive@1.0.228",
  6584. "registry+https://github.com/rust-lang/crates.io-index#serde_json@1.0.150",
  6585. "registry+https://github.com/rust-lang/crates.io-index#time@0.3.47",
  6586. "registry+https://github.com/rust-lang/crates.io-index#url@2.5.8"
  6587. ]
  6588. },
  6589. {
  6590. "ref": "registry+https://github.com/rust-lang/crates.io-index#cpufeatures@0.3.0"
  6591. },
  6592. {
  6593. "ref": "registry+https://github.com/rust-lang/crates.io-index#crc32fast@1.5.0",
  6594. "dependsOn": [
  6595. "registry+https://github.com/rust-lang/crates.io-index#cfg-if@1.0.4"
  6596. ]
  6597. },
  6598. {
  6599. "ref": "registry+https://github.com/rust-lang/crates.io-index#critical-section@1.2.0"
  6600. },
  6601. {
  6602. "ref": "registry+https://github.com/rust-lang/crates.io-index#crossbeam-channel@0.5.15",
  6603. "dependsOn": [
  6604. "registry+https://github.com/rust-lang/crates.io-index#crossbeam-utils@0.8.21"
  6605. ]
  6606. },
  6607. {
  6608. "ref": "registry+https://github.com/rust-lang/crates.io-index#crossbeam-epoch@0.9.18",
  6609. "dependsOn": [
  6610. "registry+https://github.com/rust-lang/crates.io-index#crossbeam-utils@0.8.21"
  6611. ]
  6612. },
  6613. {
  6614. "ref": "registry+https://github.com/rust-lang/crates.io-index#crossbeam-utils@0.8.21"
  6615. },
  6616. {
  6617. "ref": "registry+https://github.com/rust-lang/crates.io-index#data-encoding@2.11.0"
  6618. },
  6619. {
  6620. "ref": "registry+https://github.com/rust-lang/crates.io-index#deranged@0.5.8",
  6621. "dependsOn": [
  6622. "registry+https://github.com/rust-lang/crates.io-index#powerfmt@0.2.0"
  6623. ]
  6624. },
  6625. {
  6626. "ref": "registry+https://github.com/rust-lang/crates.io-index#displaydoc@0.2.6",
  6627. "dependsOn": [
  6628. "registry+https://github.com/rust-lang/crates.io-index#proc-macro2@1.0.106",
  6629. "registry+https://github.com/rust-lang/crates.io-index#quote@1.0.45",
  6630. "registry+https://github.com/rust-lang/crates.io-index#syn@2.0.117"
  6631. ]
  6632. },
  6633. {
  6634. "ref": "registry+https://github.com/rust-lang/crates.io-index#document-features@0.2.12",
  6635. "dependsOn": [
  6636. "registry+https://github.com/rust-lang/crates.io-index#litrs@1.0.0"
  6637. ]
  6638. },
  6639. {
  6640. "ref": "registry+https://github.com/rust-lang/crates.io-index#dunce@1.0.5"
  6641. },
  6642. {
  6643. "ref": "registry+https://github.com/rust-lang/crates.io-index#either@1.16.0"
  6644. },
  6645. {
  6646. "ref": "registry+https://github.com/rust-lang/crates.io-index#encoding_rs@0.8.35",
  6647. "dependsOn": [
  6648. "registry+https://github.com/rust-lang/crates.io-index#cfg-if@1.0.4"
  6649. ]
  6650. },
  6651. {
  6652. "ref": "registry+https://github.com/rust-lang/crates.io-index#equivalent@1.0.2"
  6653. },
  6654. {
  6655. "ref": "registry+https://github.com/rust-lang/crates.io-index#errors@0.1.0"
  6656. },
  6657. {
  6658. "ref": "registry+https://github.com/rust-lang/crates.io-index#event-listener-strategy@0.5.4",
  6659. "dependsOn": [
  6660. "registry+https://github.com/rust-lang/crates.io-index#event-listener@5.4.1",
  6661. "registry+https://github.com/rust-lang/crates.io-index#pin-project-lite@0.2.17"
  6662. ]
  6663. },
  6664. {
  6665. "ref": "registry+https://github.com/rust-lang/crates.io-index#event-listener@5.4.1",
  6666. "dependsOn": [
  6667. "registry+https://github.com/rust-lang/crates.io-index#concurrent-queue@2.5.0",
  6668. "registry+https://github.com/rust-lang/crates.io-index#parking@2.2.1",
  6669. "registry+https://github.com/rust-lang/crates.io-index#pin-project-lite@0.2.17"
  6670. ]
  6671. },
  6672. {
  6673. "ref": "registry+https://github.com/rust-lang/crates.io-index#fastrand@2.4.1"
  6674. },
  6675. {
  6676. "ref": "registry+https://github.com/rust-lang/crates.io-index#find-msvc-tools@0.1.9"
  6677. },
  6678. {
  6679. "ref": "registry+https://github.com/rust-lang/crates.io-index#flate2@1.1.9",
  6680. "dependsOn": [
  6681. "registry+https://github.com/rust-lang/crates.io-index#crc32fast@1.5.0",
  6682. "registry+https://github.com/rust-lang/crates.io-index#miniz_oxide@0.8.9"
  6683. ]
  6684. },
  6685. {
  6686. "ref": "registry+https://github.com/rust-lang/crates.io-index#fnv@1.0.7"
  6687. },
  6688. {
  6689. "ref": "registry+https://github.com/rust-lang/crates.io-index#form_urlencoded@1.2.2",
  6690. "dependsOn": [
  6691. "registry+https://github.com/rust-lang/crates.io-index#percent-encoding@2.3.2"
  6692. ]
  6693. },
  6694. {
  6695. "ref": "registry+https://github.com/rust-lang/crates.io-index#fs_extra@1.3.0"
  6696. },
  6697. {
  6698. "ref": "registry+https://github.com/rust-lang/crates.io-index#futures-channel@0.3.32",
  6699. "dependsOn": [
  6700. "registry+https://github.com/rust-lang/crates.io-index#futures-core@0.3.32",
  6701. "registry+https://github.com/rust-lang/crates.io-index#futures-sink@0.3.32"
  6702. ]
  6703. },
  6704. {
  6705. "ref": "registry+https://github.com/rust-lang/crates.io-index#futures-core@0.3.32"
  6706. },
  6707. {
  6708. "ref": "registry+https://github.com/rust-lang/crates.io-index#futures-executor@0.3.32",
  6709. "dependsOn": [
  6710. "registry+https://github.com/rust-lang/crates.io-index#futures-core@0.3.32",
  6711. "registry+https://github.com/rust-lang/crates.io-index#futures-task@0.3.32",
  6712. "registry+https://github.com/rust-lang/crates.io-index#futures-util@0.3.32"
  6713. ]
  6714. },
  6715. {
  6716. "ref": "registry+https://github.com/rust-lang/crates.io-index#futures-io@0.3.32"
  6717. },
  6718. {
  6719. "ref": "registry+https://github.com/rust-lang/crates.io-index#futures-macro@0.3.32",
  6720. "dependsOn": [
  6721. "registry+https://github.com/rust-lang/crates.io-index#proc-macro2@1.0.106",
  6722. "registry+https://github.com/rust-lang/crates.io-index#quote@1.0.45",
  6723. "registry+https://github.com/rust-lang/crates.io-index#syn@2.0.117"
  6724. ]
  6725. },
  6726. {
  6727. "ref": "registry+https://github.com/rust-lang/crates.io-index#futures-sink@0.3.32"
  6728. },
  6729. {
  6730. "ref": "registry+https://github.com/rust-lang/crates.io-index#futures-task@0.3.32"
  6731. },
  6732. {
  6733. "ref": "registry+https://github.com/rust-lang/crates.io-index#futures-util@0.3.32",
  6734. "dependsOn": [
  6735. "registry+https://github.com/rust-lang/crates.io-index#futures-channel@0.3.32",
  6736. "registry+https://github.com/rust-lang/crates.io-index#futures-core@0.3.32",
  6737. "registry+https://github.com/rust-lang/crates.io-index#futures-io@0.3.32",
  6738. "registry+https://github.com/rust-lang/crates.io-index#futures-macro@0.3.32",
  6739. "registry+https://github.com/rust-lang/crates.io-index#futures-sink@0.3.32",
  6740. "registry+https://github.com/rust-lang/crates.io-index#futures-task@0.3.32",
  6741. "registry+https://github.com/rust-lang/crates.io-index#memchr@2.8.1",
  6742. "registry+https://github.com/rust-lang/crates.io-index#pin-project-lite@0.2.17",
  6743. "registry+https://github.com/rust-lang/crates.io-index#slab@0.4.12"
  6744. ]
  6745. },
  6746. {
  6747. "ref": "registry+https://github.com/rust-lang/crates.io-index#futures@0.3.32",
  6748. "dependsOn": [
  6749. "registry+https://github.com/rust-lang/crates.io-index#futures-channel@0.3.32",
  6750. "registry+https://github.com/rust-lang/crates.io-index#futures-core@0.3.32",
  6751. "registry+https://github.com/rust-lang/crates.io-index#futures-executor@0.3.32",
  6752. "registry+https://github.com/rust-lang/crates.io-index#futures-io@0.3.32",
  6753. "registry+https://github.com/rust-lang/crates.io-index#futures-sink@0.3.32",
  6754. "registry+https://github.com/rust-lang/crates.io-index#futures-task@0.3.32",
  6755. "registry+https://github.com/rust-lang/crates.io-index#futures-util@0.3.32"
  6756. ]
  6757. },
  6758. {
  6759. "ref": "registry+https://github.com/rust-lang/crates.io-index#getrandom@0.2.17",
  6760. "dependsOn": [
  6761. "registry+https://github.com/rust-lang/crates.io-index#cfg-if@1.0.4",
  6762. "registry+https://github.com/rust-lang/crates.io-index#libc@0.2.186"
  6763. ]
  6764. },
  6765. {
  6766. "ref": "registry+https://github.com/rust-lang/crates.io-index#getrandom@0.3.4",
  6767. "dependsOn": [
  6768. "registry+https://github.com/rust-lang/crates.io-index#cfg-if@1.0.4",
  6769. "registry+https://github.com/rust-lang/crates.io-index#libc@0.2.186"
  6770. ]
  6771. },
  6772. {
  6773. "ref": "registry+https://github.com/rust-lang/crates.io-index#getrandom@0.4.2",
  6774. "dependsOn": [
  6775. "registry+https://github.com/rust-lang/crates.io-index#cfg-if@1.0.4",
  6776. "registry+https://github.com/rust-lang/crates.io-index#libc@0.2.186",
  6777. "registry+https://github.com/rust-lang/crates.io-index#rand_core@0.10.1"
  6778. ]
  6779. },
  6780. {
  6781. "ref": "registry+https://github.com/rust-lang/crates.io-index#h2@0.4.14",
  6782. "dependsOn": [
  6783. "registry+https://github.com/rust-lang/crates.io-index#atomic-waker@1.1.2",
  6784. "registry+https://github.com/rust-lang/crates.io-index#bytes@1.11.1",
  6785. "registry+https://github.com/rust-lang/crates.io-index#fnv@1.0.7",
  6786. "registry+https://github.com/rust-lang/crates.io-index#futures-core@0.3.32",
  6787. "registry+https://github.com/rust-lang/crates.io-index#futures-sink@0.3.32",
  6788. "registry+https://github.com/rust-lang/crates.io-index#http@1.4.2",
  6789. "registry+https://github.com/rust-lang/crates.io-index#indexmap@2.14.0",
  6790. "registry+https://github.com/rust-lang/crates.io-index#slab@0.4.12",
  6791. "registry+https://github.com/rust-lang/crates.io-index#tokio@1.52.3",
  6792. "registry+https://github.com/rust-lang/crates.io-index#tokio-util@0.7.18",
  6793. "registry+https://github.com/rust-lang/crates.io-index#tracing@0.1.44"
  6794. ]
  6795. },
  6796. {
  6797. "ref": "registry+https://github.com/rust-lang/crates.io-index#h3-quinn@0.0.10",
  6798. "dependsOn": [
  6799. "registry+https://github.com/rust-lang/crates.io-index#bytes@1.11.1",
  6800. "registry+https://github.com/rust-lang/crates.io-index#futures@0.3.32",
  6801. "registry+https://github.com/rust-lang/crates.io-index#h3@0.0.8",
  6802. "registry+https://github.com/rust-lang/crates.io-index#quinn@0.11.9",
  6803. "registry+https://github.com/rust-lang/crates.io-index#tokio@1.52.3",
  6804. "registry+https://github.com/rust-lang/crates.io-index#tokio-util@0.7.18"
  6805. ]
  6806. },
  6807. {
  6808. "ref": "registry+https://github.com/rust-lang/crates.io-index#h3@0.0.8",
  6809. "dependsOn": [
  6810. "registry+https://github.com/rust-lang/crates.io-index#bytes@1.11.1",
  6811. "registry+https://github.com/rust-lang/crates.io-index#fastrand@2.4.1",
  6812. "registry+https://github.com/rust-lang/crates.io-index#futures-util@0.3.32",
  6813. "registry+https://github.com/rust-lang/crates.io-index#http@1.4.2",
  6814. "registry+https://github.com/rust-lang/crates.io-index#pin-project-lite@0.2.17",
  6815. "registry+https://github.com/rust-lang/crates.io-index#tokio@1.52.3"
  6816. ]
  6817. },
  6818. {
  6819. "ref": "registry+https://github.com/rust-lang/crates.io-index#hashbrown@0.17.1"
  6820. },
  6821. {
  6822. "ref": "registry+https://github.com/rust-lang/crates.io-index#heck@0.5.0"
  6823. },
  6824. {
  6825. "ref": "registry+https://github.com/rust-lang/crates.io-index#hickory-net@0.26.1",
  6826. "dependsOn": [
  6827. "registry+https://github.com/rust-lang/crates.io-index#async-trait@0.1.89",
  6828. "registry+https://github.com/rust-lang/crates.io-index#cfg-if@1.0.4",
  6829. "registry+https://github.com/rust-lang/crates.io-index#data-encoding@2.11.0",
  6830. "registry+https://github.com/rust-lang/crates.io-index#futures-channel@0.3.32",
  6831. "registry+https://github.com/rust-lang/crates.io-index#futures-io@0.3.32",
  6832. "registry+https://github.com/rust-lang/crates.io-index#futures-util@0.3.32",
  6833. "registry+https://github.com/rust-lang/crates.io-index#hickory-proto@0.26.1",
  6834. "registry+https://github.com/rust-lang/crates.io-index#idna@1.1.0",
  6835. "registry+https://github.com/rust-lang/crates.io-index#ipnet@2.12.0",
  6836. "registry+https://github.com/rust-lang/crates.io-index#rand@0.10.1",
  6837. "registry+https://github.com/rust-lang/crates.io-index#thiserror@2.0.18",
  6838. "registry+https://github.com/rust-lang/crates.io-index#tinyvec@1.11.0",
  6839. "registry+https://github.com/rust-lang/crates.io-index#tokio@1.52.3",
  6840. "registry+https://github.com/rust-lang/crates.io-index#tracing@0.1.44",
  6841. "registry+https://github.com/rust-lang/crates.io-index#url@2.5.8"
  6842. ]
  6843. },
  6844. {
  6845. "ref": "registry+https://github.com/rust-lang/crates.io-index#hickory-proto@0.26.1",
  6846. "dependsOn": [
  6847. "registry+https://github.com/rust-lang/crates.io-index#data-encoding@2.11.0",
  6848. "registry+https://github.com/rust-lang/crates.io-index#idna@1.1.0",
  6849. "registry+https://github.com/rust-lang/crates.io-index#ipnet@2.12.0",
  6850. "registry+https://github.com/rust-lang/crates.io-index#once_cell@1.21.4",
  6851. "registry+https://github.com/rust-lang/crates.io-index#prefix-trie@0.8.4",
  6852. "registry+https://github.com/rust-lang/crates.io-index#rand@0.10.1",
  6853. "registry+https://github.com/rust-lang/crates.io-index#ring@0.17.14",
  6854. "registry+https://github.com/rust-lang/crates.io-index#thiserror@2.0.18",
  6855. "registry+https://github.com/rust-lang/crates.io-index#tinyvec@1.11.0",
  6856. "registry+https://github.com/rust-lang/crates.io-index#tracing@0.1.44",
  6857. "registry+https://github.com/rust-lang/crates.io-index#url@2.5.8"
  6858. ]
  6859. },
  6860. {
  6861. "ref": "registry+https://github.com/rust-lang/crates.io-index#hickory-resolver@0.26.1",
  6862. "dependsOn": [
  6863. "registry+https://github.com/rust-lang/crates.io-index#cfg-if@1.0.4",
  6864. "registry+https://github.com/rust-lang/crates.io-index#futures-util@0.3.32",
  6865. "registry+https://github.com/rust-lang/crates.io-index#hickory-net@0.26.1",
  6866. "registry+https://github.com/rust-lang/crates.io-index#hickory-proto@0.26.1",
  6867. "registry+https://github.com/rust-lang/crates.io-index#ipnet@2.12.0",
  6868. "registry+https://github.com/rust-lang/crates.io-index#moka@0.12.15",
  6869. "registry+https://github.com/rust-lang/crates.io-index#once_cell@1.21.4",
  6870. "registry+https://github.com/rust-lang/crates.io-index#parking_lot@0.12.5",
  6871. "registry+https://github.com/rust-lang/crates.io-index#rand@0.10.1",
  6872. "registry+https://github.com/rust-lang/crates.io-index#resolv-conf@0.7.6",
  6873. "registry+https://github.com/rust-lang/crates.io-index#smallvec@1.15.1",
  6874. "registry+https://github.com/rust-lang/crates.io-index#thiserror@2.0.18",
  6875. "registry+https://github.com/rust-lang/crates.io-index#tokio@1.52.3",
  6876. "registry+https://github.com/rust-lang/crates.io-index#tracing@0.1.44"
  6877. ]
  6878. },
  6879. {
  6880. "ref": "registry+https://github.com/rust-lang/crates.io-index#http-body-util@0.1.3",
  6881. "dependsOn": [
  6882. "registry+https://github.com/rust-lang/crates.io-index#bytes@1.11.1",
  6883. "registry+https://github.com/rust-lang/crates.io-index#futures-core@0.3.32",
  6884. "registry+https://github.com/rust-lang/crates.io-index#http@1.4.2",
  6885. "registry+https://github.com/rust-lang/crates.io-index#http-body@1.0.1",
  6886. "registry+https://github.com/rust-lang/crates.io-index#pin-project-lite@0.2.17"
  6887. ]
  6888. },
  6889. {
  6890. "ref": "registry+https://github.com/rust-lang/crates.io-index#http-body@1.0.1",
  6891. "dependsOn": [
  6892. "registry+https://github.com/rust-lang/crates.io-index#bytes@1.11.1",
  6893. "registry+https://github.com/rust-lang/crates.io-index#http@1.4.2"
  6894. ]
  6895. },
  6896. {
  6897. "ref": "registry+https://github.com/rust-lang/crates.io-index#http@1.4.2",
  6898. "dependsOn": [
  6899. "registry+https://github.com/rust-lang/crates.io-index#bytes@1.11.1",
  6900. "registry+https://github.com/rust-lang/crates.io-index#itoa@1.0.18"
  6901. ]
  6902. },
  6903. {
  6904. "ref": "registry+https://github.com/rust-lang/crates.io-index#httparse@1.10.1"
  6905. },
  6906. {
  6907. "ref": "registry+https://github.com/rust-lang/crates.io-index#hyper-rustls@0.27.9",
  6908. "dependsOn": [
  6909. "registry+https://github.com/rust-lang/crates.io-index#http@1.4.2",
  6910. "registry+https://github.com/rust-lang/crates.io-index#hyper@1.10.1",
  6911. "registry+https://github.com/rust-lang/crates.io-index#hyper-util@0.1.20",
  6912. "registry+https://github.com/rust-lang/crates.io-index#rustls@0.23.40",
  6913. "registry+https://github.com/rust-lang/crates.io-index#tokio@1.52.3",
  6914. "registry+https://github.com/rust-lang/crates.io-index#tokio-rustls@0.26.4",
  6915. "registry+https://github.com/rust-lang/crates.io-index#tower-service@0.3.3"
  6916. ]
  6917. },
  6918. {
  6919. "ref": "registry+https://github.com/rust-lang/crates.io-index#hyper-util@0.1.20",
  6920. "dependsOn": [
  6921. "registry+https://github.com/rust-lang/crates.io-index#base64@0.22.1",
  6922. "registry+https://github.com/rust-lang/crates.io-index#bytes@1.11.1",
  6923. "registry+https://github.com/rust-lang/crates.io-index#futures-channel@0.3.32",
  6924. "registry+https://github.com/rust-lang/crates.io-index#futures-util@0.3.32",
  6925. "registry+https://github.com/rust-lang/crates.io-index#http@1.4.2",
  6926. "registry+https://github.com/rust-lang/crates.io-index#http-body@1.0.1",
  6927. "registry+https://github.com/rust-lang/crates.io-index#hyper@1.10.1",
  6928. "registry+https://github.com/rust-lang/crates.io-index#ipnet@2.12.0",
  6929. "registry+https://github.com/rust-lang/crates.io-index#libc@0.2.186",
  6930. "registry+https://github.com/rust-lang/crates.io-index#percent-encoding@2.3.2",
  6931. "registry+https://github.com/rust-lang/crates.io-index#pin-project-lite@0.2.17",
  6932. "registry+https://github.com/rust-lang/crates.io-index#socket2@0.6.4",
  6933. "registry+https://github.com/rust-lang/crates.io-index#tokio@1.52.3",
  6934. "registry+https://github.com/rust-lang/crates.io-index#tower-service@0.3.3",
  6935. "registry+https://github.com/rust-lang/crates.io-index#tracing@0.1.44"
  6936. ]
  6937. },
  6938. {
  6939. "ref": "registry+https://github.com/rust-lang/crates.io-index#hyper@1.10.1",
  6940. "dependsOn": [
  6941. "registry+https://github.com/rust-lang/crates.io-index#atomic-waker@1.1.2",
  6942. "registry+https://github.com/rust-lang/crates.io-index#bytes@1.11.1",
  6943. "registry+https://github.com/rust-lang/crates.io-index#futures-channel@0.3.32",
  6944. "registry+https://github.com/rust-lang/crates.io-index#futures-core@0.3.32",
  6945. "registry+https://github.com/rust-lang/crates.io-index#h2@0.4.14",
  6946. "registry+https://github.com/rust-lang/crates.io-index#http@1.4.2",
  6947. "registry+https://github.com/rust-lang/crates.io-index#http-body@1.0.1",
  6948. "registry+https://github.com/rust-lang/crates.io-index#httparse@1.10.1",
  6949. "registry+https://github.com/rust-lang/crates.io-index#itoa@1.0.18",
  6950. "registry+https://github.com/rust-lang/crates.io-index#pin-project-lite@0.2.17",
  6951. "registry+https://github.com/rust-lang/crates.io-index#smallvec@1.15.1",
  6952. "registry+https://github.com/rust-lang/crates.io-index#tokio@1.52.3",
  6953. "registry+https://github.com/rust-lang/crates.io-index#want@0.3.1"
  6954. ]
  6955. },
  6956. {
  6957. "ref": "registry+https://github.com/rust-lang/crates.io-index#icu_collections@2.2.0",
  6958. "dependsOn": [
  6959. "registry+https://github.com/rust-lang/crates.io-index#displaydoc@0.2.6",
  6960. "registry+https://github.com/rust-lang/crates.io-index#potential_utf@0.1.5",
  6961. "registry+https://github.com/rust-lang/crates.io-index#utf8_iter@1.0.4",
  6962. "registry+https://github.com/rust-lang/crates.io-index#yoke@0.8.3",
  6963. "registry+https://github.com/rust-lang/crates.io-index#zerofrom@0.1.8",
  6964. "registry+https://github.com/rust-lang/crates.io-index#zerovec@0.11.6"
  6965. ]
  6966. },
  6967. {
  6968. "ref": "registry+https://github.com/rust-lang/crates.io-index#icu_locale_core@2.2.0",
  6969. "dependsOn": [
  6970. "registry+https://github.com/rust-lang/crates.io-index#displaydoc@0.2.6",
  6971. "registry+https://github.com/rust-lang/crates.io-index#litemap@0.8.2",
  6972. "registry+https://github.com/rust-lang/crates.io-index#tinystr@0.8.3",
  6973. "registry+https://github.com/rust-lang/crates.io-index#writeable@0.6.3",
  6974. "registry+https://github.com/rust-lang/crates.io-index#zerovec@0.11.6"
  6975. ]
  6976. },
  6977. {
  6978. "ref": "registry+https://github.com/rust-lang/crates.io-index#icu_normalizer@2.2.0",
  6979. "dependsOn": [
  6980. "registry+https://github.com/rust-lang/crates.io-index#icu_collections@2.2.0",
  6981. "registry+https://github.com/rust-lang/crates.io-index#icu_normalizer_data@2.2.0",
  6982. "registry+https://github.com/rust-lang/crates.io-index#icu_properties@2.2.0",
  6983. "registry+https://github.com/rust-lang/crates.io-index#icu_provider@2.2.0",
  6984. "registry+https://github.com/rust-lang/crates.io-index#smallvec@1.15.1",
  6985. "registry+https://github.com/rust-lang/crates.io-index#zerovec@0.11.6"
  6986. ]
  6987. },
  6988. {
  6989. "ref": "registry+https://github.com/rust-lang/crates.io-index#icu_normalizer_data@2.2.0"
  6990. },
  6991. {
  6992. "ref": "registry+https://github.com/rust-lang/crates.io-index#icu_properties@2.2.0",
  6993. "dependsOn": [
  6994. "registry+https://github.com/rust-lang/crates.io-index#icu_collections@2.2.0",
  6995. "registry+https://github.com/rust-lang/crates.io-index#icu_locale_core@2.2.0",
  6996. "registry+https://github.com/rust-lang/crates.io-index#icu_properties_data@2.2.0",
  6997. "registry+https://github.com/rust-lang/crates.io-index#icu_provider@2.2.0",
  6998. "registry+https://github.com/rust-lang/crates.io-index#zerotrie@0.2.4",
  6999. "registry+https://github.com/rust-lang/crates.io-index#zerovec@0.11.6"
  7000. ]
  7001. },
  7002. {
  7003. "ref": "registry+https://github.com/rust-lang/crates.io-index#icu_properties_data@2.2.0"
  7004. },
  7005. {
  7006. "ref": "registry+https://github.com/rust-lang/crates.io-index#icu_provider@2.2.0",
  7007. "dependsOn": [
  7008. "registry+https://github.com/rust-lang/crates.io-index#displaydoc@0.2.6",
  7009. "registry+https://github.com/rust-lang/crates.io-index#icu_locale_core@2.2.0",
  7010. "registry+https://github.com/rust-lang/crates.io-index#writeable@0.6.3",
  7011. "registry+https://github.com/rust-lang/crates.io-index#yoke@0.8.3",
  7012. "registry+https://github.com/rust-lang/crates.io-index#zerofrom@0.1.8",
  7013. "registry+https://github.com/rust-lang/crates.io-index#zerotrie@0.2.4",
  7014. "registry+https://github.com/rust-lang/crates.io-index#zerovec@0.11.6"
  7015. ]
  7016. },
  7017. {
  7018. "ref": "registry+https://github.com/rust-lang/crates.io-index#idna@1.1.0",
  7019. "dependsOn": [
  7020. "registry+https://github.com/rust-lang/crates.io-index#idna_adapter@1.2.2",
  7021. "registry+https://github.com/rust-lang/crates.io-index#smallvec@1.15.1",
  7022. "registry+https://github.com/rust-lang/crates.io-index#utf8_iter@1.0.4"
  7023. ]
  7024. },
  7025. {
  7026. "ref": "registry+https://github.com/rust-lang/crates.io-index#idna_adapter@1.2.2",
  7027. "dependsOn": [
  7028. "registry+https://github.com/rust-lang/crates.io-index#icu_normalizer@2.2.0",
  7029. "registry+https://github.com/rust-lang/crates.io-index#icu_properties@2.2.0"
  7030. ]
  7031. },
  7032. {
  7033. "ref": "registry+https://github.com/rust-lang/crates.io-index#indexmap@2.14.0",
  7034. "dependsOn": [
  7035. "registry+https://github.com/rust-lang/crates.io-index#equivalent@1.0.2",
  7036. "registry+https://github.com/rust-lang/crates.io-index#hashbrown@0.17.1",
  7037. "registry+https://github.com/rust-lang/crates.io-index#serde_core@1.0.228"
  7038. ]
  7039. },
  7040. {
  7041. "ref": "registry+https://github.com/rust-lang/crates.io-index#instant@0.1.13",
  7042. "dependsOn": [
  7043. "registry+https://github.com/rust-lang/crates.io-index#cfg-if@1.0.4"
  7044. ]
  7045. },
  7046. {
  7047. "ref": "registry+https://github.com/rust-lang/crates.io-index#ipnet@2.12.0",
  7048. "dependsOn": [
  7049. "registry+https://github.com/rust-lang/crates.io-index#serde@1.0.228"
  7050. ]
  7051. },
  7052. {
  7053. "ref": "registry+https://github.com/rust-lang/crates.io-index#itoa@1.0.18"
  7054. },
  7055. {
  7056. "ref": "registry+https://github.com/rust-lang/crates.io-index#jobserver@0.1.34",
  7057. "dependsOn": [
  7058. "registry+https://github.com/rust-lang/crates.io-index#libc@0.2.186"
  7059. ]
  7060. },
  7061. {
  7062. "ref": "registry+https://github.com/rust-lang/crates.io-index#libc@0.2.186"
  7063. },
  7064. {
  7065. "ref": "registry+https://github.com/rust-lang/crates.io-index#litemap@0.8.2"
  7066. },
  7067. {
  7068. "ref": "registry+https://github.com/rust-lang/crates.io-index#litrs@1.0.0"
  7069. },
  7070. {
  7071. "ref": "registry+https://github.com/rust-lang/crates.io-index#lock_api@0.4.14",
  7072. "dependsOn": [
  7073. "registry+https://github.com/rust-lang/crates.io-index#scopeguard@1.2.0"
  7074. ]
  7075. },
  7076. {
  7077. "ref": "registry+https://github.com/rust-lang/crates.io-index#log@0.4.32"
  7078. },
  7079. {
  7080. "ref": "registry+https://github.com/rust-lang/crates.io-index#lru-slab@0.1.2"
  7081. },
  7082. {
  7083. "ref": "registry+https://github.com/rust-lang/crates.io-index#memchr@2.8.1"
  7084. },
  7085. {
  7086. "ref": "registry+https://github.com/rust-lang/crates.io-index#mime@0.3.17"
  7087. },
  7088. {
  7089. "ref": "registry+https://github.com/rust-lang/crates.io-index#miniz_oxide@0.8.9",
  7090. "dependsOn": [
  7091. "registry+https://github.com/rust-lang/crates.io-index#adler2@2.0.1",
  7092. "registry+https://github.com/rust-lang/crates.io-index#simd-adler32@0.3.9"
  7093. ]
  7094. },
  7095. {
  7096. "ref": "registry+https://github.com/rust-lang/crates.io-index#mio@1.2.1",
  7097. "dependsOn": [
  7098. "registry+https://github.com/rust-lang/crates.io-index#libc@0.2.186"
  7099. ]
  7100. },
  7101. {
  7102. "ref": "registry+https://github.com/rust-lang/crates.io-index#moka@0.12.15",
  7103. "dependsOn": [
  7104. "registry+https://github.com/rust-lang/crates.io-index#crossbeam-channel@0.5.15",
  7105. "registry+https://github.com/rust-lang/crates.io-index#crossbeam-epoch@0.9.18",
  7106. "registry+https://github.com/rust-lang/crates.io-index#crossbeam-utils@0.8.21",
  7107. "registry+https://github.com/rust-lang/crates.io-index#equivalent@1.0.2",
  7108. "registry+https://github.com/rust-lang/crates.io-index#parking_lot@0.12.5",
  7109. "registry+https://github.com/rust-lang/crates.io-index#portable-atomic@1.13.1",
  7110. "registry+https://github.com/rust-lang/crates.io-index#smallvec@1.15.1",
  7111. "registry+https://github.com/rust-lang/crates.io-index#tagptr@0.2.0",
  7112. "registry+https://github.com/rust-lang/crates.io-index#uuid@1.23.3"
  7113. ]
  7114. },
  7115. {
  7116. "ref": "registry+https://github.com/rust-lang/crates.io-index#num-conv@0.2.2"
  7117. },
  7118. {
  7119. "ref": "registry+https://github.com/rust-lang/crates.io-index#num-traits@0.2.19",
  7120. "dependsOn": [
  7121. "registry+https://github.com/rust-lang/crates.io-index#autocfg@1.5.1"
  7122. ]
  7123. },
  7124. {
  7125. "ref": "registry+https://github.com/rust-lang/crates.io-index#once_cell@1.21.4",
  7126. "dependsOn": [
  7127. "registry+https://github.com/rust-lang/crates.io-index#critical-section@1.2.0",
  7128. "registry+https://github.com/rust-lang/crates.io-index#portable-atomic@1.13.1"
  7129. ]
  7130. },
  7131. {
  7132. "ref": "registry+https://github.com/rust-lang/crates.io-index#openssl-probe@0.2.1"
  7133. },
  7134. {
  7135. "ref": "registry+https://github.com/rust-lang/crates.io-index#parking@2.2.1"
  7136. },
  7137. {
  7138. "ref": "registry+https://github.com/rust-lang/crates.io-index#parking_lot@0.12.5",
  7139. "dependsOn": [
  7140. "registry+https://github.com/rust-lang/crates.io-index#lock_api@0.4.14",
  7141. "registry+https://github.com/rust-lang/crates.io-index#parking_lot_core@0.9.12"
  7142. ]
  7143. },
  7144. {
  7145. "ref": "registry+https://github.com/rust-lang/crates.io-index#parking_lot_core@0.9.12",
  7146. "dependsOn": [
  7147. "registry+https://github.com/rust-lang/crates.io-index#cfg-if@1.0.4",
  7148. "registry+https://github.com/rust-lang/crates.io-index#libc@0.2.186",
  7149. "registry+https://github.com/rust-lang/crates.io-index#smallvec@1.15.1"
  7150. ]
  7151. },
  7152. {
  7153. "ref": "registry+https://github.com/rust-lang/crates.io-index#percent-encoding@2.3.2"
  7154. },
  7155. {
  7156. "ref": "registry+https://github.com/rust-lang/crates.io-index#pin-project-lite@0.2.17"
  7157. },
  7158. {
  7159. "ref": "registry+https://github.com/rust-lang/crates.io-index#pkg-config@0.3.33"
  7160. },
  7161. {
  7162. "ref": "registry+https://github.com/rust-lang/crates.io-index#portable-atomic@1.13.1"
  7163. },
  7164. {
  7165. "ref": "registry+https://github.com/rust-lang/crates.io-index#potential_utf@0.1.5",
  7166. "dependsOn": [
  7167. "registry+https://github.com/rust-lang/crates.io-index#zerovec@0.11.6"
  7168. ]
  7169. },
  7170. {
  7171. "ref": "registry+https://github.com/rust-lang/crates.io-index#powerfmt@0.2.0"
  7172. },
  7173. {
  7174. "ref": "registry+https://github.com/rust-lang/crates.io-index#ppv-lite86@0.2.21",
  7175. "dependsOn": [
  7176. "registry+https://github.com/rust-lang/crates.io-index#zerocopy@0.8.52"
  7177. ]
  7178. },
  7179. {
  7180. "ref": "registry+https://github.com/rust-lang/crates.io-index#prefix-trie@0.8.4",
  7181. "dependsOn": [
  7182. "registry+https://github.com/rust-lang/crates.io-index#either@1.16.0",
  7183. "registry+https://github.com/rust-lang/crates.io-index#ipnet@2.12.0",
  7184. "registry+https://github.com/rust-lang/crates.io-index#num-traits@0.2.19"
  7185. ]
  7186. },
  7187. {
  7188. "ref": "registry+https://github.com/rust-lang/crates.io-index#proc-macro2@1.0.106",
  7189. "dependsOn": [
  7190. "registry+https://github.com/rust-lang/crates.io-index#unicode-ident@1.0.24"
  7191. ]
  7192. },
  7193. {
  7194. "ref": "registry+https://github.com/rust-lang/crates.io-index#psl-types@2.0.11"
  7195. },
  7196. {
  7197. "ref": "registry+https://github.com/rust-lang/crates.io-index#publicsuffix@2.3.0",
  7198. "dependsOn": [
  7199. "registry+https://github.com/rust-lang/crates.io-index#idna@1.1.0",
  7200. "registry+https://github.com/rust-lang/crates.io-index#psl-types@2.0.11"
  7201. ]
  7202. },
  7203. {
  7204. "ref": "registry+https://github.com/rust-lang/crates.io-index#pyo3-async-runtimes@0.29.0",
  7205. "dependsOn": [
  7206. "registry+https://github.com/rust-lang/crates.io-index#async-channel@2.5.0",
  7207. "registry+https://github.com/rust-lang/crates.io-index#futures-channel@0.3.32",
  7208. "registry+https://github.com/rust-lang/crates.io-index#futures-util@0.3.32",
  7209. "registry+https://github.com/rust-lang/crates.io-index#once_cell@1.21.4",
  7210. "registry+https://github.com/rust-lang/crates.io-index#pin-project-lite@0.2.17",
  7211. "registry+https://github.com/rust-lang/crates.io-index#pyo3@0.29.0",
  7212. "registry+https://github.com/rust-lang/crates.io-index#tokio@1.52.3"
  7213. ]
  7214. },
  7215. {
  7216. "ref": "registry+https://github.com/rust-lang/crates.io-index#pyo3-build-config@0.29.0",
  7217. "dependsOn": [
  7218. "registry+https://github.com/rust-lang/crates.io-index#target-lexicon@0.13.5"
  7219. ]
  7220. },
  7221. {
  7222. "ref": "registry+https://github.com/rust-lang/crates.io-index#pyo3-ffi@0.29.0",
  7223. "dependsOn": [
  7224. "registry+https://github.com/rust-lang/crates.io-index#libc@0.2.186",
  7225. "registry+https://github.com/rust-lang/crates.io-index#pyo3-build-config@0.29.0"
  7226. ]
  7227. },
  7228. {
  7229. "ref": "registry+https://github.com/rust-lang/crates.io-index#pyo3-macros-backend@0.29.0",
  7230. "dependsOn": [
  7231. "registry+https://github.com/rust-lang/crates.io-index#heck@0.5.0",
  7232. "registry+https://github.com/rust-lang/crates.io-index#proc-macro2@1.0.106",
  7233. "registry+https://github.com/rust-lang/crates.io-index#quote@1.0.45",
  7234. "registry+https://github.com/rust-lang/crates.io-index#syn@2.0.117"
  7235. ]
  7236. },
  7237. {
  7238. "ref": "registry+https://github.com/rust-lang/crates.io-index#pyo3-macros@0.29.0",
  7239. "dependsOn": [
  7240. "registry+https://github.com/rust-lang/crates.io-index#proc-macro2@1.0.106",
  7241. "registry+https://github.com/rust-lang/crates.io-index#pyo3-macros-backend@0.29.0",
  7242. "registry+https://github.com/rust-lang/crates.io-index#quote@1.0.45",
  7243. "registry+https://github.com/rust-lang/crates.io-index#syn@2.0.117"
  7244. ]
  7245. },
  7246. {
  7247. "ref": "registry+https://github.com/rust-lang/crates.io-index#pyo3@0.29.0",
  7248. "dependsOn": [
  7249. "registry+https://github.com/rust-lang/crates.io-index#bytes@1.11.1",
  7250. "registry+https://github.com/rust-lang/crates.io-index#libc@0.2.186",
  7251. "registry+https://github.com/rust-lang/crates.io-index#once_cell@1.21.4",
  7252. "registry+https://github.com/rust-lang/crates.io-index#pyo3-build-config@0.29.0",
  7253. "registry+https://github.com/rust-lang/crates.io-index#pyo3-ffi@0.29.0",
  7254. "registry+https://github.com/rust-lang/crates.io-index#pyo3-macros@0.29.0"
  7255. ]
  7256. },
  7257. {
  7258. "ref": "registry+https://github.com/rust-lang/crates.io-index#quinn-proto@0.11.14",
  7259. "dependsOn": [
  7260. "registry+https://github.com/rust-lang/crates.io-index#aws-lc-rs@1.17.0",
  7261. "registry+https://github.com/rust-lang/crates.io-index#bytes@1.11.1",
  7262. "registry+https://github.com/rust-lang/crates.io-index#lru-slab@0.1.2",
  7263. "registry+https://github.com/rust-lang/crates.io-index#rand@0.9.4",
  7264. "registry+https://github.com/rust-lang/crates.io-index#rustc-hash@2.1.2",
  7265. "registry+https://github.com/rust-lang/crates.io-index#rustls@0.23.40",
  7266. "registry+https://github.com/rust-lang/crates.io-index#slab@0.4.12",
  7267. "registry+https://github.com/rust-lang/crates.io-index#thiserror@2.0.18",
  7268. "registry+https://github.com/rust-lang/crates.io-index#tinyvec@1.11.0",
  7269. "registry+https://github.com/rust-lang/crates.io-index#tracing@0.1.44"
  7270. ]
  7271. },
  7272. {
  7273. "ref": "registry+https://github.com/rust-lang/crates.io-index#quinn-udp@0.5.14",
  7274. "dependsOn": [
  7275. "registry+https://github.com/rust-lang/crates.io-index#cfg_aliases@0.2.1",
  7276. "registry+https://github.com/rust-lang/crates.io-index#libc@0.2.186",
  7277. "registry+https://github.com/rust-lang/crates.io-index#socket2@0.6.4",
  7278. "registry+https://github.com/rust-lang/crates.io-index#tracing@0.1.44"
  7279. ]
  7280. },
  7281. {
  7282. "ref": "registry+https://github.com/rust-lang/crates.io-index#quinn@0.11.9",
  7283. "dependsOn": [
  7284. "registry+https://github.com/rust-lang/crates.io-index#bytes@1.11.1",
  7285. "registry+https://github.com/rust-lang/crates.io-index#cfg_aliases@0.2.1",
  7286. "registry+https://github.com/rust-lang/crates.io-index#futures-io@0.3.32",
  7287. "registry+https://github.com/rust-lang/crates.io-index#pin-project-lite@0.2.17",
  7288. "registry+https://github.com/rust-lang/crates.io-index#quinn-proto@0.11.14",
  7289. "registry+https://github.com/rust-lang/crates.io-index#quinn-udp@0.5.14",
  7290. "registry+https://github.com/rust-lang/crates.io-index#rustc-hash@2.1.2",
  7291. "registry+https://github.com/rust-lang/crates.io-index#rustls@0.23.40",
  7292. "registry+https://github.com/rust-lang/crates.io-index#socket2@0.6.4",
  7293. "registry+https://github.com/rust-lang/crates.io-index#thiserror@2.0.18",
  7294. "registry+https://github.com/rust-lang/crates.io-index#tokio@1.52.3",
  7295. "registry+https://github.com/rust-lang/crates.io-index#tracing@0.1.44"
  7296. ]
  7297. },
  7298. {
  7299. "ref": "registry+https://github.com/rust-lang/crates.io-index#quote@1.0.45",
  7300. "dependsOn": [
  7301. "registry+https://github.com/rust-lang/crates.io-index#proc-macro2@1.0.106"
  7302. ]
  7303. },
  7304. {
  7305. "ref": "registry+https://github.com/rust-lang/crates.io-index#rand@0.10.1",
  7306. "dependsOn": [
  7307. "registry+https://github.com/rust-lang/crates.io-index#chacha20@0.10.0",
  7308. "registry+https://github.com/rust-lang/crates.io-index#getrandom@0.4.2",
  7309. "registry+https://github.com/rust-lang/crates.io-index#rand_core@0.10.1"
  7310. ]
  7311. },
  7312. {
  7313. "ref": "registry+https://github.com/rust-lang/crates.io-index#rand@0.8.6",
  7314. "dependsOn": [
  7315. "registry+https://github.com/rust-lang/crates.io-index#libc@0.2.186",
  7316. "registry+https://github.com/rust-lang/crates.io-index#rand_chacha@0.3.1",
  7317. "registry+https://github.com/rust-lang/crates.io-index#rand_core@0.6.4"
  7318. ]
  7319. },
  7320. {
  7321. "ref": "registry+https://github.com/rust-lang/crates.io-index#rand@0.9.4",
  7322. "dependsOn": [
  7323. "registry+https://github.com/rust-lang/crates.io-index#rand_chacha@0.9.0",
  7324. "registry+https://github.com/rust-lang/crates.io-index#rand_core@0.9.5"
  7325. ]
  7326. },
  7327. {
  7328. "ref": "registry+https://github.com/rust-lang/crates.io-index#rand_chacha@0.3.1",
  7329. "dependsOn": [
  7330. "registry+https://github.com/rust-lang/crates.io-index#ppv-lite86@0.2.21",
  7331. "registry+https://github.com/rust-lang/crates.io-index#rand_core@0.6.4"
  7332. ]
  7333. },
  7334. {
  7335. "ref": "registry+https://github.com/rust-lang/crates.io-index#rand_chacha@0.9.0",
  7336. "dependsOn": [
  7337. "registry+https://github.com/rust-lang/crates.io-index#ppv-lite86@0.2.21",
  7338. "registry+https://github.com/rust-lang/crates.io-index#rand_core@0.9.5"
  7339. ]
  7340. },
  7341. {
  7342. "ref": "registry+https://github.com/rust-lang/crates.io-index#rand_core@0.10.1"
  7343. },
  7344. {
  7345. "ref": "registry+https://github.com/rust-lang/crates.io-index#rand_core@0.6.4",
  7346. "dependsOn": [
  7347. "registry+https://github.com/rust-lang/crates.io-index#getrandom@0.2.17"
  7348. ]
  7349. },
  7350. {
  7351. "ref": "registry+https://github.com/rust-lang/crates.io-index#rand_core@0.9.5",
  7352. "dependsOn": [
  7353. "registry+https://github.com/rust-lang/crates.io-index#getrandom@0.3.4"
  7354. ]
  7355. },
  7356. {
  7357. "ref": "registry+https://github.com/rust-lang/crates.io-index#reqwest@0.13.4",
  7358. "dependsOn": [
  7359. "registry+https://github.com/rust-lang/crates.io-index#base64@0.22.1",
  7360. "registry+https://github.com/rust-lang/crates.io-index#bytes@1.11.1",
  7361. "registry+https://github.com/rust-lang/crates.io-index#cookie@0.18.1",
  7362. "registry+https://github.com/rust-lang/crates.io-index#cookie_store@0.22.1",
  7363. "registry+https://github.com/rust-lang/crates.io-index#encoding_rs@0.8.35",
  7364. "registry+https://github.com/rust-lang/crates.io-index#futures-core@0.3.32",
  7365. "registry+https://github.com/rust-lang/crates.io-index#futures-util@0.3.32",
  7366. "registry+https://github.com/rust-lang/crates.io-index#h2@0.4.14",
  7367. "registry+https://github.com/rust-lang/crates.io-index#h3@0.0.8",
  7368. "registry+https://github.com/rust-lang/crates.io-index#h3-quinn@0.0.10",
  7369. "registry+https://github.com/rust-lang/crates.io-index#hickory-resolver@0.26.1",
  7370. "registry+https://github.com/rust-lang/crates.io-index#http@1.4.2",
  7371. "registry+https://github.com/rust-lang/crates.io-index#http-body@1.0.1",
  7372. "registry+https://github.com/rust-lang/crates.io-index#http-body-util@0.1.3",
  7373. "registry+https://github.com/rust-lang/crates.io-index#hyper@1.10.1",
  7374. "registry+https://github.com/rust-lang/crates.io-index#hyper-rustls@0.27.9",
  7375. "registry+https://github.com/rust-lang/crates.io-index#hyper-util@0.1.20",
  7376. "registry+https://github.com/rust-lang/crates.io-index#log@0.4.32",
  7377. "registry+https://github.com/rust-lang/crates.io-index#mime@0.3.17",
  7378. "registry+https://github.com/rust-lang/crates.io-index#once_cell@1.21.4",
  7379. "registry+https://github.com/rust-lang/crates.io-index#percent-encoding@2.3.2",
  7380. "registry+https://github.com/rust-lang/crates.io-index#pin-project-lite@0.2.17",
  7381. "registry+https://github.com/rust-lang/crates.io-index#quinn@0.11.9",
  7382. "registry+https://github.com/rust-lang/crates.io-index#rustls@0.23.40",
  7383. "registry+https://github.com/rust-lang/crates.io-index#rustls-pki-types@1.14.1",
  7384. "registry+https://github.com/rust-lang/crates.io-index#rustls-platform-verifier@0.6.2",
  7385. "registry+https://github.com/rust-lang/crates.io-index#sync_wrapper@1.0.2",
  7386. "registry+https://github.com/rust-lang/crates.io-index#tokio@1.52.3",
  7387. "registry+https://github.com/rust-lang/crates.io-index#tokio-rustls@0.26.4",
  7388. "registry+https://github.com/rust-lang/crates.io-index#tokio-util@0.7.18",
  7389. "registry+https://github.com/rust-lang/crates.io-index#tower@0.5.3",
  7390. "registry+https://github.com/rust-lang/crates.io-index#tower-http@0.6.11",
  7391. "registry+https://github.com/rust-lang/crates.io-index#tower-service@0.3.3",
  7392. "registry+https://github.com/rust-lang/crates.io-index#url@2.5.8"
  7393. ]
  7394. },
  7395. {
  7396. "ref": "registry+https://github.com/rust-lang/crates.io-index#resolv-conf@0.7.6"
  7397. },
  7398. {
  7399. "ref": "registry+https://github.com/rust-lang/crates.io-index#ring@0.17.14",
  7400. "dependsOn": [
  7401. "registry+https://github.com/rust-lang/crates.io-index#cc@1.2.63",
  7402. "registry+https://github.com/rust-lang/crates.io-index#cfg-if@1.0.4",
  7403. "registry+https://github.com/rust-lang/crates.io-index#getrandom@0.2.17",
  7404. "registry+https://github.com/rust-lang/crates.io-index#untrusted@0.9.0"
  7405. ]
  7406. },
  7407. {
  7408. "ref": "registry+https://github.com/rust-lang/crates.io-index#rustc-hash@2.1.2"
  7409. },
  7410. {
  7411. "ref": "registry+https://github.com/rust-lang/crates.io-index#rustls-native-certs@0.8.4",
  7412. "dependsOn": [
  7413. "registry+https://github.com/rust-lang/crates.io-index#openssl-probe@0.2.1",
  7414. "registry+https://github.com/rust-lang/crates.io-index#rustls-pki-types@1.14.1"
  7415. ]
  7416. },
  7417. {
  7418. "ref": "registry+https://github.com/rust-lang/crates.io-index#rustls-pki-types@1.14.1",
  7419. "dependsOn": [
  7420. "registry+https://github.com/rust-lang/crates.io-index#zeroize@1.8.2"
  7421. ]
  7422. },
  7423. {
  7424. "ref": "registry+https://github.com/rust-lang/crates.io-index#rustls-platform-verifier@0.6.2",
  7425. "dependsOn": [
  7426. "registry+https://github.com/rust-lang/crates.io-index#log@0.4.32",
  7427. "registry+https://github.com/rust-lang/crates.io-index#rustls@0.23.40",
  7428. "registry+https://github.com/rust-lang/crates.io-index#rustls-native-certs@0.8.4",
  7429. "registry+https://github.com/rust-lang/crates.io-index#rustls-webpki@0.103.13"
  7430. ]
  7431. },
  7432. {
  7433. "ref": "registry+https://github.com/rust-lang/crates.io-index#rustls-webpki@0.103.13",
  7434. "dependsOn": [
  7435. "registry+https://github.com/rust-lang/crates.io-index#aws-lc-rs@1.17.0",
  7436. "registry+https://github.com/rust-lang/crates.io-index#ring@0.17.14",
  7437. "registry+https://github.com/rust-lang/crates.io-index#rustls-pki-types@1.14.1",
  7438. "registry+https://github.com/rust-lang/crates.io-index#untrusted@0.9.0"
  7439. ]
  7440. },
  7441. {
  7442. "ref": "registry+https://github.com/rust-lang/crates.io-index#rustls@0.23.40",
  7443. "dependsOn": [
  7444. "registry+https://github.com/rust-lang/crates.io-index#aws-lc-rs@1.17.0",
  7445. "registry+https://github.com/rust-lang/crates.io-index#once_cell@1.21.4",
  7446. "registry+https://github.com/rust-lang/crates.io-index#rustls-pki-types@1.14.1",
  7447. "registry+https://github.com/rust-lang/crates.io-index#rustls-webpki@0.103.13",
  7448. "registry+https://github.com/rust-lang/crates.io-index#subtle@2.6.1",
  7449. "registry+https://github.com/rust-lang/crates.io-index#zeroize@1.8.2"
  7450. ]
  7451. },
  7452. {
  7453. "ref": "registry+https://github.com/rust-lang/crates.io-index#rustversion@1.0.22"
  7454. },
  7455. {
  7456. "ref": "registry+https://github.com/rust-lang/crates.io-index#scopeguard@1.2.0"
  7457. },
  7458. {
  7459. "ref": "registry+https://github.com/rust-lang/crates.io-index#serde@1.0.228",
  7460. "dependsOn": [
  7461. "registry+https://github.com/rust-lang/crates.io-index#serde_core@1.0.228",
  7462. "registry+https://github.com/rust-lang/crates.io-index#serde_derive@1.0.228"
  7463. ]
  7464. },
  7465. {
  7466. "ref": "registry+https://github.com/rust-lang/crates.io-index#serde_core@1.0.228"
  7467. },
  7468. {
  7469. "ref": "registry+https://github.com/rust-lang/crates.io-index#serde_derive@1.0.228",
  7470. "dependsOn": [
  7471. "registry+https://github.com/rust-lang/crates.io-index#proc-macro2@1.0.106",
  7472. "registry+https://github.com/rust-lang/crates.io-index#quote@1.0.45",
  7473. "registry+https://github.com/rust-lang/crates.io-index#syn@2.0.117"
  7474. ]
  7475. },
  7476. {
  7477. "ref": "registry+https://github.com/rust-lang/crates.io-index#serde_json@1.0.150",
  7478. "dependsOn": [
  7479. "registry+https://github.com/rust-lang/crates.io-index#itoa@1.0.18",
  7480. "registry+https://github.com/rust-lang/crates.io-index#memchr@2.8.1",
  7481. "registry+https://github.com/rust-lang/crates.io-index#serde_core@1.0.228",
  7482. "registry+https://github.com/rust-lang/crates.io-index#zmij@1.0.21"
  7483. ]
  7484. },
  7485. {
  7486. "ref": "registry+https://github.com/rust-lang/crates.io-index#shlex@2.0.1"
  7487. },
  7488. {
  7489. "ref": "registry+https://github.com/rust-lang/crates.io-index#simd-adler32@0.3.9"
  7490. },
  7491. {
  7492. "ref": "registry+https://github.com/rust-lang/crates.io-index#slab@0.4.12"
  7493. },
  7494. {
  7495. "ref": "registry+https://github.com/rust-lang/crates.io-index#smallvec@1.15.1"
  7496. },
  7497. {
  7498. "ref": "registry+https://github.com/rust-lang/crates.io-index#socket2@0.6.4",
  7499. "dependsOn": [
  7500. "registry+https://github.com/rust-lang/crates.io-index#libc@0.2.186"
  7501. ]
  7502. },
  7503. {
  7504. "ref": "registry+https://github.com/rust-lang/crates.io-index#stable_deref_trait@1.2.1"
  7505. },
  7506. {
  7507. "ref": "registry+https://github.com/rust-lang/crates.io-index#subtle@2.6.1"
  7508. },
  7509. {
  7510. "ref": "registry+https://github.com/rust-lang/crates.io-index#syn@2.0.117",
  7511. "dependsOn": [
  7512. "registry+https://github.com/rust-lang/crates.io-index#proc-macro2@1.0.106",
  7513. "registry+https://github.com/rust-lang/crates.io-index#quote@1.0.45",
  7514. "registry+https://github.com/rust-lang/crates.io-index#unicode-ident@1.0.24"
  7515. ]
  7516. },
  7517. {
  7518. "ref": "registry+https://github.com/rust-lang/crates.io-index#sync_wrapper@1.0.2",
  7519. "dependsOn": [
  7520. "registry+https://github.com/rust-lang/crates.io-index#futures-core@0.3.32"
  7521. ]
  7522. },
  7523. {
  7524. "ref": "registry+https://github.com/rust-lang/crates.io-index#synstructure@0.13.2",
  7525. "dependsOn": [
  7526. "registry+https://github.com/rust-lang/crates.io-index#proc-macro2@1.0.106",
  7527. "registry+https://github.com/rust-lang/crates.io-index#quote@1.0.45",
  7528. "registry+https://github.com/rust-lang/crates.io-index#syn@2.0.117"
  7529. ]
  7530. },
  7531. {
  7532. "ref": "registry+https://github.com/rust-lang/crates.io-index#tagptr@0.2.0"
  7533. },
  7534. {
  7535. "ref": "registry+https://github.com/rust-lang/crates.io-index#target-lexicon@0.13.5"
  7536. },
  7537. {
  7538. "ref": "registry+https://github.com/rust-lang/crates.io-index#thiserror-impl@2.0.18",
  7539. "dependsOn": [
  7540. "registry+https://github.com/rust-lang/crates.io-index#proc-macro2@1.0.106",
  7541. "registry+https://github.com/rust-lang/crates.io-index#quote@1.0.45",
  7542. "registry+https://github.com/rust-lang/crates.io-index#syn@2.0.117"
  7543. ]
  7544. },
  7545. {
  7546. "ref": "registry+https://github.com/rust-lang/crates.io-index#thiserror@2.0.18",
  7547. "dependsOn": [
  7548. "registry+https://github.com/rust-lang/crates.io-index#thiserror-impl@2.0.18"
  7549. ]
  7550. },
  7551. {
  7552. "ref": "registry+https://github.com/rust-lang/crates.io-index#time-core@0.1.8"
  7553. },
  7554. {
  7555. "ref": "registry+https://github.com/rust-lang/crates.io-index#time-macros@0.2.27",
  7556. "dependsOn": [
  7557. "registry+https://github.com/rust-lang/crates.io-index#num-conv@0.2.2",
  7558. "registry+https://github.com/rust-lang/crates.io-index#time-core@0.1.8"
  7559. ]
  7560. },
  7561. {
  7562. "ref": "registry+https://github.com/rust-lang/crates.io-index#time@0.3.47",
  7563. "dependsOn": [
  7564. "registry+https://github.com/rust-lang/crates.io-index#deranged@0.5.8",
  7565. "registry+https://github.com/rust-lang/crates.io-index#itoa@1.0.18",
  7566. "registry+https://github.com/rust-lang/crates.io-index#num-conv@0.2.2",
  7567. "registry+https://github.com/rust-lang/crates.io-index#powerfmt@0.2.0",
  7568. "registry+https://github.com/rust-lang/crates.io-index#serde_core@1.0.228",
  7569. "registry+https://github.com/rust-lang/crates.io-index#time-core@0.1.8",
  7570. "registry+https://github.com/rust-lang/crates.io-index#time-macros@0.2.27"
  7571. ]
  7572. },
  7573. {
  7574. "ref": "registry+https://github.com/rust-lang/crates.io-index#tinystr@0.8.3",
  7575. "dependsOn": [
  7576. "registry+https://github.com/rust-lang/crates.io-index#displaydoc@0.2.6",
  7577. "registry+https://github.com/rust-lang/crates.io-index#zerovec@0.11.6"
  7578. ]
  7579. },
  7580. {
  7581. "ref": "registry+https://github.com/rust-lang/crates.io-index#tinyvec@1.11.0",
  7582. "dependsOn": [
  7583. "registry+https://github.com/rust-lang/crates.io-index#tinyvec_macros@0.1.1"
  7584. ]
  7585. },
  7586. {
  7587. "ref": "registry+https://github.com/rust-lang/crates.io-index#tinyvec_macros@0.1.1"
  7588. },
  7589. {
  7590. "ref": "registry+https://github.com/rust-lang/crates.io-index#tokio-macros@2.7.0",
  7591. "dependsOn": [
  7592. "registry+https://github.com/rust-lang/crates.io-index#proc-macro2@1.0.106",
  7593. "registry+https://github.com/rust-lang/crates.io-index#quote@1.0.45",
  7594. "registry+https://github.com/rust-lang/crates.io-index#syn@2.0.117"
  7595. ]
  7596. },
  7597. {
  7598. "ref": "registry+https://github.com/rust-lang/crates.io-index#tokio-rustls@0.26.4",
  7599. "dependsOn": [
  7600. "registry+https://github.com/rust-lang/crates.io-index#rustls@0.23.40",
  7601. "registry+https://github.com/rust-lang/crates.io-index#tokio@1.52.3"
  7602. ]
  7603. },
  7604. {
  7605. "ref": "registry+https://github.com/rust-lang/crates.io-index#tokio-stream@0.1.18",
  7606. "dependsOn": [
  7607. "registry+https://github.com/rust-lang/crates.io-index#futures-core@0.3.32",
  7608. "registry+https://github.com/rust-lang/crates.io-index#pin-project-lite@0.2.17",
  7609. "registry+https://github.com/rust-lang/crates.io-index#tokio@1.52.3"
  7610. ]
  7611. },
  7612. {
  7613. "ref": "registry+https://github.com/rust-lang/crates.io-index#tokio-util@0.7.18",
  7614. "dependsOn": [
  7615. "registry+https://github.com/rust-lang/crates.io-index#bytes@1.11.1",
  7616. "registry+https://github.com/rust-lang/crates.io-index#futures-core@0.3.32",
  7617. "registry+https://github.com/rust-lang/crates.io-index#futures-sink@0.3.32",
  7618. "registry+https://github.com/rust-lang/crates.io-index#pin-project-lite@0.2.17",
  7619. "registry+https://github.com/rust-lang/crates.io-index#tokio@1.52.3"
  7620. ]
  7621. },
  7622. {
  7623. "ref": "registry+https://github.com/rust-lang/crates.io-index#tokio@1.52.3",
  7624. "dependsOn": [
  7625. "registry+https://github.com/rust-lang/crates.io-index#bytes@1.11.1",
  7626. "registry+https://github.com/rust-lang/crates.io-index#libc@0.2.186",
  7627. "registry+https://github.com/rust-lang/crates.io-index#mio@1.2.1",
  7628. "registry+https://github.com/rust-lang/crates.io-index#pin-project-lite@0.2.17",
  7629. "registry+https://github.com/rust-lang/crates.io-index#socket2@0.6.4",
  7630. "registry+https://github.com/rust-lang/crates.io-index#tokio-macros@2.7.0"
  7631. ]
  7632. },
  7633. {
  7634. "ref": "registry+https://github.com/rust-lang/crates.io-index#tower-http@0.6.11",
  7635. "dependsOn": [
  7636. "registry+https://github.com/rust-lang/crates.io-index#async-compression@0.4.42",
  7637. "registry+https://github.com/rust-lang/crates.io-index#bitflags@2.13.0",
  7638. "registry+https://github.com/rust-lang/crates.io-index#bytes@1.11.1",
  7639. "registry+https://github.com/rust-lang/crates.io-index#futures-core@0.3.32",
  7640. "registry+https://github.com/rust-lang/crates.io-index#futures-util@0.3.32",
  7641. "registry+https://github.com/rust-lang/crates.io-index#http@1.4.2",
  7642. "registry+https://github.com/rust-lang/crates.io-index#http-body@1.0.1",
  7643. "registry+https://github.com/rust-lang/crates.io-index#http-body-util@0.1.3",
  7644. "registry+https://github.com/rust-lang/crates.io-index#pin-project-lite@0.2.17",
  7645. "registry+https://github.com/rust-lang/crates.io-index#tokio@1.52.3",
  7646. "registry+https://github.com/rust-lang/crates.io-index#tokio-util@0.7.18",
  7647. "registry+https://github.com/rust-lang/crates.io-index#tower@0.5.3",
  7648. "registry+https://github.com/rust-lang/crates.io-index#tower-layer@0.3.3",
  7649. "registry+https://github.com/rust-lang/crates.io-index#tower-service@0.3.3",
  7650. "registry+https://github.com/rust-lang/crates.io-index#url@2.5.8"
  7651. ]
  7652. },
  7653. {
  7654. "ref": "registry+https://github.com/rust-lang/crates.io-index#tower-layer@0.3.3"
  7655. },
  7656. {
  7657. "ref": "registry+https://github.com/rust-lang/crates.io-index#tower-service@0.3.3"
  7658. },
  7659. {
  7660. "ref": "registry+https://github.com/rust-lang/crates.io-index#tower@0.5.3",
  7661. "dependsOn": [
  7662. "registry+https://github.com/rust-lang/crates.io-index#futures-core@0.3.32",
  7663. "registry+https://github.com/rust-lang/crates.io-index#futures-util@0.3.32",
  7664. "registry+https://github.com/rust-lang/crates.io-index#pin-project-lite@0.2.17",
  7665. "registry+https://github.com/rust-lang/crates.io-index#sync_wrapper@1.0.2",
  7666. "registry+https://github.com/rust-lang/crates.io-index#tokio@1.52.3",
  7667. "registry+https://github.com/rust-lang/crates.io-index#tower-layer@0.3.3",
  7668. "registry+https://github.com/rust-lang/crates.io-index#tower-service@0.3.3"
  7669. ]
  7670. },
  7671. {
  7672. "ref": "registry+https://github.com/rust-lang/crates.io-index#tracing-core@0.1.36",
  7673. "dependsOn": [
  7674. "registry+https://github.com/rust-lang/crates.io-index#once_cell@1.21.4"
  7675. ]
  7676. },
  7677. {
  7678. "ref": "registry+https://github.com/rust-lang/crates.io-index#tracing@0.1.44",
  7679. "dependsOn": [
  7680. "registry+https://github.com/rust-lang/crates.io-index#pin-project-lite@0.2.17",
  7681. "registry+https://github.com/rust-lang/crates.io-index#tracing-core@0.1.36"
  7682. ]
  7683. },
  7684. {
  7685. "ref": "registry+https://github.com/rust-lang/crates.io-index#try-lock@0.2.5"
  7686. },
  7687. {
  7688. "ref": "registry+https://github.com/rust-lang/crates.io-index#unicode-ident@1.0.24"
  7689. },
  7690. {
  7691. "ref": "registry+https://github.com/rust-lang/crates.io-index#untrusted@0.9.0"
  7692. },
  7693. {
  7694. "ref": "registry+https://github.com/rust-lang/crates.io-index#url@2.5.8",
  7695. "dependsOn": [
  7696. "registry+https://github.com/rust-lang/crates.io-index#form_urlencoded@1.2.2",
  7697. "registry+https://github.com/rust-lang/crates.io-index#idna@1.1.0",
  7698. "registry+https://github.com/rust-lang/crates.io-index#percent-encoding@2.3.2",
  7699. "registry+https://github.com/rust-lang/crates.io-index#serde@1.0.228"
  7700. ]
  7701. },
  7702. {
  7703. "ref": "registry+https://github.com/rust-lang/crates.io-index#utf8_iter@1.0.4"
  7704. },
  7705. {
  7706. "ref": "registry+https://github.com/rust-lang/crates.io-index#uuid@1.23.3",
  7707. "dependsOn": [
  7708. "registry+https://github.com/rust-lang/crates.io-index#getrandom@0.4.2"
  7709. ]
  7710. },
  7711. {
  7712. "ref": "registry+https://github.com/rust-lang/crates.io-index#version_check@0.9.5"
  7713. },
  7714. {
  7715. "ref": "registry+https://github.com/rust-lang/crates.io-index#want@0.3.1",
  7716. "dependsOn": [
  7717. "registry+https://github.com/rust-lang/crates.io-index#try-lock@0.2.5"
  7718. ]
  7719. },
  7720. {
  7721. "ref": "registry+https://github.com/rust-lang/crates.io-index#writeable@0.6.3"
  7722. },
  7723. {
  7724. "ref": "registry+https://github.com/rust-lang/crates.io-index#yoke-derive@0.8.2",
  7725. "dependsOn": [
  7726. "registry+https://github.com/rust-lang/crates.io-index#proc-macro2@1.0.106",
  7727. "registry+https://github.com/rust-lang/crates.io-index#quote@1.0.45",
  7728. "registry+https://github.com/rust-lang/crates.io-index#syn@2.0.117",
  7729. "registry+https://github.com/rust-lang/crates.io-index#synstructure@0.13.2"
  7730. ]
  7731. },
  7732. {
  7733. "ref": "registry+https://github.com/rust-lang/crates.io-index#yoke@0.8.3",
  7734. "dependsOn": [
  7735. "registry+https://github.com/rust-lang/crates.io-index#stable_deref_trait@1.2.1",
  7736. "registry+https://github.com/rust-lang/crates.io-index#yoke-derive@0.8.2",
  7737. "registry+https://github.com/rust-lang/crates.io-index#zerofrom@0.1.8"
  7738. ]
  7739. },
  7740. {
  7741. "ref": "registry+https://github.com/rust-lang/crates.io-index#zerocopy@0.8.52"
  7742. },
  7743. {
  7744. "ref": "registry+https://github.com/rust-lang/crates.io-index#zerofrom-derive@0.1.7",
  7745. "dependsOn": [
  7746. "registry+https://github.com/rust-lang/crates.io-index#proc-macro2@1.0.106",
  7747. "registry+https://github.com/rust-lang/crates.io-index#quote@1.0.45",
  7748. "registry+https://github.com/rust-lang/crates.io-index#syn@2.0.117",
  7749. "registry+https://github.com/rust-lang/crates.io-index#synstructure@0.13.2"
  7750. ]
  7751. },
  7752. {
  7753. "ref": "registry+https://github.com/rust-lang/crates.io-index#zerofrom@0.1.8",
  7754. "dependsOn": [
  7755. "registry+https://github.com/rust-lang/crates.io-index#zerofrom-derive@0.1.7"
  7756. ]
  7757. },
  7758. {
  7759. "ref": "registry+https://github.com/rust-lang/crates.io-index#zeroize@1.8.2"
  7760. },
  7761. {
  7762. "ref": "registry+https://github.com/rust-lang/crates.io-index#zerotrie@0.2.4",
  7763. "dependsOn": [
  7764. "registry+https://github.com/rust-lang/crates.io-index#displaydoc@0.2.6",
  7765. "registry+https://github.com/rust-lang/crates.io-index#yoke@0.8.3",
  7766. "registry+https://github.com/rust-lang/crates.io-index#zerofrom@0.1.8"
  7767. ]
  7768. },
  7769. {
  7770. "ref": "registry+https://github.com/rust-lang/crates.io-index#zerovec-derive@0.11.3",
  7771. "dependsOn": [
  7772. "registry+https://github.com/rust-lang/crates.io-index#proc-macro2@1.0.106",
  7773. "registry+https://github.com/rust-lang/crates.io-index#quote@1.0.45",
  7774. "registry+https://github.com/rust-lang/crates.io-index#syn@2.0.117"
  7775. ]
  7776. },
  7777. {
  7778. "ref": "registry+https://github.com/rust-lang/crates.io-index#zerovec@0.11.6",
  7779. "dependsOn": [
  7780. "registry+https://github.com/rust-lang/crates.io-index#yoke@0.8.3",
  7781. "registry+https://github.com/rust-lang/crates.io-index#zerofrom@0.1.8",
  7782. "registry+https://github.com/rust-lang/crates.io-index#zerovec-derive@0.11.3"
  7783. ]
  7784. },
  7785. {
  7786. "ref": "registry+https://github.com/rust-lang/crates.io-index#zmij@1.0.21"
  7787. },
  7788. {
  7789. "ref": "registry+https://github.com/rust-lang/crates.io-index#zstd-safe@7.2.4",
  7790. "dependsOn": [
  7791. "registry+https://github.com/rust-lang/crates.io-index#zstd-sys@2.0.16+zstd.1.5.7"
  7792. ]
  7793. },
  7794. {
  7795. "ref": "registry+https://github.com/rust-lang/crates.io-index#zstd-sys@2.0.16+zstd.1.5.7",
  7796. "dependsOn": [
  7797. "registry+https://github.com/rust-lang/crates.io-index#cc@1.2.63",
  7798. "registry+https://github.com/rust-lang/crates.io-index#pkg-config@0.3.33"
  7799. ]
  7800. },
  7801. {
  7802. "ref": "registry+https://github.com/rust-lang/crates.io-index#zstd@0.13.3",
  7803. "dependsOn": [
  7804. "registry+https://github.com/rust-lang/crates.io-index#zstd-safe@7.2.4"
  7805. ]
  7806. }
  7807. ]
  7808. }