pyqwest.cyclonedx.json 248 KB

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