MODULE.bazel.lock 235 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257
  1. {
  2. "lockFileVersion": 11,
  3. "registryFileHashes": {
  4. "https://bcr.bazel.build/bazel_registry.json": "8a28e4aff06ee60aed2a8c281907fb8bcbf3b753c91fb5a5c57da3215d5b3497",
  5. "https://bcr.bazel.build/modules/abseil-cpp/20210324.2/MODULE.bazel": "7cd0312e064fde87c8d1cd79ba06c876bd23630c83466e9500321be55c96ace2",
  6. "https://bcr.bazel.build/modules/abseil-cpp/20211102.0/MODULE.bazel": "70390338f7a5106231d20620712f7cccb659cd0e9d073d1991c038eb9fc57589",
  7. "https://bcr.bazel.build/modules/abseil-cpp/20230125.1/MODULE.bazel": "89047429cb0207707b2dface14ba7f8df85273d484c2572755be4bab7ce9c3a0",
  8. "https://bcr.bazel.build/modules/abseil-cpp/20230802.0.bcr.1/MODULE.bazel": "1c8cec495288dccd14fdae6e3f95f772c1c91857047a098fad772034264cc8cb",
  9. "https://bcr.bazel.build/modules/abseil-cpp/20230802.0/MODULE.bazel": "d253ae36a8bd9ee3c5955384096ccb6baf16a1b1e93e858370da0a3b94f77c16",
  10. "https://bcr.bazel.build/modules/abseil-cpp/20240116.0/MODULE.bazel": "98dc378d64c12a4e4741ad3362f87fb737ee6a0886b2d90c3cdbb4d93ea3e0bf",
  11. "https://bcr.bazel.build/modules/abseil-cpp/20240116.1/MODULE.bazel": "37bcdb4440fbb61df6a1c296ae01b327f19e9bb521f9b8e26ec854b6f97309ed",
  12. "https://bcr.bazel.build/modules/abseil-cpp/20240116.2/MODULE.bazel": "73939767a4686cd9a520d16af5ab440071ed75cec1a876bf2fcfaf1f71987a16",
  13. "https://bcr.bazel.build/modules/abseil-cpp/20240116.2/source.json": "750d5e29326fb59cbe61116a7b803c8a1d0a7090a9c8ed89888d188e3c473fc7",
  14. "https://bcr.bazel.build/modules/apple_support/1.11.1/MODULE.bazel": "1843d7cd8a58369a444fc6000e7304425fba600ff641592161d9f15b179fb896",
  15. "https://bcr.bazel.build/modules/apple_support/1.15.1/MODULE.bazel": "a0556fefca0b1bb2de8567b8827518f94db6a6e7e7d632b4c48dc5f865bc7c85",
  16. "https://bcr.bazel.build/modules/apple_support/1.15.1/source.json": "517f2b77430084c541bc9be2db63fdcbb7102938c5f64c17ee60ffda2e5cf07b",
  17. "https://bcr.bazel.build/modules/apple_support/1.5.0/MODULE.bazel": "50341a62efbc483e8a2a6aec30994a58749bd7b885e18dd96aa8c33031e558ef",
  18. "https://bcr.bazel.build/modules/bazel_features/1.1.1/MODULE.bazel": "27b8c79ef57efe08efccbd9dd6ef70d61b4798320b8d3c134fd571f78963dbcd",
  19. "https://bcr.bazel.build/modules/bazel_features/1.11.0/MODULE.bazel": "f9382337dd5a474c3b7d334c2f83e50b6eaedc284253334cf823044a26de03e8",
  20. "https://bcr.bazel.build/modules/bazel_features/1.11.0/source.json": "c9320aa53cd1c441d24bd6b716da087ad7e4ff0d9742a9884587596edfe53015",
  21. "https://bcr.bazel.build/modules/bazel_features/1.9.1/MODULE.bazel": "8f679097876a9b609ad1f60249c49d68bfab783dd9be012faf9d82547b14815a",
  22. "https://bcr.bazel.build/modules/bazel_skylib/1.0.3/MODULE.bazel": "bcb0fd896384802d1ad283b4e4eb4d718eebd8cb820b0a2c3a347fb971afd9d8",
  23. "https://bcr.bazel.build/modules/bazel_skylib/1.1.1/MODULE.bazel": "1add3e7d93ff2e6998f9e118022c84d163917d912f5afafb3058e3d2f1545b5e",
  24. "https://bcr.bazel.build/modules/bazel_skylib/1.2.0/MODULE.bazel": "44fe84260e454ed94ad326352a698422dbe372b21a1ac9f3eab76eb531223686",
  25. "https://bcr.bazel.build/modules/bazel_skylib/1.2.1/MODULE.bazel": "f35baf9da0efe45fa3da1696ae906eea3d615ad41e2e3def4aeb4e8bc0ef9a7a",
  26. "https://bcr.bazel.build/modules/bazel_skylib/1.3.0/MODULE.bazel": "20228b92868bf5cfc41bda7afc8a8ba2a543201851de39d990ec957b513579c5",
  27. "https://bcr.bazel.build/modules/bazel_skylib/1.4.1/MODULE.bazel": "a0dcb779424be33100dcae821e9e27e4f2901d9dfd5333efe5ac6a8d7ab75e1d",
  28. "https://bcr.bazel.build/modules/bazel_skylib/1.5.0/MODULE.bazel": "32880f5e2945ce6a03d1fbd588e9198c0a959bb42297b2cfaf1685b7bc32e138",
  29. "https://bcr.bazel.build/modules/bazel_skylib/1.6.1/MODULE.bazel": "8fdee2dbaace6c252131c00e1de4b165dc65af02ea278476187765e1a617b917",
  30. "https://bcr.bazel.build/modules/bazel_skylib/1.7.1/MODULE.bazel": "3120d80c5861aa616222ec015332e5f8d3171e062e3e804a2a0253e1be26e59b",
  31. "https://bcr.bazel.build/modules/bazel_skylib/1.7.1/source.json": "f121b43eeefc7c29efbd51b83d08631e2347297c95aac9764a701f2a6a2bb953",
  32. "https://bcr.bazel.build/modules/buildozer/7.1.2/MODULE.bazel": "2e8dd40ede9c454042645fd8d8d0cd1527966aa5c919de86661e62953cd73d84",
  33. "https://bcr.bazel.build/modules/buildozer/7.1.2/source.json": "c9028a501d2db85793a6996205c8de120944f50a0d570438fcae0457a5f9d1f8",
  34. "https://bcr.bazel.build/modules/google_benchmark/1.8.2/MODULE.bazel": "a70cf1bba851000ba93b58ae2f6d76490a9feb74192e57ab8e8ff13c34ec50cb",
  35. "https://bcr.bazel.build/modules/google_benchmark/1.8.3/MODULE.bazel": "2349ac3adb7917fdc4378e85fae533015dae3cb583ad1bd5d2c2185106c7c403",
  36. "https://bcr.bazel.build/modules/google_benchmark/1.8.4/MODULE.bazel": "c6d54a11dcf64ee63545f42561eda3fd94c1b5f5ebe1357011de63ae33739d5e",
  37. "https://bcr.bazel.build/modules/google_benchmark/1.8.4/source.json": "84590f7bc5a1fd99e1ef274ee16bb41c214f705e62847b42e705010dfa81fe53",
  38. "https://bcr.bazel.build/modules/googletest/1.11.0/MODULE.bazel": "3a83f095183f66345ca86aa13c58b59f9f94a2f81999c093d4eeaa2d262d12f4",
  39. "https://bcr.bazel.build/modules/googletest/1.13.0/MODULE.bazel": "369533f4a302dc7d9ad1cd9a09a9e820a1d9a4011fad2dfa636b5bb225b9a6c7",
  40. "https://bcr.bazel.build/modules/googletest/1.14.0.bcr.1/MODULE.bazel": "22c31a561553727960057361aa33bf20fb2e98584bc4fec007906e27053f80c6",
  41. "https://bcr.bazel.build/modules/googletest/1.14.0.bcr.1/source.json": "41e9e129f80d8c8bf103a7acc337b76e54fad1214ac0a7084bf24f4cd924b8b4",
  42. "https://bcr.bazel.build/modules/googletest/1.14.0/MODULE.bazel": "cfbcbf3e6eac06ef9d85900f64424708cc08687d1b527f0ef65aa7517af8118f",
  43. "https://bcr.bazel.build/modules/jsoncpp/1.9.5/MODULE.bazel": "31271aedc59e815656f5736f282bb7509a97c7ecb43e927ac1a37966e0578075",
  44. "https://bcr.bazel.build/modules/jsoncpp/1.9.5/source.json": "4108ee5085dd2885a341c7fab149429db457b3169b86eb081fa245eadf69169d",
  45. "https://bcr.bazel.build/modules/platforms/0.0.10/MODULE.bazel": "8cb8efaf200bdeb2150d93e162c40f388529a25852b332cec879373771e48ed5",
  46. "https://bcr.bazel.build/modules/platforms/0.0.10/source.json": "f22828ff4cf021a6b577f1bf6341cb9dcd7965092a439f64fc1bb3b7a5ae4bd5",
  47. "https://bcr.bazel.build/modules/platforms/0.0.4/MODULE.bazel": "9b328e31ee156f53f3c416a64f8491f7eb731742655a47c9eec4703a71644aee",
  48. "https://bcr.bazel.build/modules/platforms/0.0.5/MODULE.bazel": "5733b54ea419d5eaf7997054bb55f6a1d0b5ff8aedf0176fef9eea44f3acda37",
  49. "https://bcr.bazel.build/modules/platforms/0.0.6/MODULE.bazel": "ad6eeef431dc52aefd2d77ed20a4b353f8ebf0f4ecdd26a807d2da5aa8cd0615",
  50. "https://bcr.bazel.build/modules/platforms/0.0.7/MODULE.bazel": "72fd4a0ede9ee5c021f6a8dd92b503e089f46c227ba2813ff183b71616034814",
  51. "https://bcr.bazel.build/modules/platforms/0.0.8/MODULE.bazel": "9f142c03e348f6d263719f5074b21ef3adf0b139ee4c5133e2aa35664da9eb2d",
  52. "https://bcr.bazel.build/modules/platforms/0.0.9/MODULE.bazel": "4a87a60c927b56ddd67db50c89acaa62f4ce2a1d2149ccb63ffd871d5ce29ebc",
  53. "https://bcr.bazel.build/modules/protobuf/21.7/MODULE.bazel": "a5a29bb89544f9b97edce05642fac225a808b5b7be74038ea3640fae2f8e66a7",
  54. "https://bcr.bazel.build/modules/protobuf/26.0/MODULE.bazel": "8402da964092af40097f4a205eec2a33fd4a7748dc43632b7d1629bfd9a2b856",
  55. "https://bcr.bazel.build/modules/protobuf/26.0/source.json": "1d712839d9a0ad0948046b84bdf1619a0abd4d3a0a9d8ce6192b919a7c18df40",
  56. "https://bcr.bazel.build/modules/protobuf/3.19.0/MODULE.bazel": "6b5fbb433f760a99a22b18b6850ed5784ef0e9928a72668b66e4d7ccd47db9b0",
  57. "https://bcr.bazel.build/modules/protobuf/3.19.6/MODULE.bazel": "9233edc5e1f2ee276a60de3eaa47ac4132302ef9643238f23128fea53ea12858",
  58. "https://bcr.bazel.build/modules/pybind11_bazel/2.11.1.bzl.1/MODULE.bazel": "1ef2994c097ee88f8f7ae8fbf991aaefb0603b2540fe575eca14943bc9f220a6",
  59. "https://bcr.bazel.build/modules/pybind11_bazel/2.11.1/MODULE.bazel": "88af1c246226d87e65be78ed49ecd1e6f5e98648558c14ce99176da041dc378e",
  60. "https://bcr.bazel.build/modules/pybind11_bazel/2.12.0/MODULE.bazel": "e6f4c20442eaa7c90d7190d8dc539d0ab422f95c65a57cc59562170c58ae3d34",
  61. "https://bcr.bazel.build/modules/pybind11_bazel/2.12.0/source.json": "6900fdc8a9e95866b8c0d4ad4aba4d4236317b5c1cd04c502df3f0d33afed680",
  62. "https://bcr.bazel.build/modules/re2/2023-09-01/MODULE.bazel": "cb3d511531b16cfc78a225a9e2136007a48cf8a677e4264baeab57fe78a80206",
  63. "https://bcr.bazel.build/modules/re2/2024-02-01/MODULE.bazel": "5ed922cb8b6c110e30969695e73bd0d3159576bf17ce8ee2443a7d07bf500551",
  64. "https://bcr.bazel.build/modules/re2/2024-06-01/MODULE.bazel": "0c4d80792f7db21f40e84057b623f549aba6c561fda2b0b1a640034a772c8e15",
  65. "https://bcr.bazel.build/modules/re2/2024-06-01/source.json": "97960cd6219f913eda7af9c798f866695d0883e1d79e9234ff385091d407ba86",
  66. "https://bcr.bazel.build/modules/rules_bison/0.2.2/MODULE.bazel": "4326371dd66dda3c04765cd7f1c64c5dbc064c673555078ec1e4f758ba77d4ba",
  67. "https://bcr.bazel.build/modules/rules_bison/0.2.2/source.json": "a11082c4935d0927c2e90d5d5abd44ceeca81a40b07d96b7a21bebf166f78f42",
  68. "https://bcr.bazel.build/modules/rules_cc/0.0.1/MODULE.bazel": "cb2aa0747f84c6c3a78dad4e2049c154f08ab9d166b1273835a8174940365647",
  69. "https://bcr.bazel.build/modules/rules_cc/0.0.2/MODULE.bazel": "6915987c90970493ab97393024c156ea8fb9f3bea953b2f3ec05c34f19b5695c",
  70. "https://bcr.bazel.build/modules/rules_cc/0.0.6/MODULE.bazel": "abf360251023dfe3efcef65ab9d56beefa8394d4176dd29529750e1c57eaa33f",
  71. "https://bcr.bazel.build/modules/rules_cc/0.0.8/MODULE.bazel": "964c85c82cfeb6f3855e6a07054fdb159aced38e99a5eecf7bce9d53990afa3e",
  72. "https://bcr.bazel.build/modules/rules_cc/0.0.9/MODULE.bazel": "836e76439f354b89afe6a911a7adf59a6b2518fafb174483ad78a2a2fde7b1c5",
  73. "https://bcr.bazel.build/modules/rules_cc/0.0.9/source.json": "1f1ba6fea244b616de4a554a0f4983c91a9301640c8fe0dd1d410254115c8430",
  74. "https://bcr.bazel.build/modules/rules_flex/0.2.1/MODULE.bazel": "fcac7054f1395733197089cb98fcdca1b3f06b2a973d8360cb45130e5f59ddb7",
  75. "https://bcr.bazel.build/modules/rules_flex/0.2.1/source.json": "8175f36e55139baf4a09b10365cb2c78ab664800d2ac6d32e4ac2d03622dbf4f",
  76. "https://bcr.bazel.build/modules/rules_foreign_cc/0.10.1/MODULE.bazel": "b9527010e5fef060af92b6724edb3691970a5b1f76f74b21d39f7d433641be60",
  77. "https://bcr.bazel.build/modules/rules_foreign_cc/0.10.1/source.json": "9300e71df0cdde0952f10afff1401fa664e9fc5d9ae6204660ba1b158d90d6a6",
  78. "https://bcr.bazel.build/modules/rules_foreign_cc/0.9.0/MODULE.bazel": "c9e8c682bf75b0e7c704166d79b599f93b72cfca5ad7477df596947891feeef6",
  79. "https://bcr.bazel.build/modules/rules_fuzzing/0.5.1/MODULE.bazel": "e6555740cac87ff14367e998bb4a417cf17d7953f81b161afcb679ddc5034b94",
  80. "https://bcr.bazel.build/modules/rules_fuzzing/0.5.1/source.json": "dca9ea70f034bac9650d9b679b8bb2d192958898027636361a95822fff8bc5a0",
  81. "https://bcr.bazel.build/modules/rules_java/4.0.0/MODULE.bazel": "5a78a7ae82cd1a33cef56dc578c7d2a46ed0dca12643ee45edbb8417899e6f74",
  82. "https://bcr.bazel.build/modules/rules_java/6.5.2/MODULE.bazel": "1d440d262d0e08453fa0c4d8f699ba81609ed0e9a9a0f02cd10b3e7942e61e31",
  83. "https://bcr.bazel.build/modules/rules_java/7.6.5/MODULE.bazel": "481164be5e02e4cab6e77a36927683263be56b7e36fef918b458d7a8a1ebadb1",
  84. "https://bcr.bazel.build/modules/rules_java/7.6.5/source.json": "a805b889531d1690e3c72a7a7e47a870d00323186a9904b36af83aa3d053ee8d",
  85. "https://bcr.bazel.build/modules/rules_jvm_external/4.4.2/MODULE.bazel": "a56b85e418c83eb1839819f0b515c431010160383306d13ec21959ac412d2fe7",
  86. "https://bcr.bazel.build/modules/rules_jvm_external/5.1/MODULE.bazel": "33f6f999e03183f7d088c9be518a63467dfd0be94a11d0055fe2d210f89aa909",
  87. "https://bcr.bazel.build/modules/rules_jvm_external/5.1/source.json": "5abb45cc9beb27b77aec6a65a11855ef2b55d95dfdc358e9f312b78ae0ba32d5",
  88. "https://bcr.bazel.build/modules/rules_license/0.0.3/MODULE.bazel": "627e9ab0247f7d1e05736b59dbb1b6871373de5ad31c3011880b4133cafd4bd0",
  89. "https://bcr.bazel.build/modules/rules_license/0.0.4/MODULE.bazel": "6a88dd22800cf1f9f79ba32cacad0d3a423ed28efa2c2ed5582eaa78dd3ac1e5",
  90. "https://bcr.bazel.build/modules/rules_license/0.0.7/MODULE.bazel": "088fbeb0b6a419005b89cf93fe62d9517c0a2b8bb56af3244af65ecfe37e7d5d",
  91. "https://bcr.bazel.build/modules/rules_license/0.0.7/source.json": "355cc5737a0f294e560d52b1b7a6492d4fff2caf0bef1a315df5a298fca2d34a",
  92. "https://bcr.bazel.build/modules/rules_m4/0.2.3/MODULE.bazel": "a201ad119823e1af5024240e1e1ef294425d9be73a698cb41c8450e6c8e107e3",
  93. "https://bcr.bazel.build/modules/rules_m4/0.2.3/source.json": "d2fd4b91471317d0e6368ece3da2334884879ed6d6289591c7312944e50dea70",
  94. "https://bcr.bazel.build/modules/rules_pkg/0.10.1/MODULE.bazel": "d6e593e048db5f1028f1f05ceb64b123aa6f1c2d43cba049c036443ab2cc2044",
  95. "https://bcr.bazel.build/modules/rules_pkg/0.10.1/source.json": "a3550442d1530f00fd2a51036250db1891c8fedfd85991c65a0bd0f6daefe0a3",
  96. "https://bcr.bazel.build/modules/rules_pkg/0.7.0/MODULE.bazel": "df99f03fc7934a4737122518bb87e667e62d780b610910f0447665a7e2be62dc",
  97. "https://bcr.bazel.build/modules/rules_proto/4.0.0/MODULE.bazel": "a7a7b6ce9bee418c1a760b3d84f83a299ad6952f9903c67f19e4edd964894e06",
  98. "https://bcr.bazel.build/modules/rules_proto/5.3.0-21.7/MODULE.bazel": "e8dff86b0971688790ae75528fe1813f71809b5afd57facb44dad9e8eca631b7",
  99. "https://bcr.bazel.build/modules/rules_proto/6.0.0-rc1/MODULE.bazel": "1e5b502e2e1a9e825eef74476a5a1ee524a92297085015a052510b09a1a09483",
  100. "https://bcr.bazel.build/modules/rules_proto/6.0.0-rc1/source.json": "8d8448e71706df7450ced227ca6b3812407ff5e2ccad74a43a9fbe79c84e34e0",
  101. "https://bcr.bazel.build/modules/rules_python/0.10.2/MODULE.bazel": "cc82bc96f2997baa545ab3ce73f196d040ffb8756fd2d66125a530031cd90e5f",
  102. "https://bcr.bazel.build/modules/rules_python/0.20.0/MODULE.bazel": "bfe14d17f20e3fe900b9588f526f52c967a6f281e47a1d6b988679bd15082286",
  103. "https://bcr.bazel.build/modules/rules_python/0.22.1/MODULE.bazel": "26114f0c0b5e93018c0c066d6673f1a2c3737c7e90af95eff30cfee38d0bbac7",
  104. "https://bcr.bazel.build/modules/rules_python/0.24.0/MODULE.bazel": "4bff7f583653d0762cda21303da0643cc4c545ddfd9593337f18dad8d1787801",
  105. "https://bcr.bazel.build/modules/rules_python/0.25.0/MODULE.bazel": "72f1506841c920a1afec76975b35312410eea3aa7b63267436bfb1dd91d2d382",
  106. "https://bcr.bazel.build/modules/rules_python/0.28.0/MODULE.bazel": "cba2573d870babc976664a912539b320cbaa7114cd3e8f053c720171cde331ed",
  107. "https://bcr.bazel.build/modules/rules_python/0.29.0/MODULE.bazel": "2ac8cd70524b4b9ec49a0b8284c79e4cd86199296f82f6e0d5da3f783d660c82",
  108. "https://bcr.bazel.build/modules/rules_python/0.31.0/MODULE.bazel": "93a43dc47ee570e6ec9f5779b2e64c1476a6ce921c48cc9a1678a91dd5f8fd58",
  109. "https://bcr.bazel.build/modules/rules_python/0.32.2/MODULE.bazel": "01052470fc30b49de91fb8483d26bea6f664500cfad0b078d4605b03e3a83ed4",
  110. "https://bcr.bazel.build/modules/rules_python/0.33.1/MODULE.bazel": "b6767735ae876488ca4210ae315709a10ed97a2ff791d7b185cb241fae4ba3f1",
  111. "https://bcr.bazel.build/modules/rules_python/0.33.1/source.json": "b3108745305a93436ed2727af9ddfb31c8471e9bdd40017ca0b805e70cf28d27",
  112. "https://bcr.bazel.build/modules/rules_python/0.4.0/MODULE.bazel": "9208ee05fd48bf09ac60ed269791cf17fb343db56c8226a720fbb1cdf467166c",
  113. "https://bcr.bazel.build/modules/stardoc/0.5.1/MODULE.bazel": "1a05d92974d0c122f5ccf09291442580317cdd859f07a8655f1db9a60374f9f8",
  114. "https://bcr.bazel.build/modules/stardoc/0.5.3/MODULE.bazel": "c7f6948dae6999bf0db32c1858ae345f112cacf98f174c7a8bb707e41b974f1c",
  115. "https://bcr.bazel.build/modules/stardoc/0.5.3/source.json": "cd53fe968dc8cd98197c052db3db6d82562960c87b61e7a90ee96f8e4e0dda97",
  116. "https://bcr.bazel.build/modules/upb/0.0.0-20220923-a547704/MODULE.bazel": "7298990c00040a0e2f121f6c32544bab27d4452f80d9ce51349b1a28f3005c43",
  117. "https://bcr.bazel.build/modules/zlib/1.2.11/MODULE.bazel": "07b389abc85fdbca459b69e2ec656ae5622873af3f845e1c9d80fe179f3effa0",
  118. "https://bcr.bazel.build/modules/zlib/1.2.12/MODULE.bazel": "3b1a8834ada2a883674be8cbd36ede1b6ec481477ada359cd2d3ddc562340b27",
  119. "https://bcr.bazel.build/modules/zlib/1.3.1.bcr.3/MODULE.bazel": "af322bc08976524477c79d1e45e241b6efbeb918c497e8840b8ab116802dda79",
  120. "https://bcr.bazel.build/modules/zlib/1.3.1.bcr.3/source.json": "2be409ac3c7601245958cd4fcdff4288be79ed23bd690b4b951f500d54ee6e7d",
  121. "https://bcr.bazel.build/modules/zstd/1.5.6/MODULE.bazel": "471ebe7d3cdd8c6469390fcf623eb4779ff55fbee0a87f1dc57a1def468b96d4",
  122. "https://bcr.bazel.build/modules/zstd/1.5.6/source.json": "02010c3333fc89b44fe861db049968decb6e688411f7f9d4f6791d74f9adfb51"
  123. },
  124. "selectedYankedVersions": {},
  125. "moduleExtensions": {
  126. "//bazel/cc_toolchains:clang_configuration.bzl%clang_toolchain_extension": {
  127. "general": {
  128. "bzlTransitiveDigest": "YfAlFgFWuxAcofKFZTG3JR3DeQD3yED9F1mzTVz6xoA=",
  129. "usagesDigest": "FiqDwj5QoiCFb1PRYvajLeyuRjRXbsy2CVC+VsEEt7Q=",
  130. "recordedFileInputs": {},
  131. "recordedDirentsInputs": {},
  132. "envVariables": {},
  133. "generatedRepoSpecs": {
  134. "bazel_cc_toolchain": {
  135. "bzlFile": "@@//bazel/cc_toolchains:clang_configuration.bzl",
  136. "ruleClassName": "configure_clang_toolchain",
  137. "attributes": {}
  138. }
  139. },
  140. "recordedRepoMappingEntries": []
  141. }
  142. },
  143. "//bazel/llvm_project:llvm_project.bzl%llvm_project": {
  144. "general": {
  145. "bzlTransitiveDigest": "QG2kkxgw5yvNHGJYbsdwlidT0uFXu5uZMW6KftuXDsI=",
  146. "usagesDigest": "0qlzYSob/rZ/yVQnGrAnMBlAhKszo5qDlauf4tO9tgY=",
  147. "recordedFileInputs": {},
  148. "recordedDirentsInputs": {},
  149. "envVariables": {},
  150. "generatedRepoSpecs": {
  151. "llvm-project": {
  152. "bzlFile": "@@_main~_repo_rules~llvm-raw//utils/bazel:configure.bzl",
  153. "ruleClassName": "llvm_configure",
  154. "attributes": {
  155. "targets": [
  156. "AArch64",
  157. "X86"
  158. ]
  159. }
  160. }
  161. },
  162. "recordedRepoMappingEntries": [
  163. [
  164. "",
  165. "llvm-raw",
  166. "_main~_repo_rules~llvm-raw"
  167. ]
  168. ]
  169. }
  170. },
  171. "@@apple_support~//crosstool:setup.bzl%apple_cc_configure_extension": {
  172. "general": {
  173. "bzlTransitiveDigest": "ltCGFbl/LQQZXn/LEMXfKX7pGwyqNiOCHcmiQW0tmjM=",
  174. "usagesDigest": "RkqDb8JtSSm4rLheCLMw/Dx3QQE7dZbl4taOVEYaQZg=",
  175. "recordedFileInputs": {},
  176. "recordedDirentsInputs": {},
  177. "envVariables": {},
  178. "generatedRepoSpecs": {
  179. "local_config_apple_cc": {
  180. "bzlFile": "@@apple_support~//crosstool:setup.bzl",
  181. "ruleClassName": "_apple_cc_autoconf",
  182. "attributes": {}
  183. },
  184. "local_config_apple_cc_toolchains": {
  185. "bzlFile": "@@apple_support~//crosstool:setup.bzl",
  186. "ruleClassName": "_apple_cc_autoconf_toolchains",
  187. "attributes": {}
  188. }
  189. },
  190. "recordedRepoMappingEntries": [
  191. [
  192. "apple_support~",
  193. "bazel_tools",
  194. "bazel_tools"
  195. ]
  196. ]
  197. }
  198. },
  199. "@@hedron_compile_commands~//:workspace_setup.bzl%hedron_compile_commands_extension": {
  200. "general": {
  201. "bzlTransitiveDigest": "dt88TFdQv/FH3VMUEhxvtc8bsKnxEN2hrpeC8gEyHw4=",
  202. "usagesDigest": "TTuQdozEYhaN7+oiVYMFloEWxoZfdKcT7Sfz3s7VepA=",
  203. "recordedFileInputs": {},
  204. "recordedDirentsInputs": {},
  205. "envVariables": {},
  206. "generatedRepoSpecs": {},
  207. "recordedRepoMappingEntries": [
  208. [
  209. "hedron_compile_commands~",
  210. "bazel_tools",
  211. "bazel_tools"
  212. ]
  213. ]
  214. }
  215. },
  216. "@@hedron_compile_commands~//:workspace_setup_transitive.bzl%hedron_compile_commands_extension": {
  217. "general": {
  218. "bzlTransitiveDigest": "IfDf0vEa2jjQ11RNpUM0u4xftPXIs+pyM8IMVkRqVMk=",
  219. "usagesDigest": "SbxmRqzxHy+fuSIIxYlFqlmPJ3V0Wk+4XjQQhrhTIgo=",
  220. "recordedFileInputs": {},
  221. "recordedDirentsInputs": {},
  222. "envVariables": {},
  223. "generatedRepoSpecs": {},
  224. "recordedRepoMappingEntries": []
  225. }
  226. },
  227. "@@hedron_compile_commands~//:workspace_setup_transitive_transitive.bzl%hedron_compile_commands_extension": {
  228. "general": {
  229. "bzlTransitiveDigest": "1p58k3o2Jgjt/pBE7cb8WmmkplrSguIKma/h32x7X10=",
  230. "usagesDigest": "JJJti4hzFY57HoGTLSrlLzOfmDqmd4Tk20aRYmWkkoU=",
  231. "recordedFileInputs": {},
  232. "recordedDirentsInputs": {},
  233. "envVariables": {},
  234. "generatedRepoSpecs": {},
  235. "recordedRepoMappingEntries": []
  236. }
  237. },
  238. "@@hedron_compile_commands~//:workspace_setup_transitive_transitive_transitive.bzl%hedron_compile_commands_extension": {
  239. "general": {
  240. "bzlTransitiveDigest": "arNWX4EleUjJxqkM5nCRTj+ce05Zz1gSdGH1DCKOoLs=",
  241. "usagesDigest": "BsZ4Efn1w1bRgZQeNwryYQHDfBfnD1GzDQtpP27craI=",
  242. "recordedFileInputs": {},
  243. "recordedDirentsInputs": {},
  244. "envVariables": {},
  245. "generatedRepoSpecs": {},
  246. "recordedRepoMappingEntries": []
  247. }
  248. },
  249. "@@platforms//host:extension.bzl%host_platform": {
  250. "general": {
  251. "bzlTransitiveDigest": "xelQcPZH8+tmuOHVjL9vDxMnnQNMlwj0SlvgoqBkm4U=",
  252. "usagesDigest": "V1R2Y2oMxKNfx2WCWpSCaUV1WefW1o8HZGm3v1vHgY4=",
  253. "recordedFileInputs": {},
  254. "recordedDirentsInputs": {},
  255. "envVariables": {},
  256. "generatedRepoSpecs": {
  257. "host_platform": {
  258. "bzlFile": "@@platforms//host:extension.bzl",
  259. "ruleClassName": "host_platform_repo",
  260. "attributes": {}
  261. }
  262. },
  263. "recordedRepoMappingEntries": []
  264. }
  265. },
  266. "@@pybind11_bazel~//:internal_configure.bzl%internal_configure_extension": {
  267. "general": {
  268. "bzlTransitiveDigest": "+F47SE20NlARCHVGbd4r7kkjg4OA0eCJcOd5fqKq4fQ=",
  269. "usagesDigest": "iH2lKTfsNEpn2MqtGpBNwJrxbb2C7DiYmh/XuKgDtr8=",
  270. "recordedFileInputs": {
  271. "@@pybind11_bazel~//MODULE.bazel": "e6f4c20442eaa7c90d7190d8dc539d0ab422f95c65a57cc59562170c58ae3d34"
  272. },
  273. "recordedDirentsInputs": {},
  274. "envVariables": {},
  275. "generatedRepoSpecs": {
  276. "pybind11": {
  277. "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl",
  278. "ruleClassName": "http_archive",
  279. "attributes": {
  280. "build_file": "@@pybind11_bazel~//:pybind11-BUILD.bazel",
  281. "strip_prefix": "pybind11-2.12.0",
  282. "urls": [
  283. "https://github.com/pybind/pybind11/archive/v2.12.0.zip"
  284. ]
  285. }
  286. }
  287. },
  288. "recordedRepoMappingEntries": [
  289. [
  290. "pybind11_bazel~",
  291. "bazel_tools",
  292. "bazel_tools"
  293. ]
  294. ]
  295. }
  296. },
  297. "@@rules_bison~//bison/internal:default_toolchain_ext.bzl%default_toolchain_ext": {
  298. "general": {
  299. "bzlTransitiveDigest": "JVWcUny48LFS9D+xz4b9u/94awfBOIGXV5iu8iY/nRc=",
  300. "usagesDigest": "d7Z3y2AZdN7Sc4BdRU4h9HDd4nZUFM+Ls3iQYb3mCOA=",
  301. "recordedFileInputs": {},
  302. "recordedDirentsInputs": {},
  303. "envVariables": {},
  304. "generatedRepoSpecs": {
  305. "bison_v3.3.2": {
  306. "bzlFile": "@@rules_bison~//bison/rules:bison_repository.bzl",
  307. "ruleClassName": "bison_repository",
  308. "attributes": {
  309. "version": "3.3.2"
  310. }
  311. },
  312. "bison": {
  313. "bzlFile": "@@rules_bison~//bison/rules:bison_toolchain_repository.bzl",
  314. "ruleClassName": "bison_toolchain_repository",
  315. "attributes": {
  316. "bison_repository": "@bison_v3.3.2"
  317. }
  318. }
  319. },
  320. "moduleExtensionMetadata": {
  321. "explicitRootModuleDirectDeps": [
  322. "bison"
  323. ],
  324. "explicitRootModuleDirectDevDeps": [],
  325. "useAllRepos": "NO",
  326. "reproducible": false
  327. },
  328. "recordedRepoMappingEntries": []
  329. }
  330. },
  331. "@@rules_flex~//flex/internal:default_toolchain_ext.bzl%default_toolchain_ext": {
  332. "general": {
  333. "bzlTransitiveDigest": "fn+aX2vKsiaNLj3QtNfsRcI8fiATDtxAayRTJFGJkNI=",
  334. "usagesDigest": "K0ChaFqqamXHtPFFjEXpS4d978I5dWaIJ5k+Xu7Xo/c=",
  335. "recordedFileInputs": {},
  336. "recordedDirentsInputs": {},
  337. "envVariables": {},
  338. "generatedRepoSpecs": {
  339. "flex": {
  340. "bzlFile": "@@rules_flex~//flex/rules:flex_toolchain_repository.bzl",
  341. "ruleClassName": "flex_toolchain_repository",
  342. "attributes": {
  343. "flex_repository": "@flex_v2.6.4"
  344. }
  345. },
  346. "flex_v2.6.4": {
  347. "bzlFile": "@@rules_flex~//flex/rules:flex_repository.bzl",
  348. "ruleClassName": "flex_repository",
  349. "attributes": {
  350. "version": "2.6.4"
  351. }
  352. }
  353. },
  354. "moduleExtensionMetadata": {
  355. "explicitRootModuleDirectDeps": [
  356. "flex"
  357. ],
  358. "explicitRootModuleDirectDevDeps": [],
  359. "useAllRepos": "NO",
  360. "reproducible": false
  361. },
  362. "recordedRepoMappingEntries": []
  363. }
  364. },
  365. "@@rules_foreign_cc~//foreign_cc:extensions.bzl%tools": {
  366. "general": {
  367. "bzlTransitiveDigest": "Zwv7UlthPNm6M1lPfKCT9DJgx/wUQNASsWf6E5tz8EA=",
  368. "usagesDigest": "LCucDH35E6MIJI1wrj1NUamhSJpsIKTBN95bsMLcGQE=",
  369. "recordedFileInputs": {},
  370. "recordedDirentsInputs": {},
  371. "envVariables": {},
  372. "generatedRepoSpecs": {
  373. "cmake-3.23.2-linux-aarch64": {
  374. "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl",
  375. "ruleClassName": "http_archive",
  376. "attributes": {
  377. "urls": [
  378. "https://github.com/Kitware/CMake/releases/download/v3.23.2/cmake-3.23.2-linux-aarch64.tar.gz"
  379. ],
  380. "sha256": "f2654bf780b53f170bbbec44d8ac67d401d24788e590faa53036a89476efa91e",
  381. "strip_prefix": "cmake-3.23.2-linux-aarch64",
  382. "build_file_content": "load(\"@rules_foreign_cc//toolchains/native_tools:native_tools_toolchain.bzl\", \"native_tool_toolchain\")\n\npackage(default_visibility = [\"//visibility:public\"])\n\nfilegroup(\n name = \"cmake_data\",\n srcs = glob(\n [\n \"**\",\n ],\n exclude = [\n \"WORKSPACE\",\n \"WORKSPACE.bazel\",\n \"BUILD\",\n \"BUILD.bazel\",\n ],\n ),\n)\n\nnative_tool_toolchain(\n name = \"cmake_tool\",\n path = \"bin/cmake\",\n target = \":cmake_data\",\n)\n"
  383. }
  384. },
  385. "rules_foreign_cc_framework_toolchain_macos": {
  386. "bzlFile": "@@rules_foreign_cc~//foreign_cc/private/framework:toolchain.bzl",
  387. "ruleClassName": "framework_toolchain_repository",
  388. "attributes": {
  389. "commands_src": "@rules_foreign_cc//foreign_cc/private/framework/toolchains:macos_commands.bzl",
  390. "exec_compatible_with": [
  391. "@platforms//os:macos"
  392. ]
  393. }
  394. },
  395. "gnumake_src": {
  396. "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl",
  397. "ruleClassName": "http_archive",
  398. "attributes": {
  399. "build_file_content": "filegroup(\n name = \"all_srcs\",\n srcs = glob([\"**\"]),\n visibility = [\"//visibility:public\"],\n)\n",
  400. "sha256": "581f4d4e872da74b3941c874215898a7d35802f03732bdccee1d4a7979105d18",
  401. "strip_prefix": "make-4.4",
  402. "urls": [
  403. "https://mirror.bazel.build/ftpmirror.gnu.org/gnu/make/make-4.4.tar.gz",
  404. "http://ftpmirror.gnu.org/gnu/make/make-4.4.tar.gz"
  405. ]
  406. }
  407. },
  408. "gettext_runtime": {
  409. "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl",
  410. "ruleClassName": "http_archive",
  411. "attributes": {
  412. "build_file_content": "\ncc_import(\n name = \"gettext_runtime\",\n shared_library = \"bin/libintl-8.dll\",\n visibility = [\"//visibility:public\"],\n)\n ",
  413. "sha256": "1f4269c0e021076d60a54e98da6f978a3195013f6de21674ba0edbc339c5b079",
  414. "urls": [
  415. "https://download.gnome.org/binaries/win64/dependencies/gettext-runtime_0.18.1.1-2_win64.zip"
  416. ]
  417. }
  418. },
  419. "cmake_src": {
  420. "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl",
  421. "ruleClassName": "http_archive",
  422. "attributes": {
  423. "build_file_content": "filegroup(\n name = \"all_srcs\",\n srcs = glob([\"**\"]),\n visibility = [\"//visibility:public\"],\n)\n",
  424. "sha256": "f316b40053466f9a416adf981efda41b160ca859e97f6a484b447ea299ff26aa",
  425. "strip_prefix": "cmake-3.23.2",
  426. "urls": [
  427. "https://github.com/Kitware/CMake/releases/download/v3.23.2/cmake-3.23.2.tar.gz"
  428. ]
  429. }
  430. },
  431. "bazel_skylib": {
  432. "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl",
  433. "ruleClassName": "http_archive",
  434. "attributes": {
  435. "urls": [
  436. "https://mirror.bazel.build/github.com/bazelbuild/bazel-skylib/releases/download/1.2.1/bazel-skylib-1.2.1.tar.gz",
  437. "https://github.com/bazelbuild/bazel-skylib/releases/download/1.2.1/bazel-skylib-1.2.1.tar.gz"
  438. ],
  439. "sha256": "f7be3474d42aae265405a592bb7da8e171919d74c16f082a5457840f06054728"
  440. }
  441. },
  442. "cmake-3.23.2-macos-universal": {
  443. "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl",
  444. "ruleClassName": "http_archive",
  445. "attributes": {
  446. "urls": [
  447. "https://github.com/Kitware/CMake/releases/download/v3.23.2/cmake-3.23.2-macos-universal.tar.gz"
  448. ],
  449. "sha256": "853a0f9af148c5ef47282ffffee06c4c9f257be2635936755f39ca13c3286c88",
  450. "strip_prefix": "cmake-3.23.2-macos-universal/CMake.app/Contents",
  451. "build_file_content": "load(\"@rules_foreign_cc//toolchains/native_tools:native_tools_toolchain.bzl\", \"native_tool_toolchain\")\n\npackage(default_visibility = [\"//visibility:public\"])\n\nfilegroup(\n name = \"cmake_data\",\n srcs = glob(\n [\n \"**\",\n ],\n exclude = [\n \"WORKSPACE\",\n \"WORKSPACE.bazel\",\n \"BUILD\",\n \"BUILD.bazel\",\n ],\n ),\n)\n\nnative_tool_toolchain(\n name = \"cmake_tool\",\n path = \"bin/cmake\",\n target = \":cmake_data\",\n)\n"
  452. }
  453. },
  454. "meson_src": {
  455. "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl",
  456. "ruleClassName": "http_archive",
  457. "attributes": {
  458. "build_file_content": "exports_files([\"meson.py\"])\n\nfilegroup(\n name = \"runtime\",\n srcs = glob([\"mesonbuild/**\"]),\n visibility = [\"//visibility:public\"],\n)\n",
  459. "strip_prefix": "meson-1.1.1",
  460. "url": "https://github.com/mesonbuild/meson/releases/download/1.1.1/meson-1.1.1.tar.gz"
  461. }
  462. },
  463. "rules_foreign_cc_framework_toolchain_freebsd": {
  464. "bzlFile": "@@rules_foreign_cc~//foreign_cc/private/framework:toolchain.bzl",
  465. "ruleClassName": "framework_toolchain_repository",
  466. "attributes": {
  467. "commands_src": "@rules_foreign_cc//foreign_cc/private/framework/toolchains:freebsd_commands.bzl",
  468. "exec_compatible_with": [
  469. "@platforms//os:freebsd"
  470. ]
  471. }
  472. },
  473. "rules_foreign_cc_framework_toolchain_linux": {
  474. "bzlFile": "@@rules_foreign_cc~//foreign_cc/private/framework:toolchain.bzl",
  475. "ruleClassName": "framework_toolchain_repository",
  476. "attributes": {
  477. "commands_src": "@rules_foreign_cc//foreign_cc/private/framework/toolchains:linux_commands.bzl",
  478. "exec_compatible_with": [
  479. "@platforms//os:linux"
  480. ]
  481. }
  482. },
  483. "rules_python": {
  484. "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl",
  485. "ruleClassName": "http_archive",
  486. "attributes": {
  487. "sha256": "84aec9e21cc56fbc7f1335035a71c850d1b9b5cc6ff497306f84cced9a769841",
  488. "strip_prefix": "rules_python-0.23.1",
  489. "url": "https://github.com/bazelbuild/rules_python/archive/refs/tags/0.23.1.tar.gz"
  490. }
  491. },
  492. "pkgconfig_src": {
  493. "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl",
  494. "ruleClassName": "http_archive",
  495. "attributes": {
  496. "build_file_content": "filegroup(\n name = \"all_srcs\",\n srcs = glob([\"**\"]),\n visibility = [\"//visibility:public\"],\n)\n",
  497. "sha256": "6fc69c01688c9458a57eb9a1664c9aba372ccda420a02bf4429fe610e7e7d591",
  498. "strip_prefix": "pkg-config-0.29.2",
  499. "patches": [
  500. "@@rules_foreign_cc~//toolchains:pkgconfig-detectenv.patch",
  501. "@@rules_foreign_cc~//toolchains:pkgconfig-makefile-vc.patch"
  502. ],
  503. "urls": [
  504. "https://pkgconfig.freedesktop.org/releases/pkg-config-0.29.2.tar.gz"
  505. ]
  506. }
  507. },
  508. "ninja_build_src": {
  509. "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl",
  510. "ruleClassName": "http_archive",
  511. "attributes": {
  512. "build_file_content": "filegroup(\n name = \"all_srcs\",\n srcs = glob([\"**\"]),\n visibility = [\"//visibility:public\"],\n)\n",
  513. "sha256": "31747ae633213f1eda3842686f83c2aa1412e0f5691d1c14dbbcc67fe7400cea",
  514. "strip_prefix": "ninja-1.11.1",
  515. "urls": [
  516. "https://github.com/ninja-build/ninja/archive/v1.11.1.tar.gz"
  517. ]
  518. }
  519. },
  520. "ninja_1.11.1_linux": {
  521. "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl",
  522. "ruleClassName": "http_archive",
  523. "attributes": {
  524. "urls": [
  525. "https://github.com/ninja-build/ninja/releases/download/v1.11.1/ninja-linux.zip"
  526. ],
  527. "sha256": "b901ba96e486dce377f9a070ed4ef3f79deb45f4ffe2938f8e7ddc69cfb3df77",
  528. "strip_prefix": "",
  529. "build_file_content": "load(\"@rules_foreign_cc//toolchains/native_tools:native_tools_toolchain.bzl\", \"native_tool_toolchain\")\n\npackage(default_visibility = [\"//visibility:public\"])\n\nfilegroup(\n name = \"ninja_bin\",\n srcs = [\"ninja\"],\n)\n\nnative_tool_toolchain(\n name = \"ninja_tool\",\n env = {\"NINJA\": \"$(execpath :ninja_bin)\"},\n path = \"$(execpath :ninja_bin)\",\n target = \":ninja_bin\",\n)\n"
  530. }
  531. },
  532. "glib_src": {
  533. "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl",
  534. "ruleClassName": "http_archive",
  535. "attributes": {
  536. "build_file_content": "\ncc_import(\n name = \"msvc_hdr\",\n hdrs = [\"msvc_recommended_pragmas.h\"],\n visibility = [\"//visibility:public\"],\n)\n ",
  537. "sha256": "bc96f63112823b7d6c9f06572d2ad626ddac7eb452c04d762592197f6e07898e",
  538. "strip_prefix": "glib-2.26.1",
  539. "urls": [
  540. "https://download.gnome.org/sources/glib/2.26/glib-2.26.1.tar.gz"
  541. ]
  542. }
  543. },
  544. "cmake-3.23.2-windows-x86_64": {
  545. "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl",
  546. "ruleClassName": "http_archive",
  547. "attributes": {
  548. "urls": [
  549. "https://github.com/Kitware/CMake/releases/download/v3.23.2/cmake-3.23.2-windows-x86_64.zip"
  550. ],
  551. "sha256": "2329387f3166b84c25091c86389fb891193967740c9bcf01e7f6d3306f7ffda0",
  552. "strip_prefix": "cmake-3.23.2-windows-x86_64",
  553. "build_file_content": "load(\"@rules_foreign_cc//toolchains/native_tools:native_tools_toolchain.bzl\", \"native_tool_toolchain\")\n\npackage(default_visibility = [\"//visibility:public\"])\n\nfilegroup(\n name = \"cmake_data\",\n srcs = glob(\n [\n \"**\",\n ],\n exclude = [\n \"WORKSPACE\",\n \"WORKSPACE.bazel\",\n \"BUILD\",\n \"BUILD.bazel\",\n ],\n ),\n)\n\nnative_tool_toolchain(\n name = \"cmake_tool\",\n path = \"bin/cmake.exe\",\n target = \":cmake_data\",\n)\n"
  554. }
  555. },
  556. "glib_runtime": {
  557. "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl",
  558. "ruleClassName": "http_archive",
  559. "attributes": {
  560. "build_file_content": "\nexports_files(\n [\n \"bin/libgio-2.0-0.dll\",\n \"bin/libglib-2.0-0.dll\",\n \"bin/libgmodule-2.0-0.dll\",\n \"bin/libgobject-2.0-0.dll\",\n \"bin/libgthread-2.0-0.dll\",\n ],\n visibility = [\"//visibility:public\"],\n)\n ",
  561. "sha256": "88d857087e86f16a9be651ee7021880b3f7ba050d34a1ed9f06113b8799cb973",
  562. "urls": [
  563. "https://download.gnome.org/binaries/win64/glib/2.26/glib_2.26.1-1_win64.zip"
  564. ]
  565. }
  566. },
  567. "rules_foreign_cc_framework_toolchains": {
  568. "bzlFile": "@@rules_foreign_cc~//foreign_cc/private/framework:toolchain.bzl",
  569. "ruleClassName": "framework_toolchain_repository_hub",
  570. "attributes": {}
  571. },
  572. "glib_dev": {
  573. "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl",
  574. "ruleClassName": "http_archive",
  575. "attributes": {
  576. "build_file_content": "\nload(\"@rules_cc//cc:defs.bzl\", \"cc_library\")\n\ncc_import(\n name = \"glib_dev\",\n hdrs = glob([\"include/**\"]),\n shared_library = \"@glib_runtime//:bin/libglib-2.0-0.dll\",\n visibility = [\"//visibility:public\"],\n)\n ",
  577. "sha256": "bdf18506df304d38be98a4b3f18055b8b8cca81beabecad0eece6ce95319c369",
  578. "urls": [
  579. "https://download.gnome.org/binaries/win64/glib/2.26/glib-dev_2.26.1-1_win64.zip"
  580. ]
  581. }
  582. },
  583. "ninja_1.11.1_mac": {
  584. "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl",
  585. "ruleClassName": "http_archive",
  586. "attributes": {
  587. "urls": [
  588. "https://github.com/ninja-build/ninja/releases/download/v1.11.1/ninja-mac.zip"
  589. ],
  590. "sha256": "482ecb23c59ae3d4f158029112de172dd96bb0e97549c4b1ca32d8fad11f873e",
  591. "strip_prefix": "",
  592. "build_file_content": "load(\"@rules_foreign_cc//toolchains/native_tools:native_tools_toolchain.bzl\", \"native_tool_toolchain\")\n\npackage(default_visibility = [\"//visibility:public\"])\n\nfilegroup(\n name = \"ninja_bin\",\n srcs = [\"ninja\"],\n)\n\nnative_tool_toolchain(\n name = \"ninja_tool\",\n env = {\"NINJA\": \"$(execpath :ninja_bin)\"},\n path = \"$(execpath :ninja_bin)\",\n target = \":ninja_bin\",\n)\n"
  593. }
  594. },
  595. "cmake_3.23.2_toolchains": {
  596. "bzlFile": "@@rules_foreign_cc~//toolchains:prebuilt_toolchains_repository.bzl",
  597. "ruleClassName": "prebuilt_toolchains_repository",
  598. "attributes": {
  599. "repos": {
  600. "cmake-3.23.2-linux-aarch64": [
  601. "@platforms//cpu:aarch64",
  602. "@platforms//os:linux"
  603. ],
  604. "cmake-3.23.2-linux-x86_64": [
  605. "@platforms//cpu:x86_64",
  606. "@platforms//os:linux"
  607. ],
  608. "cmake-3.23.2-macos-universal": [
  609. "@platforms//os:macos"
  610. ],
  611. "cmake-3.23.2-windows-i386": [
  612. "@platforms//cpu:x86_32",
  613. "@platforms//os:windows"
  614. ],
  615. "cmake-3.23.2-windows-x86_64": [
  616. "@platforms//cpu:x86_64",
  617. "@platforms//os:windows"
  618. ]
  619. },
  620. "tool": "cmake"
  621. }
  622. },
  623. "ninja_1.11.1_toolchains": {
  624. "bzlFile": "@@rules_foreign_cc~//toolchains:prebuilt_toolchains_repository.bzl",
  625. "ruleClassName": "prebuilt_toolchains_repository",
  626. "attributes": {
  627. "repos": {
  628. "ninja_1.11.1_linux": [
  629. "@platforms//cpu:x86_64",
  630. "@platforms//os:linux"
  631. ],
  632. "ninja_1.11.1_mac": [
  633. "@platforms//cpu:x86_64",
  634. "@platforms//os:macos"
  635. ],
  636. "ninja_1.11.1_win": [
  637. "@platforms//cpu:x86_64",
  638. "@platforms//os:windows"
  639. ]
  640. },
  641. "tool": "ninja"
  642. }
  643. },
  644. "ninja_1.11.1_win": {
  645. "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl",
  646. "ruleClassName": "http_archive",
  647. "attributes": {
  648. "urls": [
  649. "https://github.com/ninja-build/ninja/releases/download/v1.11.1/ninja-win.zip"
  650. ],
  651. "sha256": "524b344a1a9a55005eaf868d991e090ab8ce07fa109f1820d40e74642e289abc",
  652. "strip_prefix": "",
  653. "build_file_content": "load(\"@rules_foreign_cc//toolchains/native_tools:native_tools_toolchain.bzl\", \"native_tool_toolchain\")\n\npackage(default_visibility = [\"//visibility:public\"])\n\nfilegroup(\n name = \"ninja_bin\",\n srcs = [\"ninja.exe\"],\n)\n\nnative_tool_toolchain(\n name = \"ninja_tool\",\n env = {\"NINJA\": \"$(execpath :ninja_bin)\"},\n path = \"$(execpath :ninja_bin)\",\n target = \":ninja_bin\",\n)\n"
  654. }
  655. },
  656. "cmake-3.23.2-windows-i386": {
  657. "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl",
  658. "ruleClassName": "http_archive",
  659. "attributes": {
  660. "urls": [
  661. "https://github.com/Kitware/CMake/releases/download/v3.23.2/cmake-3.23.2-windows-i386.zip"
  662. ],
  663. "sha256": "6a4fcd6a2315b93cb23c93507efccacc30c449c2bf98f14d6032bb226c582e07",
  664. "strip_prefix": "cmake-3.23.2-windows-i386",
  665. "build_file_content": "load(\"@rules_foreign_cc//toolchains/native_tools:native_tools_toolchain.bzl\", \"native_tool_toolchain\")\n\npackage(default_visibility = [\"//visibility:public\"])\n\nfilegroup(\n name = \"cmake_data\",\n srcs = glob(\n [\n \"**\",\n ],\n exclude = [\n \"WORKSPACE\",\n \"WORKSPACE.bazel\",\n \"BUILD\",\n \"BUILD.bazel\",\n ],\n ),\n)\n\nnative_tool_toolchain(\n name = \"cmake_tool\",\n path = \"bin/cmake.exe\",\n target = \":cmake_data\",\n)\n"
  666. }
  667. },
  668. "cmake-3.23.2-linux-x86_64": {
  669. "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl",
  670. "ruleClassName": "http_archive",
  671. "attributes": {
  672. "urls": [
  673. "https://github.com/Kitware/CMake/releases/download/v3.23.2/cmake-3.23.2-linux-x86_64.tar.gz"
  674. ],
  675. "sha256": "aaced6f745b86ce853661a595bdac6c5314a60f8181b6912a0a4920acfa32708",
  676. "strip_prefix": "cmake-3.23.2-linux-x86_64",
  677. "build_file_content": "load(\"@rules_foreign_cc//toolchains/native_tools:native_tools_toolchain.bzl\", \"native_tool_toolchain\")\n\npackage(default_visibility = [\"//visibility:public\"])\n\nfilegroup(\n name = \"cmake_data\",\n srcs = glob(\n [\n \"**\",\n ],\n exclude = [\n \"WORKSPACE\",\n \"WORKSPACE.bazel\",\n \"BUILD\",\n \"BUILD.bazel\",\n ],\n ),\n)\n\nnative_tool_toolchain(\n name = \"cmake_tool\",\n path = \"bin/cmake\",\n target = \":cmake_data\",\n)\n"
  678. }
  679. },
  680. "rules_foreign_cc_framework_toolchain_windows": {
  681. "bzlFile": "@@rules_foreign_cc~//foreign_cc/private/framework:toolchain.bzl",
  682. "ruleClassName": "framework_toolchain_repository",
  683. "attributes": {
  684. "commands_src": "@rules_foreign_cc//foreign_cc/private/framework/toolchains:windows_commands.bzl",
  685. "exec_compatible_with": [
  686. "@platforms//os:windows"
  687. ]
  688. }
  689. }
  690. },
  691. "recordedRepoMappingEntries": [
  692. [
  693. "rules_foreign_cc~",
  694. "bazel_tools",
  695. "bazel_tools"
  696. ],
  697. [
  698. "rules_foreign_cc~",
  699. "rules_foreign_cc",
  700. "rules_foreign_cc~"
  701. ]
  702. ]
  703. }
  704. },
  705. "@@rules_fuzzing~//fuzzing/private:extensions.bzl%non_module_dependencies": {
  706. "general": {
  707. "bzlTransitiveDigest": "4sxbTq2j1XQCFfsefsoKABQqsrPY1Zgr6d5hyosptkE=",
  708. "usagesDigest": "GQ8oB+GCWPZFOwBiLQ+5DUkEPeGNmfXMfasUU9AB030=",
  709. "recordedFileInputs": {},
  710. "recordedDirentsInputs": {},
  711. "envVariables": {},
  712. "generatedRepoSpecs": {
  713. "bazel_skylib": {
  714. "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl",
  715. "ruleClassName": "http_archive",
  716. "attributes": {
  717. "sha256": "cd55a062e763b9349921f0f5db8c3933288dc8ba4f76dd9416aac68acee3cb94",
  718. "urls": [
  719. "https://mirror.bazel.build/github.com/bazelbuild/bazel-skylib/releases/download/1.5.0/bazel-skylib-1.5.0.tar.gz",
  720. "https://github.com/bazelbuild/bazel-skylib/releases/download/1.5.0/bazel-skylib-1.5.0.tar.gz"
  721. ]
  722. }
  723. },
  724. "rules_fuzzing_jazzer": {
  725. "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl",
  726. "ruleClassName": "http_jar",
  727. "attributes": {
  728. "sha256": "ee6feb569d88962d59cb59e8a31eb9d007c82683f3ebc64955fd5b96f277eec2",
  729. "url": "https://repo1.maven.org/maven2/com/code-intelligence/jazzer/0.20.1/jazzer-0.20.1.jar"
  730. }
  731. },
  732. "rules_python": {
  733. "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl",
  734. "ruleClassName": "http_archive",
  735. "attributes": {
  736. "sha256": "9d04041ac92a0985e344235f5d946f71ac543f1b1565f2cdbc9a2aaee8adf55b",
  737. "strip_prefix": "rules_python-0.26.0",
  738. "url": "https://github.com/bazelbuild/rules_python/releases/download/0.26.0/rules_python-0.26.0.tar.gz"
  739. }
  740. },
  741. "rules_fuzzing_oss_fuzz": {
  742. "bzlFile": "@@rules_fuzzing~//fuzzing/private/oss_fuzz:repository.bzl",
  743. "ruleClassName": "oss_fuzz_repository",
  744. "attributes": {}
  745. },
  746. "com_google_absl": {
  747. "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl",
  748. "ruleClassName": "http_archive",
  749. "attributes": {
  750. "urls": [
  751. "https://github.com/abseil/abseil-cpp/archive/refs/tags/20240116.1.zip"
  752. ],
  753. "strip_prefix": "abseil-cpp-20240116.1",
  754. "integrity": "sha256-7capMWOvWyoYbUaHF/b+I2U6XLMaHmky8KugWvfXYuk="
  755. }
  756. },
  757. "honggfuzz": {
  758. "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl",
  759. "ruleClassName": "http_archive",
  760. "attributes": {
  761. "build_file": "@@rules_fuzzing~//:honggfuzz.BUILD",
  762. "sha256": "6b18ba13bc1f36b7b950c72d80f19ea67fbadc0ac0bb297ec89ad91f2eaa423e",
  763. "url": "https://github.com/google/honggfuzz/archive/2.5.zip",
  764. "strip_prefix": "honggfuzz-2.5"
  765. }
  766. },
  767. "platforms": {
  768. "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl",
  769. "ruleClassName": "http_archive",
  770. "attributes": {
  771. "urls": [
  772. "https://mirror.bazel.build/github.com/bazelbuild/platforms/releases/download/0.0.8/platforms-0.0.8.tar.gz",
  773. "https://github.com/bazelbuild/platforms/releases/download/0.0.8/platforms-0.0.8.tar.gz"
  774. ],
  775. "sha256": "8150406605389ececb6da07cbcb509d5637a3ab9a24bc69b1101531367d89d74"
  776. }
  777. },
  778. "rules_fuzzing_jazzer_api": {
  779. "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl",
  780. "ruleClassName": "http_jar",
  781. "attributes": {
  782. "sha256": "f5a60242bc408f7fa20fccf10d6c5c5ea1fcb3c6f44642fec5af88373ae7aa1b",
  783. "url": "https://repo1.maven.org/maven2/com/code-intelligence/jazzer-api/0.20.1/jazzer-api-0.20.1.jar"
  784. }
  785. }
  786. },
  787. "recordedRepoMappingEntries": [
  788. [
  789. "rules_fuzzing~",
  790. "bazel_tools",
  791. "bazel_tools"
  792. ]
  793. ]
  794. }
  795. },
  796. "@@rules_jvm_external~//:extensions.bzl%maven": {
  797. "general": {
  798. "bzlTransitiveDigest": "4ijz6uc3T4E+d+U8LQv4EAt+8OqZNVY/lzvhLx3y1yg=",
  799. "usagesDigest": "OjLvK9v56sSYg9fWBGDp03uaz8IwSP9Vg23Iv73BRdY=",
  800. "recordedFileInputs": {
  801. "@@rules_jvm_external~//rules_jvm_external_deps_install.json": "3ab1f67b0de4815df110bc72ccd6c77882b3b21d3d1e0a84445847b6ce3235a3"
  802. },
  803. "recordedDirentsInputs": {},
  804. "envVariables": {},
  805. "generatedRepoSpecs": {
  806. "org_slf4j_slf4j_api_1_7_30": {
  807. "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl",
  808. "ruleClassName": "http_file",
  809. "attributes": {
  810. "sha256": "cdba07964d1bb40a0761485c6b1e8c2f8fd9eb1d19c53928ac0d7f9510105c57",
  811. "urls": [
  812. "https://repo1.maven.org/maven2/org/slf4j/slf4j-api/1.7.30/slf4j-api-1.7.30.jar",
  813. "https://maven.google.com/org/slf4j/slf4j-api/1.7.30/slf4j-api-1.7.30.jar"
  814. ],
  815. "downloaded_file_path": "org/slf4j/slf4j-api/1.7.30/slf4j-api-1.7.30.jar"
  816. }
  817. },
  818. "com_google_api_grpc_proto_google_common_protos_2_0_1": {
  819. "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl",
  820. "ruleClassName": "http_file",
  821. "attributes": {
  822. "sha256": "5ce71656118618731e34a5d4c61aa3a031be23446dc7de8b5a5e77b66ebcd6ef",
  823. "urls": [
  824. "https://repo1.maven.org/maven2/com/google/api/grpc/proto-google-common-protos/2.0.1/proto-google-common-protos-2.0.1.jar",
  825. "https://maven.google.com/com/google/api/grpc/proto-google-common-protos/2.0.1/proto-google-common-protos-2.0.1.jar"
  826. ],
  827. "downloaded_file_path": "com/google/api/grpc/proto-google-common-protos/2.0.1/proto-google-common-protos-2.0.1.jar"
  828. }
  829. },
  830. "com_google_api_gax_1_60_0": {
  831. "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl",
  832. "ruleClassName": "http_file",
  833. "attributes": {
  834. "sha256": "02f37d4ff1a7b8d71dff8064cf9568aa4f4b61bcc4485085d16130f32afa5a79",
  835. "urls": [
  836. "https://repo1.maven.org/maven2/com/google/api/gax/1.60.0/gax-1.60.0.jar",
  837. "https://maven.google.com/com/google/api/gax/1.60.0/gax-1.60.0.jar"
  838. ],
  839. "downloaded_file_path": "com/google/api/gax/1.60.0/gax-1.60.0.jar"
  840. }
  841. },
  842. "com_google_guava_failureaccess_1_0_1": {
  843. "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl",
  844. "ruleClassName": "http_file",
  845. "attributes": {
  846. "sha256": "a171ee4c734dd2da837e4b16be9df4661afab72a41adaf31eb84dfdaf936ca26",
  847. "urls": [
  848. "https://repo1.maven.org/maven2/com/google/guava/failureaccess/1.0.1/failureaccess-1.0.1.jar",
  849. "https://maven.google.com/com/google/guava/failureaccess/1.0.1/failureaccess-1.0.1.jar"
  850. ],
  851. "downloaded_file_path": "com/google/guava/failureaccess/1.0.1/failureaccess-1.0.1.jar"
  852. }
  853. },
  854. "commons_logging_commons_logging_1_2": {
  855. "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl",
  856. "ruleClassName": "http_file",
  857. "attributes": {
  858. "sha256": "daddea1ea0be0f56978ab3006b8ac92834afeefbd9b7e4e6316fca57df0fa636",
  859. "urls": [
  860. "https://repo1.maven.org/maven2/commons-logging/commons-logging/1.2/commons-logging-1.2.jar",
  861. "https://maven.google.com/commons-logging/commons-logging/1.2/commons-logging-1.2.jar"
  862. ],
  863. "downloaded_file_path": "commons-logging/commons-logging/1.2/commons-logging-1.2.jar"
  864. }
  865. },
  866. "com_google_http_client_google_http_client_appengine_1_38_0": {
  867. "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl",
  868. "ruleClassName": "http_file",
  869. "attributes": {
  870. "sha256": "f97b495fd97ac3a3d59099eb2b55025f4948230da15a076f189b9cff37c6b4d2",
  871. "urls": [
  872. "https://repo1.maven.org/maven2/com/google/http-client/google-http-client-appengine/1.38.0/google-http-client-appengine-1.38.0.jar",
  873. "https://maven.google.com/com/google/http-client/google-http-client-appengine/1.38.0/google-http-client-appengine-1.38.0.jar"
  874. ],
  875. "downloaded_file_path": "com/google/http-client/google-http-client-appengine/1.38.0/google-http-client-appengine-1.38.0.jar"
  876. }
  877. },
  878. "com_google_cloud_google_cloud_storage_1_113_4": {
  879. "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl",
  880. "ruleClassName": "http_file",
  881. "attributes": {
  882. "sha256": "796833e9bdab80c40bbc820e65087eb8f28c6bfbca194d2e3e00d98cb5bc55d6",
  883. "urls": [
  884. "https://repo1.maven.org/maven2/com/google/cloud/google-cloud-storage/1.113.4/google-cloud-storage-1.113.4.jar",
  885. "https://maven.google.com/com/google/cloud/google-cloud-storage/1.113.4/google-cloud-storage-1.113.4.jar"
  886. ],
  887. "downloaded_file_path": "com/google/cloud/google-cloud-storage/1.113.4/google-cloud-storage-1.113.4.jar"
  888. }
  889. },
  890. "io_grpc_grpc_context_1_33_1": {
  891. "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl",
  892. "ruleClassName": "http_file",
  893. "attributes": {
  894. "sha256": "99b8aea2b614fe0e61c3676e681259dc43c2de7f64620998e1a8435eb2976496",
  895. "urls": [
  896. "https://repo1.maven.org/maven2/io/grpc/grpc-context/1.33.1/grpc-context-1.33.1.jar",
  897. "https://maven.google.com/io/grpc/grpc-context/1.33.1/grpc-context-1.33.1.jar"
  898. ],
  899. "downloaded_file_path": "io/grpc/grpc-context/1.33.1/grpc-context-1.33.1.jar"
  900. }
  901. },
  902. "com_google_api_grpc_proto_google_iam_v1_1_0_3": {
  903. "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl",
  904. "ruleClassName": "http_file",
  905. "attributes": {
  906. "sha256": "64cee7383a97e846da8d8e160e6c8fe30561e507260552c59e6ccfc81301fdc8",
  907. "urls": [
  908. "https://repo1.maven.org/maven2/com/google/api/grpc/proto-google-iam-v1/1.0.3/proto-google-iam-v1-1.0.3.jar",
  909. "https://maven.google.com/com/google/api/grpc/proto-google-iam-v1/1.0.3/proto-google-iam-v1-1.0.3.jar"
  910. ],
  911. "downloaded_file_path": "com/google/api/grpc/proto-google-iam-v1/1.0.3/proto-google-iam-v1-1.0.3.jar"
  912. }
  913. },
  914. "com_google_api_api_common_1_10_1": {
  915. "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl",
  916. "ruleClassName": "http_file",
  917. "attributes": {
  918. "sha256": "2a033f24bb620383eda440ad307cb8077cfec1c7eadc684d65216123a1b9613a",
  919. "urls": [
  920. "https://repo1.maven.org/maven2/com/google/api/api-common/1.10.1/api-common-1.10.1.jar",
  921. "https://maven.google.com/com/google/api/api-common/1.10.1/api-common-1.10.1.jar"
  922. ],
  923. "downloaded_file_path": "com/google/api/api-common/1.10.1/api-common-1.10.1.jar"
  924. }
  925. },
  926. "com_google_auth_google_auth_library_oauth2_http_0_22_0": {
  927. "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl",
  928. "ruleClassName": "http_file",
  929. "attributes": {
  930. "sha256": "1722d895c42dc42ea1d1f392ddbec1fbb28f7a979022c3a6c29acc39cc777ad1",
  931. "urls": [
  932. "https://repo1.maven.org/maven2/com/google/auth/google-auth-library-oauth2-http/0.22.0/google-auth-library-oauth2-http-0.22.0.jar",
  933. "https://maven.google.com/com/google/auth/google-auth-library-oauth2-http/0.22.0/google-auth-library-oauth2-http-0.22.0.jar"
  934. ],
  935. "downloaded_file_path": "com/google/auth/google-auth-library-oauth2-http/0.22.0/google-auth-library-oauth2-http-0.22.0.jar"
  936. }
  937. },
  938. "com_typesafe_netty_netty_reactive_streams_2_0_5": {
  939. "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl",
  940. "ruleClassName": "http_file",
  941. "attributes": {
  942. "sha256": "f949849fc8ee75fde468ba3a35df2e04577fa31a2940b83b2a7dc9d14dac13d6",
  943. "urls": [
  944. "https://repo1.maven.org/maven2/com/typesafe/netty/netty-reactive-streams/2.0.5/netty-reactive-streams-2.0.5.jar",
  945. "https://maven.google.com/com/typesafe/netty/netty-reactive-streams/2.0.5/netty-reactive-streams-2.0.5.jar"
  946. ],
  947. "downloaded_file_path": "com/typesafe/netty/netty-reactive-streams/2.0.5/netty-reactive-streams-2.0.5.jar"
  948. }
  949. },
  950. "com_typesafe_netty_netty_reactive_streams_http_2_0_5": {
  951. "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl",
  952. "ruleClassName": "http_file",
  953. "attributes": {
  954. "sha256": "b39224751ad936758176e9d994230380ade5e9079e7c8ad778e3995779bcf303",
  955. "urls": [
  956. "https://repo1.maven.org/maven2/com/typesafe/netty/netty-reactive-streams-http/2.0.5/netty-reactive-streams-http-2.0.5.jar",
  957. "https://maven.google.com/com/typesafe/netty/netty-reactive-streams-http/2.0.5/netty-reactive-streams-http-2.0.5.jar"
  958. ],
  959. "downloaded_file_path": "com/typesafe/netty/netty-reactive-streams-http/2.0.5/netty-reactive-streams-http-2.0.5.jar"
  960. }
  961. },
  962. "javax_annotation_javax_annotation_api_1_3_2": {
  963. "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl",
  964. "ruleClassName": "http_file",
  965. "attributes": {
  966. "sha256": "e04ba5195bcd555dc95650f7cc614d151e4bcd52d29a10b8aa2197f3ab89ab9b",
  967. "urls": [
  968. "https://repo1.maven.org/maven2/javax/annotation/javax.annotation-api/1.3.2/javax.annotation-api-1.3.2.jar",
  969. "https://maven.google.com/javax/annotation/javax.annotation-api/1.3.2/javax.annotation-api-1.3.2.jar"
  970. ],
  971. "downloaded_file_path": "javax/annotation/javax.annotation-api/1.3.2/javax.annotation-api-1.3.2.jar"
  972. }
  973. },
  974. "com_google_j2objc_j2objc_annotations_1_3": {
  975. "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl",
  976. "ruleClassName": "http_file",
  977. "attributes": {
  978. "sha256": "21af30c92267bd6122c0e0b4d20cccb6641a37eaf956c6540ec471d584e64a7b",
  979. "urls": [
  980. "https://repo1.maven.org/maven2/com/google/j2objc/j2objc-annotations/1.3/j2objc-annotations-1.3.jar",
  981. "https://maven.google.com/com/google/j2objc/j2objc-annotations/1.3/j2objc-annotations-1.3.jar"
  982. ],
  983. "downloaded_file_path": "com/google/j2objc/j2objc-annotations/1.3/j2objc-annotations-1.3.jar"
  984. }
  985. },
  986. "software_amazon_awssdk_metrics_spi_2_17_183": {
  987. "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl",
  988. "ruleClassName": "http_file",
  989. "attributes": {
  990. "sha256": "08a11dc8c4ba464beafbcc7ac05b8c724c1ccb93da99482e82a68540ac704e4a",
  991. "urls": [
  992. "https://repo1.maven.org/maven2/software/amazon/awssdk/metrics-spi/2.17.183/metrics-spi-2.17.183.jar",
  993. "https://maven.google.com/software/amazon/awssdk/metrics-spi/2.17.183/metrics-spi-2.17.183.jar"
  994. ],
  995. "downloaded_file_path": "software/amazon/awssdk/metrics-spi/2.17.183/metrics-spi-2.17.183.jar"
  996. }
  997. },
  998. "org_reactivestreams_reactive_streams_1_0_3": {
  999. "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl",
  1000. "ruleClassName": "http_file",
  1001. "attributes": {
  1002. "sha256": "1dee0481072d19c929b623e155e14d2f6085dc011529a0a0dbefc84cf571d865",
  1003. "urls": [
  1004. "https://repo1.maven.org/maven2/org/reactivestreams/reactive-streams/1.0.3/reactive-streams-1.0.3.jar",
  1005. "https://maven.google.com/org/reactivestreams/reactive-streams/1.0.3/reactive-streams-1.0.3.jar"
  1006. ],
  1007. "downloaded_file_path": "org/reactivestreams/reactive-streams/1.0.3/reactive-streams-1.0.3.jar"
  1008. }
  1009. },
  1010. "com_google_http_client_google_http_client_jackson2_1_38_0": {
  1011. "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl",
  1012. "ruleClassName": "http_file",
  1013. "attributes": {
  1014. "sha256": "e6504a82425fcc2168a4ca4175138ddcc085168daed8cdedb86d8f6fdc296e1e",
  1015. "urls": [
  1016. "https://repo1.maven.org/maven2/com/google/http-client/google-http-client-jackson2/1.38.0/google-http-client-jackson2-1.38.0.jar",
  1017. "https://maven.google.com/com/google/http-client/google-http-client-jackson2/1.38.0/google-http-client-jackson2-1.38.0.jar"
  1018. ],
  1019. "downloaded_file_path": "com/google/http-client/google-http-client-jackson2/1.38.0/google-http-client-jackson2-1.38.0.jar"
  1020. }
  1021. },
  1022. "io_netty_netty_transport_4_1_72_Final": {
  1023. "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl",
  1024. "ruleClassName": "http_file",
  1025. "attributes": {
  1026. "sha256": "c5fb68e9a65b6e8a516adfcb9fa323479ee7b4d9449d8a529d2ecab3d3711d5a",
  1027. "urls": [
  1028. "https://repo1.maven.org/maven2/io/netty/netty-transport/4.1.72.Final/netty-transport-4.1.72.Final.jar",
  1029. "https://maven.google.com/io/netty/netty-transport/4.1.72.Final/netty-transport-4.1.72.Final.jar"
  1030. ],
  1031. "downloaded_file_path": "io/netty/netty-transport/4.1.72.Final/netty-transport-4.1.72.Final.jar"
  1032. }
  1033. },
  1034. "io_netty_netty_codec_http2_4_1_72_Final": {
  1035. "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl",
  1036. "ruleClassName": "http_file",
  1037. "attributes": {
  1038. "sha256": "c89a70500f59e8563e720aaa808263a514bd9e2bd91ba84eab8c2ccb45f234b2",
  1039. "urls": [
  1040. "https://repo1.maven.org/maven2/io/netty/netty-codec-http2/4.1.72.Final/netty-codec-http2-4.1.72.Final.jar",
  1041. "https://maven.google.com/io/netty/netty-codec-http2/4.1.72.Final/netty-codec-http2-4.1.72.Final.jar"
  1042. ],
  1043. "downloaded_file_path": "io/netty/netty-codec-http2/4.1.72.Final/netty-codec-http2-4.1.72.Final.jar"
  1044. }
  1045. },
  1046. "io_opencensus_opencensus_api_0_24_0": {
  1047. "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl",
  1048. "ruleClassName": "http_file",
  1049. "attributes": {
  1050. "sha256": "f561b1cc2673844288e596ddf5bb6596868a8472fd2cb8993953fc5c034b2352",
  1051. "urls": [
  1052. "https://repo1.maven.org/maven2/io/opencensus/opencensus-api/0.24.0/opencensus-api-0.24.0.jar",
  1053. "https://maven.google.com/io/opencensus/opencensus-api/0.24.0/opencensus-api-0.24.0.jar"
  1054. ],
  1055. "downloaded_file_path": "io/opencensus/opencensus-api/0.24.0/opencensus-api-0.24.0.jar"
  1056. }
  1057. },
  1058. "rules_jvm_external_deps": {
  1059. "bzlFile": "@@rules_jvm_external~//:coursier.bzl",
  1060. "ruleClassName": "pinned_coursier_fetch",
  1061. "attributes": {
  1062. "repositories": [
  1063. "{ \"repo_url\": \"https://repo1.maven.org/maven2\" }"
  1064. ],
  1065. "artifacts": [
  1066. "{ \"group\": \"com.google.auth\", \"artifact\": \"google-auth-library-credentials\", \"version\": \"0.22.0\" }",
  1067. "{ \"group\": \"com.google.auth\", \"artifact\": \"google-auth-library-oauth2-http\", \"version\": \"0.22.0\" }",
  1068. "{ \"group\": \"com.google.cloud\", \"artifact\": \"google-cloud-core\", \"version\": \"1.93.10\" }",
  1069. "{ \"group\": \"com.google.cloud\", \"artifact\": \"google-cloud-storage\", \"version\": \"1.113.4\" }",
  1070. "{ \"group\": \"com.google.code.gson\", \"artifact\": \"gson\", \"version\": \"2.9.0\" }",
  1071. "{ \"group\": \"com.google.googlejavaformat\", \"artifact\": \"google-java-format\", \"version\": \"1.15.0\" }",
  1072. "{ \"group\": \"com.google.guava\", \"artifact\": \"guava\", \"version\": \"31.1-jre\" }",
  1073. "{ \"group\": \"org.apache.maven\", \"artifact\": \"maven-artifact\", \"version\": \"3.8.6\" }",
  1074. "{ \"group\": \"software.amazon.awssdk\", \"artifact\": \"s3\", \"version\": \"2.17.183\" }"
  1075. ],
  1076. "fetch_sources": true,
  1077. "fetch_javadoc": false,
  1078. "generate_compat_repositories": false,
  1079. "maven_install_json": "@@rules_jvm_external~//:rules_jvm_external_deps_install.json",
  1080. "override_targets": {},
  1081. "strict_visibility": false,
  1082. "strict_visibility_value": [
  1083. "@@//visibility:private"
  1084. ],
  1085. "jetify": false,
  1086. "jetify_include_list": [
  1087. "*"
  1088. ],
  1089. "additional_netrc_lines": [],
  1090. "fail_if_repin_required": false,
  1091. "use_starlark_android_rules": false,
  1092. "aar_import_bzl_label": "@build_bazel_rules_android//android:rules.bzl",
  1093. "duplicate_version_warning": "warn"
  1094. }
  1095. },
  1096. "org_threeten_threetenbp_1_5_0": {
  1097. "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl",
  1098. "ruleClassName": "http_file",
  1099. "attributes": {
  1100. "sha256": "dcf9c0f940739f2a825cd8626ff27113459a2f6eb18797c7152f93fff69c264f",
  1101. "urls": [
  1102. "https://repo1.maven.org/maven2/org/threeten/threetenbp/1.5.0/threetenbp-1.5.0.jar",
  1103. "https://maven.google.com/org/threeten/threetenbp/1.5.0/threetenbp-1.5.0.jar"
  1104. ],
  1105. "downloaded_file_path": "org/threeten/threetenbp/1.5.0/threetenbp-1.5.0.jar"
  1106. }
  1107. },
  1108. "software_amazon_awssdk_http_client_spi_2_17_183": {
  1109. "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl",
  1110. "ruleClassName": "http_file",
  1111. "attributes": {
  1112. "sha256": "fe7120f175df9e47ebcc5d946d7f40110faf2ba0a30364f3b935d5b8a5a6c3c6",
  1113. "urls": [
  1114. "https://repo1.maven.org/maven2/software/amazon/awssdk/http-client-spi/2.17.183/http-client-spi-2.17.183.jar",
  1115. "https://maven.google.com/software/amazon/awssdk/http-client-spi/2.17.183/http-client-spi-2.17.183.jar"
  1116. ],
  1117. "downloaded_file_path": "software/amazon/awssdk/http-client-spi/2.17.183/http-client-spi-2.17.183.jar"
  1118. }
  1119. },
  1120. "software_amazon_awssdk_third_party_jackson_core_2_17_183": {
  1121. "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl",
  1122. "ruleClassName": "http_file",
  1123. "attributes": {
  1124. "sha256": "1bc27c9960993c20e1ab058012dd1ae04c875eec9f0f08f2b2ca41e578dee9a4",
  1125. "urls": [
  1126. "https://repo1.maven.org/maven2/software/amazon/awssdk/third-party-jackson-core/2.17.183/third-party-jackson-core-2.17.183.jar",
  1127. "https://maven.google.com/software/amazon/awssdk/third-party-jackson-core/2.17.183/third-party-jackson-core-2.17.183.jar"
  1128. ],
  1129. "downloaded_file_path": "software/amazon/awssdk/third-party-jackson-core/2.17.183/third-party-jackson-core-2.17.183.jar"
  1130. }
  1131. },
  1132. "software_amazon_eventstream_eventstream_1_0_1": {
  1133. "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl",
  1134. "ruleClassName": "http_file",
  1135. "attributes": {
  1136. "sha256": "0c37d8e696117f02c302191b8110b0d0eb20fa412fce34c3a269ec73c16ce822",
  1137. "urls": [
  1138. "https://repo1.maven.org/maven2/software/amazon/eventstream/eventstream/1.0.1/eventstream-1.0.1.jar",
  1139. "https://maven.google.com/software/amazon/eventstream/eventstream/1.0.1/eventstream-1.0.1.jar"
  1140. ],
  1141. "downloaded_file_path": "software/amazon/eventstream/eventstream/1.0.1/eventstream-1.0.1.jar"
  1142. }
  1143. },
  1144. "com_google_oauth_client_google_oauth_client_1_31_1": {
  1145. "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl",
  1146. "ruleClassName": "http_file",
  1147. "attributes": {
  1148. "sha256": "4ed4e2948251dbda66ce251bd7f3b32cd8570055e5cdb165a3c7aea8f43da0ff",
  1149. "urls": [
  1150. "https://repo1.maven.org/maven2/com/google/oauth-client/google-oauth-client/1.31.1/google-oauth-client-1.31.1.jar",
  1151. "https://maven.google.com/com/google/oauth-client/google-oauth-client/1.31.1/google-oauth-client-1.31.1.jar"
  1152. ],
  1153. "downloaded_file_path": "com/google/oauth-client/google-oauth-client/1.31.1/google-oauth-client-1.31.1.jar"
  1154. }
  1155. },
  1156. "software_amazon_awssdk_aws_xml_protocol_2_17_183": {
  1157. "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl",
  1158. "ruleClassName": "http_file",
  1159. "attributes": {
  1160. "sha256": "566bba05d49256fa6994efd68fa625ae05a62ea45ee74bb9130d20ea20988363",
  1161. "urls": [
  1162. "https://repo1.maven.org/maven2/software/amazon/awssdk/aws-xml-protocol/2.17.183/aws-xml-protocol-2.17.183.jar",
  1163. "https://maven.google.com/software/amazon/awssdk/aws-xml-protocol/2.17.183/aws-xml-protocol-2.17.183.jar"
  1164. ],
  1165. "downloaded_file_path": "software/amazon/awssdk/aws-xml-protocol/2.17.183/aws-xml-protocol-2.17.183.jar"
  1166. }
  1167. },
  1168. "software_amazon_awssdk_annotations_2_17_183": {
  1169. "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl",
  1170. "ruleClassName": "http_file",
  1171. "attributes": {
  1172. "sha256": "8e4d72361ca805a0bd8bbd9017cd7ff77c8d170f2dd469c7d52d5653330bb3fd",
  1173. "urls": [
  1174. "https://repo1.maven.org/maven2/software/amazon/awssdk/annotations/2.17.183/annotations-2.17.183.jar",
  1175. "https://maven.google.com/software/amazon/awssdk/annotations/2.17.183/annotations-2.17.183.jar"
  1176. ],
  1177. "downloaded_file_path": "software/amazon/awssdk/annotations/2.17.183/annotations-2.17.183.jar"
  1178. }
  1179. },
  1180. "software_amazon_awssdk_netty_nio_client_2_17_183": {
  1181. "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl",
  1182. "ruleClassName": "http_file",
  1183. "attributes": {
  1184. "sha256": "a6d356f364c56d7b90006b0b7e503b8630010993a5587ce42e74b10b8dca2238",
  1185. "urls": [
  1186. "https://repo1.maven.org/maven2/software/amazon/awssdk/netty-nio-client/2.17.183/netty-nio-client-2.17.183.jar",
  1187. "https://maven.google.com/software/amazon/awssdk/netty-nio-client/2.17.183/netty-nio-client-2.17.183.jar"
  1188. ],
  1189. "downloaded_file_path": "software/amazon/awssdk/netty-nio-client/2.17.183/netty-nio-client-2.17.183.jar"
  1190. }
  1191. },
  1192. "com_google_guava_guava_31_1_jre": {
  1193. "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl",
  1194. "ruleClassName": "http_file",
  1195. "attributes": {
  1196. "sha256": "a42edc9cab792e39fe39bb94f3fca655ed157ff87a8af78e1d6ba5b07c4a00ab",
  1197. "urls": [
  1198. "https://repo1.maven.org/maven2/com/google/guava/guava/31.1-jre/guava-31.1-jre.jar",
  1199. "https://maven.google.com/com/google/guava/guava/31.1-jre/guava-31.1-jre.jar"
  1200. ],
  1201. "downloaded_file_path": "com/google/guava/guava/31.1-jre/guava-31.1-jre.jar"
  1202. }
  1203. },
  1204. "com_google_auto_value_auto_value_annotations_1_7_4": {
  1205. "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl",
  1206. "ruleClassName": "http_file",
  1207. "attributes": {
  1208. "sha256": "fedd59b0b4986c342f6ab2d182f2a4ee9fceb2c7e2d5bdc4dc764c92394a23d3",
  1209. "urls": [
  1210. "https://repo1.maven.org/maven2/com/google/auto/value/auto-value-annotations/1.7.4/auto-value-annotations-1.7.4.jar",
  1211. "https://maven.google.com/com/google/auto/value/auto-value-annotations/1.7.4/auto-value-annotations-1.7.4.jar"
  1212. ],
  1213. "downloaded_file_path": "com/google/auto/value/auto-value-annotations/1.7.4/auto-value-annotations-1.7.4.jar"
  1214. }
  1215. },
  1216. "io_netty_netty_transport_native_unix_common_4_1_72_Final": {
  1217. "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl",
  1218. "ruleClassName": "http_file",
  1219. "attributes": {
  1220. "sha256": "6f8f1cc29b5a234eeee9439a63eb3f03a5994aa540ff555cb0b2c88cefaf6877",
  1221. "urls": [
  1222. "https://repo1.maven.org/maven2/io/netty/netty-transport-native-unix-common/4.1.72.Final/netty-transport-native-unix-common-4.1.72.Final.jar",
  1223. "https://maven.google.com/io/netty/netty-transport-native-unix-common/4.1.72.Final/netty-transport-native-unix-common-4.1.72.Final.jar"
  1224. ],
  1225. "downloaded_file_path": "io/netty/netty-transport-native-unix-common/4.1.72.Final/netty-transport-native-unix-common-4.1.72.Final.jar"
  1226. }
  1227. },
  1228. "io_opencensus_opencensus_contrib_http_util_0_24_0": {
  1229. "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl",
  1230. "ruleClassName": "http_file",
  1231. "attributes": {
  1232. "sha256": "7155273bbb1ed3d477ea33cf19d7bbc0b285ff395f43b29ae576722cf247000f",
  1233. "urls": [
  1234. "https://repo1.maven.org/maven2/io/opencensus/opencensus-contrib-http-util/0.24.0/opencensus-contrib-http-util-0.24.0.jar",
  1235. "https://maven.google.com/io/opencensus/opencensus-contrib-http-util/0.24.0/opencensus-contrib-http-util-0.24.0.jar"
  1236. ],
  1237. "downloaded_file_path": "io/opencensus/opencensus-contrib-http-util/0.24.0/opencensus-contrib-http-util-0.24.0.jar"
  1238. }
  1239. },
  1240. "com_fasterxml_jackson_core_jackson_core_2_11_3": {
  1241. "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl",
  1242. "ruleClassName": "http_file",
  1243. "attributes": {
  1244. "sha256": "78cd0a6b936232e06dd3e38da8a0345348a09cd1ff9c4d844c6ee72c75cfc402",
  1245. "urls": [
  1246. "https://repo1.maven.org/maven2/com/fasterxml/jackson/core/jackson-core/2.11.3/jackson-core-2.11.3.jar",
  1247. "https://maven.google.com/com/fasterxml/jackson/core/jackson-core/2.11.3/jackson-core-2.11.3.jar"
  1248. ],
  1249. "downloaded_file_path": "com/fasterxml/jackson/core/jackson-core/2.11.3/jackson-core-2.11.3.jar"
  1250. }
  1251. },
  1252. "com_google_cloud_google_cloud_core_1_93_10": {
  1253. "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl",
  1254. "ruleClassName": "http_file",
  1255. "attributes": {
  1256. "sha256": "832d74eca66f4601e162a8460d6f59f50d1d23f93c18b02654423b6b0d67c6ea",
  1257. "urls": [
  1258. "https://repo1.maven.org/maven2/com/google/cloud/google-cloud-core/1.93.10/google-cloud-core-1.93.10.jar",
  1259. "https://maven.google.com/com/google/cloud/google-cloud-core/1.93.10/google-cloud-core-1.93.10.jar"
  1260. ],
  1261. "downloaded_file_path": "com/google/cloud/google-cloud-core/1.93.10/google-cloud-core-1.93.10.jar"
  1262. }
  1263. },
  1264. "com_google_auth_google_auth_library_credentials_0_22_0": {
  1265. "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl",
  1266. "ruleClassName": "http_file",
  1267. "attributes": {
  1268. "sha256": "42c76031276de5b520909e9faf88c5b3c9a722d69ee9cfdafedb1c52c355dfc5",
  1269. "urls": [
  1270. "https://repo1.maven.org/maven2/com/google/auth/google-auth-library-credentials/0.22.0/google-auth-library-credentials-0.22.0.jar",
  1271. "https://maven.google.com/com/google/auth/google-auth-library-credentials/0.22.0/google-auth-library-credentials-0.22.0.jar"
  1272. ],
  1273. "downloaded_file_path": "com/google/auth/google-auth-library-credentials/0.22.0/google-auth-library-credentials-0.22.0.jar"
  1274. }
  1275. },
  1276. "software_amazon_awssdk_profiles_2_17_183": {
  1277. "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl",
  1278. "ruleClassName": "http_file",
  1279. "attributes": {
  1280. "sha256": "78833b32fde3f1c5320373b9ea955c1bbc28f2c904010791c4784e610193ee56",
  1281. "urls": [
  1282. "https://repo1.maven.org/maven2/software/amazon/awssdk/profiles/2.17.183/profiles-2.17.183.jar",
  1283. "https://maven.google.com/software/amazon/awssdk/profiles/2.17.183/profiles-2.17.183.jar"
  1284. ],
  1285. "downloaded_file_path": "software/amazon/awssdk/profiles/2.17.183/profiles-2.17.183.jar"
  1286. }
  1287. },
  1288. "org_apache_httpcomponents_httpcore_4_4_13": {
  1289. "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl",
  1290. "ruleClassName": "http_file",
  1291. "attributes": {
  1292. "sha256": "e06e89d40943245fcfa39ec537cdbfce3762aecde8f9c597780d2b00c2b43424",
  1293. "urls": [
  1294. "https://repo1.maven.org/maven2/org/apache/httpcomponents/httpcore/4.4.13/httpcore-4.4.13.jar",
  1295. "https://maven.google.com/org/apache/httpcomponents/httpcore/4.4.13/httpcore-4.4.13.jar"
  1296. ],
  1297. "downloaded_file_path": "org/apache/httpcomponents/httpcore/4.4.13/httpcore-4.4.13.jar"
  1298. }
  1299. },
  1300. "io_netty_netty_common_4_1_72_Final": {
  1301. "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl",
  1302. "ruleClassName": "http_file",
  1303. "attributes": {
  1304. "sha256": "8adb4c291260ceb2859a68c49f0adeed36bf49587608e2b81ecff6aaf06025e9",
  1305. "urls": [
  1306. "https://repo1.maven.org/maven2/io/netty/netty-common/4.1.72.Final/netty-common-4.1.72.Final.jar",
  1307. "https://maven.google.com/io/netty/netty-common/4.1.72.Final/netty-common-4.1.72.Final.jar"
  1308. ],
  1309. "downloaded_file_path": "io/netty/netty-common/4.1.72.Final/netty-common-4.1.72.Final.jar"
  1310. }
  1311. },
  1312. "io_netty_netty_transport_classes_epoll_4_1_72_Final": {
  1313. "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl",
  1314. "ruleClassName": "http_file",
  1315. "attributes": {
  1316. "sha256": "e1528a9751c1285aa7beaf3a1eb0597151716426ce38598ac9bc0891209b9e68",
  1317. "urls": [
  1318. "https://repo1.maven.org/maven2/io/netty/netty-transport-classes-epoll/4.1.72.Final/netty-transport-classes-epoll-4.1.72.Final.jar",
  1319. "https://maven.google.com/io/netty/netty-transport-classes-epoll/4.1.72.Final/netty-transport-classes-epoll-4.1.72.Final.jar"
  1320. ],
  1321. "downloaded_file_path": "io/netty/netty-transport-classes-epoll/4.1.72.Final/netty-transport-classes-epoll-4.1.72.Final.jar"
  1322. }
  1323. },
  1324. "org_checkerframework_checker_qual_3_12_0": {
  1325. "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl",
  1326. "ruleClassName": "http_file",
  1327. "attributes": {
  1328. "sha256": "ff10785ac2a357ec5de9c293cb982a2cbb605c0309ea4cc1cb9b9bc6dbe7f3cb",
  1329. "urls": [
  1330. "https://repo1.maven.org/maven2/org/checkerframework/checker-qual/3.12.0/checker-qual-3.12.0.jar",
  1331. "https://maven.google.com/org/checkerframework/checker-qual/3.12.0/checker-qual-3.12.0.jar"
  1332. ],
  1333. "downloaded_file_path": "org/checkerframework/checker-qual/3.12.0/checker-qual-3.12.0.jar"
  1334. }
  1335. },
  1336. "com_google_cloud_google_cloud_core_http_1_93_10": {
  1337. "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl",
  1338. "ruleClassName": "http_file",
  1339. "attributes": {
  1340. "sha256": "81ac67c14c7c4244d2b7db2607ad352416aca8d3bb2adf338964e8fea25b1b3c",
  1341. "urls": [
  1342. "https://repo1.maven.org/maven2/com/google/cloud/google-cloud-core-http/1.93.10/google-cloud-core-http-1.93.10.jar",
  1343. "https://maven.google.com/com/google/cloud/google-cloud-core-http/1.93.10/google-cloud-core-http-1.93.10.jar"
  1344. ],
  1345. "downloaded_file_path": "com/google/cloud/google-cloud-core-http/1.93.10/google-cloud-core-http-1.93.10.jar"
  1346. }
  1347. },
  1348. "software_amazon_awssdk_utils_2_17_183": {
  1349. "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl",
  1350. "ruleClassName": "http_file",
  1351. "attributes": {
  1352. "sha256": "7bd849bb5aa71bfdf6b849643736ecab3a7b3f204795804eefe5754104231ec6",
  1353. "urls": [
  1354. "https://repo1.maven.org/maven2/software/amazon/awssdk/utils/2.17.183/utils-2.17.183.jar",
  1355. "https://maven.google.com/software/amazon/awssdk/utils/2.17.183/utils-2.17.183.jar"
  1356. ],
  1357. "downloaded_file_path": "software/amazon/awssdk/utils/2.17.183/utils-2.17.183.jar"
  1358. }
  1359. },
  1360. "org_apache_commons_commons_lang3_3_8_1": {
  1361. "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl",
  1362. "ruleClassName": "http_file",
  1363. "attributes": {
  1364. "sha256": "dac807f65b07698ff39b1b07bfef3d87ae3fd46d91bbf8a2bc02b2a831616f68",
  1365. "urls": [
  1366. "https://repo1.maven.org/maven2/org/apache/commons/commons-lang3/3.8.1/commons-lang3-3.8.1.jar",
  1367. "https://maven.google.com/org/apache/commons/commons-lang3/3.8.1/commons-lang3-3.8.1.jar"
  1368. ],
  1369. "downloaded_file_path": "org/apache/commons/commons-lang3/3.8.1/commons-lang3-3.8.1.jar"
  1370. }
  1371. },
  1372. "software_amazon_awssdk_aws_core_2_17_183": {
  1373. "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl",
  1374. "ruleClassName": "http_file",
  1375. "attributes": {
  1376. "sha256": "bccbdbea689a665a702ff19828662d87fb7fe81529df13f02ef1e4c474ea9f93",
  1377. "urls": [
  1378. "https://repo1.maven.org/maven2/software/amazon/awssdk/aws-core/2.17.183/aws-core-2.17.183.jar",
  1379. "https://maven.google.com/software/amazon/awssdk/aws-core/2.17.183/aws-core-2.17.183.jar"
  1380. ],
  1381. "downloaded_file_path": "software/amazon/awssdk/aws-core/2.17.183/aws-core-2.17.183.jar"
  1382. }
  1383. },
  1384. "com_google_api_gax_httpjson_0_77_0": {
  1385. "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl",
  1386. "ruleClassName": "http_file",
  1387. "attributes": {
  1388. "sha256": "fd4dae47fa016d3b26e8d90b67ddc6c23c4c06e8bcdf085c70310ab7ef324bd6",
  1389. "urls": [
  1390. "https://repo1.maven.org/maven2/com/google/api/gax-httpjson/0.77.0/gax-httpjson-0.77.0.jar",
  1391. "https://maven.google.com/com/google/api/gax-httpjson/0.77.0/gax-httpjson-0.77.0.jar"
  1392. ],
  1393. "downloaded_file_path": "com/google/api/gax-httpjson/0.77.0/gax-httpjson-0.77.0.jar"
  1394. }
  1395. },
  1396. "unpinned_rules_jvm_external_deps": {
  1397. "bzlFile": "@@rules_jvm_external~//:coursier.bzl",
  1398. "ruleClassName": "coursier_fetch",
  1399. "attributes": {
  1400. "repositories": [
  1401. "{ \"repo_url\": \"https://repo1.maven.org/maven2\" }"
  1402. ],
  1403. "artifacts": [
  1404. "{ \"group\": \"com.google.auth\", \"artifact\": \"google-auth-library-credentials\", \"version\": \"0.22.0\" }",
  1405. "{ \"group\": \"com.google.auth\", \"artifact\": \"google-auth-library-oauth2-http\", \"version\": \"0.22.0\" }",
  1406. "{ \"group\": \"com.google.cloud\", \"artifact\": \"google-cloud-core\", \"version\": \"1.93.10\" }",
  1407. "{ \"group\": \"com.google.cloud\", \"artifact\": \"google-cloud-storage\", \"version\": \"1.113.4\" }",
  1408. "{ \"group\": \"com.google.code.gson\", \"artifact\": \"gson\", \"version\": \"2.9.0\" }",
  1409. "{ \"group\": \"com.google.googlejavaformat\", \"artifact\": \"google-java-format\", \"version\": \"1.15.0\" }",
  1410. "{ \"group\": \"com.google.guava\", \"artifact\": \"guava\", \"version\": \"31.1-jre\" }",
  1411. "{ \"group\": \"org.apache.maven\", \"artifact\": \"maven-artifact\", \"version\": \"3.8.6\" }",
  1412. "{ \"group\": \"software.amazon.awssdk\", \"artifact\": \"s3\", \"version\": \"2.17.183\" }"
  1413. ],
  1414. "fail_on_missing_checksum": true,
  1415. "fetch_sources": true,
  1416. "fetch_javadoc": false,
  1417. "excluded_artifacts": [],
  1418. "generate_compat_repositories": false,
  1419. "version_conflict_policy": "default",
  1420. "override_targets": {},
  1421. "strict_visibility": false,
  1422. "strict_visibility_value": [
  1423. "@@//visibility:private"
  1424. ],
  1425. "maven_install_json": "@@rules_jvm_external~//:rules_jvm_external_deps_install.json",
  1426. "resolve_timeout": 600,
  1427. "jetify": false,
  1428. "jetify_include_list": [
  1429. "*"
  1430. ],
  1431. "use_starlark_android_rules": false,
  1432. "aar_import_bzl_label": "@build_bazel_rules_android//android:rules.bzl",
  1433. "duplicate_version_warning": "warn"
  1434. }
  1435. },
  1436. "com_google_errorprone_error_prone_annotations_2_11_0": {
  1437. "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl",
  1438. "ruleClassName": "http_file",
  1439. "attributes": {
  1440. "sha256": "721cb91842b46fa056847d104d5225c8b8e1e8b62263b993051e1e5a0137b7ec",
  1441. "urls": [
  1442. "https://repo1.maven.org/maven2/com/google/errorprone/error_prone_annotations/2.11.0/error_prone_annotations-2.11.0.jar",
  1443. "https://maven.google.com/com/google/errorprone/error_prone_annotations/2.11.0/error_prone_annotations-2.11.0.jar"
  1444. ],
  1445. "downloaded_file_path": "com/google/errorprone/error_prone_annotations/2.11.0/error_prone_annotations-2.11.0.jar"
  1446. }
  1447. },
  1448. "software_amazon_awssdk_regions_2_17_183": {
  1449. "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl",
  1450. "ruleClassName": "http_file",
  1451. "attributes": {
  1452. "sha256": "d3079395f3ffc07d04ffcce16fca29fb5968197f6e9ea3dbff6be297102b40a5",
  1453. "urls": [
  1454. "https://repo1.maven.org/maven2/software/amazon/awssdk/regions/2.17.183/regions-2.17.183.jar",
  1455. "https://maven.google.com/software/amazon/awssdk/regions/2.17.183/regions-2.17.183.jar"
  1456. ],
  1457. "downloaded_file_path": "software/amazon/awssdk/regions/2.17.183/regions-2.17.183.jar"
  1458. }
  1459. },
  1460. "io_netty_netty_handler_4_1_72_Final": {
  1461. "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl",
  1462. "ruleClassName": "http_file",
  1463. "attributes": {
  1464. "sha256": "9cb6012af7e06361d738ac4e3bdc49a158f8cf87d9dee0f2744056b7d99c28d5",
  1465. "urls": [
  1466. "https://repo1.maven.org/maven2/io/netty/netty-handler/4.1.72.Final/netty-handler-4.1.72.Final.jar",
  1467. "https://maven.google.com/io/netty/netty-handler/4.1.72.Final/netty-handler-4.1.72.Final.jar"
  1468. ],
  1469. "downloaded_file_path": "io/netty/netty-handler/4.1.72.Final/netty-handler-4.1.72.Final.jar"
  1470. }
  1471. },
  1472. "software_amazon_awssdk_aws_query_protocol_2_17_183": {
  1473. "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl",
  1474. "ruleClassName": "http_file",
  1475. "attributes": {
  1476. "sha256": "4dace03c76f80f3dec920cb3dedb2a95984c4366ef4fda728660cb90bed74848",
  1477. "urls": [
  1478. "https://repo1.maven.org/maven2/software/amazon/awssdk/aws-query-protocol/2.17.183/aws-query-protocol-2.17.183.jar",
  1479. "https://maven.google.com/software/amazon/awssdk/aws-query-protocol/2.17.183/aws-query-protocol-2.17.183.jar"
  1480. ],
  1481. "downloaded_file_path": "software/amazon/awssdk/aws-query-protocol/2.17.183/aws-query-protocol-2.17.183.jar"
  1482. }
  1483. },
  1484. "io_netty_netty_codec_http_4_1_72_Final": {
  1485. "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl",
  1486. "ruleClassName": "http_file",
  1487. "attributes": {
  1488. "sha256": "fa6fec88010bfaf6a7415b5364671b6b18ffb6b35a986ab97b423fd8c3a0174b",
  1489. "urls": [
  1490. "https://repo1.maven.org/maven2/io/netty/netty-codec-http/4.1.72.Final/netty-codec-http-4.1.72.Final.jar",
  1491. "https://maven.google.com/io/netty/netty-codec-http/4.1.72.Final/netty-codec-http-4.1.72.Final.jar"
  1492. ],
  1493. "downloaded_file_path": "io/netty/netty-codec-http/4.1.72.Final/netty-codec-http-4.1.72.Final.jar"
  1494. }
  1495. },
  1496. "io_netty_netty_resolver_4_1_72_Final": {
  1497. "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl",
  1498. "ruleClassName": "http_file",
  1499. "attributes": {
  1500. "sha256": "6474598aab7cc9d8d6cfa06c05bd1b19adbf7f8451dbdd73070b33a6c60b1b90",
  1501. "urls": [
  1502. "https://repo1.maven.org/maven2/io/netty/netty-resolver/4.1.72.Final/netty-resolver-4.1.72.Final.jar",
  1503. "https://maven.google.com/io/netty/netty-resolver/4.1.72.Final/netty-resolver-4.1.72.Final.jar"
  1504. ],
  1505. "downloaded_file_path": "io/netty/netty-resolver/4.1.72.Final/netty-resolver-4.1.72.Final.jar"
  1506. }
  1507. },
  1508. "software_amazon_awssdk_protocol_core_2_17_183": {
  1509. "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl",
  1510. "ruleClassName": "http_file",
  1511. "attributes": {
  1512. "sha256": "10e7c4faa1f05e2d73055d0390dbd0bb6450e2e6cb85beda051b1e4693c826ce",
  1513. "urls": [
  1514. "https://repo1.maven.org/maven2/software/amazon/awssdk/protocol-core/2.17.183/protocol-core-2.17.183.jar",
  1515. "https://maven.google.com/software/amazon/awssdk/protocol-core/2.17.183/protocol-core-2.17.183.jar"
  1516. ],
  1517. "downloaded_file_path": "software/amazon/awssdk/protocol-core/2.17.183/protocol-core-2.17.183.jar"
  1518. }
  1519. },
  1520. "org_checkerframework_checker_compat_qual_2_5_5": {
  1521. "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl",
  1522. "ruleClassName": "http_file",
  1523. "attributes": {
  1524. "sha256": "11d134b245e9cacc474514d2d66b5b8618f8039a1465cdc55bbc0b34e0008b7a",
  1525. "urls": [
  1526. "https://repo1.maven.org/maven2/org/checkerframework/checker-compat-qual/2.5.5/checker-compat-qual-2.5.5.jar",
  1527. "https://maven.google.com/org/checkerframework/checker-compat-qual/2.5.5/checker-compat-qual-2.5.5.jar"
  1528. ],
  1529. "downloaded_file_path": "org/checkerframework/checker-compat-qual/2.5.5/checker-compat-qual-2.5.5.jar"
  1530. }
  1531. },
  1532. "com_google_apis_google_api_services_storage_v1_rev20200927_1_30_10": {
  1533. "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl",
  1534. "ruleClassName": "http_file",
  1535. "attributes": {
  1536. "sha256": "52d26a9d105f8d8a0850807285f307a76cea8f3e0cdb2be4d3b15b1adfa77351",
  1537. "urls": [
  1538. "https://repo1.maven.org/maven2/com/google/apis/google-api-services-storage/v1-rev20200927-1.30.10/google-api-services-storage-v1-rev20200927-1.30.10.jar",
  1539. "https://maven.google.com/com/google/apis/google-api-services-storage/v1-rev20200927-1.30.10/google-api-services-storage-v1-rev20200927-1.30.10.jar"
  1540. ],
  1541. "downloaded_file_path": "com/google/apis/google-api-services-storage/v1-rev20200927-1.30.10/google-api-services-storage-v1-rev20200927-1.30.10.jar"
  1542. }
  1543. },
  1544. "com_google_api_client_google_api_client_1_30_11": {
  1545. "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl",
  1546. "ruleClassName": "http_file",
  1547. "attributes": {
  1548. "sha256": "ee6f97865cc7de6c7c80955c3f37372cf3887bd75e4fc06f1058a6b4cd9bf4da",
  1549. "urls": [
  1550. "https://repo1.maven.org/maven2/com/google/api-client/google-api-client/1.30.11/google-api-client-1.30.11.jar",
  1551. "https://maven.google.com/com/google/api-client/google-api-client/1.30.11/google-api-client-1.30.11.jar"
  1552. ],
  1553. "downloaded_file_path": "com/google/api-client/google-api-client/1.30.11/google-api-client-1.30.11.jar"
  1554. }
  1555. },
  1556. "software_amazon_awssdk_s3_2_17_183": {
  1557. "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl",
  1558. "ruleClassName": "http_file",
  1559. "attributes": {
  1560. "sha256": "ab073b91107a9e4ed9f030314077d137fe627e055ad895fabb036980a050e360",
  1561. "urls": [
  1562. "https://repo1.maven.org/maven2/software/amazon/awssdk/s3/2.17.183/s3-2.17.183.jar",
  1563. "https://maven.google.com/software/amazon/awssdk/s3/2.17.183/s3-2.17.183.jar"
  1564. ],
  1565. "downloaded_file_path": "software/amazon/awssdk/s3/2.17.183/s3-2.17.183.jar"
  1566. }
  1567. },
  1568. "org_apache_maven_maven_artifact_3_8_6": {
  1569. "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl",
  1570. "ruleClassName": "http_file",
  1571. "attributes": {
  1572. "sha256": "de22a4c6f54fe31276a823b1bbd3adfd6823529e732f431b5eff0852c2b9252b",
  1573. "urls": [
  1574. "https://repo1.maven.org/maven2/org/apache/maven/maven-artifact/3.8.6/maven-artifact-3.8.6.jar",
  1575. "https://maven.google.com/org/apache/maven/maven-artifact/3.8.6/maven-artifact-3.8.6.jar"
  1576. ],
  1577. "downloaded_file_path": "org/apache/maven/maven-artifact/3.8.6/maven-artifact-3.8.6.jar"
  1578. }
  1579. },
  1580. "com_google_googlejavaformat_google_java_format_1_15_0": {
  1581. "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl",
  1582. "ruleClassName": "http_file",
  1583. "attributes": {
  1584. "sha256": "4f546cfe159547ac3b9547daa9649e728f6abc254979c975f1cb9971793692c3",
  1585. "urls": [
  1586. "https://repo1.maven.org/maven2/com/google/googlejavaformat/google-java-format/1.15.0/google-java-format-1.15.0.jar",
  1587. "https://maven.google.com/com/google/googlejavaformat/google-java-format/1.15.0/google-java-format-1.15.0.jar"
  1588. ],
  1589. "downloaded_file_path": "com/google/googlejavaformat/google-java-format/1.15.0/google-java-format-1.15.0.jar"
  1590. }
  1591. },
  1592. "org_apache_httpcomponents_httpclient_4_5_13": {
  1593. "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl",
  1594. "ruleClassName": "http_file",
  1595. "attributes": {
  1596. "sha256": "6fe9026a566c6a5001608cf3fc32196641f6c1e5e1986d1037ccdbd5f31ef743",
  1597. "urls": [
  1598. "https://repo1.maven.org/maven2/org/apache/httpcomponents/httpclient/4.5.13/httpclient-4.5.13.jar",
  1599. "https://maven.google.com/org/apache/httpcomponents/httpclient/4.5.13/httpclient-4.5.13.jar"
  1600. ],
  1601. "downloaded_file_path": "org/apache/httpcomponents/httpclient/4.5.13/httpclient-4.5.13.jar"
  1602. }
  1603. },
  1604. "com_google_guava_listenablefuture_9999_0_empty_to_avoid_conflict_with_guava": {
  1605. "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl",
  1606. "ruleClassName": "http_file",
  1607. "attributes": {
  1608. "sha256": "b372a037d4230aa57fbeffdef30fd6123f9c0c2db85d0aced00c91b974f33f99",
  1609. "urls": [
  1610. "https://repo1.maven.org/maven2/com/google/guava/listenablefuture/9999.0-empty-to-avoid-conflict-with-guava/listenablefuture-9999.0-empty-to-avoid-conflict-with-guava.jar",
  1611. "https://maven.google.com/com/google/guava/listenablefuture/9999.0-empty-to-avoid-conflict-with-guava/listenablefuture-9999.0-empty-to-avoid-conflict-with-guava.jar"
  1612. ],
  1613. "downloaded_file_path": "com/google/guava/listenablefuture/9999.0-empty-to-avoid-conflict-with-guava/listenablefuture-9999.0-empty-to-avoid-conflict-with-guava.jar"
  1614. }
  1615. },
  1616. "com_google_http_client_google_http_client_1_38_0": {
  1617. "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl",
  1618. "ruleClassName": "http_file",
  1619. "attributes": {
  1620. "sha256": "411f4a42519b6b78bdc0fcfdf74c9edcef0ee97afa4a667abe04045a508d6302",
  1621. "urls": [
  1622. "https://repo1.maven.org/maven2/com/google/http-client/google-http-client/1.38.0/google-http-client-1.38.0.jar",
  1623. "https://maven.google.com/com/google/http-client/google-http-client/1.38.0/google-http-client-1.38.0.jar"
  1624. ],
  1625. "downloaded_file_path": "com/google/http-client/google-http-client/1.38.0/google-http-client-1.38.0.jar"
  1626. }
  1627. },
  1628. "software_amazon_awssdk_apache_client_2_17_183": {
  1629. "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl",
  1630. "ruleClassName": "http_file",
  1631. "attributes": {
  1632. "sha256": "78ceae502fce6a97bbe5ff8f6a010a52ab7ea3ae66cb1a4122e18185fce45022",
  1633. "urls": [
  1634. "https://repo1.maven.org/maven2/software/amazon/awssdk/apache-client/2.17.183/apache-client-2.17.183.jar",
  1635. "https://maven.google.com/software/amazon/awssdk/apache-client/2.17.183/apache-client-2.17.183.jar"
  1636. ],
  1637. "downloaded_file_path": "software/amazon/awssdk/apache-client/2.17.183/apache-client-2.17.183.jar"
  1638. }
  1639. },
  1640. "software_amazon_awssdk_arns_2_17_183": {
  1641. "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl",
  1642. "ruleClassName": "http_file",
  1643. "attributes": {
  1644. "sha256": "659a185e191d66c71de81209490e66abeaccae208ea7b2831a738670823447aa",
  1645. "urls": [
  1646. "https://repo1.maven.org/maven2/software/amazon/awssdk/arns/2.17.183/arns-2.17.183.jar",
  1647. "https://maven.google.com/software/amazon/awssdk/arns/2.17.183/arns-2.17.183.jar"
  1648. ],
  1649. "downloaded_file_path": "software/amazon/awssdk/arns/2.17.183/arns-2.17.183.jar"
  1650. }
  1651. },
  1652. "com_google_code_gson_gson_2_9_0": {
  1653. "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl",
  1654. "ruleClassName": "http_file",
  1655. "attributes": {
  1656. "sha256": "c96d60551331a196dac54b745aa642cd078ef89b6f267146b705f2c2cbef052d",
  1657. "urls": [
  1658. "https://repo1.maven.org/maven2/com/google/code/gson/gson/2.9.0/gson-2.9.0.jar",
  1659. "https://maven.google.com/com/google/code/gson/gson/2.9.0/gson-2.9.0.jar"
  1660. ],
  1661. "downloaded_file_path": "com/google/code/gson/gson/2.9.0/gson-2.9.0.jar"
  1662. }
  1663. },
  1664. "io_netty_netty_buffer_4_1_72_Final": {
  1665. "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl",
  1666. "ruleClassName": "http_file",
  1667. "attributes": {
  1668. "sha256": "568ff7cd9d8e2284ec980730c88924f686642929f8f219a74518b4e64755f3a1",
  1669. "urls": [
  1670. "https://repo1.maven.org/maven2/io/netty/netty-buffer/4.1.72.Final/netty-buffer-4.1.72.Final.jar",
  1671. "https://maven.google.com/io/netty/netty-buffer/4.1.72.Final/netty-buffer-4.1.72.Final.jar"
  1672. ],
  1673. "downloaded_file_path": "io/netty/netty-buffer/4.1.72.Final/netty-buffer-4.1.72.Final.jar"
  1674. }
  1675. },
  1676. "com_google_code_findbugs_jsr305_3_0_2": {
  1677. "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl",
  1678. "ruleClassName": "http_file",
  1679. "attributes": {
  1680. "sha256": "766ad2a0783f2687962c8ad74ceecc38a28b9f72a2d085ee438b7813e928d0c7",
  1681. "urls": [
  1682. "https://repo1.maven.org/maven2/com/google/code/findbugs/jsr305/3.0.2/jsr305-3.0.2.jar",
  1683. "https://maven.google.com/com/google/code/findbugs/jsr305/3.0.2/jsr305-3.0.2.jar"
  1684. ],
  1685. "downloaded_file_path": "com/google/code/findbugs/jsr305/3.0.2/jsr305-3.0.2.jar"
  1686. }
  1687. },
  1688. "commons_codec_commons_codec_1_11": {
  1689. "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl",
  1690. "ruleClassName": "http_file",
  1691. "attributes": {
  1692. "sha256": "e599d5318e97aa48f42136a2927e6dfa4e8881dff0e6c8e3109ddbbff51d7b7d",
  1693. "urls": [
  1694. "https://repo1.maven.org/maven2/commons-codec/commons-codec/1.11/commons-codec-1.11.jar",
  1695. "https://maven.google.com/commons-codec/commons-codec/1.11/commons-codec-1.11.jar"
  1696. ],
  1697. "downloaded_file_path": "commons-codec/commons-codec/1.11/commons-codec-1.11.jar"
  1698. }
  1699. },
  1700. "software_amazon_awssdk_auth_2_17_183": {
  1701. "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl",
  1702. "ruleClassName": "http_file",
  1703. "attributes": {
  1704. "sha256": "8820c6636e5c14efc29399fb5565ce50212b0c1f4ed720a025a2c402d54e0978",
  1705. "urls": [
  1706. "https://repo1.maven.org/maven2/software/amazon/awssdk/auth/2.17.183/auth-2.17.183.jar",
  1707. "https://maven.google.com/software/amazon/awssdk/auth/2.17.183/auth-2.17.183.jar"
  1708. ],
  1709. "downloaded_file_path": "software/amazon/awssdk/auth/2.17.183/auth-2.17.183.jar"
  1710. }
  1711. },
  1712. "software_amazon_awssdk_json_utils_2_17_183": {
  1713. "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl",
  1714. "ruleClassName": "http_file",
  1715. "attributes": {
  1716. "sha256": "51ab7f550adc06afcb49f5270cdf690f1bfaaee243abaa5d978095e2a1e4e1a5",
  1717. "urls": [
  1718. "https://repo1.maven.org/maven2/software/amazon/awssdk/json-utils/2.17.183/json-utils-2.17.183.jar",
  1719. "https://maven.google.com/software/amazon/awssdk/json-utils/2.17.183/json-utils-2.17.183.jar"
  1720. ],
  1721. "downloaded_file_path": "software/amazon/awssdk/json-utils/2.17.183/json-utils-2.17.183.jar"
  1722. }
  1723. },
  1724. "org_codehaus_plexus_plexus_utils_3_3_1": {
  1725. "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl",
  1726. "ruleClassName": "http_file",
  1727. "attributes": {
  1728. "sha256": "4b570fcdbe5a894f249d2eb9b929358a9c88c3e548d227a80010461930222f2a",
  1729. "urls": [
  1730. "https://repo1.maven.org/maven2/org/codehaus/plexus/plexus-utils/3.3.1/plexus-utils-3.3.1.jar",
  1731. "https://maven.google.com/org/codehaus/plexus/plexus-utils/3.3.1/plexus-utils-3.3.1.jar"
  1732. ],
  1733. "downloaded_file_path": "org/codehaus/plexus/plexus-utils/3.3.1/plexus-utils-3.3.1.jar"
  1734. }
  1735. },
  1736. "com_google_protobuf_protobuf_java_util_3_13_0": {
  1737. "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl",
  1738. "ruleClassName": "http_file",
  1739. "attributes": {
  1740. "sha256": "d9de66b8c9445905dfa7064f6d5213d47ce88a20d34e21d83c4a94a229e14e62",
  1741. "urls": [
  1742. "https://repo1.maven.org/maven2/com/google/protobuf/protobuf-java-util/3.13.0/protobuf-java-util-3.13.0.jar",
  1743. "https://maven.google.com/com/google/protobuf/protobuf-java-util/3.13.0/protobuf-java-util-3.13.0.jar"
  1744. ],
  1745. "downloaded_file_path": "com/google/protobuf/protobuf-java-util/3.13.0/protobuf-java-util-3.13.0.jar"
  1746. }
  1747. },
  1748. "io_netty_netty_codec_4_1_72_Final": {
  1749. "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl",
  1750. "ruleClassName": "http_file",
  1751. "attributes": {
  1752. "sha256": "5d8591ca271a1e9c224e8de3873aa9936acb581ee0db514e7dc18523df36d16c",
  1753. "urls": [
  1754. "https://repo1.maven.org/maven2/io/netty/netty-codec/4.1.72.Final/netty-codec-4.1.72.Final.jar",
  1755. "https://maven.google.com/io/netty/netty-codec/4.1.72.Final/netty-codec-4.1.72.Final.jar"
  1756. ],
  1757. "downloaded_file_path": "io/netty/netty-codec/4.1.72.Final/netty-codec-4.1.72.Final.jar"
  1758. }
  1759. },
  1760. "com_google_protobuf_protobuf_java_3_13_0": {
  1761. "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl",
  1762. "ruleClassName": "http_file",
  1763. "attributes": {
  1764. "sha256": "97d5b2758408690c0dc276238707492a0b6a4d71206311b6c442cdc26c5973ff",
  1765. "urls": [
  1766. "https://repo1.maven.org/maven2/com/google/protobuf/protobuf-java/3.13.0/protobuf-java-3.13.0.jar",
  1767. "https://maven.google.com/com/google/protobuf/protobuf-java/3.13.0/protobuf-java-3.13.0.jar"
  1768. ],
  1769. "downloaded_file_path": "com/google/protobuf/protobuf-java/3.13.0/protobuf-java-3.13.0.jar"
  1770. }
  1771. },
  1772. "io_netty_netty_tcnative_classes_2_0_46_Final": {
  1773. "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl",
  1774. "ruleClassName": "http_file",
  1775. "attributes": {
  1776. "sha256": "d3ec888dcc4ac7915bf88b417c5e04fd354f4311032a748a6882df09347eed9a",
  1777. "urls": [
  1778. "https://repo1.maven.org/maven2/io/netty/netty-tcnative-classes/2.0.46.Final/netty-tcnative-classes-2.0.46.Final.jar",
  1779. "https://maven.google.com/io/netty/netty-tcnative-classes/2.0.46.Final/netty-tcnative-classes-2.0.46.Final.jar"
  1780. ],
  1781. "downloaded_file_path": "io/netty/netty-tcnative-classes/2.0.46.Final/netty-tcnative-classes-2.0.46.Final.jar"
  1782. }
  1783. },
  1784. "software_amazon_awssdk_sdk_core_2_17_183": {
  1785. "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl",
  1786. "ruleClassName": "http_file",
  1787. "attributes": {
  1788. "sha256": "677e9cc90fdd82c1f40f97b99cb115b13ad6c3f58beeeab1c061af6954d64c77",
  1789. "urls": [
  1790. "https://repo1.maven.org/maven2/software/amazon/awssdk/sdk-core/2.17.183/sdk-core-2.17.183.jar",
  1791. "https://maven.google.com/software/amazon/awssdk/sdk-core/2.17.183/sdk-core-2.17.183.jar"
  1792. ],
  1793. "downloaded_file_path": "software/amazon/awssdk/sdk-core/2.17.183/sdk-core-2.17.183.jar"
  1794. }
  1795. }
  1796. },
  1797. "recordedRepoMappingEntries": [
  1798. [
  1799. "rules_jvm_external~",
  1800. "bazel_tools",
  1801. "bazel_tools"
  1802. ],
  1803. [
  1804. "rules_jvm_external~",
  1805. "rules_jvm_external",
  1806. "rules_jvm_external~"
  1807. ]
  1808. ]
  1809. }
  1810. },
  1811. "@@rules_jvm_external~//:non-module-deps.bzl%non_module_deps": {
  1812. "general": {
  1813. "bzlTransitiveDigest": "l6SlNloqPvd60dcuPdWiJNi3g3jfK76fcZc0i/Yr0dQ=",
  1814. "usagesDigest": "pX61d12AFioOtqChQDmxvlNGDYT69e5MrKT2E/S6TeQ=",
  1815. "recordedFileInputs": {},
  1816. "recordedDirentsInputs": {},
  1817. "envVariables": {},
  1818. "generatedRepoSpecs": {
  1819. "io_bazel_rules_kotlin": {
  1820. "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl",
  1821. "ruleClassName": "http_archive",
  1822. "attributes": {
  1823. "sha256": "946747acdbeae799b085d12b240ec346f775ac65236dfcf18aa0cd7300f6de78",
  1824. "urls": [
  1825. "https://github.com/bazelbuild/rules_kotlin/releases/download/v1.7.0-RC-2/rules_kotlin_release.tgz"
  1826. ]
  1827. }
  1828. }
  1829. },
  1830. "recordedRepoMappingEntries": [
  1831. [
  1832. "rules_jvm_external~",
  1833. "bazel_tools",
  1834. "bazel_tools"
  1835. ]
  1836. ]
  1837. }
  1838. },
  1839. "@@rules_m4~//m4/internal:default_toolchain_ext.bzl%default_toolchain_ext": {
  1840. "general": {
  1841. "bzlTransitiveDigest": "rm6OAtIMR6n0t1X9wBVXucwCa6wqpIoqqh+kSzHNOg4=",
  1842. "usagesDigest": "UcxA/XigtmDpzRbmdFAY0WoatxHYiCgjCro6UZD+jvo=",
  1843. "recordedFileInputs": {},
  1844. "recordedDirentsInputs": {},
  1845. "envVariables": {},
  1846. "generatedRepoSpecs": {
  1847. "m4_v1.4.18": {
  1848. "bzlFile": "@@rules_m4~//m4/rules:m4_repository.bzl",
  1849. "ruleClassName": "m4_repository",
  1850. "attributes": {
  1851. "version": "1.4.18"
  1852. }
  1853. },
  1854. "m4": {
  1855. "bzlFile": "@@rules_m4~//m4/rules:m4_toolchain_repository.bzl",
  1856. "ruleClassName": "m4_toolchain_repository",
  1857. "attributes": {
  1858. "m4_repository": "@m4_v1.4.18"
  1859. }
  1860. }
  1861. },
  1862. "moduleExtensionMetadata": {
  1863. "explicitRootModuleDirectDeps": [
  1864. "m4"
  1865. ],
  1866. "explicitRootModuleDirectDevDeps": [],
  1867. "useAllRepos": "NO",
  1868. "reproducible": false
  1869. },
  1870. "recordedRepoMappingEntries": []
  1871. }
  1872. },
  1873. "@@rules_python~//python/private/bzlmod:pip.bzl%pip_internal": {
  1874. "general": {
  1875. "bzlTransitiveDigest": "AuGMKW4kqdUER5No5xAm8gcekg+rbnG588WW9nL/AUQ=",
  1876. "usagesDigest": "Bif91jiki2w5VZpJhilKbPk3oDiMMFw6QycMmn1FirE=",
  1877. "recordedFileInputs": {
  1878. "@@rules_python~//tools/publish/requirements.txt": "8ced1e640eab3ee44298590e5ad88cd612f5bf96245af1981709f7a8884a982b",
  1879. "@@rules_python~//tools/publish/requirements_windows.txt": "0b7327c4f5751dc429bf53d21fc0797a7a0a6ac468ddcb38e238bed90ef0a7da",
  1880. "@@rules_python~//tools/publish/requirements_darwin.txt": "a29d72a09b755c284377ca1bb4ae1bea27ef8b01d575b40e21a777e53b513381"
  1881. },
  1882. "recordedDirentsInputs": {},
  1883. "envVariables": {},
  1884. "generatedRepoSpecs": {
  1885. "rules_python_publish_deps_311_cffi_cp311_cp311_manylinux_2_17_aarch64_3548db28": {
  1886. "bzlFile": "@@rules_python~//python/pip_install:pip_repository.bzl",
  1887. "ruleClassName": "whl_library",
  1888. "attributes": {
  1889. "dep_template": "@rules_python_publish_deps//{name}:{target}",
  1890. "experimental_target_platforms": [
  1891. "linux_aarch64",
  1892. "linux_arm",
  1893. "linux_ppc",
  1894. "linux_s390x",
  1895. "linux_x86_64"
  1896. ],
  1897. "filename": "cffi-1.15.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
  1898. "isolated": true,
  1899. "python_interpreter_target": "@@rules_python~~python~python_3_11_host//:python",
  1900. "quiet": true,
  1901. "repo": "rules_python_publish_deps_311",
  1902. "requirement": "cffi==1.15.1",
  1903. "sha256": "3548db281cd7d2561c9ad9984681c95f7b0e38881201e157833a2342c30d5e8c",
  1904. "timeout": 600,
  1905. "urls": [
  1906. "https://files.pythonhosted.org/packages/91/bc/b7723c2fe7a22eee71d7edf2102cd43423d5f95ff3932ebaa2f82c7ec8d0/cffi-1.15.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl"
  1907. ]
  1908. }
  1909. },
  1910. "rules_python_publish_deps_311_zipp_sdist_a7a22e05": {
  1911. "bzlFile": "@@rules_python~//python/pip_install:pip_repository.bzl",
  1912. "ruleClassName": "whl_library",
  1913. "attributes": {
  1914. "dep_template": "@rules_python_publish_deps//{name}:{target}",
  1915. "experimental_target_platforms": [
  1916. "linux_aarch64",
  1917. "linux_arm",
  1918. "linux_ppc",
  1919. "linux_s390x",
  1920. "linux_x86_64",
  1921. "osx_aarch64",
  1922. "osx_x86_64",
  1923. "windows_x86_64"
  1924. ],
  1925. "filename": "zipp-3.11.0.tar.gz",
  1926. "isolated": true,
  1927. "python_interpreter_target": "@@rules_python~~python~python_3_11_host//:python",
  1928. "quiet": true,
  1929. "repo": "rules_python_publish_deps_311",
  1930. "requirement": "zipp==3.11.0",
  1931. "sha256": "a7a22e05929290a67401440b39690ae6563279bced5f314609d9d03798f56766",
  1932. "timeout": 600,
  1933. "urls": [
  1934. "https://files.pythonhosted.org/packages/8e/b3/8b16a007184714f71157b1a71bbe632c5d66dd43bc8152b3c799b13881e1/zipp-3.11.0.tar.gz"
  1935. ]
  1936. }
  1937. },
  1938. "rules_python_publish_deps_311_urllib3_sdist_076907bf": {
  1939. "bzlFile": "@@rules_python~//python/pip_install:pip_repository.bzl",
  1940. "ruleClassName": "whl_library",
  1941. "attributes": {
  1942. "dep_template": "@rules_python_publish_deps//{name}:{target}",
  1943. "experimental_target_platforms": [
  1944. "linux_aarch64",
  1945. "linux_arm",
  1946. "linux_ppc",
  1947. "linux_s390x",
  1948. "linux_x86_64"
  1949. ],
  1950. "filename": "urllib3-1.26.14.tar.gz",
  1951. "isolated": true,
  1952. "python_interpreter_target": "@@rules_python~~python~python_3_11_host//:python",
  1953. "quiet": true,
  1954. "repo": "rules_python_publish_deps_311",
  1955. "requirement": "urllib3==1.26.14",
  1956. "sha256": "076907bf8fd355cde77728471316625a4d2f7e713c125f51953bb5b3eecf4f72",
  1957. "timeout": 600,
  1958. "urls": [
  1959. "https://files.pythonhosted.org/packages/c5/52/fe421fb7364aa738b3506a2d99e4f3a56e079c0a798e9f4fa5e14c60922f/urllib3-1.26.14.tar.gz"
  1960. ]
  1961. }
  1962. },
  1963. "rules_python_publish_deps_311_cryptography_cp37_abi3_manylinux_2_17_aarch64_afda76d8": {
  1964. "bzlFile": "@@rules_python~//python/pip_install:pip_repository.bzl",
  1965. "ruleClassName": "whl_library",
  1966. "attributes": {
  1967. "dep_template": "@rules_python_publish_deps//{name}:{target}",
  1968. "experimental_target_platforms": [
  1969. "linux_aarch64",
  1970. "linux_arm",
  1971. "linux_ppc",
  1972. "linux_s390x",
  1973. "linux_x86_64"
  1974. ],
  1975. "filename": "cryptography-41.0.6-cp37-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
  1976. "isolated": true,
  1977. "python_interpreter_target": "@@rules_python~~python~python_3_11_host//:python",
  1978. "quiet": true,
  1979. "repo": "rules_python_publish_deps_311",
  1980. "requirement": "cryptography==41.0.6",
  1981. "sha256": "afda76d84b053923c27ede5edc1ed7d53e3c9f475ebaf63c68e69f1403c405a8",
  1982. "timeout": 600,
  1983. "urls": [
  1984. "https://files.pythonhosted.org/packages/88/bd/0c1dc2d29a6eed5ac0491d9b0ba3e118ac8d36b532bb812b3047e3b87a1e/cryptography-41.0.6-cp37-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.whl"
  1985. ]
  1986. }
  1987. },
  1988. "rules_python_publish_deps_311_cffi_cp311_cp311_manylinux_2_17_ppc64le_91fc98ad": {
  1989. "bzlFile": "@@rules_python~//python/pip_install:pip_repository.bzl",
  1990. "ruleClassName": "whl_library",
  1991. "attributes": {
  1992. "dep_template": "@rules_python_publish_deps//{name}:{target}",
  1993. "experimental_target_platforms": [
  1994. "linux_aarch64",
  1995. "linux_arm",
  1996. "linux_ppc",
  1997. "linux_s390x",
  1998. "linux_x86_64"
  1999. ],
  2000. "filename": "cffi-1.15.1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
  2001. "isolated": true,
  2002. "python_interpreter_target": "@@rules_python~~python~python_3_11_host//:python",
  2003. "quiet": true,
  2004. "repo": "rules_python_publish_deps_311",
  2005. "requirement": "cffi==1.15.1",
  2006. "sha256": "91fc98adde3d7881af9b59ed0294046f3806221863722ba7d8d120c575314325",
  2007. "timeout": 600,
  2008. "urls": [
  2009. "https://files.pythonhosted.org/packages/5d/4e/4e0bb5579b01fdbfd4388bd1eb9394a989e1336203a4b7f700d887b233c1/cffi-1.15.1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl"
  2010. ]
  2011. }
  2012. },
  2013. "rules_python_publish_deps_311_requests_py3_none_any_64299f49": {
  2014. "bzlFile": "@@rules_python~//python/pip_install:pip_repository.bzl",
  2015. "ruleClassName": "whl_library",
  2016. "attributes": {
  2017. "dep_template": "@rules_python_publish_deps//{name}:{target}",
  2018. "experimental_target_platforms": [
  2019. "linux_aarch64",
  2020. "linux_arm",
  2021. "linux_ppc",
  2022. "linux_s390x",
  2023. "linux_x86_64",
  2024. "osx_aarch64",
  2025. "osx_x86_64",
  2026. "windows_x86_64"
  2027. ],
  2028. "filename": "requests-2.28.2-py3-none-any.whl",
  2029. "isolated": true,
  2030. "python_interpreter_target": "@@rules_python~~python~python_3_11_host//:python",
  2031. "quiet": true,
  2032. "repo": "rules_python_publish_deps_311",
  2033. "requirement": "requests==2.28.2",
  2034. "sha256": "64299f4909223da747622c030b781c0d7811e359c37124b4bd368fb8c6518baa",
  2035. "timeout": 600,
  2036. "urls": [
  2037. "https://files.pythonhosted.org/packages/d2/f4/274d1dbe96b41cf4e0efb70cbced278ffd61b5c7bb70338b62af94ccb25b/requests-2.28.2-py3-none-any.whl"
  2038. ]
  2039. }
  2040. },
  2041. "rules_python_publish_deps_311_certifi_sdist_35824b4c": {
  2042. "bzlFile": "@@rules_python~//python/pip_install:pip_repository.bzl",
  2043. "ruleClassName": "whl_library",
  2044. "attributes": {
  2045. "dep_template": "@rules_python_publish_deps//{name}:{target}",
  2046. "experimental_target_platforms": [
  2047. "linux_aarch64",
  2048. "linux_arm",
  2049. "linux_ppc",
  2050. "linux_s390x",
  2051. "linux_x86_64"
  2052. ],
  2053. "filename": "certifi-2022.12.7.tar.gz",
  2054. "isolated": true,
  2055. "python_interpreter_target": "@@rules_python~~python~python_3_11_host//:python",
  2056. "quiet": true,
  2057. "repo": "rules_python_publish_deps_311",
  2058. "requirement": "certifi==2022.12.7",
  2059. "sha256": "35824b4c3a97115964b408844d64aa14db1cc518f6562e8d7261699d1350a9e3",
  2060. "timeout": 600,
  2061. "urls": [
  2062. "https://files.pythonhosted.org/packages/37/f7/2b1b0ec44fdc30a3d31dfebe52226be9ddc40cd6c0f34ffc8923ba423b69/certifi-2022.12.7.tar.gz"
  2063. ]
  2064. }
  2065. },
  2066. "rules_python_publish_deps_311_readme_renderer_py3_none_any_f67a16ca": {
  2067. "bzlFile": "@@rules_python~//python/pip_install:pip_repository.bzl",
  2068. "ruleClassName": "whl_library",
  2069. "attributes": {
  2070. "dep_template": "@rules_python_publish_deps//{name}:{target}",
  2071. "experimental_target_platforms": [
  2072. "linux_aarch64",
  2073. "linux_arm",
  2074. "linux_ppc",
  2075. "linux_s390x",
  2076. "linux_x86_64",
  2077. "osx_aarch64",
  2078. "osx_x86_64",
  2079. "windows_x86_64"
  2080. ],
  2081. "filename": "readme_renderer-37.3-py3-none-any.whl",
  2082. "isolated": true,
  2083. "python_interpreter_target": "@@rules_python~~python~python_3_11_host//:python",
  2084. "quiet": true,
  2085. "repo": "rules_python_publish_deps_311",
  2086. "requirement": "readme-renderer==37.3",
  2087. "sha256": "f67a16caedfa71eef48a31b39708637a6f4664c4394801a7b0d6432d13907343",
  2088. "timeout": 600,
  2089. "urls": [
  2090. "https://files.pythonhosted.org/packages/97/52/fd8a77d6f0a9ddeb26ed8fb334e01ac546106bf0c5b8e40dc826c5bd160f/readme_renderer-37.3-py3-none-any.whl"
  2091. ]
  2092. }
  2093. },
  2094. "rules_python_publish_deps_311_cffi_sdist_d400bfb9": {
  2095. "bzlFile": "@@rules_python~//python/pip_install:pip_repository.bzl",
  2096. "ruleClassName": "whl_library",
  2097. "attributes": {
  2098. "dep_template": "@rules_python_publish_deps//{name}:{target}",
  2099. "experimental_target_platforms": [
  2100. "linux_aarch64",
  2101. "linux_arm",
  2102. "linux_ppc",
  2103. "linux_s390x",
  2104. "linux_x86_64"
  2105. ],
  2106. "filename": "cffi-1.15.1.tar.gz",
  2107. "isolated": true,
  2108. "python_interpreter_target": "@@rules_python~~python~python_3_11_host//:python",
  2109. "quiet": true,
  2110. "repo": "rules_python_publish_deps_311",
  2111. "requirement": "cffi==1.15.1",
  2112. "sha256": "d400bfb9a37b1351253cb402671cea7e89bdecc294e8016a707f6d1d8ac934f9",
  2113. "timeout": 600,
  2114. "urls": [
  2115. "https://files.pythonhosted.org/packages/2b/a8/050ab4f0c3d4c1b8aaa805f70e26e84d0e27004907c5b8ecc1d31815f92a/cffi-1.15.1.tar.gz"
  2116. ]
  2117. }
  2118. },
  2119. "rules_python_publish_deps_311_cryptography_cp37_abi3_musllinux_1_1_aarch64_5daeb18e": {
  2120. "bzlFile": "@@rules_python~//python/pip_install:pip_repository.bzl",
  2121. "ruleClassName": "whl_library",
  2122. "attributes": {
  2123. "dep_template": "@rules_python_publish_deps//{name}:{target}",
  2124. "experimental_target_platforms": [
  2125. "linux_aarch64",
  2126. "linux_arm",
  2127. "linux_ppc",
  2128. "linux_s390x",
  2129. "linux_x86_64"
  2130. ],
  2131. "filename": "cryptography-41.0.6-cp37-abi3-musllinux_1_1_aarch64.whl",
  2132. "isolated": true,
  2133. "python_interpreter_target": "@@rules_python~~python~python_3_11_host//:python",
  2134. "quiet": true,
  2135. "repo": "rules_python_publish_deps_311",
  2136. "requirement": "cryptography==41.0.6",
  2137. "sha256": "5daeb18e7886a358064a68dbcaf441c036cbdb7da52ae744e7b9207b04d3908c",
  2138. "timeout": 600,
  2139. "urls": [
  2140. "https://files.pythonhosted.org/packages/07/68/d41ba60a16ff4e64965a857fcf2041f893362ae62c5b88d8b958196e2bed/cryptography-41.0.6-cp37-abi3-musllinux_1_1_aarch64.whl"
  2141. ]
  2142. }
  2143. },
  2144. "rules_python_publish_deps_311_requests_toolbelt_py2_none_any_18565aa5": {
  2145. "bzlFile": "@@rules_python~//python/pip_install:pip_repository.bzl",
  2146. "ruleClassName": "whl_library",
  2147. "attributes": {
  2148. "dep_template": "@rules_python_publish_deps//{name}:{target}",
  2149. "experimental_target_platforms": [
  2150. "linux_aarch64",
  2151. "linux_arm",
  2152. "linux_ppc",
  2153. "linux_s390x",
  2154. "linux_x86_64",
  2155. "osx_aarch64",
  2156. "osx_x86_64",
  2157. "windows_x86_64"
  2158. ],
  2159. "filename": "requests_toolbelt-0.10.1-py2.py3-none-any.whl",
  2160. "isolated": true,
  2161. "python_interpreter_target": "@@rules_python~~python~python_3_11_host//:python",
  2162. "quiet": true,
  2163. "repo": "rules_python_publish_deps_311",
  2164. "requirement": "requests-toolbelt==0.10.1",
  2165. "sha256": "18565aa58116d9951ac39baa288d3adb5b3ff975c4f25eee78555d89e8f247f7",
  2166. "timeout": 600,
  2167. "urls": [
  2168. "https://files.pythonhosted.org/packages/05/d3/bf87a36bff1cb88fd30a509fd366c70ec30676517ee791b2f77e0e29817a/requests_toolbelt-0.10.1-py2.py3-none-any.whl"
  2169. ]
  2170. }
  2171. },
  2172. "rules_python_publish_deps_311_cryptography_cp37_abi3_manylinux_2_28_x86_64_b648fe2a": {
  2173. "bzlFile": "@@rules_python~//python/pip_install:pip_repository.bzl",
  2174. "ruleClassName": "whl_library",
  2175. "attributes": {
  2176. "dep_template": "@rules_python_publish_deps//{name}:{target}",
  2177. "experimental_target_platforms": [
  2178. "linux_aarch64",
  2179. "linux_arm",
  2180. "linux_ppc",
  2181. "linux_s390x",
  2182. "linux_x86_64"
  2183. ],
  2184. "filename": "cryptography-41.0.6-cp37-abi3-manylinux_2_28_x86_64.whl",
  2185. "isolated": true,
  2186. "python_interpreter_target": "@@rules_python~~python~python_3_11_host//:python",
  2187. "quiet": true,
  2188. "repo": "rules_python_publish_deps_311",
  2189. "requirement": "cryptography==41.0.6",
  2190. "sha256": "b648fe2a45e426aaee684ddca2632f62ec4613ef362f4d681a9a6283d10e079d",
  2191. "timeout": 600,
  2192. "urls": [
  2193. "https://files.pythonhosted.org/packages/1e/7a/22192740f36448bb763846da291c13fa66dae92917b5a1cd032ea5dfe2d1/cryptography-41.0.6-cp37-abi3-manylinux_2_28_x86_64.whl"
  2194. ]
  2195. }
  2196. },
  2197. "rules_python_publish_deps_311_cffi_cp311_cp311_manylinux_2_17_x86_64_94411f22": {
  2198. "bzlFile": "@@rules_python~//python/pip_install:pip_repository.bzl",
  2199. "ruleClassName": "whl_library",
  2200. "attributes": {
  2201. "dep_template": "@rules_python_publish_deps//{name}:{target}",
  2202. "experimental_target_platforms": [
  2203. "linux_aarch64",
  2204. "linux_arm",
  2205. "linux_ppc",
  2206. "linux_s390x",
  2207. "linux_x86_64"
  2208. ],
  2209. "filename": "cffi-1.15.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
  2210. "isolated": true,
  2211. "python_interpreter_target": "@@rules_python~~python~python_3_11_host//:python",
  2212. "quiet": true,
  2213. "repo": "rules_python_publish_deps_311",
  2214. "requirement": "cffi==1.15.1",
  2215. "sha256": "94411f22c3985acaec6f83c6df553f2dbe17b698cc7f8ae751ff2237d96b9e3c",
  2216. "timeout": 600,
  2217. "urls": [
  2218. "https://files.pythonhosted.org/packages/37/5a/c37631a86be838bdd84cc0259130942bf7e6e32f70f4cab95f479847fb91/cffi-1.15.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl"
  2219. ]
  2220. }
  2221. },
  2222. "rules_python_publish_deps_311_pygments_py3_none_any_fa7bd7bd": {
  2223. "bzlFile": "@@rules_python~//python/pip_install:pip_repository.bzl",
  2224. "ruleClassName": "whl_library",
  2225. "attributes": {
  2226. "dep_template": "@rules_python_publish_deps//{name}:{target}",
  2227. "experimental_target_platforms": [
  2228. "linux_aarch64",
  2229. "linux_arm",
  2230. "linux_ppc",
  2231. "linux_s390x",
  2232. "linux_x86_64",
  2233. "osx_aarch64",
  2234. "osx_x86_64",
  2235. "windows_x86_64"
  2236. ],
  2237. "filename": "Pygments-2.14.0-py3-none-any.whl",
  2238. "isolated": true,
  2239. "python_interpreter_target": "@@rules_python~~python~python_3_11_host//:python",
  2240. "quiet": true,
  2241. "repo": "rules_python_publish_deps_311",
  2242. "requirement": "pygments==2.14.0",
  2243. "sha256": "fa7bd7bd2771287c0de303af8bfdfc731f51bd2c6a47ab69d117138893b82717",
  2244. "timeout": 600,
  2245. "urls": [
  2246. "https://files.pythonhosted.org/packages/0b/42/d9d95cc461f098f204cd20c85642ae40fbff81f74c300341b8d0e0df14e0/Pygments-2.14.0-py3-none-any.whl"
  2247. ]
  2248. }
  2249. },
  2250. "rules_python_publish_deps_311_bleach_py3_none_any_33c16e33": {
  2251. "bzlFile": "@@rules_python~//python/pip_install:pip_repository.bzl",
  2252. "ruleClassName": "whl_library",
  2253. "attributes": {
  2254. "dep_template": "@rules_python_publish_deps//{name}:{target}",
  2255. "experimental_target_platforms": [
  2256. "linux_aarch64",
  2257. "linux_arm",
  2258. "linux_ppc",
  2259. "linux_s390x",
  2260. "linux_x86_64",
  2261. "osx_aarch64",
  2262. "osx_x86_64",
  2263. "windows_x86_64"
  2264. ],
  2265. "filename": "bleach-6.0.0-py3-none-any.whl",
  2266. "isolated": true,
  2267. "python_interpreter_target": "@@rules_python~~python~python_3_11_host//:python",
  2268. "quiet": true,
  2269. "repo": "rules_python_publish_deps_311",
  2270. "requirement": "bleach==6.0.0",
  2271. "sha256": "33c16e3353dbd13028ab4799a0f89a83f113405c766e9c122df8a06f5b85b3f4",
  2272. "timeout": 600,
  2273. "urls": [
  2274. "https://files.pythonhosted.org/packages/ac/e2/dfcab68c9b2e7800c8f06b85c76e5f978d05b195a958daa9b1dda54a1db6/bleach-6.0.0-py3-none-any.whl"
  2275. ]
  2276. }
  2277. },
  2278. "rules_python_publish_deps_311_keyring_py3_none_any_771ed2a9": {
  2279. "bzlFile": "@@rules_python~//python/pip_install:pip_repository.bzl",
  2280. "ruleClassName": "whl_library",
  2281. "attributes": {
  2282. "dep_template": "@rules_python_publish_deps//{name}:{target}",
  2283. "experimental_target_platforms": [
  2284. "linux_aarch64",
  2285. "linux_arm",
  2286. "linux_ppc",
  2287. "linux_s390x",
  2288. "linux_x86_64",
  2289. "osx_aarch64",
  2290. "osx_x86_64",
  2291. "windows_x86_64"
  2292. ],
  2293. "filename": "keyring-23.13.1-py3-none-any.whl",
  2294. "isolated": true,
  2295. "python_interpreter_target": "@@rules_python~~python~python_3_11_host//:python",
  2296. "quiet": true,
  2297. "repo": "rules_python_publish_deps_311",
  2298. "requirement": "keyring==23.13.1",
  2299. "sha256": "771ed2a91909389ed6148631de678f82ddc73737d85a927f382a8a1b157898cd",
  2300. "timeout": 600,
  2301. "urls": [
  2302. "https://files.pythonhosted.org/packages/62/db/0e9a09b2b95986dcd73ac78be6ed2bd73ebe8bac65cba7add5b83eb9d899/keyring-23.13.1-py3-none-any.whl"
  2303. ]
  2304. }
  2305. },
  2306. "rules_python_publish_deps_311_jaraco_classes_sdist_89559fa5": {
  2307. "bzlFile": "@@rules_python~//python/pip_install:pip_repository.bzl",
  2308. "ruleClassName": "whl_library",
  2309. "attributes": {
  2310. "dep_template": "@rules_python_publish_deps//{name}:{target}",
  2311. "experimental_target_platforms": [
  2312. "linux_aarch64",
  2313. "linux_arm",
  2314. "linux_ppc",
  2315. "linux_s390x",
  2316. "linux_x86_64",
  2317. "osx_aarch64",
  2318. "osx_x86_64",
  2319. "windows_x86_64"
  2320. ],
  2321. "filename": "jaraco.classes-3.2.3.tar.gz",
  2322. "isolated": true,
  2323. "python_interpreter_target": "@@rules_python~~python~python_3_11_host//:python",
  2324. "quiet": true,
  2325. "repo": "rules_python_publish_deps_311",
  2326. "requirement": "jaraco-classes==3.2.3",
  2327. "sha256": "89559fa5c1d3c34eff6f631ad80bb21f378dbcbb35dd161fd2c6b93f5be2f98a",
  2328. "timeout": 600,
  2329. "urls": [
  2330. "https://files.pythonhosted.org/packages/bf/02/a956c9bfd2dfe60b30c065ed8e28df7fcf72b292b861dca97e951c145ef6/jaraco.classes-3.2.3.tar.gz"
  2331. ]
  2332. }
  2333. },
  2334. "rules_python_publish_deps_311_rich_py3_none_any_7c963f0d": {
  2335. "bzlFile": "@@rules_python~//python/pip_install:pip_repository.bzl",
  2336. "ruleClassName": "whl_library",
  2337. "attributes": {
  2338. "dep_template": "@rules_python_publish_deps//{name}:{target}",
  2339. "experimental_target_platforms": [
  2340. "linux_aarch64",
  2341. "linux_arm",
  2342. "linux_ppc",
  2343. "linux_s390x",
  2344. "linux_x86_64",
  2345. "osx_aarch64",
  2346. "osx_x86_64",
  2347. "windows_x86_64"
  2348. ],
  2349. "filename": "rich-13.2.0-py3-none-any.whl",
  2350. "isolated": true,
  2351. "python_interpreter_target": "@@rules_python~~python~python_3_11_host//:python",
  2352. "quiet": true,
  2353. "repo": "rules_python_publish_deps_311",
  2354. "requirement": "rich==13.2.0",
  2355. "sha256": "7c963f0d03819221e9ac561e1bc866e3f95a02248c1234daa48954e6d381c003",
  2356. "timeout": 600,
  2357. "urls": [
  2358. "https://files.pythonhosted.org/packages/0e/cf/a6369a2aee266c2d7604230f083d4bd14b8f69bc69eb25b3da63b9f2f853/rich-13.2.0-py3-none-any.whl"
  2359. ]
  2360. }
  2361. },
  2362. "rules_python_publish_deps_311_charset_normalizer_cp311_cp311_manylinux_2_17_s390x_8c7fe7af": {
  2363. "bzlFile": "@@rules_python~//python/pip_install:pip_repository.bzl",
  2364. "ruleClassName": "whl_library",
  2365. "attributes": {
  2366. "dep_template": "@rules_python_publish_deps//{name}:{target}",
  2367. "experimental_target_platforms": [
  2368. "linux_aarch64",
  2369. "linux_arm",
  2370. "linux_ppc",
  2371. "linux_s390x",
  2372. "linux_x86_64",
  2373. "osx_aarch64",
  2374. "osx_x86_64",
  2375. "windows_x86_64"
  2376. ],
  2377. "filename": "charset_normalizer-3.0.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl",
  2378. "isolated": true,
  2379. "python_interpreter_target": "@@rules_python~~python~python_3_11_host//:python",
  2380. "quiet": true,
  2381. "repo": "rules_python_publish_deps_311",
  2382. "requirement": "charset-normalizer==3.0.1",
  2383. "sha256": "8c7fe7afa480e3e82eed58e0ca89f751cd14d767638e2550c77a92a9e749c317",
  2384. "timeout": 600,
  2385. "urls": [
  2386. "https://files.pythonhosted.org/packages/df/c5/dd3a17a615775d0ffc3e12b0e47833d8b7e0a4871431dad87a3f92382a19/charset_normalizer-3.0.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl"
  2387. ]
  2388. }
  2389. },
  2390. "rules_python_publish_deps_311_secretstorage_sdist_2403533e": {
  2391. "bzlFile": "@@rules_python~//python/pip_install:pip_repository.bzl",
  2392. "ruleClassName": "whl_library",
  2393. "attributes": {
  2394. "dep_template": "@rules_python_publish_deps//{name}:{target}",
  2395. "experimental_target_platforms": [
  2396. "linux_aarch64",
  2397. "linux_arm",
  2398. "linux_ppc",
  2399. "linux_s390x",
  2400. "linux_x86_64"
  2401. ],
  2402. "filename": "SecretStorage-3.3.3.tar.gz",
  2403. "isolated": true,
  2404. "python_interpreter_target": "@@rules_python~~python~python_3_11_host//:python",
  2405. "quiet": true,
  2406. "repo": "rules_python_publish_deps_311",
  2407. "requirement": "secretstorage==3.3.3",
  2408. "sha256": "2403533ef369eca6d2ba81718576c5e0f564d5cca1b58f73a8b23e7d4eeebd77",
  2409. "timeout": 600,
  2410. "urls": [
  2411. "https://files.pythonhosted.org/packages/53/a4/f48c9d79cb507ed1373477dbceaba7401fd8a23af63b837fa61f1dcd3691/SecretStorage-3.3.3.tar.gz"
  2412. ]
  2413. }
  2414. },
  2415. "rules_python_publish_deps_311_cryptography_cp37_abi3_musllinux_1_1_x86_64_068bc551": {
  2416. "bzlFile": "@@rules_python~//python/pip_install:pip_repository.bzl",
  2417. "ruleClassName": "whl_library",
  2418. "attributes": {
  2419. "dep_template": "@rules_python_publish_deps//{name}:{target}",
  2420. "experimental_target_platforms": [
  2421. "linux_aarch64",
  2422. "linux_arm",
  2423. "linux_ppc",
  2424. "linux_s390x",
  2425. "linux_x86_64"
  2426. ],
  2427. "filename": "cryptography-41.0.6-cp37-abi3-musllinux_1_1_x86_64.whl",
  2428. "isolated": true,
  2429. "python_interpreter_target": "@@rules_python~~python~python_3_11_host//:python",
  2430. "quiet": true,
  2431. "repo": "rules_python_publish_deps_311",
  2432. "requirement": "cryptography==41.0.6",
  2433. "sha256": "068bc551698c234742c40049e46840843f3d98ad7ce265fd2bd4ec0d11306596",
  2434. "timeout": 600,
  2435. "urls": [
  2436. "https://files.pythonhosted.org/packages/a4/37/38d1340a8eb720dac78fde5d14742c6bb22a4b5f750ac869ef4eaaa795e0/cryptography-41.0.6-cp37-abi3-musllinux_1_1_x86_64.whl"
  2437. ]
  2438. }
  2439. },
  2440. "rules_python_publish_deps_311_charset_normalizer_cp311_cp311_musllinux_1_1_ppc64le_5995f016": {
  2441. "bzlFile": "@@rules_python~//python/pip_install:pip_repository.bzl",
  2442. "ruleClassName": "whl_library",
  2443. "attributes": {
  2444. "dep_template": "@rules_python_publish_deps//{name}:{target}",
  2445. "experimental_target_platforms": [
  2446. "linux_aarch64",
  2447. "linux_arm",
  2448. "linux_ppc",
  2449. "linux_s390x",
  2450. "linux_x86_64",
  2451. "osx_aarch64",
  2452. "osx_x86_64",
  2453. "windows_x86_64"
  2454. ],
  2455. "filename": "charset_normalizer-3.0.1-cp311-cp311-musllinux_1_1_ppc64le.whl",
  2456. "isolated": true,
  2457. "python_interpreter_target": "@@rules_python~~python~python_3_11_host//:python",
  2458. "quiet": true,
  2459. "repo": "rules_python_publish_deps_311",
  2460. "requirement": "charset-normalizer==3.0.1",
  2461. "sha256": "5995f0164fa7df59db4746112fec3f49c461dd6b31b841873443bdb077c13cfc",
  2462. "timeout": 600,
  2463. "urls": [
  2464. "https://files.pythonhosted.org/packages/86/eb/31c9025b4ed7eddd930c5f2ac269efb953de33140608c7539675d74a2081/charset_normalizer-3.0.1-cp311-cp311-musllinux_1_1_ppc64le.whl"
  2465. ]
  2466. }
  2467. },
  2468. "rules_python_publish_deps_311_more_itertools_sdist_5a6257e4": {
  2469. "bzlFile": "@@rules_python~//python/pip_install:pip_repository.bzl",
  2470. "ruleClassName": "whl_library",
  2471. "attributes": {
  2472. "dep_template": "@rules_python_publish_deps//{name}:{target}",
  2473. "experimental_target_platforms": [
  2474. "linux_aarch64",
  2475. "linux_arm",
  2476. "linux_ppc",
  2477. "linux_s390x",
  2478. "linux_x86_64",
  2479. "osx_aarch64",
  2480. "osx_x86_64",
  2481. "windows_x86_64"
  2482. ],
  2483. "filename": "more-itertools-9.0.0.tar.gz",
  2484. "isolated": true,
  2485. "python_interpreter_target": "@@rules_python~~python~python_3_11_host//:python",
  2486. "quiet": true,
  2487. "repo": "rules_python_publish_deps_311",
  2488. "requirement": "more-itertools==9.0.0",
  2489. "sha256": "5a6257e40878ef0520b1803990e3e22303a41b5714006c32a3fd8304b26ea1ab",
  2490. "timeout": 600,
  2491. "urls": [
  2492. "https://files.pythonhosted.org/packages/13/b3/397aa9668da8b1f0c307bc474608653d46122ae0563d1d32f60e24fa0cbd/more-itertools-9.0.0.tar.gz"
  2493. ]
  2494. }
  2495. },
  2496. "rules_python_publish_deps_311_importlib_metadata_py3_none_any_7efb448e": {
  2497. "bzlFile": "@@rules_python~//python/pip_install:pip_repository.bzl",
  2498. "ruleClassName": "whl_library",
  2499. "attributes": {
  2500. "dep_template": "@rules_python_publish_deps//{name}:{target}",
  2501. "experimental_target_platforms": [
  2502. "linux_aarch64",
  2503. "linux_arm",
  2504. "linux_ppc",
  2505. "linux_s390x",
  2506. "linux_x86_64",
  2507. "osx_aarch64",
  2508. "osx_x86_64",
  2509. "windows_x86_64"
  2510. ],
  2511. "filename": "importlib_metadata-6.0.0-py3-none-any.whl",
  2512. "isolated": true,
  2513. "python_interpreter_target": "@@rules_python~~python~python_3_11_host//:python",
  2514. "quiet": true,
  2515. "repo": "rules_python_publish_deps_311",
  2516. "requirement": "importlib-metadata==6.0.0",
  2517. "sha256": "7efb448ec9a5e313a57655d35aa54cd3e01b7e1fbcf72dce1bf06119420f5bad",
  2518. "timeout": 600,
  2519. "urls": [
  2520. "https://files.pythonhosted.org/packages/26/a7/9da7d5b23fc98ab3d424ac2c65613d63c1f401efb84ad50f2fa27b2caab4/importlib_metadata-6.0.0-py3-none-any.whl"
  2521. ]
  2522. }
  2523. },
  2524. "rules_python_publish_deps_311_charset_normalizer_cp311_cp311_win_amd64_9ab77acb": {
  2525. "bzlFile": "@@rules_python~//python/pip_install:pip_repository.bzl",
  2526. "ruleClassName": "whl_library",
  2527. "attributes": {
  2528. "dep_template": "@rules_python_publish_deps//{name}:{target}",
  2529. "experimental_target_platforms": [
  2530. "linux_aarch64",
  2531. "linux_arm",
  2532. "linux_ppc",
  2533. "linux_s390x",
  2534. "linux_x86_64",
  2535. "osx_aarch64",
  2536. "osx_x86_64",
  2537. "windows_x86_64"
  2538. ],
  2539. "filename": "charset_normalizer-3.0.1-cp311-cp311-win_amd64.whl",
  2540. "isolated": true,
  2541. "python_interpreter_target": "@@rules_python~~python~python_3_11_host//:python",
  2542. "quiet": true,
  2543. "repo": "rules_python_publish_deps_311",
  2544. "requirement": "charset-normalizer==3.0.1",
  2545. "sha256": "9ab77acb98eba3fd2a85cd160851816bfce6871d944d885febf012713f06659c",
  2546. "timeout": 600,
  2547. "urls": [
  2548. "https://files.pythonhosted.org/packages/2e/7b/5053a4a46fac017fd2aea3dc9abdd9983fd4cef153b6eb6aedcb0d7cb6e3/charset_normalizer-3.0.1-cp311-cp311-win_amd64.whl"
  2549. ]
  2550. }
  2551. },
  2552. "rules_python_publish_deps_311_importlib_metadata_sdist_e354bede": {
  2553. "bzlFile": "@@rules_python~//python/pip_install:pip_repository.bzl",
  2554. "ruleClassName": "whl_library",
  2555. "attributes": {
  2556. "dep_template": "@rules_python_publish_deps//{name}:{target}",
  2557. "experimental_target_platforms": [
  2558. "linux_aarch64",
  2559. "linux_arm",
  2560. "linux_ppc",
  2561. "linux_s390x",
  2562. "linux_x86_64",
  2563. "osx_aarch64",
  2564. "osx_x86_64",
  2565. "windows_x86_64"
  2566. ],
  2567. "filename": "importlib_metadata-6.0.0.tar.gz",
  2568. "isolated": true,
  2569. "python_interpreter_target": "@@rules_python~~python~python_3_11_host//:python",
  2570. "quiet": true,
  2571. "repo": "rules_python_publish_deps_311",
  2572. "requirement": "importlib-metadata==6.0.0",
  2573. "sha256": "e354bedeb60efa6affdcc8ae121b73544a7aa74156d047311948f6d711cd378d",
  2574. "timeout": 600,
  2575. "urls": [
  2576. "https://files.pythonhosted.org/packages/90/07/6397ad02d31bddf1841c9ad3ec30a693a3ff208e09c2ef45c9a8a5f85156/importlib_metadata-6.0.0.tar.gz"
  2577. ]
  2578. }
  2579. },
  2580. "rules_python_publish_deps_311_charset_normalizer_cp311_cp311_macosx_11_0_arm64_87701167": {
  2581. "bzlFile": "@@rules_python~//python/pip_install:pip_repository.bzl",
  2582. "ruleClassName": "whl_library",
  2583. "attributes": {
  2584. "dep_template": "@rules_python_publish_deps//{name}:{target}",
  2585. "experimental_target_platforms": [
  2586. "linux_aarch64",
  2587. "linux_arm",
  2588. "linux_ppc",
  2589. "linux_s390x",
  2590. "linux_x86_64",
  2591. "osx_aarch64",
  2592. "osx_x86_64",
  2593. "windows_x86_64"
  2594. ],
  2595. "filename": "charset_normalizer-3.0.1-cp311-cp311-macosx_11_0_arm64.whl",
  2596. "isolated": true,
  2597. "python_interpreter_target": "@@rules_python~~python~python_3_11_host//:python",
  2598. "quiet": true,
  2599. "repo": "rules_python_publish_deps_311",
  2600. "requirement": "charset-normalizer==3.0.1",
  2601. "sha256": "87701167f2a5c930b403e9756fab1d31d4d4da52856143b609e30a1ce7160f3c",
  2602. "timeout": 600,
  2603. "urls": [
  2604. "https://files.pythonhosted.org/packages/02/49/78b4c1bc8b1b0e0fc66fb31ce30d8302f10a1412ba75de72c57532f0beb0/charset_normalizer-3.0.1-cp311-cp311-macosx_11_0_arm64.whl"
  2605. ]
  2606. }
  2607. },
  2608. "rules_python_publish_deps_311_charset_normalizer_cp311_cp311_musllinux_1_1_x86_64_761e8904": {
  2609. "bzlFile": "@@rules_python~//python/pip_install:pip_repository.bzl",
  2610. "ruleClassName": "whl_library",
  2611. "attributes": {
  2612. "dep_template": "@rules_python_publish_deps//{name}:{target}",
  2613. "experimental_target_platforms": [
  2614. "linux_aarch64",
  2615. "linux_arm",
  2616. "linux_ppc",
  2617. "linux_s390x",
  2618. "linux_x86_64",
  2619. "osx_aarch64",
  2620. "osx_x86_64",
  2621. "windows_x86_64"
  2622. ],
  2623. "filename": "charset_normalizer-3.0.1-cp311-cp311-musllinux_1_1_x86_64.whl",
  2624. "isolated": true,
  2625. "python_interpreter_target": "@@rules_python~~python~python_3_11_host//:python",
  2626. "quiet": true,
  2627. "repo": "rules_python_publish_deps_311",
  2628. "requirement": "charset-normalizer==3.0.1",
  2629. "sha256": "761e8904c07ad053d285670f36dd94e1b6ab7f16ce62b9805c475b7aa1cffde6",
  2630. "timeout": 600,
  2631. "urls": [
  2632. "https://files.pythonhosted.org/packages/82/49/ab81421d5aa25bc8535896a017c93204cb4051f2a4e72b1ad8f3b594e072/charset_normalizer-3.0.1-cp311-cp311-musllinux_1_1_x86_64.whl"
  2633. ]
  2634. }
  2635. },
  2636. "rules_python_publish_deps_311_certifi_py3_none_any_4ad3232f": {
  2637. "bzlFile": "@@rules_python~//python/pip_install:pip_repository.bzl",
  2638. "ruleClassName": "whl_library",
  2639. "attributes": {
  2640. "dep_template": "@rules_python_publish_deps//{name}:{target}",
  2641. "experimental_target_platforms": [
  2642. "linux_aarch64",
  2643. "linux_arm",
  2644. "linux_ppc",
  2645. "linux_s390x",
  2646. "linux_x86_64"
  2647. ],
  2648. "filename": "certifi-2022.12.7-py3-none-any.whl",
  2649. "isolated": true,
  2650. "python_interpreter_target": "@@rules_python~~python~python_3_11_host//:python",
  2651. "quiet": true,
  2652. "repo": "rules_python_publish_deps_311",
  2653. "requirement": "certifi==2022.12.7",
  2654. "sha256": "4ad3232f5e926d6718ec31cfc1fcadfde020920e278684144551c91769c7bc18",
  2655. "timeout": 600,
  2656. "urls": [
  2657. "https://files.pythonhosted.org/packages/71/4c/3db2b8021bd6f2f0ceb0e088d6b2d49147671f25832fb17970e9b583d742/certifi-2022.12.7-py3-none-any.whl"
  2658. ]
  2659. }
  2660. },
  2661. "rules_python_publish_deps_311_jeepney_py3_none_any_c0a454ad": {
  2662. "bzlFile": "@@rules_python~//python/pip_install:pip_repository.bzl",
  2663. "ruleClassName": "whl_library",
  2664. "attributes": {
  2665. "dep_template": "@rules_python_publish_deps//{name}:{target}",
  2666. "experimental_target_platforms": [
  2667. "linux_aarch64",
  2668. "linux_arm",
  2669. "linux_ppc",
  2670. "linux_s390x",
  2671. "linux_x86_64"
  2672. ],
  2673. "filename": "jeepney-0.8.0-py3-none-any.whl",
  2674. "isolated": true,
  2675. "python_interpreter_target": "@@rules_python~~python~python_3_11_host//:python",
  2676. "quiet": true,
  2677. "repo": "rules_python_publish_deps_311",
  2678. "requirement": "jeepney==0.8.0",
  2679. "sha256": "c0a454ad016ca575060802ee4d590dd912e35c122fa04e70306de3d076cce755",
  2680. "timeout": 600,
  2681. "urls": [
  2682. "https://files.pythonhosted.org/packages/ae/72/2a1e2290f1ab1e06f71f3d0f1646c9e4634e70e1d37491535e19266e8dc9/jeepney-0.8.0-py3-none-any.whl"
  2683. ]
  2684. }
  2685. },
  2686. "rules_python_publish_deps_311_secretstorage_py3_none_any_f356e662": {
  2687. "bzlFile": "@@rules_python~//python/pip_install:pip_repository.bzl",
  2688. "ruleClassName": "whl_library",
  2689. "attributes": {
  2690. "dep_template": "@rules_python_publish_deps//{name}:{target}",
  2691. "experimental_target_platforms": [
  2692. "linux_aarch64",
  2693. "linux_arm",
  2694. "linux_ppc",
  2695. "linux_s390x",
  2696. "linux_x86_64"
  2697. ],
  2698. "filename": "SecretStorage-3.3.3-py3-none-any.whl",
  2699. "isolated": true,
  2700. "python_interpreter_target": "@@rules_python~~python~python_3_11_host//:python",
  2701. "quiet": true,
  2702. "repo": "rules_python_publish_deps_311",
  2703. "requirement": "secretstorage==3.3.3",
  2704. "sha256": "f356e6628222568e3af06f2eba8df495efa13b3b63081dafd4f7d9a7b7bc9f99",
  2705. "timeout": 600,
  2706. "urls": [
  2707. "https://files.pythonhosted.org/packages/54/24/b4293291fa1dd830f353d2cb163295742fa87f179fcc8a20a306a81978b7/SecretStorage-3.3.3-py3-none-any.whl"
  2708. ]
  2709. }
  2710. },
  2711. "rules_python_publish_deps_311_idna_py3_none_any_90b77e79": {
  2712. "bzlFile": "@@rules_python~//python/pip_install:pip_repository.bzl",
  2713. "ruleClassName": "whl_library",
  2714. "attributes": {
  2715. "dep_template": "@rules_python_publish_deps//{name}:{target}",
  2716. "experimental_target_platforms": [
  2717. "linux_aarch64",
  2718. "linux_arm",
  2719. "linux_ppc",
  2720. "linux_s390x",
  2721. "linux_x86_64",
  2722. "osx_aarch64",
  2723. "osx_x86_64",
  2724. "windows_x86_64"
  2725. ],
  2726. "filename": "idna-3.4-py3-none-any.whl",
  2727. "isolated": true,
  2728. "python_interpreter_target": "@@rules_python~~python~python_3_11_host//:python",
  2729. "quiet": true,
  2730. "repo": "rules_python_publish_deps_311",
  2731. "requirement": "idna==3.4",
  2732. "sha256": "90b77e79eaa3eba6de819a0c442c0b4ceefc341a7a2ab77d7562bf49f425c5c2",
  2733. "timeout": 600,
  2734. "urls": [
  2735. "https://files.pythonhosted.org/packages/fc/34/3030de6f1370931b9dbb4dad48f6ab1015ab1d32447850b9fc94e60097be/idna-3.4-py3-none-any.whl"
  2736. ]
  2737. }
  2738. },
  2739. "rules_python_publish_deps_311_urllib3_py2_none_any_75edcdc2": {
  2740. "bzlFile": "@@rules_python~//python/pip_install:pip_repository.bzl",
  2741. "ruleClassName": "whl_library",
  2742. "attributes": {
  2743. "dep_template": "@rules_python_publish_deps//{name}:{target}",
  2744. "experimental_target_platforms": [
  2745. "linux_aarch64",
  2746. "linux_arm",
  2747. "linux_ppc",
  2748. "linux_s390x",
  2749. "linux_x86_64"
  2750. ],
  2751. "filename": "urllib3-1.26.14-py2.py3-none-any.whl",
  2752. "isolated": true,
  2753. "python_interpreter_target": "@@rules_python~~python~python_3_11_host//:python",
  2754. "quiet": true,
  2755. "repo": "rules_python_publish_deps_311",
  2756. "requirement": "urllib3==1.26.14",
  2757. "sha256": "75edcdc2f7d85b137124a6c3c9fc3933cdeaa12ecb9a6a959f22797a0feca7e1",
  2758. "timeout": 600,
  2759. "urls": [
  2760. "https://files.pythonhosted.org/packages/fe/ca/466766e20b767ddb9b951202542310cba37ea5f2d792dae7589f1741af58/urllib3-1.26.14-py2.py3-none-any.whl"
  2761. ]
  2762. }
  2763. },
  2764. "rules_python_publish_deps_311_charset_normalizer_py3_none_any_7e189e2e": {
  2765. "bzlFile": "@@rules_python~//python/pip_install:pip_repository.bzl",
  2766. "ruleClassName": "whl_library",
  2767. "attributes": {
  2768. "dep_template": "@rules_python_publish_deps//{name}:{target}",
  2769. "experimental_target_platforms": [
  2770. "linux_aarch64",
  2771. "linux_arm",
  2772. "linux_ppc",
  2773. "linux_s390x",
  2774. "linux_x86_64",
  2775. "osx_aarch64",
  2776. "osx_x86_64",
  2777. "windows_x86_64"
  2778. ],
  2779. "filename": "charset_normalizer-3.0.1-py3-none-any.whl",
  2780. "isolated": true,
  2781. "python_interpreter_target": "@@rules_python~~python~python_3_11_host//:python",
  2782. "quiet": true,
  2783. "repo": "rules_python_publish_deps_311",
  2784. "requirement": "charset-normalizer==3.0.1",
  2785. "sha256": "7e189e2e1d3ed2f4aebabd2d5b0f931e883676e51c7624826e0a4e5fe8a0bf24",
  2786. "timeout": 600,
  2787. "urls": [
  2788. "https://files.pythonhosted.org/packages/68/2b/02e9d6a98ddb73fa238d559a9edcc30b247b8dc4ee848b6184c936e99dc0/charset_normalizer-3.0.1-py3-none-any.whl"
  2789. ]
  2790. }
  2791. },
  2792. "rules_python_publish_deps_311_twine_sdist_9e102ef5": {
  2793. "bzlFile": "@@rules_python~//python/pip_install:pip_repository.bzl",
  2794. "ruleClassName": "whl_library",
  2795. "attributes": {
  2796. "dep_template": "@rules_python_publish_deps//{name}:{target}",
  2797. "experimental_target_platforms": [
  2798. "linux_aarch64",
  2799. "linux_arm",
  2800. "linux_ppc",
  2801. "linux_s390x",
  2802. "linux_x86_64",
  2803. "osx_aarch64",
  2804. "osx_x86_64",
  2805. "windows_x86_64"
  2806. ],
  2807. "filename": "twine-4.0.2.tar.gz",
  2808. "isolated": true,
  2809. "python_interpreter_target": "@@rules_python~~python~python_3_11_host//:python",
  2810. "quiet": true,
  2811. "repo": "rules_python_publish_deps_311",
  2812. "requirement": "twine==4.0.2",
  2813. "sha256": "9e102ef5fdd5a20661eb88fad46338806c3bd32cf1db729603fe3697b1bc83c8",
  2814. "timeout": 600,
  2815. "urls": [
  2816. "https://files.pythonhosted.org/packages/b7/1a/a7884359429d801cd63c2c5512ad0a337a509994b0e42d9696d4778d71f6/twine-4.0.2.tar.gz"
  2817. ]
  2818. }
  2819. },
  2820. "rules_python_publish_deps_311_pywin32_ctypes_py2_none_any_9dc2d991": {
  2821. "bzlFile": "@@rules_python~//python/pip_install:pip_repository.bzl",
  2822. "ruleClassName": "whl_library",
  2823. "attributes": {
  2824. "dep_template": "@rules_python_publish_deps//{name}:{target}",
  2825. "experimental_target_platforms": [
  2826. "windows_x86_64"
  2827. ],
  2828. "filename": "pywin32_ctypes-0.2.0-py2.py3-none-any.whl",
  2829. "isolated": true,
  2830. "python_interpreter_target": "@@rules_python~~python~python_3_11_host//:python",
  2831. "quiet": true,
  2832. "repo": "rules_python_publish_deps_311",
  2833. "requirement": "pywin32-ctypes==0.2.0",
  2834. "sha256": "9dc2d991b3479cc2df15930958b674a48a227d5361d413827a4cfd0b5876fc98",
  2835. "timeout": 600,
  2836. "urls": [
  2837. "https://files.pythonhosted.org/packages/9e/4b/3ab2720f1fa4b4bc924ef1932b842edf10007e4547ea8157b0b9fc78599a/pywin32_ctypes-0.2.0-py2.py3-none-any.whl"
  2838. ]
  2839. }
  2840. },
  2841. "rules_python_publish_deps_311_pkginfo_py3_none_any_4b7a555a": {
  2842. "bzlFile": "@@rules_python~//python/pip_install:pip_repository.bzl",
  2843. "ruleClassName": "whl_library",
  2844. "attributes": {
  2845. "dep_template": "@rules_python_publish_deps//{name}:{target}",
  2846. "experimental_target_platforms": [
  2847. "linux_aarch64",
  2848. "linux_arm",
  2849. "linux_ppc",
  2850. "linux_s390x",
  2851. "linux_x86_64",
  2852. "osx_aarch64",
  2853. "osx_x86_64",
  2854. "windows_x86_64"
  2855. ],
  2856. "filename": "pkginfo-1.9.6-py3-none-any.whl",
  2857. "isolated": true,
  2858. "python_interpreter_target": "@@rules_python~~python~python_3_11_host//:python",
  2859. "quiet": true,
  2860. "repo": "rules_python_publish_deps_311",
  2861. "requirement": "pkginfo==1.9.6",
  2862. "sha256": "4b7a555a6d5a22169fcc9cf7bfd78d296b0361adad412a346c1226849af5e546",
  2863. "timeout": 600,
  2864. "urls": [
  2865. "https://files.pythonhosted.org/packages/b3/f2/6e95c86a23a30fa205ea6303a524b20cbae27fbee69216377e3d95266406/pkginfo-1.9.6-py3-none-any.whl"
  2866. ]
  2867. }
  2868. },
  2869. "rules_python_publish_deps_311_cffi_cp311_cp311_musllinux_1_1_x86_64_cc4d65ae": {
  2870. "bzlFile": "@@rules_python~//python/pip_install:pip_repository.bzl",
  2871. "ruleClassName": "whl_library",
  2872. "attributes": {
  2873. "dep_template": "@rules_python_publish_deps//{name}:{target}",
  2874. "experimental_target_platforms": [
  2875. "linux_aarch64",
  2876. "linux_arm",
  2877. "linux_ppc",
  2878. "linux_s390x",
  2879. "linux_x86_64"
  2880. ],
  2881. "filename": "cffi-1.15.1-cp311-cp311-musllinux_1_1_x86_64.whl",
  2882. "isolated": true,
  2883. "python_interpreter_target": "@@rules_python~~python~python_3_11_host//:python",
  2884. "quiet": true,
  2885. "repo": "rules_python_publish_deps_311",
  2886. "requirement": "cffi==1.15.1",
  2887. "sha256": "cc4d65aeeaa04136a12677d3dd0b1c0c94dc43abac5860ab33cceb42b801c1e8",
  2888. "timeout": 600,
  2889. "urls": [
  2890. "https://files.pythonhosted.org/packages/d3/56/3e94aa719ae96eeda8b68b3ec6e347e0a23168c6841dc276ccdcdadc9f32/cffi-1.15.1-cp311-cp311-musllinux_1_1_x86_64.whl"
  2891. ]
  2892. }
  2893. },
  2894. "rules_python_publish_deps_311_mdurl_py3_none_any_84008a41": {
  2895. "bzlFile": "@@rules_python~//python/pip_install:pip_repository.bzl",
  2896. "ruleClassName": "whl_library",
  2897. "attributes": {
  2898. "dep_template": "@rules_python_publish_deps//{name}:{target}",
  2899. "experimental_target_platforms": [
  2900. "linux_aarch64",
  2901. "linux_arm",
  2902. "linux_ppc",
  2903. "linux_s390x",
  2904. "linux_x86_64",
  2905. "osx_aarch64",
  2906. "osx_x86_64",
  2907. "windows_x86_64"
  2908. ],
  2909. "filename": "mdurl-0.1.2-py3-none-any.whl",
  2910. "isolated": true,
  2911. "python_interpreter_target": "@@rules_python~~python~python_3_11_host//:python",
  2912. "quiet": true,
  2913. "repo": "rules_python_publish_deps_311",
  2914. "requirement": "mdurl==0.1.2",
  2915. "sha256": "84008a41e51615a49fc9966191ff91509e3c40b939176e643fd50a5c2196b8f8",
  2916. "timeout": 600,
  2917. "urls": [
  2918. "https://files.pythonhosted.org/packages/b3/38/89ba8ad64ae25be8de66a6d463314cf1eb366222074cfda9ee839c56a4b4/mdurl-0.1.2-py3-none-any.whl"
  2919. ]
  2920. }
  2921. },
  2922. "rules_python_publish_deps_311_more_itertools_py3_none_any_250e83d7": {
  2923. "bzlFile": "@@rules_python~//python/pip_install:pip_repository.bzl",
  2924. "ruleClassName": "whl_library",
  2925. "attributes": {
  2926. "dep_template": "@rules_python_publish_deps//{name}:{target}",
  2927. "experimental_target_platforms": [
  2928. "linux_aarch64",
  2929. "linux_arm",
  2930. "linux_ppc",
  2931. "linux_s390x",
  2932. "linux_x86_64",
  2933. "osx_aarch64",
  2934. "osx_x86_64",
  2935. "windows_x86_64"
  2936. ],
  2937. "filename": "more_itertools-9.0.0-py3-none-any.whl",
  2938. "isolated": true,
  2939. "python_interpreter_target": "@@rules_python~~python~python_3_11_host//:python",
  2940. "quiet": true,
  2941. "repo": "rules_python_publish_deps_311",
  2942. "requirement": "more-itertools==9.0.0",
  2943. "sha256": "250e83d7e81d0c87ca6bd942e6aeab8cc9daa6096d12c5308f3f92fa5e5c1f41",
  2944. "timeout": 600,
  2945. "urls": [
  2946. "https://files.pythonhosted.org/packages/5d/87/1ec3fcc09d2c04b977eabf8a1083222f82eaa2f46d5a4f85f403bf8e7b30/more_itertools-9.0.0-py3-none-any.whl"
  2947. ]
  2948. }
  2949. },
  2950. "rules_python_publish_deps_311_mdurl_sdist_bb413d29": {
  2951. "bzlFile": "@@rules_python~//python/pip_install:pip_repository.bzl",
  2952. "ruleClassName": "whl_library",
  2953. "attributes": {
  2954. "dep_template": "@rules_python_publish_deps//{name}:{target}",
  2955. "experimental_target_platforms": [
  2956. "linux_aarch64",
  2957. "linux_arm",
  2958. "linux_ppc",
  2959. "linux_s390x",
  2960. "linux_x86_64",
  2961. "osx_aarch64",
  2962. "osx_x86_64",
  2963. "windows_x86_64"
  2964. ],
  2965. "filename": "mdurl-0.1.2.tar.gz",
  2966. "isolated": true,
  2967. "python_interpreter_target": "@@rules_python~~python~python_3_11_host//:python",
  2968. "quiet": true,
  2969. "repo": "rules_python_publish_deps_311",
  2970. "requirement": "mdurl==0.1.2",
  2971. "sha256": "bb413d29f5eea38f31dd4754dd7377d4465116fb207585f97bf925588687c1ba",
  2972. "timeout": 600,
  2973. "urls": [
  2974. "https://files.pythonhosted.org/packages/d6/54/cfe61301667036ec958cb99bd3efefba235e65cdeb9c84d24a8293ba1d90/mdurl-0.1.2.tar.gz"
  2975. ]
  2976. }
  2977. },
  2978. "rules_python_publish_deps_311_keyring_sdist_ba2e15a9": {
  2979. "bzlFile": "@@rules_python~//python/pip_install:pip_repository.bzl",
  2980. "ruleClassName": "whl_library",
  2981. "attributes": {
  2982. "dep_template": "@rules_python_publish_deps//{name}:{target}",
  2983. "experimental_target_platforms": [
  2984. "linux_aarch64",
  2985. "linux_arm",
  2986. "linux_ppc",
  2987. "linux_s390x",
  2988. "linux_x86_64",
  2989. "osx_aarch64",
  2990. "osx_x86_64",
  2991. "windows_x86_64"
  2992. ],
  2993. "filename": "keyring-23.13.1.tar.gz",
  2994. "isolated": true,
  2995. "python_interpreter_target": "@@rules_python~~python~python_3_11_host//:python",
  2996. "quiet": true,
  2997. "repo": "rules_python_publish_deps_311",
  2998. "requirement": "keyring==23.13.1",
  2999. "sha256": "ba2e15a9b35e21908d0aaf4e0a47acc52d6ae33444df0da2b49d41a46ef6d678",
  3000. "timeout": 600,
  3001. "urls": [
  3002. "https://files.pythonhosted.org/packages/55/fe/282f4c205add8e8bb3a1635cbbac59d6def2e0891b145aa553a0e40dd2d0/keyring-23.13.1.tar.gz"
  3003. ]
  3004. }
  3005. },
  3006. "rules_python_publish_deps_311_rfc3986_sdist_97aacf9d": {
  3007. "bzlFile": "@@rules_python~//python/pip_install:pip_repository.bzl",
  3008. "ruleClassName": "whl_library",
  3009. "attributes": {
  3010. "dep_template": "@rules_python_publish_deps//{name}:{target}",
  3011. "experimental_target_platforms": [
  3012. "linux_aarch64",
  3013. "linux_arm",
  3014. "linux_ppc",
  3015. "linux_s390x",
  3016. "linux_x86_64",
  3017. "osx_aarch64",
  3018. "osx_x86_64",
  3019. "windows_x86_64"
  3020. ],
  3021. "filename": "rfc3986-2.0.0.tar.gz",
  3022. "isolated": true,
  3023. "python_interpreter_target": "@@rules_python~~python~python_3_11_host//:python",
  3024. "quiet": true,
  3025. "repo": "rules_python_publish_deps_311",
  3026. "requirement": "rfc3986==2.0.0",
  3027. "sha256": "97aacf9dbd4bfd829baad6e6309fa6573aaf1be3f6fa735c8ab05e46cecb261c",
  3028. "timeout": 600,
  3029. "urls": [
  3030. "https://files.pythonhosted.org/packages/85/40/1520d68bfa07ab5a6f065a186815fb6610c86fe957bc065754e47f7b0840/rfc3986-2.0.0.tar.gz"
  3031. ]
  3032. }
  3033. },
  3034. "rules_python_publish_deps_311_six_py2_none_any_8abb2f1d": {
  3035. "bzlFile": "@@rules_python~//python/pip_install:pip_repository.bzl",
  3036. "ruleClassName": "whl_library",
  3037. "attributes": {
  3038. "dep_template": "@rules_python_publish_deps//{name}:{target}",
  3039. "experimental_target_platforms": [
  3040. "linux_aarch64",
  3041. "linux_arm",
  3042. "linux_ppc",
  3043. "linux_s390x",
  3044. "linux_x86_64",
  3045. "osx_aarch64",
  3046. "osx_x86_64",
  3047. "windows_x86_64"
  3048. ],
  3049. "filename": "six-1.16.0-py2.py3-none-any.whl",
  3050. "isolated": true,
  3051. "python_interpreter_target": "@@rules_python~~python~python_3_11_host//:python",
  3052. "quiet": true,
  3053. "repo": "rules_python_publish_deps_311",
  3054. "requirement": "six==1.16.0",
  3055. "sha256": "8abb2f1d86890a2dfb989f9a77cfcfd3e47c2a354b01111771326f8aa26e0254",
  3056. "timeout": 600,
  3057. "urls": [
  3058. "https://files.pythonhosted.org/packages/d9/5a/e7c31adbe875f2abbb91bd84cf2dc52d792b5a01506781dbcf25c91daf11/six-1.16.0-py2.py3-none-any.whl"
  3059. ]
  3060. }
  3061. },
  3062. "rules_python_publish_deps_311_charset_normalizer_cp311_cp311_manylinux_2_17_aarch64_14e76c0f": {
  3063. "bzlFile": "@@rules_python~//python/pip_install:pip_repository.bzl",
  3064. "ruleClassName": "whl_library",
  3065. "attributes": {
  3066. "dep_template": "@rules_python_publish_deps//{name}:{target}",
  3067. "experimental_target_platforms": [
  3068. "linux_aarch64",
  3069. "linux_arm",
  3070. "linux_ppc",
  3071. "linux_s390x",
  3072. "linux_x86_64",
  3073. "osx_aarch64",
  3074. "osx_x86_64",
  3075. "windows_x86_64"
  3076. ],
  3077. "filename": "charset_normalizer-3.0.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
  3078. "isolated": true,
  3079. "python_interpreter_target": "@@rules_python~~python~python_3_11_host//:python",
  3080. "quiet": true,
  3081. "repo": "rules_python_publish_deps_311",
  3082. "requirement": "charset-normalizer==3.0.1",
  3083. "sha256": "14e76c0f23218b8f46c4d87018ca2e441535aed3632ca134b10239dfb6dadd6b",
  3084. "timeout": 600,
  3085. "urls": [
  3086. "https://files.pythonhosted.org/packages/c0/4d/6b82099e3f25a9ed87431e2f51156c14f3a9ce8fad73880a3856cd95f1d5/charset_normalizer-3.0.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl"
  3087. ]
  3088. }
  3089. },
  3090. "rules_python_publish_deps_311_readme_renderer_sdist_cd653186": {
  3091. "bzlFile": "@@rules_python~//python/pip_install:pip_repository.bzl",
  3092. "ruleClassName": "whl_library",
  3093. "attributes": {
  3094. "dep_template": "@rules_python_publish_deps//{name}:{target}",
  3095. "experimental_target_platforms": [
  3096. "linux_aarch64",
  3097. "linux_arm",
  3098. "linux_ppc",
  3099. "linux_s390x",
  3100. "linux_x86_64",
  3101. "osx_aarch64",
  3102. "osx_x86_64",
  3103. "windows_x86_64"
  3104. ],
  3105. "filename": "readme_renderer-37.3.tar.gz",
  3106. "isolated": true,
  3107. "python_interpreter_target": "@@rules_python~~python~python_3_11_host//:python",
  3108. "quiet": true,
  3109. "repo": "rules_python_publish_deps_311",
  3110. "requirement": "readme-renderer==37.3",
  3111. "sha256": "cd653186dfc73055656f090f227f5cb22a046d7f71a841dfa305f55c9a513273",
  3112. "timeout": 600,
  3113. "urls": [
  3114. "https://files.pythonhosted.org/packages/81/c3/d20152fcd1986117b898f66928938f329d0c91ddc47f081c58e64e0f51dc/readme_renderer-37.3.tar.gz"
  3115. ]
  3116. }
  3117. },
  3118. "rules_python_publish_deps_311_markdown_it_py_py3_none_any_93de681e": {
  3119. "bzlFile": "@@rules_python~//python/pip_install:pip_repository.bzl",
  3120. "ruleClassName": "whl_library",
  3121. "attributes": {
  3122. "dep_template": "@rules_python_publish_deps//{name}:{target}",
  3123. "experimental_target_platforms": [
  3124. "linux_aarch64",
  3125. "linux_arm",
  3126. "linux_ppc",
  3127. "linux_s390x",
  3128. "linux_x86_64",
  3129. "osx_aarch64",
  3130. "osx_x86_64",
  3131. "windows_x86_64"
  3132. ],
  3133. "filename": "markdown_it_py-2.1.0-py3-none-any.whl",
  3134. "isolated": true,
  3135. "python_interpreter_target": "@@rules_python~~python~python_3_11_host//:python",
  3136. "quiet": true,
  3137. "repo": "rules_python_publish_deps_311",
  3138. "requirement": "markdown-it-py==2.1.0",
  3139. "sha256": "93de681e5c021a432c63147656fe21790bc01231e0cd2da73626f1aa3ac0fe27",
  3140. "timeout": 600,
  3141. "urls": [
  3142. "https://files.pythonhosted.org/packages/f9/3f/ecd1b708973b9a3e4574b43cffc1ce8eb98696da34f1a1c44a68c3c0d737/markdown_it_py-2.1.0-py3-none-any.whl"
  3143. ]
  3144. }
  3145. },
  3146. "rules_python_publish_deps_311_six_sdist_1e61c374": {
  3147. "bzlFile": "@@rules_python~//python/pip_install:pip_repository.bzl",
  3148. "ruleClassName": "whl_library",
  3149. "attributes": {
  3150. "dep_template": "@rules_python_publish_deps//{name}:{target}",
  3151. "experimental_target_platforms": [
  3152. "linux_aarch64",
  3153. "linux_arm",
  3154. "linux_ppc",
  3155. "linux_s390x",
  3156. "linux_x86_64",
  3157. "osx_aarch64",
  3158. "osx_x86_64",
  3159. "windows_x86_64"
  3160. ],
  3161. "filename": "six-1.16.0.tar.gz",
  3162. "isolated": true,
  3163. "python_interpreter_target": "@@rules_python~~python~python_3_11_host//:python",
  3164. "quiet": true,
  3165. "repo": "rules_python_publish_deps_311",
  3166. "requirement": "six==1.16.0",
  3167. "sha256": "1e61c37477a1626458e36f7b1d82aa5c9b094fa4802892072e49de9c60c4c926",
  3168. "timeout": 600,
  3169. "urls": [
  3170. "https://files.pythonhosted.org/packages/71/39/171f1c67cd00715f190ba0b100d606d440a28c93c7714febeca8b79af85e/six-1.16.0.tar.gz"
  3171. ]
  3172. }
  3173. },
  3174. "rules_python_publish_deps_311_urllib3_py2_none_any_34b97092": {
  3175. "bzlFile": "@@rules_python~//python/pip_install:pip_repository.bzl",
  3176. "ruleClassName": "whl_library",
  3177. "attributes": {
  3178. "dep_template": "@rules_python_publish_deps//{name}:{target}",
  3179. "experimental_target_platforms": [
  3180. "osx_aarch64",
  3181. "osx_x86_64",
  3182. "windows_x86_64"
  3183. ],
  3184. "filename": "urllib3-1.26.18-py2.py3-none-any.whl",
  3185. "isolated": true,
  3186. "python_interpreter_target": "@@rules_python~~python~python_3_11_host//:python",
  3187. "quiet": true,
  3188. "repo": "rules_python_publish_deps_311",
  3189. "requirement": "urllib3==1.26.18",
  3190. "sha256": "34b97092d7e0a3a8cf7cd10e386f401b3737364026c45e622aa02903dffe0f07",
  3191. "timeout": 600,
  3192. "urls": [
  3193. "https://files.pythonhosted.org/packages/b0/53/aa91e163dcfd1e5b82d8a890ecf13314e3e149c05270cc644581f77f17fd/urllib3-1.26.18-py2.py3-none-any.whl"
  3194. ]
  3195. }
  3196. },
  3197. "rules_python_publish_deps_311_twine_py3_none_any_929bc3c2": {
  3198. "bzlFile": "@@rules_python~//python/pip_install:pip_repository.bzl",
  3199. "ruleClassName": "whl_library",
  3200. "attributes": {
  3201. "dep_template": "@rules_python_publish_deps//{name}:{target}",
  3202. "experimental_target_platforms": [
  3203. "linux_aarch64",
  3204. "linux_arm",
  3205. "linux_ppc",
  3206. "linux_s390x",
  3207. "linux_x86_64",
  3208. "osx_aarch64",
  3209. "osx_x86_64",
  3210. "windows_x86_64"
  3211. ],
  3212. "filename": "twine-4.0.2-py3-none-any.whl",
  3213. "isolated": true,
  3214. "python_interpreter_target": "@@rules_python~~python~python_3_11_host//:python",
  3215. "quiet": true,
  3216. "repo": "rules_python_publish_deps_311",
  3217. "requirement": "twine==4.0.2",
  3218. "sha256": "929bc3c280033347a00f847236564d1c52a3e61b1ac2516c97c48f3ceab756d8",
  3219. "timeout": 600,
  3220. "urls": [
  3221. "https://files.pythonhosted.org/packages/3a/38/a3f27a9e8ce45523d7d1e28c09e9085b61a98dab15d35ec086f36a44b37c/twine-4.0.2-py3-none-any.whl"
  3222. ]
  3223. }
  3224. },
  3225. "rules_python_publish_deps_311_webencodings_sdist_b36a1c24": {
  3226. "bzlFile": "@@rules_python~//python/pip_install:pip_repository.bzl",
  3227. "ruleClassName": "whl_library",
  3228. "attributes": {
  3229. "dep_template": "@rules_python_publish_deps//{name}:{target}",
  3230. "experimental_target_platforms": [
  3231. "linux_aarch64",
  3232. "linux_arm",
  3233. "linux_ppc",
  3234. "linux_s390x",
  3235. "linux_x86_64",
  3236. "osx_aarch64",
  3237. "osx_x86_64",
  3238. "windows_x86_64"
  3239. ],
  3240. "filename": "webencodings-0.5.1.tar.gz",
  3241. "isolated": true,
  3242. "python_interpreter_target": "@@rules_python~~python~python_3_11_host//:python",
  3243. "quiet": true,
  3244. "repo": "rules_python_publish_deps_311",
  3245. "requirement": "webencodings==0.5.1",
  3246. "sha256": "b36a1c245f2d304965eb4e0a82848379241dc04b865afcc4aab16748587e1923",
  3247. "timeout": 600,
  3248. "urls": [
  3249. "https://files.pythonhosted.org/packages/0b/02/ae6ceac1baeda530866a85075641cec12989bd8d31af6d5ab4a3e8c92f47/webencodings-0.5.1.tar.gz"
  3250. ]
  3251. }
  3252. },
  3253. "rules_python_publish_deps_311_charset_normalizer_cp311_cp311_musllinux_1_1_s390x_4a8fcf28": {
  3254. "bzlFile": "@@rules_python~//python/pip_install:pip_repository.bzl",
  3255. "ruleClassName": "whl_library",
  3256. "attributes": {
  3257. "dep_template": "@rules_python_publish_deps//{name}:{target}",
  3258. "experimental_target_platforms": [
  3259. "linux_aarch64",
  3260. "linux_arm",
  3261. "linux_ppc",
  3262. "linux_s390x",
  3263. "linux_x86_64",
  3264. "osx_aarch64",
  3265. "osx_x86_64",
  3266. "windows_x86_64"
  3267. ],
  3268. "filename": "charset_normalizer-3.0.1-cp311-cp311-musllinux_1_1_s390x.whl",
  3269. "isolated": true,
  3270. "python_interpreter_target": "@@rules_python~~python~python_3_11_host//:python",
  3271. "quiet": true,
  3272. "repo": "rules_python_publish_deps_311",
  3273. "requirement": "charset-normalizer==3.0.1",
  3274. "sha256": "4a8fcf28c05c1f6d7e177a9a46a1c52798bfe2ad80681d275b10dcf317deaf0b",
  3275. "timeout": 600,
  3276. "urls": [
  3277. "https://files.pythonhosted.org/packages/80/54/183163f9910936e57a60ee618f4f5cc91c2f8333ee2d4ebc6c50f6c8684d/charset_normalizer-3.0.1-cp311-cp311-musllinux_1_1_s390x.whl"
  3278. ]
  3279. }
  3280. },
  3281. "rules_python_publish_deps_311_markdown_it_py_sdist_cf7e59fe": {
  3282. "bzlFile": "@@rules_python~//python/pip_install:pip_repository.bzl",
  3283. "ruleClassName": "whl_library",
  3284. "attributes": {
  3285. "dep_template": "@rules_python_publish_deps//{name}:{target}",
  3286. "experimental_target_platforms": [
  3287. "linux_aarch64",
  3288. "linux_arm",
  3289. "linux_ppc",
  3290. "linux_s390x",
  3291. "linux_x86_64",
  3292. "osx_aarch64",
  3293. "osx_x86_64",
  3294. "windows_x86_64"
  3295. ],
  3296. "filename": "markdown-it-py-2.1.0.tar.gz",
  3297. "isolated": true,
  3298. "python_interpreter_target": "@@rules_python~~python~python_3_11_host//:python",
  3299. "quiet": true,
  3300. "repo": "rules_python_publish_deps_311",
  3301. "requirement": "markdown-it-py==2.1.0",
  3302. "sha256": "cf7e59fed14b5ae17c0006eff14a2d9a00ed5f3a846148153899a0224e2c07da",
  3303. "timeout": 600,
  3304. "urls": [
  3305. "https://files.pythonhosted.org/packages/33/e9/ac8a93e9eda3891ecdfecf5e01c060bbd2c44d4e3e77efc83b9c7ce9db32/markdown-it-py-2.1.0.tar.gz"
  3306. ]
  3307. }
  3308. },
  3309. "rules_python_publish_deps_311_cryptography_cp37_abi3_manylinux_2_17_x86_64_da46e2b5": {
  3310. "bzlFile": "@@rules_python~//python/pip_install:pip_repository.bzl",
  3311. "ruleClassName": "whl_library",
  3312. "attributes": {
  3313. "dep_template": "@rules_python_publish_deps//{name}:{target}",
  3314. "experimental_target_platforms": [
  3315. "linux_aarch64",
  3316. "linux_arm",
  3317. "linux_ppc",
  3318. "linux_s390x",
  3319. "linux_x86_64"
  3320. ],
  3321. "filename": "cryptography-41.0.6-cp37-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
  3322. "isolated": true,
  3323. "python_interpreter_target": "@@rules_python~~python~python_3_11_host//:python",
  3324. "quiet": true,
  3325. "repo": "rules_python_publish_deps_311",
  3326. "requirement": "cryptography==41.0.6",
  3327. "sha256": "da46e2b5df770070412c46f87bac0849b8d685c5f2679771de277a422c7d0b86",
  3328. "timeout": 600,
  3329. "urls": [
  3330. "https://files.pythonhosted.org/packages/ce/4e/54960380dda23ceb2027500e568aeafd6f06ce031847d7f2d3157f2bd12b/cryptography-41.0.6-cp37-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl"
  3331. ]
  3332. }
  3333. },
  3334. "rules_python_publish_deps_311_charset_normalizer_cp311_cp311_manylinux_2_17_x86_64_79909e27": {
  3335. "bzlFile": "@@rules_python~//python/pip_install:pip_repository.bzl",
  3336. "ruleClassName": "whl_library",
  3337. "attributes": {
  3338. "dep_template": "@rules_python_publish_deps//{name}:{target}",
  3339. "experimental_target_platforms": [
  3340. "linux_aarch64",
  3341. "linux_arm",
  3342. "linux_ppc",
  3343. "linux_s390x",
  3344. "linux_x86_64",
  3345. "osx_aarch64",
  3346. "osx_x86_64",
  3347. "windows_x86_64"
  3348. ],
  3349. "filename": "charset_normalizer-3.0.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
  3350. "isolated": true,
  3351. "python_interpreter_target": "@@rules_python~~python~python_3_11_host//:python",
  3352. "quiet": true,
  3353. "repo": "rules_python_publish_deps_311",
  3354. "requirement": "charset-normalizer==3.0.1",
  3355. "sha256": "79909e27e8e4fcc9db4addea88aa63f6423ebb171db091fb4373e3312cb6d603",
  3356. "timeout": 600,
  3357. "urls": [
  3358. "https://files.pythonhosted.org/packages/d9/7a/60d45c9453212b30eebbf8b5cddbdef330eebddfcf335bce7920c43fb72e/charset_normalizer-3.0.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl"
  3359. ]
  3360. }
  3361. },
  3362. "rules_python_publish_deps_311_idna_sdist_814f528e": {
  3363. "bzlFile": "@@rules_python~//python/pip_install:pip_repository.bzl",
  3364. "ruleClassName": "whl_library",
  3365. "attributes": {
  3366. "dep_template": "@rules_python_publish_deps//{name}:{target}",
  3367. "experimental_target_platforms": [
  3368. "linux_aarch64",
  3369. "linux_arm",
  3370. "linux_ppc",
  3371. "linux_s390x",
  3372. "linux_x86_64",
  3373. "osx_aarch64",
  3374. "osx_x86_64",
  3375. "windows_x86_64"
  3376. ],
  3377. "filename": "idna-3.4.tar.gz",
  3378. "isolated": true,
  3379. "python_interpreter_target": "@@rules_python~~python~python_3_11_host//:python",
  3380. "quiet": true,
  3381. "repo": "rules_python_publish_deps_311",
  3382. "requirement": "idna==3.4",
  3383. "sha256": "814f528e8dead7d329833b91c5faa87d60bf71824cd12a7530b5526063d02cb4",
  3384. "timeout": 600,
  3385. "urls": [
  3386. "https://files.pythonhosted.org/packages/8b/e1/43beb3d38dba6cb420cefa297822eac205a277ab43e5ba5d5c46faf96438/idna-3.4.tar.gz"
  3387. ]
  3388. }
  3389. },
  3390. "rules_python_publish_deps_311_jaraco_classes_py3_none_any_2353de32": {
  3391. "bzlFile": "@@rules_python~//python/pip_install:pip_repository.bzl",
  3392. "ruleClassName": "whl_library",
  3393. "attributes": {
  3394. "dep_template": "@rules_python_publish_deps//{name}:{target}",
  3395. "experimental_target_platforms": [
  3396. "linux_aarch64",
  3397. "linux_arm",
  3398. "linux_ppc",
  3399. "linux_s390x",
  3400. "linux_x86_64",
  3401. "osx_aarch64",
  3402. "osx_x86_64",
  3403. "windows_x86_64"
  3404. ],
  3405. "filename": "jaraco.classes-3.2.3-py3-none-any.whl",
  3406. "isolated": true,
  3407. "python_interpreter_target": "@@rules_python~~python~python_3_11_host//:python",
  3408. "quiet": true,
  3409. "repo": "rules_python_publish_deps_311",
  3410. "requirement": "jaraco-classes==3.2.3",
  3411. "sha256": "2353de3288bc6b82120752201c6b1c1a14b058267fa424ed5ce5984e3b922158",
  3412. "timeout": 600,
  3413. "urls": [
  3414. "https://files.pythonhosted.org/packages/60/28/220d3ae0829171c11e50dded4355d17824d60895285631d7eb9dee0ab5e5/jaraco.classes-3.2.3-py3-none-any.whl"
  3415. ]
  3416. }
  3417. },
  3418. "rules_python_publish_deps_311_pycparser_py2_none_any_8ee45429": {
  3419. "bzlFile": "@@rules_python~//python/pip_install:pip_repository.bzl",
  3420. "ruleClassName": "whl_library",
  3421. "attributes": {
  3422. "dep_template": "@rules_python_publish_deps//{name}:{target}",
  3423. "experimental_target_platforms": [
  3424. "linux_aarch64",
  3425. "linux_arm",
  3426. "linux_ppc",
  3427. "linux_s390x",
  3428. "linux_x86_64"
  3429. ],
  3430. "filename": "pycparser-2.21-py2.py3-none-any.whl",
  3431. "isolated": true,
  3432. "python_interpreter_target": "@@rules_python~~python~python_3_11_host//:python",
  3433. "quiet": true,
  3434. "repo": "rules_python_publish_deps_311",
  3435. "requirement": "pycparser==2.21",
  3436. "sha256": "8ee45429555515e1f6b185e78100aea234072576aa43ab53aefcae078162fca9",
  3437. "timeout": 600,
  3438. "urls": [
  3439. "https://files.pythonhosted.org/packages/62/d5/5f610ebe421e85889f2e55e33b7f9a6795bd982198517d912eb1c76e1a53/pycparser-2.21-py2.py3-none-any.whl"
  3440. ]
  3441. }
  3442. },
  3443. "rules_python_publish_deps_311_cryptography_cp37_abi3_manylinux_2_28_aarch64_ff369dd1": {
  3444. "bzlFile": "@@rules_python~//python/pip_install:pip_repository.bzl",
  3445. "ruleClassName": "whl_library",
  3446. "attributes": {
  3447. "dep_template": "@rules_python_publish_deps//{name}:{target}",
  3448. "experimental_target_platforms": [
  3449. "linux_aarch64",
  3450. "linux_arm",
  3451. "linux_ppc",
  3452. "linux_s390x",
  3453. "linux_x86_64"
  3454. ],
  3455. "filename": "cryptography-41.0.6-cp37-abi3-manylinux_2_28_aarch64.whl",
  3456. "isolated": true,
  3457. "python_interpreter_target": "@@rules_python~~python~python_3_11_host//:python",
  3458. "quiet": true,
  3459. "repo": "rules_python_publish_deps_311",
  3460. "requirement": "cryptography==41.0.6",
  3461. "sha256": "ff369dd19e8fe0528b02e8df9f2aeb2479f89b1270d90f96a63500afe9af5cae",
  3462. "timeout": 600,
  3463. "urls": [
  3464. "https://files.pythonhosted.org/packages/0e/dd/6043bf697d30dc4277cc1608af1145d6076fdd0f00283626bf916d7cde8f/cryptography-41.0.6-cp37-abi3-manylinux_2_28_aarch64.whl"
  3465. ]
  3466. }
  3467. },
  3468. "rules_python_publish_deps_311_rich_sdist_f1a00cdd": {
  3469. "bzlFile": "@@rules_python~//python/pip_install:pip_repository.bzl",
  3470. "ruleClassName": "whl_library",
  3471. "attributes": {
  3472. "dep_template": "@rules_python_publish_deps//{name}:{target}",
  3473. "experimental_target_platforms": [
  3474. "linux_aarch64",
  3475. "linux_arm",
  3476. "linux_ppc",
  3477. "linux_s390x",
  3478. "linux_x86_64",
  3479. "osx_aarch64",
  3480. "osx_x86_64",
  3481. "windows_x86_64"
  3482. ],
  3483. "filename": "rich-13.2.0.tar.gz",
  3484. "isolated": true,
  3485. "python_interpreter_target": "@@rules_python~~python~python_3_11_host//:python",
  3486. "quiet": true,
  3487. "repo": "rules_python_publish_deps_311",
  3488. "requirement": "rich==13.2.0",
  3489. "sha256": "f1a00cdd3eebf999a15d85ec498bfe0b1a77efe9b34f645768a54132ef444ac5",
  3490. "timeout": 600,
  3491. "urls": [
  3492. "https://files.pythonhosted.org/packages/9e/5e/c3dc3ea32e2c14bfe46e48de954dd175bff76bcc549dd300acb9689521ae/rich-13.2.0.tar.gz"
  3493. ]
  3494. }
  3495. },
  3496. "rules_python_publish_deps_311_pywin32_ctypes_sdist_24ffc3b3": {
  3497. "bzlFile": "@@rules_python~//python/pip_install:pip_repository.bzl",
  3498. "ruleClassName": "whl_library",
  3499. "attributes": {
  3500. "dep_template": "@rules_python_publish_deps//{name}:{target}",
  3501. "experimental_target_platforms": [
  3502. "windows_x86_64"
  3503. ],
  3504. "filename": "pywin32-ctypes-0.2.0.tar.gz",
  3505. "isolated": true,
  3506. "python_interpreter_target": "@@rules_python~~python~python_3_11_host//:python",
  3507. "quiet": true,
  3508. "repo": "rules_python_publish_deps_311",
  3509. "requirement": "pywin32-ctypes==0.2.0",
  3510. "sha256": "24ffc3b341d457d48e8922352130cf2644024a4ff09762a2261fd34c36ee5942",
  3511. "timeout": 600,
  3512. "urls": [
  3513. "https://files.pythonhosted.org/packages/7a/7d/0dbc4c99379452a819b0fb075a0ffbb98611df6b6d59f54db67367af5bc0/pywin32-ctypes-0.2.0.tar.gz"
  3514. ]
  3515. }
  3516. },
  3517. "rules_python_publish_deps_311_pkginfo_sdist_8fd5896e": {
  3518. "bzlFile": "@@rules_python~//python/pip_install:pip_repository.bzl",
  3519. "ruleClassName": "whl_library",
  3520. "attributes": {
  3521. "dep_template": "@rules_python_publish_deps//{name}:{target}",
  3522. "experimental_target_platforms": [
  3523. "linux_aarch64",
  3524. "linux_arm",
  3525. "linux_ppc",
  3526. "linux_s390x",
  3527. "linux_x86_64",
  3528. "osx_aarch64",
  3529. "osx_x86_64",
  3530. "windows_x86_64"
  3531. ],
  3532. "filename": "pkginfo-1.9.6.tar.gz",
  3533. "isolated": true,
  3534. "python_interpreter_target": "@@rules_python~~python~python_3_11_host//:python",
  3535. "quiet": true,
  3536. "repo": "rules_python_publish_deps_311",
  3537. "requirement": "pkginfo==1.9.6",
  3538. "sha256": "8fd5896e8718a4372f0ea9cc9d96f6417c9b986e23a4d116dda26b62cc29d046",
  3539. "timeout": 600,
  3540. "urls": [
  3541. "https://files.pythonhosted.org/packages/b4/1c/89b38e431c20d6b2389ed8b3926c2ab72f58944733ba029354c6d9f69129/pkginfo-1.9.6.tar.gz"
  3542. ]
  3543. }
  3544. },
  3545. "rules_python_publish_deps_311_pygments_sdist_b3ed06a9": {
  3546. "bzlFile": "@@rules_python~//python/pip_install:pip_repository.bzl",
  3547. "ruleClassName": "whl_library",
  3548. "attributes": {
  3549. "dep_template": "@rules_python_publish_deps//{name}:{target}",
  3550. "experimental_target_platforms": [
  3551. "linux_aarch64",
  3552. "linux_arm",
  3553. "linux_ppc",
  3554. "linux_s390x",
  3555. "linux_x86_64",
  3556. "osx_aarch64",
  3557. "osx_x86_64",
  3558. "windows_x86_64"
  3559. ],
  3560. "filename": "Pygments-2.14.0.tar.gz",
  3561. "isolated": true,
  3562. "python_interpreter_target": "@@rules_python~~python~python_3_11_host//:python",
  3563. "quiet": true,
  3564. "repo": "rules_python_publish_deps_311",
  3565. "requirement": "pygments==2.14.0",
  3566. "sha256": "b3ed06a9e8ac9a9aae5a6f5dbe78a8a58655d17b43b93c078f094ddc476ae297",
  3567. "timeout": 600,
  3568. "urls": [
  3569. "https://files.pythonhosted.org/packages/da/6a/c427c06913204e24de28de5300d3f0e809933f376e0b7df95194b2bb3f71/Pygments-2.14.0.tar.gz"
  3570. ]
  3571. }
  3572. },
  3573. "rules_python_publish_deps_311_certifi_py3_none_any_92d60375": {
  3574. "bzlFile": "@@rules_python~//python/pip_install:pip_repository.bzl",
  3575. "ruleClassName": "whl_library",
  3576. "attributes": {
  3577. "dep_template": "@rules_python_publish_deps//{name}:{target}",
  3578. "experimental_target_platforms": [
  3579. "osx_aarch64",
  3580. "osx_x86_64",
  3581. "windows_x86_64"
  3582. ],
  3583. "filename": "certifi-2023.7.22-py3-none-any.whl",
  3584. "isolated": true,
  3585. "python_interpreter_target": "@@rules_python~~python~python_3_11_host//:python",
  3586. "quiet": true,
  3587. "repo": "rules_python_publish_deps_311",
  3588. "requirement": "certifi==2023.7.22",
  3589. "sha256": "92d6037539857d8206b8f6ae472e8b77db8058fec5937a1ef3f54304089edbb9",
  3590. "timeout": 600,
  3591. "urls": [
  3592. "https://files.pythonhosted.org/packages/4c/dd/2234eab22353ffc7d94e8d13177aaa050113286e93e7b40eae01fbf7c3d9/certifi-2023.7.22-py3-none-any.whl"
  3593. ]
  3594. }
  3595. },
  3596. "rules_python_publish_deps_311_zipp_py3_none_any_83a28fcb": {
  3597. "bzlFile": "@@rules_python~//python/pip_install:pip_repository.bzl",
  3598. "ruleClassName": "whl_library",
  3599. "attributes": {
  3600. "dep_template": "@rules_python_publish_deps//{name}:{target}",
  3601. "experimental_target_platforms": [
  3602. "linux_aarch64",
  3603. "linux_arm",
  3604. "linux_ppc",
  3605. "linux_s390x",
  3606. "linux_x86_64",
  3607. "osx_aarch64",
  3608. "osx_x86_64",
  3609. "windows_x86_64"
  3610. ],
  3611. "filename": "zipp-3.11.0-py3-none-any.whl",
  3612. "isolated": true,
  3613. "python_interpreter_target": "@@rules_python~~python~python_3_11_host//:python",
  3614. "quiet": true,
  3615. "repo": "rules_python_publish_deps_311",
  3616. "requirement": "zipp==3.11.0",
  3617. "sha256": "83a28fcb75844b5c0cdaf5aa4003c2d728c77e05f5aeabe8e95e56727005fbaa",
  3618. "timeout": 600,
  3619. "urls": [
  3620. "https://files.pythonhosted.org/packages/d8/20/256eb3f3f437c575fb1a2efdce5e801a5ce3162ea8117da96c43e6ee97d8/zipp-3.11.0-py3-none-any.whl"
  3621. ]
  3622. }
  3623. },
  3624. "rules_python_publish_deps_311_charset_normalizer_cp311_cp311_macosx_10_9_x86_64_a8d0fc94": {
  3625. "bzlFile": "@@rules_python~//python/pip_install:pip_repository.bzl",
  3626. "ruleClassName": "whl_library",
  3627. "attributes": {
  3628. "dep_template": "@rules_python_publish_deps//{name}:{target}",
  3629. "experimental_target_platforms": [
  3630. "linux_aarch64",
  3631. "linux_arm",
  3632. "linux_ppc",
  3633. "linux_s390x",
  3634. "linux_x86_64",
  3635. "osx_aarch64",
  3636. "osx_x86_64",
  3637. "windows_x86_64"
  3638. ],
  3639. "filename": "charset_normalizer-3.0.1-cp311-cp311-macosx_10_9_x86_64.whl",
  3640. "isolated": true,
  3641. "python_interpreter_target": "@@rules_python~~python~python_3_11_host//:python",
  3642. "quiet": true,
  3643. "repo": "rules_python_publish_deps_311",
  3644. "requirement": "charset-normalizer==3.0.1",
  3645. "sha256": "a8d0fc946c784ff7f7c3742310cc8a57c5c6dc31631269876a88b809dbeff3d3",
  3646. "timeout": 600,
  3647. "urls": [
  3648. "https://files.pythonhosted.org/packages/90/59/941e2e5ae6828a688c6437ad16e026eb3606d0cfdd13ea5c9090980f3ffd/charset_normalizer-3.0.1-cp311-cp311-macosx_10_9_x86_64.whl"
  3649. ]
  3650. }
  3651. },
  3652. "rules_python_publish_deps_311_docutils_py3_none_any_5e1de4d8": {
  3653. "bzlFile": "@@rules_python~//python/pip_install:pip_repository.bzl",
  3654. "ruleClassName": "whl_library",
  3655. "attributes": {
  3656. "dep_template": "@rules_python_publish_deps//{name}:{target}",
  3657. "experimental_target_platforms": [
  3658. "linux_aarch64",
  3659. "linux_arm",
  3660. "linux_ppc",
  3661. "linux_s390x",
  3662. "linux_x86_64",
  3663. "osx_aarch64",
  3664. "osx_x86_64",
  3665. "windows_x86_64"
  3666. ],
  3667. "filename": "docutils-0.19-py3-none-any.whl",
  3668. "isolated": true,
  3669. "python_interpreter_target": "@@rules_python~~python~python_3_11_host//:python",
  3670. "quiet": true,
  3671. "repo": "rules_python_publish_deps_311",
  3672. "requirement": "docutils==0.19",
  3673. "sha256": "5e1de4d849fee02c63b040a4a3fd567f4ab104defd8a5511fbbc24a8a017efbc",
  3674. "timeout": 600,
  3675. "urls": [
  3676. "https://files.pythonhosted.org/packages/93/69/e391bd51bc08ed9141ecd899a0ddb61ab6465309f1eb470905c0c8868081/docutils-0.19-py3-none-any.whl"
  3677. ]
  3678. }
  3679. },
  3680. "rules_python_publish_deps_311_docutils_sdist_33995a67": {
  3681. "bzlFile": "@@rules_python~//python/pip_install:pip_repository.bzl",
  3682. "ruleClassName": "whl_library",
  3683. "attributes": {
  3684. "dep_template": "@rules_python_publish_deps//{name}:{target}",
  3685. "experimental_target_platforms": [
  3686. "linux_aarch64",
  3687. "linux_arm",
  3688. "linux_ppc",
  3689. "linux_s390x",
  3690. "linux_x86_64",
  3691. "osx_aarch64",
  3692. "osx_x86_64",
  3693. "windows_x86_64"
  3694. ],
  3695. "filename": "docutils-0.19.tar.gz",
  3696. "isolated": true,
  3697. "python_interpreter_target": "@@rules_python~~python~python_3_11_host//:python",
  3698. "quiet": true,
  3699. "repo": "rules_python_publish_deps_311",
  3700. "requirement": "docutils==0.19",
  3701. "sha256": "33995a6753c30b7f577febfc2c50411fec6aac7f7ffeb7c4cfe5991072dcf9e6",
  3702. "timeout": 600,
  3703. "urls": [
  3704. "https://files.pythonhosted.org/packages/6b/5c/330ea8d383eb2ce973df34d1239b3b21e91cd8c865d21ff82902d952f91f/docutils-0.19.tar.gz"
  3705. ]
  3706. }
  3707. },
  3708. "rules_python_publish_deps_311_charset_normalizer_cp311_cp311_macosx_10_9_universal2_0298eaff": {
  3709. "bzlFile": "@@rules_python~//python/pip_install:pip_repository.bzl",
  3710. "ruleClassName": "whl_library",
  3711. "attributes": {
  3712. "dep_template": "@rules_python_publish_deps//{name}:{target}",
  3713. "experimental_target_platforms": [
  3714. "linux_aarch64",
  3715. "linux_arm",
  3716. "linux_ppc",
  3717. "linux_s390x",
  3718. "linux_x86_64",
  3719. "osx_aarch64",
  3720. "osx_x86_64",
  3721. "windows_x86_64"
  3722. ],
  3723. "filename": "charset_normalizer-3.0.1-cp311-cp311-macosx_10_9_universal2.whl",
  3724. "isolated": true,
  3725. "python_interpreter_target": "@@rules_python~~python~python_3_11_host//:python",
  3726. "quiet": true,
  3727. "repo": "rules_python_publish_deps_311",
  3728. "requirement": "charset-normalizer==3.0.1",
  3729. "sha256": "0298eafff88c99982a4cf66ba2efa1128e4ddaca0b05eec4c456bbc7db691d8d",
  3730. "timeout": 600,
  3731. "urls": [
  3732. "https://files.pythonhosted.org/packages/37/00/ca188e0a2b3cd3184cdd2521b8765cf579327d128caa8aedc3dc7614020a/charset_normalizer-3.0.1-cp311-cp311-macosx_10_9_universal2.whl"
  3733. ]
  3734. }
  3735. },
  3736. "rules_python_publish_deps_311_jeepney_sdist_5efe48d2": {
  3737. "bzlFile": "@@rules_python~//python/pip_install:pip_repository.bzl",
  3738. "ruleClassName": "whl_library",
  3739. "attributes": {
  3740. "dep_template": "@rules_python_publish_deps//{name}:{target}",
  3741. "experimental_target_platforms": [
  3742. "linux_aarch64",
  3743. "linux_arm",
  3744. "linux_ppc",
  3745. "linux_s390x",
  3746. "linux_x86_64"
  3747. ],
  3748. "filename": "jeepney-0.8.0.tar.gz",
  3749. "isolated": true,
  3750. "python_interpreter_target": "@@rules_python~~python~python_3_11_host//:python",
  3751. "quiet": true,
  3752. "repo": "rules_python_publish_deps_311",
  3753. "requirement": "jeepney==0.8.0",
  3754. "sha256": "5efe48d255973902f6badc3ce55e2aa6c5c3b3bc642059ef3a91247bcfcc5806",
  3755. "timeout": 600,
  3756. "urls": [
  3757. "https://files.pythonhosted.org/packages/d6/f4/154cf374c2daf2020e05c3c6a03c91348d59b23c5366e968feb198306fdf/jeepney-0.8.0.tar.gz"
  3758. ]
  3759. }
  3760. },
  3761. "rules_python_publish_deps_311_requests_toolbelt_sdist_62e09f7f": {
  3762. "bzlFile": "@@rules_python~//python/pip_install:pip_repository.bzl",
  3763. "ruleClassName": "whl_library",
  3764. "attributes": {
  3765. "dep_template": "@rules_python_publish_deps//{name}:{target}",
  3766. "experimental_target_platforms": [
  3767. "linux_aarch64",
  3768. "linux_arm",
  3769. "linux_ppc",
  3770. "linux_s390x",
  3771. "linux_x86_64",
  3772. "osx_aarch64",
  3773. "osx_x86_64",
  3774. "windows_x86_64"
  3775. ],
  3776. "filename": "requests-toolbelt-0.10.1.tar.gz",
  3777. "isolated": true,
  3778. "python_interpreter_target": "@@rules_python~~python~python_3_11_host//:python",
  3779. "quiet": true,
  3780. "repo": "rules_python_publish_deps_311",
  3781. "requirement": "requests-toolbelt==0.10.1",
  3782. "sha256": "62e09f7ff5ccbda92772a29f394a49c3ad6cb181d568b1337626b2abb628a63d",
  3783. "timeout": 600,
  3784. "urls": [
  3785. "https://files.pythonhosted.org/packages/0c/4c/07f01c6ac44f7784fa399137fbc8d0cdc1b5d35304e8c0f278ad82105b58/requests-toolbelt-0.10.1.tar.gz"
  3786. ]
  3787. }
  3788. },
  3789. "rules_python_publish_deps_311_certifi_sdist_539cc1d1": {
  3790. "bzlFile": "@@rules_python~//python/pip_install:pip_repository.bzl",
  3791. "ruleClassName": "whl_library",
  3792. "attributes": {
  3793. "dep_template": "@rules_python_publish_deps//{name}:{target}",
  3794. "experimental_target_platforms": [
  3795. "osx_aarch64",
  3796. "osx_x86_64",
  3797. "windows_x86_64"
  3798. ],
  3799. "filename": "certifi-2023.7.22.tar.gz",
  3800. "isolated": true,
  3801. "python_interpreter_target": "@@rules_python~~python~python_3_11_host//:python",
  3802. "quiet": true,
  3803. "repo": "rules_python_publish_deps_311",
  3804. "requirement": "certifi==2023.7.22",
  3805. "sha256": "539cc1d13202e33ca466e88b2807e29f4c13049d6d87031a3c110744495cb082",
  3806. "timeout": 600,
  3807. "urls": [
  3808. "https://files.pythonhosted.org/packages/98/98/c2ff18671db109c9f10ed27f5ef610ae05b73bd876664139cf95bd1429aa/certifi-2023.7.22.tar.gz"
  3809. ]
  3810. }
  3811. },
  3812. "rules_python_publish_deps_311_charset_normalizer_cp311_cp311_manylinux_2_17_ppc64le_0c0a5902": {
  3813. "bzlFile": "@@rules_python~//python/pip_install:pip_repository.bzl",
  3814. "ruleClassName": "whl_library",
  3815. "attributes": {
  3816. "dep_template": "@rules_python_publish_deps//{name}:{target}",
  3817. "experimental_target_platforms": [
  3818. "linux_aarch64",
  3819. "linux_arm",
  3820. "linux_ppc",
  3821. "linux_s390x",
  3822. "linux_x86_64",
  3823. "osx_aarch64",
  3824. "osx_x86_64",
  3825. "windows_x86_64"
  3826. ],
  3827. "filename": "charset_normalizer-3.0.1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
  3828. "isolated": true,
  3829. "python_interpreter_target": "@@rules_python~~python~python_3_11_host//:python",
  3830. "quiet": true,
  3831. "repo": "rules_python_publish_deps_311",
  3832. "requirement": "charset-normalizer==3.0.1",
  3833. "sha256": "0c0a590235ccd933d9892c627dec5bc7511ce6ad6c1011fdf5b11363022746c1",
  3834. "timeout": 600,
  3835. "urls": [
  3836. "https://files.pythonhosted.org/packages/12/e5/aa09a1c39c3e444dd223d63e2c816c18ed78d035cff954143b2a539bdc9e/charset_normalizer-3.0.1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl"
  3837. ]
  3838. }
  3839. },
  3840. "rules_python_publish_deps_311_rfc3986_py2_none_any_50b1502b": {
  3841. "bzlFile": "@@rules_python~//python/pip_install:pip_repository.bzl",
  3842. "ruleClassName": "whl_library",
  3843. "attributes": {
  3844. "dep_template": "@rules_python_publish_deps//{name}:{target}",
  3845. "experimental_target_platforms": [
  3846. "linux_aarch64",
  3847. "linux_arm",
  3848. "linux_ppc",
  3849. "linux_s390x",
  3850. "linux_x86_64",
  3851. "osx_aarch64",
  3852. "osx_x86_64",
  3853. "windows_x86_64"
  3854. ],
  3855. "filename": "rfc3986-2.0.0-py2.py3-none-any.whl",
  3856. "isolated": true,
  3857. "python_interpreter_target": "@@rules_python~~python~python_3_11_host//:python",
  3858. "quiet": true,
  3859. "repo": "rules_python_publish_deps_311",
  3860. "requirement": "rfc3986==2.0.0",
  3861. "sha256": "50b1502b60e289cb37883f3dfd34532b8873c7de9f49bb546641ce9cbd256ebd",
  3862. "timeout": 600,
  3863. "urls": [
  3864. "https://files.pythonhosted.org/packages/ff/9a/9afaade874b2fa6c752c36f1548f718b5b83af81ed9b76628329dab81c1b/rfc3986-2.0.0-py2.py3-none-any.whl"
  3865. ]
  3866. }
  3867. },
  3868. "rules_python_publish_deps_311_requests_sdist_98b1b278": {
  3869. "bzlFile": "@@rules_python~//python/pip_install:pip_repository.bzl",
  3870. "ruleClassName": "whl_library",
  3871. "attributes": {
  3872. "dep_template": "@rules_python_publish_deps//{name}:{target}",
  3873. "experimental_target_platforms": [
  3874. "linux_aarch64",
  3875. "linux_arm",
  3876. "linux_ppc",
  3877. "linux_s390x",
  3878. "linux_x86_64",
  3879. "osx_aarch64",
  3880. "osx_x86_64",
  3881. "windows_x86_64"
  3882. ],
  3883. "filename": "requests-2.28.2.tar.gz",
  3884. "isolated": true,
  3885. "python_interpreter_target": "@@rules_python~~python~python_3_11_host//:python",
  3886. "quiet": true,
  3887. "repo": "rules_python_publish_deps_311",
  3888. "requirement": "requests==2.28.2",
  3889. "sha256": "98b1b2782e3c6c4904938b84c0eb932721069dfdb9134313beff7c83c2df24bf",
  3890. "timeout": 600,
  3891. "urls": [
  3892. "https://files.pythonhosted.org/packages/9d/ee/391076f5937f0a8cdf5e53b701ffc91753e87b07d66bae4a09aa671897bf/requests-2.28.2.tar.gz"
  3893. ]
  3894. }
  3895. },
  3896. "rules_python_publish_deps": {
  3897. "bzlFile": "@@rules_python~//python/private/bzlmod:pip_repository.bzl",
  3898. "ruleClassName": "pip_repository",
  3899. "attributes": {
  3900. "repo_name": "rules_python_publish_deps",
  3901. "whl_map": {
  3902. "six": "[{\"config_setting\":\"//_config:is_python_3.11\",\"filename\":\"six-1.16.0-py2.py3-none-any.whl\",\"repo\":\"rules_python_publish_deps_311_six_py2_none_any_8abb2f1d\",\"target_platforms\":null,\"version\":\"3.11\"},{\"config_setting\":\"//_config:is_python_3.11\",\"filename\":\"six-1.16.0.tar.gz\",\"repo\":\"rules_python_publish_deps_311_six_sdist_1e61c374\",\"target_platforms\":null,\"version\":\"3.11\"}]",
  3903. "cffi": "[{\"config_setting\":\"//_config:is_python_3.11\",\"filename\":\"cffi-1.15.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl\",\"repo\":\"rules_python_publish_deps_311_cffi_cp311_cp311_manylinux_2_17_aarch64_3548db28\",\"target_platforms\":null,\"version\":\"3.11\"},{\"config_setting\":\"//_config:is_python_3.11\",\"filename\":\"cffi-1.15.1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl\",\"repo\":\"rules_python_publish_deps_311_cffi_cp311_cp311_manylinux_2_17_ppc64le_91fc98ad\",\"target_platforms\":null,\"version\":\"3.11\"},{\"config_setting\":\"//_config:is_python_3.11\",\"filename\":\"cffi-1.15.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl\",\"repo\":\"rules_python_publish_deps_311_cffi_cp311_cp311_manylinux_2_17_x86_64_94411f22\",\"target_platforms\":null,\"version\":\"3.11\"},{\"config_setting\":\"//_config:is_python_3.11\",\"filename\":\"cffi-1.15.1-cp311-cp311-musllinux_1_1_x86_64.whl\",\"repo\":\"rules_python_publish_deps_311_cffi_cp311_cp311_musllinux_1_1_x86_64_cc4d65ae\",\"target_platforms\":null,\"version\":\"3.11\"},{\"config_setting\":\"//_config:is_python_3.11\",\"filename\":\"cffi-1.15.1.tar.gz\",\"repo\":\"rules_python_publish_deps_311_cffi_sdist_d400bfb9\",\"target_platforms\":null,\"version\":\"3.11\"}]",
  3904. "idna": "[{\"config_setting\":\"//_config:is_python_3.11\",\"filename\":\"idna-3.4-py3-none-any.whl\",\"repo\":\"rules_python_publish_deps_311_idna_py3_none_any_90b77e79\",\"target_platforms\":null,\"version\":\"3.11\"},{\"config_setting\":\"//_config:is_python_3.11\",\"filename\":\"idna-3.4.tar.gz\",\"repo\":\"rules_python_publish_deps_311_idna_sdist_814f528e\",\"target_platforms\":null,\"version\":\"3.11\"}]",
  3905. "rich": "[{\"config_setting\":\"//_config:is_python_3.11\",\"filename\":\"rich-13.2.0-py3-none-any.whl\",\"repo\":\"rules_python_publish_deps_311_rich_py3_none_any_7c963f0d\",\"target_platforms\":null,\"version\":\"3.11\"},{\"config_setting\":\"//_config:is_python_3.11\",\"filename\":\"rich-13.2.0.tar.gz\",\"repo\":\"rules_python_publish_deps_311_rich_sdist_f1a00cdd\",\"target_platforms\":null,\"version\":\"3.11\"}]",
  3906. "zipp": "[{\"config_setting\":\"//_config:is_python_3.11\",\"filename\":\"zipp-3.11.0-py3-none-any.whl\",\"repo\":\"rules_python_publish_deps_311_zipp_py3_none_any_83a28fcb\",\"target_platforms\":null,\"version\":\"3.11\"},{\"config_setting\":\"//_config:is_python_3.11\",\"filename\":\"zipp-3.11.0.tar.gz\",\"repo\":\"rules_python_publish_deps_311_zipp_sdist_a7a22e05\",\"target_platforms\":null,\"version\":\"3.11\"}]",
  3907. "mdurl": "[{\"config_setting\":\"//_config:is_python_3.11\",\"filename\":\"mdurl-0.1.2-py3-none-any.whl\",\"repo\":\"rules_python_publish_deps_311_mdurl_py3_none_any_84008a41\",\"target_platforms\":null,\"version\":\"3.11\"},{\"config_setting\":\"//_config:is_python_3.11\",\"filename\":\"mdurl-0.1.2.tar.gz\",\"repo\":\"rules_python_publish_deps_311_mdurl_sdist_bb413d29\",\"target_platforms\":null,\"version\":\"3.11\"}]",
  3908. "twine": "[{\"config_setting\":\"//_config:is_python_3.11\",\"filename\":\"twine-4.0.2-py3-none-any.whl\",\"repo\":\"rules_python_publish_deps_311_twine_py3_none_any_929bc3c2\",\"target_platforms\":null,\"version\":\"3.11\"},{\"config_setting\":\"//_config:is_python_3.11\",\"filename\":\"twine-4.0.2.tar.gz\",\"repo\":\"rules_python_publish_deps_311_twine_sdist_9e102ef5\",\"target_platforms\":null,\"version\":\"3.11\"}]",
  3909. "bleach": "[{\"config_setting\":\"//_config:is_python_3.11\",\"filename\":\"bleach-6.0.0-py3-none-any.whl\",\"repo\":\"rules_python_publish_deps_311_bleach_py3_none_any_33c16e33\",\"target_platforms\":null,\"version\":\"3.11\"},{\"config_setting\":\"//_config:is_python_3.11\",\"filename\":\"bleach-6.0.0.tar.gz\",\"repo\":\"rules_python_publish_deps_311_bleach_sdist_1a1a85c1\",\"target_platforms\":null,\"version\":\"3.11\"}]",
  3910. "certifi": "[{\"config_setting\":\"//_config:is_python_3.11\",\"filename\":\"certifi-2022.12.7-py3-none-any.whl\",\"repo\":\"rules_python_publish_deps_311_certifi_py3_none_any_4ad3232f\",\"target_platforms\":[\"linux_aarch64\",\"linux_arm\",\"linux_ppc\",\"linux_s390x\",\"linux_x86_64\"],\"version\":\"3.11\"},{\"config_setting\":\"//_config:is_python_3.11\",\"filename\":\"certifi-2022.12.7.tar.gz\",\"repo\":\"rules_python_publish_deps_311_certifi_sdist_35824b4c\",\"target_platforms\":[\"linux_aarch64\",\"linux_arm\",\"linux_ppc\",\"linux_s390x\",\"linux_x86_64\"],\"version\":\"3.11\"},{\"config_setting\":\"//_config:is_python_3.11\",\"filename\":\"certifi-2023.7.22-py3-none-any.whl\",\"repo\":\"rules_python_publish_deps_311_certifi_py3_none_any_92d60375\",\"target_platforms\":[\"osx_aarch64\",\"osx_x86_64\",\"windows_x86_64\"],\"version\":\"3.11\"},{\"config_setting\":\"//_config:is_python_3.11\",\"filename\":\"certifi-2023.7.22.tar.gz\",\"repo\":\"rules_python_publish_deps_311_certifi_sdist_539cc1d1\",\"target_platforms\":[\"osx_aarch64\",\"osx_x86_64\",\"windows_x86_64\"],\"version\":\"3.11\"}]",
  3911. "jeepney": "[{\"config_setting\":\"//_config:is_python_3.11\",\"filename\":\"jeepney-0.8.0-py3-none-any.whl\",\"repo\":\"rules_python_publish_deps_311_jeepney_py3_none_any_c0a454ad\",\"target_platforms\":null,\"version\":\"3.11\"},{\"config_setting\":\"//_config:is_python_3.11\",\"filename\":\"jeepney-0.8.0.tar.gz\",\"repo\":\"rules_python_publish_deps_311_jeepney_sdist_5efe48d2\",\"target_platforms\":null,\"version\":\"3.11\"}]",
  3912. "keyring": "[{\"config_setting\":\"//_config:is_python_3.11\",\"filename\":\"keyring-23.13.1-py3-none-any.whl\",\"repo\":\"rules_python_publish_deps_311_keyring_py3_none_any_771ed2a9\",\"target_platforms\":null,\"version\":\"3.11\"},{\"config_setting\":\"//_config:is_python_3.11\",\"filename\":\"keyring-23.13.1.tar.gz\",\"repo\":\"rules_python_publish_deps_311_keyring_sdist_ba2e15a9\",\"target_platforms\":null,\"version\":\"3.11\"}]",
  3913. "pkginfo": "[{\"config_setting\":\"//_config:is_python_3.11\",\"filename\":\"pkginfo-1.9.6-py3-none-any.whl\",\"repo\":\"rules_python_publish_deps_311_pkginfo_py3_none_any_4b7a555a\",\"target_platforms\":null,\"version\":\"3.11\"},{\"config_setting\":\"//_config:is_python_3.11\",\"filename\":\"pkginfo-1.9.6.tar.gz\",\"repo\":\"rules_python_publish_deps_311_pkginfo_sdist_8fd5896e\",\"target_platforms\":null,\"version\":\"3.11\"}]",
  3914. "rfc3986": "[{\"config_setting\":\"//_config:is_python_3.11\",\"filename\":\"rfc3986-2.0.0-py2.py3-none-any.whl\",\"repo\":\"rules_python_publish_deps_311_rfc3986_py2_none_any_50b1502b\",\"target_platforms\":null,\"version\":\"3.11\"},{\"config_setting\":\"//_config:is_python_3.11\",\"filename\":\"rfc3986-2.0.0.tar.gz\",\"repo\":\"rules_python_publish_deps_311_rfc3986_sdist_97aacf9d\",\"target_platforms\":null,\"version\":\"3.11\"}]",
  3915. "urllib3": "[{\"config_setting\":\"//_config:is_python_3.11\",\"filename\":\"urllib3-1.26.14-py2.py3-none-any.whl\",\"repo\":\"rules_python_publish_deps_311_urllib3_py2_none_any_75edcdc2\",\"target_platforms\":[\"linux_aarch64\",\"linux_arm\",\"linux_ppc\",\"linux_s390x\",\"linux_x86_64\"],\"version\":\"3.11\"},{\"config_setting\":\"//_config:is_python_3.11\",\"filename\":\"urllib3-1.26.14.tar.gz\",\"repo\":\"rules_python_publish_deps_311_urllib3_sdist_076907bf\",\"target_platforms\":[\"linux_aarch64\",\"linux_arm\",\"linux_ppc\",\"linux_s390x\",\"linux_x86_64\"],\"version\":\"3.11\"},{\"config_setting\":\"//_config:is_python_3.11\",\"filename\":\"urllib3-1.26.18-py2.py3-none-any.whl\",\"repo\":\"rules_python_publish_deps_311_urllib3_py2_none_any_34b97092\",\"target_platforms\":[\"osx_aarch64\",\"osx_x86_64\",\"windows_x86_64\"],\"version\":\"3.11\"},{\"config_setting\":\"//_config:is_python_3.11\",\"filename\":\"urllib3-1.26.18.tar.gz\",\"repo\":\"rules_python_publish_deps_311_urllib3_sdist_f8ecc1bb\",\"target_platforms\":[\"osx_aarch64\",\"osx_x86_64\",\"windows_x86_64\"],\"version\":\"3.11\"}]",
  3916. "docutils": "[{\"config_setting\":\"//_config:is_python_3.11\",\"filename\":\"docutils-0.19-py3-none-any.whl\",\"repo\":\"rules_python_publish_deps_311_docutils_py3_none_any_5e1de4d8\",\"target_platforms\":null,\"version\":\"3.11\"},{\"config_setting\":\"//_config:is_python_3.11\",\"filename\":\"docutils-0.19.tar.gz\",\"repo\":\"rules_python_publish_deps_311_docutils_sdist_33995a67\",\"target_platforms\":null,\"version\":\"3.11\"}]",
  3917. "pygments": "[{\"config_setting\":\"//_config:is_python_3.11\",\"filename\":\"Pygments-2.14.0-py3-none-any.whl\",\"repo\":\"rules_python_publish_deps_311_pygments_py3_none_any_fa7bd7bd\",\"target_platforms\":null,\"version\":\"3.11\"},{\"config_setting\":\"//_config:is_python_3.11\",\"filename\":\"Pygments-2.14.0.tar.gz\",\"repo\":\"rules_python_publish_deps_311_pygments_sdist_b3ed06a9\",\"target_platforms\":null,\"version\":\"3.11\"}]",
  3918. "requests": "[{\"config_setting\":\"//_config:is_python_3.11\",\"filename\":\"requests-2.28.2-py3-none-any.whl\",\"repo\":\"rules_python_publish_deps_311_requests_py3_none_any_64299f49\",\"target_platforms\":null,\"version\":\"3.11\"},{\"config_setting\":\"//_config:is_python_3.11\",\"filename\":\"requests-2.28.2.tar.gz\",\"repo\":\"rules_python_publish_deps_311_requests_sdist_98b1b278\",\"target_platforms\":null,\"version\":\"3.11\"}]",
  3919. "pycparser": "[{\"config_setting\":\"//_config:is_python_3.11\",\"filename\":\"pycparser-2.21-py2.py3-none-any.whl\",\"repo\":\"rules_python_publish_deps_311_pycparser_py2_none_any_8ee45429\",\"target_platforms\":null,\"version\":\"3.11\"},{\"config_setting\":\"//_config:is_python_3.11\",\"filename\":\"pycparser-2.21.tar.gz\",\"repo\":\"rules_python_publish_deps_311_pycparser_sdist_e644fdec\",\"target_platforms\":null,\"version\":\"3.11\"}]",
  3920. "cryptography": "[{\"config_setting\":\"//_config:is_python_3.11\",\"filename\":\"cryptography-41.0.6-cp37-abi3-musllinux_1_1_x86_64.whl\",\"repo\":\"rules_python_publish_deps_311_cryptography_cp37_abi3_musllinux_1_1_x86_64_068bc551\",\"target_platforms\":null,\"version\":\"3.11\"},{\"config_setting\":\"//_config:is_python_3.11\",\"filename\":\"cryptography-41.0.6-cp37-abi3-musllinux_1_1_aarch64.whl\",\"repo\":\"rules_python_publish_deps_311_cryptography_cp37_abi3_musllinux_1_1_aarch64_5daeb18e\",\"target_platforms\":null,\"version\":\"3.11\"},{\"config_setting\":\"//_config:is_python_3.11\",\"filename\":\"cryptography-41.0.6-cp37-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.whl\",\"repo\":\"rules_python_publish_deps_311_cryptography_cp37_abi3_manylinux_2_17_aarch64_afda76d8\",\"target_platforms\":null,\"version\":\"3.11\"},{\"config_setting\":\"//_config:is_python_3.11\",\"filename\":\"cryptography-41.0.6-cp37-abi3-manylinux_2_28_x86_64.whl\",\"repo\":\"rules_python_publish_deps_311_cryptography_cp37_abi3_manylinux_2_28_x86_64_b648fe2a\",\"target_platforms\":null,\"version\":\"3.11\"},{\"config_setting\":\"//_config:is_python_3.11\",\"filename\":\"cryptography-41.0.6-cp37-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl\",\"repo\":\"rules_python_publish_deps_311_cryptography_cp37_abi3_manylinux_2_17_x86_64_da46e2b5\",\"target_platforms\":null,\"version\":\"3.11\"},{\"config_setting\":\"//_config:is_python_3.11\",\"filename\":\"cryptography-41.0.6-cp37-abi3-manylinux_2_28_aarch64.whl\",\"repo\":\"rules_python_publish_deps_311_cryptography_cp37_abi3_manylinux_2_28_aarch64_ff369dd1\",\"target_platforms\":null,\"version\":\"3.11\"},{\"config_setting\":\"//_config:is_python_3.11\",\"filename\":\"cryptography-41.0.6.tar.gz\",\"repo\":\"rules_python_publish_deps_311_cryptography_sdist_422e3e31\",\"target_platforms\":null,\"version\":\"3.11\"}]",
  3921. "webencodings": "[{\"config_setting\":\"//_config:is_python_3.11\",\"filename\":\"webencodings-0.5.1-py2.py3-none-any.whl\",\"repo\":\"rules_python_publish_deps_311_webencodings_py2_none_any_a0af1213\",\"target_platforms\":null,\"version\":\"3.11\"},{\"config_setting\":\"//_config:is_python_3.11\",\"filename\":\"webencodings-0.5.1.tar.gz\",\"repo\":\"rules_python_publish_deps_311_webencodings_sdist_b36a1c24\",\"target_platforms\":null,\"version\":\"3.11\"}]",
  3922. "secretstorage": "[{\"config_setting\":\"//_config:is_python_3.11\",\"filename\":\"SecretStorage-3.3.3-py3-none-any.whl\",\"repo\":\"rules_python_publish_deps_311_secretstorage_py3_none_any_f356e662\",\"target_platforms\":null,\"version\":\"3.11\"},{\"config_setting\":\"//_config:is_python_3.11\",\"filename\":\"SecretStorage-3.3.3.tar.gz\",\"repo\":\"rules_python_publish_deps_311_secretstorage_sdist_2403533e\",\"target_platforms\":null,\"version\":\"3.11\"}]",
  3923. "jaraco_classes": "[{\"config_setting\":\"//_config:is_python_3.11\",\"filename\":\"jaraco.classes-3.2.3-py3-none-any.whl\",\"repo\":\"rules_python_publish_deps_311_jaraco_classes_py3_none_any_2353de32\",\"target_platforms\":null,\"version\":\"3.11\"},{\"config_setting\":\"//_config:is_python_3.11\",\"filename\":\"jaraco.classes-3.2.3.tar.gz\",\"repo\":\"rules_python_publish_deps_311_jaraco_classes_sdist_89559fa5\",\"target_platforms\":null,\"version\":\"3.11\"}]",
  3924. "markdown_it_py": "[{\"config_setting\":\"//_config:is_python_3.11\",\"filename\":\"markdown_it_py-2.1.0-py3-none-any.whl\",\"repo\":\"rules_python_publish_deps_311_markdown_it_py_py3_none_any_93de681e\",\"target_platforms\":null,\"version\":\"3.11\"},{\"config_setting\":\"//_config:is_python_3.11\",\"filename\":\"markdown-it-py-2.1.0.tar.gz\",\"repo\":\"rules_python_publish_deps_311_markdown_it_py_sdist_cf7e59fe\",\"target_platforms\":null,\"version\":\"3.11\"}]",
  3925. "more_itertools": "[{\"config_setting\":\"//_config:is_python_3.11\",\"filename\":\"more_itertools-9.0.0-py3-none-any.whl\",\"repo\":\"rules_python_publish_deps_311_more_itertools_py3_none_any_250e83d7\",\"target_platforms\":null,\"version\":\"3.11\"},{\"config_setting\":\"//_config:is_python_3.11\",\"filename\":\"more-itertools-9.0.0.tar.gz\",\"repo\":\"rules_python_publish_deps_311_more_itertools_sdist_5a6257e4\",\"target_platforms\":null,\"version\":\"3.11\"}]",
  3926. "readme_renderer": "[{\"config_setting\":\"//_config:is_python_3.11\",\"filename\":\"readme_renderer-37.3-py3-none-any.whl\",\"repo\":\"rules_python_publish_deps_311_readme_renderer_py3_none_any_f67a16ca\",\"target_platforms\":null,\"version\":\"3.11\"},{\"config_setting\":\"//_config:is_python_3.11\",\"filename\":\"readme_renderer-37.3.tar.gz\",\"repo\":\"rules_python_publish_deps_311_readme_renderer_sdist_cd653186\",\"target_platforms\":null,\"version\":\"3.11\"}]",
  3927. "requests_toolbelt": "[{\"config_setting\":\"//_config:is_python_3.11\",\"filename\":\"requests_toolbelt-0.10.1-py2.py3-none-any.whl\",\"repo\":\"rules_python_publish_deps_311_requests_toolbelt_py2_none_any_18565aa5\",\"target_platforms\":null,\"version\":\"3.11\"},{\"config_setting\":\"//_config:is_python_3.11\",\"filename\":\"requests-toolbelt-0.10.1.tar.gz\",\"repo\":\"rules_python_publish_deps_311_requests_toolbelt_sdist_62e09f7f\",\"target_platforms\":null,\"version\":\"3.11\"}]",
  3928. "charset_normalizer": "[{\"config_setting\":\"//_config:is_python_3.11\",\"filename\":\"charset_normalizer-3.0.1-cp311-cp311-macosx_10_9_universal2.whl\",\"repo\":\"rules_python_publish_deps_311_charset_normalizer_cp311_cp311_macosx_10_9_universal2_0298eaff\",\"target_platforms\":null,\"version\":\"3.11\"},{\"config_setting\":\"//_config:is_python_3.11\",\"filename\":\"charset_normalizer-3.0.1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl\",\"repo\":\"rules_python_publish_deps_311_charset_normalizer_cp311_cp311_manylinux_2_17_ppc64le_0c0a5902\",\"target_platforms\":null,\"version\":\"3.11\"},{\"config_setting\":\"//_config:is_python_3.11\",\"filename\":\"charset_normalizer-3.0.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl\",\"repo\":\"rules_python_publish_deps_311_charset_normalizer_cp311_cp311_manylinux_2_17_aarch64_14e76c0f\",\"target_platforms\":null,\"version\":\"3.11\"},{\"config_setting\":\"//_config:is_python_3.11\",\"filename\":\"charset_normalizer-3.0.1-cp311-cp311-musllinux_1_1_s390x.whl\",\"repo\":\"rules_python_publish_deps_311_charset_normalizer_cp311_cp311_musllinux_1_1_s390x_4a8fcf28\",\"target_platforms\":null,\"version\":\"3.11\"},{\"config_setting\":\"//_config:is_python_3.11\",\"filename\":\"charset_normalizer-3.0.1-cp311-cp311-musllinux_1_1_ppc64le.whl\",\"repo\":\"rules_python_publish_deps_311_charset_normalizer_cp311_cp311_musllinux_1_1_ppc64le_5995f016\",\"target_platforms\":null,\"version\":\"3.11\"},{\"config_setting\":\"//_config:is_python_3.11\",\"filename\":\"charset_normalizer-3.0.1-cp311-cp311-musllinux_1_1_aarch64.whl\",\"repo\":\"rules_python_publish_deps_311_charset_normalizer_cp311_cp311_musllinux_1_1_aarch64_72966d1b\",\"target_platforms\":null,\"version\":\"3.11\"},{\"config_setting\":\"//_config:is_python_3.11\",\"filename\":\"charset_normalizer-3.0.1-cp311-cp311-musllinux_1_1_x86_64.whl\",\"repo\":\"rules_python_publish_deps_311_charset_normalizer_cp311_cp311_musllinux_1_1_x86_64_761e8904\",\"target_platforms\":null,\"version\":\"3.11\"},{\"config_setting\":\"//_config:is_python_3.11\",\"filename\":\"charset_normalizer-3.0.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl\",\"repo\":\"rules_python_publish_deps_311_charset_normalizer_cp311_cp311_manylinux_2_17_x86_64_79909e27\",\"target_platforms\":null,\"version\":\"3.11\"},{\"config_setting\":\"//_config:is_python_3.11\",\"filename\":\"charset_normalizer-3.0.1-py3-none-any.whl\",\"repo\":\"rules_python_publish_deps_311_charset_normalizer_py3_none_any_7e189e2e\",\"target_platforms\":null,\"version\":\"3.11\"},{\"config_setting\":\"//_config:is_python_3.11\",\"filename\":\"charset_normalizer-3.0.1-cp311-cp311-macosx_11_0_arm64.whl\",\"repo\":\"rules_python_publish_deps_311_charset_normalizer_cp311_cp311_macosx_11_0_arm64_87701167\",\"target_platforms\":null,\"version\":\"3.11\"},{\"config_setting\":\"//_config:is_python_3.11\",\"filename\":\"charset_normalizer-3.0.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl\",\"repo\":\"rules_python_publish_deps_311_charset_normalizer_cp311_cp311_manylinux_2_17_s390x_8c7fe7af\",\"target_platforms\":null,\"version\":\"3.11\"},{\"config_setting\":\"//_config:is_python_3.11\",\"filename\":\"charset_normalizer-3.0.1-cp311-cp311-win_amd64.whl\",\"repo\":\"rules_python_publish_deps_311_charset_normalizer_cp311_cp311_win_amd64_9ab77acb\",\"target_platforms\":null,\"version\":\"3.11\"},{\"config_setting\":\"//_config:is_python_3.11\",\"filename\":\"charset_normalizer-3.0.1-cp311-cp311-macosx_10_9_x86_64.whl\",\"repo\":\"rules_python_publish_deps_311_charset_normalizer_cp311_cp311_macosx_10_9_x86_64_a8d0fc94\",\"target_platforms\":null,\"version\":\"3.11\"},{\"config_setting\":\"//_config:is_python_3.11\",\"filename\":\"charset-normalizer-3.0.1.tar.gz\",\"repo\":\"rules_python_publish_deps_311_charset_normalizer_sdist_ebea339a\",\"target_platforms\":null,\"version\":\"3.11\"}]",
  3929. "importlib_metadata": "[{\"config_setting\":\"//_config:is_python_3.11\",\"filename\":\"importlib_metadata-6.0.0-py3-none-any.whl\",\"repo\":\"rules_python_publish_deps_311_importlib_metadata_py3_none_any_7efb448e\",\"target_platforms\":null,\"version\":\"3.11\"},{\"config_setting\":\"//_config:is_python_3.11\",\"filename\":\"importlib_metadata-6.0.0.tar.gz\",\"repo\":\"rules_python_publish_deps_311_importlib_metadata_sdist_e354bede\",\"target_platforms\":null,\"version\":\"3.11\"}]",
  3930. "pywin32_ctypes": "[{\"config_setting\":\"//_config:is_python_3.11\",\"filename\":\"pywin32_ctypes-0.2.0-py2.py3-none-any.whl\",\"repo\":\"rules_python_publish_deps_311_pywin32_ctypes_py2_none_any_9dc2d991\",\"target_platforms\":null,\"version\":\"3.11\"},{\"config_setting\":\"//_config:is_python_3.11\",\"filename\":\"pywin32-ctypes-0.2.0.tar.gz\",\"repo\":\"rules_python_publish_deps_311_pywin32_ctypes_sdist_24ffc3b3\",\"target_platforms\":null,\"version\":\"3.11\"}]"
  3931. },
  3932. "default_version": "3.11",
  3933. "groups": {}
  3934. }
  3935. },
  3936. "rules_python_publish_deps_311_webencodings_py2_none_any_a0af1213": {
  3937. "bzlFile": "@@rules_python~//python/pip_install:pip_repository.bzl",
  3938. "ruleClassName": "whl_library",
  3939. "attributes": {
  3940. "dep_template": "@rules_python_publish_deps//{name}:{target}",
  3941. "experimental_target_platforms": [
  3942. "linux_aarch64",
  3943. "linux_arm",
  3944. "linux_ppc",
  3945. "linux_s390x",
  3946. "linux_x86_64",
  3947. "osx_aarch64",
  3948. "osx_x86_64",
  3949. "windows_x86_64"
  3950. ],
  3951. "filename": "webencodings-0.5.1-py2.py3-none-any.whl",
  3952. "isolated": true,
  3953. "python_interpreter_target": "@@rules_python~~python~python_3_11_host//:python",
  3954. "quiet": true,
  3955. "repo": "rules_python_publish_deps_311",
  3956. "requirement": "webencodings==0.5.1",
  3957. "sha256": "a0af1213f3c2226497a97e2b3aa01a7e4bee4f403f95be16fc9acd2947514a78",
  3958. "timeout": 600,
  3959. "urls": [
  3960. "https://files.pythonhosted.org/packages/f4/24/2a3e3df732393fed8b3ebf2ec078f05546de641fe1b667ee316ec1dcf3b7/webencodings-0.5.1-py2.py3-none-any.whl"
  3961. ]
  3962. }
  3963. },
  3964. "rules_python_publish_deps_311_charset_normalizer_sdist_ebea339a": {
  3965. "bzlFile": "@@rules_python~//python/pip_install:pip_repository.bzl",
  3966. "ruleClassName": "whl_library",
  3967. "attributes": {
  3968. "dep_template": "@rules_python_publish_deps//{name}:{target}",
  3969. "experimental_target_platforms": [
  3970. "linux_aarch64",
  3971. "linux_arm",
  3972. "linux_ppc",
  3973. "linux_s390x",
  3974. "linux_x86_64",
  3975. "osx_aarch64",
  3976. "osx_x86_64",
  3977. "windows_x86_64"
  3978. ],
  3979. "filename": "charset-normalizer-3.0.1.tar.gz",
  3980. "isolated": true,
  3981. "python_interpreter_target": "@@rules_python~~python~python_3_11_host//:python",
  3982. "quiet": true,
  3983. "repo": "rules_python_publish_deps_311",
  3984. "requirement": "charset-normalizer==3.0.1",
  3985. "sha256": "ebea339af930f8ca5d7a699b921106c6e29c617fe9606fa7baa043c1cdae326f",
  3986. "timeout": 600,
  3987. "urls": [
  3988. "https://files.pythonhosted.org/packages/96/d7/1675d9089a1f4677df5eb29c3f8b064aa1e70c1251a0a8a127803158942d/charset-normalizer-3.0.1.tar.gz"
  3989. ]
  3990. }
  3991. },
  3992. "rules_python_publish_deps_311_cryptography_sdist_422e3e31": {
  3993. "bzlFile": "@@rules_python~//python/pip_install:pip_repository.bzl",
  3994. "ruleClassName": "whl_library",
  3995. "attributes": {
  3996. "dep_template": "@rules_python_publish_deps//{name}:{target}",
  3997. "experimental_target_platforms": [
  3998. "linux_aarch64",
  3999. "linux_arm",
  4000. "linux_ppc",
  4001. "linux_s390x",
  4002. "linux_x86_64"
  4003. ],
  4004. "filename": "cryptography-41.0.6.tar.gz",
  4005. "isolated": true,
  4006. "python_interpreter_target": "@@rules_python~~python~python_3_11_host//:python",
  4007. "quiet": true,
  4008. "repo": "rules_python_publish_deps_311",
  4009. "requirement": "cryptography==41.0.6",
  4010. "sha256": "422e3e31d63743855e43e5a6fcc8b4acab860f560f9321b0ee6269cc7ed70cc3",
  4011. "timeout": 600,
  4012. "urls": [
  4013. "https://files.pythonhosted.org/packages/4d/b4/828991d82d3f1b6f21a0f8cfa54337ed33fdb52135f694130060839cfc33/cryptography-41.0.6.tar.gz"
  4014. ]
  4015. }
  4016. },
  4017. "rules_python_publish_deps_311_charset_normalizer_cp311_cp311_musllinux_1_1_aarch64_72966d1b": {
  4018. "bzlFile": "@@rules_python~//python/pip_install:pip_repository.bzl",
  4019. "ruleClassName": "whl_library",
  4020. "attributes": {
  4021. "dep_template": "@rules_python_publish_deps//{name}:{target}",
  4022. "experimental_target_platforms": [
  4023. "linux_aarch64",
  4024. "linux_arm",
  4025. "linux_ppc",
  4026. "linux_s390x",
  4027. "linux_x86_64",
  4028. "osx_aarch64",
  4029. "osx_x86_64",
  4030. "windows_x86_64"
  4031. ],
  4032. "filename": "charset_normalizer-3.0.1-cp311-cp311-musllinux_1_1_aarch64.whl",
  4033. "isolated": true,
  4034. "python_interpreter_target": "@@rules_python~~python~python_3_11_host//:python",
  4035. "quiet": true,
  4036. "repo": "rules_python_publish_deps_311",
  4037. "requirement": "charset-normalizer==3.0.1",
  4038. "sha256": "72966d1b297c741541ca8cf1223ff262a6febe52481af742036a0b296e35fa5a",
  4039. "timeout": 600,
  4040. "urls": [
  4041. "https://files.pythonhosted.org/packages/01/ff/9ee4a44e8c32fe96dfc12daa42f29294608a55eadc88f327939327fb20fb/charset_normalizer-3.0.1-cp311-cp311-musllinux_1_1_aarch64.whl"
  4042. ]
  4043. }
  4044. },
  4045. "rules_python_publish_deps_311_pycparser_sdist_e644fdec": {
  4046. "bzlFile": "@@rules_python~//python/pip_install:pip_repository.bzl",
  4047. "ruleClassName": "whl_library",
  4048. "attributes": {
  4049. "dep_template": "@rules_python_publish_deps//{name}:{target}",
  4050. "experimental_target_platforms": [
  4051. "linux_aarch64",
  4052. "linux_arm",
  4053. "linux_ppc",
  4054. "linux_s390x",
  4055. "linux_x86_64"
  4056. ],
  4057. "filename": "pycparser-2.21.tar.gz",
  4058. "isolated": true,
  4059. "python_interpreter_target": "@@rules_python~~python~python_3_11_host//:python",
  4060. "quiet": true,
  4061. "repo": "rules_python_publish_deps_311",
  4062. "requirement": "pycparser==2.21",
  4063. "sha256": "e644fdec12f7872f86c58ff790da456218b10f863970249516d60a5eaca77206",
  4064. "timeout": 600,
  4065. "urls": [
  4066. "https://files.pythonhosted.org/packages/5e/0b/95d387f5f4433cb0f53ff7ad859bd2c6051051cebbb564f139a999ab46de/pycparser-2.21.tar.gz"
  4067. ]
  4068. }
  4069. },
  4070. "rules_python_publish_deps_311_bleach_sdist_1a1a85c1": {
  4071. "bzlFile": "@@rules_python~//python/pip_install:pip_repository.bzl",
  4072. "ruleClassName": "whl_library",
  4073. "attributes": {
  4074. "dep_template": "@rules_python_publish_deps//{name}:{target}",
  4075. "experimental_target_platforms": [
  4076. "linux_aarch64",
  4077. "linux_arm",
  4078. "linux_ppc",
  4079. "linux_s390x",
  4080. "linux_x86_64",
  4081. "osx_aarch64",
  4082. "osx_x86_64",
  4083. "windows_x86_64"
  4084. ],
  4085. "filename": "bleach-6.0.0.tar.gz",
  4086. "isolated": true,
  4087. "python_interpreter_target": "@@rules_python~~python~python_3_11_host//:python",
  4088. "quiet": true,
  4089. "repo": "rules_python_publish_deps_311",
  4090. "requirement": "bleach==6.0.0",
  4091. "sha256": "1a1a85c1595e07d8db14c5f09f09e6433502c51c595970edc090551f0db99414",
  4092. "timeout": 600,
  4093. "urls": [
  4094. "https://files.pythonhosted.org/packages/7e/e6/d5f220ca638f6a25557a611860482cb6e54b2d97f0332966b1b005742e1f/bleach-6.0.0.tar.gz"
  4095. ]
  4096. }
  4097. },
  4098. "rules_python_publish_deps_311_urllib3_sdist_f8ecc1bb": {
  4099. "bzlFile": "@@rules_python~//python/pip_install:pip_repository.bzl",
  4100. "ruleClassName": "whl_library",
  4101. "attributes": {
  4102. "dep_template": "@rules_python_publish_deps//{name}:{target}",
  4103. "experimental_target_platforms": [
  4104. "osx_aarch64",
  4105. "osx_x86_64",
  4106. "windows_x86_64"
  4107. ],
  4108. "filename": "urllib3-1.26.18.tar.gz",
  4109. "isolated": true,
  4110. "python_interpreter_target": "@@rules_python~~python~python_3_11_host//:python",
  4111. "quiet": true,
  4112. "repo": "rules_python_publish_deps_311",
  4113. "requirement": "urllib3==1.26.18",
  4114. "sha256": "f8ecc1bba5667413457c529ab955bf8c67b45db799d159066261719e328580a0",
  4115. "timeout": 600,
  4116. "urls": [
  4117. "https://files.pythonhosted.org/packages/0c/39/64487bf07df2ed854cc06078c27c0d0abc59bd27b32232876e403c333a08/urllib3-1.26.18.tar.gz"
  4118. ]
  4119. }
  4120. }
  4121. },
  4122. "recordedRepoMappingEntries": [
  4123. [
  4124. "bazel_features~",
  4125. "bazel_features_globals",
  4126. "bazel_features~~version_extension~bazel_features_globals"
  4127. ],
  4128. [
  4129. "bazel_features~",
  4130. "bazel_features_version",
  4131. "bazel_features~~version_extension~bazel_features_version"
  4132. ],
  4133. [
  4134. "rules_python~",
  4135. "bazel_features",
  4136. "bazel_features~"
  4137. ],
  4138. [
  4139. "rules_python~",
  4140. "bazel_skylib",
  4141. "bazel_skylib~"
  4142. ],
  4143. [
  4144. "rules_python~",
  4145. "bazel_tools",
  4146. "bazel_tools"
  4147. ],
  4148. [
  4149. "rules_python~",
  4150. "pypi__build",
  4151. "rules_python~~internal_deps~pypi__build"
  4152. ],
  4153. [
  4154. "rules_python~",
  4155. "pypi__click",
  4156. "rules_python~~internal_deps~pypi__click"
  4157. ],
  4158. [
  4159. "rules_python~",
  4160. "pypi__colorama",
  4161. "rules_python~~internal_deps~pypi__colorama"
  4162. ],
  4163. [
  4164. "rules_python~",
  4165. "pypi__importlib_metadata",
  4166. "rules_python~~internal_deps~pypi__importlib_metadata"
  4167. ],
  4168. [
  4169. "rules_python~",
  4170. "pypi__installer",
  4171. "rules_python~~internal_deps~pypi__installer"
  4172. ],
  4173. [
  4174. "rules_python~",
  4175. "pypi__more_itertools",
  4176. "rules_python~~internal_deps~pypi__more_itertools"
  4177. ],
  4178. [
  4179. "rules_python~",
  4180. "pypi__packaging",
  4181. "rules_python~~internal_deps~pypi__packaging"
  4182. ],
  4183. [
  4184. "rules_python~",
  4185. "pypi__pep517",
  4186. "rules_python~~internal_deps~pypi__pep517"
  4187. ],
  4188. [
  4189. "rules_python~",
  4190. "pypi__pip",
  4191. "rules_python~~internal_deps~pypi__pip"
  4192. ],
  4193. [
  4194. "rules_python~",
  4195. "pypi__pip_tools",
  4196. "rules_python~~internal_deps~pypi__pip_tools"
  4197. ],
  4198. [
  4199. "rules_python~",
  4200. "pypi__pyproject_hooks",
  4201. "rules_python~~internal_deps~pypi__pyproject_hooks"
  4202. ],
  4203. [
  4204. "rules_python~",
  4205. "pypi__setuptools",
  4206. "rules_python~~internal_deps~pypi__setuptools"
  4207. ],
  4208. [
  4209. "rules_python~",
  4210. "pypi__tomli",
  4211. "rules_python~~internal_deps~pypi__tomli"
  4212. ],
  4213. [
  4214. "rules_python~",
  4215. "pypi__wheel",
  4216. "rules_python~~internal_deps~pypi__wheel"
  4217. ],
  4218. [
  4219. "rules_python~",
  4220. "pypi__zipp",
  4221. "rules_python~~internal_deps~pypi__zipp"
  4222. ],
  4223. [
  4224. "rules_python~",
  4225. "pythons_hub",
  4226. "rules_python~~python~pythons_hub"
  4227. ],
  4228. [
  4229. "rules_python~~python~pythons_hub",
  4230. "python_3_10_host",
  4231. "rules_python~~python~python_3_10_host"
  4232. ],
  4233. [
  4234. "rules_python~~python~pythons_hub",
  4235. "python_3_11_host",
  4236. "rules_python~~python~python_3_11_host"
  4237. ],
  4238. [
  4239. "rules_python~~python~pythons_hub",
  4240. "python_3_12_host",
  4241. "rules_python~~python~python_3_12_host"
  4242. ],
  4243. [
  4244. "rules_python~~python~pythons_hub",
  4245. "python_3_8_host",
  4246. "rules_python~~python~python_3_8_host"
  4247. ],
  4248. [
  4249. "rules_python~~python~pythons_hub",
  4250. "python_3_9_host",
  4251. "rules_python~~python~python_3_9_host"
  4252. ]
  4253. ]
  4254. }
  4255. }
  4256. }
  4257. }