pyqwest.cyclonedx.json 255 KB

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