MODULE.bazel.lock 214 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750
  1. {
  2. "lockFileVersion": 16,
  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/20230802.1/MODULE.bazel": "fa92e2eb41a04df73cdabeec37107316f7e5272650f81d6cc096418fe647b915",
  11. "https://bcr.bazel.build/modules/abseil-cpp/20240116.0/MODULE.bazel": "98dc378d64c12a4e4741ad3362f87fb737ee6a0886b2d90c3cdbb4d93ea3e0bf",
  12. "https://bcr.bazel.build/modules/abseil-cpp/20240116.1/MODULE.bazel": "37bcdb4440fbb61df6a1c296ae01b327f19e9bb521f9b8e26ec854b6f97309ed",
  13. "https://bcr.bazel.build/modules/abseil-cpp/20240116.2/MODULE.bazel": "73939767a4686cd9a520d16af5ab440071ed75cec1a876bf2fcfaf1f71987a16",
  14. "https://bcr.bazel.build/modules/abseil-cpp/20240722.0.bcr.2/MODULE.bazel": "c3661b44c9d3f17f0b65ffb544896aaeb89127398ea867537babac18133a002a",
  15. "https://bcr.bazel.build/modules/abseil-cpp/20240722.0.bcr.2/source.json": "464f3012c8f40cd51facbfc6962563971c6bd55f45ba16bd98313f2de73340c5",
  16. "https://bcr.bazel.build/modules/abseil-cpp/20240722.0/MODULE.bazel": "88668a07647adbdc14cb3a7cd116fb23c9dda37a90a1681590b6c9d8339a5b84",
  17. "https://bcr.bazel.build/modules/abseil-py/2.1.0/MODULE.bazel": "5ebe5bf853769c65707e5c28f216798f7a4b1042015e6a36e6d03094d94bec8a",
  18. "https://bcr.bazel.build/modules/abseil-py/2.1.0/source.json": "0e8fc4f088ce07099c1cd6594c20c7ddbb48b4b3c0849b7d94ba94be88ff042b",
  19. "https://bcr.bazel.build/modules/apple_support/1.11.1/MODULE.bazel": "1843d7cd8a58369a444fc6000e7304425fba600ff641592161d9f15b179fb896",
  20. "https://bcr.bazel.build/modules/apple_support/1.13.0/MODULE.bazel": "7c8cdea7e031b7f9f67f0b497adf6d2c6a2675e9304ca93a9af6ed84eef5a524",
  21. "https://bcr.bazel.build/modules/apple_support/1.14.0/MODULE.bazel": "ff6681d5678559b588b5062313e6314be77d560d546e28833e10d6d1b54d18ee",
  22. "https://bcr.bazel.build/modules/apple_support/1.15.1/MODULE.bazel": "a0556fefca0b1bb2de8567b8827518f94db6a6e7e7d632b4c48dc5f865bc7c85",
  23. "https://bcr.bazel.build/modules/apple_support/1.15.1/source.json": "517f2b77430084c541bc9be2db63fdcbb7102938c5f64c17ee60ffda2e5cf07b",
  24. "https://bcr.bazel.build/modules/aspect_bazel_lib/1.31.2/MODULE.bazel": "7bee702b4862612f29333590f4b658a5832d433d6f8e4395f090e8f4e85d442f",
  25. "https://bcr.bazel.build/modules/aspect_bazel_lib/1.38.0/MODULE.bazel": "6307fec451ba9962c1c969eb516ebfe1e46528f7fa92e1c9ac8646bef4cdaa3f",
  26. "https://bcr.bazel.build/modules/aspect_bazel_lib/1.40.3/MODULE.bazel": "668e6bcb4d957fc0e284316dba546b705c8d43c857f87119619ee83c4555b859",
  27. "https://bcr.bazel.build/modules/aspect_rules_js/1.33.1/MODULE.bazel": "db3e7f16e471cf6827059d03af7c21859e7a0d2bc65429a3a11f005d46fc501b",
  28. "https://bcr.bazel.build/modules/aspect_rules_js/1.39.0/MODULE.bazel": "aece421d479e3c31dc3e5f6d49a12acc2700457c03c556650ec7a0ff23fc0d95",
  29. "https://bcr.bazel.build/modules/aspect_rules_lint/0.12.0/MODULE.bazel": "e767c5dbfeb254ec03275a7701b5cfde2c4d2873676804bc7cb27ddff3728fed",
  30. "https://bcr.bazel.build/modules/bazel_features/0.1.0/MODULE.bazel": "47011d645b0f949f42ee67f2e8775188a9cf4a0a1528aa2fa4952f2fd00906fd",
  31. "https://bcr.bazel.build/modules/bazel_features/1.1.1/MODULE.bazel": "27b8c79ef57efe08efccbd9dd6ef70d61b4798320b8d3c134fd571f78963dbcd",
  32. "https://bcr.bazel.build/modules/bazel_features/1.11.0/MODULE.bazel": "f9382337dd5a474c3b7d334c2f83e50b6eaedc284253334cf823044a26de03e8",
  33. "https://bcr.bazel.build/modules/bazel_features/1.15.0/MODULE.bazel": "d38ff6e517149dc509406aca0db3ad1efdd890a85e049585b7234d04238e2a4d",
  34. "https://bcr.bazel.build/modules/bazel_features/1.17.0/MODULE.bazel": "039de32d21b816b47bd42c778e0454217e9c9caac4a3cf8e15c7231ee3ddee4d",
  35. "https://bcr.bazel.build/modules/bazel_features/1.18.0/MODULE.bazel": "1be0ae2557ab3a72a57aeb31b29be347bcdc5d2b1eb1e70f39e3851a7e97041a",
  36. "https://bcr.bazel.build/modules/bazel_features/1.19.0/MODULE.bazel": "59adcdf28230d220f0067b1f435b8537dd033bfff8db21335ef9217919c7fb58",
  37. "https://bcr.bazel.build/modules/bazel_features/1.21.0/MODULE.bazel": "675642261665d8eea09989aa3b8afb5c37627f1be178382c320d1b46afba5e3b",
  38. "https://bcr.bazel.build/modules/bazel_features/1.21.0/source.json": "3e8379efaaef53ce35b7b8ba419df829315a880cb0a030e5bb45c96d6d5ecb5f",
  39. "https://bcr.bazel.build/modules/bazel_features/1.4.1/MODULE.bazel": "e45b6bb2350aff3e442ae1111c555e27eac1d915e77775f6fdc4b351b758b5d7",
  40. "https://bcr.bazel.build/modules/bazel_features/1.9.1/MODULE.bazel": "8f679097876a9b609ad1f60249c49d68bfab783dd9be012faf9d82547b14815a",
  41. "https://bcr.bazel.build/modules/bazel_skylib/1.0.3/MODULE.bazel": "bcb0fd896384802d1ad283b4e4eb4d718eebd8cb820b0a2c3a347fb971afd9d8",
  42. "https://bcr.bazel.build/modules/bazel_skylib/1.1.1/MODULE.bazel": "1add3e7d93ff2e6998f9e118022c84d163917d912f5afafb3058e3d2f1545b5e",
  43. "https://bcr.bazel.build/modules/bazel_skylib/1.2.0/MODULE.bazel": "44fe84260e454ed94ad326352a698422dbe372b21a1ac9f3eab76eb531223686",
  44. "https://bcr.bazel.build/modules/bazel_skylib/1.2.1/MODULE.bazel": "f35baf9da0efe45fa3da1696ae906eea3d615ad41e2e3def4aeb4e8bc0ef9a7a",
  45. "https://bcr.bazel.build/modules/bazel_skylib/1.3.0/MODULE.bazel": "20228b92868bf5cfc41bda7afc8a8ba2a543201851de39d990ec957b513579c5",
  46. "https://bcr.bazel.build/modules/bazel_skylib/1.4.1/MODULE.bazel": "a0dcb779424be33100dcae821e9e27e4f2901d9dfd5333efe5ac6a8d7ab75e1d",
  47. "https://bcr.bazel.build/modules/bazel_skylib/1.4.2/MODULE.bazel": "3bd40978e7a1fac911d5989e6b09d8f64921865a45822d8b09e815eaa726a651",
  48. "https://bcr.bazel.build/modules/bazel_skylib/1.5.0/MODULE.bazel": "32880f5e2945ce6a03d1fbd588e9198c0a959bb42297b2cfaf1685b7bc32e138",
  49. "https://bcr.bazel.build/modules/bazel_skylib/1.6.1/MODULE.bazel": "8fdee2dbaace6c252131c00e1de4b165dc65af02ea278476187765e1a617b917",
  50. "https://bcr.bazel.build/modules/bazel_skylib/1.7.0/MODULE.bazel": "0db596f4563de7938de764cc8deeabec291f55e8ec15299718b93c4423e9796d",
  51. "https://bcr.bazel.build/modules/bazel_skylib/1.7.1/MODULE.bazel": "3120d80c5861aa616222ec015332e5f8d3171e062e3e804a2a0253e1be26e59b",
  52. "https://bcr.bazel.build/modules/bazel_skylib/1.7.1/source.json": "f121b43eeefc7c29efbd51b83d08631e2347297c95aac9764a701f2a6a2bb953",
  53. "https://bcr.bazel.build/modules/boringssl/0.0.0-20240530-2db0eb3/MODULE.bazel": "d0405b762c5e87cd445b7015f2b8da5400ef9a8dbca0bfefa6c1cea79d528a97",
  54. "https://bcr.bazel.build/modules/boringssl/0.0.0-20240530-2db0eb3/source.json": "0d413869349e82e5d679802abe9ce23e0326bbf56daa97ae9e7dbdcec72982fc",
  55. "https://bcr.bazel.build/modules/brotli/1.1.0/MODULE.bazel": "3b5b90488995183419c4b5c9b063a164f6c0bc4d0d6b40550a612a5e860cc0fe",
  56. "https://bcr.bazel.build/modules/brotli/1.1.0/source.json": "098a4fd315527166e8dfe1fd1537c96a737a83764be38fc43f4da231d600f3d0",
  57. "https://bcr.bazel.build/modules/buildozer/7.1.2/MODULE.bazel": "2e8dd40ede9c454042645fd8d8d0cd1527966aa5c919de86661e62953cd73d84",
  58. "https://bcr.bazel.build/modules/buildozer/7.1.2/source.json": "c9028a501d2db85793a6996205c8de120944f50a0d570438fcae0457a5f9d1f8",
  59. "https://bcr.bazel.build/modules/bzip2/1.0.8/MODULE.bazel": "83ee443b286b0b91566e5ee77e74ba6445895f3135467893871560f9e4ebc159",
  60. "https://bcr.bazel.build/modules/bzip2/1.0.8/source.json": "b64f3a2f973749cf5f6ee32b3d804af56a35a746228a7845ed5daa31c8cc8af1",
  61. "https://bcr.bazel.build/modules/fuzztest/20241028.0/MODULE.bazel": "55ccf828e88fb6ef6aa7fc477f7d0d442c5e740f8c7581294862645069b4a88d",
  62. "https://bcr.bazel.build/modules/fuzztest/20241028.0/source.json": "dc9bc5801d78274b062ee1dc1a27a0e1e63f8bd505cd46cc1e914a62c0f5c274",
  63. "https://bcr.bazel.build/modules/gazelle/0.27.0/MODULE.bazel": "3446abd608295de6d90b4a8a118ed64a9ce11dcb3dda2dc3290a22056bd20996",
  64. "https://bcr.bazel.build/modules/gazelle/0.30.0/MODULE.bazel": "f888a1effe338491f35f0e0e85003b47bb9d8295ccba73c37e07702d8d31c65b",
  65. "https://bcr.bazel.build/modules/google_benchmark/1.8.2/MODULE.bazel": "a70cf1bba851000ba93b58ae2f6d76490a9feb74192e57ab8e8ff13c34ec50cb",
  66. "https://bcr.bazel.build/modules/google_benchmark/1.8.3/MODULE.bazel": "2349ac3adb7917fdc4378e85fae533015dae3cb583ad1bd5d2c2185106c7c403",
  67. "https://bcr.bazel.build/modules/google_benchmark/1.8.5/MODULE.bazel": "9ba9b31b984022828a950e3300410977eda2e35df35584c6b0b2d0c2e52766b7",
  68. "https://bcr.bazel.build/modules/google_benchmark/1.8.5/source.json": "2c9c685f9b496f125b9e3a9c696c549d1ed2f33b75830a2fb6ac94fab23c0398",
  69. "https://bcr.bazel.build/modules/googletest/1.11.0/MODULE.bazel": "3a83f095183f66345ca86aa13c58b59f9f94a2f81999c093d4eeaa2d262d12f4",
  70. "https://bcr.bazel.build/modules/googletest/1.13.0/MODULE.bazel": "369533f4a302dc7d9ad1cd9a09a9e820a1d9a4011fad2dfa636b5bb225b9a6c7",
  71. "https://bcr.bazel.build/modules/googletest/1.14.0.bcr.1/MODULE.bazel": "22c31a561553727960057361aa33bf20fb2e98584bc4fec007906e27053f80c6",
  72. "https://bcr.bazel.build/modules/googletest/1.14.0/MODULE.bazel": "cfbcbf3e6eac06ef9d85900f64424708cc08687d1b527f0ef65aa7517af8118f",
  73. "https://bcr.bazel.build/modules/googletest/1.15.2/MODULE.bazel": "6de1edc1d26cafb0ea1a6ab3f4d4192d91a312fd2d360b63adaa213cd00b2108",
  74. "https://bcr.bazel.build/modules/googletest/1.15.2/source.json": "dbdda654dcb3a0d7a8bc5d0ac5fc7e150b58c2a986025ae5bc634bb2cb61f470",
  75. "https://bcr.bazel.build/modules/highwayhash/0.0.0-20240305-5ad3bf8/MODULE.bazel": "5c7f29d5bd70feff14b0f65b39584957e18e4a8d555e5a29a4c36019afbb44b9",
  76. "https://bcr.bazel.build/modules/highwayhash/0.0.0-20240305-5ad3bf8/source.json": "211c0937ef5f537da6c3c135d12e60927c71b380642e207e4a02b86d29c55e85",
  77. "https://bcr.bazel.build/modules/jsoncpp/1.9.5/MODULE.bazel": "31271aedc59e815656f5736f282bb7509a97c7ecb43e927ac1a37966e0578075",
  78. "https://bcr.bazel.build/modules/jsoncpp/1.9.5/source.json": "4108ee5085dd2885a341c7fab149429db457b3169b86eb081fa245eadf69169d",
  79. "https://bcr.bazel.build/modules/lz4/1.9.4/MODULE.bazel": "e3d307b1d354d70f6c809167eafecf5d622c3f27e3971ab7273410f429c7f83a",
  80. "https://bcr.bazel.build/modules/lz4/1.9.4/source.json": "233f0bdfc21f254e3dda14683ddc487ca68c6a3a83b7d5db904c503f85bd089b",
  81. "https://bcr.bazel.build/modules/platforms/0.0.10/MODULE.bazel": "8cb8efaf200bdeb2150d93e162c40f388529a25852b332cec879373771e48ed5",
  82. "https://bcr.bazel.build/modules/platforms/0.0.10/source.json": "f22828ff4cf021a6b577f1bf6341cb9dcd7965092a439f64fc1bb3b7a5ae4bd5",
  83. "https://bcr.bazel.build/modules/platforms/0.0.4/MODULE.bazel": "9b328e31ee156f53f3c416a64f8491f7eb731742655a47c9eec4703a71644aee",
  84. "https://bcr.bazel.build/modules/platforms/0.0.5/MODULE.bazel": "5733b54ea419d5eaf7997054bb55f6a1d0b5ff8aedf0176fef9eea44f3acda37",
  85. "https://bcr.bazel.build/modules/platforms/0.0.6/MODULE.bazel": "ad6eeef431dc52aefd2d77ed20a4b353f8ebf0f4ecdd26a807d2da5aa8cd0615",
  86. "https://bcr.bazel.build/modules/platforms/0.0.7/MODULE.bazel": "72fd4a0ede9ee5c021f6a8dd92b503e089f46c227ba2813ff183b71616034814",
  87. "https://bcr.bazel.build/modules/platforms/0.0.8/MODULE.bazel": "9f142c03e348f6d263719f5074b21ef3adf0b139ee4c5133e2aa35664da9eb2d",
  88. "https://bcr.bazel.build/modules/platforms/0.0.9/MODULE.bazel": "4a87a60c927b56ddd67db50c89acaa62f4ce2a1d2149ccb63ffd871d5ce29ebc",
  89. "https://bcr.bazel.build/modules/protobuf/21.7/MODULE.bazel": "a5a29bb89544f9b97edce05642fac225a808b5b7be74038ea3640fae2f8e66a7",
  90. "https://bcr.bazel.build/modules/protobuf/23.1/MODULE.bazel": "88b393b3eb4101d18129e5db51847cd40a5517a53e81216144a8c32dfeeca52a",
  91. "https://bcr.bazel.build/modules/protobuf/27.0/MODULE.bazel": "7873b60be88844a0a1d8f80b9d5d20cfbd8495a689b8763e76c6372998d3f64c",
  92. "https://bcr.bazel.build/modules/protobuf/27.1/MODULE.bazel": "703a7b614728bb06647f965264967a8ef1c39e09e8f167b3ca0bb1fd80449c0d",
  93. "https://bcr.bazel.build/modules/protobuf/27.5/MODULE.bazel": "1723de82125423bba88590fbbbe7d84792b9de70fa2bd76e9e3d83f9d7f1640b",
  94. "https://bcr.bazel.build/modules/protobuf/28.2/MODULE.bazel": "c0c8e51757df486d0314fa290e174d707bad4a6c2aa5ccb08a4b4abd76a23e90",
  95. "https://bcr.bazel.build/modules/protobuf/29.0-rc2/MODULE.bazel": "6241d35983510143049943fc0d57937937122baf1b287862f9dc8590fc4c37df",
  96. "https://bcr.bazel.build/modules/protobuf/29.0-rc3/MODULE.bazel": "33c2dfa286578573afc55a7acaea3cada4122b9631007c594bf0729f41c8de92",
  97. "https://bcr.bazel.build/modules/protobuf/29.0/MODULE.bazel": "319dc8bf4c679ff87e71b1ccfb5a6e90a6dbc4693501d471f48662ac46d04e4e",
  98. "https://bcr.bazel.build/modules/protobuf/29.0/source.json": "b857f93c796750eef95f0d61ee378f3420d00ee1dd38627b27193aa482f4f981",
  99. "https://bcr.bazel.build/modules/protobuf/3.19.0/MODULE.bazel": "6b5fbb433f760a99a22b18b6850ed5784ef0e9928a72668b66e4d7ccd47db9b0",
  100. "https://bcr.bazel.build/modules/protobuf/3.19.2/MODULE.bazel": "532ffe5f2186b69fdde039efe6df13ba726ff338c6bc82275ad433013fa10573",
  101. "https://bcr.bazel.build/modules/protobuf/3.19.6/MODULE.bazel": "9233edc5e1f2ee276a60de3eaa47ac4132302ef9643238f23128fea53ea12858",
  102. "https://bcr.bazel.build/modules/pybind11_bazel/2.11.1.bzl.1/MODULE.bazel": "1ef2994c097ee88f8f7ae8fbf991aaefb0603b2540fe575eca14943bc9f220a6",
  103. "https://bcr.bazel.build/modules/pybind11_bazel/2.11.1.bzl.3/MODULE.bazel": "a1b973f5bfa6df193ec17010c461494fae18a2b4477ff3dc8086846ca806683d",
  104. "https://bcr.bazel.build/modules/pybind11_bazel/2.11.1/MODULE.bazel": "88af1c246226d87e65be78ed49ecd1e6f5e98648558c14ce99176da041dc378e",
  105. "https://bcr.bazel.build/modules/pybind11_bazel/2.12.0/MODULE.bazel": "e6f4c20442eaa7c90d7190d8dc539d0ab422f95c65a57cc59562170c58ae3d34",
  106. "https://bcr.bazel.build/modules/pybind11_bazel/2.12.0/source.json": "6900fdc8a9e95866b8c0d4ad4aba4d4236317b5c1cd04c502df3f0d33afed680",
  107. "https://bcr.bazel.build/modules/re2/2023-09-01/MODULE.bazel": "cb3d511531b16cfc78a225a9e2136007a48cf8a677e4264baeab57fe78a80206",
  108. "https://bcr.bazel.build/modules/re2/2024-02-01/MODULE.bazel": "5ed922cb8b6c110e30969695e73bd0d3159576bf17ce8ee2443a7d07bf500551",
  109. "https://bcr.bazel.build/modules/re2/2024-04-01/MODULE.bazel": "eb949379b51784dcc859dfa3655b6e46da179837873ee05aaf7f3b811a7a03ac",
  110. "https://bcr.bazel.build/modules/re2/2024-07-02.bcr.1/MODULE.bazel": "b4963dda9b31080be1905ef085ecd7dd6cd47c05c79b9cdf83ade83ab2ab271a",
  111. "https://bcr.bazel.build/modules/re2/2024-07-02.bcr.1/source.json": "2ff292be6ef3340325ce8a045ecc326e92cbfab47c7cbab4bd85d28971b97ac4",
  112. "https://bcr.bazel.build/modules/re2/2024-07-02/MODULE.bazel": "0eadc4395959969297cbcf31a249ff457f2f1d456228c67719480205aa306daa",
  113. "https://bcr.bazel.build/modules/riegeli/0.0.0-20240606-973b6f0/MODULE.bazel": "3e8067b12d3a3bb4bc297b29c66a778af0c1da0cddbfde37d18c077ffc365602",
  114. "https://bcr.bazel.build/modules/riegeli/0.0.0-20240606-973b6f0/source.json": "7383c71350a45496e37b4e55974fb5c9e90ec7397070a4d6fc7c9a00117f95cf",
  115. "https://bcr.bazel.build/modules/rules_android/0.1.1/MODULE.bazel": "48809ab0091b07ad0182defb787c4c5328bd3a278938415c00a7b69b50c4d3a8",
  116. "https://bcr.bazel.build/modules/rules_android/0.1.1/source.json": "e6986b41626ee10bdc864937ffb6d6bf275bb5b9c65120e6137d56e6331f089e",
  117. "https://bcr.bazel.build/modules/rules_bison/0.3/MODULE.bazel": "e97b53b38b480ac8c9d86e64b745929bb152c57115a8c23d21ec1247923472fd",
  118. "https://bcr.bazel.build/modules/rules_bison/0.3/source.json": "1591beee5a8c6e571451c4b57f1ac4fc0990dcd65f7f8de8579c4e90a33d6ef4",
  119. "https://bcr.bazel.build/modules/rules_buf/0.1.1/MODULE.bazel": "6189aec18a4f7caff599ad41b851ab7645d4f1e114aa6431acf9b0666eb92162",
  120. "https://bcr.bazel.build/modules/rules_cc/0.0.1/MODULE.bazel": "cb2aa0747f84c6c3a78dad4e2049c154f08ab9d166b1273835a8174940365647",
  121. "https://bcr.bazel.build/modules/rules_cc/0.0.10/MODULE.bazel": "ec1705118f7eaedd6e118508d3d26deba2a4e76476ada7e0e3965211be012002",
  122. "https://bcr.bazel.build/modules/rules_cc/0.0.13/MODULE.bazel": "0e8529ed7b323dad0775ff924d2ae5af7640b23553dfcd4d34344c7e7a867191",
  123. "https://bcr.bazel.build/modules/rules_cc/0.0.14/MODULE.bazel": "5e343a3aac88b8d7af3b1b6d2093b55c347b8eefc2e7d1442f7a02dc8fea48ac",
  124. "https://bcr.bazel.build/modules/rules_cc/0.0.15/MODULE.bazel": "6704c35f7b4a72502ee81f61bf88706b54f06b3cbe5558ac17e2e14666cd5dcc",
  125. "https://bcr.bazel.build/modules/rules_cc/0.0.16/MODULE.bazel": "7661303b8fc1b4d7f532e54e9d6565771fea666fbdf839e0a86affcd02defe87",
  126. "https://bcr.bazel.build/modules/rules_cc/0.0.2/MODULE.bazel": "6915987c90970493ab97393024c156ea8fb9f3bea953b2f3ec05c34f19b5695c",
  127. "https://bcr.bazel.build/modules/rules_cc/0.0.6/MODULE.bazel": "abf360251023dfe3efcef65ab9d56beefa8394d4176dd29529750e1c57eaa33f",
  128. "https://bcr.bazel.build/modules/rules_cc/0.0.8/MODULE.bazel": "964c85c82cfeb6f3855e6a07054fdb159aced38e99a5eecf7bce9d53990afa3e",
  129. "https://bcr.bazel.build/modules/rules_cc/0.0.9/MODULE.bazel": "836e76439f354b89afe6a911a7adf59a6b2518fafb174483ad78a2a2fde7b1c5",
  130. "https://bcr.bazel.build/modules/rules_cc/0.1.1/MODULE.bazel": "2f0222a6f229f0bf44cd711dc13c858dad98c62d52bd51d8fc3a764a83125513",
  131. "https://bcr.bazel.build/modules/rules_cc/0.1.1/source.json": "d61627377bd7dd1da4652063e368d9366fc9a73920bfa396798ad92172cf645c",
  132. "https://bcr.bazel.build/modules/rules_flex/0.3/MODULE.bazel": "7a8d6cfb459c0368014a8305c406de69d18a3f7d0c1ae45df829af7da6d4c195",
  133. "https://bcr.bazel.build/modules/rules_flex/0.3/source.json": "9423be0e705ebc4bf6027a6c11eefb41cb55cce3f268a4fdaca604dd5cb07fb4",
  134. "https://bcr.bazel.build/modules/rules_foreign_cc/0.10.1/MODULE.bazel": "b9527010e5fef060af92b6724edb3691970a5b1f76f74b21d39f7d433641be60",
  135. "https://bcr.bazel.build/modules/rules_foreign_cc/0.10.1/source.json": "9300e71df0cdde0952f10afff1401fa664e9fc5d9ae6204660ba1b158d90d6a6",
  136. "https://bcr.bazel.build/modules/rules_foreign_cc/0.9.0/MODULE.bazel": "c9e8c682bf75b0e7c704166d79b599f93b72cfca5ad7477df596947891feeef6",
  137. "https://bcr.bazel.build/modules/rules_fuzzing/0.5.2/MODULE.bazel": "40c97d1144356f52905566c55811f13b299453a14ac7769dfba2ac38192337a8",
  138. "https://bcr.bazel.build/modules/rules_fuzzing/0.5.2/source.json": "c8b1e2c717646f1702290959a3302a178fb639d987ab61d548105019f11e527e",
  139. "https://bcr.bazel.build/modules/rules_go/0.33.0/MODULE.bazel": "a2b11b64cd24bf94f57454f53288a5dacfe6cb86453eee7761b7637728c1910c",
  140. "https://bcr.bazel.build/modules/rules_go/0.38.1/MODULE.bazel": "fb8e73dd3b6fc4ff9d260ceacd830114891d49904f5bda1c16bc147bcc254f71",
  141. "https://bcr.bazel.build/modules/rules_go/0.39.1/MODULE.bazel": "d34fb2a249403a5f4339c754f1e63dc9e5ad70b47c5e97faee1441fc6636cd61",
  142. "https://bcr.bazel.build/modules/rules_java/4.0.0/MODULE.bazel": "5a78a7ae82cd1a33cef56dc578c7d2a46ed0dca12643ee45edbb8417899e6f74",
  143. "https://bcr.bazel.build/modules/rules_java/5.3.5/MODULE.bazel": "a4ec4f2db570171e3e5eb753276ee4b389bae16b96207e9d3230895c99644b86",
  144. "https://bcr.bazel.build/modules/rules_java/6.0.0/MODULE.bazel": "8a43b7df601a7ec1af61d79345c17b31ea1fedc6711fd4abfd013ea612978e39",
  145. "https://bcr.bazel.build/modules/rules_java/6.4.0/MODULE.bazel": "e986a9fe25aeaa84ac17ca093ef13a4637f6107375f64667a15999f77db6c8f6",
  146. "https://bcr.bazel.build/modules/rules_java/6.5.2/MODULE.bazel": "1d440d262d0e08453fa0c4d8f699ba81609ed0e9a9a0f02cd10b3e7942e61e31",
  147. "https://bcr.bazel.build/modules/rules_java/7.10.0/MODULE.bazel": "530c3beb3067e870561739f1144329a21c851ff771cd752a49e06e3dc9c2e71a",
  148. "https://bcr.bazel.build/modules/rules_java/7.12.2/MODULE.bazel": "579c505165ee757a4280ef83cda0150eea193eed3bef50b1004ba88b99da6de6",
  149. "https://bcr.bazel.build/modules/rules_java/7.2.0/MODULE.bazel": "06c0334c9be61e6cef2c8c84a7800cef502063269a5af25ceb100b192453d4ab",
  150. "https://bcr.bazel.build/modules/rules_java/7.3.2/MODULE.bazel": "50dece891cfdf1741ea230d001aa9c14398062f2b7c066470accace78e412bc2",
  151. "https://bcr.bazel.build/modules/rules_java/7.6.1/MODULE.bazel": "2f14b7e8a1aa2f67ae92bc69d1ec0fa8d9f827c4e17ff5e5f02e91caa3b2d0fe",
  152. "https://bcr.bazel.build/modules/rules_java/8.3.2/MODULE.bazel": "7336d5511ad5af0b8615fdc7477535a2e4e723a357b6713af439fe8cf0195017",
  153. "https://bcr.bazel.build/modules/rules_java/8.5.1/MODULE.bazel": "d8a9e38cc5228881f7055a6079f6f7821a073df3744d441978e7a43e20226939",
  154. "https://bcr.bazel.build/modules/rules_java/8.6.1/MODULE.bazel": "f4808e2ab5b0197f094cabce9f4b006a27766beb6a9975931da07099560ca9c2",
  155. "https://bcr.bazel.build/modules/rules_java/8.6.1/source.json": "f18d9ad3c4c54945bf422ad584fa6c5ca5b3116ff55a5b1bc77e5c1210be5960",
  156. "https://bcr.bazel.build/modules/rules_jvm_external/4.4.2/MODULE.bazel": "a56b85e418c83eb1839819f0b515c431010160383306d13ec21959ac412d2fe7",
  157. "https://bcr.bazel.build/modules/rules_jvm_external/5.1/MODULE.bazel": "33f6f999e03183f7d088c9be518a63467dfd0be94a11d0055fe2d210f89aa909",
  158. "https://bcr.bazel.build/modules/rules_jvm_external/5.2/MODULE.bazel": "d9351ba35217ad0de03816ef3ed63f89d411349353077348a45348b096615036",
  159. "https://bcr.bazel.build/modules/rules_jvm_external/5.3/MODULE.bazel": "bf93870767689637164657731849fb887ad086739bd5d360d90007a581d5527d",
  160. "https://bcr.bazel.build/modules/rules_jvm_external/6.1/MODULE.bazel": "75b5fec090dbd46cf9b7d8ea08cf84a0472d92ba3585b476f44c326eda8059c4",
  161. "https://bcr.bazel.build/modules/rules_jvm_external/6.3/MODULE.bazel": "c998e060b85f71e00de5ec552019347c8bca255062c990ac02d051bb80a38df0",
  162. "https://bcr.bazel.build/modules/rules_jvm_external/6.3/source.json": "6f5f5a5a4419ae4e37c35a5bb0a6ae657ed40b7abc5a5189111b47fcebe43197",
  163. "https://bcr.bazel.build/modules/rules_kotlin/1.9.0/MODULE.bazel": "ef85697305025e5a61f395d4eaede272a5393cee479ace6686dba707de804d59",
  164. "https://bcr.bazel.build/modules/rules_kotlin/1.9.6/MODULE.bazel": "d269a01a18ee74d0335450b10f62c9ed81f2321d7958a2934e44272fe82dcef3",
  165. "https://bcr.bazel.build/modules/rules_kotlin/1.9.6/source.json": "2faa4794364282db7c06600b7e5e34867a564ae91bda7cae7c29c64e9466b7d5",
  166. "https://bcr.bazel.build/modules/rules_license/0.0.3/MODULE.bazel": "627e9ab0247f7d1e05736b59dbb1b6871373de5ad31c3011880b4133cafd4bd0",
  167. "https://bcr.bazel.build/modules/rules_license/0.0.7/MODULE.bazel": "088fbeb0b6a419005b89cf93fe62d9517c0a2b8bb56af3244af65ecfe37e7d5d",
  168. "https://bcr.bazel.build/modules/rules_license/0.0.8/MODULE.bazel": "5669c6fe49b5134dbf534db681ad3d67a2d49cfc197e4a95f1ca2fd7f3aebe96",
  169. "https://bcr.bazel.build/modules/rules_license/1.0.0/MODULE.bazel": "a7fda60eefdf3d8c827262ba499957e4df06f659330bbe6cdbdb975b768bb65c",
  170. "https://bcr.bazel.build/modules/rules_license/1.0.0/source.json": "a52c89e54cc311196e478f8382df91c15f7a2bfdf4c6cd0e2675cc2ff0b56efb",
  171. "https://bcr.bazel.build/modules/rules_m4/0.2.3/MODULE.bazel": "a201ad119823e1af5024240e1e1ef294425d9be73a698cb41c8450e6c8e107e3",
  172. "https://bcr.bazel.build/modules/rules_m4/0.2.4/MODULE.bazel": "b85a2cdd9b43498e45f65eeb67ef549ade119fac899f2d11937ff42f91fce7d7",
  173. "https://bcr.bazel.build/modules/rules_m4/0.2.4/source.json": "6dd1dfb4c22a6ce5abc856932ca99579310b086586a7de4fea72791137fb7cee",
  174. "https://bcr.bazel.build/modules/rules_nodejs/5.8.2/MODULE.bazel": "6bc03c8f37f69401b888023bf511cb6ee4781433b0cb56236b2e55a21e3a026a",
  175. "https://bcr.bazel.build/modules/rules_pkg/0.7.0/MODULE.bazel": "df99f03fc7934a4737122518bb87e667e62d780b610910f0447665a7e2be62dc",
  176. "https://bcr.bazel.build/modules/rules_pkg/1.0.1/MODULE.bazel": "5b1df97dbc29623bccdf2b0dcd0f5cb08e2f2c9050aab1092fd39a41e82686ff",
  177. "https://bcr.bazel.build/modules/rules_pkg/1.0.1/source.json": "bd82e5d7b9ce2d31e380dd9f50c111d678c3bdaca190cb76b0e1c71b05e1ba8a",
  178. "https://bcr.bazel.build/modules/rules_proto/4.0.0/MODULE.bazel": "a7a7b6ce9bee418c1a760b3d84f83a299ad6952f9903c67f19e4edd964894e06",
  179. "https://bcr.bazel.build/modules/rules_proto/5.3.0-21.7/MODULE.bazel": "e8dff86b0971688790ae75528fe1813f71809b5afd57facb44dad9e8eca631b7",
  180. "https://bcr.bazel.build/modules/rules_proto/6.0.0-rc1/MODULE.bazel": "1e5b502e2e1a9e825eef74476a5a1ee524a92297085015a052510b09a1a09483",
  181. "https://bcr.bazel.build/modules/rules_proto/6.0.2/MODULE.bazel": "ce916b775a62b90b61888052a416ccdda405212b6aaeb39522f7dc53431a5e73",
  182. "https://bcr.bazel.build/modules/rules_proto/7.0.2/MODULE.bazel": "bf81793bd6d2ad89a37a40693e56c61b0ee30f7a7fdbaf3eabbf5f39de47dea2",
  183. "https://bcr.bazel.build/modules/rules_proto/7.0.2/source.json": "1e5e7260ae32ef4f2b52fd1d0de8d03b606a44c91b694d2f1afb1d3b28a48ce1",
  184. "https://bcr.bazel.build/modules/rules_python/0.10.2/MODULE.bazel": "cc82bc96f2997baa545ab3ce73f196d040ffb8756fd2d66125a530031cd90e5f",
  185. "https://bcr.bazel.build/modules/rules_python/0.20.0/MODULE.bazel": "bfe14d17f20e3fe900b9588f526f52c967a6f281e47a1d6b988679bd15082286",
  186. "https://bcr.bazel.build/modules/rules_python/0.23.1/MODULE.bazel": "49ffccf0511cb8414de28321f5fcf2a31312b47c40cc21577144b7447f2bf300",
  187. "https://bcr.bazel.build/modules/rules_python/0.25.0/MODULE.bazel": "72f1506841c920a1afec76975b35312410eea3aa7b63267436bfb1dd91d2d382",
  188. "https://bcr.bazel.build/modules/rules_python/0.28.0/MODULE.bazel": "cba2573d870babc976664a912539b320cbaa7114cd3e8f053c720171cde331ed",
  189. "https://bcr.bazel.build/modules/rules_python/0.29.0/MODULE.bazel": "2ac8cd70524b4b9ec49a0b8284c79e4cd86199296f82f6e0d5da3f783d660c82",
  190. "https://bcr.bazel.build/modules/rules_python/0.31.0/MODULE.bazel": "93a43dc47ee570e6ec9f5779b2e64c1476a6ce921c48cc9a1678a91dd5f8fd58",
  191. "https://bcr.bazel.build/modules/rules_python/0.33.2/MODULE.bazel": "3e036c4ad8d804a4dad897d333d8dce200d943df4827cb849840055be8d2e937",
  192. "https://bcr.bazel.build/modules/rules_python/0.4.0/MODULE.bazel": "9208ee05fd48bf09ac60ed269791cf17fb343db56c8226a720fbb1cdf467166c",
  193. "https://bcr.bazel.build/modules/rules_python/0.40.0/MODULE.bazel": "9d1a3cd88ed7d8e39583d9ffe56ae8a244f67783ae89b60caafc9f5cf318ada7",
  194. "https://bcr.bazel.build/modules/rules_python/1.0.0/MODULE.bazel": "898a3d999c22caa585eb062b600f88654bf92efb204fa346fb55f6f8edffca43",
  195. "https://bcr.bazel.build/modules/rules_python/1.0.0/source.json": "b0162a65c6312e45e7912e39abd1a7f8856c2c7e41ecc9b6dc688a6f6400a917",
  196. "https://bcr.bazel.build/modules/rules_rust/0.45.1/MODULE.bazel": "a69d0db3a958fab2c6520961e1b2287afcc8b36690fd31bbc4f6f7391397150d",
  197. "https://bcr.bazel.build/modules/rules_shell/0.2.0/MODULE.bazel": "fda8a652ab3c7d8fee214de05e7a9916d8b28082234e8d2c0094505c5268ed3c",
  198. "https://bcr.bazel.build/modules/rules_shell/0.2.0/source.json": "7f27af3c28037d9701487c4744b5448d26537cc66cdef0d8df7ae85411f8de95",
  199. "https://bcr.bazel.build/modules/snappy/1.2.0/MODULE.bazel": "cc7a727b46089c7fdae0ede21b1fd65bdb14d01823da118ef5c48044f40b6b27",
  200. "https://bcr.bazel.build/modules/snappy/1.2.0/source.json": "17f5527e15d30a9d9eebf79ed73b280b56cac44f8c8fea696666d99943f84c33",
  201. "https://bcr.bazel.build/modules/stardoc/0.5.0/MODULE.bazel": "f9f1f46ba8d9c3362648eea571c6f9100680efc44913618811b58cc9c02cd678",
  202. "https://bcr.bazel.build/modules/stardoc/0.5.1/MODULE.bazel": "1a05d92974d0c122f5ccf09291442580317cdd859f07a8655f1db9a60374f9f8",
  203. "https://bcr.bazel.build/modules/stardoc/0.5.3/MODULE.bazel": "c7f6948dae6999bf0db32c1858ae345f112cacf98f174c7a8bb707e41b974f1c",
  204. "https://bcr.bazel.build/modules/stardoc/0.5.4/MODULE.bazel": "6569966df04610b8520957cb8e97cf2e9faac2c0309657c537ab51c16c18a2a4",
  205. "https://bcr.bazel.build/modules/stardoc/0.5.6/MODULE.bazel": "c43dabc564990eeab55e25ed61c07a1aadafe9ece96a4efabb3f8bf9063b71ef",
  206. "https://bcr.bazel.build/modules/stardoc/0.7.0/MODULE.bazel": "05e3d6d30c099b6770e97da986c53bd31844d7f13d41412480ea265ac9e8079c",
  207. "https://bcr.bazel.build/modules/stardoc/0.7.1/MODULE.bazel": "3548faea4ee5dda5580f9af150e79d0f6aea934fc60c1cc50f4efdd9420759e7",
  208. "https://bcr.bazel.build/modules/stardoc/0.7.2/MODULE.bazel": "fc152419aa2ea0f51c29583fab1e8c99ddefd5b3778421845606ee628629e0e5",
  209. "https://bcr.bazel.build/modules/stardoc/0.7.2/source.json": "58b029e5e901d6802967754adf0a9056747e8176f017cfe3607c0851f4d42216",
  210. "https://bcr.bazel.build/modules/tree-sitter-bazel/0.24.4/MODULE.bazel": "5f23d216376ea547e4b8f8819c201e70c59010ca2badd2a89a226b03e048b847",
  211. "https://bcr.bazel.build/modules/tree-sitter-bazel/0.24.4/source.json": "0ad3631cf2c38fb32445968acbc800f5bcff3503f7ca136c0b2d2c7b7d06a60c",
  212. "https://bcr.bazel.build/modules/upb/0.0.0-20220923-a547704/MODULE.bazel": "7298990c00040a0e2f121f6c32544bab27d4452f80d9ce51349b1a28f3005c43",
  213. "https://bcr.bazel.build/modules/upb/0.0.0-20230516-61a97ef/MODULE.bazel": "c0df5e35ad55e264160417fd0875932ee3c9dda63d9fccace35ac62f45e1b6f9",
  214. "https://bcr.bazel.build/modules/xz/5.4.5.bcr.1/MODULE.bazel": "c037f75fa1b7e1ff15fbd15d807a8ce545e9b02f02df0a9777aa9aa7d8b268bb",
  215. "https://bcr.bazel.build/modules/xz/5.4.5.bcr.1/source.json": "766f28499a16fa9ed8dc94382d50e80ceda0d0ab80b79b7b104a67074ab10e1f",
  216. "https://bcr.bazel.build/modules/zlib/1.2.11/MODULE.bazel": "07b389abc85fdbca459b69e2ec656ae5622873af3f845e1c9d80fe179f3effa0",
  217. "https://bcr.bazel.build/modules/zlib/1.2.12/MODULE.bazel": "3b1a8834ada2a883674be8cbd36ede1b6ec481477ada359cd2d3ddc562340b27",
  218. "https://bcr.bazel.build/modules/zlib/1.2.13/MODULE.bazel": "aa6deb1b83c18ffecd940c4119aff9567cd0a671d7bba756741cb2ef043a29d5",
  219. "https://bcr.bazel.build/modules/zlib/1.3.1.bcr.3/MODULE.bazel": "af322bc08976524477c79d1e45e241b6efbeb918c497e8840b8ab116802dda79",
  220. "https://bcr.bazel.build/modules/zlib/1.3.1.bcr.4/MODULE.bazel": "fc880fa3bd9c5299be64b712fbc60a1978ea9ce0a9f74f6bbd0b61c12db1aee6",
  221. "https://bcr.bazel.build/modules/zlib/1.3.1.bcr.4/source.json": "cc6da591fc55c263981d7ba2c0b56131e544cadfc00f93b14483415130a0df88",
  222. "https://bcr.bazel.build/modules/zlib/1.3.1/MODULE.bazel": "751c9940dcfe869f5f7274e1295422a34623555916eb98c174c1e945594bf198",
  223. "https://bcr.bazel.build/modules/zstd/1.5.6/MODULE.bazel": "471ebe7d3cdd8c6469390fcf623eb4779ff55fbee0a87f1dc57a1def468b96d4",
  224. "https://bcr.bazel.build/modules/zstd/1.5.6/source.json": "02010c3333fc89b44fe861db049968decb6e688411f7f9d4f6791d74f9adfb51"
  225. },
  226. "selectedYankedVersions": {},
  227. "moduleExtensions": {
  228. "//bazel/cc_toolchains:clang_configuration.bzl%clang_toolchain_extension": {
  229. "general": {
  230. "bzlTransitiveDigest": "YfAlFgFWuxAcofKFZTG3JR3DeQD3yED9F1mzTVz6xoA=",
  231. "usagesDigest": "lTxkeAFhR0iBEa3dg5hWvtd2HFCr5zCJx/fl27A+IKA=",
  232. "recordedFileInputs": {},
  233. "recordedDirentsInputs": {},
  234. "envVariables": {},
  235. "generatedRepoSpecs": {
  236. "bazel_cc_toolchain": {
  237. "repoRuleId": "@@//bazel/cc_toolchains:clang_configuration.bzl%configure_clang_toolchain",
  238. "attributes": {}
  239. }
  240. },
  241. "recordedRepoMappingEntries": []
  242. }
  243. },
  244. "//bazel/llvm_project:llvm_project.bzl%llvm_project": {
  245. "general": {
  246. "bzlTransitiveDigest": "awu5+A/1VFbOFMHwkt2jUPmLUYgrfqabMpZ9jBdqtN0=",
  247. "usagesDigest": "uwwVdRj/NhFVoOIaadPP393kgC/Uu3/nTX9ln69oWp4=",
  248. "recordedFileInputs": {},
  249. "recordedDirentsInputs": {},
  250. "envVariables": {},
  251. "generatedRepoSpecs": {
  252. "llvm-project": {
  253. "repoRuleId": "@@+_repo_rules+llvm-raw//utils/bazel:configure.bzl%llvm_configure",
  254. "attributes": {
  255. "targets": [
  256. "AArch64",
  257. "X86"
  258. ]
  259. }
  260. }
  261. },
  262. "recordedRepoMappingEntries": [
  263. [
  264. "",
  265. "llvm-raw",
  266. "+_repo_rules+llvm-raw"
  267. ]
  268. ]
  269. }
  270. },
  271. "@@apple_support+//crosstool:setup.bzl%apple_cc_configure_extension": {
  272. "general": {
  273. "bzlTransitiveDigest": "E970FlMbwpgJPdPUQzatKh6BMfeE0ZpWABvwshh7Tmg=",
  274. "usagesDigest": "aYRVMk+1OupIp+5hdBlpzT36qgd6ntgSxYTzMLW5K4U=",
  275. "recordedFileInputs": {},
  276. "recordedDirentsInputs": {},
  277. "envVariables": {},
  278. "generatedRepoSpecs": {
  279. "local_config_apple_cc_toolchains": {
  280. "repoRuleId": "@@apple_support+//crosstool:setup.bzl%_apple_cc_autoconf_toolchains",
  281. "attributes": {}
  282. },
  283. "local_config_apple_cc": {
  284. "repoRuleId": "@@apple_support+//crosstool:setup.bzl%_apple_cc_autoconf",
  285. "attributes": {}
  286. }
  287. },
  288. "recordedRepoMappingEntries": [
  289. [
  290. "apple_support+",
  291. "bazel_tools",
  292. "bazel_tools"
  293. ],
  294. [
  295. "bazel_tools",
  296. "rules_cc",
  297. "rules_cc+"
  298. ]
  299. ]
  300. }
  301. },
  302. "@@hedron_compile_commands+//:workspace_setup.bzl%hedron_compile_commands_extension": {
  303. "general": {
  304. "bzlTransitiveDigest": "7Ey+orEPG9KH85wB77is9jsTlAqjXehBmrGP1vKxaCk=",
  305. "usagesDigest": "CbJ2MjubH36j9xaONhhASfhodhpi5fzvuyg/IW2f7Ds=",
  306. "recordedFileInputs": {},
  307. "recordedDirentsInputs": {},
  308. "envVariables": {},
  309. "generatedRepoSpecs": {},
  310. "recordedRepoMappingEntries": [
  311. [
  312. "hedron_compile_commands+",
  313. "bazel_tools",
  314. "bazel_tools"
  315. ]
  316. ]
  317. }
  318. },
  319. "@@hedron_compile_commands+//:workspace_setup_transitive.bzl%hedron_compile_commands_extension": {
  320. "general": {
  321. "bzlTransitiveDigest": "IfDf0vEa2jjQ11RNpUM0u4xftPXIs+pyM8IMVkRqVMk=",
  322. "usagesDigest": "yxZQbFglJyjpn7JZ9mhIc3EhLzZivlbs6wiHWOKJ/UA=",
  323. "recordedFileInputs": {},
  324. "recordedDirentsInputs": {},
  325. "envVariables": {},
  326. "generatedRepoSpecs": {},
  327. "recordedRepoMappingEntries": []
  328. }
  329. },
  330. "@@hedron_compile_commands+//:workspace_setup_transitive_transitive.bzl%hedron_compile_commands_extension": {
  331. "general": {
  332. "bzlTransitiveDigest": "1p58k3o2Jgjt/pBE7cb8WmmkplrSguIKma/h32x7X10=",
  333. "usagesDigest": "GkOuy/k8wz0dbKMeEJFKEJB3CWkMZt3DYcPgj4lALkI=",
  334. "recordedFileInputs": {},
  335. "recordedDirentsInputs": {},
  336. "envVariables": {},
  337. "generatedRepoSpecs": {},
  338. "recordedRepoMappingEntries": []
  339. }
  340. },
  341. "@@hedron_compile_commands+//:workspace_setup_transitive_transitive_transitive.bzl%hedron_compile_commands_extension": {
  342. "general": {
  343. "bzlTransitiveDigest": "arNWX4EleUjJxqkM5nCRTj+ce05Zz1gSdGH1DCKOoLs=",
  344. "usagesDigest": "WZExKK/BI4lqpUZfPpv4YARDE1Y7igQB+wYGKvNoCKs=",
  345. "recordedFileInputs": {},
  346. "recordedDirentsInputs": {},
  347. "envVariables": {},
  348. "generatedRepoSpecs": {},
  349. "recordedRepoMappingEntries": []
  350. }
  351. },
  352. "@@platforms//host:extension.bzl%host_platform": {
  353. "general": {
  354. "bzlTransitiveDigest": "xelQcPZH8+tmuOHVjL9vDxMnnQNMlwj0SlvgoqBkm4U=",
  355. "usagesDigest": "SeQiIN/f8/Qt9vYQk7qcXp4I4wJeEC0RnQDiaaJ4tb8=",
  356. "recordedFileInputs": {},
  357. "recordedDirentsInputs": {},
  358. "envVariables": {},
  359. "generatedRepoSpecs": {
  360. "host_platform": {
  361. "repoRuleId": "@@platforms//host:extension.bzl%host_platform_repo",
  362. "attributes": {}
  363. }
  364. },
  365. "recordedRepoMappingEntries": []
  366. }
  367. },
  368. "@@pybind11_bazel+//:internal_configure.bzl%internal_configure_extension": {
  369. "general": {
  370. "bzlTransitiveDigest": "yA4GkX1zdUTOXU4qKsh/YkjZKHAWkG8Fd7adNeGwiRc=",
  371. "usagesDigest": "D1r3lfzMuUBFxgG8V6o0bQTLMk3GkaGOaPzw53wrwyw=",
  372. "recordedFileInputs": {
  373. "@@pybind11_bazel+//MODULE.bazel": "e6f4c20442eaa7c90d7190d8dc539d0ab422f95c65a57cc59562170c58ae3d34"
  374. },
  375. "recordedDirentsInputs": {},
  376. "envVariables": {},
  377. "generatedRepoSpecs": {
  378. "pybind11": {
  379. "repoRuleId": "@@bazel_tools//tools/build_defs/repo:http.bzl%http_archive",
  380. "attributes": {
  381. "build_file": "@@pybind11_bazel+//:pybind11-BUILD.bazel",
  382. "strip_prefix": "pybind11-2.12.0",
  383. "urls": [
  384. "https://github.com/pybind/pybind11/archive/v2.12.0.zip"
  385. ]
  386. }
  387. }
  388. },
  389. "recordedRepoMappingEntries": [
  390. [
  391. "pybind11_bazel+",
  392. "bazel_tools",
  393. "bazel_tools"
  394. ]
  395. ]
  396. }
  397. },
  398. "@@rules_bison+//bison/internal:default_toolchain_ext.bzl%default_toolchain_ext": {
  399. "general": {
  400. "bzlTransitiveDigest": "fC2PZWa9iRTczsCGfxD/IZ5MHIUk3AZppzMAtwvkQg0=",
  401. "usagesDigest": "F6iOzarqqxHPgWL0vGHHCtGkhAdKJRxFsYP22/w9ooA=",
  402. "recordedFileInputs": {},
  403. "recordedDirentsInputs": {},
  404. "envVariables": {},
  405. "generatedRepoSpecs": {
  406. "bison_v3.3.2": {
  407. "repoRuleId": "@@rules_bison+//bison/rules:bison_repository.bzl%bison_repository",
  408. "attributes": {
  409. "version": "3.3.2"
  410. }
  411. },
  412. "bison": {
  413. "repoRuleId": "@@rules_bison+//bison/rules:bison_toolchain_repository.bzl%bison_toolchain_repository",
  414. "attributes": {
  415. "bison_repository": "@bison_v3.3.2"
  416. }
  417. }
  418. },
  419. "moduleExtensionMetadata": {
  420. "explicitRootModuleDirectDeps": [
  421. "bison"
  422. ],
  423. "explicitRootModuleDirectDevDeps": [],
  424. "useAllRepos": "NO",
  425. "reproducible": false
  426. },
  427. "recordedRepoMappingEntries": []
  428. }
  429. },
  430. "@@rules_flex+//flex/internal:default_toolchain_ext.bzl%default_toolchain_ext": {
  431. "general": {
  432. "bzlTransitiveDigest": "fn+aX2vKsiaNLj3QtNfsRcI8fiATDtxAayRTJFGJkNI=",
  433. "usagesDigest": "9Mwa5JH4OZNGGuGHLAumE/EVv4MctGhhwfPwWcwhSL4=",
  434. "recordedFileInputs": {},
  435. "recordedDirentsInputs": {},
  436. "envVariables": {},
  437. "generatedRepoSpecs": {
  438. "flex_v2.6.4": {
  439. "repoRuleId": "@@rules_flex+//flex/rules:flex_repository.bzl%flex_repository",
  440. "attributes": {
  441. "version": "2.6.4"
  442. }
  443. },
  444. "flex": {
  445. "repoRuleId": "@@rules_flex+//flex/rules:flex_toolchain_repository.bzl%flex_toolchain_repository",
  446. "attributes": {
  447. "flex_repository": "@flex_v2.6.4"
  448. }
  449. }
  450. },
  451. "moduleExtensionMetadata": {
  452. "explicitRootModuleDirectDeps": [
  453. "flex"
  454. ],
  455. "explicitRootModuleDirectDevDeps": [],
  456. "useAllRepos": "NO",
  457. "reproducible": false
  458. },
  459. "recordedRepoMappingEntries": []
  460. }
  461. },
  462. "@@rules_foreign_cc+//foreign_cc:extensions.bzl%tools": {
  463. "general": {
  464. "bzlTransitiveDigest": "FApcIcVN43WOEs7g8eg7Cy1hrfRbVNEoUu8IiF+8WOc=",
  465. "usagesDigest": "9LXdVp01HkdYQT8gYPjYLO6VLVJHo9uFfxWaU1ymiRE=",
  466. "recordedFileInputs": {},
  467. "recordedDirentsInputs": {},
  468. "envVariables": {},
  469. "generatedRepoSpecs": {
  470. "rules_foreign_cc_framework_toolchain_linux": {
  471. "repoRuleId": "@@rules_foreign_cc+//foreign_cc/private/framework:toolchain.bzl%framework_toolchain_repository",
  472. "attributes": {
  473. "commands_src": "@rules_foreign_cc//foreign_cc/private/framework/toolchains:linux_commands.bzl",
  474. "exec_compatible_with": [
  475. "@platforms//os:linux"
  476. ]
  477. }
  478. },
  479. "rules_foreign_cc_framework_toolchain_freebsd": {
  480. "repoRuleId": "@@rules_foreign_cc+//foreign_cc/private/framework:toolchain.bzl%framework_toolchain_repository",
  481. "attributes": {
  482. "commands_src": "@rules_foreign_cc//foreign_cc/private/framework/toolchains:freebsd_commands.bzl",
  483. "exec_compatible_with": [
  484. "@platforms//os:freebsd"
  485. ]
  486. }
  487. },
  488. "rules_foreign_cc_framework_toolchain_windows": {
  489. "repoRuleId": "@@rules_foreign_cc+//foreign_cc/private/framework:toolchain.bzl%framework_toolchain_repository",
  490. "attributes": {
  491. "commands_src": "@rules_foreign_cc//foreign_cc/private/framework/toolchains:windows_commands.bzl",
  492. "exec_compatible_with": [
  493. "@platforms//os:windows"
  494. ]
  495. }
  496. },
  497. "rules_foreign_cc_framework_toolchain_macos": {
  498. "repoRuleId": "@@rules_foreign_cc+//foreign_cc/private/framework:toolchain.bzl%framework_toolchain_repository",
  499. "attributes": {
  500. "commands_src": "@rules_foreign_cc//foreign_cc/private/framework/toolchains:macos_commands.bzl",
  501. "exec_compatible_with": [
  502. "@platforms//os:macos"
  503. ]
  504. }
  505. },
  506. "rules_foreign_cc_framework_toolchains": {
  507. "repoRuleId": "@@rules_foreign_cc+//foreign_cc/private/framework:toolchain.bzl%framework_toolchain_repository_hub",
  508. "attributes": {}
  509. },
  510. "cmake_src": {
  511. "repoRuleId": "@@bazel_tools//tools/build_defs/repo:http.bzl%http_archive",
  512. "attributes": {
  513. "build_file_content": "filegroup(\n name = \"all_srcs\",\n srcs = glob([\"**\"]),\n visibility = [\"//visibility:public\"],\n)\n",
  514. "sha256": "f316b40053466f9a416adf981efda41b160ca859e97f6a484b447ea299ff26aa",
  515. "strip_prefix": "cmake-3.23.2",
  516. "urls": [
  517. "https://github.com/Kitware/CMake/releases/download/v3.23.2/cmake-3.23.2.tar.gz"
  518. ]
  519. }
  520. },
  521. "gnumake_src": {
  522. "repoRuleId": "@@bazel_tools//tools/build_defs/repo:http.bzl%http_archive",
  523. "attributes": {
  524. "build_file_content": "filegroup(\n name = \"all_srcs\",\n srcs = glob([\"**\"]),\n visibility = [\"//visibility:public\"],\n)\n",
  525. "sha256": "581f4d4e872da74b3941c874215898a7d35802f03732bdccee1d4a7979105d18",
  526. "strip_prefix": "make-4.4",
  527. "urls": [
  528. "https://mirror.bazel.build/ftpmirror.gnu.org/gnu/make/make-4.4.tar.gz",
  529. "http://ftpmirror.gnu.org/gnu/make/make-4.4.tar.gz"
  530. ]
  531. }
  532. },
  533. "ninja_build_src": {
  534. "repoRuleId": "@@bazel_tools//tools/build_defs/repo:http.bzl%http_archive",
  535. "attributes": {
  536. "build_file_content": "filegroup(\n name = \"all_srcs\",\n srcs = glob([\"**\"]),\n visibility = [\"//visibility:public\"],\n)\n",
  537. "sha256": "31747ae633213f1eda3842686f83c2aa1412e0f5691d1c14dbbcc67fe7400cea",
  538. "strip_prefix": "ninja-1.11.1",
  539. "urls": [
  540. "https://github.com/ninja-build/ninja/archive/v1.11.1.tar.gz"
  541. ]
  542. }
  543. },
  544. "meson_src": {
  545. "repoRuleId": "@@bazel_tools//tools/build_defs/repo:http.bzl%http_archive",
  546. "attributes": {
  547. "build_file_content": "exports_files([\"meson.py\"])\n\nfilegroup(\n name = \"runtime\",\n srcs = glob([\"mesonbuild/**\"]),\n visibility = [\"//visibility:public\"],\n)\n",
  548. "strip_prefix": "meson-1.1.1",
  549. "url": "https://github.com/mesonbuild/meson/releases/download/1.1.1/meson-1.1.1.tar.gz"
  550. }
  551. },
  552. "glib_dev": {
  553. "repoRuleId": "@@bazel_tools//tools/build_defs/repo:http.bzl%http_archive",
  554. "attributes": {
  555. "build_file_content": "\nload(\"@rules_cc//cc:defs.bzl\", \"cc_library\")\n\ncc_import(\n name = \"glib_dev\",\n hdrs = glob([\"include/**\"]),\n shared_library = \"@glib_runtime//:bin/libglib-2.0-0.dll\",\n visibility = [\"//visibility:public\"],\n)\n ",
  556. "sha256": "bdf18506df304d38be98a4b3f18055b8b8cca81beabecad0eece6ce95319c369",
  557. "urls": [
  558. "https://download.gnome.org/binaries/win64/glib/2.26/glib-dev_2.26.1-1_win64.zip"
  559. ]
  560. }
  561. },
  562. "glib_src": {
  563. "repoRuleId": "@@bazel_tools//tools/build_defs/repo:http.bzl%http_archive",
  564. "attributes": {
  565. "build_file_content": "\ncc_import(\n name = \"msvc_hdr\",\n hdrs = [\"msvc_recommended_pragmas.h\"],\n visibility = [\"//visibility:public\"],\n)\n ",
  566. "sha256": "bc96f63112823b7d6c9f06572d2ad626ddac7eb452c04d762592197f6e07898e",
  567. "strip_prefix": "glib-2.26.1",
  568. "urls": [
  569. "https://download.gnome.org/sources/glib/2.26/glib-2.26.1.tar.gz"
  570. ]
  571. }
  572. },
  573. "glib_runtime": {
  574. "repoRuleId": "@@bazel_tools//tools/build_defs/repo:http.bzl%http_archive",
  575. "attributes": {
  576. "build_file_content": "\nexports_files(\n [\n \"bin/libgio-2.0-0.dll\",\n \"bin/libglib-2.0-0.dll\",\n \"bin/libgmodule-2.0-0.dll\",\n \"bin/libgobject-2.0-0.dll\",\n \"bin/libgthread-2.0-0.dll\",\n ],\n visibility = [\"//visibility:public\"],\n)\n ",
  577. "sha256": "88d857087e86f16a9be651ee7021880b3f7ba050d34a1ed9f06113b8799cb973",
  578. "urls": [
  579. "https://download.gnome.org/binaries/win64/glib/2.26/glib_2.26.1-1_win64.zip"
  580. ]
  581. }
  582. },
  583. "gettext_runtime": {
  584. "repoRuleId": "@@bazel_tools//tools/build_defs/repo:http.bzl%http_archive",
  585. "attributes": {
  586. "build_file_content": "\ncc_import(\n name = \"gettext_runtime\",\n shared_library = \"bin/libintl-8.dll\",\n visibility = [\"//visibility:public\"],\n)\n ",
  587. "sha256": "1f4269c0e021076d60a54e98da6f978a3195013f6de21674ba0edbc339c5b079",
  588. "urls": [
  589. "https://download.gnome.org/binaries/win64/dependencies/gettext-runtime_0.18.1.1-2_win64.zip"
  590. ]
  591. }
  592. },
  593. "pkgconfig_src": {
  594. "repoRuleId": "@@bazel_tools//tools/build_defs/repo:http.bzl%http_archive",
  595. "attributes": {
  596. "build_file_content": "filegroup(\n name = \"all_srcs\",\n srcs = glob([\"**\"]),\n visibility = [\"//visibility:public\"],\n)\n",
  597. "sha256": "6fc69c01688c9458a57eb9a1664c9aba372ccda420a02bf4429fe610e7e7d591",
  598. "strip_prefix": "pkg-config-0.29.2",
  599. "patches": [
  600. "@@rules_foreign_cc+//toolchains:pkgconfig-detectenv.patch",
  601. "@@rules_foreign_cc+//toolchains:pkgconfig-makefile-vc.patch"
  602. ],
  603. "urls": [
  604. "https://pkgconfig.freedesktop.org/releases/pkg-config-0.29.2.tar.gz"
  605. ]
  606. }
  607. },
  608. "bazel_skylib": {
  609. "repoRuleId": "@@bazel_tools//tools/build_defs/repo:http.bzl%http_archive",
  610. "attributes": {
  611. "urls": [
  612. "https://mirror.bazel.build/github.com/bazelbuild/bazel-skylib/releases/download/1.2.1/bazel-skylib-1.2.1.tar.gz",
  613. "https://github.com/bazelbuild/bazel-skylib/releases/download/1.2.1/bazel-skylib-1.2.1.tar.gz"
  614. ],
  615. "sha256": "f7be3474d42aae265405a592bb7da8e171919d74c16f082a5457840f06054728"
  616. }
  617. },
  618. "rules_python": {
  619. "repoRuleId": "@@bazel_tools//tools/build_defs/repo:http.bzl%http_archive",
  620. "attributes": {
  621. "sha256": "84aec9e21cc56fbc7f1335035a71c850d1b9b5cc6ff497306f84cced9a769841",
  622. "strip_prefix": "rules_python-0.23.1",
  623. "url": "https://github.com/bazelbuild/rules_python/archive/refs/tags/0.23.1.tar.gz"
  624. }
  625. },
  626. "cmake-3.23.2-linux-aarch64": {
  627. "repoRuleId": "@@bazel_tools//tools/build_defs/repo:http.bzl%http_archive",
  628. "attributes": {
  629. "urls": [
  630. "https://github.com/Kitware/CMake/releases/download/v3.23.2/cmake-3.23.2-linux-aarch64.tar.gz"
  631. ],
  632. "sha256": "f2654bf780b53f170bbbec44d8ac67d401d24788e590faa53036a89476efa91e",
  633. "strip_prefix": "cmake-3.23.2-linux-aarch64",
  634. "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"
  635. }
  636. },
  637. "cmake-3.23.2-linux-x86_64": {
  638. "repoRuleId": "@@bazel_tools//tools/build_defs/repo:http.bzl%http_archive",
  639. "attributes": {
  640. "urls": [
  641. "https://github.com/Kitware/CMake/releases/download/v3.23.2/cmake-3.23.2-linux-x86_64.tar.gz"
  642. ],
  643. "sha256": "aaced6f745b86ce853661a595bdac6c5314a60f8181b6912a0a4920acfa32708",
  644. "strip_prefix": "cmake-3.23.2-linux-x86_64",
  645. "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"
  646. }
  647. },
  648. "cmake-3.23.2-macos-universal": {
  649. "repoRuleId": "@@bazel_tools//tools/build_defs/repo:http.bzl%http_archive",
  650. "attributes": {
  651. "urls": [
  652. "https://github.com/Kitware/CMake/releases/download/v3.23.2/cmake-3.23.2-macos-universal.tar.gz"
  653. ],
  654. "sha256": "853a0f9af148c5ef47282ffffee06c4c9f257be2635936755f39ca13c3286c88",
  655. "strip_prefix": "cmake-3.23.2-macos-universal/CMake.app/Contents",
  656. "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"
  657. }
  658. },
  659. "cmake-3.23.2-windows-i386": {
  660. "repoRuleId": "@@bazel_tools//tools/build_defs/repo:http.bzl%http_archive",
  661. "attributes": {
  662. "urls": [
  663. "https://github.com/Kitware/CMake/releases/download/v3.23.2/cmake-3.23.2-windows-i386.zip"
  664. ],
  665. "sha256": "6a4fcd6a2315b93cb23c93507efccacc30c449c2bf98f14d6032bb226c582e07",
  666. "strip_prefix": "cmake-3.23.2-windows-i386",
  667. "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"
  668. }
  669. },
  670. "cmake-3.23.2-windows-x86_64": {
  671. "repoRuleId": "@@bazel_tools//tools/build_defs/repo:http.bzl%http_archive",
  672. "attributes": {
  673. "urls": [
  674. "https://github.com/Kitware/CMake/releases/download/v3.23.2/cmake-3.23.2-windows-x86_64.zip"
  675. ],
  676. "sha256": "2329387f3166b84c25091c86389fb891193967740c9bcf01e7f6d3306f7ffda0",
  677. "strip_prefix": "cmake-3.23.2-windows-x86_64",
  678. "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"
  679. }
  680. },
  681. "cmake_3.23.2_toolchains": {
  682. "repoRuleId": "@@rules_foreign_cc+//toolchains:prebuilt_toolchains_repository.bzl%prebuilt_toolchains_repository",
  683. "attributes": {
  684. "repos": {
  685. "cmake-3.23.2-linux-aarch64": [
  686. "@platforms//cpu:aarch64",
  687. "@platforms//os:linux"
  688. ],
  689. "cmake-3.23.2-linux-x86_64": [
  690. "@platforms//cpu:x86_64",
  691. "@platforms//os:linux"
  692. ],
  693. "cmake-3.23.2-macos-universal": [
  694. "@platforms//os:macos"
  695. ],
  696. "cmake-3.23.2-windows-i386": [
  697. "@platforms//cpu:x86_32",
  698. "@platforms//os:windows"
  699. ],
  700. "cmake-3.23.2-windows-x86_64": [
  701. "@platforms//cpu:x86_64",
  702. "@platforms//os:windows"
  703. ]
  704. },
  705. "tool": "cmake"
  706. }
  707. },
  708. "ninja_1.11.1_linux": {
  709. "repoRuleId": "@@bazel_tools//tools/build_defs/repo:http.bzl%http_archive",
  710. "attributes": {
  711. "urls": [
  712. "https://github.com/ninja-build/ninja/releases/download/v1.11.1/ninja-linux.zip"
  713. ],
  714. "sha256": "b901ba96e486dce377f9a070ed4ef3f79deb45f4ffe2938f8e7ddc69cfb3df77",
  715. "strip_prefix": "",
  716. "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"
  717. }
  718. },
  719. "ninja_1.11.1_mac": {
  720. "repoRuleId": "@@bazel_tools//tools/build_defs/repo:http.bzl%http_archive",
  721. "attributes": {
  722. "urls": [
  723. "https://github.com/ninja-build/ninja/releases/download/v1.11.1/ninja-mac.zip"
  724. ],
  725. "sha256": "482ecb23c59ae3d4f158029112de172dd96bb0e97549c4b1ca32d8fad11f873e",
  726. "strip_prefix": "",
  727. "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"
  728. }
  729. },
  730. "ninja_1.11.1_win": {
  731. "repoRuleId": "@@bazel_tools//tools/build_defs/repo:http.bzl%http_archive",
  732. "attributes": {
  733. "urls": [
  734. "https://github.com/ninja-build/ninja/releases/download/v1.11.1/ninja-win.zip"
  735. ],
  736. "sha256": "524b344a1a9a55005eaf868d991e090ab8ce07fa109f1820d40e74642e289abc",
  737. "strip_prefix": "",
  738. "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"
  739. }
  740. },
  741. "ninja_1.11.1_toolchains": {
  742. "repoRuleId": "@@rules_foreign_cc+//toolchains:prebuilt_toolchains_repository.bzl%prebuilt_toolchains_repository",
  743. "attributes": {
  744. "repos": {
  745. "ninja_1.11.1_linux": [
  746. "@platforms//cpu:x86_64",
  747. "@platforms//os:linux"
  748. ],
  749. "ninja_1.11.1_mac": [
  750. "@platforms//cpu:x86_64",
  751. "@platforms//os:macos"
  752. ],
  753. "ninja_1.11.1_win": [
  754. "@platforms//cpu:x86_64",
  755. "@platforms//os:windows"
  756. ]
  757. },
  758. "tool": "ninja"
  759. }
  760. }
  761. },
  762. "recordedRepoMappingEntries": [
  763. [
  764. "rules_foreign_cc+",
  765. "bazel_tools",
  766. "bazel_tools"
  767. ],
  768. [
  769. "rules_foreign_cc+",
  770. "rules_foreign_cc",
  771. "rules_foreign_cc+"
  772. ]
  773. ]
  774. }
  775. },
  776. "@@rules_fuzzing+//fuzzing/private:extensions.bzl%non_module_dependencies": {
  777. "general": {
  778. "bzlTransitiveDigest": "mGiTB79hRNjmeDTQdzkpCHyzXhErMbufeAmySBt7s5s=",
  779. "usagesDigest": "wy6ISK6UOcBEjj/mvJ/S3WeXoO67X+1llb9yPyFtPgc=",
  780. "recordedFileInputs": {},
  781. "recordedDirentsInputs": {},
  782. "envVariables": {},
  783. "generatedRepoSpecs": {
  784. "platforms": {
  785. "repoRuleId": "@@bazel_tools//tools/build_defs/repo:http.bzl%http_archive",
  786. "attributes": {
  787. "urls": [
  788. "https://mirror.bazel.build/github.com/bazelbuild/platforms/releases/download/0.0.8/platforms-0.0.8.tar.gz",
  789. "https://github.com/bazelbuild/platforms/releases/download/0.0.8/platforms-0.0.8.tar.gz"
  790. ],
  791. "sha256": "8150406605389ececb6da07cbcb509d5637a3ab9a24bc69b1101531367d89d74"
  792. }
  793. },
  794. "rules_python": {
  795. "repoRuleId": "@@bazel_tools//tools/build_defs/repo:http.bzl%http_archive",
  796. "attributes": {
  797. "sha256": "d70cd72a7a4880f0000a6346253414825c19cdd40a28289bdf67b8e6480edff8",
  798. "strip_prefix": "rules_python-0.28.0",
  799. "url": "https://github.com/bazelbuild/rules_python/releases/download/0.28.0/rules_python-0.28.0.tar.gz"
  800. }
  801. },
  802. "bazel_skylib": {
  803. "repoRuleId": "@@bazel_tools//tools/build_defs/repo:http.bzl%http_archive",
  804. "attributes": {
  805. "sha256": "cd55a062e763b9349921f0f5db8c3933288dc8ba4f76dd9416aac68acee3cb94",
  806. "urls": [
  807. "https://mirror.bazel.build/github.com/bazelbuild/bazel-skylib/releases/download/1.5.0/bazel-skylib-1.5.0.tar.gz",
  808. "https://github.com/bazelbuild/bazel-skylib/releases/download/1.5.0/bazel-skylib-1.5.0.tar.gz"
  809. ]
  810. }
  811. },
  812. "com_google_absl": {
  813. "repoRuleId": "@@bazel_tools//tools/build_defs/repo:http.bzl%http_archive",
  814. "attributes": {
  815. "urls": [
  816. "https://github.com/abseil/abseil-cpp/archive/refs/tags/20240116.1.zip"
  817. ],
  818. "strip_prefix": "abseil-cpp-20240116.1",
  819. "integrity": "sha256-7capMWOvWyoYbUaHF/b+I2U6XLMaHmky8KugWvfXYuk="
  820. }
  821. },
  822. "rules_fuzzing_oss_fuzz": {
  823. "repoRuleId": "@@rules_fuzzing+//fuzzing/private/oss_fuzz:repository.bzl%oss_fuzz_repository",
  824. "attributes": {}
  825. },
  826. "honggfuzz": {
  827. "repoRuleId": "@@bazel_tools//tools/build_defs/repo:http.bzl%http_archive",
  828. "attributes": {
  829. "build_file": "@@rules_fuzzing+//:honggfuzz.BUILD",
  830. "sha256": "6b18ba13bc1f36b7b950c72d80f19ea67fbadc0ac0bb297ec89ad91f2eaa423e",
  831. "url": "https://github.com/google/honggfuzz/archive/2.5.zip",
  832. "strip_prefix": "honggfuzz-2.5"
  833. }
  834. },
  835. "rules_fuzzing_jazzer": {
  836. "repoRuleId": "@@bazel_tools//tools/build_defs/repo:http.bzl%http_jar",
  837. "attributes": {
  838. "sha256": "ee6feb569d88962d59cb59e8a31eb9d007c82683f3ebc64955fd5b96f277eec2",
  839. "url": "https://repo1.maven.org/maven2/com/code-intelligence/jazzer/0.20.1/jazzer-0.20.1.jar"
  840. }
  841. },
  842. "rules_fuzzing_jazzer_api": {
  843. "repoRuleId": "@@bazel_tools//tools/build_defs/repo:http.bzl%http_jar",
  844. "attributes": {
  845. "sha256": "f5a60242bc408f7fa20fccf10d6c5c5ea1fcb3c6f44642fec5af88373ae7aa1b",
  846. "url": "https://repo1.maven.org/maven2/com/code-intelligence/jazzer-api/0.20.1/jazzer-api-0.20.1.jar"
  847. }
  848. }
  849. },
  850. "recordedRepoMappingEntries": [
  851. [
  852. "rules_fuzzing+",
  853. "bazel_tools",
  854. "bazel_tools"
  855. ]
  856. ]
  857. }
  858. },
  859. "@@rules_java+//java:rules_java_deps.bzl%compatibility_proxy": {
  860. "general": {
  861. "bzlTransitiveDigest": "84xJEZ1jnXXwo8BXMprvBm++rRt4jsTu9liBxz0ivps=",
  862. "usagesDigest": "jTQDdLDxsS43zuRmg1faAjIEPWdLAbDAowI1pInQSoo=",
  863. "recordedFileInputs": {},
  864. "recordedDirentsInputs": {},
  865. "envVariables": {},
  866. "generatedRepoSpecs": {
  867. "compatibility_proxy": {
  868. "repoRuleId": "@@rules_java+//java:rules_java_deps.bzl%_compatibility_proxy_repo_rule",
  869. "attributes": {}
  870. }
  871. },
  872. "recordedRepoMappingEntries": [
  873. [
  874. "rules_java+",
  875. "bazel_tools",
  876. "bazel_tools"
  877. ]
  878. ]
  879. }
  880. },
  881. "@@rules_kotlin+//src/main/starlark/core/repositories:bzlmod_setup.bzl%rules_kotlin_extensions": {
  882. "general": {
  883. "bzlTransitiveDigest": "sFhcgPbDQehmbD1EOXzX4H1q/CD5df8zwG4kp4jbvr8=",
  884. "usagesDigest": "QI2z8ZUR+mqtbwsf2fLqYdJAkPOHdOV+tF2yVAUgRzw=",
  885. "recordedFileInputs": {},
  886. "recordedDirentsInputs": {},
  887. "envVariables": {},
  888. "generatedRepoSpecs": {
  889. "com_github_jetbrains_kotlin_git": {
  890. "repoRuleId": "@@rules_kotlin+//src/main/starlark/core/repositories:compiler.bzl%kotlin_compiler_git_repository",
  891. "attributes": {
  892. "urls": [
  893. "https://github.com/JetBrains/kotlin/releases/download/v1.9.23/kotlin-compiler-1.9.23.zip"
  894. ],
  895. "sha256": "93137d3aab9afa9b27cb06a824c2324195c6b6f6179d8a8653f440f5bd58be88"
  896. }
  897. },
  898. "com_github_jetbrains_kotlin": {
  899. "repoRuleId": "@@rules_kotlin+//src/main/starlark/core/repositories:compiler.bzl%kotlin_capabilities_repository",
  900. "attributes": {
  901. "git_repository_name": "com_github_jetbrains_kotlin_git",
  902. "compiler_version": "1.9.23"
  903. }
  904. },
  905. "com_github_google_ksp": {
  906. "repoRuleId": "@@rules_kotlin+//src/main/starlark/core/repositories:ksp.bzl%ksp_compiler_plugin_repository",
  907. "attributes": {
  908. "urls": [
  909. "https://github.com/google/ksp/releases/download/1.9.23-1.0.20/artifacts.zip"
  910. ],
  911. "sha256": "ee0618755913ef7fd6511288a232e8fad24838b9af6ea73972a76e81053c8c2d",
  912. "strip_version": "1.9.23-1.0.20"
  913. }
  914. },
  915. "com_github_pinterest_ktlint": {
  916. "repoRuleId": "@@bazel_tools//tools/build_defs/repo:http.bzl%http_file",
  917. "attributes": {
  918. "sha256": "01b2e0ef893383a50dbeb13970fe7fa3be36ca3e83259e01649945b09d736985",
  919. "urls": [
  920. "https://github.com/pinterest/ktlint/releases/download/1.3.0/ktlint"
  921. ],
  922. "executable": true
  923. }
  924. },
  925. "rules_android": {
  926. "repoRuleId": "@@bazel_tools//tools/build_defs/repo:http.bzl%http_archive",
  927. "attributes": {
  928. "sha256": "cd06d15dd8bb59926e4d65f9003bfc20f9da4b2519985c27e190cddc8b7a7806",
  929. "strip_prefix": "rules_android-0.1.1",
  930. "urls": [
  931. "https://github.com/bazelbuild/rules_android/archive/v0.1.1.zip"
  932. ]
  933. }
  934. }
  935. },
  936. "recordedRepoMappingEntries": [
  937. [
  938. "rules_kotlin+",
  939. "bazel_tools",
  940. "bazel_tools"
  941. ]
  942. ]
  943. }
  944. },
  945. "@@rules_m4+//m4/internal:default_toolchain_ext.bzl%default_toolchain_ext": {
  946. "general": {
  947. "bzlTransitiveDigest": "CXRnqHCD3da0my2mZPFHlnWof5tnCDY06mA1liuZb44=",
  948. "usagesDigest": "A7daGHHs92CGrVNpdv3t/K9Vw/DM1Q0li/IAPpMFyi0=",
  949. "recordedFileInputs": {},
  950. "recordedDirentsInputs": {},
  951. "envVariables": {},
  952. "generatedRepoSpecs": {
  953. "m4_v1.4.18": {
  954. "repoRuleId": "@@rules_m4+//m4/rules:m4_repository.bzl%m4_repository",
  955. "attributes": {
  956. "version": "1.4.18"
  957. }
  958. },
  959. "m4": {
  960. "repoRuleId": "@@rules_m4+//m4/rules:m4_toolchain_repository.bzl%m4_toolchain_repository",
  961. "attributes": {
  962. "m4_repository": "@m4_v1.4.18"
  963. }
  964. }
  965. },
  966. "moduleExtensionMetadata": {
  967. "explicitRootModuleDirectDeps": [
  968. "m4"
  969. ],
  970. "explicitRootModuleDirectDevDeps": [],
  971. "useAllRepos": "NO",
  972. "reproducible": false
  973. },
  974. "recordedRepoMappingEntries": []
  975. }
  976. },
  977. "@@rules_python+//python/extensions:pip.bzl%pip": {
  978. "general": {
  979. "bzlTransitiveDigest": "rf6l36dgC9+meab17f35zE8ytj0gdbXez7fMYxBStU4=",
  980. "usagesDigest": "/9NP3RV6/DWuNdYAsIU/8UCgCX0TdPUJr0X6O+0lrtk=",
  981. "recordedFileInputs": {
  982. "@@protobuf+//python/requirements.txt": "983be60d3cec4b319dcab6d48aeb3f5b2f7c3350f26b3a9e97486c37967c73c5",
  983. "@@rules_fuzzing+//fuzzing/requirements.txt": "ab04664be026b632a0d2a2446c4f65982b7654f5b6851d2f9d399a19b7242a5b",
  984. "@@rules_python+//tools/publish/requirements_darwin.txt": "2994136eab7e57b083c3de76faf46f70fad130bc8e7360a7fed2b288b69e79dc",
  985. "@@rules_python+//tools/publish/requirements_linux.txt": "8175b4c8df50ae2f22d1706961884beeb54e7da27bd2447018314a175981997d",
  986. "@@rules_python+//tools/publish/requirements_windows.txt": "7673adc71dc1a81d3661b90924d7a7c0fc998cd508b3cb4174337cef3f2de556"
  987. },
  988. "recordedDirentsInputs": {},
  989. "envVariables": {
  990. "RULES_PYTHON_REPO_DEBUG": null,
  991. "RULES_PYTHON_REPO_DEBUG_VERBOSITY": null
  992. },
  993. "generatedRepoSpecs": {
  994. "pip_deps_310_numpy": {
  995. "repoRuleId": "@@rules_python+//python/private/pypi:whl_library.bzl%whl_library",
  996. "attributes": {
  997. "dep_template": "@pip_deps//{name}:{target}",
  998. "python_interpreter_target": "@@rules_python++python+python_3_10_host//:python",
  999. "repo": "pip_deps_310",
  1000. "requirement": "numpy<=1.26.1"
  1001. }
  1002. },
  1003. "pip_deps_310_setuptools": {
  1004. "repoRuleId": "@@rules_python+//python/private/pypi:whl_library.bzl%whl_library",
  1005. "attributes": {
  1006. "dep_template": "@pip_deps//{name}:{target}",
  1007. "python_interpreter_target": "@@rules_python++python+python_3_10_host//:python",
  1008. "repo": "pip_deps_310",
  1009. "requirement": "setuptools<=70.3.0"
  1010. }
  1011. },
  1012. "pip_deps_311_numpy": {
  1013. "repoRuleId": "@@rules_python+//python/private/pypi:whl_library.bzl%whl_library",
  1014. "attributes": {
  1015. "dep_template": "@pip_deps//{name}:{target}",
  1016. "python_interpreter_target": "@@rules_python++python+python_3_11_host//:python",
  1017. "repo": "pip_deps_311",
  1018. "requirement": "numpy<=1.26.1"
  1019. }
  1020. },
  1021. "pip_deps_311_setuptools": {
  1022. "repoRuleId": "@@rules_python+//python/private/pypi:whl_library.bzl%whl_library",
  1023. "attributes": {
  1024. "dep_template": "@pip_deps//{name}:{target}",
  1025. "python_interpreter_target": "@@rules_python++python+python_3_11_host//:python",
  1026. "repo": "pip_deps_311",
  1027. "requirement": "setuptools<=70.3.0"
  1028. }
  1029. },
  1030. "pip_deps_312_numpy": {
  1031. "repoRuleId": "@@rules_python+//python/private/pypi:whl_library.bzl%whl_library",
  1032. "attributes": {
  1033. "dep_template": "@pip_deps//{name}:{target}",
  1034. "python_interpreter_target": "@@rules_python++python+python_3_12_host//:python",
  1035. "repo": "pip_deps_312",
  1036. "requirement": "numpy<=1.26.1"
  1037. }
  1038. },
  1039. "pip_deps_312_setuptools": {
  1040. "repoRuleId": "@@rules_python+//python/private/pypi:whl_library.bzl%whl_library",
  1041. "attributes": {
  1042. "dep_template": "@pip_deps//{name}:{target}",
  1043. "python_interpreter_target": "@@rules_python++python+python_3_12_host//:python",
  1044. "repo": "pip_deps_312",
  1045. "requirement": "setuptools<=70.3.0"
  1046. }
  1047. },
  1048. "pip_deps_38_numpy": {
  1049. "repoRuleId": "@@rules_python+//python/private/pypi:whl_library.bzl%whl_library",
  1050. "attributes": {
  1051. "dep_template": "@pip_deps//{name}:{target}",
  1052. "python_interpreter_target": "@@rules_python++python+python_3_8_host//:python",
  1053. "repo": "pip_deps_38",
  1054. "requirement": "numpy<=1.26.1"
  1055. }
  1056. },
  1057. "pip_deps_38_setuptools": {
  1058. "repoRuleId": "@@rules_python+//python/private/pypi:whl_library.bzl%whl_library",
  1059. "attributes": {
  1060. "dep_template": "@pip_deps//{name}:{target}",
  1061. "python_interpreter_target": "@@rules_python++python+python_3_8_host//:python",
  1062. "repo": "pip_deps_38",
  1063. "requirement": "setuptools<=70.3.0"
  1064. }
  1065. },
  1066. "pip_deps_39_numpy": {
  1067. "repoRuleId": "@@rules_python+//python/private/pypi:whl_library.bzl%whl_library",
  1068. "attributes": {
  1069. "dep_template": "@pip_deps//{name}:{target}",
  1070. "python_interpreter_target": "@@rules_python++python+python_3_9_host//:python",
  1071. "repo": "pip_deps_39",
  1072. "requirement": "numpy<=1.26.1"
  1073. }
  1074. },
  1075. "pip_deps_39_setuptools": {
  1076. "repoRuleId": "@@rules_python+//python/private/pypi:whl_library.bzl%whl_library",
  1077. "attributes": {
  1078. "dep_template": "@pip_deps//{name}:{target}",
  1079. "python_interpreter_target": "@@rules_python++python+python_3_9_host//:python",
  1080. "repo": "pip_deps_39",
  1081. "requirement": "setuptools<=70.3.0"
  1082. }
  1083. },
  1084. "rules_fuzzing_py_deps_310_absl_py": {
  1085. "repoRuleId": "@@rules_python+//python/private/pypi:whl_library.bzl%whl_library",
  1086. "attributes": {
  1087. "dep_template": "@rules_fuzzing_py_deps//{name}:{target}",
  1088. "extra_pip_args": [
  1089. "--require-hashes"
  1090. ],
  1091. "python_interpreter_target": "@@rules_python++python+python_3_10_host//:python",
  1092. "repo": "rules_fuzzing_py_deps_310",
  1093. "requirement": "absl-py==2.0.0 --hash=sha256:9a28abb62774ae4e8edbe2dd4c49ffcd45a6a848952a5eccc6a49f3f0fc1e2f3"
  1094. }
  1095. },
  1096. "rules_fuzzing_py_deps_310_six": {
  1097. "repoRuleId": "@@rules_python+//python/private/pypi:whl_library.bzl%whl_library",
  1098. "attributes": {
  1099. "dep_template": "@rules_fuzzing_py_deps//{name}:{target}",
  1100. "extra_pip_args": [
  1101. "--require-hashes"
  1102. ],
  1103. "python_interpreter_target": "@@rules_python++python+python_3_10_host//:python",
  1104. "repo": "rules_fuzzing_py_deps_310",
  1105. "requirement": "six==1.16.0 --hash=sha256:8abb2f1d86890a2dfb989f9a77cfcfd3e47c2a354b01111771326f8aa26e0254"
  1106. }
  1107. },
  1108. "rules_fuzzing_py_deps_311_absl_py": {
  1109. "repoRuleId": "@@rules_python+//python/private/pypi:whl_library.bzl%whl_library",
  1110. "attributes": {
  1111. "dep_template": "@rules_fuzzing_py_deps//{name}:{target}",
  1112. "extra_pip_args": [
  1113. "--require-hashes"
  1114. ],
  1115. "python_interpreter_target": "@@rules_python++python+python_3_11_host//:python",
  1116. "repo": "rules_fuzzing_py_deps_311",
  1117. "requirement": "absl-py==2.0.0 --hash=sha256:9a28abb62774ae4e8edbe2dd4c49ffcd45a6a848952a5eccc6a49f3f0fc1e2f3"
  1118. }
  1119. },
  1120. "rules_fuzzing_py_deps_311_six": {
  1121. "repoRuleId": "@@rules_python+//python/private/pypi:whl_library.bzl%whl_library",
  1122. "attributes": {
  1123. "dep_template": "@rules_fuzzing_py_deps//{name}:{target}",
  1124. "extra_pip_args": [
  1125. "--require-hashes"
  1126. ],
  1127. "python_interpreter_target": "@@rules_python++python+python_3_11_host//:python",
  1128. "repo": "rules_fuzzing_py_deps_311",
  1129. "requirement": "six==1.16.0 --hash=sha256:8abb2f1d86890a2dfb989f9a77cfcfd3e47c2a354b01111771326f8aa26e0254"
  1130. }
  1131. },
  1132. "rules_fuzzing_py_deps_312_absl_py": {
  1133. "repoRuleId": "@@rules_python+//python/private/pypi:whl_library.bzl%whl_library",
  1134. "attributes": {
  1135. "dep_template": "@rules_fuzzing_py_deps//{name}:{target}",
  1136. "extra_pip_args": [
  1137. "--require-hashes"
  1138. ],
  1139. "python_interpreter_target": "@@rules_python++python+python_3_12_host//:python",
  1140. "repo": "rules_fuzzing_py_deps_312",
  1141. "requirement": "absl-py==2.0.0 --hash=sha256:9a28abb62774ae4e8edbe2dd4c49ffcd45a6a848952a5eccc6a49f3f0fc1e2f3"
  1142. }
  1143. },
  1144. "rules_fuzzing_py_deps_312_six": {
  1145. "repoRuleId": "@@rules_python+//python/private/pypi:whl_library.bzl%whl_library",
  1146. "attributes": {
  1147. "dep_template": "@rules_fuzzing_py_deps//{name}:{target}",
  1148. "extra_pip_args": [
  1149. "--require-hashes"
  1150. ],
  1151. "python_interpreter_target": "@@rules_python++python+python_3_12_host//:python",
  1152. "repo": "rules_fuzzing_py_deps_312",
  1153. "requirement": "six==1.16.0 --hash=sha256:8abb2f1d86890a2dfb989f9a77cfcfd3e47c2a354b01111771326f8aa26e0254"
  1154. }
  1155. },
  1156. "rules_fuzzing_py_deps_38_absl_py": {
  1157. "repoRuleId": "@@rules_python+//python/private/pypi:whl_library.bzl%whl_library",
  1158. "attributes": {
  1159. "dep_template": "@rules_fuzzing_py_deps//{name}:{target}",
  1160. "extra_pip_args": [
  1161. "--require-hashes"
  1162. ],
  1163. "python_interpreter_target": "@@rules_python++python+python_3_8_host//:python",
  1164. "repo": "rules_fuzzing_py_deps_38",
  1165. "requirement": "absl-py==2.0.0 --hash=sha256:9a28abb62774ae4e8edbe2dd4c49ffcd45a6a848952a5eccc6a49f3f0fc1e2f3"
  1166. }
  1167. },
  1168. "rules_fuzzing_py_deps_38_six": {
  1169. "repoRuleId": "@@rules_python+//python/private/pypi:whl_library.bzl%whl_library",
  1170. "attributes": {
  1171. "dep_template": "@rules_fuzzing_py_deps//{name}:{target}",
  1172. "extra_pip_args": [
  1173. "--require-hashes"
  1174. ],
  1175. "python_interpreter_target": "@@rules_python++python+python_3_8_host//:python",
  1176. "repo": "rules_fuzzing_py_deps_38",
  1177. "requirement": "six==1.16.0 --hash=sha256:8abb2f1d86890a2dfb989f9a77cfcfd3e47c2a354b01111771326f8aa26e0254"
  1178. }
  1179. },
  1180. "rules_fuzzing_py_deps_39_absl_py": {
  1181. "repoRuleId": "@@rules_python+//python/private/pypi:whl_library.bzl%whl_library",
  1182. "attributes": {
  1183. "dep_template": "@rules_fuzzing_py_deps//{name}:{target}",
  1184. "extra_pip_args": [
  1185. "--require-hashes"
  1186. ],
  1187. "python_interpreter_target": "@@rules_python++python+python_3_9_host//:python",
  1188. "repo": "rules_fuzzing_py_deps_39",
  1189. "requirement": "absl-py==2.0.0 --hash=sha256:9a28abb62774ae4e8edbe2dd4c49ffcd45a6a848952a5eccc6a49f3f0fc1e2f3"
  1190. }
  1191. },
  1192. "rules_fuzzing_py_deps_39_six": {
  1193. "repoRuleId": "@@rules_python+//python/private/pypi:whl_library.bzl%whl_library",
  1194. "attributes": {
  1195. "dep_template": "@rules_fuzzing_py_deps//{name}:{target}",
  1196. "extra_pip_args": [
  1197. "--require-hashes"
  1198. ],
  1199. "python_interpreter_target": "@@rules_python++python+python_3_9_host//:python",
  1200. "repo": "rules_fuzzing_py_deps_39",
  1201. "requirement": "six==1.16.0 --hash=sha256:8abb2f1d86890a2dfb989f9a77cfcfd3e47c2a354b01111771326f8aa26e0254"
  1202. }
  1203. },
  1204. "rules_python_publish_deps_311_backports_tarfile_py3_none_any_77e284d7": {
  1205. "repoRuleId": "@@rules_python+//python/private/pypi:whl_library.bzl%whl_library",
  1206. "attributes": {
  1207. "dep_template": "@rules_python_publish_deps//{name}:{target}",
  1208. "experimental_target_platforms": [
  1209. "cp311_linux_aarch64",
  1210. "cp311_linux_arm",
  1211. "cp311_linux_ppc",
  1212. "cp311_linux_s390x",
  1213. "cp311_linux_x86_64",
  1214. "cp311_osx_aarch64",
  1215. "cp311_osx_x86_64",
  1216. "cp311_windows_x86_64"
  1217. ],
  1218. "filename": "backports.tarfile-1.2.0-py3-none-any.whl",
  1219. "python_interpreter_target": "@@rules_python++python+python_3_11_host//:python",
  1220. "repo": "rules_python_publish_deps_311",
  1221. "requirement": "backports-tarfile==1.2.0",
  1222. "sha256": "77e284d754527b01fb1e6fa8a1afe577858ebe4e9dad8919e34c862cb399bc34",
  1223. "urls": [
  1224. "https://files.pythonhosted.org/packages/b9/fa/123043af240e49752f1c4bd24da5053b6bd00cad78c2be53c0d1e8b975bc/backports.tarfile-1.2.0-py3-none-any.whl"
  1225. ]
  1226. }
  1227. },
  1228. "rules_python_publish_deps_311_backports_tarfile_sdist_d75e02c2": {
  1229. "repoRuleId": "@@rules_python+//python/private/pypi:whl_library.bzl%whl_library",
  1230. "attributes": {
  1231. "dep_template": "@rules_python_publish_deps//{name}:{target}",
  1232. "experimental_target_platforms": [
  1233. "cp311_linux_aarch64",
  1234. "cp311_linux_arm",
  1235. "cp311_linux_ppc",
  1236. "cp311_linux_s390x",
  1237. "cp311_linux_x86_64",
  1238. "cp311_osx_aarch64",
  1239. "cp311_osx_x86_64",
  1240. "cp311_windows_x86_64"
  1241. ],
  1242. "extra_pip_args": [
  1243. "--index-url",
  1244. "https://pypi.org/simple"
  1245. ],
  1246. "filename": "backports_tarfile-1.2.0.tar.gz",
  1247. "python_interpreter_target": "@@rules_python++python+python_3_11_host//:python",
  1248. "repo": "rules_python_publish_deps_311",
  1249. "requirement": "backports-tarfile==1.2.0",
  1250. "sha256": "d75e02c268746e1b8144c278978b6e98e85de6ad16f8e4b0844a154557eca991",
  1251. "urls": [
  1252. "https://files.pythonhosted.org/packages/86/72/cd9b395f25e290e633655a100af28cb253e4393396264a98bd5f5951d50f/backports_tarfile-1.2.0.tar.gz"
  1253. ]
  1254. }
  1255. },
  1256. "rules_python_publish_deps_311_certifi_py3_none_any_922820b5": {
  1257. "repoRuleId": "@@rules_python+//python/private/pypi:whl_library.bzl%whl_library",
  1258. "attributes": {
  1259. "dep_template": "@rules_python_publish_deps//{name}:{target}",
  1260. "experimental_target_platforms": [
  1261. "cp311_linux_aarch64",
  1262. "cp311_linux_arm",
  1263. "cp311_linux_ppc",
  1264. "cp311_linux_s390x",
  1265. "cp311_linux_x86_64",
  1266. "cp311_osx_aarch64",
  1267. "cp311_osx_x86_64",
  1268. "cp311_windows_x86_64"
  1269. ],
  1270. "filename": "certifi-2024.8.30-py3-none-any.whl",
  1271. "python_interpreter_target": "@@rules_python++python+python_3_11_host//:python",
  1272. "repo": "rules_python_publish_deps_311",
  1273. "requirement": "certifi==2024.8.30",
  1274. "sha256": "922820b53db7a7257ffbda3f597266d435245903d80737e34f8a45ff3e3230d8",
  1275. "urls": [
  1276. "https://files.pythonhosted.org/packages/12/90/3c9ff0512038035f59d279fddeb79f5f1eccd8859f06d6163c58798b9487/certifi-2024.8.30-py3-none-any.whl"
  1277. ]
  1278. }
  1279. },
  1280. "rules_python_publish_deps_311_certifi_sdist_bec941d2": {
  1281. "repoRuleId": "@@rules_python+//python/private/pypi:whl_library.bzl%whl_library",
  1282. "attributes": {
  1283. "dep_template": "@rules_python_publish_deps//{name}:{target}",
  1284. "experimental_target_platforms": [
  1285. "cp311_linux_aarch64",
  1286. "cp311_linux_arm",
  1287. "cp311_linux_ppc",
  1288. "cp311_linux_s390x",
  1289. "cp311_linux_x86_64",
  1290. "cp311_osx_aarch64",
  1291. "cp311_osx_x86_64",
  1292. "cp311_windows_x86_64"
  1293. ],
  1294. "extra_pip_args": [
  1295. "--index-url",
  1296. "https://pypi.org/simple"
  1297. ],
  1298. "filename": "certifi-2024.8.30.tar.gz",
  1299. "python_interpreter_target": "@@rules_python++python+python_3_11_host//:python",
  1300. "repo": "rules_python_publish_deps_311",
  1301. "requirement": "certifi==2024.8.30",
  1302. "sha256": "bec941d2aa8195e248a60b31ff9f0558284cf01a52591ceda73ea9afffd69fd9",
  1303. "urls": [
  1304. "https://files.pythonhosted.org/packages/b0/ee/9b19140fe824b367c04c5e1b369942dd754c4c5462d5674002f75c4dedc1/certifi-2024.8.30.tar.gz"
  1305. ]
  1306. }
  1307. },
  1308. "rules_python_publish_deps_311_cffi_cp311_cp311_manylinux_2_17_aarch64_a1ed2dd2": {
  1309. "repoRuleId": "@@rules_python+//python/private/pypi:whl_library.bzl%whl_library",
  1310. "attributes": {
  1311. "dep_template": "@rules_python_publish_deps//{name}:{target}",
  1312. "experimental_target_platforms": [
  1313. "cp311_linux_aarch64",
  1314. "cp311_linux_arm",
  1315. "cp311_linux_ppc",
  1316. "cp311_linux_s390x",
  1317. "cp311_linux_x86_64"
  1318. ],
  1319. "filename": "cffi-1.17.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
  1320. "python_interpreter_target": "@@rules_python++python+python_3_11_host//:python",
  1321. "repo": "rules_python_publish_deps_311",
  1322. "requirement": "cffi==1.17.1",
  1323. "sha256": "a1ed2dd2972641495a3ec98445e09766f077aee98a1c896dcb4ad0d303628e41",
  1324. "urls": [
  1325. "https://files.pythonhosted.org/packages/2e/ea/70ce63780f096e16ce8588efe039d3c4f91deb1dc01e9c73a287939c79a6/cffi-1.17.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl"
  1326. ]
  1327. }
  1328. },
  1329. "rules_python_publish_deps_311_cffi_cp311_cp311_manylinux_2_17_ppc64le_46bf4316": {
  1330. "repoRuleId": "@@rules_python+//python/private/pypi:whl_library.bzl%whl_library",
  1331. "attributes": {
  1332. "dep_template": "@rules_python_publish_deps//{name}:{target}",
  1333. "experimental_target_platforms": [
  1334. "cp311_linux_aarch64",
  1335. "cp311_linux_arm",
  1336. "cp311_linux_ppc",
  1337. "cp311_linux_s390x",
  1338. "cp311_linux_x86_64"
  1339. ],
  1340. "filename": "cffi-1.17.1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
  1341. "python_interpreter_target": "@@rules_python++python+python_3_11_host//:python",
  1342. "repo": "rules_python_publish_deps_311",
  1343. "requirement": "cffi==1.17.1",
  1344. "sha256": "46bf43160c1a35f7ec506d254e5c890f3c03648a4dbac12d624e4490a7046cd1",
  1345. "urls": [
  1346. "https://files.pythonhosted.org/packages/1c/a0/a4fa9f4f781bda074c3ddd57a572b060fa0df7655d2a4247bbe277200146/cffi-1.17.1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl"
  1347. ]
  1348. }
  1349. },
  1350. "rules_python_publish_deps_311_cffi_cp311_cp311_manylinux_2_17_s390x_a24ed04c": {
  1351. "repoRuleId": "@@rules_python+//python/private/pypi:whl_library.bzl%whl_library",
  1352. "attributes": {
  1353. "dep_template": "@rules_python_publish_deps//{name}:{target}",
  1354. "experimental_target_platforms": [
  1355. "cp311_linux_aarch64",
  1356. "cp311_linux_arm",
  1357. "cp311_linux_ppc",
  1358. "cp311_linux_s390x",
  1359. "cp311_linux_x86_64"
  1360. ],
  1361. "filename": "cffi-1.17.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl",
  1362. "python_interpreter_target": "@@rules_python++python+python_3_11_host//:python",
  1363. "repo": "rules_python_publish_deps_311",
  1364. "requirement": "cffi==1.17.1",
  1365. "sha256": "a24ed04c8ffd54b0729c07cee15a81d964e6fee0e3d4d342a27b020d22959dc6",
  1366. "urls": [
  1367. "https://files.pythonhosted.org/packages/62/12/ce8710b5b8affbcdd5c6e367217c242524ad17a02fe5beec3ee339f69f85/cffi-1.17.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl"
  1368. ]
  1369. }
  1370. },
  1371. "rules_python_publish_deps_311_cffi_cp311_cp311_manylinux_2_17_x86_64_610faea7": {
  1372. "repoRuleId": "@@rules_python+//python/private/pypi:whl_library.bzl%whl_library",
  1373. "attributes": {
  1374. "dep_template": "@rules_python_publish_deps//{name}:{target}",
  1375. "experimental_target_platforms": [
  1376. "cp311_linux_aarch64",
  1377. "cp311_linux_arm",
  1378. "cp311_linux_ppc",
  1379. "cp311_linux_s390x",
  1380. "cp311_linux_x86_64"
  1381. ],
  1382. "filename": "cffi-1.17.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
  1383. "python_interpreter_target": "@@rules_python++python+python_3_11_host//:python",
  1384. "repo": "rules_python_publish_deps_311",
  1385. "requirement": "cffi==1.17.1",
  1386. "sha256": "610faea79c43e44c71e1ec53a554553fa22321b65fae24889706c0a84d4ad86d",
  1387. "urls": [
  1388. "https://files.pythonhosted.org/packages/ff/6b/d45873c5e0242196f042d555526f92aa9e0c32355a1be1ff8c27f077fd37/cffi-1.17.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl"
  1389. ]
  1390. }
  1391. },
  1392. "rules_python_publish_deps_311_cffi_cp311_cp311_musllinux_1_1_aarch64_a9b15d49": {
  1393. "repoRuleId": "@@rules_python+//python/private/pypi:whl_library.bzl%whl_library",
  1394. "attributes": {
  1395. "dep_template": "@rules_python_publish_deps//{name}:{target}",
  1396. "experimental_target_platforms": [
  1397. "cp311_linux_aarch64",
  1398. "cp311_linux_arm",
  1399. "cp311_linux_ppc",
  1400. "cp311_linux_s390x",
  1401. "cp311_linux_x86_64"
  1402. ],
  1403. "filename": "cffi-1.17.1-cp311-cp311-musllinux_1_1_aarch64.whl",
  1404. "python_interpreter_target": "@@rules_python++python+python_3_11_host//:python",
  1405. "repo": "rules_python_publish_deps_311",
  1406. "requirement": "cffi==1.17.1",
  1407. "sha256": "a9b15d491f3ad5d692e11f6b71f7857e7835eb677955c00cc0aefcd0669adaf6",
  1408. "urls": [
  1409. "https://files.pythonhosted.org/packages/1a/52/d9a0e523a572fbccf2955f5abe883cfa8bcc570d7faeee06336fbd50c9fc/cffi-1.17.1-cp311-cp311-musllinux_1_1_aarch64.whl"
  1410. ]
  1411. }
  1412. },
  1413. "rules_python_publish_deps_311_cffi_cp311_cp311_musllinux_1_1_x86_64_fc48c783": {
  1414. "repoRuleId": "@@rules_python+//python/private/pypi:whl_library.bzl%whl_library",
  1415. "attributes": {
  1416. "dep_template": "@rules_python_publish_deps//{name}:{target}",
  1417. "experimental_target_platforms": [
  1418. "cp311_linux_aarch64",
  1419. "cp311_linux_arm",
  1420. "cp311_linux_ppc",
  1421. "cp311_linux_s390x",
  1422. "cp311_linux_x86_64"
  1423. ],
  1424. "filename": "cffi-1.17.1-cp311-cp311-musllinux_1_1_x86_64.whl",
  1425. "python_interpreter_target": "@@rules_python++python+python_3_11_host//:python",
  1426. "repo": "rules_python_publish_deps_311",
  1427. "requirement": "cffi==1.17.1",
  1428. "sha256": "fc48c783f9c87e60831201f2cce7f3b2e4846bf4d8728eabe54d60700b318a0b",
  1429. "urls": [
  1430. "https://files.pythonhosted.org/packages/f8/4a/34599cac7dfcd888ff54e801afe06a19c17787dfd94495ab0c8d35fe99fb/cffi-1.17.1-cp311-cp311-musllinux_1_1_x86_64.whl"
  1431. ]
  1432. }
  1433. },
  1434. "rules_python_publish_deps_311_cffi_sdist_1c39c601": {
  1435. "repoRuleId": "@@rules_python+//python/private/pypi:whl_library.bzl%whl_library",
  1436. "attributes": {
  1437. "dep_template": "@rules_python_publish_deps//{name}:{target}",
  1438. "experimental_target_platforms": [
  1439. "cp311_linux_aarch64",
  1440. "cp311_linux_arm",
  1441. "cp311_linux_ppc",
  1442. "cp311_linux_s390x",
  1443. "cp311_linux_x86_64"
  1444. ],
  1445. "extra_pip_args": [
  1446. "--index-url",
  1447. "https://pypi.org/simple"
  1448. ],
  1449. "filename": "cffi-1.17.1.tar.gz",
  1450. "python_interpreter_target": "@@rules_python++python+python_3_11_host//:python",
  1451. "repo": "rules_python_publish_deps_311",
  1452. "requirement": "cffi==1.17.1",
  1453. "sha256": "1c39c6016c32bc48dd54561950ebd6836e1670f2ae46128f67cf49e789c52824",
  1454. "urls": [
  1455. "https://files.pythonhosted.org/packages/fc/97/c783634659c2920c3fc70419e3af40972dbaf758daa229a7d6ea6135c90d/cffi-1.17.1.tar.gz"
  1456. ]
  1457. }
  1458. },
  1459. "rules_python_publish_deps_311_charset_normalizer_cp311_cp311_macosx_10_9_universal2_0d99dd8f": {
  1460. "repoRuleId": "@@rules_python+//python/private/pypi:whl_library.bzl%whl_library",
  1461. "attributes": {
  1462. "dep_template": "@rules_python_publish_deps//{name}:{target}",
  1463. "experimental_target_platforms": [
  1464. "cp311_linux_aarch64",
  1465. "cp311_linux_arm",
  1466. "cp311_linux_ppc",
  1467. "cp311_linux_s390x",
  1468. "cp311_linux_x86_64",
  1469. "cp311_osx_aarch64",
  1470. "cp311_osx_x86_64",
  1471. "cp311_windows_x86_64"
  1472. ],
  1473. "filename": "charset_normalizer-3.4.0-cp311-cp311-macosx_10_9_universal2.whl",
  1474. "python_interpreter_target": "@@rules_python++python+python_3_11_host//:python",
  1475. "repo": "rules_python_publish_deps_311",
  1476. "requirement": "charset-normalizer==3.4.0",
  1477. "sha256": "0d99dd8ff461990f12d6e42c7347fd9ab2532fb70e9621ba520f9e8637161d7c",
  1478. "urls": [
  1479. "https://files.pythonhosted.org/packages/9c/61/73589dcc7a719582bf56aae309b6103d2762b526bffe189d635a7fcfd998/charset_normalizer-3.4.0-cp311-cp311-macosx_10_9_universal2.whl"
  1480. ]
  1481. }
  1482. },
  1483. "rules_python_publish_deps_311_charset_normalizer_cp311_cp311_macosx_10_9_x86_64_c57516e5": {
  1484. "repoRuleId": "@@rules_python+//python/private/pypi:whl_library.bzl%whl_library",
  1485. "attributes": {
  1486. "dep_template": "@rules_python_publish_deps//{name}:{target}",
  1487. "experimental_target_platforms": [
  1488. "cp311_linux_aarch64",
  1489. "cp311_linux_arm",
  1490. "cp311_linux_ppc",
  1491. "cp311_linux_s390x",
  1492. "cp311_linux_x86_64",
  1493. "cp311_osx_aarch64",
  1494. "cp311_osx_x86_64",
  1495. "cp311_windows_x86_64"
  1496. ],
  1497. "filename": "charset_normalizer-3.4.0-cp311-cp311-macosx_10_9_x86_64.whl",
  1498. "python_interpreter_target": "@@rules_python++python+python_3_11_host//:python",
  1499. "repo": "rules_python_publish_deps_311",
  1500. "requirement": "charset-normalizer==3.4.0",
  1501. "sha256": "c57516e58fd17d03ebe67e181a4e4e2ccab1168f8c2976c6a334d4f819fe5944",
  1502. "urls": [
  1503. "https://files.pythonhosted.org/packages/77/d5/8c982d58144de49f59571f940e329ad6e8615e1e82ef84584c5eeb5e1d72/charset_normalizer-3.4.0-cp311-cp311-macosx_10_9_x86_64.whl"
  1504. ]
  1505. }
  1506. },
  1507. "rules_python_publish_deps_311_charset_normalizer_cp311_cp311_macosx_11_0_arm64_6dba5d19": {
  1508. "repoRuleId": "@@rules_python+//python/private/pypi:whl_library.bzl%whl_library",
  1509. "attributes": {
  1510. "dep_template": "@rules_python_publish_deps//{name}:{target}",
  1511. "experimental_target_platforms": [
  1512. "cp311_linux_aarch64",
  1513. "cp311_linux_arm",
  1514. "cp311_linux_ppc",
  1515. "cp311_linux_s390x",
  1516. "cp311_linux_x86_64",
  1517. "cp311_osx_aarch64",
  1518. "cp311_osx_x86_64",
  1519. "cp311_windows_x86_64"
  1520. ],
  1521. "filename": "charset_normalizer-3.4.0-cp311-cp311-macosx_11_0_arm64.whl",
  1522. "python_interpreter_target": "@@rules_python++python+python_3_11_host//:python",
  1523. "repo": "rules_python_publish_deps_311",
  1524. "requirement": "charset-normalizer==3.4.0",
  1525. "sha256": "6dba5d19c4dfab08e58d5b36304b3f92f3bd5d42c1a3fa37b5ba5cdf6dfcbcee",
  1526. "urls": [
  1527. "https://files.pythonhosted.org/packages/bf/19/411a64f01ee971bed3231111b69eb56f9331a769072de479eae7de52296d/charset_normalizer-3.4.0-cp311-cp311-macosx_11_0_arm64.whl"
  1528. ]
  1529. }
  1530. },
  1531. "rules_python_publish_deps_311_charset_normalizer_cp311_cp311_manylinux_2_17_aarch64_bf4475b8": {
  1532. "repoRuleId": "@@rules_python+//python/private/pypi:whl_library.bzl%whl_library",
  1533. "attributes": {
  1534. "dep_template": "@rules_python_publish_deps//{name}:{target}",
  1535. "experimental_target_platforms": [
  1536. "cp311_linux_aarch64",
  1537. "cp311_linux_arm",
  1538. "cp311_linux_ppc",
  1539. "cp311_linux_s390x",
  1540. "cp311_linux_x86_64",
  1541. "cp311_osx_aarch64",
  1542. "cp311_osx_x86_64",
  1543. "cp311_windows_x86_64"
  1544. ],
  1545. "filename": "charset_normalizer-3.4.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
  1546. "python_interpreter_target": "@@rules_python++python+python_3_11_host//:python",
  1547. "repo": "rules_python_publish_deps_311",
  1548. "requirement": "charset-normalizer==3.4.0",
  1549. "sha256": "bf4475b82be41b07cc5e5ff94810e6a01f276e37c2d55571e3fe175e467a1a1c",
  1550. "urls": [
  1551. "https://files.pythonhosted.org/packages/4c/92/97509850f0d00e9f14a46bc751daabd0ad7765cff29cdfb66c68b6dad57f/charset_normalizer-3.4.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl"
  1552. ]
  1553. }
  1554. },
  1555. "rules_python_publish_deps_311_charset_normalizer_cp311_cp311_manylinux_2_17_ppc64le_ce031db0": {
  1556. "repoRuleId": "@@rules_python+//python/private/pypi:whl_library.bzl%whl_library",
  1557. "attributes": {
  1558. "dep_template": "@rules_python_publish_deps//{name}:{target}",
  1559. "experimental_target_platforms": [
  1560. "cp311_linux_aarch64",
  1561. "cp311_linux_arm",
  1562. "cp311_linux_ppc",
  1563. "cp311_linux_s390x",
  1564. "cp311_linux_x86_64",
  1565. "cp311_osx_aarch64",
  1566. "cp311_osx_x86_64",
  1567. "cp311_windows_x86_64"
  1568. ],
  1569. "filename": "charset_normalizer-3.4.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
  1570. "python_interpreter_target": "@@rules_python++python+python_3_11_host//:python",
  1571. "repo": "rules_python_publish_deps_311",
  1572. "requirement": "charset-normalizer==3.4.0",
  1573. "sha256": "ce031db0408e487fd2775d745ce30a7cd2923667cf3b69d48d219f1d8f5ddeb6",
  1574. "urls": [
  1575. "https://files.pythonhosted.org/packages/e2/29/d227805bff72ed6d6cb1ce08eec707f7cfbd9868044893617eb331f16295/charset_normalizer-3.4.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl"
  1576. ]
  1577. }
  1578. },
  1579. "rules_python_publish_deps_311_charset_normalizer_cp311_cp311_manylinux_2_17_s390x_8ff4e7cd": {
  1580. "repoRuleId": "@@rules_python+//python/private/pypi:whl_library.bzl%whl_library",
  1581. "attributes": {
  1582. "dep_template": "@rules_python_publish_deps//{name}:{target}",
  1583. "experimental_target_platforms": [
  1584. "cp311_linux_aarch64",
  1585. "cp311_linux_arm",
  1586. "cp311_linux_ppc",
  1587. "cp311_linux_s390x",
  1588. "cp311_linux_x86_64",
  1589. "cp311_osx_aarch64",
  1590. "cp311_osx_x86_64",
  1591. "cp311_windows_x86_64"
  1592. ],
  1593. "filename": "charset_normalizer-3.4.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl",
  1594. "python_interpreter_target": "@@rules_python++python+python_3_11_host//:python",
  1595. "repo": "rules_python_publish_deps_311",
  1596. "requirement": "charset-normalizer==3.4.0",
  1597. "sha256": "8ff4e7cdfdb1ab5698e675ca622e72d58a6fa2a8aa58195de0c0061288e6e3ea",
  1598. "urls": [
  1599. "https://files.pythonhosted.org/packages/13/bc/87c2c9f2c144bedfa62f894c3007cd4530ba4b5351acb10dc786428a50f0/charset_normalizer-3.4.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl"
  1600. ]
  1601. }
  1602. },
  1603. "rules_python_publish_deps_311_charset_normalizer_cp311_cp311_manylinux_2_17_x86_64_3710a975": {
  1604. "repoRuleId": "@@rules_python+//python/private/pypi:whl_library.bzl%whl_library",
  1605. "attributes": {
  1606. "dep_template": "@rules_python_publish_deps//{name}:{target}",
  1607. "experimental_target_platforms": [
  1608. "cp311_linux_aarch64",
  1609. "cp311_linux_arm",
  1610. "cp311_linux_ppc",
  1611. "cp311_linux_s390x",
  1612. "cp311_linux_x86_64",
  1613. "cp311_osx_aarch64",
  1614. "cp311_osx_x86_64",
  1615. "cp311_windows_x86_64"
  1616. ],
  1617. "filename": "charset_normalizer-3.4.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
  1618. "python_interpreter_target": "@@rules_python++python+python_3_11_host//:python",
  1619. "repo": "rules_python_publish_deps_311",
  1620. "requirement": "charset-normalizer==3.4.0",
  1621. "sha256": "3710a9751938947e6327ea9f3ea6332a09bf0ba0c09cae9cb1f250bd1f1549bc",
  1622. "urls": [
  1623. "https://files.pythonhosted.org/packages/eb/5b/6f10bad0f6461fa272bfbbdf5d0023b5fb9bc6217c92bf068fa5a99820f5/charset_normalizer-3.4.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl"
  1624. ]
  1625. }
  1626. },
  1627. "rules_python_publish_deps_311_charset_normalizer_cp311_cp311_musllinux_1_2_aarch64_47334db7": {
  1628. "repoRuleId": "@@rules_python+//python/private/pypi:whl_library.bzl%whl_library",
  1629. "attributes": {
  1630. "dep_template": "@rules_python_publish_deps//{name}:{target}",
  1631. "experimental_target_platforms": [
  1632. "cp311_linux_aarch64",
  1633. "cp311_linux_arm",
  1634. "cp311_linux_ppc",
  1635. "cp311_linux_s390x",
  1636. "cp311_linux_x86_64",
  1637. "cp311_osx_aarch64",
  1638. "cp311_osx_x86_64",
  1639. "cp311_windows_x86_64"
  1640. ],
  1641. "filename": "charset_normalizer-3.4.0-cp311-cp311-musllinux_1_2_aarch64.whl",
  1642. "python_interpreter_target": "@@rules_python++python+python_3_11_host//:python",
  1643. "repo": "rules_python_publish_deps_311",
  1644. "requirement": "charset-normalizer==3.4.0",
  1645. "sha256": "47334db71978b23ebcf3c0f9f5ee98b8d65992b65c9c4f2d34c2eaf5bcaf0594",
  1646. "urls": [
  1647. "https://files.pythonhosted.org/packages/d7/a1/493919799446464ed0299c8eef3c3fad0daf1c3cd48bff9263c731b0d9e2/charset_normalizer-3.4.0-cp311-cp311-musllinux_1_2_aarch64.whl"
  1648. ]
  1649. }
  1650. },
  1651. "rules_python_publish_deps_311_charset_normalizer_cp311_cp311_musllinux_1_2_ppc64le_f1a2f519": {
  1652. "repoRuleId": "@@rules_python+//python/private/pypi:whl_library.bzl%whl_library",
  1653. "attributes": {
  1654. "dep_template": "@rules_python_publish_deps//{name}:{target}",
  1655. "experimental_target_platforms": [
  1656. "cp311_linux_aarch64",
  1657. "cp311_linux_arm",
  1658. "cp311_linux_ppc",
  1659. "cp311_linux_s390x",
  1660. "cp311_linux_x86_64",
  1661. "cp311_osx_aarch64",
  1662. "cp311_osx_x86_64",
  1663. "cp311_windows_x86_64"
  1664. ],
  1665. "filename": "charset_normalizer-3.4.0-cp311-cp311-musllinux_1_2_ppc64le.whl",
  1666. "python_interpreter_target": "@@rules_python++python+python_3_11_host//:python",
  1667. "repo": "rules_python_publish_deps_311",
  1668. "requirement": "charset-normalizer==3.4.0",
  1669. "sha256": "f1a2f519ae173b5b6a2c9d5fa3116ce16e48b3462c8b96dfdded11055e3d6365",
  1670. "urls": [
  1671. "https://files.pythonhosted.org/packages/75/d2/0ab54463d3410709c09266dfb416d032a08f97fd7d60e94b8c6ef54ae14b/charset_normalizer-3.4.0-cp311-cp311-musllinux_1_2_ppc64le.whl"
  1672. ]
  1673. }
  1674. },
  1675. "rules_python_publish_deps_311_charset_normalizer_cp311_cp311_musllinux_1_2_s390x_63bc5c4a": {
  1676. "repoRuleId": "@@rules_python+//python/private/pypi:whl_library.bzl%whl_library",
  1677. "attributes": {
  1678. "dep_template": "@rules_python_publish_deps//{name}:{target}",
  1679. "experimental_target_platforms": [
  1680. "cp311_linux_aarch64",
  1681. "cp311_linux_arm",
  1682. "cp311_linux_ppc",
  1683. "cp311_linux_s390x",
  1684. "cp311_linux_x86_64",
  1685. "cp311_osx_aarch64",
  1686. "cp311_osx_x86_64",
  1687. "cp311_windows_x86_64"
  1688. ],
  1689. "filename": "charset_normalizer-3.4.0-cp311-cp311-musllinux_1_2_s390x.whl",
  1690. "python_interpreter_target": "@@rules_python++python+python_3_11_host//:python",
  1691. "repo": "rules_python_publish_deps_311",
  1692. "requirement": "charset-normalizer==3.4.0",
  1693. "sha256": "63bc5c4ae26e4bc6be6469943b8253c0fd4e4186c43ad46e713ea61a0ba49129",
  1694. "urls": [
  1695. "https://files.pythonhosted.org/packages/8d/c9/27e41d481557be53d51e60750b85aa40eaf52b841946b3cdeff363105737/charset_normalizer-3.4.0-cp311-cp311-musllinux_1_2_s390x.whl"
  1696. ]
  1697. }
  1698. },
  1699. "rules_python_publish_deps_311_charset_normalizer_cp311_cp311_musllinux_1_2_x86_64_bcb4f8ea": {
  1700. "repoRuleId": "@@rules_python+//python/private/pypi:whl_library.bzl%whl_library",
  1701. "attributes": {
  1702. "dep_template": "@rules_python_publish_deps//{name}:{target}",
  1703. "experimental_target_platforms": [
  1704. "cp311_linux_aarch64",
  1705. "cp311_linux_arm",
  1706. "cp311_linux_ppc",
  1707. "cp311_linux_s390x",
  1708. "cp311_linux_x86_64",
  1709. "cp311_osx_aarch64",
  1710. "cp311_osx_x86_64",
  1711. "cp311_windows_x86_64"
  1712. ],
  1713. "filename": "charset_normalizer-3.4.0-cp311-cp311-musllinux_1_2_x86_64.whl",
  1714. "python_interpreter_target": "@@rules_python++python+python_3_11_host//:python",
  1715. "repo": "rules_python_publish_deps_311",
  1716. "requirement": "charset-normalizer==3.4.0",
  1717. "sha256": "bcb4f8ea87d03bc51ad04add8ceaf9b0f085ac045ab4d74e73bbc2dc033f0236",
  1718. "urls": [
  1719. "https://files.pythonhosted.org/packages/ee/44/4f62042ca8cdc0cabf87c0fc00ae27cd8b53ab68be3605ba6d071f742ad3/charset_normalizer-3.4.0-cp311-cp311-musllinux_1_2_x86_64.whl"
  1720. ]
  1721. }
  1722. },
  1723. "rules_python_publish_deps_311_charset_normalizer_cp311_cp311_win_amd64_cee4373f": {
  1724. "repoRuleId": "@@rules_python+//python/private/pypi:whl_library.bzl%whl_library",
  1725. "attributes": {
  1726. "dep_template": "@rules_python_publish_deps//{name}:{target}",
  1727. "experimental_target_platforms": [
  1728. "cp311_linux_aarch64",
  1729. "cp311_linux_arm",
  1730. "cp311_linux_ppc",
  1731. "cp311_linux_s390x",
  1732. "cp311_linux_x86_64",
  1733. "cp311_osx_aarch64",
  1734. "cp311_osx_x86_64",
  1735. "cp311_windows_x86_64"
  1736. ],
  1737. "filename": "charset_normalizer-3.4.0-cp311-cp311-win_amd64.whl",
  1738. "python_interpreter_target": "@@rules_python++python+python_3_11_host//:python",
  1739. "repo": "rules_python_publish_deps_311",
  1740. "requirement": "charset-normalizer==3.4.0",
  1741. "sha256": "cee4373f4d3ad28f1ab6290684d8e2ebdb9e7a1b74fdc39e4c211995f77bec27",
  1742. "urls": [
  1743. "https://files.pythonhosted.org/packages/0b/6e/b13bd47fa9023b3699e94abf565b5a2f0b0be6e9ddac9812182596ee62e4/charset_normalizer-3.4.0-cp311-cp311-win_amd64.whl"
  1744. ]
  1745. }
  1746. },
  1747. "rules_python_publish_deps_311_charset_normalizer_py3_none_any_fe9f97fe": {
  1748. "repoRuleId": "@@rules_python+//python/private/pypi:whl_library.bzl%whl_library",
  1749. "attributes": {
  1750. "dep_template": "@rules_python_publish_deps//{name}:{target}",
  1751. "experimental_target_platforms": [
  1752. "cp311_linux_aarch64",
  1753. "cp311_linux_arm",
  1754. "cp311_linux_ppc",
  1755. "cp311_linux_s390x",
  1756. "cp311_linux_x86_64",
  1757. "cp311_osx_aarch64",
  1758. "cp311_osx_x86_64",
  1759. "cp311_windows_x86_64"
  1760. ],
  1761. "filename": "charset_normalizer-3.4.0-py3-none-any.whl",
  1762. "python_interpreter_target": "@@rules_python++python+python_3_11_host//:python",
  1763. "repo": "rules_python_publish_deps_311",
  1764. "requirement": "charset-normalizer==3.4.0",
  1765. "sha256": "fe9f97feb71aa9896b81973a7bbada8c49501dc73e58a10fcef6663af95e5079",
  1766. "urls": [
  1767. "https://files.pythonhosted.org/packages/bf/9b/08c0432272d77b04803958a4598a51e2a4b51c06640af8b8f0f908c18bf2/charset_normalizer-3.4.0-py3-none-any.whl"
  1768. ]
  1769. }
  1770. },
  1771. "rules_python_publish_deps_311_charset_normalizer_sdist_223217c3": {
  1772. "repoRuleId": "@@rules_python+//python/private/pypi:whl_library.bzl%whl_library",
  1773. "attributes": {
  1774. "dep_template": "@rules_python_publish_deps//{name}:{target}",
  1775. "experimental_target_platforms": [
  1776. "cp311_linux_aarch64",
  1777. "cp311_linux_arm",
  1778. "cp311_linux_ppc",
  1779. "cp311_linux_s390x",
  1780. "cp311_linux_x86_64",
  1781. "cp311_osx_aarch64",
  1782. "cp311_osx_x86_64",
  1783. "cp311_windows_x86_64"
  1784. ],
  1785. "extra_pip_args": [
  1786. "--index-url",
  1787. "https://pypi.org/simple"
  1788. ],
  1789. "filename": "charset_normalizer-3.4.0.tar.gz",
  1790. "python_interpreter_target": "@@rules_python++python+python_3_11_host//:python",
  1791. "repo": "rules_python_publish_deps_311",
  1792. "requirement": "charset-normalizer==3.4.0",
  1793. "sha256": "223217c3d4f82c3ac5e29032b3f1c2eb0fb591b72161f86d93f5719079dae93e",
  1794. "urls": [
  1795. "https://files.pythonhosted.org/packages/f2/4f/e1808dc01273379acc506d18f1504eb2d299bd4131743b9fc54d7be4df1e/charset_normalizer-3.4.0.tar.gz"
  1796. ]
  1797. }
  1798. },
  1799. "rules_python_publish_deps_311_cryptography_cp39_abi3_manylinux_2_17_aarch64_846da004": {
  1800. "repoRuleId": "@@rules_python+//python/private/pypi:whl_library.bzl%whl_library",
  1801. "attributes": {
  1802. "dep_template": "@rules_python_publish_deps//{name}:{target}",
  1803. "experimental_target_platforms": [
  1804. "cp311_linux_aarch64",
  1805. "cp311_linux_arm",
  1806. "cp311_linux_ppc",
  1807. "cp311_linux_s390x",
  1808. "cp311_linux_x86_64"
  1809. ],
  1810. "filename": "cryptography-43.0.3-cp39-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
  1811. "python_interpreter_target": "@@rules_python++python+python_3_11_host//:python",
  1812. "repo": "rules_python_publish_deps_311",
  1813. "requirement": "cryptography==43.0.3",
  1814. "sha256": "846da004a5804145a5f441b8530b4bf35afbf7da70f82409f151695b127213d5",
  1815. "urls": [
  1816. "https://files.pythonhosted.org/packages/2f/78/55356eb9075d0be6e81b59f45c7b48df87f76a20e73893872170471f3ee8/cryptography-43.0.3-cp39-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.whl"
  1817. ]
  1818. }
  1819. },
  1820. "rules_python_publish_deps_311_cryptography_cp39_abi3_manylinux_2_17_x86_64_0f996e72": {
  1821. "repoRuleId": "@@rules_python+//python/private/pypi:whl_library.bzl%whl_library",
  1822. "attributes": {
  1823. "dep_template": "@rules_python_publish_deps//{name}:{target}",
  1824. "experimental_target_platforms": [
  1825. "cp311_linux_aarch64",
  1826. "cp311_linux_arm",
  1827. "cp311_linux_ppc",
  1828. "cp311_linux_s390x",
  1829. "cp311_linux_x86_64"
  1830. ],
  1831. "filename": "cryptography-43.0.3-cp39-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
  1832. "python_interpreter_target": "@@rules_python++python+python_3_11_host//:python",
  1833. "repo": "rules_python_publish_deps_311",
  1834. "requirement": "cryptography==43.0.3",
  1835. "sha256": "0f996e7268af62598f2fc1204afa98a3b5712313a55c4c9d434aef49cadc91d4",
  1836. "urls": [
  1837. "https://files.pythonhosted.org/packages/2a/2c/488776a3dc843f95f86d2f957ca0fc3407d0242b50bede7fad1e339be03f/cryptography-43.0.3-cp39-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl"
  1838. ]
  1839. }
  1840. },
  1841. "rules_python_publish_deps_311_cryptography_cp39_abi3_manylinux_2_28_aarch64_f7b178f1": {
  1842. "repoRuleId": "@@rules_python+//python/private/pypi:whl_library.bzl%whl_library",
  1843. "attributes": {
  1844. "dep_template": "@rules_python_publish_deps//{name}:{target}",
  1845. "experimental_target_platforms": [
  1846. "cp311_linux_aarch64",
  1847. "cp311_linux_arm",
  1848. "cp311_linux_ppc",
  1849. "cp311_linux_s390x",
  1850. "cp311_linux_x86_64"
  1851. ],
  1852. "filename": "cryptography-43.0.3-cp39-abi3-manylinux_2_28_aarch64.whl",
  1853. "python_interpreter_target": "@@rules_python++python+python_3_11_host//:python",
  1854. "repo": "rules_python_publish_deps_311",
  1855. "requirement": "cryptography==43.0.3",
  1856. "sha256": "f7b178f11ed3664fd0e995a47ed2b5ff0a12d893e41dd0494f406d1cf555cab7",
  1857. "urls": [
  1858. "https://files.pythonhosted.org/packages/7c/04/2345ca92f7a22f601a9c62961741ef7dd0127c39f7310dffa0041c80f16f/cryptography-43.0.3-cp39-abi3-manylinux_2_28_aarch64.whl"
  1859. ]
  1860. }
  1861. },
  1862. "rules_python_publish_deps_311_cryptography_cp39_abi3_manylinux_2_28_x86_64_c2e6fc39": {
  1863. "repoRuleId": "@@rules_python+//python/private/pypi:whl_library.bzl%whl_library",
  1864. "attributes": {
  1865. "dep_template": "@rules_python_publish_deps//{name}:{target}",
  1866. "experimental_target_platforms": [
  1867. "cp311_linux_aarch64",
  1868. "cp311_linux_arm",
  1869. "cp311_linux_ppc",
  1870. "cp311_linux_s390x",
  1871. "cp311_linux_x86_64"
  1872. ],
  1873. "filename": "cryptography-43.0.3-cp39-abi3-manylinux_2_28_x86_64.whl",
  1874. "python_interpreter_target": "@@rules_python++python+python_3_11_host//:python",
  1875. "repo": "rules_python_publish_deps_311",
  1876. "requirement": "cryptography==43.0.3",
  1877. "sha256": "c2e6fc39c4ab499049df3bdf567f768a723a5e8464816e8f009f121a5a9f4405",
  1878. "urls": [
  1879. "https://files.pythonhosted.org/packages/ac/25/e715fa0bc24ac2114ed69da33adf451a38abb6f3f24ec207908112e9ba53/cryptography-43.0.3-cp39-abi3-manylinux_2_28_x86_64.whl"
  1880. ]
  1881. }
  1882. },
  1883. "rules_python_publish_deps_311_cryptography_cp39_abi3_musllinux_1_2_aarch64_e1be4655": {
  1884. "repoRuleId": "@@rules_python+//python/private/pypi:whl_library.bzl%whl_library",
  1885. "attributes": {
  1886. "dep_template": "@rules_python_publish_deps//{name}:{target}",
  1887. "experimental_target_platforms": [
  1888. "cp311_linux_aarch64",
  1889. "cp311_linux_arm",
  1890. "cp311_linux_ppc",
  1891. "cp311_linux_s390x",
  1892. "cp311_linux_x86_64"
  1893. ],
  1894. "filename": "cryptography-43.0.3-cp39-abi3-musllinux_1_2_aarch64.whl",
  1895. "python_interpreter_target": "@@rules_python++python+python_3_11_host//:python",
  1896. "repo": "rules_python_publish_deps_311",
  1897. "requirement": "cryptography==43.0.3",
  1898. "sha256": "e1be4655c7ef6e1bbe6b5d0403526601323420bcf414598955968c9ef3eb7d16",
  1899. "urls": [
  1900. "https://files.pythonhosted.org/packages/21/ce/b9c9ff56c7164d8e2edfb6c9305045fbc0df4508ccfdb13ee66eb8c95b0e/cryptography-43.0.3-cp39-abi3-musllinux_1_2_aarch64.whl"
  1901. ]
  1902. }
  1903. },
  1904. "rules_python_publish_deps_311_cryptography_cp39_abi3_musllinux_1_2_x86_64_df6b6c6d": {
  1905. "repoRuleId": "@@rules_python+//python/private/pypi:whl_library.bzl%whl_library",
  1906. "attributes": {
  1907. "dep_template": "@rules_python_publish_deps//{name}:{target}",
  1908. "experimental_target_platforms": [
  1909. "cp311_linux_aarch64",
  1910. "cp311_linux_arm",
  1911. "cp311_linux_ppc",
  1912. "cp311_linux_s390x",
  1913. "cp311_linux_x86_64"
  1914. ],
  1915. "filename": "cryptography-43.0.3-cp39-abi3-musllinux_1_2_x86_64.whl",
  1916. "python_interpreter_target": "@@rules_python++python+python_3_11_host//:python",
  1917. "repo": "rules_python_publish_deps_311",
  1918. "requirement": "cryptography==43.0.3",
  1919. "sha256": "df6b6c6d742395dd77a23ea3728ab62f98379eff8fb61be2744d4679ab678f73",
  1920. "urls": [
  1921. "https://files.pythonhosted.org/packages/2a/33/b3682992ab2e9476b9c81fff22f02c8b0a1e6e1d49ee1750a67d85fd7ed2/cryptography-43.0.3-cp39-abi3-musllinux_1_2_x86_64.whl"
  1922. ]
  1923. }
  1924. },
  1925. "rules_python_publish_deps_311_cryptography_sdist_315b9001": {
  1926. "repoRuleId": "@@rules_python+//python/private/pypi:whl_library.bzl%whl_library",
  1927. "attributes": {
  1928. "dep_template": "@rules_python_publish_deps//{name}:{target}",
  1929. "experimental_target_platforms": [
  1930. "cp311_linux_aarch64",
  1931. "cp311_linux_arm",
  1932. "cp311_linux_ppc",
  1933. "cp311_linux_s390x",
  1934. "cp311_linux_x86_64"
  1935. ],
  1936. "extra_pip_args": [
  1937. "--index-url",
  1938. "https://pypi.org/simple"
  1939. ],
  1940. "filename": "cryptography-43.0.3.tar.gz",
  1941. "python_interpreter_target": "@@rules_python++python+python_3_11_host//:python",
  1942. "repo": "rules_python_publish_deps_311",
  1943. "requirement": "cryptography==43.0.3",
  1944. "sha256": "315b9001266a492a6ff443b61238f956b214dbec9910a081ba5b6646a055a805",
  1945. "urls": [
  1946. "https://files.pythonhosted.org/packages/0d/05/07b55d1fa21ac18c3a8c79f764e2514e6f6a9698f1be44994f5adf0d29db/cryptography-43.0.3.tar.gz"
  1947. ]
  1948. }
  1949. },
  1950. "rules_python_publish_deps_311_docutils_py3_none_any_dafca5b9": {
  1951. "repoRuleId": "@@rules_python+//python/private/pypi:whl_library.bzl%whl_library",
  1952. "attributes": {
  1953. "dep_template": "@rules_python_publish_deps//{name}:{target}",
  1954. "experimental_target_platforms": [
  1955. "cp311_linux_aarch64",
  1956. "cp311_linux_arm",
  1957. "cp311_linux_ppc",
  1958. "cp311_linux_s390x",
  1959. "cp311_linux_x86_64",
  1960. "cp311_osx_aarch64",
  1961. "cp311_osx_x86_64",
  1962. "cp311_windows_x86_64"
  1963. ],
  1964. "filename": "docutils-0.21.2-py3-none-any.whl",
  1965. "python_interpreter_target": "@@rules_python++python+python_3_11_host//:python",
  1966. "repo": "rules_python_publish_deps_311",
  1967. "requirement": "docutils==0.21.2",
  1968. "sha256": "dafca5b9e384f0e419294eb4d2ff9fa826435bf15f15b7bd45723e8ad76811b2",
  1969. "urls": [
  1970. "https://files.pythonhosted.org/packages/8f/d7/9322c609343d929e75e7e5e6255e614fcc67572cfd083959cdef3b7aad79/docutils-0.21.2-py3-none-any.whl"
  1971. ]
  1972. }
  1973. },
  1974. "rules_python_publish_deps_311_docutils_sdist_3a6b1873": {
  1975. "repoRuleId": "@@rules_python+//python/private/pypi:whl_library.bzl%whl_library",
  1976. "attributes": {
  1977. "dep_template": "@rules_python_publish_deps//{name}:{target}",
  1978. "experimental_target_platforms": [
  1979. "cp311_linux_aarch64",
  1980. "cp311_linux_arm",
  1981. "cp311_linux_ppc",
  1982. "cp311_linux_s390x",
  1983. "cp311_linux_x86_64",
  1984. "cp311_osx_aarch64",
  1985. "cp311_osx_x86_64",
  1986. "cp311_windows_x86_64"
  1987. ],
  1988. "extra_pip_args": [
  1989. "--index-url",
  1990. "https://pypi.org/simple"
  1991. ],
  1992. "filename": "docutils-0.21.2.tar.gz",
  1993. "python_interpreter_target": "@@rules_python++python+python_3_11_host//:python",
  1994. "repo": "rules_python_publish_deps_311",
  1995. "requirement": "docutils==0.21.2",
  1996. "sha256": "3a6b18732edf182daa3cd12775bbb338cf5691468f91eeeb109deff6ebfa986f",
  1997. "urls": [
  1998. "https://files.pythonhosted.org/packages/ae/ed/aefcc8cd0ba62a0560c3c18c33925362d46c6075480bfa4df87b28e169a9/docutils-0.21.2.tar.gz"
  1999. ]
  2000. }
  2001. },
  2002. "rules_python_publish_deps_311_idna_py3_none_any_946d195a": {
  2003. "repoRuleId": "@@rules_python+//python/private/pypi:whl_library.bzl%whl_library",
  2004. "attributes": {
  2005. "dep_template": "@rules_python_publish_deps//{name}:{target}",
  2006. "experimental_target_platforms": [
  2007. "cp311_linux_aarch64",
  2008. "cp311_linux_arm",
  2009. "cp311_linux_ppc",
  2010. "cp311_linux_s390x",
  2011. "cp311_linux_x86_64",
  2012. "cp311_osx_aarch64",
  2013. "cp311_osx_x86_64",
  2014. "cp311_windows_x86_64"
  2015. ],
  2016. "filename": "idna-3.10-py3-none-any.whl",
  2017. "python_interpreter_target": "@@rules_python++python+python_3_11_host//:python",
  2018. "repo": "rules_python_publish_deps_311",
  2019. "requirement": "idna==3.10",
  2020. "sha256": "946d195a0d259cbba61165e88e65941f16e9b36ea6ddb97f00452bae8b1287d3",
  2021. "urls": [
  2022. "https://files.pythonhosted.org/packages/76/c6/c88e154df9c4e1a2a66ccf0005a88dfb2650c1dffb6f5ce603dfbd452ce3/idna-3.10-py3-none-any.whl"
  2023. ]
  2024. }
  2025. },
  2026. "rules_python_publish_deps_311_idna_sdist_12f65c9b": {
  2027. "repoRuleId": "@@rules_python+//python/private/pypi:whl_library.bzl%whl_library",
  2028. "attributes": {
  2029. "dep_template": "@rules_python_publish_deps//{name}:{target}",
  2030. "experimental_target_platforms": [
  2031. "cp311_linux_aarch64",
  2032. "cp311_linux_arm",
  2033. "cp311_linux_ppc",
  2034. "cp311_linux_s390x",
  2035. "cp311_linux_x86_64",
  2036. "cp311_osx_aarch64",
  2037. "cp311_osx_x86_64",
  2038. "cp311_windows_x86_64"
  2039. ],
  2040. "extra_pip_args": [
  2041. "--index-url",
  2042. "https://pypi.org/simple"
  2043. ],
  2044. "filename": "idna-3.10.tar.gz",
  2045. "python_interpreter_target": "@@rules_python++python+python_3_11_host//:python",
  2046. "repo": "rules_python_publish_deps_311",
  2047. "requirement": "idna==3.10",
  2048. "sha256": "12f65c9b470abda6dc35cf8e63cc574b1c52b11df2c86030af0ac09b01b13ea9",
  2049. "urls": [
  2050. "https://files.pythonhosted.org/packages/f1/70/7703c29685631f5a7590aa73f1f1d3fa9a380e654b86af429e0934a32f7d/idna-3.10.tar.gz"
  2051. ]
  2052. }
  2053. },
  2054. "rules_python_publish_deps_311_importlib_metadata_py3_none_any_45e54197": {
  2055. "repoRuleId": "@@rules_python+//python/private/pypi:whl_library.bzl%whl_library",
  2056. "attributes": {
  2057. "dep_template": "@rules_python_publish_deps//{name}:{target}",
  2058. "experimental_target_platforms": [
  2059. "cp311_linux_aarch64",
  2060. "cp311_linux_arm",
  2061. "cp311_linux_ppc",
  2062. "cp311_linux_s390x",
  2063. "cp311_linux_x86_64",
  2064. "cp311_osx_aarch64",
  2065. "cp311_osx_x86_64",
  2066. "cp311_windows_x86_64"
  2067. ],
  2068. "filename": "importlib_metadata-8.5.0-py3-none-any.whl",
  2069. "python_interpreter_target": "@@rules_python++python+python_3_11_host//:python",
  2070. "repo": "rules_python_publish_deps_311",
  2071. "requirement": "importlib-metadata==8.5.0",
  2072. "sha256": "45e54197d28b7a7f1559e60b95e7c567032b602131fbd588f1497f47880aa68b",
  2073. "urls": [
  2074. "https://files.pythonhosted.org/packages/a0/d9/a1e041c5e7caa9a05c925f4bdbdfb7f006d1f74996af53467bc394c97be7/importlib_metadata-8.5.0-py3-none-any.whl"
  2075. ]
  2076. }
  2077. },
  2078. "rules_python_publish_deps_311_importlib_metadata_sdist_71522656": {
  2079. "repoRuleId": "@@rules_python+//python/private/pypi:whl_library.bzl%whl_library",
  2080. "attributes": {
  2081. "dep_template": "@rules_python_publish_deps//{name}:{target}",
  2082. "experimental_target_platforms": [
  2083. "cp311_linux_aarch64",
  2084. "cp311_linux_arm",
  2085. "cp311_linux_ppc",
  2086. "cp311_linux_s390x",
  2087. "cp311_linux_x86_64",
  2088. "cp311_osx_aarch64",
  2089. "cp311_osx_x86_64",
  2090. "cp311_windows_x86_64"
  2091. ],
  2092. "extra_pip_args": [
  2093. "--index-url",
  2094. "https://pypi.org/simple"
  2095. ],
  2096. "filename": "importlib_metadata-8.5.0.tar.gz",
  2097. "python_interpreter_target": "@@rules_python++python+python_3_11_host//:python",
  2098. "repo": "rules_python_publish_deps_311",
  2099. "requirement": "importlib-metadata==8.5.0",
  2100. "sha256": "71522656f0abace1d072b9e5481a48f07c138e00f079c38c8f883823f9c26bd7",
  2101. "urls": [
  2102. "https://files.pythonhosted.org/packages/cd/12/33e59336dca5be0c398a7482335911a33aa0e20776128f038019f1a95f1b/importlib_metadata-8.5.0.tar.gz"
  2103. ]
  2104. }
  2105. },
  2106. "rules_python_publish_deps_311_jaraco_classes_py3_none_any_f662826b": {
  2107. "repoRuleId": "@@rules_python+//python/private/pypi:whl_library.bzl%whl_library",
  2108. "attributes": {
  2109. "dep_template": "@rules_python_publish_deps//{name}:{target}",
  2110. "experimental_target_platforms": [
  2111. "cp311_linux_aarch64",
  2112. "cp311_linux_arm",
  2113. "cp311_linux_ppc",
  2114. "cp311_linux_s390x",
  2115. "cp311_linux_x86_64",
  2116. "cp311_osx_aarch64",
  2117. "cp311_osx_x86_64",
  2118. "cp311_windows_x86_64"
  2119. ],
  2120. "filename": "jaraco.classes-3.4.0-py3-none-any.whl",
  2121. "python_interpreter_target": "@@rules_python++python+python_3_11_host//:python",
  2122. "repo": "rules_python_publish_deps_311",
  2123. "requirement": "jaraco-classes==3.4.0",
  2124. "sha256": "f662826b6bed8cace05e7ff873ce0f9283b5c924470fe664fff1c2f00f581790",
  2125. "urls": [
  2126. "https://files.pythonhosted.org/packages/7f/66/b15ce62552d84bbfcec9a4873ab79d993a1dd4edb922cbfccae192bd5b5f/jaraco.classes-3.4.0-py3-none-any.whl"
  2127. ]
  2128. }
  2129. },
  2130. "rules_python_publish_deps_311_jaraco_classes_sdist_47a024b5": {
  2131. "repoRuleId": "@@rules_python+//python/private/pypi:whl_library.bzl%whl_library",
  2132. "attributes": {
  2133. "dep_template": "@rules_python_publish_deps//{name}:{target}",
  2134. "experimental_target_platforms": [
  2135. "cp311_linux_aarch64",
  2136. "cp311_linux_arm",
  2137. "cp311_linux_ppc",
  2138. "cp311_linux_s390x",
  2139. "cp311_linux_x86_64",
  2140. "cp311_osx_aarch64",
  2141. "cp311_osx_x86_64",
  2142. "cp311_windows_x86_64"
  2143. ],
  2144. "extra_pip_args": [
  2145. "--index-url",
  2146. "https://pypi.org/simple"
  2147. ],
  2148. "filename": "jaraco.classes-3.4.0.tar.gz",
  2149. "python_interpreter_target": "@@rules_python++python+python_3_11_host//:python",
  2150. "repo": "rules_python_publish_deps_311",
  2151. "requirement": "jaraco-classes==3.4.0",
  2152. "sha256": "47a024b51d0239c0dd8c8540c6c7f484be3b8fcf0b2d85c13825780d3b3f3acd",
  2153. "urls": [
  2154. "https://files.pythonhosted.org/packages/06/c0/ed4a27bc5571b99e3cff68f8a9fa5b56ff7df1c2251cc715a652ddd26402/jaraco.classes-3.4.0.tar.gz"
  2155. ]
  2156. }
  2157. },
  2158. "rules_python_publish_deps_311_jaraco_context_py3_none_any_f797fc48": {
  2159. "repoRuleId": "@@rules_python+//python/private/pypi:whl_library.bzl%whl_library",
  2160. "attributes": {
  2161. "dep_template": "@rules_python_publish_deps//{name}:{target}",
  2162. "experimental_target_platforms": [
  2163. "cp311_linux_aarch64",
  2164. "cp311_linux_arm",
  2165. "cp311_linux_ppc",
  2166. "cp311_linux_s390x",
  2167. "cp311_linux_x86_64",
  2168. "cp311_osx_aarch64",
  2169. "cp311_osx_x86_64",
  2170. "cp311_windows_x86_64"
  2171. ],
  2172. "filename": "jaraco.context-6.0.1-py3-none-any.whl",
  2173. "python_interpreter_target": "@@rules_python++python+python_3_11_host//:python",
  2174. "repo": "rules_python_publish_deps_311",
  2175. "requirement": "jaraco-context==6.0.1",
  2176. "sha256": "f797fc481b490edb305122c9181830a3a5b76d84ef6d1aef2fb9b47ab956f9e4",
  2177. "urls": [
  2178. "https://files.pythonhosted.org/packages/ff/db/0c52c4cf5e4bd9f5d7135ec7669a3a767af21b3a308e1ed3674881e52b62/jaraco.context-6.0.1-py3-none-any.whl"
  2179. ]
  2180. }
  2181. },
  2182. "rules_python_publish_deps_311_jaraco_context_sdist_9bae4ea5": {
  2183. "repoRuleId": "@@rules_python+//python/private/pypi:whl_library.bzl%whl_library",
  2184. "attributes": {
  2185. "dep_template": "@rules_python_publish_deps//{name}:{target}",
  2186. "experimental_target_platforms": [
  2187. "cp311_linux_aarch64",
  2188. "cp311_linux_arm",
  2189. "cp311_linux_ppc",
  2190. "cp311_linux_s390x",
  2191. "cp311_linux_x86_64",
  2192. "cp311_osx_aarch64",
  2193. "cp311_osx_x86_64",
  2194. "cp311_windows_x86_64"
  2195. ],
  2196. "extra_pip_args": [
  2197. "--index-url",
  2198. "https://pypi.org/simple"
  2199. ],
  2200. "filename": "jaraco_context-6.0.1.tar.gz",
  2201. "python_interpreter_target": "@@rules_python++python+python_3_11_host//:python",
  2202. "repo": "rules_python_publish_deps_311",
  2203. "requirement": "jaraco-context==6.0.1",
  2204. "sha256": "9bae4ea555cf0b14938dc0aee7c9f32ed303aa20a3b73e7dc80111628792d1b3",
  2205. "urls": [
  2206. "https://files.pythonhosted.org/packages/df/ad/f3777b81bf0b6e7bc7514a1656d3e637b2e8e15fab2ce3235730b3e7a4e6/jaraco_context-6.0.1.tar.gz"
  2207. ]
  2208. }
  2209. },
  2210. "rules_python_publish_deps_311_jaraco_functools_py3_none_any_ad159f13": {
  2211. "repoRuleId": "@@rules_python+//python/private/pypi:whl_library.bzl%whl_library",
  2212. "attributes": {
  2213. "dep_template": "@rules_python_publish_deps//{name}:{target}",
  2214. "experimental_target_platforms": [
  2215. "cp311_linux_aarch64",
  2216. "cp311_linux_arm",
  2217. "cp311_linux_ppc",
  2218. "cp311_linux_s390x",
  2219. "cp311_linux_x86_64",
  2220. "cp311_osx_aarch64",
  2221. "cp311_osx_x86_64",
  2222. "cp311_windows_x86_64"
  2223. ],
  2224. "filename": "jaraco.functools-4.1.0-py3-none-any.whl",
  2225. "python_interpreter_target": "@@rules_python++python+python_3_11_host//:python",
  2226. "repo": "rules_python_publish_deps_311",
  2227. "requirement": "jaraco-functools==4.1.0",
  2228. "sha256": "ad159f13428bc4acbf5541ad6dec511f91573b90fba04df61dafa2a1231cf649",
  2229. "urls": [
  2230. "https://files.pythonhosted.org/packages/9f/4f/24b319316142c44283d7540e76c7b5a6dbd5db623abd86bb7b3491c21018/jaraco.functools-4.1.0-py3-none-any.whl"
  2231. ]
  2232. }
  2233. },
  2234. "rules_python_publish_deps_311_jaraco_functools_sdist_70f7e0e2": {
  2235. "repoRuleId": "@@rules_python+//python/private/pypi:whl_library.bzl%whl_library",
  2236. "attributes": {
  2237. "dep_template": "@rules_python_publish_deps//{name}:{target}",
  2238. "experimental_target_platforms": [
  2239. "cp311_linux_aarch64",
  2240. "cp311_linux_arm",
  2241. "cp311_linux_ppc",
  2242. "cp311_linux_s390x",
  2243. "cp311_linux_x86_64",
  2244. "cp311_osx_aarch64",
  2245. "cp311_osx_x86_64",
  2246. "cp311_windows_x86_64"
  2247. ],
  2248. "extra_pip_args": [
  2249. "--index-url",
  2250. "https://pypi.org/simple"
  2251. ],
  2252. "filename": "jaraco_functools-4.1.0.tar.gz",
  2253. "python_interpreter_target": "@@rules_python++python+python_3_11_host//:python",
  2254. "repo": "rules_python_publish_deps_311",
  2255. "requirement": "jaraco-functools==4.1.0",
  2256. "sha256": "70f7e0e2ae076498e212562325e805204fc092d7b4c17e0e86c959e249701a9d",
  2257. "urls": [
  2258. "https://files.pythonhosted.org/packages/ab/23/9894b3df5d0a6eb44611c36aec777823fc2e07740dabbd0b810e19594013/jaraco_functools-4.1.0.tar.gz"
  2259. ]
  2260. }
  2261. },
  2262. "rules_python_publish_deps_311_jeepney_py3_none_any_c0a454ad": {
  2263. "repoRuleId": "@@rules_python+//python/private/pypi:whl_library.bzl%whl_library",
  2264. "attributes": {
  2265. "dep_template": "@rules_python_publish_deps//{name}:{target}",
  2266. "experimental_target_platforms": [
  2267. "cp311_linux_aarch64",
  2268. "cp311_linux_arm",
  2269. "cp311_linux_ppc",
  2270. "cp311_linux_s390x",
  2271. "cp311_linux_x86_64"
  2272. ],
  2273. "filename": "jeepney-0.8.0-py3-none-any.whl",
  2274. "python_interpreter_target": "@@rules_python++python+python_3_11_host//:python",
  2275. "repo": "rules_python_publish_deps_311",
  2276. "requirement": "jeepney==0.8.0",
  2277. "sha256": "c0a454ad016ca575060802ee4d590dd912e35c122fa04e70306de3d076cce755",
  2278. "urls": [
  2279. "https://files.pythonhosted.org/packages/ae/72/2a1e2290f1ab1e06f71f3d0f1646c9e4634e70e1d37491535e19266e8dc9/jeepney-0.8.0-py3-none-any.whl"
  2280. ]
  2281. }
  2282. },
  2283. "rules_python_publish_deps_311_jeepney_sdist_5efe48d2": {
  2284. "repoRuleId": "@@rules_python+//python/private/pypi:whl_library.bzl%whl_library",
  2285. "attributes": {
  2286. "dep_template": "@rules_python_publish_deps//{name}:{target}",
  2287. "experimental_target_platforms": [
  2288. "cp311_linux_aarch64",
  2289. "cp311_linux_arm",
  2290. "cp311_linux_ppc",
  2291. "cp311_linux_s390x",
  2292. "cp311_linux_x86_64"
  2293. ],
  2294. "extra_pip_args": [
  2295. "--index-url",
  2296. "https://pypi.org/simple"
  2297. ],
  2298. "filename": "jeepney-0.8.0.tar.gz",
  2299. "python_interpreter_target": "@@rules_python++python+python_3_11_host//:python",
  2300. "repo": "rules_python_publish_deps_311",
  2301. "requirement": "jeepney==0.8.0",
  2302. "sha256": "5efe48d255973902f6badc3ce55e2aa6c5c3b3bc642059ef3a91247bcfcc5806",
  2303. "urls": [
  2304. "https://files.pythonhosted.org/packages/d6/f4/154cf374c2daf2020e05c3c6a03c91348d59b23c5366e968feb198306fdf/jeepney-0.8.0.tar.gz"
  2305. ]
  2306. }
  2307. },
  2308. "rules_python_publish_deps_311_keyring_py3_none_any_5426f817": {
  2309. "repoRuleId": "@@rules_python+//python/private/pypi:whl_library.bzl%whl_library",
  2310. "attributes": {
  2311. "dep_template": "@rules_python_publish_deps//{name}:{target}",
  2312. "experimental_target_platforms": [
  2313. "cp311_linux_aarch64",
  2314. "cp311_linux_arm",
  2315. "cp311_linux_ppc",
  2316. "cp311_linux_s390x",
  2317. "cp311_linux_x86_64",
  2318. "cp311_osx_aarch64",
  2319. "cp311_osx_x86_64",
  2320. "cp311_windows_x86_64"
  2321. ],
  2322. "filename": "keyring-25.4.1-py3-none-any.whl",
  2323. "python_interpreter_target": "@@rules_python++python+python_3_11_host//:python",
  2324. "repo": "rules_python_publish_deps_311",
  2325. "requirement": "keyring==25.4.1",
  2326. "sha256": "5426f817cf7f6f007ba5ec722b1bcad95a75b27d780343772ad76b17cb47b0bf",
  2327. "urls": [
  2328. "https://files.pythonhosted.org/packages/83/25/e6d59e5f0a0508d0dca8bb98c7f7fd3772fc943ac3f53d5ab18a218d32c0/keyring-25.4.1-py3-none-any.whl"
  2329. ]
  2330. }
  2331. },
  2332. "rules_python_publish_deps_311_keyring_sdist_b07ebc55": {
  2333. "repoRuleId": "@@rules_python+//python/private/pypi:whl_library.bzl%whl_library",
  2334. "attributes": {
  2335. "dep_template": "@rules_python_publish_deps//{name}:{target}",
  2336. "experimental_target_platforms": [
  2337. "cp311_linux_aarch64",
  2338. "cp311_linux_arm",
  2339. "cp311_linux_ppc",
  2340. "cp311_linux_s390x",
  2341. "cp311_linux_x86_64",
  2342. "cp311_osx_aarch64",
  2343. "cp311_osx_x86_64",
  2344. "cp311_windows_x86_64"
  2345. ],
  2346. "extra_pip_args": [
  2347. "--index-url",
  2348. "https://pypi.org/simple"
  2349. ],
  2350. "filename": "keyring-25.4.1.tar.gz",
  2351. "python_interpreter_target": "@@rules_python++python+python_3_11_host//:python",
  2352. "repo": "rules_python_publish_deps_311",
  2353. "requirement": "keyring==25.4.1",
  2354. "sha256": "b07ebc55f3e8ed86ac81dd31ef14e81ace9dd9c3d4b5d77a6e9a2016d0d71a1b",
  2355. "urls": [
  2356. "https://files.pythonhosted.org/packages/a5/1c/2bdbcfd5d59dc6274ffb175bc29aa07ecbfab196830e0cfbde7bd861a2ea/keyring-25.4.1.tar.gz"
  2357. ]
  2358. }
  2359. },
  2360. "rules_python_publish_deps_311_markdown_it_py_py3_none_any_35521684": {
  2361. "repoRuleId": "@@rules_python+//python/private/pypi:whl_library.bzl%whl_library",
  2362. "attributes": {
  2363. "dep_template": "@rules_python_publish_deps//{name}:{target}",
  2364. "experimental_target_platforms": [
  2365. "cp311_linux_aarch64",
  2366. "cp311_linux_arm",
  2367. "cp311_linux_ppc",
  2368. "cp311_linux_s390x",
  2369. "cp311_linux_x86_64",
  2370. "cp311_osx_aarch64",
  2371. "cp311_osx_x86_64",
  2372. "cp311_windows_x86_64"
  2373. ],
  2374. "filename": "markdown_it_py-3.0.0-py3-none-any.whl",
  2375. "python_interpreter_target": "@@rules_python++python+python_3_11_host//:python",
  2376. "repo": "rules_python_publish_deps_311",
  2377. "requirement": "markdown-it-py==3.0.0",
  2378. "sha256": "355216845c60bd96232cd8d8c40e8f9765cc86f46880e43a8fd22dc1a1a8cab1",
  2379. "urls": [
  2380. "https://files.pythonhosted.org/packages/42/d7/1ec15b46af6af88f19b8e5ffea08fa375d433c998b8a7639e76935c14f1f/markdown_it_py-3.0.0-py3-none-any.whl"
  2381. ]
  2382. }
  2383. },
  2384. "rules_python_publish_deps_311_markdown_it_py_sdist_e3f60a94": {
  2385. "repoRuleId": "@@rules_python+//python/private/pypi:whl_library.bzl%whl_library",
  2386. "attributes": {
  2387. "dep_template": "@rules_python_publish_deps//{name}:{target}",
  2388. "experimental_target_platforms": [
  2389. "cp311_linux_aarch64",
  2390. "cp311_linux_arm",
  2391. "cp311_linux_ppc",
  2392. "cp311_linux_s390x",
  2393. "cp311_linux_x86_64",
  2394. "cp311_osx_aarch64",
  2395. "cp311_osx_x86_64",
  2396. "cp311_windows_x86_64"
  2397. ],
  2398. "extra_pip_args": [
  2399. "--index-url",
  2400. "https://pypi.org/simple"
  2401. ],
  2402. "filename": "markdown-it-py-3.0.0.tar.gz",
  2403. "python_interpreter_target": "@@rules_python++python+python_3_11_host//:python",
  2404. "repo": "rules_python_publish_deps_311",
  2405. "requirement": "markdown-it-py==3.0.0",
  2406. "sha256": "e3f60a94fa066dc52ec76661e37c851cb232d92f9886b15cb560aaada2df8feb",
  2407. "urls": [
  2408. "https://files.pythonhosted.org/packages/38/71/3b932df36c1a044d397a1f92d1cf91ee0a503d91e470cbd670aa66b07ed0/markdown-it-py-3.0.0.tar.gz"
  2409. ]
  2410. }
  2411. },
  2412. "rules_python_publish_deps_311_mdurl_py3_none_any_84008a41": {
  2413. "repoRuleId": "@@rules_python+//python/private/pypi:whl_library.bzl%whl_library",
  2414. "attributes": {
  2415. "dep_template": "@rules_python_publish_deps//{name}:{target}",
  2416. "experimental_target_platforms": [
  2417. "cp311_linux_aarch64",
  2418. "cp311_linux_arm",
  2419. "cp311_linux_ppc",
  2420. "cp311_linux_s390x",
  2421. "cp311_linux_x86_64",
  2422. "cp311_osx_aarch64",
  2423. "cp311_osx_x86_64",
  2424. "cp311_windows_x86_64"
  2425. ],
  2426. "filename": "mdurl-0.1.2-py3-none-any.whl",
  2427. "python_interpreter_target": "@@rules_python++python+python_3_11_host//:python",
  2428. "repo": "rules_python_publish_deps_311",
  2429. "requirement": "mdurl==0.1.2",
  2430. "sha256": "84008a41e51615a49fc9966191ff91509e3c40b939176e643fd50a5c2196b8f8",
  2431. "urls": [
  2432. "https://files.pythonhosted.org/packages/b3/38/89ba8ad64ae25be8de66a6d463314cf1eb366222074cfda9ee839c56a4b4/mdurl-0.1.2-py3-none-any.whl"
  2433. ]
  2434. }
  2435. },
  2436. "rules_python_publish_deps_311_mdurl_sdist_bb413d29": {
  2437. "repoRuleId": "@@rules_python+//python/private/pypi:whl_library.bzl%whl_library",
  2438. "attributes": {
  2439. "dep_template": "@rules_python_publish_deps//{name}:{target}",
  2440. "experimental_target_platforms": [
  2441. "cp311_linux_aarch64",
  2442. "cp311_linux_arm",
  2443. "cp311_linux_ppc",
  2444. "cp311_linux_s390x",
  2445. "cp311_linux_x86_64",
  2446. "cp311_osx_aarch64",
  2447. "cp311_osx_x86_64",
  2448. "cp311_windows_x86_64"
  2449. ],
  2450. "extra_pip_args": [
  2451. "--index-url",
  2452. "https://pypi.org/simple"
  2453. ],
  2454. "filename": "mdurl-0.1.2.tar.gz",
  2455. "python_interpreter_target": "@@rules_python++python+python_3_11_host//:python",
  2456. "repo": "rules_python_publish_deps_311",
  2457. "requirement": "mdurl==0.1.2",
  2458. "sha256": "bb413d29f5eea38f31dd4754dd7377d4465116fb207585f97bf925588687c1ba",
  2459. "urls": [
  2460. "https://files.pythonhosted.org/packages/d6/54/cfe61301667036ec958cb99bd3efefba235e65cdeb9c84d24a8293ba1d90/mdurl-0.1.2.tar.gz"
  2461. ]
  2462. }
  2463. },
  2464. "rules_python_publish_deps_311_more_itertools_py3_none_any_037b0d32": {
  2465. "repoRuleId": "@@rules_python+//python/private/pypi:whl_library.bzl%whl_library",
  2466. "attributes": {
  2467. "dep_template": "@rules_python_publish_deps//{name}:{target}",
  2468. "experimental_target_platforms": [
  2469. "cp311_linux_aarch64",
  2470. "cp311_linux_arm",
  2471. "cp311_linux_ppc",
  2472. "cp311_linux_s390x",
  2473. "cp311_linux_x86_64",
  2474. "cp311_osx_aarch64",
  2475. "cp311_osx_x86_64",
  2476. "cp311_windows_x86_64"
  2477. ],
  2478. "filename": "more_itertools-10.5.0-py3-none-any.whl",
  2479. "python_interpreter_target": "@@rules_python++python+python_3_11_host//:python",
  2480. "repo": "rules_python_publish_deps_311",
  2481. "requirement": "more-itertools==10.5.0",
  2482. "sha256": "037b0d3203ce90cca8ab1defbbdac29d5f993fc20131f3664dc8d6acfa872aef",
  2483. "urls": [
  2484. "https://files.pythonhosted.org/packages/48/7e/3a64597054a70f7c86eb0a7d4fc315b8c1ab932f64883a297bdffeb5f967/more_itertools-10.5.0-py3-none-any.whl"
  2485. ]
  2486. }
  2487. },
  2488. "rules_python_publish_deps_311_more_itertools_sdist_5482bfef": {
  2489. "repoRuleId": "@@rules_python+//python/private/pypi:whl_library.bzl%whl_library",
  2490. "attributes": {
  2491. "dep_template": "@rules_python_publish_deps//{name}:{target}",
  2492. "experimental_target_platforms": [
  2493. "cp311_linux_aarch64",
  2494. "cp311_linux_arm",
  2495. "cp311_linux_ppc",
  2496. "cp311_linux_s390x",
  2497. "cp311_linux_x86_64",
  2498. "cp311_osx_aarch64",
  2499. "cp311_osx_x86_64",
  2500. "cp311_windows_x86_64"
  2501. ],
  2502. "extra_pip_args": [
  2503. "--index-url",
  2504. "https://pypi.org/simple"
  2505. ],
  2506. "filename": "more-itertools-10.5.0.tar.gz",
  2507. "python_interpreter_target": "@@rules_python++python+python_3_11_host//:python",
  2508. "repo": "rules_python_publish_deps_311",
  2509. "requirement": "more-itertools==10.5.0",
  2510. "sha256": "5482bfef7849c25dc3c6dd53a6173ae4795da2a41a80faea6700d9f5846c5da6",
  2511. "urls": [
  2512. "https://files.pythonhosted.org/packages/51/78/65922308c4248e0eb08ebcbe67c95d48615cc6f27854b6f2e57143e9178f/more-itertools-10.5.0.tar.gz"
  2513. ]
  2514. }
  2515. },
  2516. "rules_python_publish_deps_311_nh3_cp37_abi3_macosx_10_12_x86_64_14c5a72e": {
  2517. "repoRuleId": "@@rules_python+//python/private/pypi:whl_library.bzl%whl_library",
  2518. "attributes": {
  2519. "dep_template": "@rules_python_publish_deps//{name}:{target}",
  2520. "experimental_target_platforms": [
  2521. "cp311_linux_aarch64",
  2522. "cp311_linux_arm",
  2523. "cp311_linux_ppc",
  2524. "cp311_linux_s390x",
  2525. "cp311_linux_x86_64",
  2526. "cp311_osx_aarch64",
  2527. "cp311_osx_x86_64",
  2528. "cp311_windows_x86_64"
  2529. ],
  2530. "filename": "nh3-0.2.18-cp37-abi3-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl",
  2531. "python_interpreter_target": "@@rules_python++python+python_3_11_host//:python",
  2532. "repo": "rules_python_publish_deps_311",
  2533. "requirement": "nh3==0.2.18",
  2534. "sha256": "14c5a72e9fe82aea5fe3072116ad4661af5cf8e8ff8fc5ad3450f123e4925e86",
  2535. "urls": [
  2536. "https://files.pythonhosted.org/packages/b3/89/1daff5d9ba5a95a157c092c7c5f39b8dd2b1ddb4559966f808d31cfb67e0/nh3-0.2.18-cp37-abi3-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl"
  2537. ]
  2538. }
  2539. },
  2540. "rules_python_publish_deps_311_nh3_cp37_abi3_macosx_10_12_x86_64_7b7c2a3c": {
  2541. "repoRuleId": "@@rules_python+//python/private/pypi:whl_library.bzl%whl_library",
  2542. "attributes": {
  2543. "dep_template": "@rules_python_publish_deps//{name}:{target}",
  2544. "experimental_target_platforms": [
  2545. "cp311_linux_aarch64",
  2546. "cp311_linux_arm",
  2547. "cp311_linux_ppc",
  2548. "cp311_linux_s390x",
  2549. "cp311_linux_x86_64",
  2550. "cp311_osx_aarch64",
  2551. "cp311_osx_x86_64",
  2552. "cp311_windows_x86_64"
  2553. ],
  2554. "filename": "nh3-0.2.18-cp37-abi3-macosx_10_12_x86_64.whl",
  2555. "python_interpreter_target": "@@rules_python++python+python_3_11_host//:python",
  2556. "repo": "rules_python_publish_deps_311",
  2557. "requirement": "nh3==0.2.18",
  2558. "sha256": "7b7c2a3c9eb1a827d42539aa64091640bd275b81e097cd1d8d82ef91ffa2e811",
  2559. "urls": [
  2560. "https://files.pythonhosted.org/packages/2c/b6/42fc3c69cabf86b6b81e4c051a9b6e249c5ba9f8155590222c2622961f58/nh3-0.2.18-cp37-abi3-macosx_10_12_x86_64.whl"
  2561. ]
  2562. }
  2563. },
  2564. "rules_python_publish_deps_311_nh3_cp37_abi3_manylinux_2_17_aarch64_42c64511": {
  2565. "repoRuleId": "@@rules_python+//python/private/pypi:whl_library.bzl%whl_library",
  2566. "attributes": {
  2567. "dep_template": "@rules_python_publish_deps//{name}:{target}",
  2568. "experimental_target_platforms": [
  2569. "cp311_linux_aarch64",
  2570. "cp311_linux_arm",
  2571. "cp311_linux_ppc",
  2572. "cp311_linux_s390x",
  2573. "cp311_linux_x86_64",
  2574. "cp311_osx_aarch64",
  2575. "cp311_osx_x86_64",
  2576. "cp311_windows_x86_64"
  2577. ],
  2578. "filename": "nh3-0.2.18-cp37-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
  2579. "python_interpreter_target": "@@rules_python++python+python_3_11_host//:python",
  2580. "repo": "rules_python_publish_deps_311",
  2581. "requirement": "nh3==0.2.18",
  2582. "sha256": "42c64511469005058cd17cc1537578eac40ae9f7200bedcfd1fc1a05f4f8c200",
  2583. "urls": [
  2584. "https://files.pythonhosted.org/packages/45/b9/833f385403abaf0023c6547389ec7a7acf141ddd9d1f21573723a6eab39a/nh3-0.2.18-cp37-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.whl"
  2585. ]
  2586. }
  2587. },
  2588. "rules_python_publish_deps_311_nh3_cp37_abi3_manylinux_2_17_armv7l_0411beb0": {
  2589. "repoRuleId": "@@rules_python+//python/private/pypi:whl_library.bzl%whl_library",
  2590. "attributes": {
  2591. "dep_template": "@rules_python_publish_deps//{name}:{target}",
  2592. "experimental_target_platforms": [
  2593. "cp311_linux_aarch64",
  2594. "cp311_linux_arm",
  2595. "cp311_linux_ppc",
  2596. "cp311_linux_s390x",
  2597. "cp311_linux_x86_64",
  2598. "cp311_osx_aarch64",
  2599. "cp311_osx_x86_64",
  2600. "cp311_windows_x86_64"
  2601. ],
  2602. "filename": "nh3-0.2.18-cp37-abi3-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
  2603. "python_interpreter_target": "@@rules_python++python+python_3_11_host//:python",
  2604. "repo": "rules_python_publish_deps_311",
  2605. "requirement": "nh3==0.2.18",
  2606. "sha256": "0411beb0589eacb6734f28d5497ca2ed379eafab8ad8c84b31bb5c34072b7164",
  2607. "urls": [
  2608. "https://files.pythonhosted.org/packages/05/2b/85977d9e11713b5747595ee61f381bc820749daf83f07b90b6c9964cf932/nh3-0.2.18-cp37-abi3-manylinux_2_17_armv7l.manylinux2014_armv7l.whl"
  2609. ]
  2610. }
  2611. },
  2612. "rules_python_publish_deps_311_nh3_cp37_abi3_manylinux_2_17_ppc64_5f36b271": {
  2613. "repoRuleId": "@@rules_python+//python/private/pypi:whl_library.bzl%whl_library",
  2614. "attributes": {
  2615. "dep_template": "@rules_python_publish_deps//{name}:{target}",
  2616. "experimental_target_platforms": [
  2617. "cp311_linux_aarch64",
  2618. "cp311_linux_arm",
  2619. "cp311_linux_ppc",
  2620. "cp311_linux_s390x",
  2621. "cp311_linux_x86_64",
  2622. "cp311_osx_aarch64",
  2623. "cp311_osx_x86_64",
  2624. "cp311_windows_x86_64"
  2625. ],
  2626. "filename": "nh3-0.2.18-cp37-abi3-manylinux_2_17_ppc64.manylinux2014_ppc64.whl",
  2627. "python_interpreter_target": "@@rules_python++python+python_3_11_host//:python",
  2628. "repo": "rules_python_publish_deps_311",
  2629. "requirement": "nh3==0.2.18",
  2630. "sha256": "5f36b271dae35c465ef5e9090e1fdaba4a60a56f0bb0ba03e0932a66f28b9189",
  2631. "urls": [
  2632. "https://files.pythonhosted.org/packages/72/f2/5c894d5265ab80a97c68ca36f25c8f6f0308abac649aaf152b74e7e854a8/nh3-0.2.18-cp37-abi3-manylinux_2_17_ppc64.manylinux2014_ppc64.whl"
  2633. ]
  2634. }
  2635. },
  2636. "rules_python_publish_deps_311_nh3_cp37_abi3_manylinux_2_17_ppc64le_34c03fa7": {
  2637. "repoRuleId": "@@rules_python+//python/private/pypi:whl_library.bzl%whl_library",
  2638. "attributes": {
  2639. "dep_template": "@rules_python_publish_deps//{name}:{target}",
  2640. "experimental_target_platforms": [
  2641. "cp311_linux_aarch64",
  2642. "cp311_linux_arm",
  2643. "cp311_linux_ppc",
  2644. "cp311_linux_s390x",
  2645. "cp311_linux_x86_64",
  2646. "cp311_osx_aarch64",
  2647. "cp311_osx_x86_64",
  2648. "cp311_windows_x86_64"
  2649. ],
  2650. "filename": "nh3-0.2.18-cp37-abi3-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
  2651. "python_interpreter_target": "@@rules_python++python+python_3_11_host//:python",
  2652. "repo": "rules_python_publish_deps_311",
  2653. "requirement": "nh3==0.2.18",
  2654. "sha256": "34c03fa78e328c691f982b7c03d4423bdfd7da69cd707fe572f544cf74ac23ad",
  2655. "urls": [
  2656. "https://files.pythonhosted.org/packages/ab/a7/375afcc710dbe2d64cfbd69e31f82f3e423d43737258af01f6a56d844085/nh3-0.2.18-cp37-abi3-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl"
  2657. ]
  2658. }
  2659. },
  2660. "rules_python_publish_deps_311_nh3_cp37_abi3_manylinux_2_17_s390x_19aaba96": {
  2661. "repoRuleId": "@@rules_python+//python/private/pypi:whl_library.bzl%whl_library",
  2662. "attributes": {
  2663. "dep_template": "@rules_python_publish_deps//{name}:{target}",
  2664. "experimental_target_platforms": [
  2665. "cp311_linux_aarch64",
  2666. "cp311_linux_arm",
  2667. "cp311_linux_ppc",
  2668. "cp311_linux_s390x",
  2669. "cp311_linux_x86_64",
  2670. "cp311_osx_aarch64",
  2671. "cp311_osx_x86_64",
  2672. "cp311_windows_x86_64"
  2673. ],
  2674. "filename": "nh3-0.2.18-cp37-abi3-manylinux_2_17_s390x.manylinux2014_s390x.whl",
  2675. "python_interpreter_target": "@@rules_python++python+python_3_11_host//:python",
  2676. "repo": "rules_python_publish_deps_311",
  2677. "requirement": "nh3==0.2.18",
  2678. "sha256": "19aaba96e0f795bd0a6c56291495ff59364f4300d4a39b29a0abc9cb3774a84b",
  2679. "urls": [
  2680. "https://files.pythonhosted.org/packages/c2/a8/3bb02d0c60a03ad3a112b76c46971e9480efa98a8946677b5a59f60130ca/nh3-0.2.18-cp37-abi3-manylinux_2_17_s390x.manylinux2014_s390x.whl"
  2681. ]
  2682. }
  2683. },
  2684. "rules_python_publish_deps_311_nh3_cp37_abi3_manylinux_2_17_x86_64_de3ceed6": {
  2685. "repoRuleId": "@@rules_python+//python/private/pypi:whl_library.bzl%whl_library",
  2686. "attributes": {
  2687. "dep_template": "@rules_python_publish_deps//{name}:{target}",
  2688. "experimental_target_platforms": [
  2689. "cp311_linux_aarch64",
  2690. "cp311_linux_arm",
  2691. "cp311_linux_ppc",
  2692. "cp311_linux_s390x",
  2693. "cp311_linux_x86_64",
  2694. "cp311_osx_aarch64",
  2695. "cp311_osx_x86_64",
  2696. "cp311_windows_x86_64"
  2697. ],
  2698. "filename": "nh3-0.2.18-cp37-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
  2699. "python_interpreter_target": "@@rules_python++python+python_3_11_host//:python",
  2700. "repo": "rules_python_publish_deps_311",
  2701. "requirement": "nh3==0.2.18",
  2702. "sha256": "de3ceed6e661954871d6cd78b410213bdcb136f79aafe22aa7182e028b8c7307",
  2703. "urls": [
  2704. "https://files.pythonhosted.org/packages/1b/63/6ab90d0e5225ab9780f6c9fb52254fa36b52bb7c188df9201d05b647e5e1/nh3-0.2.18-cp37-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl"
  2705. ]
  2706. }
  2707. },
  2708. "rules_python_publish_deps_311_nh3_cp37_abi3_musllinux_1_2_aarch64_f0eca9ca": {
  2709. "repoRuleId": "@@rules_python+//python/private/pypi:whl_library.bzl%whl_library",
  2710. "attributes": {
  2711. "dep_template": "@rules_python_publish_deps//{name}:{target}",
  2712. "experimental_target_platforms": [
  2713. "cp311_linux_aarch64",
  2714. "cp311_linux_arm",
  2715. "cp311_linux_ppc",
  2716. "cp311_linux_s390x",
  2717. "cp311_linux_x86_64",
  2718. "cp311_osx_aarch64",
  2719. "cp311_osx_x86_64",
  2720. "cp311_windows_x86_64"
  2721. ],
  2722. "filename": "nh3-0.2.18-cp37-abi3-musllinux_1_2_aarch64.whl",
  2723. "python_interpreter_target": "@@rules_python++python+python_3_11_host//:python",
  2724. "repo": "rules_python_publish_deps_311",
  2725. "requirement": "nh3==0.2.18",
  2726. "sha256": "f0eca9ca8628dbb4e916ae2491d72957fdd35f7a5d326b7032a345f111ac07fe",
  2727. "urls": [
  2728. "https://files.pythonhosted.org/packages/a3/da/0c4e282bc3cff4a0adf37005fa1fb42257673fbc1bbf7d1ff639ec3d255a/nh3-0.2.18-cp37-abi3-musllinux_1_2_aarch64.whl"
  2729. ]
  2730. }
  2731. },
  2732. "rules_python_publish_deps_311_nh3_cp37_abi3_musllinux_1_2_armv7l_3a157ab1": {
  2733. "repoRuleId": "@@rules_python+//python/private/pypi:whl_library.bzl%whl_library",
  2734. "attributes": {
  2735. "dep_template": "@rules_python_publish_deps//{name}:{target}",
  2736. "experimental_target_platforms": [
  2737. "cp311_linux_aarch64",
  2738. "cp311_linux_arm",
  2739. "cp311_linux_ppc",
  2740. "cp311_linux_s390x",
  2741. "cp311_linux_x86_64",
  2742. "cp311_osx_aarch64",
  2743. "cp311_osx_x86_64",
  2744. "cp311_windows_x86_64"
  2745. ],
  2746. "filename": "nh3-0.2.18-cp37-abi3-musllinux_1_2_armv7l.whl",
  2747. "python_interpreter_target": "@@rules_python++python+python_3_11_host//:python",
  2748. "repo": "rules_python_publish_deps_311",
  2749. "requirement": "nh3==0.2.18",
  2750. "sha256": "3a157ab149e591bb638a55c8c6bcb8cdb559c8b12c13a8affaba6cedfe51713a",
  2751. "urls": [
  2752. "https://files.pythonhosted.org/packages/de/81/c291231463d21da5f8bba82c8167a6d6893cc5419b0639801ee5d3aeb8a9/nh3-0.2.18-cp37-abi3-musllinux_1_2_armv7l.whl"
  2753. ]
  2754. }
  2755. },
  2756. "rules_python_publish_deps_311_nh3_cp37_abi3_musllinux_1_2_x86_64_36c95d4b": {
  2757. "repoRuleId": "@@rules_python+//python/private/pypi:whl_library.bzl%whl_library",
  2758. "attributes": {
  2759. "dep_template": "@rules_python_publish_deps//{name}:{target}",
  2760. "experimental_target_platforms": [
  2761. "cp311_linux_aarch64",
  2762. "cp311_linux_arm",
  2763. "cp311_linux_ppc",
  2764. "cp311_linux_s390x",
  2765. "cp311_linux_x86_64",
  2766. "cp311_osx_aarch64",
  2767. "cp311_osx_x86_64",
  2768. "cp311_windows_x86_64"
  2769. ],
  2770. "filename": "nh3-0.2.18-cp37-abi3-musllinux_1_2_x86_64.whl",
  2771. "python_interpreter_target": "@@rules_python++python+python_3_11_host//:python",
  2772. "repo": "rules_python_publish_deps_311",
  2773. "requirement": "nh3==0.2.18",
  2774. "sha256": "36c95d4b70530b320b365659bb5034341316e6a9b30f0b25fa9c9eff4c27a204",
  2775. "urls": [
  2776. "https://files.pythonhosted.org/packages/eb/61/73a007c74c37895fdf66e0edcd881f5eaa17a348ff02f4bb4bc906d61085/nh3-0.2.18-cp37-abi3-musllinux_1_2_x86_64.whl"
  2777. ]
  2778. }
  2779. },
  2780. "rules_python_publish_deps_311_nh3_cp37_abi3_win_amd64_8ce0f819": {
  2781. "repoRuleId": "@@rules_python+//python/private/pypi:whl_library.bzl%whl_library",
  2782. "attributes": {
  2783. "dep_template": "@rules_python_publish_deps//{name}:{target}",
  2784. "experimental_target_platforms": [
  2785. "cp311_linux_aarch64",
  2786. "cp311_linux_arm",
  2787. "cp311_linux_ppc",
  2788. "cp311_linux_s390x",
  2789. "cp311_linux_x86_64",
  2790. "cp311_osx_aarch64",
  2791. "cp311_osx_x86_64",
  2792. "cp311_windows_x86_64"
  2793. ],
  2794. "filename": "nh3-0.2.18-cp37-abi3-win_amd64.whl",
  2795. "python_interpreter_target": "@@rules_python++python+python_3_11_host//:python",
  2796. "repo": "rules_python_publish_deps_311",
  2797. "requirement": "nh3==0.2.18",
  2798. "sha256": "8ce0f819d2f1933953fca255db2471ad58184a60508f03e6285e5114b6254844",
  2799. "urls": [
  2800. "https://files.pythonhosted.org/packages/26/8d/53c5b19c4999bdc6ba95f246f4ef35ca83d7d7423e5e38be43ad66544e5d/nh3-0.2.18-cp37-abi3-win_amd64.whl"
  2801. ]
  2802. }
  2803. },
  2804. "rules_python_publish_deps_311_nh3_sdist_94a16692": {
  2805. "repoRuleId": "@@rules_python+//python/private/pypi:whl_library.bzl%whl_library",
  2806. "attributes": {
  2807. "dep_template": "@rules_python_publish_deps//{name}:{target}",
  2808. "experimental_target_platforms": [
  2809. "cp311_linux_aarch64",
  2810. "cp311_linux_arm",
  2811. "cp311_linux_ppc",
  2812. "cp311_linux_s390x",
  2813. "cp311_linux_x86_64",
  2814. "cp311_osx_aarch64",
  2815. "cp311_osx_x86_64",
  2816. "cp311_windows_x86_64"
  2817. ],
  2818. "extra_pip_args": [
  2819. "--index-url",
  2820. "https://pypi.org/simple"
  2821. ],
  2822. "filename": "nh3-0.2.18.tar.gz",
  2823. "python_interpreter_target": "@@rules_python++python+python_3_11_host//:python",
  2824. "repo": "rules_python_publish_deps_311",
  2825. "requirement": "nh3==0.2.18",
  2826. "sha256": "94a166927e53972a9698af9542ace4e38b9de50c34352b962f4d9a7d4c927af4",
  2827. "urls": [
  2828. "https://files.pythonhosted.org/packages/62/73/10df50b42ddb547a907deeb2f3c9823022580a7a47281e8eae8e003a9639/nh3-0.2.18.tar.gz"
  2829. ]
  2830. }
  2831. },
  2832. "rules_python_publish_deps_311_pkginfo_py3_none_any_889a6da2": {
  2833. "repoRuleId": "@@rules_python+//python/private/pypi:whl_library.bzl%whl_library",
  2834. "attributes": {
  2835. "dep_template": "@rules_python_publish_deps//{name}:{target}",
  2836. "experimental_target_platforms": [
  2837. "cp311_linux_aarch64",
  2838. "cp311_linux_arm",
  2839. "cp311_linux_ppc",
  2840. "cp311_linux_s390x",
  2841. "cp311_linux_x86_64",
  2842. "cp311_osx_aarch64",
  2843. "cp311_osx_x86_64",
  2844. "cp311_windows_x86_64"
  2845. ],
  2846. "filename": "pkginfo-1.10.0-py3-none-any.whl",
  2847. "python_interpreter_target": "@@rules_python++python+python_3_11_host//:python",
  2848. "repo": "rules_python_publish_deps_311",
  2849. "requirement": "pkginfo==1.10.0",
  2850. "sha256": "889a6da2ed7ffc58ab5b900d888ddce90bce912f2d2de1dc1c26f4cb9fe65097",
  2851. "urls": [
  2852. "https://files.pythonhosted.org/packages/56/09/054aea9b7534a15ad38a363a2bd974c20646ab1582a387a95b8df1bfea1c/pkginfo-1.10.0-py3-none-any.whl"
  2853. ]
  2854. }
  2855. },
  2856. "rules_python_publish_deps_311_pkginfo_sdist_5df73835": {
  2857. "repoRuleId": "@@rules_python+//python/private/pypi:whl_library.bzl%whl_library",
  2858. "attributes": {
  2859. "dep_template": "@rules_python_publish_deps//{name}:{target}",
  2860. "experimental_target_platforms": [
  2861. "cp311_linux_aarch64",
  2862. "cp311_linux_arm",
  2863. "cp311_linux_ppc",
  2864. "cp311_linux_s390x",
  2865. "cp311_linux_x86_64",
  2866. "cp311_osx_aarch64",
  2867. "cp311_osx_x86_64",
  2868. "cp311_windows_x86_64"
  2869. ],
  2870. "extra_pip_args": [
  2871. "--index-url",
  2872. "https://pypi.org/simple"
  2873. ],
  2874. "filename": "pkginfo-1.10.0.tar.gz",
  2875. "python_interpreter_target": "@@rules_python++python+python_3_11_host//:python",
  2876. "repo": "rules_python_publish_deps_311",
  2877. "requirement": "pkginfo==1.10.0",
  2878. "sha256": "5df73835398d10db79f8eecd5cd86b1f6d29317589ea70796994d49399af6297",
  2879. "urls": [
  2880. "https://files.pythonhosted.org/packages/2f/72/347ec5be4adc85c182ed2823d8d1c7b51e13b9a6b0c1aae59582eca652df/pkginfo-1.10.0.tar.gz"
  2881. ]
  2882. }
  2883. },
  2884. "rules_python_publish_deps_311_pycparser_py3_none_any_c3702b6d": {
  2885. "repoRuleId": "@@rules_python+//python/private/pypi:whl_library.bzl%whl_library",
  2886. "attributes": {
  2887. "dep_template": "@rules_python_publish_deps//{name}:{target}",
  2888. "experimental_target_platforms": [
  2889. "cp311_linux_aarch64",
  2890. "cp311_linux_arm",
  2891. "cp311_linux_ppc",
  2892. "cp311_linux_s390x",
  2893. "cp311_linux_x86_64"
  2894. ],
  2895. "filename": "pycparser-2.22-py3-none-any.whl",
  2896. "python_interpreter_target": "@@rules_python++python+python_3_11_host//:python",
  2897. "repo": "rules_python_publish_deps_311",
  2898. "requirement": "pycparser==2.22",
  2899. "sha256": "c3702b6d3dd8c7abc1afa565d7e63d53a1d0bd86cdc24edd75470f4de499cfcc",
  2900. "urls": [
  2901. "https://files.pythonhosted.org/packages/13/a3/a812df4e2dd5696d1f351d58b8fe16a405b234ad2886a0dab9183fb78109/pycparser-2.22-py3-none-any.whl"
  2902. ]
  2903. }
  2904. },
  2905. "rules_python_publish_deps_311_pycparser_sdist_491c8be9": {
  2906. "repoRuleId": "@@rules_python+//python/private/pypi:whl_library.bzl%whl_library",
  2907. "attributes": {
  2908. "dep_template": "@rules_python_publish_deps//{name}:{target}",
  2909. "experimental_target_platforms": [
  2910. "cp311_linux_aarch64",
  2911. "cp311_linux_arm",
  2912. "cp311_linux_ppc",
  2913. "cp311_linux_s390x",
  2914. "cp311_linux_x86_64"
  2915. ],
  2916. "extra_pip_args": [
  2917. "--index-url",
  2918. "https://pypi.org/simple"
  2919. ],
  2920. "filename": "pycparser-2.22.tar.gz",
  2921. "python_interpreter_target": "@@rules_python++python+python_3_11_host//:python",
  2922. "repo": "rules_python_publish_deps_311",
  2923. "requirement": "pycparser==2.22",
  2924. "sha256": "491c8be9c040f5390f5bf44a5b07752bd07f56edf992381b05c701439eec10f6",
  2925. "urls": [
  2926. "https://files.pythonhosted.org/packages/1d/b2/31537cf4b1ca988837256c910a668b553fceb8f069bedc4b1c826024b52c/pycparser-2.22.tar.gz"
  2927. ]
  2928. }
  2929. },
  2930. "rules_python_publish_deps_311_pygments_py3_none_any_b8e6aca0": {
  2931. "repoRuleId": "@@rules_python+//python/private/pypi:whl_library.bzl%whl_library",
  2932. "attributes": {
  2933. "dep_template": "@rules_python_publish_deps//{name}:{target}",
  2934. "experimental_target_platforms": [
  2935. "cp311_linux_aarch64",
  2936. "cp311_linux_arm",
  2937. "cp311_linux_ppc",
  2938. "cp311_linux_s390x",
  2939. "cp311_linux_x86_64",
  2940. "cp311_osx_aarch64",
  2941. "cp311_osx_x86_64",
  2942. "cp311_windows_x86_64"
  2943. ],
  2944. "filename": "pygments-2.18.0-py3-none-any.whl",
  2945. "python_interpreter_target": "@@rules_python++python+python_3_11_host//:python",
  2946. "repo": "rules_python_publish_deps_311",
  2947. "requirement": "pygments==2.18.0",
  2948. "sha256": "b8e6aca0523f3ab76fee51799c488e38782ac06eafcf95e7ba832985c8e7b13a",
  2949. "urls": [
  2950. "https://files.pythonhosted.org/packages/f7/3f/01c8b82017c199075f8f788d0d906b9ffbbc5a47dc9918a945e13d5a2bda/pygments-2.18.0-py3-none-any.whl"
  2951. ]
  2952. }
  2953. },
  2954. "rules_python_publish_deps_311_pygments_sdist_786ff802": {
  2955. "repoRuleId": "@@rules_python+//python/private/pypi:whl_library.bzl%whl_library",
  2956. "attributes": {
  2957. "dep_template": "@rules_python_publish_deps//{name}:{target}",
  2958. "experimental_target_platforms": [
  2959. "cp311_linux_aarch64",
  2960. "cp311_linux_arm",
  2961. "cp311_linux_ppc",
  2962. "cp311_linux_s390x",
  2963. "cp311_linux_x86_64",
  2964. "cp311_osx_aarch64",
  2965. "cp311_osx_x86_64",
  2966. "cp311_windows_x86_64"
  2967. ],
  2968. "extra_pip_args": [
  2969. "--index-url",
  2970. "https://pypi.org/simple"
  2971. ],
  2972. "filename": "pygments-2.18.0.tar.gz",
  2973. "python_interpreter_target": "@@rules_python++python+python_3_11_host//:python",
  2974. "repo": "rules_python_publish_deps_311",
  2975. "requirement": "pygments==2.18.0",
  2976. "sha256": "786ff802f32e91311bff3889f6e9a86e81505fe99f2735bb6d60ae0c5004f199",
  2977. "urls": [
  2978. "https://files.pythonhosted.org/packages/8e/62/8336eff65bcbc8e4cb5d05b55faf041285951b6e80f33e2bff2024788f31/pygments-2.18.0.tar.gz"
  2979. ]
  2980. }
  2981. },
  2982. "rules_python_publish_deps_311_pywin32_ctypes_py3_none_any_8a151337": {
  2983. "repoRuleId": "@@rules_python+//python/private/pypi:whl_library.bzl%whl_library",
  2984. "attributes": {
  2985. "dep_template": "@rules_python_publish_deps//{name}:{target}",
  2986. "experimental_target_platforms": [
  2987. "cp311_windows_x86_64"
  2988. ],
  2989. "filename": "pywin32_ctypes-0.2.3-py3-none-any.whl",
  2990. "python_interpreter_target": "@@rules_python++python+python_3_11_host//:python",
  2991. "repo": "rules_python_publish_deps_311",
  2992. "requirement": "pywin32-ctypes==0.2.3",
  2993. "sha256": "8a1513379d709975552d202d942d9837758905c8d01eb82b8bcc30918929e7b8",
  2994. "urls": [
  2995. "https://files.pythonhosted.org/packages/de/3d/8161f7711c017e01ac9f008dfddd9410dff3674334c233bde66e7ba65bbf/pywin32_ctypes-0.2.3-py3-none-any.whl"
  2996. ]
  2997. }
  2998. },
  2999. "rules_python_publish_deps_311_pywin32_ctypes_sdist_d162dc04": {
  3000. "repoRuleId": "@@rules_python+//python/private/pypi:whl_library.bzl%whl_library",
  3001. "attributes": {
  3002. "dep_template": "@rules_python_publish_deps//{name}:{target}",
  3003. "experimental_target_platforms": [
  3004. "cp311_windows_x86_64"
  3005. ],
  3006. "extra_pip_args": [
  3007. "--index-url",
  3008. "https://pypi.org/simple"
  3009. ],
  3010. "filename": "pywin32-ctypes-0.2.3.tar.gz",
  3011. "python_interpreter_target": "@@rules_python++python+python_3_11_host//:python",
  3012. "repo": "rules_python_publish_deps_311",
  3013. "requirement": "pywin32-ctypes==0.2.3",
  3014. "sha256": "d162dc04946d704503b2edc4d55f3dba5c1d539ead017afa00142c38b9885755",
  3015. "urls": [
  3016. "https://files.pythonhosted.org/packages/85/9f/01a1a99704853cb63f253eea009390c88e7131c67e66a0a02099a8c917cb/pywin32-ctypes-0.2.3.tar.gz"
  3017. ]
  3018. }
  3019. },
  3020. "rules_python_publish_deps_311_readme_renderer_py3_none_any_2fbca89b": {
  3021. "repoRuleId": "@@rules_python+//python/private/pypi:whl_library.bzl%whl_library",
  3022. "attributes": {
  3023. "dep_template": "@rules_python_publish_deps//{name}:{target}",
  3024. "experimental_target_platforms": [
  3025. "cp311_linux_aarch64",
  3026. "cp311_linux_arm",
  3027. "cp311_linux_ppc",
  3028. "cp311_linux_s390x",
  3029. "cp311_linux_x86_64",
  3030. "cp311_osx_aarch64",
  3031. "cp311_osx_x86_64",
  3032. "cp311_windows_x86_64"
  3033. ],
  3034. "filename": "readme_renderer-44.0-py3-none-any.whl",
  3035. "python_interpreter_target": "@@rules_python++python+python_3_11_host//:python",
  3036. "repo": "rules_python_publish_deps_311",
  3037. "requirement": "readme-renderer==44.0",
  3038. "sha256": "2fbca89b81a08526aadf1357a8c2ae889ec05fb03f5da67f9769c9a592166151",
  3039. "urls": [
  3040. "https://files.pythonhosted.org/packages/e1/67/921ec3024056483db83953ae8e48079ad62b92db7880013ca77632921dd0/readme_renderer-44.0-py3-none-any.whl"
  3041. ]
  3042. }
  3043. },
  3044. "rules_python_publish_deps_311_readme_renderer_sdist_8712034e": {
  3045. "repoRuleId": "@@rules_python+//python/private/pypi:whl_library.bzl%whl_library",
  3046. "attributes": {
  3047. "dep_template": "@rules_python_publish_deps//{name}:{target}",
  3048. "experimental_target_platforms": [
  3049. "cp311_linux_aarch64",
  3050. "cp311_linux_arm",
  3051. "cp311_linux_ppc",
  3052. "cp311_linux_s390x",
  3053. "cp311_linux_x86_64",
  3054. "cp311_osx_aarch64",
  3055. "cp311_osx_x86_64",
  3056. "cp311_windows_x86_64"
  3057. ],
  3058. "extra_pip_args": [
  3059. "--index-url",
  3060. "https://pypi.org/simple"
  3061. ],
  3062. "filename": "readme_renderer-44.0.tar.gz",
  3063. "python_interpreter_target": "@@rules_python++python+python_3_11_host//:python",
  3064. "repo": "rules_python_publish_deps_311",
  3065. "requirement": "readme-renderer==44.0",
  3066. "sha256": "8712034eabbfa6805cacf1402b4eeb2a73028f72d1166d6f5cb7f9c047c5d1e1",
  3067. "urls": [
  3068. "https://files.pythonhosted.org/packages/5a/a9/104ec9234c8448c4379768221ea6df01260cd6c2ce13182d4eac531c8342/readme_renderer-44.0.tar.gz"
  3069. ]
  3070. }
  3071. },
  3072. "rules_python_publish_deps_311_requests_py3_none_any_70761cfe": {
  3073. "repoRuleId": "@@rules_python+//python/private/pypi:whl_library.bzl%whl_library",
  3074. "attributes": {
  3075. "dep_template": "@rules_python_publish_deps//{name}:{target}",
  3076. "experimental_target_platforms": [
  3077. "cp311_linux_aarch64",
  3078. "cp311_linux_arm",
  3079. "cp311_linux_ppc",
  3080. "cp311_linux_s390x",
  3081. "cp311_linux_x86_64",
  3082. "cp311_osx_aarch64",
  3083. "cp311_osx_x86_64",
  3084. "cp311_windows_x86_64"
  3085. ],
  3086. "filename": "requests-2.32.3-py3-none-any.whl",
  3087. "python_interpreter_target": "@@rules_python++python+python_3_11_host//:python",
  3088. "repo": "rules_python_publish_deps_311",
  3089. "requirement": "requests==2.32.3",
  3090. "sha256": "70761cfe03c773ceb22aa2f671b4757976145175cdfca038c02654d061d6dcc6",
  3091. "urls": [
  3092. "https://files.pythonhosted.org/packages/f9/9b/335f9764261e915ed497fcdeb11df5dfd6f7bf257d4a6a2a686d80da4d54/requests-2.32.3-py3-none-any.whl"
  3093. ]
  3094. }
  3095. },
  3096. "rules_python_publish_deps_311_requests_sdist_55365417": {
  3097. "repoRuleId": "@@rules_python+//python/private/pypi:whl_library.bzl%whl_library",
  3098. "attributes": {
  3099. "dep_template": "@rules_python_publish_deps//{name}:{target}",
  3100. "experimental_target_platforms": [
  3101. "cp311_linux_aarch64",
  3102. "cp311_linux_arm",
  3103. "cp311_linux_ppc",
  3104. "cp311_linux_s390x",
  3105. "cp311_linux_x86_64",
  3106. "cp311_osx_aarch64",
  3107. "cp311_osx_x86_64",
  3108. "cp311_windows_x86_64"
  3109. ],
  3110. "extra_pip_args": [
  3111. "--index-url",
  3112. "https://pypi.org/simple"
  3113. ],
  3114. "filename": "requests-2.32.3.tar.gz",
  3115. "python_interpreter_target": "@@rules_python++python+python_3_11_host//:python",
  3116. "repo": "rules_python_publish_deps_311",
  3117. "requirement": "requests==2.32.3",
  3118. "sha256": "55365417734eb18255590a9ff9eb97e9e1da868d4ccd6402399eaf68af20a760",
  3119. "urls": [
  3120. "https://files.pythonhosted.org/packages/63/70/2bf7780ad2d390a8d301ad0b550f1581eadbd9a20f896afe06353c2a2913/requests-2.32.3.tar.gz"
  3121. ]
  3122. }
  3123. },
  3124. "rules_python_publish_deps_311_requests_toolbelt_py2_none_any_cccfdd66": {
  3125. "repoRuleId": "@@rules_python+//python/private/pypi:whl_library.bzl%whl_library",
  3126. "attributes": {
  3127. "dep_template": "@rules_python_publish_deps//{name}:{target}",
  3128. "experimental_target_platforms": [
  3129. "cp311_linux_aarch64",
  3130. "cp311_linux_arm",
  3131. "cp311_linux_ppc",
  3132. "cp311_linux_s390x",
  3133. "cp311_linux_x86_64",
  3134. "cp311_osx_aarch64",
  3135. "cp311_osx_x86_64",
  3136. "cp311_windows_x86_64"
  3137. ],
  3138. "filename": "requests_toolbelt-1.0.0-py2.py3-none-any.whl",
  3139. "python_interpreter_target": "@@rules_python++python+python_3_11_host//:python",
  3140. "repo": "rules_python_publish_deps_311",
  3141. "requirement": "requests-toolbelt==1.0.0",
  3142. "sha256": "cccfdd665f0a24fcf4726e690f65639d272bb0637b9b92dfd91a5568ccf6bd06",
  3143. "urls": [
  3144. "https://files.pythonhosted.org/packages/3f/51/d4db610ef29373b879047326cbf6fa98b6c1969d6f6dc423279de2b1be2c/requests_toolbelt-1.0.0-py2.py3-none-any.whl"
  3145. ]
  3146. }
  3147. },
  3148. "rules_python_publish_deps_311_requests_toolbelt_sdist_7681a0a3": {
  3149. "repoRuleId": "@@rules_python+//python/private/pypi:whl_library.bzl%whl_library",
  3150. "attributes": {
  3151. "dep_template": "@rules_python_publish_deps//{name}:{target}",
  3152. "experimental_target_platforms": [
  3153. "cp311_linux_aarch64",
  3154. "cp311_linux_arm",
  3155. "cp311_linux_ppc",
  3156. "cp311_linux_s390x",
  3157. "cp311_linux_x86_64",
  3158. "cp311_osx_aarch64",
  3159. "cp311_osx_x86_64",
  3160. "cp311_windows_x86_64"
  3161. ],
  3162. "extra_pip_args": [
  3163. "--index-url",
  3164. "https://pypi.org/simple"
  3165. ],
  3166. "filename": "requests-toolbelt-1.0.0.tar.gz",
  3167. "python_interpreter_target": "@@rules_python++python+python_3_11_host//:python",
  3168. "repo": "rules_python_publish_deps_311",
  3169. "requirement": "requests-toolbelt==1.0.0",
  3170. "sha256": "7681a0a3d047012b5bdc0ee37d7f8f07ebe76ab08caeccfc3921ce23c88d5bc6",
  3171. "urls": [
  3172. "https://files.pythonhosted.org/packages/f3/61/d7545dafb7ac2230c70d38d31cbfe4cc64f7144dc41f6e4e4b78ecd9f5bb/requests-toolbelt-1.0.0.tar.gz"
  3173. ]
  3174. }
  3175. },
  3176. "rules_python_publish_deps_311_rfc3986_py2_none_any_50b1502b": {
  3177. "repoRuleId": "@@rules_python+//python/private/pypi:whl_library.bzl%whl_library",
  3178. "attributes": {
  3179. "dep_template": "@rules_python_publish_deps//{name}:{target}",
  3180. "experimental_target_platforms": [
  3181. "cp311_linux_aarch64",
  3182. "cp311_linux_arm",
  3183. "cp311_linux_ppc",
  3184. "cp311_linux_s390x",
  3185. "cp311_linux_x86_64",
  3186. "cp311_osx_aarch64",
  3187. "cp311_osx_x86_64",
  3188. "cp311_windows_x86_64"
  3189. ],
  3190. "filename": "rfc3986-2.0.0-py2.py3-none-any.whl",
  3191. "python_interpreter_target": "@@rules_python++python+python_3_11_host//:python",
  3192. "repo": "rules_python_publish_deps_311",
  3193. "requirement": "rfc3986==2.0.0",
  3194. "sha256": "50b1502b60e289cb37883f3dfd34532b8873c7de9f49bb546641ce9cbd256ebd",
  3195. "urls": [
  3196. "https://files.pythonhosted.org/packages/ff/9a/9afaade874b2fa6c752c36f1548f718b5b83af81ed9b76628329dab81c1b/rfc3986-2.0.0-py2.py3-none-any.whl"
  3197. ]
  3198. }
  3199. },
  3200. "rules_python_publish_deps_311_rfc3986_sdist_97aacf9d": {
  3201. "repoRuleId": "@@rules_python+//python/private/pypi:whl_library.bzl%whl_library",
  3202. "attributes": {
  3203. "dep_template": "@rules_python_publish_deps//{name}:{target}",
  3204. "experimental_target_platforms": [
  3205. "cp311_linux_aarch64",
  3206. "cp311_linux_arm",
  3207. "cp311_linux_ppc",
  3208. "cp311_linux_s390x",
  3209. "cp311_linux_x86_64",
  3210. "cp311_osx_aarch64",
  3211. "cp311_osx_x86_64",
  3212. "cp311_windows_x86_64"
  3213. ],
  3214. "extra_pip_args": [
  3215. "--index-url",
  3216. "https://pypi.org/simple"
  3217. ],
  3218. "filename": "rfc3986-2.0.0.tar.gz",
  3219. "python_interpreter_target": "@@rules_python++python+python_3_11_host//:python",
  3220. "repo": "rules_python_publish_deps_311",
  3221. "requirement": "rfc3986==2.0.0",
  3222. "sha256": "97aacf9dbd4bfd829baad6e6309fa6573aaf1be3f6fa735c8ab05e46cecb261c",
  3223. "urls": [
  3224. "https://files.pythonhosted.org/packages/85/40/1520d68bfa07ab5a6f065a186815fb6610c86fe957bc065754e47f7b0840/rfc3986-2.0.0.tar.gz"
  3225. ]
  3226. }
  3227. },
  3228. "rules_python_publish_deps_311_rich_py3_none_any_9836f509": {
  3229. "repoRuleId": "@@rules_python+//python/private/pypi:whl_library.bzl%whl_library",
  3230. "attributes": {
  3231. "dep_template": "@rules_python_publish_deps//{name}:{target}",
  3232. "experimental_target_platforms": [
  3233. "cp311_linux_aarch64",
  3234. "cp311_linux_arm",
  3235. "cp311_linux_ppc",
  3236. "cp311_linux_s390x",
  3237. "cp311_linux_x86_64",
  3238. "cp311_osx_aarch64",
  3239. "cp311_osx_x86_64",
  3240. "cp311_windows_x86_64"
  3241. ],
  3242. "filename": "rich-13.9.3-py3-none-any.whl",
  3243. "python_interpreter_target": "@@rules_python++python+python_3_11_host//:python",
  3244. "repo": "rules_python_publish_deps_311",
  3245. "requirement": "rich==13.9.3",
  3246. "sha256": "9836f5096eb2172c9e77df411c1b009bace4193d6a481d534fea75ebba758283",
  3247. "urls": [
  3248. "https://files.pythonhosted.org/packages/9a/e2/10e9819cf4a20bd8ea2f5dabafc2e6bf4a78d6a0965daeb60a4b34d1c11f/rich-13.9.3-py3-none-any.whl"
  3249. ]
  3250. }
  3251. },
  3252. "rules_python_publish_deps_311_rich_sdist_bc1e01b8": {
  3253. "repoRuleId": "@@rules_python+//python/private/pypi:whl_library.bzl%whl_library",
  3254. "attributes": {
  3255. "dep_template": "@rules_python_publish_deps//{name}:{target}",
  3256. "experimental_target_platforms": [
  3257. "cp311_linux_aarch64",
  3258. "cp311_linux_arm",
  3259. "cp311_linux_ppc",
  3260. "cp311_linux_s390x",
  3261. "cp311_linux_x86_64",
  3262. "cp311_osx_aarch64",
  3263. "cp311_osx_x86_64",
  3264. "cp311_windows_x86_64"
  3265. ],
  3266. "extra_pip_args": [
  3267. "--index-url",
  3268. "https://pypi.org/simple"
  3269. ],
  3270. "filename": "rich-13.9.3.tar.gz",
  3271. "python_interpreter_target": "@@rules_python++python+python_3_11_host//:python",
  3272. "repo": "rules_python_publish_deps_311",
  3273. "requirement": "rich==13.9.3",
  3274. "sha256": "bc1e01b899537598cf02579d2b9f4a415104d3fc439313a7a2c165d76557a08e",
  3275. "urls": [
  3276. "https://files.pythonhosted.org/packages/d9/e9/cf9ef5245d835065e6673781dbd4b8911d352fb770d56cf0879cf11b7ee1/rich-13.9.3.tar.gz"
  3277. ]
  3278. }
  3279. },
  3280. "rules_python_publish_deps_311_secretstorage_py3_none_any_f356e662": {
  3281. "repoRuleId": "@@rules_python+//python/private/pypi:whl_library.bzl%whl_library",
  3282. "attributes": {
  3283. "dep_template": "@rules_python_publish_deps//{name}:{target}",
  3284. "experimental_target_platforms": [
  3285. "cp311_linux_aarch64",
  3286. "cp311_linux_arm",
  3287. "cp311_linux_ppc",
  3288. "cp311_linux_s390x",
  3289. "cp311_linux_x86_64"
  3290. ],
  3291. "filename": "SecretStorage-3.3.3-py3-none-any.whl",
  3292. "python_interpreter_target": "@@rules_python++python+python_3_11_host//:python",
  3293. "repo": "rules_python_publish_deps_311",
  3294. "requirement": "secretstorage==3.3.3",
  3295. "sha256": "f356e6628222568e3af06f2eba8df495efa13b3b63081dafd4f7d9a7b7bc9f99",
  3296. "urls": [
  3297. "https://files.pythonhosted.org/packages/54/24/b4293291fa1dd830f353d2cb163295742fa87f179fcc8a20a306a81978b7/SecretStorage-3.3.3-py3-none-any.whl"
  3298. ]
  3299. }
  3300. },
  3301. "rules_python_publish_deps_311_secretstorage_sdist_2403533e": {
  3302. "repoRuleId": "@@rules_python+//python/private/pypi:whl_library.bzl%whl_library",
  3303. "attributes": {
  3304. "dep_template": "@rules_python_publish_deps//{name}:{target}",
  3305. "experimental_target_platforms": [
  3306. "cp311_linux_aarch64",
  3307. "cp311_linux_arm",
  3308. "cp311_linux_ppc",
  3309. "cp311_linux_s390x",
  3310. "cp311_linux_x86_64"
  3311. ],
  3312. "extra_pip_args": [
  3313. "--index-url",
  3314. "https://pypi.org/simple"
  3315. ],
  3316. "filename": "SecretStorage-3.3.3.tar.gz",
  3317. "python_interpreter_target": "@@rules_python++python+python_3_11_host//:python",
  3318. "repo": "rules_python_publish_deps_311",
  3319. "requirement": "secretstorage==3.3.3",
  3320. "sha256": "2403533ef369eca6d2ba81718576c5e0f564d5cca1b58f73a8b23e7d4eeebd77",
  3321. "urls": [
  3322. "https://files.pythonhosted.org/packages/53/a4/f48c9d79cb507ed1373477dbceaba7401fd8a23af63b837fa61f1dcd3691/SecretStorage-3.3.3.tar.gz"
  3323. ]
  3324. }
  3325. },
  3326. "rules_python_publish_deps_311_twine_py3_none_any_215dbe7b": {
  3327. "repoRuleId": "@@rules_python+//python/private/pypi:whl_library.bzl%whl_library",
  3328. "attributes": {
  3329. "dep_template": "@rules_python_publish_deps//{name}:{target}",
  3330. "experimental_target_platforms": [
  3331. "cp311_linux_aarch64",
  3332. "cp311_linux_arm",
  3333. "cp311_linux_ppc",
  3334. "cp311_linux_s390x",
  3335. "cp311_linux_x86_64",
  3336. "cp311_osx_aarch64",
  3337. "cp311_osx_x86_64",
  3338. "cp311_windows_x86_64"
  3339. ],
  3340. "filename": "twine-5.1.1-py3-none-any.whl",
  3341. "python_interpreter_target": "@@rules_python++python+python_3_11_host//:python",
  3342. "repo": "rules_python_publish_deps_311",
  3343. "requirement": "twine==5.1.1",
  3344. "sha256": "215dbe7b4b94c2c50a7315c0275d2258399280fbb7d04182c7e55e24b5f93997",
  3345. "urls": [
  3346. "https://files.pythonhosted.org/packages/5d/ec/00f9d5fd040ae29867355e559a94e9a8429225a0284a3f5f091a3878bfc0/twine-5.1.1-py3-none-any.whl"
  3347. ]
  3348. }
  3349. },
  3350. "rules_python_publish_deps_311_twine_sdist_9aa08251": {
  3351. "repoRuleId": "@@rules_python+//python/private/pypi:whl_library.bzl%whl_library",
  3352. "attributes": {
  3353. "dep_template": "@rules_python_publish_deps//{name}:{target}",
  3354. "experimental_target_platforms": [
  3355. "cp311_linux_aarch64",
  3356. "cp311_linux_arm",
  3357. "cp311_linux_ppc",
  3358. "cp311_linux_s390x",
  3359. "cp311_linux_x86_64",
  3360. "cp311_osx_aarch64",
  3361. "cp311_osx_x86_64",
  3362. "cp311_windows_x86_64"
  3363. ],
  3364. "extra_pip_args": [
  3365. "--index-url",
  3366. "https://pypi.org/simple"
  3367. ],
  3368. "filename": "twine-5.1.1.tar.gz",
  3369. "python_interpreter_target": "@@rules_python++python+python_3_11_host//:python",
  3370. "repo": "rules_python_publish_deps_311",
  3371. "requirement": "twine==5.1.1",
  3372. "sha256": "9aa0825139c02b3434d913545c7b847a21c835e11597f5255842d457da2322db",
  3373. "urls": [
  3374. "https://files.pythonhosted.org/packages/77/68/bd982e5e949ef8334e6f7dcf76ae40922a8750aa2e347291ae1477a4782b/twine-5.1.1.tar.gz"
  3375. ]
  3376. }
  3377. },
  3378. "rules_python_publish_deps_311_urllib3_py3_none_any_ca899ca0": {
  3379. "repoRuleId": "@@rules_python+//python/private/pypi:whl_library.bzl%whl_library",
  3380. "attributes": {
  3381. "dep_template": "@rules_python_publish_deps//{name}:{target}",
  3382. "experimental_target_platforms": [
  3383. "cp311_linux_aarch64",
  3384. "cp311_linux_arm",
  3385. "cp311_linux_ppc",
  3386. "cp311_linux_s390x",
  3387. "cp311_linux_x86_64",
  3388. "cp311_osx_aarch64",
  3389. "cp311_osx_x86_64",
  3390. "cp311_windows_x86_64"
  3391. ],
  3392. "filename": "urllib3-2.2.3-py3-none-any.whl",
  3393. "python_interpreter_target": "@@rules_python++python+python_3_11_host//:python",
  3394. "repo": "rules_python_publish_deps_311",
  3395. "requirement": "urllib3==2.2.3",
  3396. "sha256": "ca899ca043dcb1bafa3e262d73aa25c465bfb49e0bd9dd5d59f1d0acba2f8fac",
  3397. "urls": [
  3398. "https://files.pythonhosted.org/packages/ce/d9/5f4c13cecde62396b0d3fe530a50ccea91e7dfc1ccf0e09c228841bb5ba8/urllib3-2.2.3-py3-none-any.whl"
  3399. ]
  3400. }
  3401. },
  3402. "rules_python_publish_deps_311_urllib3_sdist_e7d814a8": {
  3403. "repoRuleId": "@@rules_python+//python/private/pypi:whl_library.bzl%whl_library",
  3404. "attributes": {
  3405. "dep_template": "@rules_python_publish_deps//{name}:{target}",
  3406. "experimental_target_platforms": [
  3407. "cp311_linux_aarch64",
  3408. "cp311_linux_arm",
  3409. "cp311_linux_ppc",
  3410. "cp311_linux_s390x",
  3411. "cp311_linux_x86_64",
  3412. "cp311_osx_aarch64",
  3413. "cp311_osx_x86_64",
  3414. "cp311_windows_x86_64"
  3415. ],
  3416. "extra_pip_args": [
  3417. "--index-url",
  3418. "https://pypi.org/simple"
  3419. ],
  3420. "filename": "urllib3-2.2.3.tar.gz",
  3421. "python_interpreter_target": "@@rules_python++python+python_3_11_host//:python",
  3422. "repo": "rules_python_publish_deps_311",
  3423. "requirement": "urllib3==2.2.3",
  3424. "sha256": "e7d814a81dad81e6caf2ec9fdedb284ecc9c73076b62654547cc64ccdcae26e9",
  3425. "urls": [
  3426. "https://files.pythonhosted.org/packages/ed/63/22ba4ebfe7430b76388e7cd448d5478814d3032121827c12a2cc287e2260/urllib3-2.2.3.tar.gz"
  3427. ]
  3428. }
  3429. },
  3430. "rules_python_publish_deps_311_zipp_py3_none_any_a817ac80": {
  3431. "repoRuleId": "@@rules_python+//python/private/pypi:whl_library.bzl%whl_library",
  3432. "attributes": {
  3433. "dep_template": "@rules_python_publish_deps//{name}:{target}",
  3434. "experimental_target_platforms": [
  3435. "cp311_linux_aarch64",
  3436. "cp311_linux_arm",
  3437. "cp311_linux_ppc",
  3438. "cp311_linux_s390x",
  3439. "cp311_linux_x86_64",
  3440. "cp311_osx_aarch64",
  3441. "cp311_osx_x86_64",
  3442. "cp311_windows_x86_64"
  3443. ],
  3444. "filename": "zipp-3.20.2-py3-none-any.whl",
  3445. "python_interpreter_target": "@@rules_python++python+python_3_11_host//:python",
  3446. "repo": "rules_python_publish_deps_311",
  3447. "requirement": "zipp==3.20.2",
  3448. "sha256": "a817ac80d6cf4b23bf7f2828b7cabf326f15a001bea8b1f9b49631780ba28350",
  3449. "urls": [
  3450. "https://files.pythonhosted.org/packages/62/8b/5ba542fa83c90e09eac972fc9baca7a88e7e7ca4b221a89251954019308b/zipp-3.20.2-py3-none-any.whl"
  3451. ]
  3452. }
  3453. },
  3454. "rules_python_publish_deps_311_zipp_sdist_bc9eb26f": {
  3455. "repoRuleId": "@@rules_python+//python/private/pypi:whl_library.bzl%whl_library",
  3456. "attributes": {
  3457. "dep_template": "@rules_python_publish_deps//{name}:{target}",
  3458. "experimental_target_platforms": [
  3459. "cp311_linux_aarch64",
  3460. "cp311_linux_arm",
  3461. "cp311_linux_ppc",
  3462. "cp311_linux_s390x",
  3463. "cp311_linux_x86_64",
  3464. "cp311_osx_aarch64",
  3465. "cp311_osx_x86_64",
  3466. "cp311_windows_x86_64"
  3467. ],
  3468. "extra_pip_args": [
  3469. "--index-url",
  3470. "https://pypi.org/simple"
  3471. ],
  3472. "filename": "zipp-3.20.2.tar.gz",
  3473. "python_interpreter_target": "@@rules_python++python+python_3_11_host//:python",
  3474. "repo": "rules_python_publish_deps_311",
  3475. "requirement": "zipp==3.20.2",
  3476. "sha256": "bc9eb26f4506fda01b81bcde0ca78103b6e62f991b381fec825435c836edbc29",
  3477. "urls": [
  3478. "https://files.pythonhosted.org/packages/54/bf/5c0000c44ebc80123ecbdddba1f5dcd94a5ada602a9c225d84b5aaa55e86/zipp-3.20.2.tar.gz"
  3479. ]
  3480. }
  3481. },
  3482. "pip_deps": {
  3483. "repoRuleId": "@@rules_python+//python/private/pypi:hub_repository.bzl%hub_repository",
  3484. "attributes": {
  3485. "repo_name": "pip_deps",
  3486. "extra_hub_aliases": {},
  3487. "whl_map": {
  3488. "numpy": "{\"pip_deps_310_numpy\":[{\"version\":\"3.10\"}],\"pip_deps_311_numpy\":[{\"version\":\"3.11\"}],\"pip_deps_312_numpy\":[{\"version\":\"3.12\"}],\"pip_deps_38_numpy\":[{\"version\":\"3.8\"}],\"pip_deps_39_numpy\":[{\"version\":\"3.9\"}]}",
  3489. "setuptools": "{\"pip_deps_310_setuptools\":[{\"version\":\"3.10\"}],\"pip_deps_311_setuptools\":[{\"version\":\"3.11\"}],\"pip_deps_312_setuptools\":[{\"version\":\"3.12\"}],\"pip_deps_38_setuptools\":[{\"version\":\"3.8\"}],\"pip_deps_39_setuptools\":[{\"version\":\"3.9\"}]}"
  3490. },
  3491. "packages": [
  3492. "numpy",
  3493. "setuptools"
  3494. ],
  3495. "groups": {}
  3496. }
  3497. },
  3498. "rules_fuzzing_py_deps": {
  3499. "repoRuleId": "@@rules_python+//python/private/pypi:hub_repository.bzl%hub_repository",
  3500. "attributes": {
  3501. "repo_name": "rules_fuzzing_py_deps",
  3502. "extra_hub_aliases": {},
  3503. "whl_map": {
  3504. "absl_py": "{\"rules_fuzzing_py_deps_310_absl_py\":[{\"version\":\"3.10\"}],\"rules_fuzzing_py_deps_311_absl_py\":[{\"version\":\"3.11\"}],\"rules_fuzzing_py_deps_312_absl_py\":[{\"version\":\"3.12\"}],\"rules_fuzzing_py_deps_38_absl_py\":[{\"version\":\"3.8\"}],\"rules_fuzzing_py_deps_39_absl_py\":[{\"version\":\"3.9\"}]}",
  3505. "six": "{\"rules_fuzzing_py_deps_310_six\":[{\"version\":\"3.10\"}],\"rules_fuzzing_py_deps_311_six\":[{\"version\":\"3.11\"}],\"rules_fuzzing_py_deps_312_six\":[{\"version\":\"3.12\"}],\"rules_fuzzing_py_deps_38_six\":[{\"version\":\"3.8\"}],\"rules_fuzzing_py_deps_39_six\":[{\"version\":\"3.9\"}]}"
  3506. },
  3507. "packages": [
  3508. "absl_py",
  3509. "six"
  3510. ],
  3511. "groups": {}
  3512. }
  3513. },
  3514. "rules_python_publish_deps": {
  3515. "repoRuleId": "@@rules_python+//python/private/pypi:hub_repository.bzl%hub_repository",
  3516. "attributes": {
  3517. "repo_name": "rules_python_publish_deps",
  3518. "extra_hub_aliases": {},
  3519. "whl_map": {
  3520. "backports_tarfile": "{\"rules_python_publish_deps_311_backports_tarfile_py3_none_any_77e284d7\":[{\"filename\":\"backports.tarfile-1.2.0-py3-none-any.whl\",\"version\":\"3.11\"}],\"rules_python_publish_deps_311_backports_tarfile_sdist_d75e02c2\":[{\"filename\":\"backports_tarfile-1.2.0.tar.gz\",\"version\":\"3.11\"}]}",
  3521. "certifi": "{\"rules_python_publish_deps_311_certifi_py3_none_any_922820b5\":[{\"filename\":\"certifi-2024.8.30-py3-none-any.whl\",\"version\":\"3.11\"}],\"rules_python_publish_deps_311_certifi_sdist_bec941d2\":[{\"filename\":\"certifi-2024.8.30.tar.gz\",\"version\":\"3.11\"}]}",
  3522. "cffi": "{\"rules_python_publish_deps_311_cffi_cp311_cp311_manylinux_2_17_aarch64_a1ed2dd2\":[{\"filename\":\"cffi-1.17.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl\",\"version\":\"3.11\"}],\"rules_python_publish_deps_311_cffi_cp311_cp311_manylinux_2_17_ppc64le_46bf4316\":[{\"filename\":\"cffi-1.17.1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl\",\"version\":\"3.11\"}],\"rules_python_publish_deps_311_cffi_cp311_cp311_manylinux_2_17_s390x_a24ed04c\":[{\"filename\":\"cffi-1.17.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl\",\"version\":\"3.11\"}],\"rules_python_publish_deps_311_cffi_cp311_cp311_manylinux_2_17_x86_64_610faea7\":[{\"filename\":\"cffi-1.17.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl\",\"version\":\"3.11\"}],\"rules_python_publish_deps_311_cffi_cp311_cp311_musllinux_1_1_aarch64_a9b15d49\":[{\"filename\":\"cffi-1.17.1-cp311-cp311-musllinux_1_1_aarch64.whl\",\"version\":\"3.11\"}],\"rules_python_publish_deps_311_cffi_cp311_cp311_musllinux_1_1_x86_64_fc48c783\":[{\"filename\":\"cffi-1.17.1-cp311-cp311-musllinux_1_1_x86_64.whl\",\"version\":\"3.11\"}],\"rules_python_publish_deps_311_cffi_sdist_1c39c601\":[{\"filename\":\"cffi-1.17.1.tar.gz\",\"version\":\"3.11\"}]}",
  3523. "charset_normalizer": "{\"rules_python_publish_deps_311_charset_normalizer_cp311_cp311_macosx_10_9_universal2_0d99dd8f\":[{\"filename\":\"charset_normalizer-3.4.0-cp311-cp311-macosx_10_9_universal2.whl\",\"version\":\"3.11\"}],\"rules_python_publish_deps_311_charset_normalizer_cp311_cp311_macosx_10_9_x86_64_c57516e5\":[{\"filename\":\"charset_normalizer-3.4.0-cp311-cp311-macosx_10_9_x86_64.whl\",\"version\":\"3.11\"}],\"rules_python_publish_deps_311_charset_normalizer_cp311_cp311_macosx_11_0_arm64_6dba5d19\":[{\"filename\":\"charset_normalizer-3.4.0-cp311-cp311-macosx_11_0_arm64.whl\",\"version\":\"3.11\"}],\"rules_python_publish_deps_311_charset_normalizer_cp311_cp311_manylinux_2_17_aarch64_bf4475b8\":[{\"filename\":\"charset_normalizer-3.4.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl\",\"version\":\"3.11\"}],\"rules_python_publish_deps_311_charset_normalizer_cp311_cp311_manylinux_2_17_ppc64le_ce031db0\":[{\"filename\":\"charset_normalizer-3.4.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl\",\"version\":\"3.11\"}],\"rules_python_publish_deps_311_charset_normalizer_cp311_cp311_manylinux_2_17_s390x_8ff4e7cd\":[{\"filename\":\"charset_normalizer-3.4.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl\",\"version\":\"3.11\"}],\"rules_python_publish_deps_311_charset_normalizer_cp311_cp311_manylinux_2_17_x86_64_3710a975\":[{\"filename\":\"charset_normalizer-3.4.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl\",\"version\":\"3.11\"}],\"rules_python_publish_deps_311_charset_normalizer_cp311_cp311_musllinux_1_2_aarch64_47334db7\":[{\"filename\":\"charset_normalizer-3.4.0-cp311-cp311-musllinux_1_2_aarch64.whl\",\"version\":\"3.11\"}],\"rules_python_publish_deps_311_charset_normalizer_cp311_cp311_musllinux_1_2_ppc64le_f1a2f519\":[{\"filename\":\"charset_normalizer-3.4.0-cp311-cp311-musllinux_1_2_ppc64le.whl\",\"version\":\"3.11\"}],\"rules_python_publish_deps_311_charset_normalizer_cp311_cp311_musllinux_1_2_s390x_63bc5c4a\":[{\"filename\":\"charset_normalizer-3.4.0-cp311-cp311-musllinux_1_2_s390x.whl\",\"version\":\"3.11\"}],\"rules_python_publish_deps_311_charset_normalizer_cp311_cp311_musllinux_1_2_x86_64_bcb4f8ea\":[{\"filename\":\"charset_normalizer-3.4.0-cp311-cp311-musllinux_1_2_x86_64.whl\",\"version\":\"3.11\"}],\"rules_python_publish_deps_311_charset_normalizer_cp311_cp311_win_amd64_cee4373f\":[{\"filename\":\"charset_normalizer-3.4.0-cp311-cp311-win_amd64.whl\",\"version\":\"3.11\"}],\"rules_python_publish_deps_311_charset_normalizer_py3_none_any_fe9f97fe\":[{\"filename\":\"charset_normalizer-3.4.0-py3-none-any.whl\",\"version\":\"3.11\"}],\"rules_python_publish_deps_311_charset_normalizer_sdist_223217c3\":[{\"filename\":\"charset_normalizer-3.4.0.tar.gz\",\"version\":\"3.11\"}]}",
  3524. "cryptography": "{\"rules_python_publish_deps_311_cryptography_cp39_abi3_manylinux_2_17_aarch64_846da004\":[{\"filename\":\"cryptography-43.0.3-cp39-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.whl\",\"version\":\"3.11\"}],\"rules_python_publish_deps_311_cryptography_cp39_abi3_manylinux_2_17_x86_64_0f996e72\":[{\"filename\":\"cryptography-43.0.3-cp39-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl\",\"version\":\"3.11\"}],\"rules_python_publish_deps_311_cryptography_cp39_abi3_manylinux_2_28_aarch64_f7b178f1\":[{\"filename\":\"cryptography-43.0.3-cp39-abi3-manylinux_2_28_aarch64.whl\",\"version\":\"3.11\"}],\"rules_python_publish_deps_311_cryptography_cp39_abi3_manylinux_2_28_x86_64_c2e6fc39\":[{\"filename\":\"cryptography-43.0.3-cp39-abi3-manylinux_2_28_x86_64.whl\",\"version\":\"3.11\"}],\"rules_python_publish_deps_311_cryptography_cp39_abi3_musllinux_1_2_aarch64_e1be4655\":[{\"filename\":\"cryptography-43.0.3-cp39-abi3-musllinux_1_2_aarch64.whl\",\"version\":\"3.11\"}],\"rules_python_publish_deps_311_cryptography_cp39_abi3_musllinux_1_2_x86_64_df6b6c6d\":[{\"filename\":\"cryptography-43.0.3-cp39-abi3-musllinux_1_2_x86_64.whl\",\"version\":\"3.11\"}],\"rules_python_publish_deps_311_cryptography_sdist_315b9001\":[{\"filename\":\"cryptography-43.0.3.tar.gz\",\"version\":\"3.11\"}]}",
  3525. "docutils": "{\"rules_python_publish_deps_311_docutils_py3_none_any_dafca5b9\":[{\"filename\":\"docutils-0.21.2-py3-none-any.whl\",\"version\":\"3.11\"}],\"rules_python_publish_deps_311_docutils_sdist_3a6b1873\":[{\"filename\":\"docutils-0.21.2.tar.gz\",\"version\":\"3.11\"}]}",
  3526. "idna": "{\"rules_python_publish_deps_311_idna_py3_none_any_946d195a\":[{\"filename\":\"idna-3.10-py3-none-any.whl\",\"version\":\"3.11\"}],\"rules_python_publish_deps_311_idna_sdist_12f65c9b\":[{\"filename\":\"idna-3.10.tar.gz\",\"version\":\"3.11\"}]}",
  3527. "importlib_metadata": "{\"rules_python_publish_deps_311_importlib_metadata_py3_none_any_45e54197\":[{\"filename\":\"importlib_metadata-8.5.0-py3-none-any.whl\",\"version\":\"3.11\"}],\"rules_python_publish_deps_311_importlib_metadata_sdist_71522656\":[{\"filename\":\"importlib_metadata-8.5.0.tar.gz\",\"version\":\"3.11\"}]}",
  3528. "jaraco_classes": "{\"rules_python_publish_deps_311_jaraco_classes_py3_none_any_f662826b\":[{\"filename\":\"jaraco.classes-3.4.0-py3-none-any.whl\",\"version\":\"3.11\"}],\"rules_python_publish_deps_311_jaraco_classes_sdist_47a024b5\":[{\"filename\":\"jaraco.classes-3.4.0.tar.gz\",\"version\":\"3.11\"}]}",
  3529. "jaraco_context": "{\"rules_python_publish_deps_311_jaraco_context_py3_none_any_f797fc48\":[{\"filename\":\"jaraco.context-6.0.1-py3-none-any.whl\",\"version\":\"3.11\"}],\"rules_python_publish_deps_311_jaraco_context_sdist_9bae4ea5\":[{\"filename\":\"jaraco_context-6.0.1.tar.gz\",\"version\":\"3.11\"}]}",
  3530. "jaraco_functools": "{\"rules_python_publish_deps_311_jaraco_functools_py3_none_any_ad159f13\":[{\"filename\":\"jaraco.functools-4.1.0-py3-none-any.whl\",\"version\":\"3.11\"}],\"rules_python_publish_deps_311_jaraco_functools_sdist_70f7e0e2\":[{\"filename\":\"jaraco_functools-4.1.0.tar.gz\",\"version\":\"3.11\"}]}",
  3531. "jeepney": "{\"rules_python_publish_deps_311_jeepney_py3_none_any_c0a454ad\":[{\"filename\":\"jeepney-0.8.0-py3-none-any.whl\",\"version\":\"3.11\"}],\"rules_python_publish_deps_311_jeepney_sdist_5efe48d2\":[{\"filename\":\"jeepney-0.8.0.tar.gz\",\"version\":\"3.11\"}]}",
  3532. "keyring": "{\"rules_python_publish_deps_311_keyring_py3_none_any_5426f817\":[{\"filename\":\"keyring-25.4.1-py3-none-any.whl\",\"version\":\"3.11\"}],\"rules_python_publish_deps_311_keyring_sdist_b07ebc55\":[{\"filename\":\"keyring-25.4.1.tar.gz\",\"version\":\"3.11\"}]}",
  3533. "markdown_it_py": "{\"rules_python_publish_deps_311_markdown_it_py_py3_none_any_35521684\":[{\"filename\":\"markdown_it_py-3.0.0-py3-none-any.whl\",\"version\":\"3.11\"}],\"rules_python_publish_deps_311_markdown_it_py_sdist_e3f60a94\":[{\"filename\":\"markdown-it-py-3.0.0.tar.gz\",\"version\":\"3.11\"}]}",
  3534. "mdurl": "{\"rules_python_publish_deps_311_mdurl_py3_none_any_84008a41\":[{\"filename\":\"mdurl-0.1.2-py3-none-any.whl\",\"version\":\"3.11\"}],\"rules_python_publish_deps_311_mdurl_sdist_bb413d29\":[{\"filename\":\"mdurl-0.1.2.tar.gz\",\"version\":\"3.11\"}]}",
  3535. "more_itertools": "{\"rules_python_publish_deps_311_more_itertools_py3_none_any_037b0d32\":[{\"filename\":\"more_itertools-10.5.0-py3-none-any.whl\",\"version\":\"3.11\"}],\"rules_python_publish_deps_311_more_itertools_sdist_5482bfef\":[{\"filename\":\"more-itertools-10.5.0.tar.gz\",\"version\":\"3.11\"}]}",
  3536. "nh3": "{\"rules_python_publish_deps_311_nh3_cp37_abi3_macosx_10_12_x86_64_14c5a72e\":[{\"filename\":\"nh3-0.2.18-cp37-abi3-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl\",\"version\":\"3.11\"}],\"rules_python_publish_deps_311_nh3_cp37_abi3_macosx_10_12_x86_64_7b7c2a3c\":[{\"filename\":\"nh3-0.2.18-cp37-abi3-macosx_10_12_x86_64.whl\",\"version\":\"3.11\"}],\"rules_python_publish_deps_311_nh3_cp37_abi3_manylinux_2_17_aarch64_42c64511\":[{\"filename\":\"nh3-0.2.18-cp37-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.whl\",\"version\":\"3.11\"}],\"rules_python_publish_deps_311_nh3_cp37_abi3_manylinux_2_17_armv7l_0411beb0\":[{\"filename\":\"nh3-0.2.18-cp37-abi3-manylinux_2_17_armv7l.manylinux2014_armv7l.whl\",\"version\":\"3.11\"}],\"rules_python_publish_deps_311_nh3_cp37_abi3_manylinux_2_17_ppc64_5f36b271\":[{\"filename\":\"nh3-0.2.18-cp37-abi3-manylinux_2_17_ppc64.manylinux2014_ppc64.whl\",\"version\":\"3.11\"}],\"rules_python_publish_deps_311_nh3_cp37_abi3_manylinux_2_17_ppc64le_34c03fa7\":[{\"filename\":\"nh3-0.2.18-cp37-abi3-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl\",\"version\":\"3.11\"}],\"rules_python_publish_deps_311_nh3_cp37_abi3_manylinux_2_17_s390x_19aaba96\":[{\"filename\":\"nh3-0.2.18-cp37-abi3-manylinux_2_17_s390x.manylinux2014_s390x.whl\",\"version\":\"3.11\"}],\"rules_python_publish_deps_311_nh3_cp37_abi3_manylinux_2_17_x86_64_de3ceed6\":[{\"filename\":\"nh3-0.2.18-cp37-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl\",\"version\":\"3.11\"}],\"rules_python_publish_deps_311_nh3_cp37_abi3_musllinux_1_2_aarch64_f0eca9ca\":[{\"filename\":\"nh3-0.2.18-cp37-abi3-musllinux_1_2_aarch64.whl\",\"version\":\"3.11\"}],\"rules_python_publish_deps_311_nh3_cp37_abi3_musllinux_1_2_armv7l_3a157ab1\":[{\"filename\":\"nh3-0.2.18-cp37-abi3-musllinux_1_2_armv7l.whl\",\"version\":\"3.11\"}],\"rules_python_publish_deps_311_nh3_cp37_abi3_musllinux_1_2_x86_64_36c95d4b\":[{\"filename\":\"nh3-0.2.18-cp37-abi3-musllinux_1_2_x86_64.whl\",\"version\":\"3.11\"}],\"rules_python_publish_deps_311_nh3_cp37_abi3_win_amd64_8ce0f819\":[{\"filename\":\"nh3-0.2.18-cp37-abi3-win_amd64.whl\",\"version\":\"3.11\"}],\"rules_python_publish_deps_311_nh3_sdist_94a16692\":[{\"filename\":\"nh3-0.2.18.tar.gz\",\"version\":\"3.11\"}]}",
  3537. "pkginfo": "{\"rules_python_publish_deps_311_pkginfo_py3_none_any_889a6da2\":[{\"filename\":\"pkginfo-1.10.0-py3-none-any.whl\",\"version\":\"3.11\"}],\"rules_python_publish_deps_311_pkginfo_sdist_5df73835\":[{\"filename\":\"pkginfo-1.10.0.tar.gz\",\"version\":\"3.11\"}]}",
  3538. "pycparser": "{\"rules_python_publish_deps_311_pycparser_py3_none_any_c3702b6d\":[{\"filename\":\"pycparser-2.22-py3-none-any.whl\",\"version\":\"3.11\"}],\"rules_python_publish_deps_311_pycparser_sdist_491c8be9\":[{\"filename\":\"pycparser-2.22.tar.gz\",\"version\":\"3.11\"}]}",
  3539. "pygments": "{\"rules_python_publish_deps_311_pygments_py3_none_any_b8e6aca0\":[{\"filename\":\"pygments-2.18.0-py3-none-any.whl\",\"version\":\"3.11\"}],\"rules_python_publish_deps_311_pygments_sdist_786ff802\":[{\"filename\":\"pygments-2.18.0.tar.gz\",\"version\":\"3.11\"}]}",
  3540. "pywin32_ctypes": "{\"rules_python_publish_deps_311_pywin32_ctypes_py3_none_any_8a151337\":[{\"filename\":\"pywin32_ctypes-0.2.3-py3-none-any.whl\",\"version\":\"3.11\"}],\"rules_python_publish_deps_311_pywin32_ctypes_sdist_d162dc04\":[{\"filename\":\"pywin32-ctypes-0.2.3.tar.gz\",\"version\":\"3.11\"}]}",
  3541. "readme_renderer": "{\"rules_python_publish_deps_311_readme_renderer_py3_none_any_2fbca89b\":[{\"filename\":\"readme_renderer-44.0-py3-none-any.whl\",\"version\":\"3.11\"}],\"rules_python_publish_deps_311_readme_renderer_sdist_8712034e\":[{\"filename\":\"readme_renderer-44.0.tar.gz\",\"version\":\"3.11\"}]}",
  3542. "requests": "{\"rules_python_publish_deps_311_requests_py3_none_any_70761cfe\":[{\"filename\":\"requests-2.32.3-py3-none-any.whl\",\"version\":\"3.11\"}],\"rules_python_publish_deps_311_requests_sdist_55365417\":[{\"filename\":\"requests-2.32.3.tar.gz\",\"version\":\"3.11\"}]}",
  3543. "requests_toolbelt": "{\"rules_python_publish_deps_311_requests_toolbelt_py2_none_any_cccfdd66\":[{\"filename\":\"requests_toolbelt-1.0.0-py2.py3-none-any.whl\",\"version\":\"3.11\"}],\"rules_python_publish_deps_311_requests_toolbelt_sdist_7681a0a3\":[{\"filename\":\"requests-toolbelt-1.0.0.tar.gz\",\"version\":\"3.11\"}]}",
  3544. "rfc3986": "{\"rules_python_publish_deps_311_rfc3986_py2_none_any_50b1502b\":[{\"filename\":\"rfc3986-2.0.0-py2.py3-none-any.whl\",\"version\":\"3.11\"}],\"rules_python_publish_deps_311_rfc3986_sdist_97aacf9d\":[{\"filename\":\"rfc3986-2.0.0.tar.gz\",\"version\":\"3.11\"}]}",
  3545. "rich": "{\"rules_python_publish_deps_311_rich_py3_none_any_9836f509\":[{\"filename\":\"rich-13.9.3-py3-none-any.whl\",\"version\":\"3.11\"}],\"rules_python_publish_deps_311_rich_sdist_bc1e01b8\":[{\"filename\":\"rich-13.9.3.tar.gz\",\"version\":\"3.11\"}]}",
  3546. "secretstorage": "{\"rules_python_publish_deps_311_secretstorage_py3_none_any_f356e662\":[{\"filename\":\"SecretStorage-3.3.3-py3-none-any.whl\",\"version\":\"3.11\"}],\"rules_python_publish_deps_311_secretstorage_sdist_2403533e\":[{\"filename\":\"SecretStorage-3.3.3.tar.gz\",\"version\":\"3.11\"}]}",
  3547. "twine": "{\"rules_python_publish_deps_311_twine_py3_none_any_215dbe7b\":[{\"filename\":\"twine-5.1.1-py3-none-any.whl\",\"version\":\"3.11\"}],\"rules_python_publish_deps_311_twine_sdist_9aa08251\":[{\"filename\":\"twine-5.1.1.tar.gz\",\"version\":\"3.11\"}]}",
  3548. "urllib3": "{\"rules_python_publish_deps_311_urllib3_py3_none_any_ca899ca0\":[{\"filename\":\"urllib3-2.2.3-py3-none-any.whl\",\"version\":\"3.11\"}],\"rules_python_publish_deps_311_urllib3_sdist_e7d814a8\":[{\"filename\":\"urllib3-2.2.3.tar.gz\",\"version\":\"3.11\"}]}",
  3549. "zipp": "{\"rules_python_publish_deps_311_zipp_py3_none_any_a817ac80\":[{\"filename\":\"zipp-3.20.2-py3-none-any.whl\",\"version\":\"3.11\"}],\"rules_python_publish_deps_311_zipp_sdist_bc9eb26f\":[{\"filename\":\"zipp-3.20.2.tar.gz\",\"version\":\"3.11\"}]}"
  3550. },
  3551. "packages": [
  3552. "backports_tarfile",
  3553. "certifi",
  3554. "charset_normalizer",
  3555. "docutils",
  3556. "idna",
  3557. "importlib_metadata",
  3558. "jaraco_classes",
  3559. "jaraco_context",
  3560. "jaraco_functools",
  3561. "keyring",
  3562. "markdown_it_py",
  3563. "mdurl",
  3564. "more_itertools",
  3565. "nh3",
  3566. "pkginfo",
  3567. "pygments",
  3568. "readme_renderer",
  3569. "requests",
  3570. "requests_toolbelt",
  3571. "rfc3986",
  3572. "rich",
  3573. "twine",
  3574. "urllib3",
  3575. "zipp"
  3576. ],
  3577. "groups": {}
  3578. }
  3579. }
  3580. },
  3581. "moduleExtensionMetadata": {
  3582. "useAllRepos": "NO",
  3583. "reproducible": false
  3584. },
  3585. "recordedRepoMappingEntries": [
  3586. [
  3587. "bazel_features+",
  3588. "bazel_features_globals",
  3589. "bazel_features++version_extension+bazel_features_globals"
  3590. ],
  3591. [
  3592. "bazel_features+",
  3593. "bazel_features_version",
  3594. "bazel_features++version_extension+bazel_features_version"
  3595. ],
  3596. [
  3597. "rules_python+",
  3598. "bazel_features",
  3599. "bazel_features+"
  3600. ],
  3601. [
  3602. "rules_python+",
  3603. "bazel_skylib",
  3604. "bazel_skylib+"
  3605. ],
  3606. [
  3607. "rules_python+",
  3608. "bazel_tools",
  3609. "bazel_tools"
  3610. ],
  3611. [
  3612. "rules_python+",
  3613. "pypi__build",
  3614. "rules_python++internal_deps+pypi__build"
  3615. ],
  3616. [
  3617. "rules_python+",
  3618. "pypi__click",
  3619. "rules_python++internal_deps+pypi__click"
  3620. ],
  3621. [
  3622. "rules_python+",
  3623. "pypi__colorama",
  3624. "rules_python++internal_deps+pypi__colorama"
  3625. ],
  3626. [
  3627. "rules_python+",
  3628. "pypi__importlib_metadata",
  3629. "rules_python++internal_deps+pypi__importlib_metadata"
  3630. ],
  3631. [
  3632. "rules_python+",
  3633. "pypi__installer",
  3634. "rules_python++internal_deps+pypi__installer"
  3635. ],
  3636. [
  3637. "rules_python+",
  3638. "pypi__more_itertools",
  3639. "rules_python++internal_deps+pypi__more_itertools"
  3640. ],
  3641. [
  3642. "rules_python+",
  3643. "pypi__packaging",
  3644. "rules_python++internal_deps+pypi__packaging"
  3645. ],
  3646. [
  3647. "rules_python+",
  3648. "pypi__pep517",
  3649. "rules_python++internal_deps+pypi__pep517"
  3650. ],
  3651. [
  3652. "rules_python+",
  3653. "pypi__pip",
  3654. "rules_python++internal_deps+pypi__pip"
  3655. ],
  3656. [
  3657. "rules_python+",
  3658. "pypi__pip_tools",
  3659. "rules_python++internal_deps+pypi__pip_tools"
  3660. ],
  3661. [
  3662. "rules_python+",
  3663. "pypi__pyproject_hooks",
  3664. "rules_python++internal_deps+pypi__pyproject_hooks"
  3665. ],
  3666. [
  3667. "rules_python+",
  3668. "pypi__setuptools",
  3669. "rules_python++internal_deps+pypi__setuptools"
  3670. ],
  3671. [
  3672. "rules_python+",
  3673. "pypi__tomli",
  3674. "rules_python++internal_deps+pypi__tomli"
  3675. ],
  3676. [
  3677. "rules_python+",
  3678. "pypi__wheel",
  3679. "rules_python++internal_deps+pypi__wheel"
  3680. ],
  3681. [
  3682. "rules_python+",
  3683. "pypi__zipp",
  3684. "rules_python++internal_deps+pypi__zipp"
  3685. ],
  3686. [
  3687. "rules_python+",
  3688. "pythons_hub",
  3689. "rules_python++python+pythons_hub"
  3690. ],
  3691. [
  3692. "rules_python++python+pythons_hub",
  3693. "python_3_10_host",
  3694. "rules_python++python+python_3_10_host"
  3695. ],
  3696. [
  3697. "rules_python++python+pythons_hub",
  3698. "python_3_11_host",
  3699. "rules_python++python+python_3_11_host"
  3700. ],
  3701. [
  3702. "rules_python++python+pythons_hub",
  3703. "python_3_12_host",
  3704. "rules_python++python+python_3_12_host"
  3705. ],
  3706. [
  3707. "rules_python++python+pythons_hub",
  3708. "python_3_8_host",
  3709. "rules_python++python+python_3_8_host"
  3710. ],
  3711. [
  3712. "rules_python++python+pythons_hub",
  3713. "python_3_9_host",
  3714. "rules_python++python+python_3_9_host"
  3715. ]
  3716. ]
  3717. }
  3718. },
  3719. "@@tree-sitter-bazel+//:extensions.bzl%tree_sitter_source_code": {
  3720. "general": {
  3721. "bzlTransitiveDigest": "7Be5pB4ksIvEy9VCPruRCllTYTjsiIJgaigRzR9e+u4=",
  3722. "usagesDigest": "+A8gOKWptG2ZhzIqOP3jb/D4vpatFdmbOLuveV6t1Yw=",
  3723. "recordedFileInputs": {},
  3724. "recordedDirentsInputs": {},
  3725. "envVariables": {},
  3726. "generatedRepoSpecs": {
  3727. "tree-sitter-raw": {
  3728. "repoRuleId": "@@bazel_tools//tools/build_defs/repo:http.bzl%http_archive",
  3729. "attributes": {
  3730. "urls": [
  3731. "https://github.com/tree-sitter/tree-sitter/archive/refs/tags/v0.24.4.tar.gz"
  3732. ],
  3733. "sha256": "",
  3734. "integrity": "sha384-Af1RSXWjSyY7gKQ9W4kaUrJm6EaDFXfCDb1Ca25yZTBQ3hS9Ye7ev57dEGTvAbpz",
  3735. "strip_prefix": "tree-sitter-0.24.4",
  3736. "build_file_content": "exports_files(glob([\"lib/**\"]))"
  3737. }
  3738. }
  3739. },
  3740. "recordedRepoMappingEntries": [
  3741. [
  3742. "tree-sitter-bazel+",
  3743. "bazel_tools",
  3744. "bazel_tools"
  3745. ]
  3746. ]
  3747. }
  3748. }
  3749. }
  3750. }