MODULE.bazel.lock 209 KB

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