MODULE.bazel.lock 225 KB

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