MODULE.bazel.lock 347 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043
  1. {
  2. "lockFileVersion": 3,
  3. "moduleFileHash": "54dd3881f69c1741aa5508130129b2e828f36e808ee8bdd8324943efc9a5dfe2",
  4. "flags": {
  5. "cmdRegistries": [
  6. "https://bcr.bazel.build/"
  7. ],
  8. "cmdModuleOverrides": {},
  9. "allowedYankedVersions": [],
  10. "envVarAllowedYankedVersions": "",
  11. "ignoreDevDependency": false,
  12. "directDependenciesMode": "WARNING",
  13. "compatibilityMode": "ERROR"
  14. },
  15. "localOverrideHashes": {
  16. "bazel_tools": "922ea6752dc9105de5af957f7a99a6933c0a6a712d23df6aad16a9c399f7e787"
  17. },
  18. "moduleDepGraph": {
  19. "<root>": {
  20. "name": "carbon",
  21. "version": "",
  22. "key": "<root>",
  23. "repoName": "carbon",
  24. "executionPlatformsToRegister": [],
  25. "toolchainsToRegister": [
  26. "@bazel_cc_toolchain//:all"
  27. ],
  28. "extensionUsages": [
  29. {
  30. "extensionBzlFile": "//:MODULE.bazel",
  31. "extensionName": "_repo_rules",
  32. "usingModule": "<root>",
  33. "location": {
  34. "file": "@@//:MODULE.bazel",
  35. "line": 0,
  36. "column": 0
  37. },
  38. "imports": {
  39. "com_google_libprotobuf_mutator": "com_google_libprotobuf_mutator",
  40. "llvm-raw": "llvm-raw"
  41. },
  42. "devImports": [],
  43. "tags": [
  44. {
  45. "tagName": "@bazel_tools//tools/build_defs/repo:http.bzl%http_archive",
  46. "attributeValues": {
  47. "build_file": "@//:third_party/libprotobuf_mutator/BUILD.txt",
  48. "sha256": "fd299fd72c5cf664259d9bd43a72cb74dc6a8b9604d107fe2d2e90885aeb7c16",
  49. "strip_prefix": "libprotobuf-mutator-1.1",
  50. "urls": [
  51. "https://github.com/google/libprotobuf-mutator/archive/v1.1.tar.gz"
  52. ],
  53. "name": "com_google_libprotobuf_mutator"
  54. },
  55. "devDependency": false,
  56. "location": {
  57. "file": "@@//:MODULE.bazel",
  58. "line": 48,
  59. "column": 13
  60. }
  61. },
  62. {
  63. "tagName": "@bazel_tools//tools/build_defs/repo:http.bzl%http_archive",
  64. "attributeValues": {
  65. "build_file_content": "# empty",
  66. "patch_args": [
  67. "-p1"
  68. ],
  69. "patches": [
  70. "@carbon//bazel/llvm_project:0001_Patch_for_mallinfo2_when_using_Bazel_build_system.patch",
  71. "@carbon//bazel/llvm_project:0002_Added_Bazel_build_for_compiler_rt_fuzzer.patch",
  72. "@carbon//bazel/llvm_project:0003_Add_library_for_clangd.patch"
  73. ],
  74. "sha256": "efbca707a6eb1c714b849de120309070eef282660c0f4be5b68efef62cc95cf5",
  75. "strip_prefix": "llvm-project-3d51010a3350660160981c6b8e624dcc87c208a3",
  76. "urls": [
  77. "https://github.com/llvm/llvm-project/archive/3d51010a3350660160981c6b8e624dcc87c208a3.tar.gz"
  78. ],
  79. "name": "llvm-raw"
  80. },
  81. "devDependency": false,
  82. "location": {
  83. "file": "@@//:MODULE.bazel",
  84. "line": 80,
  85. "column": 13
  86. }
  87. }
  88. ],
  89. "hasDevUseExtension": false,
  90. "hasNonDevUseExtension": true
  91. },
  92. {
  93. "extensionBzlFile": "@carbon//bazel/cc_toolchains:clang_configuration.bzl",
  94. "extensionName": "clang_toolchain_extension",
  95. "usingModule": "<root>",
  96. "location": {
  97. "file": "@@//:MODULE.bazel",
  98. "line": 56,
  99. "column": 35
  100. },
  101. "imports": {
  102. "bazel_cc_toolchain": "bazel_cc_toolchain"
  103. },
  104. "devImports": [],
  105. "tags": [],
  106. "hasDevUseExtension": false,
  107. "hasNonDevUseExtension": true
  108. },
  109. {
  110. "extensionBzlFile": "@carbon//bazel/llvm_project:llvm_project.bzl",
  111. "extensionName": "llvm_project",
  112. "usingModule": "<root>",
  113. "location": {
  114. "file": "@@//:MODULE.bazel",
  115. "line": 95,
  116. "column": 29
  117. },
  118. "imports": {
  119. "llvm-project": "llvm-project"
  120. },
  121. "devImports": [],
  122. "tags": [],
  123. "hasDevUseExtension": false,
  124. "hasNonDevUseExtension": true
  125. },
  126. {
  127. "extensionBzlFile": "@rules_python//python/extensions:python.bzl",
  128. "extensionName": "python",
  129. "usingModule": "<root>",
  130. "location": {
  131. "file": "@@//:MODULE.bazel",
  132. "line": 107,
  133. "column": 23
  134. },
  135. "imports": {
  136. "python_versions": "python_versions"
  137. },
  138. "devImports": [],
  139. "tags": [
  140. {
  141. "tagName": "toolchain",
  142. "attributeValues": {
  143. "python_version": "3.11"
  144. },
  145. "devDependency": false,
  146. "location": {
  147. "file": "@@//:MODULE.bazel",
  148. "line": 108,
  149. "column": 17
  150. }
  151. }
  152. ],
  153. "hasDevUseExtension": false,
  154. "hasNonDevUseExtension": true
  155. },
  156. {
  157. "extensionBzlFile": "@rules_python//python/extensions:pip.bzl",
  158. "extensionName": "pip",
  159. "usingModule": "<root>",
  160. "location": {
  161. "file": "@@//:MODULE.bazel",
  162. "line": 114,
  163. "column": 20
  164. },
  165. "imports": {
  166. "py_deps": "py_deps"
  167. },
  168. "devImports": [],
  169. "tags": [
  170. {
  171. "tagName": "parse",
  172. "attributeValues": {
  173. "hub_name": "py_deps",
  174. "python_version": "3.11",
  175. "requirements_lock": "//github_tools:requirements.txt"
  176. },
  177. "devDependency": false,
  178. "location": {
  179. "file": "@@//:MODULE.bazel",
  180. "line": 115,
  181. "column": 10
  182. }
  183. }
  184. ],
  185. "hasDevUseExtension": false,
  186. "hasNonDevUseExtension": true
  187. }
  188. ],
  189. "deps": {
  190. "bazel_skylib": "bazel_skylib@1.5.0",
  191. "com_google_absl": "abseil-cpp@20230802.0",
  192. "com_googlesource_code_re2": "re2@2023-11-01",
  193. "com_google_googletest": "googletest@1.14.0.bcr.1",
  194. "com_github_google_benchmark": "google_benchmark@1.8.3",
  195. "rules_bison": "rules_bison@0.2.2",
  196. "rules_flex": "rules_flex@0.2.1",
  197. "rules_m4": "rules_m4@0.2.3",
  198. "rules_cc": "rules_cc@0.0.9",
  199. "rules_proto": "rules_proto@6.0.0-rc1",
  200. "com_google_protobuf": "protobuf@21.7",
  201. "platforms": "platforms@0.0.8",
  202. "llvm_zlib": "zlib@1.3",
  203. "llvm_zstd": "zstd@1.5.5",
  204. "rules_python": "rules_python@0.27.1",
  205. "bazel_tools": "bazel_tools@_",
  206. "local_config_platform": "local_config_platform@_"
  207. }
  208. },
  209. "bazel_skylib@1.5.0": {
  210. "name": "bazel_skylib",
  211. "version": "1.5.0",
  212. "key": "bazel_skylib@1.5.0",
  213. "repoName": "bazel_skylib",
  214. "executionPlatformsToRegister": [],
  215. "toolchainsToRegister": [
  216. "//toolchains/unittest:cmd_toolchain",
  217. "//toolchains/unittest:bash_toolchain"
  218. ],
  219. "extensionUsages": [],
  220. "deps": {
  221. "platforms": "platforms@0.0.8",
  222. "bazel_tools": "bazel_tools@_",
  223. "local_config_platform": "local_config_platform@_"
  224. },
  225. "repoSpec": {
  226. "bzlFile": "@bazel_tools//tools/build_defs/repo:http.bzl",
  227. "ruleClassName": "http_archive",
  228. "attributes": {
  229. "name": "bazel_skylib~1.5.0",
  230. "urls": [
  231. "https://github.com/bazelbuild/bazel-skylib/releases/download/1.5.0/bazel-skylib-1.5.0.tar.gz"
  232. ],
  233. "integrity": "sha256-zVWgYudjuTSZIfD124w5MyiNyLpPdt2UFqrGis7jy5Q=",
  234. "strip_prefix": "",
  235. "remote_patches": {},
  236. "remote_patch_strip": 0
  237. }
  238. }
  239. },
  240. "abseil-cpp@20230802.0": {
  241. "name": "abseil-cpp",
  242. "version": "20230802.0",
  243. "key": "abseil-cpp@20230802.0",
  244. "repoName": "abseil-cpp",
  245. "executionPlatformsToRegister": [],
  246. "toolchainsToRegister": [],
  247. "extensionUsages": [],
  248. "deps": {
  249. "rules_cc": "rules_cc@0.0.9",
  250. "platforms": "platforms@0.0.8",
  251. "bazel_skylib": "bazel_skylib@1.5.0",
  252. "com_google_googletest": "googletest@1.14.0.bcr.1",
  253. "com_github_google_benchmark": "google_benchmark@1.8.3",
  254. "bazel_tools": "bazel_tools@_",
  255. "local_config_platform": "local_config_platform@_"
  256. },
  257. "repoSpec": {
  258. "bzlFile": "@bazel_tools//tools/build_defs/repo:http.bzl",
  259. "ruleClassName": "http_archive",
  260. "attributes": {
  261. "name": "abseil-cpp~20230802.0",
  262. "urls": [
  263. "https://github.com/abseil/abseil-cpp/archive/refs/tags/20230802.0.tar.gz"
  264. ],
  265. "integrity": "sha256-WdKXavnW7PABqBo1dJpuVRozW5SdNJGM+t4Hc3udk8U=",
  266. "strip_prefix": "abseil-cpp-20230802.0",
  267. "remote_patches": {
  268. "https://bcr.bazel.build/modules/abseil-cpp/20230802.0/patches/module_dot_bazel.patch": "sha256-tppa7eDWtr2QUqOhIzKmHL5DEqUqfMFQIH7tkhFDY8E="
  269. },
  270. "remote_patch_strip": 0
  271. }
  272. }
  273. },
  274. "re2@2023-11-01": {
  275. "name": "re2",
  276. "version": "2023-11-01",
  277. "key": "re2@2023-11-01",
  278. "repoName": "re2",
  279. "executionPlatformsToRegister": [],
  280. "toolchainsToRegister": [],
  281. "extensionUsages": [
  282. {
  283. "extensionBzlFile": "@pybind11_bazel//:python_configure.bzl",
  284. "extensionName": "extension",
  285. "usingModule": "re2@2023-11-01",
  286. "location": {
  287. "file": "https://bcr.bazel.build/modules/re2/2023-11-01/MODULE.bazel",
  288. "line": 19,
  289. "column": 33
  290. },
  291. "imports": {
  292. "local_config_python": "local_config_python",
  293. "pybind11": "pybind11"
  294. },
  295. "devImports": [],
  296. "tags": [
  297. {
  298. "tagName": "toolchain",
  299. "attributeValues": {
  300. "python_version": "3"
  301. },
  302. "devDependency": false,
  303. "location": {
  304. "file": "https://bcr.bazel.build/modules/re2/2023-11-01/MODULE.bazel",
  305. "line": 20,
  306. "column": 27
  307. }
  308. }
  309. ],
  310. "hasDevUseExtension": false,
  311. "hasNonDevUseExtension": true
  312. }
  313. ],
  314. "deps": {
  315. "platforms": "platforms@0.0.8",
  316. "rules_cc": "rules_cc@0.0.9",
  317. "com_google_absl": "abseil-cpp@20230802.0",
  318. "rules_python": "rules_python@0.27.1",
  319. "pybind11_bazel": "pybind11_bazel@2.11.1",
  320. "bazel_tools": "bazel_tools@_",
  321. "local_config_platform": "local_config_platform@_"
  322. },
  323. "repoSpec": {
  324. "bzlFile": "@bazel_tools//tools/build_defs/repo:http.bzl",
  325. "ruleClassName": "http_archive",
  326. "attributes": {
  327. "name": "re2~2023-11-01",
  328. "urls": [
  329. "https://github.com/google/re2/releases/download/2023-11-01/re2-2023-11-01.zip"
  330. ],
  331. "integrity": "sha256-goNBrQhSRhimJhZ70yCwwqzJe9HCjv9pOp6jOn7SqF8=",
  332. "strip_prefix": "re2-2023-11-01",
  333. "remote_patches": {},
  334. "remote_patch_strip": 0
  335. }
  336. }
  337. },
  338. "googletest@1.14.0.bcr.1": {
  339. "name": "googletest",
  340. "version": "1.14.0.bcr.1",
  341. "key": "googletest@1.14.0.bcr.1",
  342. "repoName": "googletest",
  343. "executionPlatformsToRegister": [],
  344. "toolchainsToRegister": [],
  345. "extensionUsages": [],
  346. "deps": {
  347. "com_google_absl": "abseil-cpp@20230802.0",
  348. "platforms": "platforms@0.0.8",
  349. "rules_cc": "rules_cc@0.0.9",
  350. "com_googlesource_code_re2": "re2@2023-11-01",
  351. "bazel_tools": "bazel_tools@_",
  352. "local_config_platform": "local_config_platform@_"
  353. },
  354. "repoSpec": {
  355. "bzlFile": "@bazel_tools//tools/build_defs/repo:http.bzl",
  356. "ruleClassName": "http_archive",
  357. "attributes": {
  358. "name": "googletest~1.14.0.bcr.1",
  359. "urls": [
  360. "https://github.com/google/googletest/archive/refs/tags/v1.14.0.tar.gz"
  361. ],
  362. "integrity": "sha256-itWYxzrXluDYKAsILOvYKmMNc+c808cAV5OKZQG7pdc=",
  363. "strip_prefix": "googletest-1.14.0",
  364. "remote_patches": {
  365. "https://bcr.bazel.build/modules/googletest/1.14.0.bcr.1/patches/module_dot_bazel.patch": "sha256-jijctisPYOzP4X4cl0K7neRh/kqJB+yODNHf8V8heCE="
  366. },
  367. "remote_patch_strip": 0
  368. }
  369. }
  370. },
  371. "google_benchmark@1.8.3": {
  372. "name": "google_benchmark",
  373. "version": "1.8.3",
  374. "key": "google_benchmark@1.8.3",
  375. "repoName": "google_benchmark",
  376. "executionPlatformsToRegister": [],
  377. "toolchainsToRegister": [],
  378. "extensionUsages": [],
  379. "deps": {
  380. "bazel_skylib": "bazel_skylib@1.5.0",
  381. "platforms": "platforms@0.0.8",
  382. "rules_foreign_cc": "rules_foreign_cc@0.9.0",
  383. "rules_cc": "rules_cc@0.0.9",
  384. "libpfm": "libpfm@4.11.0",
  385. "bazel_tools": "bazel_tools@_",
  386. "local_config_platform": "local_config_platform@_"
  387. },
  388. "repoSpec": {
  389. "bzlFile": "@bazel_tools//tools/build_defs/repo:http.bzl",
  390. "ruleClassName": "http_archive",
  391. "attributes": {
  392. "name": "google_benchmark~1.8.3",
  393. "urls": [
  394. "https://github.com/google/benchmark/archive/refs/tags/v1.8.3.tar.gz"
  395. ],
  396. "integrity": "sha256-a8GApX0j1NlRVRn5KwyD1hsFtbqxiJYfNqx7BrDZ6c4=",
  397. "strip_prefix": "benchmark-1.8.3",
  398. "remote_patches": {},
  399. "remote_patch_strip": 0
  400. }
  401. }
  402. },
  403. "rules_bison@0.2.2": {
  404. "name": "rules_bison",
  405. "version": "0.2.2",
  406. "key": "rules_bison@0.2.2",
  407. "repoName": "rules_bison",
  408. "executionPlatformsToRegister": [],
  409. "toolchainsToRegister": [
  410. "@bison//:toolchain"
  411. ],
  412. "extensionUsages": [
  413. {
  414. "extensionBzlFile": "@rules_bison//bison/internal:default_toolchain_ext.bzl",
  415. "extensionName": "default_toolchain_ext",
  416. "usingModule": "rules_bison@0.2.2",
  417. "location": {
  418. "file": "https://bcr.bazel.build/modules/rules_bison/0.2.2/MODULE.bazel",
  419. "line": 28,
  420. "column": 34
  421. },
  422. "imports": {
  423. "bison": "bison"
  424. },
  425. "devImports": [],
  426. "tags": [],
  427. "hasDevUseExtension": false,
  428. "hasNonDevUseExtension": true
  429. }
  430. ],
  431. "deps": {
  432. "rules_m4": "rules_m4@0.2.3",
  433. "bazel_tools": "bazel_tools@_",
  434. "local_config_platform": "local_config_platform@_"
  435. },
  436. "repoSpec": {
  437. "bzlFile": "@bazel_tools//tools/build_defs/repo:http.bzl",
  438. "ruleClassName": "http_archive",
  439. "attributes": {
  440. "name": "rules_bison~0.2.2",
  441. "urls": [
  442. "https://github.com/jmillikin/rules_bison/releases/download/v0.2.2/rules_bison-v0.2.2.tar.xz"
  443. ],
  444. "integrity": "sha256-InkYNDDkOLLcd8rNex27Y0OJcbJBFAZXDx3dkgt8kUU=",
  445. "strip_prefix": "",
  446. "remote_patches": {
  447. "https://bcr.bazel.build/modules/rules_bison/0.2.2/patches/module_dot_bazel.patch": "sha256-yZQfFywDALJFkuCpnWZCuRqVreUCq0/H/ABWsgh0wcM="
  448. },
  449. "remote_patch_strip": 0
  450. }
  451. }
  452. },
  453. "rules_flex@0.2.1": {
  454. "name": "rules_flex",
  455. "version": "0.2.1",
  456. "key": "rules_flex@0.2.1",
  457. "repoName": "rules_flex",
  458. "executionPlatformsToRegister": [],
  459. "toolchainsToRegister": [
  460. "@flex//:toolchain"
  461. ],
  462. "extensionUsages": [
  463. {
  464. "extensionBzlFile": "@rules_flex//flex/internal:default_toolchain_ext.bzl",
  465. "extensionName": "default_toolchain_ext",
  466. "usingModule": "rules_flex@0.2.1",
  467. "location": {
  468. "file": "https://bcr.bazel.build/modules/rules_flex/0.2.1/MODULE.bazel",
  469. "line": 27,
  470. "column": 34
  471. },
  472. "imports": {
  473. "flex": "flex"
  474. },
  475. "devImports": [],
  476. "tags": [],
  477. "hasDevUseExtension": false,
  478. "hasNonDevUseExtension": true
  479. }
  480. ],
  481. "deps": {
  482. "rules_m4": "rules_m4@0.2.3",
  483. "bazel_tools": "bazel_tools@_",
  484. "local_config_platform": "local_config_platform@_"
  485. },
  486. "repoSpec": {
  487. "bzlFile": "@bazel_tools//tools/build_defs/repo:http.bzl",
  488. "ruleClassName": "http_archive",
  489. "attributes": {
  490. "name": "rules_flex~0.2.1",
  491. "urls": [
  492. "https://github.com/jmillikin/rules_flex/releases/download/v0.2.1/rules_flex-v0.2.1.tar.xz"
  493. ],
  494. "integrity": "sha256-iSn+3ECQnRmktCVI0HhfeWx2d9zvi10WALQV5aSndJ8=",
  495. "strip_prefix": "",
  496. "remote_patches": {},
  497. "remote_patch_strip": 0
  498. }
  499. }
  500. },
  501. "rules_m4@0.2.3": {
  502. "name": "rules_m4",
  503. "version": "0.2.3",
  504. "key": "rules_m4@0.2.3",
  505. "repoName": "rules_m4",
  506. "executionPlatformsToRegister": [],
  507. "toolchainsToRegister": [
  508. "@m4//:toolchain"
  509. ],
  510. "extensionUsages": [
  511. {
  512. "extensionBzlFile": "@rules_m4//m4/internal:default_toolchain_ext.bzl",
  513. "extensionName": "default_toolchain_ext",
  514. "usingModule": "rules_m4@0.2.3",
  515. "location": {
  516. "file": "https://bcr.bazel.build/modules/rules_m4/0.2.3/MODULE.bazel",
  517. "line": 26,
  518. "column": 34
  519. },
  520. "imports": {
  521. "m4": "m4"
  522. },
  523. "devImports": [],
  524. "tags": [],
  525. "hasDevUseExtension": false,
  526. "hasNonDevUseExtension": true
  527. }
  528. ],
  529. "deps": {
  530. "bazel_tools": "bazel_tools@_",
  531. "local_config_platform": "local_config_platform@_"
  532. },
  533. "repoSpec": {
  534. "bzlFile": "@bazel_tools//tools/build_defs/repo:http.bzl",
  535. "ruleClassName": "http_archive",
  536. "attributes": {
  537. "name": "rules_m4~0.2.3",
  538. "urls": [
  539. "https://github.com/jmillikin/rules_m4/releases/download/v0.2.3/rules_m4-v0.2.3.tar.xz"
  540. ],
  541. "integrity": "sha256-EM5B8VDM+/3cnSOU7mgOuYTcij3+phOv0BPPsi6nRFw=",
  542. "strip_prefix": "",
  543. "remote_patches": {},
  544. "remote_patch_strip": 0
  545. }
  546. }
  547. },
  548. "rules_cc@0.0.9": {
  549. "name": "rules_cc",
  550. "version": "0.0.9",
  551. "key": "rules_cc@0.0.9",
  552. "repoName": "rules_cc",
  553. "executionPlatformsToRegister": [],
  554. "toolchainsToRegister": [
  555. "@local_config_cc_toolchains//:all"
  556. ],
  557. "extensionUsages": [
  558. {
  559. "extensionBzlFile": "@bazel_tools//tools/cpp:cc_configure.bzl",
  560. "extensionName": "cc_configure_extension",
  561. "usingModule": "rules_cc@0.0.9",
  562. "location": {
  563. "file": "https://bcr.bazel.build/modules/rules_cc/0.0.9/MODULE.bazel",
  564. "line": 9,
  565. "column": 29
  566. },
  567. "imports": {
  568. "local_config_cc_toolchains": "local_config_cc_toolchains"
  569. },
  570. "devImports": [],
  571. "tags": [],
  572. "hasDevUseExtension": false,
  573. "hasNonDevUseExtension": true
  574. }
  575. ],
  576. "deps": {
  577. "platforms": "platforms@0.0.8",
  578. "bazel_tools": "bazel_tools@_",
  579. "local_config_platform": "local_config_platform@_"
  580. },
  581. "repoSpec": {
  582. "bzlFile": "@bazel_tools//tools/build_defs/repo:http.bzl",
  583. "ruleClassName": "http_archive",
  584. "attributes": {
  585. "name": "rules_cc~0.0.9",
  586. "urls": [
  587. "https://github.com/bazelbuild/rules_cc/releases/download/0.0.9/rules_cc-0.0.9.tar.gz"
  588. ],
  589. "integrity": "sha256-IDeHW5pEVtzkp50RKorohbvEqtlo5lh9ym5k86CQDN8=",
  590. "strip_prefix": "rules_cc-0.0.9",
  591. "remote_patches": {
  592. "https://bcr.bazel.build/modules/rules_cc/0.0.9/patches/module_dot_bazel_version.patch": "sha256-mM+qzOI0SgAdaJBlWOSMwMPKpaA9b7R37Hj/tp5bb4g="
  593. },
  594. "remote_patch_strip": 0
  595. }
  596. }
  597. },
  598. "rules_proto@6.0.0-rc1": {
  599. "name": "rules_proto",
  600. "version": "6.0.0-rc1",
  601. "key": "rules_proto@6.0.0-rc1",
  602. "repoName": "rules_proto",
  603. "executionPlatformsToRegister": [],
  604. "toolchainsToRegister": [],
  605. "extensionUsages": [],
  606. "deps": {
  607. "rules_license": "rules_license@0.0.7",
  608. "bazel_skylib": "bazel_skylib@1.5.0",
  609. "bazel_tools": "bazel_tools@_",
  610. "local_config_platform": "local_config_platform@_"
  611. },
  612. "repoSpec": {
  613. "bzlFile": "@bazel_tools//tools/build_defs/repo:http.bzl",
  614. "ruleClassName": "http_archive",
  615. "attributes": {
  616. "name": "rules_proto~6.0.0-rc1",
  617. "urls": [
  618. "https://github.com/bazelbuild/rules_proto/releases/download/6.0.0-rc1/rules_proto-6.0.0-rc1.tar.gz"
  619. ],
  620. "integrity": "sha256-kEqAl/rkKmkMjgjYBSEOQMzLBp9fmg9nJ89PqnvtLJw=",
  621. "strip_prefix": "rules_proto-6.0.0-rc1",
  622. "remote_patches": {
  623. "https://bcr.bazel.build/modules/rules_proto/6.0.0-rc1/patches/module_dot_bazel_version.patch": "sha256-OepRECTunWiz3WREvMK/pOvpt/HRZ6g87fKfokcnQGE="
  624. },
  625. "remote_patch_strip": 1
  626. }
  627. }
  628. },
  629. "protobuf@21.7": {
  630. "name": "protobuf",
  631. "version": "21.7",
  632. "key": "protobuf@21.7",
  633. "repoName": "protobuf",
  634. "executionPlatformsToRegister": [],
  635. "toolchainsToRegister": [],
  636. "extensionUsages": [
  637. {
  638. "extensionBzlFile": "@rules_jvm_external//:extensions.bzl",
  639. "extensionName": "maven",
  640. "usingModule": "protobuf@21.7",
  641. "location": {
  642. "file": "https://bcr.bazel.build/modules/protobuf/21.7/MODULE.bazel",
  643. "line": 22,
  644. "column": 22
  645. },
  646. "imports": {
  647. "maven": "maven"
  648. },
  649. "devImports": [],
  650. "tags": [
  651. {
  652. "tagName": "install",
  653. "attributeValues": {
  654. "name": "maven",
  655. "artifacts": [
  656. "com.google.code.findbugs:jsr305:3.0.2",
  657. "com.google.code.gson:gson:2.8.9",
  658. "com.google.errorprone:error_prone_annotations:2.3.2",
  659. "com.google.j2objc:j2objc-annotations:1.3",
  660. "com.google.guava:guava:31.1-jre",
  661. "com.google.guava:guava-testlib:31.1-jre",
  662. "com.google.truth:truth:1.1.2",
  663. "junit:junit:4.13.2",
  664. "org.mockito:mockito-core:4.3.1"
  665. ]
  666. },
  667. "devDependency": false,
  668. "location": {
  669. "file": "https://bcr.bazel.build/modules/protobuf/21.7/MODULE.bazel",
  670. "line": 24,
  671. "column": 14
  672. }
  673. }
  674. ],
  675. "hasDevUseExtension": false,
  676. "hasNonDevUseExtension": true
  677. }
  678. ],
  679. "deps": {
  680. "bazel_skylib": "bazel_skylib@1.5.0",
  681. "rules_python": "rules_python@0.27.1",
  682. "rules_cc": "rules_cc@0.0.9",
  683. "rules_proto": "rules_proto@6.0.0-rc1",
  684. "rules_java": "rules_java@7.1.0",
  685. "rules_pkg": "rules_pkg@0.7.0",
  686. "com_google_abseil": "abseil-cpp@20230802.0",
  687. "zlib": "zlib@1.3",
  688. "upb": "upb@0.0.0-20220923-a547704",
  689. "rules_jvm_external": "rules_jvm_external@4.4.2",
  690. "com_google_googletest": "googletest@1.14.0.bcr.1",
  691. "bazel_tools": "bazel_tools@_",
  692. "local_config_platform": "local_config_platform@_"
  693. },
  694. "repoSpec": {
  695. "bzlFile": "@bazel_tools//tools/build_defs/repo:http.bzl",
  696. "ruleClassName": "http_archive",
  697. "attributes": {
  698. "name": "protobuf~21.7",
  699. "urls": [
  700. "https://github.com/protocolbuffers/protobuf/releases/download/v21.7/protobuf-all-21.7.zip"
  701. ],
  702. "integrity": "sha256-VJOiH17T/FAuZv7GuUScBqVRztYwAvpIkDxA36jeeko=",
  703. "strip_prefix": "protobuf-21.7",
  704. "remote_patches": {
  705. "https://bcr.bazel.build/modules/protobuf/21.7/patches/add_module_dot_bazel.patch": "sha256-q3V2+eq0v2XF0z8z+V+QF4cynD6JvHI1y3kI/+rzl5s=",
  706. "https://bcr.bazel.build/modules/protobuf/21.7/patches/add_module_dot_bazel_for_examples.patch": "sha256-O7YP6s3lo/1opUiO0jqXYORNHdZ/2q3hjz1QGy8QdIU=",
  707. "https://bcr.bazel.build/modules/protobuf/21.7/patches/relative_repo_names.patch": "sha256-RK9RjW8T5UJNG7flIrnFiNE9vKwWB+8uWWtJqXYT0w4=",
  708. "https://bcr.bazel.build/modules/protobuf/21.7/patches/add_missing_files.patch": "sha256-Hyne4DG2u5bXcWHNxNMirA2QFAe/2Cl8oMm1XJdkQIY="
  709. },
  710. "remote_patch_strip": 1
  711. }
  712. }
  713. },
  714. "platforms@0.0.8": {
  715. "name": "platforms",
  716. "version": "0.0.8",
  717. "key": "platforms@0.0.8",
  718. "repoName": "platforms",
  719. "executionPlatformsToRegister": [],
  720. "toolchainsToRegister": [],
  721. "extensionUsages": [],
  722. "deps": {
  723. "rules_license": "rules_license@0.0.7",
  724. "bazel_tools": "bazel_tools@_",
  725. "local_config_platform": "local_config_platform@_"
  726. },
  727. "repoSpec": {
  728. "bzlFile": "@bazel_tools//tools/build_defs/repo:http.bzl",
  729. "ruleClassName": "http_archive",
  730. "attributes": {
  731. "name": "platforms",
  732. "urls": [
  733. "https://github.com/bazelbuild/platforms/releases/download/0.0.8/platforms-0.0.8.tar.gz"
  734. ],
  735. "integrity": "sha256-gVBAZgU4ns7LbaB8vLUJ1WN6OrmiS8abEQFTE2fYnXQ=",
  736. "strip_prefix": "",
  737. "remote_patches": {},
  738. "remote_patch_strip": 0
  739. }
  740. }
  741. },
  742. "zlib@1.3": {
  743. "name": "zlib",
  744. "version": "1.3",
  745. "key": "zlib@1.3",
  746. "repoName": "zlib",
  747. "executionPlatformsToRegister": [],
  748. "toolchainsToRegister": [],
  749. "extensionUsages": [],
  750. "deps": {
  751. "platforms": "platforms@0.0.8",
  752. "rules_cc": "rules_cc@0.0.9",
  753. "bazel_tools": "bazel_tools@_",
  754. "local_config_platform": "local_config_platform@_"
  755. },
  756. "repoSpec": {
  757. "bzlFile": "@bazel_tools//tools/build_defs/repo:http.bzl",
  758. "ruleClassName": "http_archive",
  759. "attributes": {
  760. "name": "zlib~1.3",
  761. "urls": [
  762. "https://github.com/madler/zlib/releases/download/v1.3/zlib-1.3.tar.gz"
  763. ],
  764. "integrity": "sha256-/wukwpIBPbwnUws6geH5qBPNOd4Byl4Pi/NVcC76WT4=",
  765. "strip_prefix": "zlib-1.3",
  766. "remote_patches": {
  767. "https://bcr.bazel.build/modules/zlib/1.3/patches/add_build_file.patch": "sha256-Ei+FYaaOo7A3jTKunMEodTI0Uw5NXQyZEcboMC8JskY=",
  768. "https://bcr.bazel.build/modules/zlib/1.3/patches/module_dot_bazel.patch": "sha256-fPWLM+2xaF/kuy+kZc1YTfW6hNjrkG400Ho7gckuyJk="
  769. },
  770. "remote_patch_strip": 0
  771. }
  772. }
  773. },
  774. "zstd@1.5.5": {
  775. "name": "zstd",
  776. "version": "1.5.5",
  777. "key": "zstd@1.5.5",
  778. "repoName": "zstd",
  779. "executionPlatformsToRegister": [],
  780. "toolchainsToRegister": [],
  781. "extensionUsages": [],
  782. "deps": {
  783. "rules_cc": "rules_cc@0.0.9",
  784. "platforms": "platforms@0.0.8",
  785. "bazel_tools": "bazel_tools@_",
  786. "local_config_platform": "local_config_platform@_"
  787. },
  788. "repoSpec": {
  789. "bzlFile": "@bazel_tools//tools/build_defs/repo:http.bzl",
  790. "ruleClassName": "http_archive",
  791. "attributes": {
  792. "name": "zstd~1.5.5",
  793. "urls": [
  794. "https://github.com/facebook/zstd/releases/download/v1.5.5/zstd-1.5.5.tar.gz"
  795. ],
  796. "integrity": "sha256-nEOWzIKc+uMZpuJhUgLoKq1BNyBzSC/OKG+seGRtPuQ=",
  797. "strip_prefix": "zstd-1.5.5",
  798. "remote_patches": {
  799. "https://bcr.bazel.build/modules/zstd/1.5.5/patches/add_build_file.patch": "sha256-RuZ752brpYGsY08f/54bFx5pJIOGwkLVAmyQCfAUxjg=",
  800. "https://bcr.bazel.build/modules/zstd/1.5.5/patches/module_dot_bazel.patch": "sha256-Gow157Ff39hKAZfkLrZfdVAmbfwZYYDlfcHUM0B4a7M="
  801. },
  802. "remote_patch_strip": 0
  803. }
  804. }
  805. },
  806. "rules_python@0.27.1": {
  807. "name": "rules_python",
  808. "version": "0.27.1",
  809. "key": "rules_python@0.27.1",
  810. "repoName": "rules_python",
  811. "executionPlatformsToRegister": [],
  812. "toolchainsToRegister": [
  813. "@pythons_hub//:all"
  814. ],
  815. "extensionUsages": [
  816. {
  817. "extensionBzlFile": "@rules_python//python/private/bzlmod:internal_deps.bzl",
  818. "extensionName": "internal_deps",
  819. "usingModule": "rules_python@0.27.1",
  820. "location": {
  821. "file": "https://bcr.bazel.build/modules/rules_python/0.27.1/MODULE.bazel",
  822. "line": 17,
  823. "column": 30
  824. },
  825. "imports": {
  826. "rules_python_internal": "rules_python_internal",
  827. "pypi__build": "pypi__build",
  828. "pypi__click": "pypi__click",
  829. "pypi__colorama": "pypi__colorama",
  830. "pypi__importlib_metadata": "pypi__importlib_metadata",
  831. "pypi__installer": "pypi__installer",
  832. "pypi__more_itertools": "pypi__more_itertools",
  833. "pypi__packaging": "pypi__packaging",
  834. "pypi__pep517": "pypi__pep517",
  835. "pypi__pip": "pypi__pip",
  836. "pypi__pip_tools": "pypi__pip_tools",
  837. "pypi__pyproject_hooks": "pypi__pyproject_hooks",
  838. "pypi__setuptools": "pypi__setuptools",
  839. "pypi__tomli": "pypi__tomli",
  840. "pypi__wheel": "pypi__wheel",
  841. "pypi__zipp": "pypi__zipp"
  842. },
  843. "devImports": [],
  844. "tags": [
  845. {
  846. "tagName": "install",
  847. "attributeValues": {},
  848. "devDependency": false,
  849. "location": {
  850. "file": "https://bcr.bazel.build/modules/rules_python/0.27.1/MODULE.bazel",
  851. "line": 18,
  852. "column": 22
  853. }
  854. }
  855. ],
  856. "hasDevUseExtension": false,
  857. "hasNonDevUseExtension": true
  858. },
  859. {
  860. "extensionBzlFile": "@rules_python//python/extensions:python.bzl",
  861. "extensionName": "python",
  862. "usingModule": "rules_python@0.27.1",
  863. "location": {
  864. "file": "https://bcr.bazel.build/modules/rules_python/0.27.1/MODULE.bazel",
  865. "line": 43,
  866. "column": 23
  867. },
  868. "imports": {
  869. "pythons_hub": "pythons_hub"
  870. },
  871. "devImports": [],
  872. "tags": [
  873. {
  874. "tagName": "toolchain",
  875. "attributeValues": {
  876. "is_default": true,
  877. "python_version": "3.11"
  878. },
  879. "devDependency": false,
  880. "location": {
  881. "file": "https://bcr.bazel.build/modules/rules_python/0.27.1/MODULE.bazel",
  882. "line": 49,
  883. "column": 17
  884. }
  885. }
  886. ],
  887. "hasDevUseExtension": false,
  888. "hasNonDevUseExtension": true
  889. }
  890. ],
  891. "deps": {
  892. "bazel_features": "bazel_features@1.1.1",
  893. "bazel_skylib": "bazel_skylib@1.5.0",
  894. "platforms": "platforms@0.0.8",
  895. "rules_proto": "rules_proto@6.0.0-rc1",
  896. "com_google_protobuf": "protobuf@21.7",
  897. "bazel_tools": "bazel_tools@_",
  898. "local_config_platform": "local_config_platform@_"
  899. },
  900. "repoSpec": {
  901. "bzlFile": "@bazel_tools//tools/build_defs/repo:http.bzl",
  902. "ruleClassName": "http_archive",
  903. "attributes": {
  904. "name": "rules_python~0.27.1",
  905. "urls": [
  906. "https://github.com/bazelbuild/rules_python/releases/download/0.27.1/rules_python-0.27.1.tar.gz"
  907. ],
  908. "integrity": "sha256-6FrjDeM2JaY+yn/ECpT+qEXmQYiOUvMra+6pHosbJ5M=",
  909. "strip_prefix": "rules_python-0.27.1",
  910. "remote_patches": {
  911. "https://bcr.bazel.build/modules/rules_python/0.27.1/patches/module_dot_bazel_version.patch": "sha256-Ier7Gb4zhbS273tClCov24gNYdheo4FdegZwaHBrQy0="
  912. },
  913. "remote_patch_strip": 1
  914. }
  915. }
  916. },
  917. "bazel_tools@_": {
  918. "name": "bazel_tools",
  919. "version": "",
  920. "key": "bazel_tools@_",
  921. "repoName": "bazel_tools",
  922. "executionPlatformsToRegister": [],
  923. "toolchainsToRegister": [
  924. "@local_config_cc_toolchains//:all",
  925. "@local_config_sh//:local_sh_toolchain"
  926. ],
  927. "extensionUsages": [
  928. {
  929. "extensionBzlFile": "@bazel_tools//tools/cpp:cc_configure.bzl",
  930. "extensionName": "cc_configure_extension",
  931. "usingModule": "bazel_tools@_",
  932. "location": {
  933. "file": "@@bazel_tools//:MODULE.bazel",
  934. "line": 17,
  935. "column": 29
  936. },
  937. "imports": {
  938. "local_config_cc": "local_config_cc",
  939. "local_config_cc_toolchains": "local_config_cc_toolchains"
  940. },
  941. "devImports": [],
  942. "tags": [],
  943. "hasDevUseExtension": false,
  944. "hasNonDevUseExtension": true
  945. },
  946. {
  947. "extensionBzlFile": "@bazel_tools//tools/osx:xcode_configure.bzl",
  948. "extensionName": "xcode_configure_extension",
  949. "usingModule": "bazel_tools@_",
  950. "location": {
  951. "file": "@@bazel_tools//:MODULE.bazel",
  952. "line": 21,
  953. "column": 32
  954. },
  955. "imports": {
  956. "local_config_xcode": "local_config_xcode"
  957. },
  958. "devImports": [],
  959. "tags": [],
  960. "hasDevUseExtension": false,
  961. "hasNonDevUseExtension": true
  962. },
  963. {
  964. "extensionBzlFile": "@rules_java//java:extensions.bzl",
  965. "extensionName": "toolchains",
  966. "usingModule": "bazel_tools@_",
  967. "location": {
  968. "file": "@@bazel_tools//:MODULE.bazel",
  969. "line": 24,
  970. "column": 32
  971. },
  972. "imports": {
  973. "local_jdk": "local_jdk",
  974. "remote_java_tools": "remote_java_tools",
  975. "remote_java_tools_linux": "remote_java_tools_linux",
  976. "remote_java_tools_windows": "remote_java_tools_windows",
  977. "remote_java_tools_darwin_x86_64": "remote_java_tools_darwin_x86_64",
  978. "remote_java_tools_darwin_arm64": "remote_java_tools_darwin_arm64"
  979. },
  980. "devImports": [],
  981. "tags": [],
  982. "hasDevUseExtension": false,
  983. "hasNonDevUseExtension": true
  984. },
  985. {
  986. "extensionBzlFile": "@bazel_tools//tools/sh:sh_configure.bzl",
  987. "extensionName": "sh_configure_extension",
  988. "usingModule": "bazel_tools@_",
  989. "location": {
  990. "file": "@@bazel_tools//:MODULE.bazel",
  991. "line": 35,
  992. "column": 39
  993. },
  994. "imports": {
  995. "local_config_sh": "local_config_sh"
  996. },
  997. "devImports": [],
  998. "tags": [],
  999. "hasDevUseExtension": false,
  1000. "hasNonDevUseExtension": true
  1001. },
  1002. {
  1003. "extensionBzlFile": "@bazel_tools//tools/test:extensions.bzl",
  1004. "extensionName": "remote_coverage_tools_extension",
  1005. "usingModule": "bazel_tools@_",
  1006. "location": {
  1007. "file": "@@bazel_tools//:MODULE.bazel",
  1008. "line": 39,
  1009. "column": 48
  1010. },
  1011. "imports": {
  1012. "remote_coverage_tools": "remote_coverage_tools"
  1013. },
  1014. "devImports": [],
  1015. "tags": [],
  1016. "hasDevUseExtension": false,
  1017. "hasNonDevUseExtension": true
  1018. },
  1019. {
  1020. "extensionBzlFile": "@bazel_tools//tools/android:android_extensions.bzl",
  1021. "extensionName": "remote_android_tools_extensions",
  1022. "usingModule": "bazel_tools@_",
  1023. "location": {
  1024. "file": "@@bazel_tools//:MODULE.bazel",
  1025. "line": 42,
  1026. "column": 42
  1027. },
  1028. "imports": {
  1029. "android_gmaven_r8": "android_gmaven_r8",
  1030. "android_tools": "android_tools"
  1031. },
  1032. "devImports": [],
  1033. "tags": [],
  1034. "hasDevUseExtension": false,
  1035. "hasNonDevUseExtension": true
  1036. }
  1037. ],
  1038. "deps": {
  1039. "rules_cc": "rules_cc@0.0.9",
  1040. "rules_java": "rules_java@7.1.0",
  1041. "rules_license": "rules_license@0.0.7",
  1042. "rules_proto": "rules_proto@6.0.0-rc1",
  1043. "rules_python": "rules_python@0.27.1",
  1044. "platforms": "platforms@0.0.8",
  1045. "com_google_protobuf": "protobuf@21.7",
  1046. "zlib": "zlib@1.3",
  1047. "build_bazel_apple_support": "apple_support@1.5.0",
  1048. "local_config_platform": "local_config_platform@_"
  1049. }
  1050. },
  1051. "local_config_platform@_": {
  1052. "name": "local_config_platform",
  1053. "version": "",
  1054. "key": "local_config_platform@_",
  1055. "repoName": "local_config_platform",
  1056. "executionPlatformsToRegister": [],
  1057. "toolchainsToRegister": [],
  1058. "extensionUsages": [],
  1059. "deps": {
  1060. "platforms": "platforms@0.0.8",
  1061. "bazel_tools": "bazel_tools@_"
  1062. }
  1063. },
  1064. "pybind11_bazel@2.11.1": {
  1065. "name": "pybind11_bazel",
  1066. "version": "2.11.1",
  1067. "key": "pybind11_bazel@2.11.1",
  1068. "repoName": "pybind11_bazel",
  1069. "executionPlatformsToRegister": [],
  1070. "toolchainsToRegister": [],
  1071. "extensionUsages": [],
  1072. "deps": {
  1073. "platforms": "platforms@0.0.8",
  1074. "rules_cc": "rules_cc@0.0.9",
  1075. "bazel_tools": "bazel_tools@_",
  1076. "local_config_platform": "local_config_platform@_"
  1077. },
  1078. "repoSpec": {
  1079. "bzlFile": "@bazel_tools//tools/build_defs/repo:http.bzl",
  1080. "ruleClassName": "http_archive",
  1081. "attributes": {
  1082. "name": "pybind11_bazel~2.11.1",
  1083. "urls": [
  1084. "https://github.com/pybind/pybind11_bazel/releases/download/v2.11.1/pybind11_bazel-2.11.1.zip"
  1085. ],
  1086. "integrity": "sha256-LEZsmzzKeFK0fgeFADEomE/PDV1hoaLkxazu/ZNawiA=",
  1087. "strip_prefix": "pybind11_bazel-2.11.1",
  1088. "remote_patches": {},
  1089. "remote_patch_strip": 0
  1090. }
  1091. }
  1092. },
  1093. "rules_foreign_cc@0.9.0": {
  1094. "name": "rules_foreign_cc",
  1095. "version": "0.9.0",
  1096. "key": "rules_foreign_cc@0.9.0",
  1097. "repoName": "rules_foreign_cc",
  1098. "executionPlatformsToRegister": [],
  1099. "toolchainsToRegister": [
  1100. "@rules_foreign_cc_framework_toolchain_freebsd//:toolchain",
  1101. "@rules_foreign_cc_framework_toolchain_linux//:toolchain",
  1102. "@rules_foreign_cc_framework_toolchain_macos//:toolchain",
  1103. "@rules_foreign_cc_framework_toolchain_windows//:toolchain",
  1104. "@rules_foreign_cc//toolchains:built_make_toolchain",
  1105. "@rules_foreign_cc//toolchains:preinstalled_autoconf_toolchain",
  1106. "@rules_foreign_cc//toolchains:preinstalled_automake_toolchain",
  1107. "@rules_foreign_cc//toolchains:preinstalled_m4_toolchain",
  1108. "@rules_foreign_cc//toolchains:preinstalled_pkgconfig_toolchain",
  1109. "@cmake_3.23.2_toolchains//:all",
  1110. "@ninja_1.11.0_toolchains//:all"
  1111. ],
  1112. "extensionUsages": [
  1113. {
  1114. "extensionBzlFile": "@rules_foreign_cc//foreign_cc:extensions.bzl",
  1115. "extensionName": "ext",
  1116. "usingModule": "rules_foreign_cc@0.9.0",
  1117. "location": {
  1118. "file": "https://bcr.bazel.build/modules/rules_foreign_cc/0.9.0/MODULE.bazel",
  1119. "line": 13,
  1120. "column": 20
  1121. },
  1122. "imports": {
  1123. "cmake_3.23.2_toolchains": "cmake_3.23.2_toolchains",
  1124. "rules_foreign_cc_framework_toolchain_freebsd": "rules_foreign_cc_framework_toolchain_freebsd",
  1125. "rules_foreign_cc_framework_toolchain_linux": "rules_foreign_cc_framework_toolchain_linux",
  1126. "rules_foreign_cc_framework_toolchain_macos": "rules_foreign_cc_framework_toolchain_macos",
  1127. "rules_foreign_cc_framework_toolchain_windows": "rules_foreign_cc_framework_toolchain_windows",
  1128. "cmake_src": "cmake_src",
  1129. "gnumake_src": "gnumake_src",
  1130. "ninja_build_src": "ninja_build_src",
  1131. "ninja_1.11.0_toolchains": "ninja_1.11.0_toolchains"
  1132. },
  1133. "devImports": [],
  1134. "tags": [],
  1135. "hasDevUseExtension": false,
  1136. "hasNonDevUseExtension": true
  1137. }
  1138. ],
  1139. "deps": {
  1140. "bazel_skylib": "bazel_skylib@1.5.0",
  1141. "platforms": "platforms@0.0.8",
  1142. "bazel_tools": "bazel_tools@_",
  1143. "local_config_platform": "local_config_platform@_"
  1144. },
  1145. "repoSpec": {
  1146. "bzlFile": "@bazel_tools//tools/build_defs/repo:http.bzl",
  1147. "ruleClassName": "http_archive",
  1148. "attributes": {
  1149. "name": "rules_foreign_cc~0.9.0",
  1150. "urls": [
  1151. "https://github.com/bazelbuild/rules_foreign_cc/archive/refs/tags/0.9.0.tar.gz"
  1152. ],
  1153. "integrity": "sha256-Kk0HzWSwcZs5p8EiGKPlB2crgql7mMaonThWWJTPfFE=",
  1154. "strip_prefix": "rules_foreign_cc-0.9.0",
  1155. "remote_patches": {
  1156. "https://bcr.bazel.build/modules/rules_foreign_cc/0.9.0/patches/examples.patch": "sha256-RxT7rVHxO30W350sYu7ybi4rStwoB8b8mr34ZU9ciIk=",
  1157. "https://bcr.bazel.build/modules/rules_foreign_cc/0.9.0/patches/module_dot_bazel.patch": "sha256-VTNnq8ySdeo9pI4rrJ+EXa/9ZACgQQ4baUwoQpljzCM="
  1158. },
  1159. "remote_patch_strip": 1
  1160. }
  1161. }
  1162. },
  1163. "libpfm@4.11.0": {
  1164. "name": "libpfm",
  1165. "version": "4.11.0",
  1166. "key": "libpfm@4.11.0",
  1167. "repoName": "libpfm",
  1168. "executionPlatformsToRegister": [],
  1169. "toolchainsToRegister": [],
  1170. "extensionUsages": [],
  1171. "deps": {
  1172. "platforms": "platforms@0.0.8",
  1173. "rules_foreign_cc": "rules_foreign_cc@0.9.0",
  1174. "bazel_tools": "bazel_tools@_",
  1175. "local_config_platform": "local_config_platform@_"
  1176. },
  1177. "repoSpec": {
  1178. "bzlFile": "@bazel_tools//tools/build_defs/repo:http.bzl",
  1179. "ruleClassName": "http_archive",
  1180. "attributes": {
  1181. "name": "libpfm~4.11.0",
  1182. "urls": [
  1183. "https://sourceforge.net/projects/perfmon2/files/libpfm4/libpfm-4.11.0.tar.gz"
  1184. ],
  1185. "integrity": "sha256-XaX4hyveFLNjTJaI2YD2i9ootRAmhyPMEpc+7bq5/sw=",
  1186. "strip_prefix": "libpfm-4.11.0",
  1187. "remote_patches": {
  1188. "https://bcr.bazel.build/modules/libpfm/4.11.0/patches/module_dot_bazel.patch": "sha256-G0wQJ2mVEoW/L5LGzmbNfuZaxI2+9NDuWJtqvCpM1pc=",
  1189. "https://bcr.bazel.build/modules/libpfm/4.11.0/patches/add_build_file.patch": "sha256-E61d/qQgmeOcUliWaveHPp1EZoOjkvZJsqhGhHofqUg="
  1190. },
  1191. "remote_patch_strip": 0
  1192. }
  1193. }
  1194. },
  1195. "rules_license@0.0.7": {
  1196. "name": "rules_license",
  1197. "version": "0.0.7",
  1198. "key": "rules_license@0.0.7",
  1199. "repoName": "rules_license",
  1200. "executionPlatformsToRegister": [],
  1201. "toolchainsToRegister": [],
  1202. "extensionUsages": [],
  1203. "deps": {
  1204. "bazel_tools": "bazel_tools@_",
  1205. "local_config_platform": "local_config_platform@_"
  1206. },
  1207. "repoSpec": {
  1208. "bzlFile": "@bazel_tools//tools/build_defs/repo:http.bzl",
  1209. "ruleClassName": "http_archive",
  1210. "attributes": {
  1211. "name": "rules_license~0.0.7",
  1212. "urls": [
  1213. "https://github.com/bazelbuild/rules_license/releases/download/0.0.7/rules_license-0.0.7.tar.gz"
  1214. ],
  1215. "integrity": "sha256-RTHezLkTY5ww5cdRKgVNXYdWmNrrddjPkPKEN1/nw2A=",
  1216. "strip_prefix": "",
  1217. "remote_patches": {},
  1218. "remote_patch_strip": 0
  1219. }
  1220. }
  1221. },
  1222. "rules_java@7.1.0": {
  1223. "name": "rules_java",
  1224. "version": "7.1.0",
  1225. "key": "rules_java@7.1.0",
  1226. "repoName": "rules_java",
  1227. "executionPlatformsToRegister": [],
  1228. "toolchainsToRegister": [
  1229. "//toolchains:all",
  1230. "@local_jdk//:runtime_toolchain_definition",
  1231. "@local_jdk//:bootstrap_runtime_toolchain_definition",
  1232. "@remotejdk11_linux_toolchain_config_repo//:all",
  1233. "@remotejdk11_linux_aarch64_toolchain_config_repo//:all",
  1234. "@remotejdk11_linux_ppc64le_toolchain_config_repo//:all",
  1235. "@remotejdk11_linux_s390x_toolchain_config_repo//:all",
  1236. "@remotejdk11_macos_toolchain_config_repo//:all",
  1237. "@remotejdk11_macos_aarch64_toolchain_config_repo//:all",
  1238. "@remotejdk11_win_toolchain_config_repo//:all",
  1239. "@remotejdk11_win_arm64_toolchain_config_repo//:all",
  1240. "@remotejdk17_linux_toolchain_config_repo//:all",
  1241. "@remotejdk17_linux_aarch64_toolchain_config_repo//:all",
  1242. "@remotejdk17_linux_ppc64le_toolchain_config_repo//:all",
  1243. "@remotejdk17_linux_s390x_toolchain_config_repo//:all",
  1244. "@remotejdk17_macos_toolchain_config_repo//:all",
  1245. "@remotejdk17_macos_aarch64_toolchain_config_repo//:all",
  1246. "@remotejdk17_win_toolchain_config_repo//:all",
  1247. "@remotejdk17_win_arm64_toolchain_config_repo//:all",
  1248. "@remotejdk21_linux_toolchain_config_repo//:all",
  1249. "@remotejdk21_linux_aarch64_toolchain_config_repo//:all",
  1250. "@remotejdk21_macos_toolchain_config_repo//:all",
  1251. "@remotejdk21_macos_aarch64_toolchain_config_repo//:all",
  1252. "@remotejdk21_win_toolchain_config_repo//:all"
  1253. ],
  1254. "extensionUsages": [
  1255. {
  1256. "extensionBzlFile": "@rules_java//java:extensions.bzl",
  1257. "extensionName": "toolchains",
  1258. "usingModule": "rules_java@7.1.0",
  1259. "location": {
  1260. "file": "https://bcr.bazel.build/modules/rules_java/7.1.0/MODULE.bazel",
  1261. "line": 19,
  1262. "column": 27
  1263. },
  1264. "imports": {
  1265. "remote_java_tools": "remote_java_tools",
  1266. "remote_java_tools_linux": "remote_java_tools_linux",
  1267. "remote_java_tools_windows": "remote_java_tools_windows",
  1268. "remote_java_tools_darwin_x86_64": "remote_java_tools_darwin_x86_64",
  1269. "remote_java_tools_darwin_arm64": "remote_java_tools_darwin_arm64",
  1270. "local_jdk": "local_jdk",
  1271. "remotejdk11_linux_toolchain_config_repo": "remotejdk11_linux_toolchain_config_repo",
  1272. "remotejdk11_linux_aarch64_toolchain_config_repo": "remotejdk11_linux_aarch64_toolchain_config_repo",
  1273. "remotejdk11_linux_ppc64le_toolchain_config_repo": "remotejdk11_linux_ppc64le_toolchain_config_repo",
  1274. "remotejdk11_linux_s390x_toolchain_config_repo": "remotejdk11_linux_s390x_toolchain_config_repo",
  1275. "remotejdk11_macos_toolchain_config_repo": "remotejdk11_macos_toolchain_config_repo",
  1276. "remotejdk11_macos_aarch64_toolchain_config_repo": "remotejdk11_macos_aarch64_toolchain_config_repo",
  1277. "remotejdk11_win_toolchain_config_repo": "remotejdk11_win_toolchain_config_repo",
  1278. "remotejdk11_win_arm64_toolchain_config_repo": "remotejdk11_win_arm64_toolchain_config_repo",
  1279. "remotejdk17_linux_toolchain_config_repo": "remotejdk17_linux_toolchain_config_repo",
  1280. "remotejdk17_linux_aarch64_toolchain_config_repo": "remotejdk17_linux_aarch64_toolchain_config_repo",
  1281. "remotejdk17_linux_ppc64le_toolchain_config_repo": "remotejdk17_linux_ppc64le_toolchain_config_repo",
  1282. "remotejdk17_linux_s390x_toolchain_config_repo": "remotejdk17_linux_s390x_toolchain_config_repo",
  1283. "remotejdk17_macos_toolchain_config_repo": "remotejdk17_macos_toolchain_config_repo",
  1284. "remotejdk17_macos_aarch64_toolchain_config_repo": "remotejdk17_macos_aarch64_toolchain_config_repo",
  1285. "remotejdk17_win_toolchain_config_repo": "remotejdk17_win_toolchain_config_repo",
  1286. "remotejdk17_win_arm64_toolchain_config_repo": "remotejdk17_win_arm64_toolchain_config_repo",
  1287. "remotejdk21_linux_toolchain_config_repo": "remotejdk21_linux_toolchain_config_repo",
  1288. "remotejdk21_linux_aarch64_toolchain_config_repo": "remotejdk21_linux_aarch64_toolchain_config_repo",
  1289. "remotejdk21_macos_toolchain_config_repo": "remotejdk21_macos_toolchain_config_repo",
  1290. "remotejdk21_macos_aarch64_toolchain_config_repo": "remotejdk21_macos_aarch64_toolchain_config_repo",
  1291. "remotejdk21_win_toolchain_config_repo": "remotejdk21_win_toolchain_config_repo"
  1292. },
  1293. "devImports": [],
  1294. "tags": [],
  1295. "hasDevUseExtension": false,
  1296. "hasNonDevUseExtension": true
  1297. }
  1298. ],
  1299. "deps": {
  1300. "platforms": "platforms@0.0.8",
  1301. "rules_cc": "rules_cc@0.0.9",
  1302. "bazel_skylib": "bazel_skylib@1.5.0",
  1303. "rules_proto": "rules_proto@6.0.0-rc1",
  1304. "rules_license": "rules_license@0.0.7",
  1305. "bazel_tools": "bazel_tools@_",
  1306. "local_config_platform": "local_config_platform@_"
  1307. },
  1308. "repoSpec": {
  1309. "bzlFile": "@bazel_tools//tools/build_defs/repo:http.bzl",
  1310. "ruleClassName": "http_archive",
  1311. "attributes": {
  1312. "name": "rules_java~7.1.0",
  1313. "urls": [
  1314. "https://github.com/bazelbuild/rules_java/releases/download/7.1.0/rules_java-7.1.0.tar.gz"
  1315. ],
  1316. "integrity": "sha256-o3pOX2OrgnFuXdau75iO2EYcegC46TYnImKJn1h81OE=",
  1317. "strip_prefix": "",
  1318. "remote_patches": {},
  1319. "remote_patch_strip": 0
  1320. }
  1321. }
  1322. },
  1323. "rules_pkg@0.7.0": {
  1324. "name": "rules_pkg",
  1325. "version": "0.7.0",
  1326. "key": "rules_pkg@0.7.0",
  1327. "repoName": "rules_pkg",
  1328. "executionPlatformsToRegister": [],
  1329. "toolchainsToRegister": [],
  1330. "extensionUsages": [],
  1331. "deps": {
  1332. "rules_python": "rules_python@0.27.1",
  1333. "bazel_skylib": "bazel_skylib@1.5.0",
  1334. "rules_license": "rules_license@0.0.7",
  1335. "bazel_tools": "bazel_tools@_",
  1336. "local_config_platform": "local_config_platform@_"
  1337. },
  1338. "repoSpec": {
  1339. "bzlFile": "@bazel_tools//tools/build_defs/repo:http.bzl",
  1340. "ruleClassName": "http_archive",
  1341. "attributes": {
  1342. "name": "rules_pkg~0.7.0",
  1343. "urls": [
  1344. "https://github.com/bazelbuild/rules_pkg/releases/download/0.7.0/rules_pkg-0.7.0.tar.gz"
  1345. ],
  1346. "integrity": "sha256-iimOgydi7aGDBZfWT+fbWBeKqEzVkm121bdE1lWJQcI=",
  1347. "strip_prefix": "",
  1348. "remote_patches": {
  1349. "https://bcr.bazel.build/modules/rules_pkg/0.7.0/patches/module_dot_bazel.patch": "sha256-4OaEPZwYF6iC71ZTDg6MJ7LLqX7ZA0/kK4mT+4xKqiE="
  1350. },
  1351. "remote_patch_strip": 0
  1352. }
  1353. }
  1354. },
  1355. "upb@0.0.0-20220923-a547704": {
  1356. "name": "upb",
  1357. "version": "0.0.0-20220923-a547704",
  1358. "key": "upb@0.0.0-20220923-a547704",
  1359. "repoName": "upb",
  1360. "executionPlatformsToRegister": [],
  1361. "toolchainsToRegister": [],
  1362. "extensionUsages": [],
  1363. "deps": {
  1364. "bazel_skylib": "bazel_skylib@1.5.0",
  1365. "rules_proto": "rules_proto@6.0.0-rc1",
  1366. "com_google_protobuf": "protobuf@21.7",
  1367. "com_google_absl": "abseil-cpp@20230802.0",
  1368. "platforms": "platforms@0.0.8",
  1369. "bazel_tools": "bazel_tools@_",
  1370. "local_config_platform": "local_config_platform@_"
  1371. },
  1372. "repoSpec": {
  1373. "bzlFile": "@bazel_tools//tools/build_defs/repo:http.bzl",
  1374. "ruleClassName": "http_archive",
  1375. "attributes": {
  1376. "name": "upb~0.0.0-20220923-a547704",
  1377. "urls": [
  1378. "https://github.com/protocolbuffers/upb/archive/a5477045acaa34586420942098f5fecd3570f577.tar.gz"
  1379. ],
  1380. "integrity": "sha256-z39x6v+QskwaKLSWRan/A6mmwecTQpHOcJActj5zZLU=",
  1381. "strip_prefix": "upb-a5477045acaa34586420942098f5fecd3570f577",
  1382. "remote_patches": {
  1383. "https://bcr.bazel.build/modules/upb/0.0.0-20220923-a547704/patches/module_dot_bazel.patch": "sha256-wH4mNS6ZYy+8uC0HoAft/c7SDsq2Kxf+J8dUakXhaB0="
  1384. },
  1385. "remote_patch_strip": 0
  1386. }
  1387. }
  1388. },
  1389. "rules_jvm_external@4.4.2": {
  1390. "name": "rules_jvm_external",
  1391. "version": "4.4.2",
  1392. "key": "rules_jvm_external@4.4.2",
  1393. "repoName": "rules_jvm_external",
  1394. "executionPlatformsToRegister": [],
  1395. "toolchainsToRegister": [],
  1396. "extensionUsages": [
  1397. {
  1398. "extensionBzlFile": "@rules_jvm_external//:non-module-deps.bzl",
  1399. "extensionName": "non_module_deps",
  1400. "usingModule": "rules_jvm_external@4.4.2",
  1401. "location": {
  1402. "file": "https://bcr.bazel.build/modules/rules_jvm_external/4.4.2/MODULE.bazel",
  1403. "line": 9,
  1404. "column": 32
  1405. },
  1406. "imports": {
  1407. "io_bazel_rules_kotlin": "io_bazel_rules_kotlin"
  1408. },
  1409. "devImports": [],
  1410. "tags": [],
  1411. "hasDevUseExtension": false,
  1412. "hasNonDevUseExtension": true
  1413. },
  1414. {
  1415. "extensionBzlFile": ":extensions.bzl",
  1416. "extensionName": "maven",
  1417. "usingModule": "rules_jvm_external@4.4.2",
  1418. "location": {
  1419. "file": "https://bcr.bazel.build/modules/rules_jvm_external/4.4.2/MODULE.bazel",
  1420. "line": 16,
  1421. "column": 22
  1422. },
  1423. "imports": {
  1424. "rules_jvm_external_deps": "rules_jvm_external_deps"
  1425. },
  1426. "devImports": [],
  1427. "tags": [
  1428. {
  1429. "tagName": "install",
  1430. "attributeValues": {
  1431. "name": "rules_jvm_external_deps",
  1432. "artifacts": [
  1433. "com.google.cloud:google-cloud-core:1.93.10",
  1434. "com.google.cloud:google-cloud-storage:1.113.4",
  1435. "com.google.code.gson:gson:2.9.0",
  1436. "org.apache.maven:maven-artifact:3.8.6",
  1437. "software.amazon.awssdk:s3:2.17.183"
  1438. ],
  1439. "lock_file": "@rules_jvm_external//:rules_jvm_external_deps_install.json"
  1440. },
  1441. "devDependency": false,
  1442. "location": {
  1443. "file": "https://bcr.bazel.build/modules/rules_jvm_external/4.4.2/MODULE.bazel",
  1444. "line": 18,
  1445. "column": 14
  1446. }
  1447. }
  1448. ],
  1449. "hasDevUseExtension": false,
  1450. "hasNonDevUseExtension": true
  1451. }
  1452. ],
  1453. "deps": {
  1454. "bazel_skylib": "bazel_skylib@1.5.0",
  1455. "io_bazel_stardoc": "stardoc@0.5.1",
  1456. "bazel_tools": "bazel_tools@_",
  1457. "local_config_platform": "local_config_platform@_"
  1458. },
  1459. "repoSpec": {
  1460. "bzlFile": "@bazel_tools//tools/build_defs/repo:http.bzl",
  1461. "ruleClassName": "http_archive",
  1462. "attributes": {
  1463. "name": "rules_jvm_external~4.4.2",
  1464. "urls": [
  1465. "https://github.com/bazelbuild/rules_jvm_external/archive/refs/tags/4.4.2.zip"
  1466. ],
  1467. "integrity": "sha256-c1YC9QgT6y6pPKP15DsZWb2AshO4NqB6YqKddXZwt3s=",
  1468. "strip_prefix": "rules_jvm_external-4.4.2",
  1469. "remote_patches": {},
  1470. "remote_patch_strip": 0
  1471. }
  1472. }
  1473. },
  1474. "bazel_features@1.1.1": {
  1475. "name": "bazel_features",
  1476. "version": "1.1.1",
  1477. "key": "bazel_features@1.1.1",
  1478. "repoName": "bazel_features",
  1479. "executionPlatformsToRegister": [],
  1480. "toolchainsToRegister": [],
  1481. "extensionUsages": [
  1482. {
  1483. "extensionBzlFile": "@bazel_features//private:extensions.bzl",
  1484. "extensionName": "version_extension",
  1485. "usingModule": "bazel_features@1.1.1",
  1486. "location": {
  1487. "file": "https://bcr.bazel.build/modules/bazel_features/1.1.1/MODULE.bazel",
  1488. "line": 6,
  1489. "column": 24
  1490. },
  1491. "imports": {
  1492. "bazel_features_globals": "bazel_features_globals",
  1493. "bazel_features_version": "bazel_features_version"
  1494. },
  1495. "devImports": [],
  1496. "tags": [],
  1497. "hasDevUseExtension": false,
  1498. "hasNonDevUseExtension": true
  1499. }
  1500. ],
  1501. "deps": {
  1502. "bazel_tools": "bazel_tools@_",
  1503. "local_config_platform": "local_config_platform@_"
  1504. },
  1505. "repoSpec": {
  1506. "bzlFile": "@bazel_tools//tools/build_defs/repo:http.bzl",
  1507. "ruleClassName": "http_archive",
  1508. "attributes": {
  1509. "name": "bazel_features~1.1.1",
  1510. "urls": [
  1511. "https://github.com/bazel-contrib/bazel_features/releases/download/v1.1.1/bazel_features-v1.1.1.tar.gz"
  1512. ],
  1513. "integrity": "sha256-YsJuQn5cvHUQJERpJ2IuOYqdzfMsZDJSOIFXCdEcEag=",
  1514. "strip_prefix": "bazel_features-1.1.1",
  1515. "remote_patches": {
  1516. "https://bcr.bazel.build/modules/bazel_features/1.1.1/patches/module_dot_bazel_version.patch": "sha256-+56MAEsc7bYN/Pzhn252ZQUxiRzZg9bynXj1qpsmCYs="
  1517. },
  1518. "remote_patch_strip": 1
  1519. }
  1520. }
  1521. },
  1522. "apple_support@1.5.0": {
  1523. "name": "apple_support",
  1524. "version": "1.5.0",
  1525. "key": "apple_support@1.5.0",
  1526. "repoName": "build_bazel_apple_support",
  1527. "executionPlatformsToRegister": [],
  1528. "toolchainsToRegister": [
  1529. "@local_config_apple_cc_toolchains//:all"
  1530. ],
  1531. "extensionUsages": [
  1532. {
  1533. "extensionBzlFile": "@build_bazel_apple_support//crosstool:setup.bzl",
  1534. "extensionName": "apple_cc_configure_extension",
  1535. "usingModule": "apple_support@1.5.0",
  1536. "location": {
  1537. "file": "https://bcr.bazel.build/modules/apple_support/1.5.0/MODULE.bazel",
  1538. "line": 17,
  1539. "column": 35
  1540. },
  1541. "imports": {
  1542. "local_config_apple_cc": "local_config_apple_cc",
  1543. "local_config_apple_cc_toolchains": "local_config_apple_cc_toolchains"
  1544. },
  1545. "devImports": [],
  1546. "tags": [],
  1547. "hasDevUseExtension": false,
  1548. "hasNonDevUseExtension": true
  1549. }
  1550. ],
  1551. "deps": {
  1552. "bazel_skylib": "bazel_skylib@1.5.0",
  1553. "platforms": "platforms@0.0.8",
  1554. "bazel_tools": "bazel_tools@_",
  1555. "local_config_platform": "local_config_platform@_"
  1556. },
  1557. "repoSpec": {
  1558. "bzlFile": "@bazel_tools//tools/build_defs/repo:http.bzl",
  1559. "ruleClassName": "http_archive",
  1560. "attributes": {
  1561. "name": "apple_support~1.5.0",
  1562. "urls": [
  1563. "https://github.com/bazelbuild/apple_support/releases/download/1.5.0/apple_support.1.5.0.tar.gz"
  1564. ],
  1565. "integrity": "sha256-miM41vja0yRPgj8txghKA+TQ+7J8qJLclw5okNW0gYQ=",
  1566. "strip_prefix": "",
  1567. "remote_patches": {},
  1568. "remote_patch_strip": 0
  1569. }
  1570. }
  1571. },
  1572. "stardoc@0.5.1": {
  1573. "name": "stardoc",
  1574. "version": "0.5.1",
  1575. "key": "stardoc@0.5.1",
  1576. "repoName": "stardoc",
  1577. "executionPlatformsToRegister": [],
  1578. "toolchainsToRegister": [],
  1579. "extensionUsages": [],
  1580. "deps": {
  1581. "bazel_skylib": "bazel_skylib@1.5.0",
  1582. "rules_java": "rules_java@7.1.0",
  1583. "bazel_tools": "bazel_tools@_",
  1584. "local_config_platform": "local_config_platform@_"
  1585. },
  1586. "repoSpec": {
  1587. "bzlFile": "@bazel_tools//tools/build_defs/repo:http.bzl",
  1588. "ruleClassName": "http_archive",
  1589. "attributes": {
  1590. "name": "stardoc~0.5.1",
  1591. "urls": [
  1592. "https://github.com/bazelbuild/stardoc/releases/download/0.5.1/stardoc-0.5.1.tar.gz"
  1593. ],
  1594. "integrity": "sha256-qoFNrgrEALurLoiB+ZFcb0fElmS/CHxAmhX5BDjSwj4=",
  1595. "strip_prefix": "",
  1596. "remote_patches": {
  1597. "https://bcr.bazel.build/modules/stardoc/0.5.1/patches/module_dot_bazel.patch": "sha256-UAULCuTpJE7SG0YrR9XLjMfxMRmbP+za3uW9ONZ5rjI="
  1598. },
  1599. "remote_patch_strip": 0
  1600. }
  1601. }
  1602. }
  1603. },
  1604. "moduleExtensions": {
  1605. "//:MODULE.bazel%_repo_rules": {
  1606. "general": {
  1607. "bzlTransitiveDigest": "5N51b9xEpf2bMJAN5rd4XedkyF3mkBazoyfbR0iSAoA=",
  1608. "accumulatedFileDigests": {},
  1609. "envVariables": {},
  1610. "generatedRepoSpecs": {
  1611. "com_google_libprotobuf_mutator": {
  1612. "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl",
  1613. "ruleClassName": "http_archive",
  1614. "attributes": {
  1615. "build_file": "@@//:third_party/libprotobuf_mutator/BUILD.txt",
  1616. "sha256": "fd299fd72c5cf664259d9bd43a72cb74dc6a8b9604d107fe2d2e90885aeb7c16",
  1617. "strip_prefix": "libprotobuf-mutator-1.1",
  1618. "urls": [
  1619. "https://github.com/google/libprotobuf-mutator/archive/v1.1.tar.gz"
  1620. ],
  1621. "name": "_main~_repo_rules~com_google_libprotobuf_mutator"
  1622. }
  1623. },
  1624. "llvm-raw": {
  1625. "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl",
  1626. "ruleClassName": "http_archive",
  1627. "attributes": {
  1628. "build_file_content": "# empty",
  1629. "patch_args": [
  1630. "-p1"
  1631. ],
  1632. "patches": [
  1633. "@@//bazel/llvm_project:0001_Patch_for_mallinfo2_when_using_Bazel_build_system.patch",
  1634. "@@//bazel/llvm_project:0002_Added_Bazel_build_for_compiler_rt_fuzzer.patch",
  1635. "@@//bazel/llvm_project:0003_Add_library_for_clangd.patch"
  1636. ],
  1637. "sha256": "efbca707a6eb1c714b849de120309070eef282660c0f4be5b68efef62cc95cf5",
  1638. "strip_prefix": "llvm-project-3d51010a3350660160981c6b8e624dcc87c208a3",
  1639. "urls": [
  1640. "https://github.com/llvm/llvm-project/archive/3d51010a3350660160981c6b8e624dcc87c208a3.tar.gz"
  1641. ],
  1642. "name": "_main~_repo_rules~llvm-raw"
  1643. }
  1644. }
  1645. }
  1646. }
  1647. },
  1648. "//bazel/cc_toolchains:clang_configuration.bzl%clang_toolchain_extension": {
  1649. "general": {
  1650. "bzlTransitiveDigest": "Kc8IiGDwk4jswZNBnPRlrEMAB8XGoLRpc9IHkKq/DQI=",
  1651. "accumulatedFileDigests": {},
  1652. "envVariables": {},
  1653. "generatedRepoSpecs": {
  1654. "bazel_cc_toolchain": {
  1655. "bzlFile": "@@//bazel/cc_toolchains:clang_configuration.bzl",
  1656. "ruleClassName": "configure_clang_toolchain",
  1657. "attributes": {
  1658. "name": "_main~clang_toolchain_extension~bazel_cc_toolchain"
  1659. }
  1660. }
  1661. }
  1662. }
  1663. },
  1664. "//bazel/llvm_project:llvm_project.bzl%llvm_project": {
  1665. "general": {
  1666. "bzlTransitiveDigest": "GK7ZPGpGNMETAY4fDDQ0FmDBGMcFSueFxHo+BSPaIoo=",
  1667. "accumulatedFileDigests": {},
  1668. "envVariables": {},
  1669. "generatedRepoSpecs": {
  1670. "llvm-project": {
  1671. "bzlFile": "@@_main~_repo_rules~llvm-raw//utils/bazel:configure.bzl",
  1672. "ruleClassName": "llvm_configure",
  1673. "attributes": {
  1674. "name": "_main~llvm_project~llvm-project",
  1675. "targets": [
  1676. "AArch64",
  1677. "X86"
  1678. ]
  1679. }
  1680. }
  1681. }
  1682. }
  1683. },
  1684. "@@apple_support~1.5.0//crosstool:setup.bzl%apple_cc_configure_extension": {
  1685. "general": {
  1686. "bzlTransitiveDigest": "pMLFCYaRPkgXPQ8vtuNkMfiHfPmRBy6QJfnid4sWfv0=",
  1687. "accumulatedFileDigests": {},
  1688. "envVariables": {},
  1689. "generatedRepoSpecs": {
  1690. "local_config_apple_cc": {
  1691. "bzlFile": "@@apple_support~1.5.0//crosstool:setup.bzl",
  1692. "ruleClassName": "_apple_cc_autoconf",
  1693. "attributes": {
  1694. "name": "apple_support~1.5.0~apple_cc_configure_extension~local_config_apple_cc"
  1695. }
  1696. },
  1697. "local_config_apple_cc_toolchains": {
  1698. "bzlFile": "@@apple_support~1.5.0//crosstool:setup.bzl",
  1699. "ruleClassName": "_apple_cc_autoconf_toolchains",
  1700. "attributes": {
  1701. "name": "apple_support~1.5.0~apple_cc_configure_extension~local_config_apple_cc_toolchains"
  1702. }
  1703. }
  1704. }
  1705. }
  1706. },
  1707. "@@bazel_features~1.1.1//private:extensions.bzl%version_extension": {
  1708. "general": {
  1709. "bzlTransitiveDigest": "xm7Skm1Las5saxzFWt2hbS+e68BWi+MXyt6+lKIhjPA=",
  1710. "accumulatedFileDigests": {},
  1711. "envVariables": {},
  1712. "generatedRepoSpecs": {
  1713. "bazel_features_version": {
  1714. "bzlFile": "@@bazel_features~1.1.1//private:version_repo.bzl",
  1715. "ruleClassName": "version_repo",
  1716. "attributes": {
  1717. "name": "bazel_features~1.1.1~version_extension~bazel_features_version"
  1718. }
  1719. },
  1720. "bazel_features_globals": {
  1721. "bzlFile": "@@bazel_features~1.1.1//private:globals_repo.bzl",
  1722. "ruleClassName": "globals_repo",
  1723. "attributes": {
  1724. "name": "bazel_features~1.1.1~version_extension~bazel_features_globals",
  1725. "globals": {
  1726. "RunEnvironmentInfo": "5.3.0",
  1727. "DefaultInfo": "0.0.1",
  1728. "__TestingOnly_NeverAvailable": "1000000000.0.0"
  1729. }
  1730. }
  1731. }
  1732. }
  1733. }
  1734. },
  1735. "@@bazel_tools//tools/android:android_extensions.bzl%remote_android_tools_extensions": {
  1736. "general": {
  1737. "bzlTransitiveDigest": "iz3RFYDcsjupaT10sdSPAhA44WL3eDYkTEnYThllj1w=",
  1738. "accumulatedFileDigests": {},
  1739. "envVariables": {},
  1740. "generatedRepoSpecs": {
  1741. "android_tools": {
  1742. "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl",
  1743. "ruleClassName": "http_archive",
  1744. "attributes": {
  1745. "name": "bazel_tools~remote_android_tools_extensions~android_tools",
  1746. "sha256": "2b661a761a735b41c41b3a78089f4fc1982626c76ddb944604ae3ff8c545d3c2",
  1747. "url": "https://mirror.bazel.build/bazel_android_tools/android_tools_pkg-0.30.0.tar"
  1748. }
  1749. },
  1750. "android_gmaven_r8": {
  1751. "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl",
  1752. "ruleClassName": "http_jar",
  1753. "attributes": {
  1754. "name": "bazel_tools~remote_android_tools_extensions~android_gmaven_r8",
  1755. "sha256": "57a696749695a09381a87bc2f08c3a8ed06a717a5caa3ef878a3077e0d3af19d",
  1756. "url": "https://maven.google.com/com/android/tools/r8/8.1.56/r8-8.1.56.jar"
  1757. }
  1758. }
  1759. }
  1760. }
  1761. },
  1762. "@@bazel_tools//tools/cpp:cc_configure.bzl%cc_configure_extension": {
  1763. "general": {
  1764. "bzlTransitiveDigest": "O9sf6ilKWU9Veed02jG9o2HM/xgV/UAyciuFBuxrFRY=",
  1765. "accumulatedFileDigests": {},
  1766. "envVariables": {},
  1767. "generatedRepoSpecs": {
  1768. "local_config_cc": {
  1769. "bzlFile": "@@bazel_tools//tools/cpp:cc_configure.bzl",
  1770. "ruleClassName": "cc_autoconf",
  1771. "attributes": {
  1772. "name": "bazel_tools~cc_configure_extension~local_config_cc"
  1773. }
  1774. },
  1775. "local_config_cc_toolchains": {
  1776. "bzlFile": "@@bazel_tools//tools/cpp:cc_configure.bzl",
  1777. "ruleClassName": "cc_autoconf_toolchains",
  1778. "attributes": {
  1779. "name": "bazel_tools~cc_configure_extension~local_config_cc_toolchains"
  1780. }
  1781. }
  1782. }
  1783. }
  1784. },
  1785. "@@bazel_tools//tools/osx:xcode_configure.bzl%xcode_configure_extension": {
  1786. "general": {
  1787. "bzlTransitiveDigest": "Qh2bWTU6QW6wkrd87qrU4YeY+SG37Nvw3A0PR4Y0L2Y=",
  1788. "accumulatedFileDigests": {},
  1789. "envVariables": {},
  1790. "generatedRepoSpecs": {
  1791. "local_config_xcode": {
  1792. "bzlFile": "@@bazel_tools//tools/osx:xcode_configure.bzl",
  1793. "ruleClassName": "xcode_autoconf",
  1794. "attributes": {
  1795. "name": "bazel_tools~xcode_configure_extension~local_config_xcode",
  1796. "xcode_locator": "@bazel_tools//tools/osx:xcode_locator.m",
  1797. "remote_xcode": ""
  1798. }
  1799. }
  1800. }
  1801. }
  1802. },
  1803. "@@bazel_tools//tools/sh:sh_configure.bzl%sh_configure_extension": {
  1804. "general": {
  1805. "bzlTransitiveDigest": "hp4NgmNjEg5+xgvzfh6L83bt9/aiiWETuNpwNuF1MSU=",
  1806. "accumulatedFileDigests": {},
  1807. "envVariables": {},
  1808. "generatedRepoSpecs": {
  1809. "local_config_sh": {
  1810. "bzlFile": "@@bazel_tools//tools/sh:sh_configure.bzl",
  1811. "ruleClassName": "sh_config",
  1812. "attributes": {
  1813. "name": "bazel_tools~sh_configure_extension~local_config_sh"
  1814. }
  1815. }
  1816. }
  1817. }
  1818. },
  1819. "@@bazel_tools//tools/test:extensions.bzl%remote_coverage_tools_extension": {
  1820. "general": {
  1821. "bzlTransitiveDigest": "cizrA62cv8WUgb0cCmx5B6PRijtr/I4TAWxg/4caNGU=",
  1822. "accumulatedFileDigests": {},
  1823. "envVariables": {},
  1824. "generatedRepoSpecs": {
  1825. "remote_coverage_tools": {
  1826. "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl",
  1827. "ruleClassName": "http_archive",
  1828. "attributes": {
  1829. "name": "bazel_tools~remote_coverage_tools_extension~remote_coverage_tools",
  1830. "sha256": "7006375f6756819b7013ca875eab70a541cf7d89142d9c511ed78ea4fefa38af",
  1831. "urls": [
  1832. "https://mirror.bazel.build/bazel_coverage_output_generator/releases/coverage_output_generator-v2.6.zip"
  1833. ]
  1834. }
  1835. }
  1836. }
  1837. }
  1838. },
  1839. "@@pybind11_bazel~2.11.1//:python_configure.bzl%extension": {
  1840. "general": {
  1841. "bzlTransitiveDigest": "csfyYwH9vuHx+qgo+sALm6qoBfO21Qmxutr4RyK0IWs=",
  1842. "accumulatedFileDigests": {
  1843. "@@pybind11_bazel~2.11.1//:MODULE.bazel": "88af1c246226d87e65be78ed49ecd1e6f5e98648558c14ce99176da041dc378e"
  1844. },
  1845. "envVariables": {},
  1846. "generatedRepoSpecs": {
  1847. "local_config_python": {
  1848. "bzlFile": "@@pybind11_bazel~2.11.1//:python_configure.bzl",
  1849. "ruleClassName": "python_configure",
  1850. "attributes": {
  1851. "name": "pybind11_bazel~2.11.1~extension~local_config_python"
  1852. }
  1853. },
  1854. "pybind11": {
  1855. "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl",
  1856. "ruleClassName": "http_archive",
  1857. "attributes": {
  1858. "name": "pybind11_bazel~2.11.1~extension~pybind11",
  1859. "build_file": "@@pybind11_bazel~2.11.1//:pybind11.BUILD",
  1860. "strip_prefix": "pybind11-2.11.1",
  1861. "urls": [
  1862. "https://github.com/pybind/pybind11/archive/v2.11.1.zip"
  1863. ]
  1864. }
  1865. }
  1866. }
  1867. }
  1868. },
  1869. "@@rules_bison~0.2.2//bison/internal:default_toolchain_ext.bzl%default_toolchain_ext": {
  1870. "general": {
  1871. "bzlTransitiveDigest": "JVWcUny48LFS9D+xz4b9u/94awfBOIGXV5iu8iY/nRc=",
  1872. "accumulatedFileDigests": {},
  1873. "envVariables": {},
  1874. "generatedRepoSpecs": {
  1875. "bison_v3.3.2": {
  1876. "bzlFile": "@@rules_bison~0.2.2//bison/rules:bison_repository.bzl",
  1877. "ruleClassName": "bison_repository",
  1878. "attributes": {
  1879. "name": "rules_bison~0.2.2~default_toolchain_ext~bison_v3.3.2",
  1880. "version": "3.3.2"
  1881. }
  1882. },
  1883. "bison": {
  1884. "bzlFile": "@@rules_bison~0.2.2//bison/rules:bison_toolchain_repository.bzl",
  1885. "ruleClassName": "bison_toolchain_repository",
  1886. "attributes": {
  1887. "name": "rules_bison~0.2.2~default_toolchain_ext~bison",
  1888. "bison_repository": "@bison_v3.3.2"
  1889. }
  1890. }
  1891. },
  1892. "moduleExtensionMetadata": {
  1893. "explicitRootModuleDirectDeps": [
  1894. "bison"
  1895. ],
  1896. "explicitRootModuleDirectDevDeps": [],
  1897. "useAllRepos": "NO"
  1898. }
  1899. }
  1900. },
  1901. "@@rules_flex~0.2.1//flex/internal:default_toolchain_ext.bzl%default_toolchain_ext": {
  1902. "general": {
  1903. "bzlTransitiveDigest": "fn+aX2vKsiaNLj3QtNfsRcI8fiATDtxAayRTJFGJkNI=",
  1904. "accumulatedFileDigests": {},
  1905. "envVariables": {},
  1906. "generatedRepoSpecs": {
  1907. "flex": {
  1908. "bzlFile": "@@rules_flex~0.2.1//flex/rules:flex_toolchain_repository.bzl",
  1909. "ruleClassName": "flex_toolchain_repository",
  1910. "attributes": {
  1911. "name": "rules_flex~0.2.1~default_toolchain_ext~flex",
  1912. "flex_repository": "@flex_v2.6.4"
  1913. }
  1914. },
  1915. "flex_v2.6.4": {
  1916. "bzlFile": "@@rules_flex~0.2.1//flex/rules:flex_repository.bzl",
  1917. "ruleClassName": "flex_repository",
  1918. "attributes": {
  1919. "name": "rules_flex~0.2.1~default_toolchain_ext~flex_v2.6.4",
  1920. "version": "2.6.4"
  1921. }
  1922. }
  1923. },
  1924. "moduleExtensionMetadata": {
  1925. "explicitRootModuleDirectDeps": [
  1926. "flex"
  1927. ],
  1928. "explicitRootModuleDirectDevDeps": [],
  1929. "useAllRepos": "NO"
  1930. }
  1931. }
  1932. },
  1933. "@@rules_foreign_cc~0.9.0//foreign_cc:extensions.bzl%ext": {
  1934. "general": {
  1935. "bzlTransitiveDigest": "KB+B5LpgjuRSavAXxTMmX7+uOtlQiFXmchOvXydcXXk=",
  1936. "accumulatedFileDigests": {},
  1937. "envVariables": {},
  1938. "generatedRepoSpecs": {
  1939. "cmake-3.23.2-linux-aarch64": {
  1940. "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl",
  1941. "ruleClassName": "http_archive",
  1942. "attributes": {
  1943. "name": "rules_foreign_cc~0.9.0~ext~cmake-3.23.2-linux-aarch64",
  1944. "urls": [
  1945. "https://github.com/Kitware/CMake/releases/download/v3.23.2/cmake-3.23.2-linux-aarch64.tar.gz"
  1946. ],
  1947. "sha256": "f2654bf780b53f170bbbec44d8ac67d401d24788e590faa53036a89476efa91e",
  1948. "strip_prefix": "cmake-3.23.2-linux-aarch64",
  1949. "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"
  1950. }
  1951. },
  1952. "rules_foreign_cc_framework_toolchain_macos": {
  1953. "bzlFile": "@@rules_foreign_cc~0.9.0//foreign_cc/private/framework:toolchain.bzl",
  1954. "ruleClassName": "framework_toolchain_repository",
  1955. "attributes": {
  1956. "name": "rules_foreign_cc~0.9.0~ext~rules_foreign_cc_framework_toolchain_macos",
  1957. "commands_src": "@rules_foreign_cc//foreign_cc/private/framework/toolchains:macos_commands.bzl",
  1958. "exec_compatible_with": [
  1959. "@platforms//os:macos"
  1960. ],
  1961. "target_compatible_with": []
  1962. }
  1963. },
  1964. "ninja_1.11.0_linux": {
  1965. "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl",
  1966. "ruleClassName": "http_archive",
  1967. "attributes": {
  1968. "name": "rules_foreign_cc~0.9.0~ext~ninja_1.11.0_linux",
  1969. "urls": [
  1970. "https://github.com/ninja-build/ninja/releases/download/v1.11.0/ninja-linux.zip"
  1971. ],
  1972. "sha256": "9726e730d5b8599f82654dc80265e64a10a8a817552c34153361ed0c017f9f02",
  1973. "strip_prefix": "",
  1974. "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"
  1975. }
  1976. },
  1977. "gnumake_src": {
  1978. "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl",
  1979. "ruleClassName": "http_archive",
  1980. "attributes": {
  1981. "name": "rules_foreign_cc~0.9.0~ext~gnumake_src",
  1982. "build_file_content": "filegroup(\n name = \"all_srcs\",\n srcs = glob([\"**\"]),\n visibility = [\"//visibility:public\"],\n)\n",
  1983. "patches": [
  1984. "@@rules_foreign_cc~0.9.0//toolchains:make-reproducible-bootstrap.patch"
  1985. ],
  1986. "sha256": "e05fdde47c5f7ca45cb697e973894ff4f5d79e13b750ed57d7b66d8defc78e19",
  1987. "strip_prefix": "make-4.3",
  1988. "urls": [
  1989. "https://mirror.bazel.build/ftpmirror.gnu.org/gnu/make/make-4.3.tar.gz",
  1990. "http://ftpmirror.gnu.org/gnu/make/make-4.3.tar.gz"
  1991. ]
  1992. }
  1993. },
  1994. "ninja_1.11.0_win": {
  1995. "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl",
  1996. "ruleClassName": "http_archive",
  1997. "attributes": {
  1998. "name": "rules_foreign_cc~0.9.0~ext~ninja_1.11.0_win",
  1999. "urls": [
  2000. "https://github.com/ninja-build/ninja/releases/download/v1.11.0/ninja-win.zip"
  2001. ],
  2002. "sha256": "d0ee3da143211aa447e750085876c9b9d7bcdd637ab5b2c5b41349c617f22f3b",
  2003. "strip_prefix": "",
  2004. "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"
  2005. }
  2006. },
  2007. "cmake_3.23.2_toolchains": {
  2008. "bzlFile": "@@rules_foreign_cc~0.9.0//toolchains:prebuilt_toolchains_repository.bzl",
  2009. "ruleClassName": "prebuilt_toolchains_repository",
  2010. "attributes": {
  2011. "name": "rules_foreign_cc~0.9.0~ext~cmake_3.23.2_toolchains",
  2012. "repos": {
  2013. "cmake-3.23.2-linux-aarch64": [
  2014. "@platforms//cpu:aarch64",
  2015. "@platforms//os:linux"
  2016. ],
  2017. "cmake-3.23.2-linux-x86_64": [
  2018. "@platforms//cpu:x86_64",
  2019. "@platforms//os:linux"
  2020. ],
  2021. "cmake-3.23.2-macos-universal": [
  2022. "@platforms//os:macos"
  2023. ],
  2024. "cmake-3.23.2-windows-i386": [
  2025. "@platforms//cpu:x86_32",
  2026. "@platforms//os:windows"
  2027. ],
  2028. "cmake-3.23.2-windows-x86_64": [
  2029. "@platforms//cpu:x86_64",
  2030. "@platforms//os:windows"
  2031. ]
  2032. },
  2033. "tool": "cmake"
  2034. }
  2035. },
  2036. "cmake_src": {
  2037. "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl",
  2038. "ruleClassName": "http_archive",
  2039. "attributes": {
  2040. "name": "rules_foreign_cc~0.9.0~ext~cmake_src",
  2041. "build_file_content": "filegroup(\n name = \"all_srcs\",\n srcs = glob([\"**\"]),\n visibility = [\"//visibility:public\"],\n)\n",
  2042. "sha256": "f316b40053466f9a416adf981efda41b160ca859e97f6a484b447ea299ff26aa",
  2043. "strip_prefix": "cmake-3.23.2",
  2044. "urls": [
  2045. "https://github.com/Kitware/CMake/releases/download/v3.23.2/cmake-3.23.2.tar.gz"
  2046. ]
  2047. }
  2048. },
  2049. "bazel_skylib": {
  2050. "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl",
  2051. "ruleClassName": "http_archive",
  2052. "attributes": {
  2053. "name": "rules_foreign_cc~0.9.0~ext~bazel_skylib",
  2054. "urls": [
  2055. "https://mirror.bazel.build/github.com/bazelbuild/bazel-skylib/releases/download/1.2.1/bazel-skylib-1.2.1.tar.gz",
  2056. "https://github.com/bazelbuild/bazel-skylib/releases/download/1.2.1/bazel-skylib-1.2.1.tar.gz"
  2057. ],
  2058. "sha256": "f7be3474d42aae265405a592bb7da8e171919d74c16f082a5457840f06054728"
  2059. }
  2060. },
  2061. "cmake-3.23.2-macos-universal": {
  2062. "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl",
  2063. "ruleClassName": "http_archive",
  2064. "attributes": {
  2065. "name": "rules_foreign_cc~0.9.0~ext~cmake-3.23.2-macos-universal",
  2066. "urls": [
  2067. "https://github.com/Kitware/CMake/releases/download/v3.23.2/cmake-3.23.2-macos-universal.tar.gz"
  2068. ],
  2069. "sha256": "853a0f9af148c5ef47282ffffee06c4c9f257be2635936755f39ca13c3286c88",
  2070. "strip_prefix": "cmake-3.23.2-macos-universal/CMake.app/Contents",
  2071. "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"
  2072. }
  2073. },
  2074. "rules_foreign_cc_framework_toolchain_freebsd": {
  2075. "bzlFile": "@@rules_foreign_cc~0.9.0//foreign_cc/private/framework:toolchain.bzl",
  2076. "ruleClassName": "framework_toolchain_repository",
  2077. "attributes": {
  2078. "name": "rules_foreign_cc~0.9.0~ext~rules_foreign_cc_framework_toolchain_freebsd",
  2079. "commands_src": "@rules_foreign_cc//foreign_cc/private/framework/toolchains:freebsd_commands.bzl",
  2080. "exec_compatible_with": [
  2081. "@platforms//os:freebsd"
  2082. ],
  2083. "target_compatible_with": []
  2084. }
  2085. },
  2086. "rules_foreign_cc_framework_toolchain_linux": {
  2087. "bzlFile": "@@rules_foreign_cc~0.9.0//foreign_cc/private/framework:toolchain.bzl",
  2088. "ruleClassName": "framework_toolchain_repository",
  2089. "attributes": {
  2090. "name": "rules_foreign_cc~0.9.0~ext~rules_foreign_cc_framework_toolchain_linux",
  2091. "commands_src": "@rules_foreign_cc//foreign_cc/private/framework/toolchains:linux_commands.bzl",
  2092. "exec_compatible_with": [
  2093. "@platforms//os:linux"
  2094. ],
  2095. "target_compatible_with": []
  2096. }
  2097. },
  2098. "rules_python": {
  2099. "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl",
  2100. "ruleClassName": "http_archive",
  2101. "attributes": {
  2102. "name": "rules_foreign_cc~0.9.0~ext~rules_python",
  2103. "sha256": "5fa3c738d33acca3b97622a13a741129f67ef43f5fdfcec63b29374cc0574c29",
  2104. "strip_prefix": "rules_python-0.9.0",
  2105. "url": "https://github.com/bazelbuild/rules_python/archive/refs/tags/0.9.0.tar.gz"
  2106. }
  2107. },
  2108. "ninja_1.11.0_mac": {
  2109. "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl",
  2110. "ruleClassName": "http_archive",
  2111. "attributes": {
  2112. "name": "rules_foreign_cc~0.9.0~ext~ninja_1.11.0_mac",
  2113. "urls": [
  2114. "https://github.com/ninja-build/ninja/releases/download/v1.11.0/ninja-mac.zip"
  2115. ],
  2116. "sha256": "21915277db59756bfc61f6f281c1f5e3897760b63776fd3d360f77dd7364137f",
  2117. "strip_prefix": "",
  2118. "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"
  2119. }
  2120. },
  2121. "ninja_build_src": {
  2122. "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl",
  2123. "ruleClassName": "http_archive",
  2124. "attributes": {
  2125. "name": "rules_foreign_cc~0.9.0~ext~ninja_build_src",
  2126. "build_file_content": "filegroup(\n name = \"all_srcs\",\n srcs = glob([\"**\"]),\n visibility = [\"//visibility:public\"],\n)\n",
  2127. "sha256": "3c6ba2e66400fe3f1ae83deb4b235faf3137ec20bd5b08c29bfc368db143e4c6",
  2128. "strip_prefix": "ninja-1.11.0",
  2129. "urls": [
  2130. "https://github.com/ninja-build/ninja/archive/v1.11.0.tar.gz"
  2131. ]
  2132. }
  2133. },
  2134. "cmake-3.23.2-windows-i386": {
  2135. "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl",
  2136. "ruleClassName": "http_archive",
  2137. "attributes": {
  2138. "name": "rules_foreign_cc~0.9.0~ext~cmake-3.23.2-windows-i386",
  2139. "urls": [
  2140. "https://github.com/Kitware/CMake/releases/download/v3.23.2/cmake-3.23.2-windows-i386.zip"
  2141. ],
  2142. "sha256": "6a4fcd6a2315b93cb23c93507efccacc30c449c2bf98f14d6032bb226c582e07",
  2143. "strip_prefix": "cmake-3.23.2-windows-i386",
  2144. "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"
  2145. }
  2146. },
  2147. "cmake-3.23.2-linux-x86_64": {
  2148. "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl",
  2149. "ruleClassName": "http_archive",
  2150. "attributes": {
  2151. "name": "rules_foreign_cc~0.9.0~ext~cmake-3.23.2-linux-x86_64",
  2152. "urls": [
  2153. "https://github.com/Kitware/CMake/releases/download/v3.23.2/cmake-3.23.2-linux-x86_64.tar.gz"
  2154. ],
  2155. "sha256": "aaced6f745b86ce853661a595bdac6c5314a60f8181b6912a0a4920acfa32708",
  2156. "strip_prefix": "cmake-3.23.2-linux-x86_64",
  2157. "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"
  2158. }
  2159. },
  2160. "cmake-3.23.2-windows-x86_64": {
  2161. "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl",
  2162. "ruleClassName": "http_archive",
  2163. "attributes": {
  2164. "name": "rules_foreign_cc~0.9.0~ext~cmake-3.23.2-windows-x86_64",
  2165. "urls": [
  2166. "https://github.com/Kitware/CMake/releases/download/v3.23.2/cmake-3.23.2-windows-x86_64.zip"
  2167. ],
  2168. "sha256": "2329387f3166b84c25091c86389fb891193967740c9bcf01e7f6d3306f7ffda0",
  2169. "strip_prefix": "cmake-3.23.2-windows-x86_64",
  2170. "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"
  2171. }
  2172. },
  2173. "rules_foreign_cc_framework_toolchain_windows": {
  2174. "bzlFile": "@@rules_foreign_cc~0.9.0//foreign_cc/private/framework:toolchain.bzl",
  2175. "ruleClassName": "framework_toolchain_repository",
  2176. "attributes": {
  2177. "name": "rules_foreign_cc~0.9.0~ext~rules_foreign_cc_framework_toolchain_windows",
  2178. "commands_src": "@rules_foreign_cc//foreign_cc/private/framework/toolchains:windows_commands.bzl",
  2179. "exec_compatible_with": [
  2180. "@platforms//os:windows"
  2181. ],
  2182. "target_compatible_with": []
  2183. }
  2184. },
  2185. "ninja_1.11.0_toolchains": {
  2186. "bzlFile": "@@rules_foreign_cc~0.9.0//toolchains:prebuilt_toolchains_repository.bzl",
  2187. "ruleClassName": "prebuilt_toolchains_repository",
  2188. "attributes": {
  2189. "name": "rules_foreign_cc~0.9.0~ext~ninja_1.11.0_toolchains",
  2190. "repos": {
  2191. "ninja_1.11.0_linux": [
  2192. "@platforms//cpu:x86_64",
  2193. "@platforms//os:linux"
  2194. ],
  2195. "ninja_1.11.0_mac": [
  2196. "@platforms//cpu:x86_64",
  2197. "@platforms//os:macos"
  2198. ],
  2199. "ninja_1.11.0_win": [
  2200. "@platforms//cpu:x86_64",
  2201. "@platforms//os:windows"
  2202. ]
  2203. },
  2204. "tool": "ninja"
  2205. }
  2206. }
  2207. }
  2208. }
  2209. },
  2210. "@@rules_java~7.1.0//java:extensions.bzl%toolchains": {
  2211. "general": {
  2212. "bzlTransitiveDigest": "iUIRqCK7tkhvcDJCAfPPqSd06IHG0a8HQD0xeQyVAqw=",
  2213. "accumulatedFileDigests": {},
  2214. "envVariables": {},
  2215. "generatedRepoSpecs": {
  2216. "remotejdk21_linux_toolchain_config_repo": {
  2217. "bzlFile": "@@rules_java~7.1.0//toolchains:remote_java_repository.bzl",
  2218. "ruleClassName": "_toolchain_config",
  2219. "attributes": {
  2220. "name": "rules_java~7.1.0~toolchains~remotejdk21_linux_toolchain_config_repo",
  2221. "build_file": "\nconfig_setting(\n name = \"prefix_version_setting\",\n values = {\"java_runtime_version\": \"remotejdk_21\"},\n visibility = [\"//visibility:private\"],\n)\nconfig_setting(\n name = \"version_setting\",\n values = {\"java_runtime_version\": \"21\"},\n visibility = [\"//visibility:private\"],\n)\nalias(\n name = \"version_or_prefix_version_setting\",\n actual = select({\n \":version_setting\": \":version_setting\",\n \"//conditions:default\": \":prefix_version_setting\",\n }),\n visibility = [\"//visibility:private\"],\n)\ntoolchain(\n name = \"toolchain\",\n target_compatible_with = [\"@platforms//os:linux\", \"@platforms//cpu:x86_64\"],\n target_settings = [\":version_or_prefix_version_setting\"],\n toolchain_type = \"@bazel_tools//tools/jdk:runtime_toolchain_type\",\n toolchain = \"@remotejdk21_linux//:jdk\",\n)\ntoolchain(\n name = \"bootstrap_runtime_toolchain\",\n # These constraints are not required for correctness, but prevent fetches of remote JDK for\n # different architectures. As every Java compilation toolchain depends on a bootstrap runtime in\n # the same configuration, this constraint will not result in toolchain resolution failures.\n exec_compatible_with = [\"@platforms//os:linux\", \"@platforms//cpu:x86_64\"],\n target_settings = [\":version_or_prefix_version_setting\"],\n toolchain_type = \"@bazel_tools//tools/jdk:bootstrap_runtime_toolchain_type\",\n toolchain = \"@remotejdk21_linux//:jdk\",\n)\n"
  2222. }
  2223. },
  2224. "remotejdk17_linux_s390x_toolchain_config_repo": {
  2225. "bzlFile": "@@rules_java~7.1.0//toolchains:remote_java_repository.bzl",
  2226. "ruleClassName": "_toolchain_config",
  2227. "attributes": {
  2228. "name": "rules_java~7.1.0~toolchains~remotejdk17_linux_s390x_toolchain_config_repo",
  2229. "build_file": "\nconfig_setting(\n name = \"prefix_version_setting\",\n values = {\"java_runtime_version\": \"remotejdk_17\"},\n visibility = [\"//visibility:private\"],\n)\nconfig_setting(\n name = \"version_setting\",\n values = {\"java_runtime_version\": \"17\"},\n visibility = [\"//visibility:private\"],\n)\nalias(\n name = \"version_or_prefix_version_setting\",\n actual = select({\n \":version_setting\": \":version_setting\",\n \"//conditions:default\": \":prefix_version_setting\",\n }),\n visibility = [\"//visibility:private\"],\n)\ntoolchain(\n name = \"toolchain\",\n target_compatible_with = [\"@platforms//os:linux\", \"@platforms//cpu:s390x\"],\n target_settings = [\":version_or_prefix_version_setting\"],\n toolchain_type = \"@bazel_tools//tools/jdk:runtime_toolchain_type\",\n toolchain = \"@remotejdk17_linux_s390x//:jdk\",\n)\ntoolchain(\n name = \"bootstrap_runtime_toolchain\",\n # These constraints are not required for correctness, but prevent fetches of remote JDK for\n # different architectures. As every Java compilation toolchain depends on a bootstrap runtime in\n # the same configuration, this constraint will not result in toolchain resolution failures.\n exec_compatible_with = [\"@platforms//os:linux\", \"@platforms//cpu:s390x\"],\n target_settings = [\":version_or_prefix_version_setting\"],\n toolchain_type = \"@bazel_tools//tools/jdk:bootstrap_runtime_toolchain_type\",\n toolchain = \"@remotejdk17_linux_s390x//:jdk\",\n)\n"
  2230. }
  2231. },
  2232. "remotejdk17_macos_toolchain_config_repo": {
  2233. "bzlFile": "@@rules_java~7.1.0//toolchains:remote_java_repository.bzl",
  2234. "ruleClassName": "_toolchain_config",
  2235. "attributes": {
  2236. "name": "rules_java~7.1.0~toolchains~remotejdk17_macos_toolchain_config_repo",
  2237. "build_file": "\nconfig_setting(\n name = \"prefix_version_setting\",\n values = {\"java_runtime_version\": \"remotejdk_17\"},\n visibility = [\"//visibility:private\"],\n)\nconfig_setting(\n name = \"version_setting\",\n values = {\"java_runtime_version\": \"17\"},\n visibility = [\"//visibility:private\"],\n)\nalias(\n name = \"version_or_prefix_version_setting\",\n actual = select({\n \":version_setting\": \":version_setting\",\n \"//conditions:default\": \":prefix_version_setting\",\n }),\n visibility = [\"//visibility:private\"],\n)\ntoolchain(\n name = \"toolchain\",\n target_compatible_with = [\"@platforms//os:macos\", \"@platforms//cpu:x86_64\"],\n target_settings = [\":version_or_prefix_version_setting\"],\n toolchain_type = \"@bazel_tools//tools/jdk:runtime_toolchain_type\",\n toolchain = \"@remotejdk17_macos//:jdk\",\n)\ntoolchain(\n name = \"bootstrap_runtime_toolchain\",\n # These constraints are not required for correctness, but prevent fetches of remote JDK for\n # different architectures. As every Java compilation toolchain depends on a bootstrap runtime in\n # the same configuration, this constraint will not result in toolchain resolution failures.\n exec_compatible_with = [\"@platforms//os:macos\", \"@platforms//cpu:x86_64\"],\n target_settings = [\":version_or_prefix_version_setting\"],\n toolchain_type = \"@bazel_tools//tools/jdk:bootstrap_runtime_toolchain_type\",\n toolchain = \"@remotejdk17_macos//:jdk\",\n)\n"
  2238. }
  2239. },
  2240. "remotejdk21_macos_aarch64_toolchain_config_repo": {
  2241. "bzlFile": "@@rules_java~7.1.0//toolchains:remote_java_repository.bzl",
  2242. "ruleClassName": "_toolchain_config",
  2243. "attributes": {
  2244. "name": "rules_java~7.1.0~toolchains~remotejdk21_macos_aarch64_toolchain_config_repo",
  2245. "build_file": "\nconfig_setting(\n name = \"prefix_version_setting\",\n values = {\"java_runtime_version\": \"remotejdk_21\"},\n visibility = [\"//visibility:private\"],\n)\nconfig_setting(\n name = \"version_setting\",\n values = {\"java_runtime_version\": \"21\"},\n visibility = [\"//visibility:private\"],\n)\nalias(\n name = \"version_or_prefix_version_setting\",\n actual = select({\n \":version_setting\": \":version_setting\",\n \"//conditions:default\": \":prefix_version_setting\",\n }),\n visibility = [\"//visibility:private\"],\n)\ntoolchain(\n name = \"toolchain\",\n target_compatible_with = [\"@platforms//os:macos\", \"@platforms//cpu:aarch64\"],\n target_settings = [\":version_or_prefix_version_setting\"],\n toolchain_type = \"@bazel_tools//tools/jdk:runtime_toolchain_type\",\n toolchain = \"@remotejdk21_macos_aarch64//:jdk\",\n)\ntoolchain(\n name = \"bootstrap_runtime_toolchain\",\n # These constraints are not required for correctness, but prevent fetches of remote JDK for\n # different architectures. As every Java compilation toolchain depends on a bootstrap runtime in\n # the same configuration, this constraint will not result in toolchain resolution failures.\n exec_compatible_with = [\"@platforms//os:macos\", \"@platforms//cpu:aarch64\"],\n target_settings = [\":version_or_prefix_version_setting\"],\n toolchain_type = \"@bazel_tools//tools/jdk:bootstrap_runtime_toolchain_type\",\n toolchain = \"@remotejdk21_macos_aarch64//:jdk\",\n)\n"
  2246. }
  2247. },
  2248. "remotejdk17_linux_aarch64_toolchain_config_repo": {
  2249. "bzlFile": "@@rules_java~7.1.0//toolchains:remote_java_repository.bzl",
  2250. "ruleClassName": "_toolchain_config",
  2251. "attributes": {
  2252. "name": "rules_java~7.1.0~toolchains~remotejdk17_linux_aarch64_toolchain_config_repo",
  2253. "build_file": "\nconfig_setting(\n name = \"prefix_version_setting\",\n values = {\"java_runtime_version\": \"remotejdk_17\"},\n visibility = [\"//visibility:private\"],\n)\nconfig_setting(\n name = \"version_setting\",\n values = {\"java_runtime_version\": \"17\"},\n visibility = [\"//visibility:private\"],\n)\nalias(\n name = \"version_or_prefix_version_setting\",\n actual = select({\n \":version_setting\": \":version_setting\",\n \"//conditions:default\": \":prefix_version_setting\",\n }),\n visibility = [\"//visibility:private\"],\n)\ntoolchain(\n name = \"toolchain\",\n target_compatible_with = [\"@platforms//os:linux\", \"@platforms//cpu:aarch64\"],\n target_settings = [\":version_or_prefix_version_setting\"],\n toolchain_type = \"@bazel_tools//tools/jdk:runtime_toolchain_type\",\n toolchain = \"@remotejdk17_linux_aarch64//:jdk\",\n)\ntoolchain(\n name = \"bootstrap_runtime_toolchain\",\n # These constraints are not required for correctness, but prevent fetches of remote JDK for\n # different architectures. As every Java compilation toolchain depends on a bootstrap runtime in\n # the same configuration, this constraint will not result in toolchain resolution failures.\n exec_compatible_with = [\"@platforms//os:linux\", \"@platforms//cpu:aarch64\"],\n target_settings = [\":version_or_prefix_version_setting\"],\n toolchain_type = \"@bazel_tools//tools/jdk:bootstrap_runtime_toolchain_type\",\n toolchain = \"@remotejdk17_linux_aarch64//:jdk\",\n)\n"
  2254. }
  2255. },
  2256. "remotejdk21_macos_aarch64": {
  2257. "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl",
  2258. "ruleClassName": "http_archive",
  2259. "attributes": {
  2260. "name": "rules_java~7.1.0~toolchains~remotejdk21_macos_aarch64",
  2261. "build_file_content": "load(\"@rules_java//java:defs.bzl\", \"java_runtime\")\n\npackage(default_visibility = [\"//visibility:public\"])\n\nexports_files([\"WORKSPACE\", \"BUILD.bazel\"])\n\nfilegroup(\n name = \"jre\",\n srcs = glob(\n [\n \"jre/bin/**\",\n \"jre/lib/**\",\n ],\n allow_empty = True,\n # In some configurations, Java browser plugin is considered harmful and\n # common antivirus software blocks access to npjp2.dll interfering with Bazel,\n # so do not include it in JRE on Windows.\n exclude = [\"jre/bin/plugin2/**\"],\n ),\n)\n\nfilegroup(\n name = \"jdk-bin\",\n srcs = glob(\n [\"bin/**\"],\n # The JDK on Windows sometimes contains a directory called\n # \"%systemroot%\", which is not a valid label.\n exclude = [\"**/*%*/**\"],\n ),\n)\n\n# This folder holds security policies.\nfilegroup(\n name = \"jdk-conf\",\n srcs = glob(\n [\"conf/**\"],\n allow_empty = True,\n ),\n)\n\nfilegroup(\n name = \"jdk-include\",\n srcs = glob(\n [\"include/**\"],\n allow_empty = True,\n ),\n)\n\nfilegroup(\n name = \"jdk-lib\",\n srcs = glob(\n [\"lib/**\", \"release\"],\n allow_empty = True,\n exclude = [\n \"lib/missioncontrol/**\",\n \"lib/visualvm/**\",\n ],\n ),\n)\n\njava_runtime(\n name = \"jdk\",\n srcs = [\n \":jdk-bin\",\n \":jdk-conf\",\n \":jdk-include\",\n \":jdk-lib\",\n \":jre\",\n ],\n # Provide the 'java` binary explicitly so that the correct path is used by\n # Bazel even when the host platform differs from the execution platform.\n # Exactly one of the two globs will be empty depending on the host platform.\n # When --incompatible_disallow_empty_glob is enabled, each individual empty\n # glob will fail without allow_empty = True, even if the overall result is\n # non-empty.\n java = glob([\"bin/java.exe\", \"bin/java\"], allow_empty = True)[0],\n version = 21,\n)\n",
  2262. "sha256": "2a7a99a3ea263dbd8d32a67d1e6e363ba8b25c645c826f5e167a02bbafaff1fa",
  2263. "strip_prefix": "zulu21.28.85-ca-jdk21.0.0-macosx_aarch64",
  2264. "urls": [
  2265. "https://mirror.bazel.build/cdn.azul.com/zulu/bin/zulu21.28.85-ca-jdk21.0.0-macosx_aarch64.tar.gz",
  2266. "https://cdn.azul.com/zulu/bin/zulu21.28.85-ca-jdk21.0.0-macosx_aarch64.tar.gz"
  2267. ]
  2268. }
  2269. },
  2270. "remotejdk17_linux_toolchain_config_repo": {
  2271. "bzlFile": "@@rules_java~7.1.0//toolchains:remote_java_repository.bzl",
  2272. "ruleClassName": "_toolchain_config",
  2273. "attributes": {
  2274. "name": "rules_java~7.1.0~toolchains~remotejdk17_linux_toolchain_config_repo",
  2275. "build_file": "\nconfig_setting(\n name = \"prefix_version_setting\",\n values = {\"java_runtime_version\": \"remotejdk_17\"},\n visibility = [\"//visibility:private\"],\n)\nconfig_setting(\n name = \"version_setting\",\n values = {\"java_runtime_version\": \"17\"},\n visibility = [\"//visibility:private\"],\n)\nalias(\n name = \"version_or_prefix_version_setting\",\n actual = select({\n \":version_setting\": \":version_setting\",\n \"//conditions:default\": \":prefix_version_setting\",\n }),\n visibility = [\"//visibility:private\"],\n)\ntoolchain(\n name = \"toolchain\",\n target_compatible_with = [\"@platforms//os:linux\", \"@platforms//cpu:x86_64\"],\n target_settings = [\":version_or_prefix_version_setting\"],\n toolchain_type = \"@bazel_tools//tools/jdk:runtime_toolchain_type\",\n toolchain = \"@remotejdk17_linux//:jdk\",\n)\ntoolchain(\n name = \"bootstrap_runtime_toolchain\",\n # These constraints are not required for correctness, but prevent fetches of remote JDK for\n # different architectures. As every Java compilation toolchain depends on a bootstrap runtime in\n # the same configuration, this constraint will not result in toolchain resolution failures.\n exec_compatible_with = [\"@platforms//os:linux\", \"@platforms//cpu:x86_64\"],\n target_settings = [\":version_or_prefix_version_setting\"],\n toolchain_type = \"@bazel_tools//tools/jdk:bootstrap_runtime_toolchain_type\",\n toolchain = \"@remotejdk17_linux//:jdk\",\n)\n"
  2276. }
  2277. },
  2278. "remotejdk17_macos_aarch64": {
  2279. "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl",
  2280. "ruleClassName": "http_archive",
  2281. "attributes": {
  2282. "name": "rules_java~7.1.0~toolchains~remotejdk17_macos_aarch64",
  2283. "build_file_content": "load(\"@rules_java//java:defs.bzl\", \"java_runtime\")\n\npackage(default_visibility = [\"//visibility:public\"])\n\nexports_files([\"WORKSPACE\", \"BUILD.bazel\"])\n\nfilegroup(\n name = \"jre\",\n srcs = glob(\n [\n \"jre/bin/**\",\n \"jre/lib/**\",\n ],\n allow_empty = True,\n # In some configurations, Java browser plugin is considered harmful and\n # common antivirus software blocks access to npjp2.dll interfering with Bazel,\n # so do not include it in JRE on Windows.\n exclude = [\"jre/bin/plugin2/**\"],\n ),\n)\n\nfilegroup(\n name = \"jdk-bin\",\n srcs = glob(\n [\"bin/**\"],\n # The JDK on Windows sometimes contains a directory called\n # \"%systemroot%\", which is not a valid label.\n exclude = [\"**/*%*/**\"],\n ),\n)\n\n# This folder holds security policies.\nfilegroup(\n name = \"jdk-conf\",\n srcs = glob(\n [\"conf/**\"],\n allow_empty = True,\n ),\n)\n\nfilegroup(\n name = \"jdk-include\",\n srcs = glob(\n [\"include/**\"],\n allow_empty = True,\n ),\n)\n\nfilegroup(\n name = \"jdk-lib\",\n srcs = glob(\n [\"lib/**\", \"release\"],\n allow_empty = True,\n exclude = [\n \"lib/missioncontrol/**\",\n \"lib/visualvm/**\",\n ],\n ),\n)\n\njava_runtime(\n name = \"jdk\",\n srcs = [\n \":jdk-bin\",\n \":jdk-conf\",\n \":jdk-include\",\n \":jdk-lib\",\n \":jre\",\n ],\n # Provide the 'java` binary explicitly so that the correct path is used by\n # Bazel even when the host platform differs from the execution platform.\n # Exactly one of the two globs will be empty depending on the host platform.\n # When --incompatible_disallow_empty_glob is enabled, each individual empty\n # glob will fail without allow_empty = True, even if the overall result is\n # non-empty.\n java = glob([\"bin/java.exe\", \"bin/java\"], allow_empty = True)[0],\n version = 17,\n)\n",
  2284. "sha256": "314b04568ec0ae9b36ba03c9cbd42adc9e1265f74678923b19297d66eb84dcca",
  2285. "strip_prefix": "zulu17.44.53-ca-jdk17.0.8.1-macosx_aarch64",
  2286. "urls": [
  2287. "https://mirror.bazel.build/cdn.azul.com/zulu/bin/zulu17.44.53-ca-jdk17.0.8.1-macosx_aarch64.tar.gz",
  2288. "https://cdn.azul.com/zulu/bin/zulu17.44.53-ca-jdk17.0.8.1-macosx_aarch64.tar.gz"
  2289. ]
  2290. }
  2291. },
  2292. "remote_java_tools_windows": {
  2293. "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl",
  2294. "ruleClassName": "http_archive",
  2295. "attributes": {
  2296. "name": "rules_java~7.1.0~toolchains~remote_java_tools_windows",
  2297. "sha256": "c5c70c214a350f12cbf52da8270fa43ba629b795f3dd328028a38f8f0d39c2a1",
  2298. "urls": [
  2299. "https://mirror.bazel.build/bazel_java_tools/releases/java/v13.1/java_tools_windows-v13.1.zip",
  2300. "https://github.com/bazelbuild/java_tools/releases/download/java_v13.1/java_tools_windows-v13.1.zip"
  2301. ]
  2302. }
  2303. },
  2304. "remotejdk11_win": {
  2305. "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl",
  2306. "ruleClassName": "http_archive",
  2307. "attributes": {
  2308. "name": "rules_java~7.1.0~toolchains~remotejdk11_win",
  2309. "build_file_content": "load(\"@rules_java//java:defs.bzl\", \"java_runtime\")\n\npackage(default_visibility = [\"//visibility:public\"])\n\nexports_files([\"WORKSPACE\", \"BUILD.bazel\"])\n\nfilegroup(\n name = \"jre\",\n srcs = glob(\n [\n \"jre/bin/**\",\n \"jre/lib/**\",\n ],\n allow_empty = True,\n # In some configurations, Java browser plugin is considered harmful and\n # common antivirus software blocks access to npjp2.dll interfering with Bazel,\n # so do not include it in JRE on Windows.\n exclude = [\"jre/bin/plugin2/**\"],\n ),\n)\n\nfilegroup(\n name = \"jdk-bin\",\n srcs = glob(\n [\"bin/**\"],\n # The JDK on Windows sometimes contains a directory called\n # \"%systemroot%\", which is not a valid label.\n exclude = [\"**/*%*/**\"],\n ),\n)\n\n# This folder holds security policies.\nfilegroup(\n name = \"jdk-conf\",\n srcs = glob(\n [\"conf/**\"],\n allow_empty = True,\n ),\n)\n\nfilegroup(\n name = \"jdk-include\",\n srcs = glob(\n [\"include/**\"],\n allow_empty = True,\n ),\n)\n\nfilegroup(\n name = \"jdk-lib\",\n srcs = glob(\n [\"lib/**\", \"release\"],\n allow_empty = True,\n exclude = [\n \"lib/missioncontrol/**\",\n \"lib/visualvm/**\",\n ],\n ),\n)\n\njava_runtime(\n name = \"jdk\",\n srcs = [\n \":jdk-bin\",\n \":jdk-conf\",\n \":jdk-include\",\n \":jdk-lib\",\n \":jre\",\n ],\n # Provide the 'java` binary explicitly so that the correct path is used by\n # Bazel even when the host platform differs from the execution platform.\n # Exactly one of the two globs will be empty depending on the host platform.\n # When --incompatible_disallow_empty_glob is enabled, each individual empty\n # glob will fail without allow_empty = True, even if the overall result is\n # non-empty.\n java = glob([\"bin/java.exe\", \"bin/java\"], allow_empty = True)[0],\n version = 11,\n)\n",
  2310. "sha256": "43408193ce2fa0862819495b5ae8541085b95660153f2adcf91a52d3a1710e83",
  2311. "strip_prefix": "zulu11.66.15-ca-jdk11.0.20-win_x64",
  2312. "urls": [
  2313. "https://mirror.bazel.build/cdn.azul.com/zulu/bin/zulu11.66.15-ca-jdk11.0.20-win_x64.zip",
  2314. "https://cdn.azul.com/zulu/bin/zulu11.66.15-ca-jdk11.0.20-win_x64.zip"
  2315. ]
  2316. }
  2317. },
  2318. "remotejdk11_win_toolchain_config_repo": {
  2319. "bzlFile": "@@rules_java~7.1.0//toolchains:remote_java_repository.bzl",
  2320. "ruleClassName": "_toolchain_config",
  2321. "attributes": {
  2322. "name": "rules_java~7.1.0~toolchains~remotejdk11_win_toolchain_config_repo",
  2323. "build_file": "\nconfig_setting(\n name = \"prefix_version_setting\",\n values = {\"java_runtime_version\": \"remotejdk_11\"},\n visibility = [\"//visibility:private\"],\n)\nconfig_setting(\n name = \"version_setting\",\n values = {\"java_runtime_version\": \"11\"},\n visibility = [\"//visibility:private\"],\n)\nalias(\n name = \"version_or_prefix_version_setting\",\n actual = select({\n \":version_setting\": \":version_setting\",\n \"//conditions:default\": \":prefix_version_setting\",\n }),\n visibility = [\"//visibility:private\"],\n)\ntoolchain(\n name = \"toolchain\",\n target_compatible_with = [\"@platforms//os:windows\", \"@platforms//cpu:x86_64\"],\n target_settings = [\":version_or_prefix_version_setting\"],\n toolchain_type = \"@bazel_tools//tools/jdk:runtime_toolchain_type\",\n toolchain = \"@remotejdk11_win//:jdk\",\n)\ntoolchain(\n name = \"bootstrap_runtime_toolchain\",\n # These constraints are not required for correctness, but prevent fetches of remote JDK for\n # different architectures. As every Java compilation toolchain depends on a bootstrap runtime in\n # the same configuration, this constraint will not result in toolchain resolution failures.\n exec_compatible_with = [\"@platforms//os:windows\", \"@platforms//cpu:x86_64\"],\n target_settings = [\":version_or_prefix_version_setting\"],\n toolchain_type = \"@bazel_tools//tools/jdk:bootstrap_runtime_toolchain_type\",\n toolchain = \"@remotejdk11_win//:jdk\",\n)\n"
  2324. }
  2325. },
  2326. "remotejdk11_linux_aarch64": {
  2327. "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl",
  2328. "ruleClassName": "http_archive",
  2329. "attributes": {
  2330. "name": "rules_java~7.1.0~toolchains~remotejdk11_linux_aarch64",
  2331. "build_file_content": "load(\"@rules_java//java:defs.bzl\", \"java_runtime\")\n\npackage(default_visibility = [\"//visibility:public\"])\n\nexports_files([\"WORKSPACE\", \"BUILD.bazel\"])\n\nfilegroup(\n name = \"jre\",\n srcs = glob(\n [\n \"jre/bin/**\",\n \"jre/lib/**\",\n ],\n allow_empty = True,\n # In some configurations, Java browser plugin is considered harmful and\n # common antivirus software blocks access to npjp2.dll interfering with Bazel,\n # so do not include it in JRE on Windows.\n exclude = [\"jre/bin/plugin2/**\"],\n ),\n)\n\nfilegroup(\n name = \"jdk-bin\",\n srcs = glob(\n [\"bin/**\"],\n # The JDK on Windows sometimes contains a directory called\n # \"%systemroot%\", which is not a valid label.\n exclude = [\"**/*%*/**\"],\n ),\n)\n\n# This folder holds security policies.\nfilegroup(\n name = \"jdk-conf\",\n srcs = glob(\n [\"conf/**\"],\n allow_empty = True,\n ),\n)\n\nfilegroup(\n name = \"jdk-include\",\n srcs = glob(\n [\"include/**\"],\n allow_empty = True,\n ),\n)\n\nfilegroup(\n name = \"jdk-lib\",\n srcs = glob(\n [\"lib/**\", \"release\"],\n allow_empty = True,\n exclude = [\n \"lib/missioncontrol/**\",\n \"lib/visualvm/**\",\n ],\n ),\n)\n\njava_runtime(\n name = \"jdk\",\n srcs = [\n \":jdk-bin\",\n \":jdk-conf\",\n \":jdk-include\",\n \":jdk-lib\",\n \":jre\",\n ],\n # Provide the 'java` binary explicitly so that the correct path is used by\n # Bazel even when the host platform differs from the execution platform.\n # Exactly one of the two globs will be empty depending on the host platform.\n # When --incompatible_disallow_empty_glob is enabled, each individual empty\n # glob will fail without allow_empty = True, even if the overall result is\n # non-empty.\n java = glob([\"bin/java.exe\", \"bin/java\"], allow_empty = True)[0],\n version = 11,\n)\n",
  2332. "sha256": "54174439f2b3fddd11f1048c397fe7bb45d4c9d66d452d6889b013d04d21c4de",
  2333. "strip_prefix": "zulu11.66.15-ca-jdk11.0.20-linux_aarch64",
  2334. "urls": [
  2335. "https://mirror.bazel.build/cdn.azul.com/zulu/bin/zulu11.66.15-ca-jdk11.0.20-linux_aarch64.tar.gz",
  2336. "https://cdn.azul.com/zulu/bin/zulu11.66.15-ca-jdk11.0.20-linux_aarch64.tar.gz"
  2337. ]
  2338. }
  2339. },
  2340. "remotejdk17_linux": {
  2341. "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl",
  2342. "ruleClassName": "http_archive",
  2343. "attributes": {
  2344. "name": "rules_java~7.1.0~toolchains~remotejdk17_linux",
  2345. "build_file_content": "load(\"@rules_java//java:defs.bzl\", \"java_runtime\")\n\npackage(default_visibility = [\"//visibility:public\"])\n\nexports_files([\"WORKSPACE\", \"BUILD.bazel\"])\n\nfilegroup(\n name = \"jre\",\n srcs = glob(\n [\n \"jre/bin/**\",\n \"jre/lib/**\",\n ],\n allow_empty = True,\n # In some configurations, Java browser plugin is considered harmful and\n # common antivirus software blocks access to npjp2.dll interfering with Bazel,\n # so do not include it in JRE on Windows.\n exclude = [\"jre/bin/plugin2/**\"],\n ),\n)\n\nfilegroup(\n name = \"jdk-bin\",\n srcs = glob(\n [\"bin/**\"],\n # The JDK on Windows sometimes contains a directory called\n # \"%systemroot%\", which is not a valid label.\n exclude = [\"**/*%*/**\"],\n ),\n)\n\n# This folder holds security policies.\nfilegroup(\n name = \"jdk-conf\",\n srcs = glob(\n [\"conf/**\"],\n allow_empty = True,\n ),\n)\n\nfilegroup(\n name = \"jdk-include\",\n srcs = glob(\n [\"include/**\"],\n allow_empty = True,\n ),\n)\n\nfilegroup(\n name = \"jdk-lib\",\n srcs = glob(\n [\"lib/**\", \"release\"],\n allow_empty = True,\n exclude = [\n \"lib/missioncontrol/**\",\n \"lib/visualvm/**\",\n ],\n ),\n)\n\njava_runtime(\n name = \"jdk\",\n srcs = [\n \":jdk-bin\",\n \":jdk-conf\",\n \":jdk-include\",\n \":jdk-lib\",\n \":jre\",\n ],\n # Provide the 'java` binary explicitly so that the correct path is used by\n # Bazel even when the host platform differs from the execution platform.\n # Exactly one of the two globs will be empty depending on the host platform.\n # When --incompatible_disallow_empty_glob is enabled, each individual empty\n # glob will fail without allow_empty = True, even if the overall result is\n # non-empty.\n java = glob([\"bin/java.exe\", \"bin/java\"], allow_empty = True)[0],\n version = 17,\n)\n",
  2346. "sha256": "b9482f2304a1a68a614dfacddcf29569a72f0fac32e6c74f83dc1b9a157b8340",
  2347. "strip_prefix": "zulu17.44.53-ca-jdk17.0.8.1-linux_x64",
  2348. "urls": [
  2349. "https://mirror.bazel.build/cdn.azul.com/zulu/bin/zulu17.44.53-ca-jdk17.0.8.1-linux_x64.tar.gz",
  2350. "https://cdn.azul.com/zulu/bin/zulu17.44.53-ca-jdk17.0.8.1-linux_x64.tar.gz"
  2351. ]
  2352. }
  2353. },
  2354. "remotejdk11_linux_s390x_toolchain_config_repo": {
  2355. "bzlFile": "@@rules_java~7.1.0//toolchains:remote_java_repository.bzl",
  2356. "ruleClassName": "_toolchain_config",
  2357. "attributes": {
  2358. "name": "rules_java~7.1.0~toolchains~remotejdk11_linux_s390x_toolchain_config_repo",
  2359. "build_file": "\nconfig_setting(\n name = \"prefix_version_setting\",\n values = {\"java_runtime_version\": \"remotejdk_11\"},\n visibility = [\"//visibility:private\"],\n)\nconfig_setting(\n name = \"version_setting\",\n values = {\"java_runtime_version\": \"11\"},\n visibility = [\"//visibility:private\"],\n)\nalias(\n name = \"version_or_prefix_version_setting\",\n actual = select({\n \":version_setting\": \":version_setting\",\n \"//conditions:default\": \":prefix_version_setting\",\n }),\n visibility = [\"//visibility:private\"],\n)\ntoolchain(\n name = \"toolchain\",\n target_compatible_with = [\"@platforms//os:linux\", \"@platforms//cpu:s390x\"],\n target_settings = [\":version_or_prefix_version_setting\"],\n toolchain_type = \"@bazel_tools//tools/jdk:runtime_toolchain_type\",\n toolchain = \"@remotejdk11_linux_s390x//:jdk\",\n)\ntoolchain(\n name = \"bootstrap_runtime_toolchain\",\n # These constraints are not required for correctness, but prevent fetches of remote JDK for\n # different architectures. As every Java compilation toolchain depends on a bootstrap runtime in\n # the same configuration, this constraint will not result in toolchain resolution failures.\n exec_compatible_with = [\"@platforms//os:linux\", \"@platforms//cpu:s390x\"],\n target_settings = [\":version_or_prefix_version_setting\"],\n toolchain_type = \"@bazel_tools//tools/jdk:bootstrap_runtime_toolchain_type\",\n toolchain = \"@remotejdk11_linux_s390x//:jdk\",\n)\n"
  2360. }
  2361. },
  2362. "remotejdk11_linux_toolchain_config_repo": {
  2363. "bzlFile": "@@rules_java~7.1.0//toolchains:remote_java_repository.bzl",
  2364. "ruleClassName": "_toolchain_config",
  2365. "attributes": {
  2366. "name": "rules_java~7.1.0~toolchains~remotejdk11_linux_toolchain_config_repo",
  2367. "build_file": "\nconfig_setting(\n name = \"prefix_version_setting\",\n values = {\"java_runtime_version\": \"remotejdk_11\"},\n visibility = [\"//visibility:private\"],\n)\nconfig_setting(\n name = \"version_setting\",\n values = {\"java_runtime_version\": \"11\"},\n visibility = [\"//visibility:private\"],\n)\nalias(\n name = \"version_or_prefix_version_setting\",\n actual = select({\n \":version_setting\": \":version_setting\",\n \"//conditions:default\": \":prefix_version_setting\",\n }),\n visibility = [\"//visibility:private\"],\n)\ntoolchain(\n name = \"toolchain\",\n target_compatible_with = [\"@platforms//os:linux\", \"@platforms//cpu:x86_64\"],\n target_settings = [\":version_or_prefix_version_setting\"],\n toolchain_type = \"@bazel_tools//tools/jdk:runtime_toolchain_type\",\n toolchain = \"@remotejdk11_linux//:jdk\",\n)\ntoolchain(\n name = \"bootstrap_runtime_toolchain\",\n # These constraints are not required for correctness, but prevent fetches of remote JDK for\n # different architectures. As every Java compilation toolchain depends on a bootstrap runtime in\n # the same configuration, this constraint will not result in toolchain resolution failures.\n exec_compatible_with = [\"@platforms//os:linux\", \"@platforms//cpu:x86_64\"],\n target_settings = [\":version_or_prefix_version_setting\"],\n toolchain_type = \"@bazel_tools//tools/jdk:bootstrap_runtime_toolchain_type\",\n toolchain = \"@remotejdk11_linux//:jdk\",\n)\n"
  2368. }
  2369. },
  2370. "remotejdk11_macos": {
  2371. "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl",
  2372. "ruleClassName": "http_archive",
  2373. "attributes": {
  2374. "name": "rules_java~7.1.0~toolchains~remotejdk11_macos",
  2375. "build_file_content": "load(\"@rules_java//java:defs.bzl\", \"java_runtime\")\n\npackage(default_visibility = [\"//visibility:public\"])\n\nexports_files([\"WORKSPACE\", \"BUILD.bazel\"])\n\nfilegroup(\n name = \"jre\",\n srcs = glob(\n [\n \"jre/bin/**\",\n \"jre/lib/**\",\n ],\n allow_empty = True,\n # In some configurations, Java browser plugin is considered harmful and\n # common antivirus software blocks access to npjp2.dll interfering with Bazel,\n # so do not include it in JRE on Windows.\n exclude = [\"jre/bin/plugin2/**\"],\n ),\n)\n\nfilegroup(\n name = \"jdk-bin\",\n srcs = glob(\n [\"bin/**\"],\n # The JDK on Windows sometimes contains a directory called\n # \"%systemroot%\", which is not a valid label.\n exclude = [\"**/*%*/**\"],\n ),\n)\n\n# This folder holds security policies.\nfilegroup(\n name = \"jdk-conf\",\n srcs = glob(\n [\"conf/**\"],\n allow_empty = True,\n ),\n)\n\nfilegroup(\n name = \"jdk-include\",\n srcs = glob(\n [\"include/**\"],\n allow_empty = True,\n ),\n)\n\nfilegroup(\n name = \"jdk-lib\",\n srcs = glob(\n [\"lib/**\", \"release\"],\n allow_empty = True,\n exclude = [\n \"lib/missioncontrol/**\",\n \"lib/visualvm/**\",\n ],\n ),\n)\n\njava_runtime(\n name = \"jdk\",\n srcs = [\n \":jdk-bin\",\n \":jdk-conf\",\n \":jdk-include\",\n \":jdk-lib\",\n \":jre\",\n ],\n # Provide the 'java` binary explicitly so that the correct path is used by\n # Bazel even when the host platform differs from the execution platform.\n # Exactly one of the two globs will be empty depending on the host platform.\n # When --incompatible_disallow_empty_glob is enabled, each individual empty\n # glob will fail without allow_empty = True, even if the overall result is\n # non-empty.\n java = glob([\"bin/java.exe\", \"bin/java\"], allow_empty = True)[0],\n version = 11,\n)\n",
  2376. "sha256": "bcaab11cfe586fae7583c6d9d311c64384354fb2638eb9a012eca4c3f1a1d9fd",
  2377. "strip_prefix": "zulu11.66.15-ca-jdk11.0.20-macosx_x64",
  2378. "urls": [
  2379. "https://mirror.bazel.build/cdn.azul.com/zulu/bin/zulu11.66.15-ca-jdk11.0.20-macosx_x64.tar.gz",
  2380. "https://cdn.azul.com/zulu/bin/zulu11.66.15-ca-jdk11.0.20-macosx_x64.tar.gz"
  2381. ]
  2382. }
  2383. },
  2384. "remotejdk11_win_arm64": {
  2385. "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl",
  2386. "ruleClassName": "http_archive",
  2387. "attributes": {
  2388. "name": "rules_java~7.1.0~toolchains~remotejdk11_win_arm64",
  2389. "build_file_content": "load(\"@rules_java//java:defs.bzl\", \"java_runtime\")\n\npackage(default_visibility = [\"//visibility:public\"])\n\nexports_files([\"WORKSPACE\", \"BUILD.bazel\"])\n\nfilegroup(\n name = \"jre\",\n srcs = glob(\n [\n \"jre/bin/**\",\n \"jre/lib/**\",\n ],\n allow_empty = True,\n # In some configurations, Java browser plugin is considered harmful and\n # common antivirus software blocks access to npjp2.dll interfering with Bazel,\n # so do not include it in JRE on Windows.\n exclude = [\"jre/bin/plugin2/**\"],\n ),\n)\n\nfilegroup(\n name = \"jdk-bin\",\n srcs = glob(\n [\"bin/**\"],\n # The JDK on Windows sometimes contains a directory called\n # \"%systemroot%\", which is not a valid label.\n exclude = [\"**/*%*/**\"],\n ),\n)\n\n# This folder holds security policies.\nfilegroup(\n name = \"jdk-conf\",\n srcs = glob(\n [\"conf/**\"],\n allow_empty = True,\n ),\n)\n\nfilegroup(\n name = \"jdk-include\",\n srcs = glob(\n [\"include/**\"],\n allow_empty = True,\n ),\n)\n\nfilegroup(\n name = \"jdk-lib\",\n srcs = glob(\n [\"lib/**\", \"release\"],\n allow_empty = True,\n exclude = [\n \"lib/missioncontrol/**\",\n \"lib/visualvm/**\",\n ],\n ),\n)\n\njava_runtime(\n name = \"jdk\",\n srcs = [\n \":jdk-bin\",\n \":jdk-conf\",\n \":jdk-include\",\n \":jdk-lib\",\n \":jre\",\n ],\n # Provide the 'java` binary explicitly so that the correct path is used by\n # Bazel even when the host platform differs from the execution platform.\n # Exactly one of the two globs will be empty depending on the host platform.\n # When --incompatible_disallow_empty_glob is enabled, each individual empty\n # glob will fail without allow_empty = True, even if the overall result is\n # non-empty.\n java = glob([\"bin/java.exe\", \"bin/java\"], allow_empty = True)[0],\n version = 11,\n)\n",
  2390. "sha256": "b8a28e6e767d90acf793ea6f5bed0bb595ba0ba5ebdf8b99f395266161e53ec2",
  2391. "strip_prefix": "jdk-11.0.13+8",
  2392. "urls": [
  2393. "https://mirror.bazel.build/aka.ms/download-jdk/microsoft-jdk-11.0.13.8.1-windows-aarch64.zip"
  2394. ]
  2395. }
  2396. },
  2397. "remotejdk17_macos": {
  2398. "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl",
  2399. "ruleClassName": "http_archive",
  2400. "attributes": {
  2401. "name": "rules_java~7.1.0~toolchains~remotejdk17_macos",
  2402. "build_file_content": "load(\"@rules_java//java:defs.bzl\", \"java_runtime\")\n\npackage(default_visibility = [\"//visibility:public\"])\n\nexports_files([\"WORKSPACE\", \"BUILD.bazel\"])\n\nfilegroup(\n name = \"jre\",\n srcs = glob(\n [\n \"jre/bin/**\",\n \"jre/lib/**\",\n ],\n allow_empty = True,\n # In some configurations, Java browser plugin is considered harmful and\n # common antivirus software blocks access to npjp2.dll interfering with Bazel,\n # so do not include it in JRE on Windows.\n exclude = [\"jre/bin/plugin2/**\"],\n ),\n)\n\nfilegroup(\n name = \"jdk-bin\",\n srcs = glob(\n [\"bin/**\"],\n # The JDK on Windows sometimes contains a directory called\n # \"%systemroot%\", which is not a valid label.\n exclude = [\"**/*%*/**\"],\n ),\n)\n\n# This folder holds security policies.\nfilegroup(\n name = \"jdk-conf\",\n srcs = glob(\n [\"conf/**\"],\n allow_empty = True,\n ),\n)\n\nfilegroup(\n name = \"jdk-include\",\n srcs = glob(\n [\"include/**\"],\n allow_empty = True,\n ),\n)\n\nfilegroup(\n name = \"jdk-lib\",\n srcs = glob(\n [\"lib/**\", \"release\"],\n allow_empty = True,\n exclude = [\n \"lib/missioncontrol/**\",\n \"lib/visualvm/**\",\n ],\n ),\n)\n\njava_runtime(\n name = \"jdk\",\n srcs = [\n \":jdk-bin\",\n \":jdk-conf\",\n \":jdk-include\",\n \":jdk-lib\",\n \":jre\",\n ],\n # Provide the 'java` binary explicitly so that the correct path is used by\n # Bazel even when the host platform differs from the execution platform.\n # Exactly one of the two globs will be empty depending on the host platform.\n # When --incompatible_disallow_empty_glob is enabled, each individual empty\n # glob will fail without allow_empty = True, even if the overall result is\n # non-empty.\n java = glob([\"bin/java.exe\", \"bin/java\"], allow_empty = True)[0],\n version = 17,\n)\n",
  2403. "sha256": "640453e8afe8ffe0fb4dceb4535fb50db9c283c64665eebb0ba68b19e65f4b1f",
  2404. "strip_prefix": "zulu17.44.53-ca-jdk17.0.8.1-macosx_x64",
  2405. "urls": [
  2406. "https://mirror.bazel.build/cdn.azul.com/zulu/bin/zulu17.44.53-ca-jdk17.0.8.1-macosx_x64.tar.gz",
  2407. "https://cdn.azul.com/zulu/bin/zulu17.44.53-ca-jdk17.0.8.1-macosx_x64.tar.gz"
  2408. ]
  2409. }
  2410. },
  2411. "remotejdk21_macos": {
  2412. "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl",
  2413. "ruleClassName": "http_archive",
  2414. "attributes": {
  2415. "name": "rules_java~7.1.0~toolchains~remotejdk21_macos",
  2416. "build_file_content": "load(\"@rules_java//java:defs.bzl\", \"java_runtime\")\n\npackage(default_visibility = [\"//visibility:public\"])\n\nexports_files([\"WORKSPACE\", \"BUILD.bazel\"])\n\nfilegroup(\n name = \"jre\",\n srcs = glob(\n [\n \"jre/bin/**\",\n \"jre/lib/**\",\n ],\n allow_empty = True,\n # In some configurations, Java browser plugin is considered harmful and\n # common antivirus software blocks access to npjp2.dll interfering with Bazel,\n # so do not include it in JRE on Windows.\n exclude = [\"jre/bin/plugin2/**\"],\n ),\n)\n\nfilegroup(\n name = \"jdk-bin\",\n srcs = glob(\n [\"bin/**\"],\n # The JDK on Windows sometimes contains a directory called\n # \"%systemroot%\", which is not a valid label.\n exclude = [\"**/*%*/**\"],\n ),\n)\n\n# This folder holds security policies.\nfilegroup(\n name = \"jdk-conf\",\n srcs = glob(\n [\"conf/**\"],\n allow_empty = True,\n ),\n)\n\nfilegroup(\n name = \"jdk-include\",\n srcs = glob(\n [\"include/**\"],\n allow_empty = True,\n ),\n)\n\nfilegroup(\n name = \"jdk-lib\",\n srcs = glob(\n [\"lib/**\", \"release\"],\n allow_empty = True,\n exclude = [\n \"lib/missioncontrol/**\",\n \"lib/visualvm/**\",\n ],\n ),\n)\n\njava_runtime(\n name = \"jdk\",\n srcs = [\n \":jdk-bin\",\n \":jdk-conf\",\n \":jdk-include\",\n \":jdk-lib\",\n \":jre\",\n ],\n # Provide the 'java` binary explicitly so that the correct path is used by\n # Bazel even when the host platform differs from the execution platform.\n # Exactly one of the two globs will be empty depending on the host platform.\n # When --incompatible_disallow_empty_glob is enabled, each individual empty\n # glob will fail without allow_empty = True, even if the overall result is\n # non-empty.\n java = glob([\"bin/java.exe\", \"bin/java\"], allow_empty = True)[0],\n version = 21,\n)\n",
  2417. "sha256": "9639b87db586d0c89f7a9892ae47f421e442c64b97baebdff31788fbe23265bd",
  2418. "strip_prefix": "zulu21.28.85-ca-jdk21.0.0-macosx_x64",
  2419. "urls": [
  2420. "https://mirror.bazel.build/cdn.azul.com/zulu/bin/zulu21.28.85-ca-jdk21.0.0-macosx_x64.tar.gz",
  2421. "https://cdn.azul.com/zulu/bin/zulu21.28.85-ca-jdk21.0.0-macosx_x64.tar.gz"
  2422. ]
  2423. }
  2424. },
  2425. "remotejdk21_macos_toolchain_config_repo": {
  2426. "bzlFile": "@@rules_java~7.1.0//toolchains:remote_java_repository.bzl",
  2427. "ruleClassName": "_toolchain_config",
  2428. "attributes": {
  2429. "name": "rules_java~7.1.0~toolchains~remotejdk21_macos_toolchain_config_repo",
  2430. "build_file": "\nconfig_setting(\n name = \"prefix_version_setting\",\n values = {\"java_runtime_version\": \"remotejdk_21\"},\n visibility = [\"//visibility:private\"],\n)\nconfig_setting(\n name = \"version_setting\",\n values = {\"java_runtime_version\": \"21\"},\n visibility = [\"//visibility:private\"],\n)\nalias(\n name = \"version_or_prefix_version_setting\",\n actual = select({\n \":version_setting\": \":version_setting\",\n \"//conditions:default\": \":prefix_version_setting\",\n }),\n visibility = [\"//visibility:private\"],\n)\ntoolchain(\n name = \"toolchain\",\n target_compatible_with = [\"@platforms//os:macos\", \"@platforms//cpu:x86_64\"],\n target_settings = [\":version_or_prefix_version_setting\"],\n toolchain_type = \"@bazel_tools//tools/jdk:runtime_toolchain_type\",\n toolchain = \"@remotejdk21_macos//:jdk\",\n)\ntoolchain(\n name = \"bootstrap_runtime_toolchain\",\n # These constraints are not required for correctness, but prevent fetches of remote JDK for\n # different architectures. As every Java compilation toolchain depends on a bootstrap runtime in\n # the same configuration, this constraint will not result in toolchain resolution failures.\n exec_compatible_with = [\"@platforms//os:macos\", \"@platforms//cpu:x86_64\"],\n target_settings = [\":version_or_prefix_version_setting\"],\n toolchain_type = \"@bazel_tools//tools/jdk:bootstrap_runtime_toolchain_type\",\n toolchain = \"@remotejdk21_macos//:jdk\",\n)\n"
  2431. }
  2432. },
  2433. "remotejdk17_macos_aarch64_toolchain_config_repo": {
  2434. "bzlFile": "@@rules_java~7.1.0//toolchains:remote_java_repository.bzl",
  2435. "ruleClassName": "_toolchain_config",
  2436. "attributes": {
  2437. "name": "rules_java~7.1.0~toolchains~remotejdk17_macos_aarch64_toolchain_config_repo",
  2438. "build_file": "\nconfig_setting(\n name = \"prefix_version_setting\",\n values = {\"java_runtime_version\": \"remotejdk_17\"},\n visibility = [\"//visibility:private\"],\n)\nconfig_setting(\n name = \"version_setting\",\n values = {\"java_runtime_version\": \"17\"},\n visibility = [\"//visibility:private\"],\n)\nalias(\n name = \"version_or_prefix_version_setting\",\n actual = select({\n \":version_setting\": \":version_setting\",\n \"//conditions:default\": \":prefix_version_setting\",\n }),\n visibility = [\"//visibility:private\"],\n)\ntoolchain(\n name = \"toolchain\",\n target_compatible_with = [\"@platforms//os:macos\", \"@platforms//cpu:aarch64\"],\n target_settings = [\":version_or_prefix_version_setting\"],\n toolchain_type = \"@bazel_tools//tools/jdk:runtime_toolchain_type\",\n toolchain = \"@remotejdk17_macos_aarch64//:jdk\",\n)\ntoolchain(\n name = \"bootstrap_runtime_toolchain\",\n # These constraints are not required for correctness, but prevent fetches of remote JDK for\n # different architectures. As every Java compilation toolchain depends on a bootstrap runtime in\n # the same configuration, this constraint will not result in toolchain resolution failures.\n exec_compatible_with = [\"@platforms//os:macos\", \"@platforms//cpu:aarch64\"],\n target_settings = [\":version_or_prefix_version_setting\"],\n toolchain_type = \"@bazel_tools//tools/jdk:bootstrap_runtime_toolchain_type\",\n toolchain = \"@remotejdk17_macos_aarch64//:jdk\",\n)\n"
  2439. }
  2440. },
  2441. "remotejdk17_win": {
  2442. "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl",
  2443. "ruleClassName": "http_archive",
  2444. "attributes": {
  2445. "name": "rules_java~7.1.0~toolchains~remotejdk17_win",
  2446. "build_file_content": "load(\"@rules_java//java:defs.bzl\", \"java_runtime\")\n\npackage(default_visibility = [\"//visibility:public\"])\n\nexports_files([\"WORKSPACE\", \"BUILD.bazel\"])\n\nfilegroup(\n name = \"jre\",\n srcs = glob(\n [\n \"jre/bin/**\",\n \"jre/lib/**\",\n ],\n allow_empty = True,\n # In some configurations, Java browser plugin is considered harmful and\n # common antivirus software blocks access to npjp2.dll interfering with Bazel,\n # so do not include it in JRE on Windows.\n exclude = [\"jre/bin/plugin2/**\"],\n ),\n)\n\nfilegroup(\n name = \"jdk-bin\",\n srcs = glob(\n [\"bin/**\"],\n # The JDK on Windows sometimes contains a directory called\n # \"%systemroot%\", which is not a valid label.\n exclude = [\"**/*%*/**\"],\n ),\n)\n\n# This folder holds security policies.\nfilegroup(\n name = \"jdk-conf\",\n srcs = glob(\n [\"conf/**\"],\n allow_empty = True,\n ),\n)\n\nfilegroup(\n name = \"jdk-include\",\n srcs = glob(\n [\"include/**\"],\n allow_empty = True,\n ),\n)\n\nfilegroup(\n name = \"jdk-lib\",\n srcs = glob(\n [\"lib/**\", \"release\"],\n allow_empty = True,\n exclude = [\n \"lib/missioncontrol/**\",\n \"lib/visualvm/**\",\n ],\n ),\n)\n\njava_runtime(\n name = \"jdk\",\n srcs = [\n \":jdk-bin\",\n \":jdk-conf\",\n \":jdk-include\",\n \":jdk-lib\",\n \":jre\",\n ],\n # Provide the 'java` binary explicitly so that the correct path is used by\n # Bazel even when the host platform differs from the execution platform.\n # Exactly one of the two globs will be empty depending on the host platform.\n # When --incompatible_disallow_empty_glob is enabled, each individual empty\n # glob will fail without allow_empty = True, even if the overall result is\n # non-empty.\n java = glob([\"bin/java.exe\", \"bin/java\"], allow_empty = True)[0],\n version = 17,\n)\n",
  2447. "sha256": "192f2afca57701de6ec496234f7e45d971bf623ff66b8ee4a5c81582054e5637",
  2448. "strip_prefix": "zulu17.44.53-ca-jdk17.0.8.1-win_x64",
  2449. "urls": [
  2450. "https://mirror.bazel.build/cdn.azul.com/zulu/bin/zulu17.44.53-ca-jdk17.0.8.1-win_x64.zip",
  2451. "https://cdn.azul.com/zulu/bin/zulu17.44.53-ca-jdk17.0.8.1-win_x64.zip"
  2452. ]
  2453. }
  2454. },
  2455. "remotejdk11_macos_aarch64_toolchain_config_repo": {
  2456. "bzlFile": "@@rules_java~7.1.0//toolchains:remote_java_repository.bzl",
  2457. "ruleClassName": "_toolchain_config",
  2458. "attributes": {
  2459. "name": "rules_java~7.1.0~toolchains~remotejdk11_macos_aarch64_toolchain_config_repo",
  2460. "build_file": "\nconfig_setting(\n name = \"prefix_version_setting\",\n values = {\"java_runtime_version\": \"remotejdk_11\"},\n visibility = [\"//visibility:private\"],\n)\nconfig_setting(\n name = \"version_setting\",\n values = {\"java_runtime_version\": \"11\"},\n visibility = [\"//visibility:private\"],\n)\nalias(\n name = \"version_or_prefix_version_setting\",\n actual = select({\n \":version_setting\": \":version_setting\",\n \"//conditions:default\": \":prefix_version_setting\",\n }),\n visibility = [\"//visibility:private\"],\n)\ntoolchain(\n name = \"toolchain\",\n target_compatible_with = [\"@platforms//os:macos\", \"@platforms//cpu:aarch64\"],\n target_settings = [\":version_or_prefix_version_setting\"],\n toolchain_type = \"@bazel_tools//tools/jdk:runtime_toolchain_type\",\n toolchain = \"@remotejdk11_macos_aarch64//:jdk\",\n)\ntoolchain(\n name = \"bootstrap_runtime_toolchain\",\n # These constraints are not required for correctness, but prevent fetches of remote JDK for\n # different architectures. As every Java compilation toolchain depends on a bootstrap runtime in\n # the same configuration, this constraint will not result in toolchain resolution failures.\n exec_compatible_with = [\"@platforms//os:macos\", \"@platforms//cpu:aarch64\"],\n target_settings = [\":version_or_prefix_version_setting\"],\n toolchain_type = \"@bazel_tools//tools/jdk:bootstrap_runtime_toolchain_type\",\n toolchain = \"@remotejdk11_macos_aarch64//:jdk\",\n)\n"
  2461. }
  2462. },
  2463. "remotejdk11_linux_ppc64le_toolchain_config_repo": {
  2464. "bzlFile": "@@rules_java~7.1.0//toolchains:remote_java_repository.bzl",
  2465. "ruleClassName": "_toolchain_config",
  2466. "attributes": {
  2467. "name": "rules_java~7.1.0~toolchains~remotejdk11_linux_ppc64le_toolchain_config_repo",
  2468. "build_file": "\nconfig_setting(\n name = \"prefix_version_setting\",\n values = {\"java_runtime_version\": \"remotejdk_11\"},\n visibility = [\"//visibility:private\"],\n)\nconfig_setting(\n name = \"version_setting\",\n values = {\"java_runtime_version\": \"11\"},\n visibility = [\"//visibility:private\"],\n)\nalias(\n name = \"version_or_prefix_version_setting\",\n actual = select({\n \":version_setting\": \":version_setting\",\n \"//conditions:default\": \":prefix_version_setting\",\n }),\n visibility = [\"//visibility:private\"],\n)\ntoolchain(\n name = \"toolchain\",\n target_compatible_with = [\"@platforms//os:linux\", \"@platforms//cpu:ppc\"],\n target_settings = [\":version_or_prefix_version_setting\"],\n toolchain_type = \"@bazel_tools//tools/jdk:runtime_toolchain_type\",\n toolchain = \"@remotejdk11_linux_ppc64le//:jdk\",\n)\ntoolchain(\n name = \"bootstrap_runtime_toolchain\",\n # These constraints are not required for correctness, but prevent fetches of remote JDK for\n # different architectures. As every Java compilation toolchain depends on a bootstrap runtime in\n # the same configuration, this constraint will not result in toolchain resolution failures.\n exec_compatible_with = [\"@platforms//os:linux\", \"@platforms//cpu:ppc\"],\n target_settings = [\":version_or_prefix_version_setting\"],\n toolchain_type = \"@bazel_tools//tools/jdk:bootstrap_runtime_toolchain_type\",\n toolchain = \"@remotejdk11_linux_ppc64le//:jdk\",\n)\n"
  2469. }
  2470. },
  2471. "remotejdk21_linux": {
  2472. "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl",
  2473. "ruleClassName": "http_archive",
  2474. "attributes": {
  2475. "name": "rules_java~7.1.0~toolchains~remotejdk21_linux",
  2476. "build_file_content": "load(\"@rules_java//java:defs.bzl\", \"java_runtime\")\n\npackage(default_visibility = [\"//visibility:public\"])\n\nexports_files([\"WORKSPACE\", \"BUILD.bazel\"])\n\nfilegroup(\n name = \"jre\",\n srcs = glob(\n [\n \"jre/bin/**\",\n \"jre/lib/**\",\n ],\n allow_empty = True,\n # In some configurations, Java browser plugin is considered harmful and\n # common antivirus software blocks access to npjp2.dll interfering with Bazel,\n # so do not include it in JRE on Windows.\n exclude = [\"jre/bin/plugin2/**\"],\n ),\n)\n\nfilegroup(\n name = \"jdk-bin\",\n srcs = glob(\n [\"bin/**\"],\n # The JDK on Windows sometimes contains a directory called\n # \"%systemroot%\", which is not a valid label.\n exclude = [\"**/*%*/**\"],\n ),\n)\n\n# This folder holds security policies.\nfilegroup(\n name = \"jdk-conf\",\n srcs = glob(\n [\"conf/**\"],\n allow_empty = True,\n ),\n)\n\nfilegroup(\n name = \"jdk-include\",\n srcs = glob(\n [\"include/**\"],\n allow_empty = True,\n ),\n)\n\nfilegroup(\n name = \"jdk-lib\",\n srcs = glob(\n [\"lib/**\", \"release\"],\n allow_empty = True,\n exclude = [\n \"lib/missioncontrol/**\",\n \"lib/visualvm/**\",\n ],\n ),\n)\n\njava_runtime(\n name = \"jdk\",\n srcs = [\n \":jdk-bin\",\n \":jdk-conf\",\n \":jdk-include\",\n \":jdk-lib\",\n \":jre\",\n ],\n # Provide the 'java` binary explicitly so that the correct path is used by\n # Bazel even when the host platform differs from the execution platform.\n # Exactly one of the two globs will be empty depending on the host platform.\n # When --incompatible_disallow_empty_glob is enabled, each individual empty\n # glob will fail without allow_empty = True, even if the overall result is\n # non-empty.\n java = glob([\"bin/java.exe\", \"bin/java\"], allow_empty = True)[0],\n version = 21,\n)\n",
  2477. "sha256": "0c0eadfbdc47a7ca64aeab51b9c061f71b6e4d25d2d87674512e9b6387e9e3a6",
  2478. "strip_prefix": "zulu21.28.85-ca-jdk21.0.0-linux_x64",
  2479. "urls": [
  2480. "https://mirror.bazel.build/cdn.azul.com/zulu/bin/zulu21.28.85-ca-jdk21.0.0-linux_x64.tar.gz",
  2481. "https://cdn.azul.com/zulu/bin/zulu21.28.85-ca-jdk21.0.0-linux_x64.tar.gz"
  2482. ]
  2483. }
  2484. },
  2485. "remote_java_tools_linux": {
  2486. "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl",
  2487. "ruleClassName": "http_archive",
  2488. "attributes": {
  2489. "name": "rules_java~7.1.0~toolchains~remote_java_tools_linux",
  2490. "sha256": "d134da9b04c9023fb6e56a5d4bffccee73f7bc9572ddc4e747778dacccd7a5a7",
  2491. "urls": [
  2492. "https://mirror.bazel.build/bazel_java_tools/releases/java/v13.1/java_tools_linux-v13.1.zip",
  2493. "https://github.com/bazelbuild/java_tools/releases/download/java_v13.1/java_tools_linux-v13.1.zip"
  2494. ]
  2495. }
  2496. },
  2497. "remotejdk21_win": {
  2498. "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl",
  2499. "ruleClassName": "http_archive",
  2500. "attributes": {
  2501. "name": "rules_java~7.1.0~toolchains~remotejdk21_win",
  2502. "build_file_content": "load(\"@rules_java//java:defs.bzl\", \"java_runtime\")\n\npackage(default_visibility = [\"//visibility:public\"])\n\nexports_files([\"WORKSPACE\", \"BUILD.bazel\"])\n\nfilegroup(\n name = \"jre\",\n srcs = glob(\n [\n \"jre/bin/**\",\n \"jre/lib/**\",\n ],\n allow_empty = True,\n # In some configurations, Java browser plugin is considered harmful and\n # common antivirus software blocks access to npjp2.dll interfering with Bazel,\n # so do not include it in JRE on Windows.\n exclude = [\"jre/bin/plugin2/**\"],\n ),\n)\n\nfilegroup(\n name = \"jdk-bin\",\n srcs = glob(\n [\"bin/**\"],\n # The JDK on Windows sometimes contains a directory called\n # \"%systemroot%\", which is not a valid label.\n exclude = [\"**/*%*/**\"],\n ),\n)\n\n# This folder holds security policies.\nfilegroup(\n name = \"jdk-conf\",\n srcs = glob(\n [\"conf/**\"],\n allow_empty = True,\n ),\n)\n\nfilegroup(\n name = \"jdk-include\",\n srcs = glob(\n [\"include/**\"],\n allow_empty = True,\n ),\n)\n\nfilegroup(\n name = \"jdk-lib\",\n srcs = glob(\n [\"lib/**\", \"release\"],\n allow_empty = True,\n exclude = [\n \"lib/missioncontrol/**\",\n \"lib/visualvm/**\",\n ],\n ),\n)\n\njava_runtime(\n name = \"jdk\",\n srcs = [\n \":jdk-bin\",\n \":jdk-conf\",\n \":jdk-include\",\n \":jdk-lib\",\n \":jre\",\n ],\n # Provide the 'java` binary explicitly so that the correct path is used by\n # Bazel even when the host platform differs from the execution platform.\n # Exactly one of the two globs will be empty depending on the host platform.\n # When --incompatible_disallow_empty_glob is enabled, each individual empty\n # glob will fail without allow_empty = True, even if the overall result is\n # non-empty.\n java = glob([\"bin/java.exe\", \"bin/java\"], allow_empty = True)[0],\n version = 21,\n)\n",
  2503. "sha256": "e9959d500a0d9a7694ac243baf657761479da132f0f94720cbffd092150bd802",
  2504. "strip_prefix": "zulu21.28.85-ca-jdk21.0.0-win_x64",
  2505. "urls": [
  2506. "https://mirror.bazel.build/cdn.azul.com/zulu/bin/zulu21.28.85-ca-jdk21.0.0-win_x64.zip",
  2507. "https://cdn.azul.com/zulu/bin/zulu21.28.85-ca-jdk21.0.0-win_x64.zip"
  2508. ]
  2509. }
  2510. },
  2511. "remotejdk21_linux_aarch64": {
  2512. "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl",
  2513. "ruleClassName": "http_archive",
  2514. "attributes": {
  2515. "name": "rules_java~7.1.0~toolchains~remotejdk21_linux_aarch64",
  2516. "build_file_content": "load(\"@rules_java//java:defs.bzl\", \"java_runtime\")\n\npackage(default_visibility = [\"//visibility:public\"])\n\nexports_files([\"WORKSPACE\", \"BUILD.bazel\"])\n\nfilegroup(\n name = \"jre\",\n srcs = glob(\n [\n \"jre/bin/**\",\n \"jre/lib/**\",\n ],\n allow_empty = True,\n # In some configurations, Java browser plugin is considered harmful and\n # common antivirus software blocks access to npjp2.dll interfering with Bazel,\n # so do not include it in JRE on Windows.\n exclude = [\"jre/bin/plugin2/**\"],\n ),\n)\n\nfilegroup(\n name = \"jdk-bin\",\n srcs = glob(\n [\"bin/**\"],\n # The JDK on Windows sometimes contains a directory called\n # \"%systemroot%\", which is not a valid label.\n exclude = [\"**/*%*/**\"],\n ),\n)\n\n# This folder holds security policies.\nfilegroup(\n name = \"jdk-conf\",\n srcs = glob(\n [\"conf/**\"],\n allow_empty = True,\n ),\n)\n\nfilegroup(\n name = \"jdk-include\",\n srcs = glob(\n [\"include/**\"],\n allow_empty = True,\n ),\n)\n\nfilegroup(\n name = \"jdk-lib\",\n srcs = glob(\n [\"lib/**\", \"release\"],\n allow_empty = True,\n exclude = [\n \"lib/missioncontrol/**\",\n \"lib/visualvm/**\",\n ],\n ),\n)\n\njava_runtime(\n name = \"jdk\",\n srcs = [\n \":jdk-bin\",\n \":jdk-conf\",\n \":jdk-include\",\n \":jdk-lib\",\n \":jre\",\n ],\n # Provide the 'java` binary explicitly so that the correct path is used by\n # Bazel even when the host platform differs from the execution platform.\n # Exactly one of the two globs will be empty depending on the host platform.\n # When --incompatible_disallow_empty_glob is enabled, each individual empty\n # glob will fail without allow_empty = True, even if the overall result is\n # non-empty.\n java = glob([\"bin/java.exe\", \"bin/java\"], allow_empty = True)[0],\n version = 21,\n)\n",
  2517. "sha256": "1fb64b8036c5d463d8ab59af06bf5b6b006811e6012e3b0eb6bccf57f1c55835",
  2518. "strip_prefix": "zulu21.28.85-ca-jdk21.0.0-linux_aarch64",
  2519. "urls": [
  2520. "https://mirror.bazel.build/cdn.azul.com/zulu/bin/zulu21.28.85-ca-jdk21.0.0-linux_aarch64.tar.gz",
  2521. "https://cdn.azul.com/zulu/bin/zulu21.28.85-ca-jdk21.0.0-linux_aarch64.tar.gz"
  2522. ]
  2523. }
  2524. },
  2525. "remotejdk11_linux_aarch64_toolchain_config_repo": {
  2526. "bzlFile": "@@rules_java~7.1.0//toolchains:remote_java_repository.bzl",
  2527. "ruleClassName": "_toolchain_config",
  2528. "attributes": {
  2529. "name": "rules_java~7.1.0~toolchains~remotejdk11_linux_aarch64_toolchain_config_repo",
  2530. "build_file": "\nconfig_setting(\n name = \"prefix_version_setting\",\n values = {\"java_runtime_version\": \"remotejdk_11\"},\n visibility = [\"//visibility:private\"],\n)\nconfig_setting(\n name = \"version_setting\",\n values = {\"java_runtime_version\": \"11\"},\n visibility = [\"//visibility:private\"],\n)\nalias(\n name = \"version_or_prefix_version_setting\",\n actual = select({\n \":version_setting\": \":version_setting\",\n \"//conditions:default\": \":prefix_version_setting\",\n }),\n visibility = [\"//visibility:private\"],\n)\ntoolchain(\n name = \"toolchain\",\n target_compatible_with = [\"@platforms//os:linux\", \"@platforms//cpu:aarch64\"],\n target_settings = [\":version_or_prefix_version_setting\"],\n toolchain_type = \"@bazel_tools//tools/jdk:runtime_toolchain_type\",\n toolchain = \"@remotejdk11_linux_aarch64//:jdk\",\n)\ntoolchain(\n name = \"bootstrap_runtime_toolchain\",\n # These constraints are not required for correctness, but prevent fetches of remote JDK for\n # different architectures. As every Java compilation toolchain depends on a bootstrap runtime in\n # the same configuration, this constraint will not result in toolchain resolution failures.\n exec_compatible_with = [\"@platforms//os:linux\", \"@platforms//cpu:aarch64\"],\n target_settings = [\":version_or_prefix_version_setting\"],\n toolchain_type = \"@bazel_tools//tools/jdk:bootstrap_runtime_toolchain_type\",\n toolchain = \"@remotejdk11_linux_aarch64//:jdk\",\n)\n"
  2531. }
  2532. },
  2533. "remotejdk11_linux_s390x": {
  2534. "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl",
  2535. "ruleClassName": "http_archive",
  2536. "attributes": {
  2537. "name": "rules_java~7.1.0~toolchains~remotejdk11_linux_s390x",
  2538. "build_file_content": "load(\"@rules_java//java:defs.bzl\", \"java_runtime\")\n\npackage(default_visibility = [\"//visibility:public\"])\n\nexports_files([\"WORKSPACE\", \"BUILD.bazel\"])\n\nfilegroup(\n name = \"jre\",\n srcs = glob(\n [\n \"jre/bin/**\",\n \"jre/lib/**\",\n ],\n allow_empty = True,\n # In some configurations, Java browser plugin is considered harmful and\n # common antivirus software blocks access to npjp2.dll interfering with Bazel,\n # so do not include it in JRE on Windows.\n exclude = [\"jre/bin/plugin2/**\"],\n ),\n)\n\nfilegroup(\n name = \"jdk-bin\",\n srcs = glob(\n [\"bin/**\"],\n # The JDK on Windows sometimes contains a directory called\n # \"%systemroot%\", which is not a valid label.\n exclude = [\"**/*%*/**\"],\n ),\n)\n\n# This folder holds security policies.\nfilegroup(\n name = \"jdk-conf\",\n srcs = glob(\n [\"conf/**\"],\n allow_empty = True,\n ),\n)\n\nfilegroup(\n name = \"jdk-include\",\n srcs = glob(\n [\"include/**\"],\n allow_empty = True,\n ),\n)\n\nfilegroup(\n name = \"jdk-lib\",\n srcs = glob(\n [\"lib/**\", \"release\"],\n allow_empty = True,\n exclude = [\n \"lib/missioncontrol/**\",\n \"lib/visualvm/**\",\n ],\n ),\n)\n\njava_runtime(\n name = \"jdk\",\n srcs = [\n \":jdk-bin\",\n \":jdk-conf\",\n \":jdk-include\",\n \":jdk-lib\",\n \":jre\",\n ],\n # Provide the 'java` binary explicitly so that the correct path is used by\n # Bazel even when the host platform differs from the execution platform.\n # Exactly one of the two globs will be empty depending on the host platform.\n # When --incompatible_disallow_empty_glob is enabled, each individual empty\n # glob will fail without allow_empty = True, even if the overall result is\n # non-empty.\n java = glob([\"bin/java.exe\", \"bin/java\"], allow_empty = True)[0],\n version = 11,\n)\n",
  2539. "sha256": "a58fc0361966af0a5d5a31a2d8a208e3c9bb0f54f345596fd80b99ea9a39788b",
  2540. "strip_prefix": "jdk-11.0.15+10",
  2541. "urls": [
  2542. "https://mirror.bazel.build/github.com/adoptium/temurin11-binaries/releases/download/jdk-11.0.15+10/OpenJDK11U-jdk_s390x_linux_hotspot_11.0.15_10.tar.gz",
  2543. "https://github.com/adoptium/temurin11-binaries/releases/download/jdk-11.0.15+10/OpenJDK11U-jdk_s390x_linux_hotspot_11.0.15_10.tar.gz"
  2544. ]
  2545. }
  2546. },
  2547. "remotejdk17_linux_aarch64": {
  2548. "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl",
  2549. "ruleClassName": "http_archive",
  2550. "attributes": {
  2551. "name": "rules_java~7.1.0~toolchains~remotejdk17_linux_aarch64",
  2552. "build_file_content": "load(\"@rules_java//java:defs.bzl\", \"java_runtime\")\n\npackage(default_visibility = [\"//visibility:public\"])\n\nexports_files([\"WORKSPACE\", \"BUILD.bazel\"])\n\nfilegroup(\n name = \"jre\",\n srcs = glob(\n [\n \"jre/bin/**\",\n \"jre/lib/**\",\n ],\n allow_empty = True,\n # In some configurations, Java browser plugin is considered harmful and\n # common antivirus software blocks access to npjp2.dll interfering with Bazel,\n # so do not include it in JRE on Windows.\n exclude = [\"jre/bin/plugin2/**\"],\n ),\n)\n\nfilegroup(\n name = \"jdk-bin\",\n srcs = glob(\n [\"bin/**\"],\n # The JDK on Windows sometimes contains a directory called\n # \"%systemroot%\", which is not a valid label.\n exclude = [\"**/*%*/**\"],\n ),\n)\n\n# This folder holds security policies.\nfilegroup(\n name = \"jdk-conf\",\n srcs = glob(\n [\"conf/**\"],\n allow_empty = True,\n ),\n)\n\nfilegroup(\n name = \"jdk-include\",\n srcs = glob(\n [\"include/**\"],\n allow_empty = True,\n ),\n)\n\nfilegroup(\n name = \"jdk-lib\",\n srcs = glob(\n [\"lib/**\", \"release\"],\n allow_empty = True,\n exclude = [\n \"lib/missioncontrol/**\",\n \"lib/visualvm/**\",\n ],\n ),\n)\n\njava_runtime(\n name = \"jdk\",\n srcs = [\n \":jdk-bin\",\n \":jdk-conf\",\n \":jdk-include\",\n \":jdk-lib\",\n \":jre\",\n ],\n # Provide the 'java` binary explicitly so that the correct path is used by\n # Bazel even when the host platform differs from the execution platform.\n # Exactly one of the two globs will be empty depending on the host platform.\n # When --incompatible_disallow_empty_glob is enabled, each individual empty\n # glob will fail without allow_empty = True, even if the overall result is\n # non-empty.\n java = glob([\"bin/java.exe\", \"bin/java\"], allow_empty = True)[0],\n version = 17,\n)\n",
  2553. "sha256": "6531cef61e416d5a7b691555c8cf2bdff689201b8a001ff45ab6740062b44313",
  2554. "strip_prefix": "zulu17.44.53-ca-jdk17.0.8.1-linux_aarch64",
  2555. "urls": [
  2556. "https://mirror.bazel.build/cdn.azul.com/zulu/bin/zulu17.44.53-ca-jdk17.0.8.1-linux_aarch64.tar.gz",
  2557. "https://cdn.azul.com/zulu/bin/zulu17.44.53-ca-jdk17.0.8.1-linux_aarch64.tar.gz"
  2558. ]
  2559. }
  2560. },
  2561. "remotejdk17_win_arm64_toolchain_config_repo": {
  2562. "bzlFile": "@@rules_java~7.1.0//toolchains:remote_java_repository.bzl",
  2563. "ruleClassName": "_toolchain_config",
  2564. "attributes": {
  2565. "name": "rules_java~7.1.0~toolchains~remotejdk17_win_arm64_toolchain_config_repo",
  2566. "build_file": "\nconfig_setting(\n name = \"prefix_version_setting\",\n values = {\"java_runtime_version\": \"remotejdk_17\"},\n visibility = [\"//visibility:private\"],\n)\nconfig_setting(\n name = \"version_setting\",\n values = {\"java_runtime_version\": \"17\"},\n visibility = [\"//visibility:private\"],\n)\nalias(\n name = \"version_or_prefix_version_setting\",\n actual = select({\n \":version_setting\": \":version_setting\",\n \"//conditions:default\": \":prefix_version_setting\",\n }),\n visibility = [\"//visibility:private\"],\n)\ntoolchain(\n name = \"toolchain\",\n target_compatible_with = [\"@platforms//os:windows\", \"@platforms//cpu:arm64\"],\n target_settings = [\":version_or_prefix_version_setting\"],\n toolchain_type = \"@bazel_tools//tools/jdk:runtime_toolchain_type\",\n toolchain = \"@remotejdk17_win_arm64//:jdk\",\n)\ntoolchain(\n name = \"bootstrap_runtime_toolchain\",\n # These constraints are not required for correctness, but prevent fetches of remote JDK for\n # different architectures. As every Java compilation toolchain depends on a bootstrap runtime in\n # the same configuration, this constraint will not result in toolchain resolution failures.\n exec_compatible_with = [\"@platforms//os:windows\", \"@platforms//cpu:arm64\"],\n target_settings = [\":version_or_prefix_version_setting\"],\n toolchain_type = \"@bazel_tools//tools/jdk:bootstrap_runtime_toolchain_type\",\n toolchain = \"@remotejdk17_win_arm64//:jdk\",\n)\n"
  2567. }
  2568. },
  2569. "remotejdk11_linux": {
  2570. "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl",
  2571. "ruleClassName": "http_archive",
  2572. "attributes": {
  2573. "name": "rules_java~7.1.0~toolchains~remotejdk11_linux",
  2574. "build_file_content": "load(\"@rules_java//java:defs.bzl\", \"java_runtime\")\n\npackage(default_visibility = [\"//visibility:public\"])\n\nexports_files([\"WORKSPACE\", \"BUILD.bazel\"])\n\nfilegroup(\n name = \"jre\",\n srcs = glob(\n [\n \"jre/bin/**\",\n \"jre/lib/**\",\n ],\n allow_empty = True,\n # In some configurations, Java browser plugin is considered harmful and\n # common antivirus software blocks access to npjp2.dll interfering with Bazel,\n # so do not include it in JRE on Windows.\n exclude = [\"jre/bin/plugin2/**\"],\n ),\n)\n\nfilegroup(\n name = \"jdk-bin\",\n srcs = glob(\n [\"bin/**\"],\n # The JDK on Windows sometimes contains a directory called\n # \"%systemroot%\", which is not a valid label.\n exclude = [\"**/*%*/**\"],\n ),\n)\n\n# This folder holds security policies.\nfilegroup(\n name = \"jdk-conf\",\n srcs = glob(\n [\"conf/**\"],\n allow_empty = True,\n ),\n)\n\nfilegroup(\n name = \"jdk-include\",\n srcs = glob(\n [\"include/**\"],\n allow_empty = True,\n ),\n)\n\nfilegroup(\n name = \"jdk-lib\",\n srcs = glob(\n [\"lib/**\", \"release\"],\n allow_empty = True,\n exclude = [\n \"lib/missioncontrol/**\",\n \"lib/visualvm/**\",\n ],\n ),\n)\n\njava_runtime(\n name = \"jdk\",\n srcs = [\n \":jdk-bin\",\n \":jdk-conf\",\n \":jdk-include\",\n \":jdk-lib\",\n \":jre\",\n ],\n # Provide the 'java` binary explicitly so that the correct path is used by\n # Bazel even when the host platform differs from the execution platform.\n # Exactly one of the two globs will be empty depending on the host platform.\n # When --incompatible_disallow_empty_glob is enabled, each individual empty\n # glob will fail without allow_empty = True, even if the overall result is\n # non-empty.\n java = glob([\"bin/java.exe\", \"bin/java\"], allow_empty = True)[0],\n version = 11,\n)\n",
  2575. "sha256": "a34b404f87a08a61148b38e1416d837189e1df7a040d949e743633daf4695a3c",
  2576. "strip_prefix": "zulu11.66.15-ca-jdk11.0.20-linux_x64",
  2577. "urls": [
  2578. "https://mirror.bazel.build/cdn.azul.com/zulu/bin/zulu11.66.15-ca-jdk11.0.20-linux_x64.tar.gz",
  2579. "https://cdn.azul.com/zulu/bin/zulu11.66.15-ca-jdk11.0.20-linux_x64.tar.gz"
  2580. ]
  2581. }
  2582. },
  2583. "remotejdk11_macos_toolchain_config_repo": {
  2584. "bzlFile": "@@rules_java~7.1.0//toolchains:remote_java_repository.bzl",
  2585. "ruleClassName": "_toolchain_config",
  2586. "attributes": {
  2587. "name": "rules_java~7.1.0~toolchains~remotejdk11_macos_toolchain_config_repo",
  2588. "build_file": "\nconfig_setting(\n name = \"prefix_version_setting\",\n values = {\"java_runtime_version\": \"remotejdk_11\"},\n visibility = [\"//visibility:private\"],\n)\nconfig_setting(\n name = \"version_setting\",\n values = {\"java_runtime_version\": \"11\"},\n visibility = [\"//visibility:private\"],\n)\nalias(\n name = \"version_or_prefix_version_setting\",\n actual = select({\n \":version_setting\": \":version_setting\",\n \"//conditions:default\": \":prefix_version_setting\",\n }),\n visibility = [\"//visibility:private\"],\n)\ntoolchain(\n name = \"toolchain\",\n target_compatible_with = [\"@platforms//os:macos\", \"@platforms//cpu:x86_64\"],\n target_settings = [\":version_or_prefix_version_setting\"],\n toolchain_type = \"@bazel_tools//tools/jdk:runtime_toolchain_type\",\n toolchain = \"@remotejdk11_macos//:jdk\",\n)\ntoolchain(\n name = \"bootstrap_runtime_toolchain\",\n # These constraints are not required for correctness, but prevent fetches of remote JDK for\n # different architectures. As every Java compilation toolchain depends on a bootstrap runtime in\n # the same configuration, this constraint will not result in toolchain resolution failures.\n exec_compatible_with = [\"@platforms//os:macos\", \"@platforms//cpu:x86_64\"],\n target_settings = [\":version_or_prefix_version_setting\"],\n toolchain_type = \"@bazel_tools//tools/jdk:bootstrap_runtime_toolchain_type\",\n toolchain = \"@remotejdk11_macos//:jdk\",\n)\n"
  2589. }
  2590. },
  2591. "remotejdk17_linux_ppc64le_toolchain_config_repo": {
  2592. "bzlFile": "@@rules_java~7.1.0//toolchains:remote_java_repository.bzl",
  2593. "ruleClassName": "_toolchain_config",
  2594. "attributes": {
  2595. "name": "rules_java~7.1.0~toolchains~remotejdk17_linux_ppc64le_toolchain_config_repo",
  2596. "build_file": "\nconfig_setting(\n name = \"prefix_version_setting\",\n values = {\"java_runtime_version\": \"remotejdk_17\"},\n visibility = [\"//visibility:private\"],\n)\nconfig_setting(\n name = \"version_setting\",\n values = {\"java_runtime_version\": \"17\"},\n visibility = [\"//visibility:private\"],\n)\nalias(\n name = \"version_or_prefix_version_setting\",\n actual = select({\n \":version_setting\": \":version_setting\",\n \"//conditions:default\": \":prefix_version_setting\",\n }),\n visibility = [\"//visibility:private\"],\n)\ntoolchain(\n name = \"toolchain\",\n target_compatible_with = [\"@platforms//os:linux\", \"@platforms//cpu:ppc\"],\n target_settings = [\":version_or_prefix_version_setting\"],\n toolchain_type = \"@bazel_tools//tools/jdk:runtime_toolchain_type\",\n toolchain = \"@remotejdk17_linux_ppc64le//:jdk\",\n)\ntoolchain(\n name = \"bootstrap_runtime_toolchain\",\n # These constraints are not required for correctness, but prevent fetches of remote JDK for\n # different architectures. As every Java compilation toolchain depends on a bootstrap runtime in\n # the same configuration, this constraint will not result in toolchain resolution failures.\n exec_compatible_with = [\"@platforms//os:linux\", \"@platforms//cpu:ppc\"],\n target_settings = [\":version_or_prefix_version_setting\"],\n toolchain_type = \"@bazel_tools//tools/jdk:bootstrap_runtime_toolchain_type\",\n toolchain = \"@remotejdk17_linux_ppc64le//:jdk\",\n)\n"
  2597. }
  2598. },
  2599. "remotejdk17_win_arm64": {
  2600. "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl",
  2601. "ruleClassName": "http_archive",
  2602. "attributes": {
  2603. "name": "rules_java~7.1.0~toolchains~remotejdk17_win_arm64",
  2604. "build_file_content": "load(\"@rules_java//java:defs.bzl\", \"java_runtime\")\n\npackage(default_visibility = [\"//visibility:public\"])\n\nexports_files([\"WORKSPACE\", \"BUILD.bazel\"])\n\nfilegroup(\n name = \"jre\",\n srcs = glob(\n [\n \"jre/bin/**\",\n \"jre/lib/**\",\n ],\n allow_empty = True,\n # In some configurations, Java browser plugin is considered harmful and\n # common antivirus software blocks access to npjp2.dll interfering with Bazel,\n # so do not include it in JRE on Windows.\n exclude = [\"jre/bin/plugin2/**\"],\n ),\n)\n\nfilegroup(\n name = \"jdk-bin\",\n srcs = glob(\n [\"bin/**\"],\n # The JDK on Windows sometimes contains a directory called\n # \"%systemroot%\", which is not a valid label.\n exclude = [\"**/*%*/**\"],\n ),\n)\n\n# This folder holds security policies.\nfilegroup(\n name = \"jdk-conf\",\n srcs = glob(\n [\"conf/**\"],\n allow_empty = True,\n ),\n)\n\nfilegroup(\n name = \"jdk-include\",\n srcs = glob(\n [\"include/**\"],\n allow_empty = True,\n ),\n)\n\nfilegroup(\n name = \"jdk-lib\",\n srcs = glob(\n [\"lib/**\", \"release\"],\n allow_empty = True,\n exclude = [\n \"lib/missioncontrol/**\",\n \"lib/visualvm/**\",\n ],\n ),\n)\n\njava_runtime(\n name = \"jdk\",\n srcs = [\n \":jdk-bin\",\n \":jdk-conf\",\n \":jdk-include\",\n \":jdk-lib\",\n \":jre\",\n ],\n # Provide the 'java` binary explicitly so that the correct path is used by\n # Bazel even when the host platform differs from the execution platform.\n # Exactly one of the two globs will be empty depending on the host platform.\n # When --incompatible_disallow_empty_glob is enabled, each individual empty\n # glob will fail without allow_empty = True, even if the overall result is\n # non-empty.\n java = glob([\"bin/java.exe\", \"bin/java\"], allow_empty = True)[0],\n version = 17,\n)\n",
  2605. "sha256": "6802c99eae0d788e21f52d03cab2e2b3bf42bc334ca03cbf19f71eb70ee19f85",
  2606. "strip_prefix": "zulu17.44.53-ca-jdk17.0.8.1-win_aarch64",
  2607. "urls": [
  2608. "https://mirror.bazel.build/cdn.azul.com/zulu/bin/zulu17.44.53-ca-jdk17.0.8.1-win_aarch64.zip",
  2609. "https://cdn.azul.com/zulu/bin/zulu17.44.53-ca-jdk17.0.8.1-win_aarch64.zip"
  2610. ]
  2611. }
  2612. },
  2613. "remote_java_tools_darwin_arm64": {
  2614. "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl",
  2615. "ruleClassName": "http_archive",
  2616. "attributes": {
  2617. "name": "rules_java~7.1.0~toolchains~remote_java_tools_darwin_arm64",
  2618. "sha256": "dab5bb87ec43e980faea6e1cec14bafb217b8e2f5346f53aa784fd715929a930",
  2619. "urls": [
  2620. "https://mirror.bazel.build/bazel_java_tools/releases/java/v13.1/java_tools_darwin_arm64-v13.1.zip",
  2621. "https://github.com/bazelbuild/java_tools/releases/download/java_v13.1/java_tools_darwin_arm64-v13.1.zip"
  2622. ]
  2623. }
  2624. },
  2625. "remotejdk17_linux_ppc64le": {
  2626. "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl",
  2627. "ruleClassName": "http_archive",
  2628. "attributes": {
  2629. "name": "rules_java~7.1.0~toolchains~remotejdk17_linux_ppc64le",
  2630. "build_file_content": "load(\"@rules_java//java:defs.bzl\", \"java_runtime\")\n\npackage(default_visibility = [\"//visibility:public\"])\n\nexports_files([\"WORKSPACE\", \"BUILD.bazel\"])\n\nfilegroup(\n name = \"jre\",\n srcs = glob(\n [\n \"jre/bin/**\",\n \"jre/lib/**\",\n ],\n allow_empty = True,\n # In some configurations, Java browser plugin is considered harmful and\n # common antivirus software blocks access to npjp2.dll interfering with Bazel,\n # so do not include it in JRE on Windows.\n exclude = [\"jre/bin/plugin2/**\"],\n ),\n)\n\nfilegroup(\n name = \"jdk-bin\",\n srcs = glob(\n [\"bin/**\"],\n # The JDK on Windows sometimes contains a directory called\n # \"%systemroot%\", which is not a valid label.\n exclude = [\"**/*%*/**\"],\n ),\n)\n\n# This folder holds security policies.\nfilegroup(\n name = \"jdk-conf\",\n srcs = glob(\n [\"conf/**\"],\n allow_empty = True,\n ),\n)\n\nfilegroup(\n name = \"jdk-include\",\n srcs = glob(\n [\"include/**\"],\n allow_empty = True,\n ),\n)\n\nfilegroup(\n name = \"jdk-lib\",\n srcs = glob(\n [\"lib/**\", \"release\"],\n allow_empty = True,\n exclude = [\n \"lib/missioncontrol/**\",\n \"lib/visualvm/**\",\n ],\n ),\n)\n\njava_runtime(\n name = \"jdk\",\n srcs = [\n \":jdk-bin\",\n \":jdk-conf\",\n \":jdk-include\",\n \":jdk-lib\",\n \":jre\",\n ],\n # Provide the 'java` binary explicitly so that the correct path is used by\n # Bazel even when the host platform differs from the execution platform.\n # Exactly one of the two globs will be empty depending on the host platform.\n # When --incompatible_disallow_empty_glob is enabled, each individual empty\n # glob will fail without allow_empty = True, even if the overall result is\n # non-empty.\n java = glob([\"bin/java.exe\", \"bin/java\"], allow_empty = True)[0],\n version = 17,\n)\n",
  2631. "sha256": "00a4c07603d0218cd678461b5b3b7e25b3253102da4022d31fc35907f21a2efd",
  2632. "strip_prefix": "jdk-17.0.8.1+1",
  2633. "urls": [
  2634. "https://mirror.bazel.build/github.com/adoptium/temurin17-binaries/releases/download/jdk-17.0.8.1%2B1/OpenJDK17U-jdk_ppc64le_linux_hotspot_17.0.8.1_1.tar.gz",
  2635. "https://github.com/adoptium/temurin17-binaries/releases/download/jdk-17.0.8.1%2B1/OpenJDK17U-jdk_ppc64le_linux_hotspot_17.0.8.1_1.tar.gz"
  2636. ]
  2637. }
  2638. },
  2639. "remotejdk21_linux_aarch64_toolchain_config_repo": {
  2640. "bzlFile": "@@rules_java~7.1.0//toolchains:remote_java_repository.bzl",
  2641. "ruleClassName": "_toolchain_config",
  2642. "attributes": {
  2643. "name": "rules_java~7.1.0~toolchains~remotejdk21_linux_aarch64_toolchain_config_repo",
  2644. "build_file": "\nconfig_setting(\n name = \"prefix_version_setting\",\n values = {\"java_runtime_version\": \"remotejdk_21\"},\n visibility = [\"//visibility:private\"],\n)\nconfig_setting(\n name = \"version_setting\",\n values = {\"java_runtime_version\": \"21\"},\n visibility = [\"//visibility:private\"],\n)\nalias(\n name = \"version_or_prefix_version_setting\",\n actual = select({\n \":version_setting\": \":version_setting\",\n \"//conditions:default\": \":prefix_version_setting\",\n }),\n visibility = [\"//visibility:private\"],\n)\ntoolchain(\n name = \"toolchain\",\n target_compatible_with = [\"@platforms//os:linux\", \"@platforms//cpu:aarch64\"],\n target_settings = [\":version_or_prefix_version_setting\"],\n toolchain_type = \"@bazel_tools//tools/jdk:runtime_toolchain_type\",\n toolchain = \"@remotejdk21_linux_aarch64//:jdk\",\n)\ntoolchain(\n name = \"bootstrap_runtime_toolchain\",\n # These constraints are not required for correctness, but prevent fetches of remote JDK for\n # different architectures. As every Java compilation toolchain depends on a bootstrap runtime in\n # the same configuration, this constraint will not result in toolchain resolution failures.\n exec_compatible_with = [\"@platforms//os:linux\", \"@platforms//cpu:aarch64\"],\n target_settings = [\":version_or_prefix_version_setting\"],\n toolchain_type = \"@bazel_tools//tools/jdk:bootstrap_runtime_toolchain_type\",\n toolchain = \"@remotejdk21_linux_aarch64//:jdk\",\n)\n"
  2645. }
  2646. },
  2647. "remotejdk11_win_arm64_toolchain_config_repo": {
  2648. "bzlFile": "@@rules_java~7.1.0//toolchains:remote_java_repository.bzl",
  2649. "ruleClassName": "_toolchain_config",
  2650. "attributes": {
  2651. "name": "rules_java~7.1.0~toolchains~remotejdk11_win_arm64_toolchain_config_repo",
  2652. "build_file": "\nconfig_setting(\n name = \"prefix_version_setting\",\n values = {\"java_runtime_version\": \"remotejdk_11\"},\n visibility = [\"//visibility:private\"],\n)\nconfig_setting(\n name = \"version_setting\",\n values = {\"java_runtime_version\": \"11\"},\n visibility = [\"//visibility:private\"],\n)\nalias(\n name = \"version_or_prefix_version_setting\",\n actual = select({\n \":version_setting\": \":version_setting\",\n \"//conditions:default\": \":prefix_version_setting\",\n }),\n visibility = [\"//visibility:private\"],\n)\ntoolchain(\n name = \"toolchain\",\n target_compatible_with = [\"@platforms//os:windows\", \"@platforms//cpu:arm64\"],\n target_settings = [\":version_or_prefix_version_setting\"],\n toolchain_type = \"@bazel_tools//tools/jdk:runtime_toolchain_type\",\n toolchain = \"@remotejdk11_win_arm64//:jdk\",\n)\ntoolchain(\n name = \"bootstrap_runtime_toolchain\",\n # These constraints are not required for correctness, but prevent fetches of remote JDK for\n # different architectures. As every Java compilation toolchain depends on a bootstrap runtime in\n # the same configuration, this constraint will not result in toolchain resolution failures.\n exec_compatible_with = [\"@platforms//os:windows\", \"@platforms//cpu:arm64\"],\n target_settings = [\":version_or_prefix_version_setting\"],\n toolchain_type = \"@bazel_tools//tools/jdk:bootstrap_runtime_toolchain_type\",\n toolchain = \"@remotejdk11_win_arm64//:jdk\",\n)\n"
  2653. }
  2654. },
  2655. "local_jdk": {
  2656. "bzlFile": "@@rules_java~7.1.0//toolchains:local_java_repository.bzl",
  2657. "ruleClassName": "_local_java_repository_rule",
  2658. "attributes": {
  2659. "name": "rules_java~7.1.0~toolchains~local_jdk",
  2660. "java_home": "",
  2661. "version": "",
  2662. "build_file_content": "load(\"@rules_java//java:defs.bzl\", \"java_runtime\")\n\npackage(default_visibility = [\"//visibility:public\"])\n\nexports_files([\"WORKSPACE\", \"BUILD.bazel\"])\n\nfilegroup(\n name = \"jre\",\n srcs = glob(\n [\n \"jre/bin/**\",\n \"jre/lib/**\",\n ],\n allow_empty = True,\n # In some configurations, Java browser plugin is considered harmful and\n # common antivirus software blocks access to npjp2.dll interfering with Bazel,\n # so do not include it in JRE on Windows.\n exclude = [\"jre/bin/plugin2/**\"],\n ),\n)\n\nfilegroup(\n name = \"jdk-bin\",\n srcs = glob(\n [\"bin/**\"],\n # The JDK on Windows sometimes contains a directory called\n # \"%systemroot%\", which is not a valid label.\n exclude = [\"**/*%*/**\"],\n ),\n)\n\n# This folder holds security policies.\nfilegroup(\n name = \"jdk-conf\",\n srcs = glob(\n [\"conf/**\"],\n allow_empty = True,\n ),\n)\n\nfilegroup(\n name = \"jdk-include\",\n srcs = glob(\n [\"include/**\"],\n allow_empty = True,\n ),\n)\n\nfilegroup(\n name = \"jdk-lib\",\n srcs = glob(\n [\"lib/**\", \"release\"],\n allow_empty = True,\n exclude = [\n \"lib/missioncontrol/**\",\n \"lib/visualvm/**\",\n ],\n ),\n)\n\njava_runtime(\n name = \"jdk\",\n srcs = [\n \":jdk-bin\",\n \":jdk-conf\",\n \":jdk-include\",\n \":jdk-lib\",\n \":jre\",\n ],\n # Provide the 'java` binary explicitly so that the correct path is used by\n # Bazel even when the host platform differs from the execution platform.\n # Exactly one of the two globs will be empty depending on the host platform.\n # When --incompatible_disallow_empty_glob is enabled, each individual empty\n # glob will fail without allow_empty = True, even if the overall result is\n # non-empty.\n java = glob([\"bin/java.exe\", \"bin/java\"], allow_empty = True)[0],\n version = {RUNTIME_VERSION},\n)\n"
  2663. }
  2664. },
  2665. "remote_java_tools_darwin_x86_64": {
  2666. "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl",
  2667. "ruleClassName": "http_archive",
  2668. "attributes": {
  2669. "name": "rules_java~7.1.0~toolchains~remote_java_tools_darwin_x86_64",
  2670. "sha256": "0db40d8505a2b65ef0ed46e4256757807db8162f7acff16225be57c1d5726dbc",
  2671. "urls": [
  2672. "https://mirror.bazel.build/bazel_java_tools/releases/java/v13.1/java_tools_darwin_x86_64-v13.1.zip",
  2673. "https://github.com/bazelbuild/java_tools/releases/download/java_v13.1/java_tools_darwin_x86_64-v13.1.zip"
  2674. ]
  2675. }
  2676. },
  2677. "remote_java_tools": {
  2678. "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl",
  2679. "ruleClassName": "http_archive",
  2680. "attributes": {
  2681. "name": "rules_java~7.1.0~toolchains~remote_java_tools",
  2682. "sha256": "286bdbbd66e616fc4ed3f90101418729a73baa7e8c23a98ffbef558f74c0ad14",
  2683. "urls": [
  2684. "https://mirror.bazel.build/bazel_java_tools/releases/java/v13.1/java_tools-v13.1.zip",
  2685. "https://github.com/bazelbuild/java_tools/releases/download/java_v13.1/java_tools-v13.1.zip"
  2686. ]
  2687. }
  2688. },
  2689. "remotejdk17_linux_s390x": {
  2690. "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl",
  2691. "ruleClassName": "http_archive",
  2692. "attributes": {
  2693. "name": "rules_java~7.1.0~toolchains~remotejdk17_linux_s390x",
  2694. "build_file_content": "load(\"@rules_java//java:defs.bzl\", \"java_runtime\")\n\npackage(default_visibility = [\"//visibility:public\"])\n\nexports_files([\"WORKSPACE\", \"BUILD.bazel\"])\n\nfilegroup(\n name = \"jre\",\n srcs = glob(\n [\n \"jre/bin/**\",\n \"jre/lib/**\",\n ],\n allow_empty = True,\n # In some configurations, Java browser plugin is considered harmful and\n # common antivirus software blocks access to npjp2.dll interfering with Bazel,\n # so do not include it in JRE on Windows.\n exclude = [\"jre/bin/plugin2/**\"],\n ),\n)\n\nfilegroup(\n name = \"jdk-bin\",\n srcs = glob(\n [\"bin/**\"],\n # The JDK on Windows sometimes contains a directory called\n # \"%systemroot%\", which is not a valid label.\n exclude = [\"**/*%*/**\"],\n ),\n)\n\n# This folder holds security policies.\nfilegroup(\n name = \"jdk-conf\",\n srcs = glob(\n [\"conf/**\"],\n allow_empty = True,\n ),\n)\n\nfilegroup(\n name = \"jdk-include\",\n srcs = glob(\n [\"include/**\"],\n allow_empty = True,\n ),\n)\n\nfilegroup(\n name = \"jdk-lib\",\n srcs = glob(\n [\"lib/**\", \"release\"],\n allow_empty = True,\n exclude = [\n \"lib/missioncontrol/**\",\n \"lib/visualvm/**\",\n ],\n ),\n)\n\njava_runtime(\n name = \"jdk\",\n srcs = [\n \":jdk-bin\",\n \":jdk-conf\",\n \":jdk-include\",\n \":jdk-lib\",\n \":jre\",\n ],\n # Provide the 'java` binary explicitly so that the correct path is used by\n # Bazel even when the host platform differs from the execution platform.\n # Exactly one of the two globs will be empty depending on the host platform.\n # When --incompatible_disallow_empty_glob is enabled, each individual empty\n # glob will fail without allow_empty = True, even if the overall result is\n # non-empty.\n java = glob([\"bin/java.exe\", \"bin/java\"], allow_empty = True)[0],\n version = 17,\n)\n",
  2695. "sha256": "ffacba69c6843d7ca70d572489d6cc7ab7ae52c60f0852cedf4cf0d248b6fc37",
  2696. "strip_prefix": "jdk-17.0.8.1+1",
  2697. "urls": [
  2698. "https://mirror.bazel.build/github.com/adoptium/temurin17-binaries/releases/download/jdk-17.0.8.1%2B1/OpenJDK17U-jdk_s390x_linux_hotspot_17.0.8.1_1.tar.gz",
  2699. "https://github.com/adoptium/temurin17-binaries/releases/download/jdk-17.0.8.1%2B1/OpenJDK17U-jdk_s390x_linux_hotspot_17.0.8.1_1.tar.gz"
  2700. ]
  2701. }
  2702. },
  2703. "remotejdk17_win_toolchain_config_repo": {
  2704. "bzlFile": "@@rules_java~7.1.0//toolchains:remote_java_repository.bzl",
  2705. "ruleClassName": "_toolchain_config",
  2706. "attributes": {
  2707. "name": "rules_java~7.1.0~toolchains~remotejdk17_win_toolchain_config_repo",
  2708. "build_file": "\nconfig_setting(\n name = \"prefix_version_setting\",\n values = {\"java_runtime_version\": \"remotejdk_17\"},\n visibility = [\"//visibility:private\"],\n)\nconfig_setting(\n name = \"version_setting\",\n values = {\"java_runtime_version\": \"17\"},\n visibility = [\"//visibility:private\"],\n)\nalias(\n name = \"version_or_prefix_version_setting\",\n actual = select({\n \":version_setting\": \":version_setting\",\n \"//conditions:default\": \":prefix_version_setting\",\n }),\n visibility = [\"//visibility:private\"],\n)\ntoolchain(\n name = \"toolchain\",\n target_compatible_with = [\"@platforms//os:windows\", \"@platforms//cpu:x86_64\"],\n target_settings = [\":version_or_prefix_version_setting\"],\n toolchain_type = \"@bazel_tools//tools/jdk:runtime_toolchain_type\",\n toolchain = \"@remotejdk17_win//:jdk\",\n)\ntoolchain(\n name = \"bootstrap_runtime_toolchain\",\n # These constraints are not required for correctness, but prevent fetches of remote JDK for\n # different architectures. As every Java compilation toolchain depends on a bootstrap runtime in\n # the same configuration, this constraint will not result in toolchain resolution failures.\n exec_compatible_with = [\"@platforms//os:windows\", \"@platforms//cpu:x86_64\"],\n target_settings = [\":version_or_prefix_version_setting\"],\n toolchain_type = \"@bazel_tools//tools/jdk:bootstrap_runtime_toolchain_type\",\n toolchain = \"@remotejdk17_win//:jdk\",\n)\n"
  2709. }
  2710. },
  2711. "remotejdk11_linux_ppc64le": {
  2712. "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl",
  2713. "ruleClassName": "http_archive",
  2714. "attributes": {
  2715. "name": "rules_java~7.1.0~toolchains~remotejdk11_linux_ppc64le",
  2716. "build_file_content": "load(\"@rules_java//java:defs.bzl\", \"java_runtime\")\n\npackage(default_visibility = [\"//visibility:public\"])\n\nexports_files([\"WORKSPACE\", \"BUILD.bazel\"])\n\nfilegroup(\n name = \"jre\",\n srcs = glob(\n [\n \"jre/bin/**\",\n \"jre/lib/**\",\n ],\n allow_empty = True,\n # In some configurations, Java browser plugin is considered harmful and\n # common antivirus software blocks access to npjp2.dll interfering with Bazel,\n # so do not include it in JRE on Windows.\n exclude = [\"jre/bin/plugin2/**\"],\n ),\n)\n\nfilegroup(\n name = \"jdk-bin\",\n srcs = glob(\n [\"bin/**\"],\n # The JDK on Windows sometimes contains a directory called\n # \"%systemroot%\", which is not a valid label.\n exclude = [\"**/*%*/**\"],\n ),\n)\n\n# This folder holds security policies.\nfilegroup(\n name = \"jdk-conf\",\n srcs = glob(\n [\"conf/**\"],\n allow_empty = True,\n ),\n)\n\nfilegroup(\n name = \"jdk-include\",\n srcs = glob(\n [\"include/**\"],\n allow_empty = True,\n ),\n)\n\nfilegroup(\n name = \"jdk-lib\",\n srcs = glob(\n [\"lib/**\", \"release\"],\n allow_empty = True,\n exclude = [\n \"lib/missioncontrol/**\",\n \"lib/visualvm/**\",\n ],\n ),\n)\n\njava_runtime(\n name = \"jdk\",\n srcs = [\n \":jdk-bin\",\n \":jdk-conf\",\n \":jdk-include\",\n \":jdk-lib\",\n \":jre\",\n ],\n # Provide the 'java` binary explicitly so that the correct path is used by\n # Bazel even when the host platform differs from the execution platform.\n # Exactly one of the two globs will be empty depending on the host platform.\n # When --incompatible_disallow_empty_glob is enabled, each individual empty\n # glob will fail without allow_empty = True, even if the overall result is\n # non-empty.\n java = glob([\"bin/java.exe\", \"bin/java\"], allow_empty = True)[0],\n version = 11,\n)\n",
  2717. "sha256": "a8fba686f6eb8ae1d1a9566821dbd5a85a1108b96ad857fdbac5c1e4649fc56f",
  2718. "strip_prefix": "jdk-11.0.15+10",
  2719. "urls": [
  2720. "https://mirror.bazel.build/github.com/adoptium/temurin11-binaries/releases/download/jdk-11.0.15+10/OpenJDK11U-jdk_ppc64le_linux_hotspot_11.0.15_10.tar.gz",
  2721. "https://github.com/adoptium/temurin11-binaries/releases/download/jdk-11.0.15+10/OpenJDK11U-jdk_ppc64le_linux_hotspot_11.0.15_10.tar.gz"
  2722. ]
  2723. }
  2724. },
  2725. "remotejdk11_macos_aarch64": {
  2726. "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl",
  2727. "ruleClassName": "http_archive",
  2728. "attributes": {
  2729. "name": "rules_java~7.1.0~toolchains~remotejdk11_macos_aarch64",
  2730. "build_file_content": "load(\"@rules_java//java:defs.bzl\", \"java_runtime\")\n\npackage(default_visibility = [\"//visibility:public\"])\n\nexports_files([\"WORKSPACE\", \"BUILD.bazel\"])\n\nfilegroup(\n name = \"jre\",\n srcs = glob(\n [\n \"jre/bin/**\",\n \"jre/lib/**\",\n ],\n allow_empty = True,\n # In some configurations, Java browser plugin is considered harmful and\n # common antivirus software blocks access to npjp2.dll interfering with Bazel,\n # so do not include it in JRE on Windows.\n exclude = [\"jre/bin/plugin2/**\"],\n ),\n)\n\nfilegroup(\n name = \"jdk-bin\",\n srcs = glob(\n [\"bin/**\"],\n # The JDK on Windows sometimes contains a directory called\n # \"%systemroot%\", which is not a valid label.\n exclude = [\"**/*%*/**\"],\n ),\n)\n\n# This folder holds security policies.\nfilegroup(\n name = \"jdk-conf\",\n srcs = glob(\n [\"conf/**\"],\n allow_empty = True,\n ),\n)\n\nfilegroup(\n name = \"jdk-include\",\n srcs = glob(\n [\"include/**\"],\n allow_empty = True,\n ),\n)\n\nfilegroup(\n name = \"jdk-lib\",\n srcs = glob(\n [\"lib/**\", \"release\"],\n allow_empty = True,\n exclude = [\n \"lib/missioncontrol/**\",\n \"lib/visualvm/**\",\n ],\n ),\n)\n\njava_runtime(\n name = \"jdk\",\n srcs = [\n \":jdk-bin\",\n \":jdk-conf\",\n \":jdk-include\",\n \":jdk-lib\",\n \":jre\",\n ],\n # Provide the 'java` binary explicitly so that the correct path is used by\n # Bazel even when the host platform differs from the execution platform.\n # Exactly one of the two globs will be empty depending on the host platform.\n # When --incompatible_disallow_empty_glob is enabled, each individual empty\n # glob will fail without allow_empty = True, even if the overall result is\n # non-empty.\n java = glob([\"bin/java.exe\", \"bin/java\"], allow_empty = True)[0],\n version = 11,\n)\n",
  2731. "sha256": "7632bc29f8a4b7d492b93f3bc75a7b61630894db85d136456035ab2a24d38885",
  2732. "strip_prefix": "zulu11.66.15-ca-jdk11.0.20-macosx_aarch64",
  2733. "urls": [
  2734. "https://mirror.bazel.build/cdn.azul.com/zulu/bin/zulu11.66.15-ca-jdk11.0.20-macosx_aarch64.tar.gz",
  2735. "https://cdn.azul.com/zulu/bin/zulu11.66.15-ca-jdk11.0.20-macosx_aarch64.tar.gz"
  2736. ]
  2737. }
  2738. },
  2739. "remotejdk21_win_toolchain_config_repo": {
  2740. "bzlFile": "@@rules_java~7.1.0//toolchains:remote_java_repository.bzl",
  2741. "ruleClassName": "_toolchain_config",
  2742. "attributes": {
  2743. "name": "rules_java~7.1.0~toolchains~remotejdk21_win_toolchain_config_repo",
  2744. "build_file": "\nconfig_setting(\n name = \"prefix_version_setting\",\n values = {\"java_runtime_version\": \"remotejdk_21\"},\n visibility = [\"//visibility:private\"],\n)\nconfig_setting(\n name = \"version_setting\",\n values = {\"java_runtime_version\": \"21\"},\n visibility = [\"//visibility:private\"],\n)\nalias(\n name = \"version_or_prefix_version_setting\",\n actual = select({\n \":version_setting\": \":version_setting\",\n \"//conditions:default\": \":prefix_version_setting\",\n }),\n visibility = [\"//visibility:private\"],\n)\ntoolchain(\n name = \"toolchain\",\n target_compatible_with = [\"@platforms//os:windows\", \"@platforms//cpu:x86_64\"],\n target_settings = [\":version_or_prefix_version_setting\"],\n toolchain_type = \"@bazel_tools//tools/jdk:runtime_toolchain_type\",\n toolchain = \"@remotejdk21_win//:jdk\",\n)\ntoolchain(\n name = \"bootstrap_runtime_toolchain\",\n # These constraints are not required for correctness, but prevent fetches of remote JDK for\n # different architectures. As every Java compilation toolchain depends on a bootstrap runtime in\n # the same configuration, this constraint will not result in toolchain resolution failures.\n exec_compatible_with = [\"@platforms//os:windows\", \"@platforms//cpu:x86_64\"],\n target_settings = [\":version_or_prefix_version_setting\"],\n toolchain_type = \"@bazel_tools//tools/jdk:bootstrap_runtime_toolchain_type\",\n toolchain = \"@remotejdk21_win//:jdk\",\n)\n"
  2745. }
  2746. }
  2747. }
  2748. }
  2749. },
  2750. "@@rules_jvm_external~4.4.2//:extensions.bzl%maven": {
  2751. "general": {
  2752. "bzlTransitiveDigest": "SNZtnmBkSzitA86+iyWV+lsMoWqTaHkbJeV673xyy3k=",
  2753. "accumulatedFileDigests": {
  2754. "@@rules_jvm_external~4.4.2//:rules_jvm_external_deps_install.json": "10442a5ae27d9ff4c2003e5ab71643bf0d8b48dcf968b4173fa274c3232a8c06"
  2755. },
  2756. "envVariables": {},
  2757. "generatedRepoSpecs": {
  2758. "org_slf4j_slf4j_api_1_7_30": {
  2759. "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl",
  2760. "ruleClassName": "http_file",
  2761. "attributes": {
  2762. "name": "rules_jvm_external~4.4.2~maven~org_slf4j_slf4j_api_1_7_30",
  2763. "sha256": "cdba07964d1bb40a0761485c6b1e8c2f8fd9eb1d19c53928ac0d7f9510105c57",
  2764. "urls": [
  2765. "https://repo1.maven.org/maven2/org/slf4j/slf4j-api/1.7.30/slf4j-api-1.7.30.jar",
  2766. "https://maven.google.com/org/slf4j/slf4j-api/1.7.30/slf4j-api-1.7.30.jar"
  2767. ],
  2768. "downloaded_file_path": "v1/https/repo1.maven.org/maven2/org/slf4j/slf4j-api/1.7.30/slf4j-api-1.7.30.jar"
  2769. }
  2770. },
  2771. "com_google_api_grpc_proto_google_common_protos_2_0_1": {
  2772. "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl",
  2773. "ruleClassName": "http_file",
  2774. "attributes": {
  2775. "name": "rules_jvm_external~4.4.2~maven~com_google_api_grpc_proto_google_common_protos_2_0_1",
  2776. "sha256": "5ce71656118618731e34a5d4c61aa3a031be23446dc7de8b5a5e77b66ebcd6ef",
  2777. "urls": [
  2778. "https://repo1.maven.org/maven2/com/google/api/grpc/proto-google-common-protos/2.0.1/proto-google-common-protos-2.0.1.jar",
  2779. "https://maven.google.com/com/google/api/grpc/proto-google-common-protos/2.0.1/proto-google-common-protos-2.0.1.jar"
  2780. ],
  2781. "downloaded_file_path": "v1/https/repo1.maven.org/maven2/com/google/api/grpc/proto-google-common-protos/2.0.1/proto-google-common-protos-2.0.1.jar"
  2782. }
  2783. },
  2784. "com_google_api_gax_1_60_0": {
  2785. "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl",
  2786. "ruleClassName": "http_file",
  2787. "attributes": {
  2788. "name": "rules_jvm_external~4.4.2~maven~com_google_api_gax_1_60_0",
  2789. "sha256": "02f37d4ff1a7b8d71dff8064cf9568aa4f4b61bcc4485085d16130f32afa5a79",
  2790. "urls": [
  2791. "https://repo1.maven.org/maven2/com/google/api/gax/1.60.0/gax-1.60.0.jar",
  2792. "https://maven.google.com/com/google/api/gax/1.60.0/gax-1.60.0.jar"
  2793. ],
  2794. "downloaded_file_path": "v1/https/repo1.maven.org/maven2/com/google/api/gax/1.60.0/gax-1.60.0.jar"
  2795. }
  2796. },
  2797. "com_google_guava_failureaccess_1_0_1": {
  2798. "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl",
  2799. "ruleClassName": "http_file",
  2800. "attributes": {
  2801. "name": "rules_jvm_external~4.4.2~maven~com_google_guava_failureaccess_1_0_1",
  2802. "sha256": "a171ee4c734dd2da837e4b16be9df4661afab72a41adaf31eb84dfdaf936ca26",
  2803. "urls": [
  2804. "https://repo1.maven.org/maven2/com/google/guava/failureaccess/1.0.1/failureaccess-1.0.1.jar",
  2805. "https://maven.google.com/com/google/guava/failureaccess/1.0.1/failureaccess-1.0.1.jar"
  2806. ],
  2807. "downloaded_file_path": "v1/https/repo1.maven.org/maven2/com/google/guava/failureaccess/1.0.1/failureaccess-1.0.1.jar"
  2808. }
  2809. },
  2810. "commons_logging_commons_logging_1_2": {
  2811. "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl",
  2812. "ruleClassName": "http_file",
  2813. "attributes": {
  2814. "name": "rules_jvm_external~4.4.2~maven~commons_logging_commons_logging_1_2",
  2815. "sha256": "daddea1ea0be0f56978ab3006b8ac92834afeefbd9b7e4e6316fca57df0fa636",
  2816. "urls": [
  2817. "https://repo1.maven.org/maven2/commons-logging/commons-logging/1.2/commons-logging-1.2.jar",
  2818. "https://maven.google.com/commons-logging/commons-logging/1.2/commons-logging-1.2.jar"
  2819. ],
  2820. "downloaded_file_path": "v1/https/repo1.maven.org/maven2/commons-logging/commons-logging/1.2/commons-logging-1.2.jar"
  2821. }
  2822. },
  2823. "com_google_http_client_google_http_client_appengine_1_38_0": {
  2824. "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl",
  2825. "ruleClassName": "http_file",
  2826. "attributes": {
  2827. "name": "rules_jvm_external~4.4.2~maven~com_google_http_client_google_http_client_appengine_1_38_0",
  2828. "sha256": "f97b495fd97ac3a3d59099eb2b55025f4948230da15a076f189b9cff37c6b4d2",
  2829. "urls": [
  2830. "https://repo1.maven.org/maven2/com/google/http-client/google-http-client-appengine/1.38.0/google-http-client-appengine-1.38.0.jar",
  2831. "https://maven.google.com/com/google/http-client/google-http-client-appengine/1.38.0/google-http-client-appengine-1.38.0.jar"
  2832. ],
  2833. "downloaded_file_path": "v1/https/repo1.maven.org/maven2/com/google/http-client/google-http-client-appengine/1.38.0/google-http-client-appengine-1.38.0.jar"
  2834. }
  2835. },
  2836. "com_google_cloud_google_cloud_storage_1_113_4": {
  2837. "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl",
  2838. "ruleClassName": "http_file",
  2839. "attributes": {
  2840. "name": "rules_jvm_external~4.4.2~maven~com_google_cloud_google_cloud_storage_1_113_4",
  2841. "sha256": "796833e9bdab80c40bbc820e65087eb8f28c6bfbca194d2e3e00d98cb5bc55d6",
  2842. "urls": [
  2843. "https://repo1.maven.org/maven2/com/google/cloud/google-cloud-storage/1.113.4/google-cloud-storage-1.113.4.jar",
  2844. "https://maven.google.com/com/google/cloud/google-cloud-storage/1.113.4/google-cloud-storage-1.113.4.jar"
  2845. ],
  2846. "downloaded_file_path": "v1/https/repo1.maven.org/maven2/com/google/cloud/google-cloud-storage/1.113.4/google-cloud-storage-1.113.4.jar"
  2847. }
  2848. },
  2849. "io_grpc_grpc_context_1_33_1": {
  2850. "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl",
  2851. "ruleClassName": "http_file",
  2852. "attributes": {
  2853. "name": "rules_jvm_external~4.4.2~maven~io_grpc_grpc_context_1_33_1",
  2854. "sha256": "99b8aea2b614fe0e61c3676e681259dc43c2de7f64620998e1a8435eb2976496",
  2855. "urls": [
  2856. "https://repo1.maven.org/maven2/io/grpc/grpc-context/1.33.1/grpc-context-1.33.1.jar",
  2857. "https://maven.google.com/io/grpc/grpc-context/1.33.1/grpc-context-1.33.1.jar"
  2858. ],
  2859. "downloaded_file_path": "v1/https/repo1.maven.org/maven2/io/grpc/grpc-context/1.33.1/grpc-context-1.33.1.jar"
  2860. }
  2861. },
  2862. "com_google_api_grpc_proto_google_iam_v1_1_0_3": {
  2863. "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl",
  2864. "ruleClassName": "http_file",
  2865. "attributes": {
  2866. "name": "rules_jvm_external~4.4.2~maven~com_google_api_grpc_proto_google_iam_v1_1_0_3",
  2867. "sha256": "64cee7383a97e846da8d8e160e6c8fe30561e507260552c59e6ccfc81301fdc8",
  2868. "urls": [
  2869. "https://repo1.maven.org/maven2/com/google/api/grpc/proto-google-iam-v1/1.0.3/proto-google-iam-v1-1.0.3.jar",
  2870. "https://maven.google.com/com/google/api/grpc/proto-google-iam-v1/1.0.3/proto-google-iam-v1-1.0.3.jar"
  2871. ],
  2872. "downloaded_file_path": "v1/https/repo1.maven.org/maven2/com/google/api/grpc/proto-google-iam-v1/1.0.3/proto-google-iam-v1-1.0.3.jar"
  2873. }
  2874. },
  2875. "com_google_api_api_common_1_10_1": {
  2876. "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl",
  2877. "ruleClassName": "http_file",
  2878. "attributes": {
  2879. "name": "rules_jvm_external~4.4.2~maven~com_google_api_api_common_1_10_1",
  2880. "sha256": "2a033f24bb620383eda440ad307cb8077cfec1c7eadc684d65216123a1b9613a",
  2881. "urls": [
  2882. "https://repo1.maven.org/maven2/com/google/api/api-common/1.10.1/api-common-1.10.1.jar",
  2883. "https://maven.google.com/com/google/api/api-common/1.10.1/api-common-1.10.1.jar"
  2884. ],
  2885. "downloaded_file_path": "v1/https/repo1.maven.org/maven2/com/google/api/api-common/1.10.1/api-common-1.10.1.jar"
  2886. }
  2887. },
  2888. "com_google_auth_google_auth_library_oauth2_http_0_22_0": {
  2889. "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl",
  2890. "ruleClassName": "http_file",
  2891. "attributes": {
  2892. "name": "rules_jvm_external~4.4.2~maven~com_google_auth_google_auth_library_oauth2_http_0_22_0",
  2893. "sha256": "1722d895c42dc42ea1d1f392ddbec1fbb28f7a979022c3a6c29acc39cc777ad1",
  2894. "urls": [
  2895. "https://repo1.maven.org/maven2/com/google/auth/google-auth-library-oauth2-http/0.22.0/google-auth-library-oauth2-http-0.22.0.jar",
  2896. "https://maven.google.com/com/google/auth/google-auth-library-oauth2-http/0.22.0/google-auth-library-oauth2-http-0.22.0.jar"
  2897. ],
  2898. "downloaded_file_path": "v1/https/repo1.maven.org/maven2/com/google/auth/google-auth-library-oauth2-http/0.22.0/google-auth-library-oauth2-http-0.22.0.jar"
  2899. }
  2900. },
  2901. "com_typesafe_netty_netty_reactive_streams_2_0_5": {
  2902. "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl",
  2903. "ruleClassName": "http_file",
  2904. "attributes": {
  2905. "name": "rules_jvm_external~4.4.2~maven~com_typesafe_netty_netty_reactive_streams_2_0_5",
  2906. "sha256": "f949849fc8ee75fde468ba3a35df2e04577fa31a2940b83b2a7dc9d14dac13d6",
  2907. "urls": [
  2908. "https://repo1.maven.org/maven2/com/typesafe/netty/netty-reactive-streams/2.0.5/netty-reactive-streams-2.0.5.jar",
  2909. "https://maven.google.com/com/typesafe/netty/netty-reactive-streams/2.0.5/netty-reactive-streams-2.0.5.jar"
  2910. ],
  2911. "downloaded_file_path": "v1/https/repo1.maven.org/maven2/com/typesafe/netty/netty-reactive-streams/2.0.5/netty-reactive-streams-2.0.5.jar"
  2912. }
  2913. },
  2914. "com_typesafe_netty_netty_reactive_streams_http_2_0_5": {
  2915. "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl",
  2916. "ruleClassName": "http_file",
  2917. "attributes": {
  2918. "name": "rules_jvm_external~4.4.2~maven~com_typesafe_netty_netty_reactive_streams_http_2_0_5",
  2919. "sha256": "b39224751ad936758176e9d994230380ade5e9079e7c8ad778e3995779bcf303",
  2920. "urls": [
  2921. "https://repo1.maven.org/maven2/com/typesafe/netty/netty-reactive-streams-http/2.0.5/netty-reactive-streams-http-2.0.5.jar",
  2922. "https://maven.google.com/com/typesafe/netty/netty-reactive-streams-http/2.0.5/netty-reactive-streams-http-2.0.5.jar"
  2923. ],
  2924. "downloaded_file_path": "v1/https/repo1.maven.org/maven2/com/typesafe/netty/netty-reactive-streams-http/2.0.5/netty-reactive-streams-http-2.0.5.jar"
  2925. }
  2926. },
  2927. "javax_annotation_javax_annotation_api_1_3_2": {
  2928. "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl",
  2929. "ruleClassName": "http_file",
  2930. "attributes": {
  2931. "name": "rules_jvm_external~4.4.2~maven~javax_annotation_javax_annotation_api_1_3_2",
  2932. "sha256": "e04ba5195bcd555dc95650f7cc614d151e4bcd52d29a10b8aa2197f3ab89ab9b",
  2933. "urls": [
  2934. "https://repo1.maven.org/maven2/javax/annotation/javax.annotation-api/1.3.2/javax.annotation-api-1.3.2.jar",
  2935. "https://maven.google.com/javax/annotation/javax.annotation-api/1.3.2/javax.annotation-api-1.3.2.jar"
  2936. ],
  2937. "downloaded_file_path": "v1/https/repo1.maven.org/maven2/javax/annotation/javax.annotation-api/1.3.2/javax.annotation-api-1.3.2.jar"
  2938. }
  2939. },
  2940. "com_google_j2objc_j2objc_annotations_1_3": {
  2941. "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl",
  2942. "ruleClassName": "http_file",
  2943. "attributes": {
  2944. "name": "rules_jvm_external~4.4.2~maven~com_google_j2objc_j2objc_annotations_1_3",
  2945. "sha256": "21af30c92267bd6122c0e0b4d20cccb6641a37eaf956c6540ec471d584e64a7b",
  2946. "urls": [
  2947. "https://repo1.maven.org/maven2/com/google/j2objc/j2objc-annotations/1.3/j2objc-annotations-1.3.jar",
  2948. "https://maven.google.com/com/google/j2objc/j2objc-annotations/1.3/j2objc-annotations-1.3.jar"
  2949. ],
  2950. "downloaded_file_path": "v1/https/repo1.maven.org/maven2/com/google/j2objc/j2objc-annotations/1.3/j2objc-annotations-1.3.jar"
  2951. }
  2952. },
  2953. "software_amazon_awssdk_metrics_spi_2_17_183": {
  2954. "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl",
  2955. "ruleClassName": "http_file",
  2956. "attributes": {
  2957. "name": "rules_jvm_external~4.4.2~maven~software_amazon_awssdk_metrics_spi_2_17_183",
  2958. "sha256": "08a11dc8c4ba464beafbcc7ac05b8c724c1ccb93da99482e82a68540ac704e4a",
  2959. "urls": [
  2960. "https://repo1.maven.org/maven2/software/amazon/awssdk/metrics-spi/2.17.183/metrics-spi-2.17.183.jar",
  2961. "https://maven.google.com/software/amazon/awssdk/metrics-spi/2.17.183/metrics-spi-2.17.183.jar"
  2962. ],
  2963. "downloaded_file_path": "v1/https/repo1.maven.org/maven2/software/amazon/awssdk/metrics-spi/2.17.183/metrics-spi-2.17.183.jar"
  2964. }
  2965. },
  2966. "org_reactivestreams_reactive_streams_1_0_3": {
  2967. "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl",
  2968. "ruleClassName": "http_file",
  2969. "attributes": {
  2970. "name": "rules_jvm_external~4.4.2~maven~org_reactivestreams_reactive_streams_1_0_3",
  2971. "sha256": "1dee0481072d19c929b623e155e14d2f6085dc011529a0a0dbefc84cf571d865",
  2972. "urls": [
  2973. "https://repo1.maven.org/maven2/org/reactivestreams/reactive-streams/1.0.3/reactive-streams-1.0.3.jar",
  2974. "https://maven.google.com/org/reactivestreams/reactive-streams/1.0.3/reactive-streams-1.0.3.jar"
  2975. ],
  2976. "downloaded_file_path": "v1/https/repo1.maven.org/maven2/org/reactivestreams/reactive-streams/1.0.3/reactive-streams-1.0.3.jar"
  2977. }
  2978. },
  2979. "com_google_http_client_google_http_client_jackson2_1_38_0": {
  2980. "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl",
  2981. "ruleClassName": "http_file",
  2982. "attributes": {
  2983. "name": "rules_jvm_external~4.4.2~maven~com_google_http_client_google_http_client_jackson2_1_38_0",
  2984. "sha256": "e6504a82425fcc2168a4ca4175138ddcc085168daed8cdedb86d8f6fdc296e1e",
  2985. "urls": [
  2986. "https://repo1.maven.org/maven2/com/google/http-client/google-http-client-jackson2/1.38.0/google-http-client-jackson2-1.38.0.jar",
  2987. "https://maven.google.com/com/google/http-client/google-http-client-jackson2/1.38.0/google-http-client-jackson2-1.38.0.jar"
  2988. ],
  2989. "downloaded_file_path": "v1/https/repo1.maven.org/maven2/com/google/http-client/google-http-client-jackson2/1.38.0/google-http-client-jackson2-1.38.0.jar"
  2990. }
  2991. },
  2992. "io_netty_netty_transport_4_1_72_Final": {
  2993. "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl",
  2994. "ruleClassName": "http_file",
  2995. "attributes": {
  2996. "name": "rules_jvm_external~4.4.2~maven~io_netty_netty_transport_4_1_72_Final",
  2997. "sha256": "c5fb68e9a65b6e8a516adfcb9fa323479ee7b4d9449d8a529d2ecab3d3711d5a",
  2998. "urls": [
  2999. "https://repo1.maven.org/maven2/io/netty/netty-transport/4.1.72.Final/netty-transport-4.1.72.Final.jar",
  3000. "https://maven.google.com/io/netty/netty-transport/4.1.72.Final/netty-transport-4.1.72.Final.jar"
  3001. ],
  3002. "downloaded_file_path": "v1/https/repo1.maven.org/maven2/io/netty/netty-transport/4.1.72.Final/netty-transport-4.1.72.Final.jar"
  3003. }
  3004. },
  3005. "io_netty_netty_codec_http2_4_1_72_Final": {
  3006. "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl",
  3007. "ruleClassName": "http_file",
  3008. "attributes": {
  3009. "name": "rules_jvm_external~4.4.2~maven~io_netty_netty_codec_http2_4_1_72_Final",
  3010. "sha256": "c89a70500f59e8563e720aaa808263a514bd9e2bd91ba84eab8c2ccb45f234b2",
  3011. "urls": [
  3012. "https://repo1.maven.org/maven2/io/netty/netty-codec-http2/4.1.72.Final/netty-codec-http2-4.1.72.Final.jar",
  3013. "https://maven.google.com/io/netty/netty-codec-http2/4.1.72.Final/netty-codec-http2-4.1.72.Final.jar"
  3014. ],
  3015. "downloaded_file_path": "v1/https/repo1.maven.org/maven2/io/netty/netty-codec-http2/4.1.72.Final/netty-codec-http2-4.1.72.Final.jar"
  3016. }
  3017. },
  3018. "io_opencensus_opencensus_api_0_24_0": {
  3019. "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl",
  3020. "ruleClassName": "http_file",
  3021. "attributes": {
  3022. "name": "rules_jvm_external~4.4.2~maven~io_opencensus_opencensus_api_0_24_0",
  3023. "sha256": "f561b1cc2673844288e596ddf5bb6596868a8472fd2cb8993953fc5c034b2352",
  3024. "urls": [
  3025. "https://repo1.maven.org/maven2/io/opencensus/opencensus-api/0.24.0/opencensus-api-0.24.0.jar",
  3026. "https://maven.google.com/io/opencensus/opencensus-api/0.24.0/opencensus-api-0.24.0.jar"
  3027. ],
  3028. "downloaded_file_path": "v1/https/repo1.maven.org/maven2/io/opencensus/opencensus-api/0.24.0/opencensus-api-0.24.0.jar"
  3029. }
  3030. },
  3031. "rules_jvm_external_deps": {
  3032. "bzlFile": "@@rules_jvm_external~4.4.2//:coursier.bzl",
  3033. "ruleClassName": "pinned_coursier_fetch",
  3034. "attributes": {
  3035. "name": "rules_jvm_external~4.4.2~maven~rules_jvm_external_deps",
  3036. "repositories": [
  3037. "{ \"repo_url\": \"https://repo1.maven.org/maven2\" }"
  3038. ],
  3039. "artifacts": [
  3040. "{\"artifact\":\"google-cloud-core\",\"group\":\"com.google.cloud\",\"version\":\"1.93.10\"}",
  3041. "{\"artifact\":\"google-cloud-storage\",\"group\":\"com.google.cloud\",\"version\":\"1.113.4\"}",
  3042. "{\"artifact\":\"gson\",\"group\":\"com.google.code.gson\",\"version\":\"2.9.0\"}",
  3043. "{\"artifact\":\"maven-artifact\",\"group\":\"org.apache.maven\",\"version\":\"3.8.6\"}",
  3044. "{\"artifact\":\"s3\",\"group\":\"software.amazon.awssdk\",\"version\":\"2.17.183\"}"
  3045. ],
  3046. "fetch_sources": true,
  3047. "fetch_javadoc": false,
  3048. "generate_compat_repositories": false,
  3049. "maven_install_json": "@@rules_jvm_external~4.4.2//:rules_jvm_external_deps_install.json",
  3050. "override_targets": {},
  3051. "strict_visibility": false,
  3052. "strict_visibility_value": [
  3053. "@@//visibility:private"
  3054. ],
  3055. "jetify": false,
  3056. "jetify_include_list": [
  3057. "*"
  3058. ],
  3059. "additional_netrc_lines": [],
  3060. "fail_if_repin_required": false,
  3061. "use_starlark_android_rules": false,
  3062. "aar_import_bzl_label": "@build_bazel_rules_android//android:rules.bzl",
  3063. "duplicate_version_warning": "warn"
  3064. }
  3065. },
  3066. "org_threeten_threetenbp_1_5_0": {
  3067. "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl",
  3068. "ruleClassName": "http_file",
  3069. "attributes": {
  3070. "name": "rules_jvm_external~4.4.2~maven~org_threeten_threetenbp_1_5_0",
  3071. "sha256": "dcf9c0f940739f2a825cd8626ff27113459a2f6eb18797c7152f93fff69c264f",
  3072. "urls": [
  3073. "https://repo1.maven.org/maven2/org/threeten/threetenbp/1.5.0/threetenbp-1.5.0.jar",
  3074. "https://maven.google.com/org/threeten/threetenbp/1.5.0/threetenbp-1.5.0.jar"
  3075. ],
  3076. "downloaded_file_path": "v1/https/repo1.maven.org/maven2/org/threeten/threetenbp/1.5.0/threetenbp-1.5.0.jar"
  3077. }
  3078. },
  3079. "software_amazon_awssdk_http_client_spi_2_17_183": {
  3080. "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl",
  3081. "ruleClassName": "http_file",
  3082. "attributes": {
  3083. "name": "rules_jvm_external~4.4.2~maven~software_amazon_awssdk_http_client_spi_2_17_183",
  3084. "sha256": "fe7120f175df9e47ebcc5d946d7f40110faf2ba0a30364f3b935d5b8a5a6c3c6",
  3085. "urls": [
  3086. "https://repo1.maven.org/maven2/software/amazon/awssdk/http-client-spi/2.17.183/http-client-spi-2.17.183.jar",
  3087. "https://maven.google.com/software/amazon/awssdk/http-client-spi/2.17.183/http-client-spi-2.17.183.jar"
  3088. ],
  3089. "downloaded_file_path": "v1/https/repo1.maven.org/maven2/software/amazon/awssdk/http-client-spi/2.17.183/http-client-spi-2.17.183.jar"
  3090. }
  3091. },
  3092. "software_amazon_awssdk_third_party_jackson_core_2_17_183": {
  3093. "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl",
  3094. "ruleClassName": "http_file",
  3095. "attributes": {
  3096. "name": "rules_jvm_external~4.4.2~maven~software_amazon_awssdk_third_party_jackson_core_2_17_183",
  3097. "sha256": "1bc27c9960993c20e1ab058012dd1ae04c875eec9f0f08f2b2ca41e578dee9a4",
  3098. "urls": [
  3099. "https://repo1.maven.org/maven2/software/amazon/awssdk/third-party-jackson-core/2.17.183/third-party-jackson-core-2.17.183.jar",
  3100. "https://maven.google.com/software/amazon/awssdk/third-party-jackson-core/2.17.183/third-party-jackson-core-2.17.183.jar"
  3101. ],
  3102. "downloaded_file_path": "v1/https/repo1.maven.org/maven2/software/amazon/awssdk/third-party-jackson-core/2.17.183/third-party-jackson-core-2.17.183.jar"
  3103. }
  3104. },
  3105. "software_amazon_eventstream_eventstream_1_0_1": {
  3106. "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl",
  3107. "ruleClassName": "http_file",
  3108. "attributes": {
  3109. "name": "rules_jvm_external~4.4.2~maven~software_amazon_eventstream_eventstream_1_0_1",
  3110. "sha256": "0c37d8e696117f02c302191b8110b0d0eb20fa412fce34c3a269ec73c16ce822",
  3111. "urls": [
  3112. "https://repo1.maven.org/maven2/software/amazon/eventstream/eventstream/1.0.1/eventstream-1.0.1.jar",
  3113. "https://maven.google.com/software/amazon/eventstream/eventstream/1.0.1/eventstream-1.0.1.jar"
  3114. ],
  3115. "downloaded_file_path": "v1/https/repo1.maven.org/maven2/software/amazon/eventstream/eventstream/1.0.1/eventstream-1.0.1.jar"
  3116. }
  3117. },
  3118. "com_google_oauth_client_google_oauth_client_1_31_1": {
  3119. "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl",
  3120. "ruleClassName": "http_file",
  3121. "attributes": {
  3122. "name": "rules_jvm_external~4.4.2~maven~com_google_oauth_client_google_oauth_client_1_31_1",
  3123. "sha256": "4ed4e2948251dbda66ce251bd7f3b32cd8570055e5cdb165a3c7aea8f43da0ff",
  3124. "urls": [
  3125. "https://repo1.maven.org/maven2/com/google/oauth-client/google-oauth-client/1.31.1/google-oauth-client-1.31.1.jar",
  3126. "https://maven.google.com/com/google/oauth-client/google-oauth-client/1.31.1/google-oauth-client-1.31.1.jar"
  3127. ],
  3128. "downloaded_file_path": "v1/https/repo1.maven.org/maven2/com/google/oauth-client/google-oauth-client/1.31.1/google-oauth-client-1.31.1.jar"
  3129. }
  3130. },
  3131. "maven": {
  3132. "bzlFile": "@@rules_jvm_external~4.4.2//:coursier.bzl",
  3133. "ruleClassName": "coursier_fetch",
  3134. "attributes": {
  3135. "name": "rules_jvm_external~4.4.2~maven~maven",
  3136. "repositories": [
  3137. "{ \"repo_url\": \"https://repo1.maven.org/maven2\" }"
  3138. ],
  3139. "artifacts": [
  3140. "{\"artifact\":\"jsr305\",\"group\":\"com.google.code.findbugs\",\"version\":\"3.0.2\"}",
  3141. "{\"artifact\":\"gson\",\"group\":\"com.google.code.gson\",\"version\":\"2.8.9\"}",
  3142. "{\"artifact\":\"error_prone_annotations\",\"group\":\"com.google.errorprone\",\"version\":\"2.3.2\"}",
  3143. "{\"artifact\":\"j2objc-annotations\",\"group\":\"com.google.j2objc\",\"version\":\"1.3\"}",
  3144. "{\"artifact\":\"guava\",\"group\":\"com.google.guava\",\"version\":\"31.1-jre\"}",
  3145. "{\"artifact\":\"guava-testlib\",\"group\":\"com.google.guava\",\"version\":\"31.1-jre\"}",
  3146. "{\"artifact\":\"truth\",\"group\":\"com.google.truth\",\"version\":\"1.1.2\"}",
  3147. "{\"artifact\":\"junit\",\"group\":\"junit\",\"version\":\"4.13.2\"}",
  3148. "{\"artifact\":\"mockito-core\",\"group\":\"org.mockito\",\"version\":\"4.3.1\"}"
  3149. ],
  3150. "fail_on_missing_checksum": true,
  3151. "fetch_sources": true,
  3152. "fetch_javadoc": false,
  3153. "use_unsafe_shared_cache": false,
  3154. "excluded_artifacts": [],
  3155. "generate_compat_repositories": false,
  3156. "version_conflict_policy": "default",
  3157. "override_targets": {},
  3158. "strict_visibility": false,
  3159. "strict_visibility_value": [
  3160. "@@//visibility:private"
  3161. ],
  3162. "resolve_timeout": 600,
  3163. "jetify": false,
  3164. "jetify_include_list": [
  3165. "*"
  3166. ],
  3167. "use_starlark_android_rules": false,
  3168. "aar_import_bzl_label": "@build_bazel_rules_android//android:rules.bzl",
  3169. "duplicate_version_warning": "warn"
  3170. }
  3171. },
  3172. "software_amazon_awssdk_aws_xml_protocol_2_17_183": {
  3173. "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl",
  3174. "ruleClassName": "http_file",
  3175. "attributes": {
  3176. "name": "rules_jvm_external~4.4.2~maven~software_amazon_awssdk_aws_xml_protocol_2_17_183",
  3177. "sha256": "566bba05d49256fa6994efd68fa625ae05a62ea45ee74bb9130d20ea20988363",
  3178. "urls": [
  3179. "https://repo1.maven.org/maven2/software/amazon/awssdk/aws-xml-protocol/2.17.183/aws-xml-protocol-2.17.183.jar",
  3180. "https://maven.google.com/software/amazon/awssdk/aws-xml-protocol/2.17.183/aws-xml-protocol-2.17.183.jar"
  3181. ],
  3182. "downloaded_file_path": "v1/https/repo1.maven.org/maven2/software/amazon/awssdk/aws-xml-protocol/2.17.183/aws-xml-protocol-2.17.183.jar"
  3183. }
  3184. },
  3185. "software_amazon_awssdk_annotations_2_17_183": {
  3186. "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl",
  3187. "ruleClassName": "http_file",
  3188. "attributes": {
  3189. "name": "rules_jvm_external~4.4.2~maven~software_amazon_awssdk_annotations_2_17_183",
  3190. "sha256": "8e4d72361ca805a0bd8bbd9017cd7ff77c8d170f2dd469c7d52d5653330bb3fd",
  3191. "urls": [
  3192. "https://repo1.maven.org/maven2/software/amazon/awssdk/annotations/2.17.183/annotations-2.17.183.jar",
  3193. "https://maven.google.com/software/amazon/awssdk/annotations/2.17.183/annotations-2.17.183.jar"
  3194. ],
  3195. "downloaded_file_path": "v1/https/repo1.maven.org/maven2/software/amazon/awssdk/annotations/2.17.183/annotations-2.17.183.jar"
  3196. }
  3197. },
  3198. "software_amazon_awssdk_netty_nio_client_2_17_183": {
  3199. "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl",
  3200. "ruleClassName": "http_file",
  3201. "attributes": {
  3202. "name": "rules_jvm_external~4.4.2~maven~software_amazon_awssdk_netty_nio_client_2_17_183",
  3203. "sha256": "a6d356f364c56d7b90006b0b7e503b8630010993a5587ce42e74b10b8dca2238",
  3204. "urls": [
  3205. "https://repo1.maven.org/maven2/software/amazon/awssdk/netty-nio-client/2.17.183/netty-nio-client-2.17.183.jar",
  3206. "https://maven.google.com/software/amazon/awssdk/netty-nio-client/2.17.183/netty-nio-client-2.17.183.jar"
  3207. ],
  3208. "downloaded_file_path": "v1/https/repo1.maven.org/maven2/software/amazon/awssdk/netty-nio-client/2.17.183/netty-nio-client-2.17.183.jar"
  3209. }
  3210. },
  3211. "com_google_auto_value_auto_value_annotations_1_7_4": {
  3212. "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl",
  3213. "ruleClassName": "http_file",
  3214. "attributes": {
  3215. "name": "rules_jvm_external~4.4.2~maven~com_google_auto_value_auto_value_annotations_1_7_4",
  3216. "sha256": "fedd59b0b4986c342f6ab2d182f2a4ee9fceb2c7e2d5bdc4dc764c92394a23d3",
  3217. "urls": [
  3218. "https://repo1.maven.org/maven2/com/google/auto/value/auto-value-annotations/1.7.4/auto-value-annotations-1.7.4.jar",
  3219. "https://maven.google.com/com/google/auto/value/auto-value-annotations/1.7.4/auto-value-annotations-1.7.4.jar"
  3220. ],
  3221. "downloaded_file_path": "v1/https/repo1.maven.org/maven2/com/google/auto/value/auto-value-annotations/1.7.4/auto-value-annotations-1.7.4.jar"
  3222. }
  3223. },
  3224. "io_netty_netty_transport_native_unix_common_4_1_72_Final": {
  3225. "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl",
  3226. "ruleClassName": "http_file",
  3227. "attributes": {
  3228. "name": "rules_jvm_external~4.4.2~maven~io_netty_netty_transport_native_unix_common_4_1_72_Final",
  3229. "sha256": "6f8f1cc29b5a234eeee9439a63eb3f03a5994aa540ff555cb0b2c88cefaf6877",
  3230. "urls": [
  3231. "https://repo1.maven.org/maven2/io/netty/netty-transport-native-unix-common/4.1.72.Final/netty-transport-native-unix-common-4.1.72.Final.jar",
  3232. "https://maven.google.com/io/netty/netty-transport-native-unix-common/4.1.72.Final/netty-transport-native-unix-common-4.1.72.Final.jar"
  3233. ],
  3234. "downloaded_file_path": "v1/https/repo1.maven.org/maven2/io/netty/netty-transport-native-unix-common/4.1.72.Final/netty-transport-native-unix-common-4.1.72.Final.jar"
  3235. }
  3236. },
  3237. "io_opencensus_opencensus_contrib_http_util_0_24_0": {
  3238. "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl",
  3239. "ruleClassName": "http_file",
  3240. "attributes": {
  3241. "name": "rules_jvm_external~4.4.2~maven~io_opencensus_opencensus_contrib_http_util_0_24_0",
  3242. "sha256": "7155273bbb1ed3d477ea33cf19d7bbc0b285ff395f43b29ae576722cf247000f",
  3243. "urls": [
  3244. "https://repo1.maven.org/maven2/io/opencensus/opencensus-contrib-http-util/0.24.0/opencensus-contrib-http-util-0.24.0.jar",
  3245. "https://maven.google.com/io/opencensus/opencensus-contrib-http-util/0.24.0/opencensus-contrib-http-util-0.24.0.jar"
  3246. ],
  3247. "downloaded_file_path": "v1/https/repo1.maven.org/maven2/io/opencensus/opencensus-contrib-http-util/0.24.0/opencensus-contrib-http-util-0.24.0.jar"
  3248. }
  3249. },
  3250. "com_fasterxml_jackson_core_jackson_core_2_11_3": {
  3251. "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl",
  3252. "ruleClassName": "http_file",
  3253. "attributes": {
  3254. "name": "rules_jvm_external~4.4.2~maven~com_fasterxml_jackson_core_jackson_core_2_11_3",
  3255. "sha256": "78cd0a6b936232e06dd3e38da8a0345348a09cd1ff9c4d844c6ee72c75cfc402",
  3256. "urls": [
  3257. "https://repo1.maven.org/maven2/com/fasterxml/jackson/core/jackson-core/2.11.3/jackson-core-2.11.3.jar",
  3258. "https://maven.google.com/com/fasterxml/jackson/core/jackson-core/2.11.3/jackson-core-2.11.3.jar"
  3259. ],
  3260. "downloaded_file_path": "v1/https/repo1.maven.org/maven2/com/fasterxml/jackson/core/jackson-core/2.11.3/jackson-core-2.11.3.jar"
  3261. }
  3262. },
  3263. "com_google_cloud_google_cloud_core_1_93_10": {
  3264. "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl",
  3265. "ruleClassName": "http_file",
  3266. "attributes": {
  3267. "name": "rules_jvm_external~4.4.2~maven~com_google_cloud_google_cloud_core_1_93_10",
  3268. "sha256": "832d74eca66f4601e162a8460d6f59f50d1d23f93c18b02654423b6b0d67c6ea",
  3269. "urls": [
  3270. "https://repo1.maven.org/maven2/com/google/cloud/google-cloud-core/1.93.10/google-cloud-core-1.93.10.jar",
  3271. "https://maven.google.com/com/google/cloud/google-cloud-core/1.93.10/google-cloud-core-1.93.10.jar"
  3272. ],
  3273. "downloaded_file_path": "v1/https/repo1.maven.org/maven2/com/google/cloud/google-cloud-core/1.93.10/google-cloud-core-1.93.10.jar"
  3274. }
  3275. },
  3276. "com_google_auth_google_auth_library_credentials_0_22_0": {
  3277. "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl",
  3278. "ruleClassName": "http_file",
  3279. "attributes": {
  3280. "name": "rules_jvm_external~4.4.2~maven~com_google_auth_google_auth_library_credentials_0_22_0",
  3281. "sha256": "42c76031276de5b520909e9faf88c5b3c9a722d69ee9cfdafedb1c52c355dfc5",
  3282. "urls": [
  3283. "https://repo1.maven.org/maven2/com/google/auth/google-auth-library-credentials/0.22.0/google-auth-library-credentials-0.22.0.jar",
  3284. "https://maven.google.com/com/google/auth/google-auth-library-credentials/0.22.0/google-auth-library-credentials-0.22.0.jar"
  3285. ],
  3286. "downloaded_file_path": "v1/https/repo1.maven.org/maven2/com/google/auth/google-auth-library-credentials/0.22.0/google-auth-library-credentials-0.22.0.jar"
  3287. }
  3288. },
  3289. "com_google_guava_guava_30_0_android": {
  3290. "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl",
  3291. "ruleClassName": "http_file",
  3292. "attributes": {
  3293. "name": "rules_jvm_external~4.4.2~maven~com_google_guava_guava_30_0_android",
  3294. "sha256": "3345c82c2cc70a0053e8db9031edc6d71625ef0dea6a2c8f5ebd6cb76d2bf843",
  3295. "urls": [
  3296. "https://repo1.maven.org/maven2/com/google/guava/guava/30.0-android/guava-30.0-android.jar",
  3297. "https://maven.google.com/com/google/guava/guava/30.0-android/guava-30.0-android.jar"
  3298. ],
  3299. "downloaded_file_path": "v1/https/repo1.maven.org/maven2/com/google/guava/guava/30.0-android/guava-30.0-android.jar"
  3300. }
  3301. },
  3302. "software_amazon_awssdk_profiles_2_17_183": {
  3303. "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl",
  3304. "ruleClassName": "http_file",
  3305. "attributes": {
  3306. "name": "rules_jvm_external~4.4.2~maven~software_amazon_awssdk_profiles_2_17_183",
  3307. "sha256": "78833b32fde3f1c5320373b9ea955c1bbc28f2c904010791c4784e610193ee56",
  3308. "urls": [
  3309. "https://repo1.maven.org/maven2/software/amazon/awssdk/profiles/2.17.183/profiles-2.17.183.jar",
  3310. "https://maven.google.com/software/amazon/awssdk/profiles/2.17.183/profiles-2.17.183.jar"
  3311. ],
  3312. "downloaded_file_path": "v1/https/repo1.maven.org/maven2/software/amazon/awssdk/profiles/2.17.183/profiles-2.17.183.jar"
  3313. }
  3314. },
  3315. "org_apache_httpcomponents_httpcore_4_4_13": {
  3316. "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl",
  3317. "ruleClassName": "http_file",
  3318. "attributes": {
  3319. "name": "rules_jvm_external~4.4.2~maven~org_apache_httpcomponents_httpcore_4_4_13",
  3320. "sha256": "e06e89d40943245fcfa39ec537cdbfce3762aecde8f9c597780d2b00c2b43424",
  3321. "urls": [
  3322. "https://repo1.maven.org/maven2/org/apache/httpcomponents/httpcore/4.4.13/httpcore-4.4.13.jar",
  3323. "https://maven.google.com/org/apache/httpcomponents/httpcore/4.4.13/httpcore-4.4.13.jar"
  3324. ],
  3325. "downloaded_file_path": "v1/https/repo1.maven.org/maven2/org/apache/httpcomponents/httpcore/4.4.13/httpcore-4.4.13.jar"
  3326. }
  3327. },
  3328. "io_netty_netty_common_4_1_72_Final": {
  3329. "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl",
  3330. "ruleClassName": "http_file",
  3331. "attributes": {
  3332. "name": "rules_jvm_external~4.4.2~maven~io_netty_netty_common_4_1_72_Final",
  3333. "sha256": "8adb4c291260ceb2859a68c49f0adeed36bf49587608e2b81ecff6aaf06025e9",
  3334. "urls": [
  3335. "https://repo1.maven.org/maven2/io/netty/netty-common/4.1.72.Final/netty-common-4.1.72.Final.jar",
  3336. "https://maven.google.com/io/netty/netty-common/4.1.72.Final/netty-common-4.1.72.Final.jar"
  3337. ],
  3338. "downloaded_file_path": "v1/https/repo1.maven.org/maven2/io/netty/netty-common/4.1.72.Final/netty-common-4.1.72.Final.jar"
  3339. }
  3340. },
  3341. "io_netty_netty_transport_classes_epoll_4_1_72_Final": {
  3342. "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl",
  3343. "ruleClassName": "http_file",
  3344. "attributes": {
  3345. "name": "rules_jvm_external~4.4.2~maven~io_netty_netty_transport_classes_epoll_4_1_72_Final",
  3346. "sha256": "e1528a9751c1285aa7beaf3a1eb0597151716426ce38598ac9bc0891209b9e68",
  3347. "urls": [
  3348. "https://repo1.maven.org/maven2/io/netty/netty-transport-classes-epoll/4.1.72.Final/netty-transport-classes-epoll-4.1.72.Final.jar",
  3349. "https://maven.google.com/io/netty/netty-transport-classes-epoll/4.1.72.Final/netty-transport-classes-epoll-4.1.72.Final.jar"
  3350. ],
  3351. "downloaded_file_path": "v1/https/repo1.maven.org/maven2/io/netty/netty-transport-classes-epoll/4.1.72.Final/netty-transport-classes-epoll-4.1.72.Final.jar"
  3352. }
  3353. },
  3354. "com_google_cloud_google_cloud_core_http_1_93_10": {
  3355. "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl",
  3356. "ruleClassName": "http_file",
  3357. "attributes": {
  3358. "name": "rules_jvm_external~4.4.2~maven~com_google_cloud_google_cloud_core_http_1_93_10",
  3359. "sha256": "81ac67c14c7c4244d2b7db2607ad352416aca8d3bb2adf338964e8fea25b1b3c",
  3360. "urls": [
  3361. "https://repo1.maven.org/maven2/com/google/cloud/google-cloud-core-http/1.93.10/google-cloud-core-http-1.93.10.jar",
  3362. "https://maven.google.com/com/google/cloud/google-cloud-core-http/1.93.10/google-cloud-core-http-1.93.10.jar"
  3363. ],
  3364. "downloaded_file_path": "v1/https/repo1.maven.org/maven2/com/google/cloud/google-cloud-core-http/1.93.10/google-cloud-core-http-1.93.10.jar"
  3365. }
  3366. },
  3367. "software_amazon_awssdk_utils_2_17_183": {
  3368. "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl",
  3369. "ruleClassName": "http_file",
  3370. "attributes": {
  3371. "name": "rules_jvm_external~4.4.2~maven~software_amazon_awssdk_utils_2_17_183",
  3372. "sha256": "7bd849bb5aa71bfdf6b849643736ecab3a7b3f204795804eefe5754104231ec6",
  3373. "urls": [
  3374. "https://repo1.maven.org/maven2/software/amazon/awssdk/utils/2.17.183/utils-2.17.183.jar",
  3375. "https://maven.google.com/software/amazon/awssdk/utils/2.17.183/utils-2.17.183.jar"
  3376. ],
  3377. "downloaded_file_path": "v1/https/repo1.maven.org/maven2/software/amazon/awssdk/utils/2.17.183/utils-2.17.183.jar"
  3378. }
  3379. },
  3380. "org_apache_commons_commons_lang3_3_8_1": {
  3381. "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl",
  3382. "ruleClassName": "http_file",
  3383. "attributes": {
  3384. "name": "rules_jvm_external~4.4.2~maven~org_apache_commons_commons_lang3_3_8_1",
  3385. "sha256": "dac807f65b07698ff39b1b07bfef3d87ae3fd46d91bbf8a2bc02b2a831616f68",
  3386. "urls": [
  3387. "https://repo1.maven.org/maven2/org/apache/commons/commons-lang3/3.8.1/commons-lang3-3.8.1.jar",
  3388. "https://maven.google.com/org/apache/commons/commons-lang3/3.8.1/commons-lang3-3.8.1.jar"
  3389. ],
  3390. "downloaded_file_path": "v1/https/repo1.maven.org/maven2/org/apache/commons/commons-lang3/3.8.1/commons-lang3-3.8.1.jar"
  3391. }
  3392. },
  3393. "software_amazon_awssdk_aws_core_2_17_183": {
  3394. "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl",
  3395. "ruleClassName": "http_file",
  3396. "attributes": {
  3397. "name": "rules_jvm_external~4.4.2~maven~software_amazon_awssdk_aws_core_2_17_183",
  3398. "sha256": "bccbdbea689a665a702ff19828662d87fb7fe81529df13f02ef1e4c474ea9f93",
  3399. "urls": [
  3400. "https://repo1.maven.org/maven2/software/amazon/awssdk/aws-core/2.17.183/aws-core-2.17.183.jar",
  3401. "https://maven.google.com/software/amazon/awssdk/aws-core/2.17.183/aws-core-2.17.183.jar"
  3402. ],
  3403. "downloaded_file_path": "v1/https/repo1.maven.org/maven2/software/amazon/awssdk/aws-core/2.17.183/aws-core-2.17.183.jar"
  3404. }
  3405. },
  3406. "com_google_api_gax_httpjson_0_77_0": {
  3407. "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl",
  3408. "ruleClassName": "http_file",
  3409. "attributes": {
  3410. "name": "rules_jvm_external~4.4.2~maven~com_google_api_gax_httpjson_0_77_0",
  3411. "sha256": "fd4dae47fa016d3b26e8d90b67ddc6c23c4c06e8bcdf085c70310ab7ef324bd6",
  3412. "urls": [
  3413. "https://repo1.maven.org/maven2/com/google/api/gax-httpjson/0.77.0/gax-httpjson-0.77.0.jar",
  3414. "https://maven.google.com/com/google/api/gax-httpjson/0.77.0/gax-httpjson-0.77.0.jar"
  3415. ],
  3416. "downloaded_file_path": "v1/https/repo1.maven.org/maven2/com/google/api/gax-httpjson/0.77.0/gax-httpjson-0.77.0.jar"
  3417. }
  3418. },
  3419. "unpinned_rules_jvm_external_deps": {
  3420. "bzlFile": "@@rules_jvm_external~4.4.2//:coursier.bzl",
  3421. "ruleClassName": "coursier_fetch",
  3422. "attributes": {
  3423. "name": "rules_jvm_external~4.4.2~maven~unpinned_rules_jvm_external_deps",
  3424. "repositories": [
  3425. "{ \"repo_url\": \"https://repo1.maven.org/maven2\" }"
  3426. ],
  3427. "artifacts": [
  3428. "{\"artifact\":\"google-cloud-core\",\"group\":\"com.google.cloud\",\"version\":\"1.93.10\"}",
  3429. "{\"artifact\":\"google-cloud-storage\",\"group\":\"com.google.cloud\",\"version\":\"1.113.4\"}",
  3430. "{\"artifact\":\"gson\",\"group\":\"com.google.code.gson\",\"version\":\"2.9.0\"}",
  3431. "{\"artifact\":\"maven-artifact\",\"group\":\"org.apache.maven\",\"version\":\"3.8.6\"}",
  3432. "{\"artifact\":\"s3\",\"group\":\"software.amazon.awssdk\",\"version\":\"2.17.183\"}"
  3433. ],
  3434. "fail_on_missing_checksum": true,
  3435. "fetch_sources": true,
  3436. "fetch_javadoc": false,
  3437. "use_unsafe_shared_cache": false,
  3438. "excluded_artifacts": [],
  3439. "generate_compat_repositories": false,
  3440. "version_conflict_policy": "default",
  3441. "override_targets": {},
  3442. "strict_visibility": false,
  3443. "strict_visibility_value": [
  3444. "@@//visibility:private"
  3445. ],
  3446. "maven_install_json": "@@rules_jvm_external~4.4.2//:rules_jvm_external_deps_install.json",
  3447. "resolve_timeout": 600,
  3448. "jetify": false,
  3449. "jetify_include_list": [
  3450. "*"
  3451. ],
  3452. "use_starlark_android_rules": false,
  3453. "aar_import_bzl_label": "@build_bazel_rules_android//android:rules.bzl",
  3454. "duplicate_version_warning": "warn"
  3455. }
  3456. },
  3457. "software_amazon_awssdk_regions_2_17_183": {
  3458. "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl",
  3459. "ruleClassName": "http_file",
  3460. "attributes": {
  3461. "name": "rules_jvm_external~4.4.2~maven~software_amazon_awssdk_regions_2_17_183",
  3462. "sha256": "d3079395f3ffc07d04ffcce16fca29fb5968197f6e9ea3dbff6be297102b40a5",
  3463. "urls": [
  3464. "https://repo1.maven.org/maven2/software/amazon/awssdk/regions/2.17.183/regions-2.17.183.jar",
  3465. "https://maven.google.com/software/amazon/awssdk/regions/2.17.183/regions-2.17.183.jar"
  3466. ],
  3467. "downloaded_file_path": "v1/https/repo1.maven.org/maven2/software/amazon/awssdk/regions/2.17.183/regions-2.17.183.jar"
  3468. }
  3469. },
  3470. "com_google_errorprone_error_prone_annotations_2_4_0": {
  3471. "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl",
  3472. "ruleClassName": "http_file",
  3473. "attributes": {
  3474. "name": "rules_jvm_external~4.4.2~maven~com_google_errorprone_error_prone_annotations_2_4_0",
  3475. "sha256": "5f2a0648230a662e8be049df308d583d7369f13af683e44ddf5829b6d741a228",
  3476. "urls": [
  3477. "https://repo1.maven.org/maven2/com/google/errorprone/error_prone_annotations/2.4.0/error_prone_annotations-2.4.0.jar",
  3478. "https://maven.google.com/com/google/errorprone/error_prone_annotations/2.4.0/error_prone_annotations-2.4.0.jar"
  3479. ],
  3480. "downloaded_file_path": "v1/https/repo1.maven.org/maven2/com/google/errorprone/error_prone_annotations/2.4.0/error_prone_annotations-2.4.0.jar"
  3481. }
  3482. },
  3483. "io_netty_netty_handler_4_1_72_Final": {
  3484. "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl",
  3485. "ruleClassName": "http_file",
  3486. "attributes": {
  3487. "name": "rules_jvm_external~4.4.2~maven~io_netty_netty_handler_4_1_72_Final",
  3488. "sha256": "9cb6012af7e06361d738ac4e3bdc49a158f8cf87d9dee0f2744056b7d99c28d5",
  3489. "urls": [
  3490. "https://repo1.maven.org/maven2/io/netty/netty-handler/4.1.72.Final/netty-handler-4.1.72.Final.jar",
  3491. "https://maven.google.com/io/netty/netty-handler/4.1.72.Final/netty-handler-4.1.72.Final.jar"
  3492. ],
  3493. "downloaded_file_path": "v1/https/repo1.maven.org/maven2/io/netty/netty-handler/4.1.72.Final/netty-handler-4.1.72.Final.jar"
  3494. }
  3495. },
  3496. "software_amazon_awssdk_aws_query_protocol_2_17_183": {
  3497. "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl",
  3498. "ruleClassName": "http_file",
  3499. "attributes": {
  3500. "name": "rules_jvm_external~4.4.2~maven~software_amazon_awssdk_aws_query_protocol_2_17_183",
  3501. "sha256": "4dace03c76f80f3dec920cb3dedb2a95984c4366ef4fda728660cb90bed74848",
  3502. "urls": [
  3503. "https://repo1.maven.org/maven2/software/amazon/awssdk/aws-query-protocol/2.17.183/aws-query-protocol-2.17.183.jar",
  3504. "https://maven.google.com/software/amazon/awssdk/aws-query-protocol/2.17.183/aws-query-protocol-2.17.183.jar"
  3505. ],
  3506. "downloaded_file_path": "v1/https/repo1.maven.org/maven2/software/amazon/awssdk/aws-query-protocol/2.17.183/aws-query-protocol-2.17.183.jar"
  3507. }
  3508. },
  3509. "io_netty_netty_codec_http_4_1_72_Final": {
  3510. "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl",
  3511. "ruleClassName": "http_file",
  3512. "attributes": {
  3513. "name": "rules_jvm_external~4.4.2~maven~io_netty_netty_codec_http_4_1_72_Final",
  3514. "sha256": "fa6fec88010bfaf6a7415b5364671b6b18ffb6b35a986ab97b423fd8c3a0174b",
  3515. "urls": [
  3516. "https://repo1.maven.org/maven2/io/netty/netty-codec-http/4.1.72.Final/netty-codec-http-4.1.72.Final.jar",
  3517. "https://maven.google.com/io/netty/netty-codec-http/4.1.72.Final/netty-codec-http-4.1.72.Final.jar"
  3518. ],
  3519. "downloaded_file_path": "v1/https/repo1.maven.org/maven2/io/netty/netty-codec-http/4.1.72.Final/netty-codec-http-4.1.72.Final.jar"
  3520. }
  3521. },
  3522. "io_netty_netty_resolver_4_1_72_Final": {
  3523. "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl",
  3524. "ruleClassName": "http_file",
  3525. "attributes": {
  3526. "name": "rules_jvm_external~4.4.2~maven~io_netty_netty_resolver_4_1_72_Final",
  3527. "sha256": "6474598aab7cc9d8d6cfa06c05bd1b19adbf7f8451dbdd73070b33a6c60b1b90",
  3528. "urls": [
  3529. "https://repo1.maven.org/maven2/io/netty/netty-resolver/4.1.72.Final/netty-resolver-4.1.72.Final.jar",
  3530. "https://maven.google.com/io/netty/netty-resolver/4.1.72.Final/netty-resolver-4.1.72.Final.jar"
  3531. ],
  3532. "downloaded_file_path": "v1/https/repo1.maven.org/maven2/io/netty/netty-resolver/4.1.72.Final/netty-resolver-4.1.72.Final.jar"
  3533. }
  3534. },
  3535. "software_amazon_awssdk_protocol_core_2_17_183": {
  3536. "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl",
  3537. "ruleClassName": "http_file",
  3538. "attributes": {
  3539. "name": "rules_jvm_external~4.4.2~maven~software_amazon_awssdk_protocol_core_2_17_183",
  3540. "sha256": "10e7c4faa1f05e2d73055d0390dbd0bb6450e2e6cb85beda051b1e4693c826ce",
  3541. "urls": [
  3542. "https://repo1.maven.org/maven2/software/amazon/awssdk/protocol-core/2.17.183/protocol-core-2.17.183.jar",
  3543. "https://maven.google.com/software/amazon/awssdk/protocol-core/2.17.183/protocol-core-2.17.183.jar"
  3544. ],
  3545. "downloaded_file_path": "v1/https/repo1.maven.org/maven2/software/amazon/awssdk/protocol-core/2.17.183/protocol-core-2.17.183.jar"
  3546. }
  3547. },
  3548. "org_checkerframework_checker_compat_qual_2_5_5": {
  3549. "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl",
  3550. "ruleClassName": "http_file",
  3551. "attributes": {
  3552. "name": "rules_jvm_external~4.4.2~maven~org_checkerframework_checker_compat_qual_2_5_5",
  3553. "sha256": "11d134b245e9cacc474514d2d66b5b8618f8039a1465cdc55bbc0b34e0008b7a",
  3554. "urls": [
  3555. "https://repo1.maven.org/maven2/org/checkerframework/checker-compat-qual/2.5.5/checker-compat-qual-2.5.5.jar",
  3556. "https://maven.google.com/org/checkerframework/checker-compat-qual/2.5.5/checker-compat-qual-2.5.5.jar"
  3557. ],
  3558. "downloaded_file_path": "v1/https/repo1.maven.org/maven2/org/checkerframework/checker-compat-qual/2.5.5/checker-compat-qual-2.5.5.jar"
  3559. }
  3560. },
  3561. "com_google_apis_google_api_services_storage_v1_rev20200927_1_30_10": {
  3562. "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl",
  3563. "ruleClassName": "http_file",
  3564. "attributes": {
  3565. "name": "rules_jvm_external~4.4.2~maven~com_google_apis_google_api_services_storage_v1_rev20200927_1_30_10",
  3566. "sha256": "52d26a9d105f8d8a0850807285f307a76cea8f3e0cdb2be4d3b15b1adfa77351",
  3567. "urls": [
  3568. "https://repo1.maven.org/maven2/com/google/apis/google-api-services-storage/v1-rev20200927-1.30.10/google-api-services-storage-v1-rev20200927-1.30.10.jar",
  3569. "https://maven.google.com/com/google/apis/google-api-services-storage/v1-rev20200927-1.30.10/google-api-services-storage-v1-rev20200927-1.30.10.jar"
  3570. ],
  3571. "downloaded_file_path": "v1/https/repo1.maven.org/maven2/com/google/apis/google-api-services-storage/v1-rev20200927-1.30.10/google-api-services-storage-v1-rev20200927-1.30.10.jar"
  3572. }
  3573. },
  3574. "com_google_api_client_google_api_client_1_30_11": {
  3575. "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl",
  3576. "ruleClassName": "http_file",
  3577. "attributes": {
  3578. "name": "rules_jvm_external~4.4.2~maven~com_google_api_client_google_api_client_1_30_11",
  3579. "sha256": "ee6f97865cc7de6c7c80955c3f37372cf3887bd75e4fc06f1058a6b4cd9bf4da",
  3580. "urls": [
  3581. "https://repo1.maven.org/maven2/com/google/api-client/google-api-client/1.30.11/google-api-client-1.30.11.jar",
  3582. "https://maven.google.com/com/google/api-client/google-api-client/1.30.11/google-api-client-1.30.11.jar"
  3583. ],
  3584. "downloaded_file_path": "v1/https/repo1.maven.org/maven2/com/google/api-client/google-api-client/1.30.11/google-api-client-1.30.11.jar"
  3585. }
  3586. },
  3587. "software_amazon_awssdk_s3_2_17_183": {
  3588. "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl",
  3589. "ruleClassName": "http_file",
  3590. "attributes": {
  3591. "name": "rules_jvm_external~4.4.2~maven~software_amazon_awssdk_s3_2_17_183",
  3592. "sha256": "ab073b91107a9e4ed9f030314077d137fe627e055ad895fabb036980a050e360",
  3593. "urls": [
  3594. "https://repo1.maven.org/maven2/software/amazon/awssdk/s3/2.17.183/s3-2.17.183.jar",
  3595. "https://maven.google.com/software/amazon/awssdk/s3/2.17.183/s3-2.17.183.jar"
  3596. ],
  3597. "downloaded_file_path": "v1/https/repo1.maven.org/maven2/software/amazon/awssdk/s3/2.17.183/s3-2.17.183.jar"
  3598. }
  3599. },
  3600. "org_apache_maven_maven_artifact_3_8_6": {
  3601. "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl",
  3602. "ruleClassName": "http_file",
  3603. "attributes": {
  3604. "name": "rules_jvm_external~4.4.2~maven~org_apache_maven_maven_artifact_3_8_6",
  3605. "sha256": "de22a4c6f54fe31276a823b1bbd3adfd6823529e732f431b5eff0852c2b9252b",
  3606. "urls": [
  3607. "https://repo1.maven.org/maven2/org/apache/maven/maven-artifact/3.8.6/maven-artifact-3.8.6.jar",
  3608. "https://maven.google.com/org/apache/maven/maven-artifact/3.8.6/maven-artifact-3.8.6.jar"
  3609. ],
  3610. "downloaded_file_path": "v1/https/repo1.maven.org/maven2/org/apache/maven/maven-artifact/3.8.6/maven-artifact-3.8.6.jar"
  3611. }
  3612. },
  3613. "org_apache_httpcomponents_httpclient_4_5_13": {
  3614. "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl",
  3615. "ruleClassName": "http_file",
  3616. "attributes": {
  3617. "name": "rules_jvm_external~4.4.2~maven~org_apache_httpcomponents_httpclient_4_5_13",
  3618. "sha256": "6fe9026a566c6a5001608cf3fc32196641f6c1e5e1986d1037ccdbd5f31ef743",
  3619. "urls": [
  3620. "https://repo1.maven.org/maven2/org/apache/httpcomponents/httpclient/4.5.13/httpclient-4.5.13.jar",
  3621. "https://maven.google.com/org/apache/httpcomponents/httpclient/4.5.13/httpclient-4.5.13.jar"
  3622. ],
  3623. "downloaded_file_path": "v1/https/repo1.maven.org/maven2/org/apache/httpcomponents/httpclient/4.5.13/httpclient-4.5.13.jar"
  3624. }
  3625. },
  3626. "com_google_guava_listenablefuture_9999_0_empty_to_avoid_conflict_with_guava": {
  3627. "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl",
  3628. "ruleClassName": "http_file",
  3629. "attributes": {
  3630. "name": "rules_jvm_external~4.4.2~maven~com_google_guava_listenablefuture_9999_0_empty_to_avoid_conflict_with_guava",
  3631. "sha256": "b372a037d4230aa57fbeffdef30fd6123f9c0c2db85d0aced00c91b974f33f99",
  3632. "urls": [
  3633. "https://repo1.maven.org/maven2/com/google/guava/listenablefuture/9999.0-empty-to-avoid-conflict-with-guava/listenablefuture-9999.0-empty-to-avoid-conflict-with-guava.jar",
  3634. "https://maven.google.com/com/google/guava/listenablefuture/9999.0-empty-to-avoid-conflict-with-guava/listenablefuture-9999.0-empty-to-avoid-conflict-with-guava.jar"
  3635. ],
  3636. "downloaded_file_path": "v1/https/repo1.maven.org/maven2/com/google/guava/listenablefuture/9999.0-empty-to-avoid-conflict-with-guava/listenablefuture-9999.0-empty-to-avoid-conflict-with-guava.jar"
  3637. }
  3638. },
  3639. "com_google_http_client_google_http_client_1_38_0": {
  3640. "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl",
  3641. "ruleClassName": "http_file",
  3642. "attributes": {
  3643. "name": "rules_jvm_external~4.4.2~maven~com_google_http_client_google_http_client_1_38_0",
  3644. "sha256": "411f4a42519b6b78bdc0fcfdf74c9edcef0ee97afa4a667abe04045a508d6302",
  3645. "urls": [
  3646. "https://repo1.maven.org/maven2/com/google/http-client/google-http-client/1.38.0/google-http-client-1.38.0.jar",
  3647. "https://maven.google.com/com/google/http-client/google-http-client/1.38.0/google-http-client-1.38.0.jar"
  3648. ],
  3649. "downloaded_file_path": "v1/https/repo1.maven.org/maven2/com/google/http-client/google-http-client/1.38.0/google-http-client-1.38.0.jar"
  3650. }
  3651. },
  3652. "software_amazon_awssdk_apache_client_2_17_183": {
  3653. "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl",
  3654. "ruleClassName": "http_file",
  3655. "attributes": {
  3656. "name": "rules_jvm_external~4.4.2~maven~software_amazon_awssdk_apache_client_2_17_183",
  3657. "sha256": "78ceae502fce6a97bbe5ff8f6a010a52ab7ea3ae66cb1a4122e18185fce45022",
  3658. "urls": [
  3659. "https://repo1.maven.org/maven2/software/amazon/awssdk/apache-client/2.17.183/apache-client-2.17.183.jar",
  3660. "https://maven.google.com/software/amazon/awssdk/apache-client/2.17.183/apache-client-2.17.183.jar"
  3661. ],
  3662. "downloaded_file_path": "v1/https/repo1.maven.org/maven2/software/amazon/awssdk/apache-client/2.17.183/apache-client-2.17.183.jar"
  3663. }
  3664. },
  3665. "software_amazon_awssdk_arns_2_17_183": {
  3666. "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl",
  3667. "ruleClassName": "http_file",
  3668. "attributes": {
  3669. "name": "rules_jvm_external~4.4.2~maven~software_amazon_awssdk_arns_2_17_183",
  3670. "sha256": "659a185e191d66c71de81209490e66abeaccae208ea7b2831a738670823447aa",
  3671. "urls": [
  3672. "https://repo1.maven.org/maven2/software/amazon/awssdk/arns/2.17.183/arns-2.17.183.jar",
  3673. "https://maven.google.com/software/amazon/awssdk/arns/2.17.183/arns-2.17.183.jar"
  3674. ],
  3675. "downloaded_file_path": "v1/https/repo1.maven.org/maven2/software/amazon/awssdk/arns/2.17.183/arns-2.17.183.jar"
  3676. }
  3677. },
  3678. "com_google_code_gson_gson_2_9_0": {
  3679. "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl",
  3680. "ruleClassName": "http_file",
  3681. "attributes": {
  3682. "name": "rules_jvm_external~4.4.2~maven~com_google_code_gson_gson_2_9_0",
  3683. "sha256": "c96d60551331a196dac54b745aa642cd078ef89b6f267146b705f2c2cbef052d",
  3684. "urls": [
  3685. "https://repo1.maven.org/maven2/com/google/code/gson/gson/2.9.0/gson-2.9.0.jar",
  3686. "https://maven.google.com/com/google/code/gson/gson/2.9.0/gson-2.9.0.jar"
  3687. ],
  3688. "downloaded_file_path": "v1/https/repo1.maven.org/maven2/com/google/code/gson/gson/2.9.0/gson-2.9.0.jar"
  3689. }
  3690. },
  3691. "io_netty_netty_buffer_4_1_72_Final": {
  3692. "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl",
  3693. "ruleClassName": "http_file",
  3694. "attributes": {
  3695. "name": "rules_jvm_external~4.4.2~maven~io_netty_netty_buffer_4_1_72_Final",
  3696. "sha256": "568ff7cd9d8e2284ec980730c88924f686642929f8f219a74518b4e64755f3a1",
  3697. "urls": [
  3698. "https://repo1.maven.org/maven2/io/netty/netty-buffer/4.1.72.Final/netty-buffer-4.1.72.Final.jar",
  3699. "https://maven.google.com/io/netty/netty-buffer/4.1.72.Final/netty-buffer-4.1.72.Final.jar"
  3700. ],
  3701. "downloaded_file_path": "v1/https/repo1.maven.org/maven2/io/netty/netty-buffer/4.1.72.Final/netty-buffer-4.1.72.Final.jar"
  3702. }
  3703. },
  3704. "com_google_code_findbugs_jsr305_3_0_2": {
  3705. "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl",
  3706. "ruleClassName": "http_file",
  3707. "attributes": {
  3708. "name": "rules_jvm_external~4.4.2~maven~com_google_code_findbugs_jsr305_3_0_2",
  3709. "sha256": "766ad2a0783f2687962c8ad74ceecc38a28b9f72a2d085ee438b7813e928d0c7",
  3710. "urls": [
  3711. "https://repo1.maven.org/maven2/com/google/code/findbugs/jsr305/3.0.2/jsr305-3.0.2.jar",
  3712. "https://maven.google.com/com/google/code/findbugs/jsr305/3.0.2/jsr305-3.0.2.jar"
  3713. ],
  3714. "downloaded_file_path": "v1/https/repo1.maven.org/maven2/com/google/code/findbugs/jsr305/3.0.2/jsr305-3.0.2.jar"
  3715. }
  3716. },
  3717. "commons_codec_commons_codec_1_11": {
  3718. "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl",
  3719. "ruleClassName": "http_file",
  3720. "attributes": {
  3721. "name": "rules_jvm_external~4.4.2~maven~commons_codec_commons_codec_1_11",
  3722. "sha256": "e599d5318e97aa48f42136a2927e6dfa4e8881dff0e6c8e3109ddbbff51d7b7d",
  3723. "urls": [
  3724. "https://repo1.maven.org/maven2/commons-codec/commons-codec/1.11/commons-codec-1.11.jar",
  3725. "https://maven.google.com/commons-codec/commons-codec/1.11/commons-codec-1.11.jar"
  3726. ],
  3727. "downloaded_file_path": "v1/https/repo1.maven.org/maven2/commons-codec/commons-codec/1.11/commons-codec-1.11.jar"
  3728. }
  3729. },
  3730. "software_amazon_awssdk_auth_2_17_183": {
  3731. "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl",
  3732. "ruleClassName": "http_file",
  3733. "attributes": {
  3734. "name": "rules_jvm_external~4.4.2~maven~software_amazon_awssdk_auth_2_17_183",
  3735. "sha256": "8820c6636e5c14efc29399fb5565ce50212b0c1f4ed720a025a2c402d54e0978",
  3736. "urls": [
  3737. "https://repo1.maven.org/maven2/software/amazon/awssdk/auth/2.17.183/auth-2.17.183.jar",
  3738. "https://maven.google.com/software/amazon/awssdk/auth/2.17.183/auth-2.17.183.jar"
  3739. ],
  3740. "downloaded_file_path": "v1/https/repo1.maven.org/maven2/software/amazon/awssdk/auth/2.17.183/auth-2.17.183.jar"
  3741. }
  3742. },
  3743. "software_amazon_awssdk_json_utils_2_17_183": {
  3744. "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl",
  3745. "ruleClassName": "http_file",
  3746. "attributes": {
  3747. "name": "rules_jvm_external~4.4.2~maven~software_amazon_awssdk_json_utils_2_17_183",
  3748. "sha256": "51ab7f550adc06afcb49f5270cdf690f1bfaaee243abaa5d978095e2a1e4e1a5",
  3749. "urls": [
  3750. "https://repo1.maven.org/maven2/software/amazon/awssdk/json-utils/2.17.183/json-utils-2.17.183.jar",
  3751. "https://maven.google.com/software/amazon/awssdk/json-utils/2.17.183/json-utils-2.17.183.jar"
  3752. ],
  3753. "downloaded_file_path": "v1/https/repo1.maven.org/maven2/software/amazon/awssdk/json-utils/2.17.183/json-utils-2.17.183.jar"
  3754. }
  3755. },
  3756. "org_codehaus_plexus_plexus_utils_3_3_1": {
  3757. "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl",
  3758. "ruleClassName": "http_file",
  3759. "attributes": {
  3760. "name": "rules_jvm_external~4.4.2~maven~org_codehaus_plexus_plexus_utils_3_3_1",
  3761. "sha256": "4b570fcdbe5a894f249d2eb9b929358a9c88c3e548d227a80010461930222f2a",
  3762. "urls": [
  3763. "https://repo1.maven.org/maven2/org/codehaus/plexus/plexus-utils/3.3.1/plexus-utils-3.3.1.jar",
  3764. "https://maven.google.com/org/codehaus/plexus/plexus-utils/3.3.1/plexus-utils-3.3.1.jar"
  3765. ],
  3766. "downloaded_file_path": "v1/https/repo1.maven.org/maven2/org/codehaus/plexus/plexus-utils/3.3.1/plexus-utils-3.3.1.jar"
  3767. }
  3768. },
  3769. "com_google_protobuf_protobuf_java_util_3_13_0": {
  3770. "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl",
  3771. "ruleClassName": "http_file",
  3772. "attributes": {
  3773. "name": "rules_jvm_external~4.4.2~maven~com_google_protobuf_protobuf_java_util_3_13_0",
  3774. "sha256": "d9de66b8c9445905dfa7064f6d5213d47ce88a20d34e21d83c4a94a229e14e62",
  3775. "urls": [
  3776. "https://repo1.maven.org/maven2/com/google/protobuf/protobuf-java-util/3.13.0/protobuf-java-util-3.13.0.jar",
  3777. "https://maven.google.com/com/google/protobuf/protobuf-java-util/3.13.0/protobuf-java-util-3.13.0.jar"
  3778. ],
  3779. "downloaded_file_path": "v1/https/repo1.maven.org/maven2/com/google/protobuf/protobuf-java-util/3.13.0/protobuf-java-util-3.13.0.jar"
  3780. }
  3781. },
  3782. "io_netty_netty_codec_4_1_72_Final": {
  3783. "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl",
  3784. "ruleClassName": "http_file",
  3785. "attributes": {
  3786. "name": "rules_jvm_external~4.4.2~maven~io_netty_netty_codec_4_1_72_Final",
  3787. "sha256": "5d8591ca271a1e9c224e8de3873aa9936acb581ee0db514e7dc18523df36d16c",
  3788. "urls": [
  3789. "https://repo1.maven.org/maven2/io/netty/netty-codec/4.1.72.Final/netty-codec-4.1.72.Final.jar",
  3790. "https://maven.google.com/io/netty/netty-codec/4.1.72.Final/netty-codec-4.1.72.Final.jar"
  3791. ],
  3792. "downloaded_file_path": "v1/https/repo1.maven.org/maven2/io/netty/netty-codec/4.1.72.Final/netty-codec-4.1.72.Final.jar"
  3793. }
  3794. },
  3795. "com_google_protobuf_protobuf_java_3_13_0": {
  3796. "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl",
  3797. "ruleClassName": "http_file",
  3798. "attributes": {
  3799. "name": "rules_jvm_external~4.4.2~maven~com_google_protobuf_protobuf_java_3_13_0",
  3800. "sha256": "97d5b2758408690c0dc276238707492a0b6a4d71206311b6c442cdc26c5973ff",
  3801. "urls": [
  3802. "https://repo1.maven.org/maven2/com/google/protobuf/protobuf-java/3.13.0/protobuf-java-3.13.0.jar",
  3803. "https://maven.google.com/com/google/protobuf/protobuf-java/3.13.0/protobuf-java-3.13.0.jar"
  3804. ],
  3805. "downloaded_file_path": "v1/https/repo1.maven.org/maven2/com/google/protobuf/protobuf-java/3.13.0/protobuf-java-3.13.0.jar"
  3806. }
  3807. },
  3808. "io_netty_netty_tcnative_classes_2_0_46_Final": {
  3809. "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl",
  3810. "ruleClassName": "http_file",
  3811. "attributes": {
  3812. "name": "rules_jvm_external~4.4.2~maven~io_netty_netty_tcnative_classes_2_0_46_Final",
  3813. "sha256": "d3ec888dcc4ac7915bf88b417c5e04fd354f4311032a748a6882df09347eed9a",
  3814. "urls": [
  3815. "https://repo1.maven.org/maven2/io/netty/netty-tcnative-classes/2.0.46.Final/netty-tcnative-classes-2.0.46.Final.jar",
  3816. "https://maven.google.com/io/netty/netty-tcnative-classes/2.0.46.Final/netty-tcnative-classes-2.0.46.Final.jar"
  3817. ],
  3818. "downloaded_file_path": "v1/https/repo1.maven.org/maven2/io/netty/netty-tcnative-classes/2.0.46.Final/netty-tcnative-classes-2.0.46.Final.jar"
  3819. }
  3820. },
  3821. "software_amazon_awssdk_sdk_core_2_17_183": {
  3822. "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl",
  3823. "ruleClassName": "http_file",
  3824. "attributes": {
  3825. "name": "rules_jvm_external~4.4.2~maven~software_amazon_awssdk_sdk_core_2_17_183",
  3826. "sha256": "677e9cc90fdd82c1f40f97b99cb115b13ad6c3f58beeeab1c061af6954d64c77",
  3827. "urls": [
  3828. "https://repo1.maven.org/maven2/software/amazon/awssdk/sdk-core/2.17.183/sdk-core-2.17.183.jar",
  3829. "https://maven.google.com/software/amazon/awssdk/sdk-core/2.17.183/sdk-core-2.17.183.jar"
  3830. ],
  3831. "downloaded_file_path": "v1/https/repo1.maven.org/maven2/software/amazon/awssdk/sdk-core/2.17.183/sdk-core-2.17.183.jar"
  3832. }
  3833. }
  3834. }
  3835. }
  3836. },
  3837. "@@rules_jvm_external~4.4.2//:non-module-deps.bzl%non_module_deps": {
  3838. "general": {
  3839. "bzlTransitiveDigest": "/rh2kt+7d77UiyuaTMepsRWJdj6Aot4FxGP6oW8S+U0=",
  3840. "accumulatedFileDigests": {},
  3841. "envVariables": {},
  3842. "generatedRepoSpecs": {
  3843. "io_bazel_rules_kotlin": {
  3844. "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl",
  3845. "ruleClassName": "http_archive",
  3846. "attributes": {
  3847. "name": "rules_jvm_external~4.4.2~non_module_deps~io_bazel_rules_kotlin",
  3848. "sha256": "946747acdbeae799b085d12b240ec346f775ac65236dfcf18aa0cd7300f6de78",
  3849. "urls": [
  3850. "https://github.com/bazelbuild/rules_kotlin/releases/download/v1.7.0-RC-2/rules_kotlin_release.tgz"
  3851. ]
  3852. }
  3853. }
  3854. }
  3855. }
  3856. },
  3857. "@@rules_m4~0.2.3//m4/internal:default_toolchain_ext.bzl%default_toolchain_ext": {
  3858. "general": {
  3859. "bzlTransitiveDigest": "rm6OAtIMR6n0t1X9wBVXucwCa6wqpIoqqh+kSzHNOg4=",
  3860. "accumulatedFileDigests": {},
  3861. "envVariables": {},
  3862. "generatedRepoSpecs": {
  3863. "m4_v1.4.18": {
  3864. "bzlFile": "@@rules_m4~0.2.3//m4/rules:m4_repository.bzl",
  3865. "ruleClassName": "m4_repository",
  3866. "attributes": {
  3867. "name": "rules_m4~0.2.3~default_toolchain_ext~m4_v1.4.18",
  3868. "version": "1.4.18"
  3869. }
  3870. },
  3871. "m4": {
  3872. "bzlFile": "@@rules_m4~0.2.3//m4/rules:m4_toolchain_repository.bzl",
  3873. "ruleClassName": "m4_toolchain_repository",
  3874. "attributes": {
  3875. "name": "rules_m4~0.2.3~default_toolchain_ext~m4",
  3876. "m4_repository": "@m4_v1.4.18"
  3877. }
  3878. }
  3879. },
  3880. "moduleExtensionMetadata": {
  3881. "explicitRootModuleDirectDeps": [
  3882. "m4"
  3883. ],
  3884. "explicitRootModuleDirectDevDeps": [],
  3885. "useAllRepos": "NO"
  3886. }
  3887. }
  3888. },
  3889. "@@rules_python~0.27.1//python/extensions:pip.bzl%pip": {
  3890. "os:linux,arch:amd64": {
  3891. "bzlTransitiveDigest": "ZWtBC26/TEjSAGjT+8n5tDaKyKozKfg1CJk5KX5McLw=",
  3892. "accumulatedFileDigests": {
  3893. "@@//github_tools:requirements.txt": "d80b9092d3a65a010718aea12f66392a0e522299349d3754a85477237004fdde"
  3894. },
  3895. "envVariables": {},
  3896. "generatedRepoSpecs": {
  3897. "py_deps_311_charset_normalizer": {
  3898. "bzlFile": "@@rules_python~0.27.1//python/pip_install:pip_repository.bzl",
  3899. "ruleClassName": "whl_library",
  3900. "attributes": {
  3901. "name": "rules_python~0.27.1~pip~py_deps_311_charset_normalizer",
  3902. "requirement": "charset-normalizer==3.3.2 --hash=sha256:06435b539f889b1f6f4ac1758871aae42dc3a8c0e24ac9e60c2384973ad73027 --hash=sha256:06a81e93cd441c56a9b65d8e1d043daeb97a3d0856d177d5c90ba85acb3db087 --hash=sha256:0a55554a2fa0d408816b3b5cedf0045f4b8e1a6065aec45849de2d6f3f8e9786 --hash=sha256:0b2b64d2bb6d3fb9112bafa732def486049e63de9618b5843bcdd081d8144cd8 --hash=sha256:10955842570876604d404661fbccbc9c7e684caf432c09c715ec38fbae45ae09 --hash=sha256:122c7fa62b130ed55f8f285bfd56d5f4b4a5b503609d181f9ad85e55c89f4185 --hash=sha256:1ceae2f17a9c33cb48e3263960dc5fc8005351ee19db217e9b1bb15d28c02574 --hash=sha256:1d3193f4a680c64b4b6a9115943538edb896edc190f0b222e73761716519268e --hash=sha256:1f79682fbe303db92bc2b1136016a38a42e835d932bab5b3b1bfcfbf0640e519 --hash=sha256:2127566c664442652f024c837091890cb1942c30937add288223dc895793f898 --hash=sha256:22afcb9f253dac0696b5a4be4a1c0f8762f8239e21b99680099abd9b2b1b2269 --hash=sha256:25baf083bf6f6b341f4121c2f3c548875ee6f5339300e08be3f2b2ba1721cdd3 --hash=sha256:2e81c7b9c8979ce92ed306c249d46894776a909505d8f5a4ba55b14206e3222f --hash=sha256:3287761bc4ee9e33561a7e058c72ac0938c4f57fe49a09eae428fd88aafe7bb6 --hash=sha256:34d1c8da1e78d2e001f363791c98a272bb734000fcef47a491c1e3b0505657a8 --hash=sha256:37e55c8e51c236f95b033f6fb391d7d7970ba5fe7ff453dad675e88cf303377a --hash=sha256:3d47fa203a7bd9c5b6cee4736ee84ca03b8ef23193c0d1ca99b5089f72645c73 --hash=sha256:3e4d1f6587322d2788836a99c69062fbb091331ec940e02d12d179c1d53e25fc --hash=sha256:42cb296636fcc8b0644486d15c12376cb9fa75443e00fb25de0b8602e64c1714 --hash=sha256:45485e01ff4d3630ec0d9617310448a8702f70e9c01906b0d0118bdf9d124cf2 --hash=sha256:4a78b2b446bd7c934f5dcedc588903fb2f5eec172f3d29e52a9096a43722adfc --hash=sha256:4ab2fe47fae9e0f9dee8c04187ce5d09f48eabe611be8259444906793ab7cbce --hash=sha256:4d0d1650369165a14e14e1e47b372cfcb31d6ab44e6e33cb2d4e57265290044d --hash=sha256:549a3a73da901d5bc3ce8d24e0600d1fa85524c10287f6004fbab87672bf3e1e --hash=sha256:55086ee1064215781fff39a1af09518bc9255b50d6333f2e4c74ca09fac6a8f6 --hash=sha256:572c3763a264ba47b3cf708a44ce965d98555f618ca42c926a9c1616d8f34269 --hash=sha256:573f6eac48f4769d667c4442081b1794f52919e7edada77495aaed9236d13a96 --hash=sha256:5b4c145409bef602a690e7cfad0a15a55c13320ff7a3ad7ca59c13bb8ba4d45d --hash=sha256:6463effa3186ea09411d50efc7d85360b38d5f09b870c48e4600f63af490e56a --hash=sha256:65f6f63034100ead094b8744b3b97965785388f308a64cf8d7c34f2f2e5be0c4 --hash=sha256:663946639d296df6a2bb2aa51b60a2454ca1cb29835324c640dafb5ff2131a77 --hash=sha256:6897af51655e3691ff853668779c7bad41579facacf5fd7253b0133308cf000d --hash=sha256:68d1f8a9e9e37c1223b656399be5d6b448dea850bed7d0f87a8311f1ff3dabb0 --hash=sha256:6ac7ffc7ad6d040517be39eb591cac5ff87416c2537df6ba3cba3bae290c0fed --hash=sha256:6b3251890fff30ee142c44144871185dbe13b11bab478a88887a639655be1068 --hash=sha256:6c4caeef8fa63d06bd437cd4bdcf3ffefe6738fb1b25951440d80dc7df8c03ac --hash=sha256:6ef1d82a3af9d3eecdba2321dc1b3c238245d890843e040e41e470ffa64c3e25 --hash=sha256:753f10e867343b4511128c6ed8c82f7bec3bd026875576dfd88483c5c73b2fd8 --hash=sha256:7cd13a2e3ddeed6913a65e66e94b51d80a041145a026c27e6bb76c31a853c6ab --hash=sha256:7ed9e526742851e8d5cc9e6cf41427dfc6068d4f5a3bb03659444b4cabf6bc26 --hash=sha256:7f04c839ed0b6b98b1a7501a002144b76c18fb1c1850c8b98d458ac269e26ed2 --hash=sha256:802fe99cca7457642125a8a88a084cef28ff0cf9407060f7b93dca5aa25480db --hash=sha256:80402cd6ee291dcb72644d6eac93785fe2c8b9cb30893c1af5b8fdd753b9d40f --hash=sha256:8465322196c8b4d7ab6d1e049e4c5cb460d0394da4a27d23cc242fbf0034b6b5 --hash=sha256:86216b5cee4b06df986d214f664305142d9c76df9b6512be2738aa72a2048f99 --hash=sha256:87d1351268731db79e0f8e745d92493ee2841c974128ef629dc518b937d9194c --hash=sha256:8bdb58ff7ba23002a4c5808d608e4e6c687175724f54a5dade5fa8c67b604e4d --hash=sha256:8c622a5fe39a48f78944a87d4fb8a53ee07344641b0562c540d840748571b811 --hash=sha256:8d756e44e94489e49571086ef83b2bb8ce311e730092d2c34ca8f7d925cb20aa --hash=sha256:8f4a014bc36d3c57402e2977dada34f9c12300af536839dc38c0beab8878f38a --hash=sha256:9063e24fdb1e498ab71cb7419e24622516c4a04476b17a2dab57e8baa30d6e03 --hash=sha256:90d558489962fd4918143277a773316e56c72da56ec7aa3dc3dbbe20fdfed15b --hash=sha256:923c0c831b7cfcb071580d3f46c4baf50f174be571576556269530f4bbd79d04 --hash=sha256:95f2a5796329323b8f0512e09dbb7a1860c46a39da62ecb2324f116fa8fdc85c --hash=sha256:96b02a3dc4381e5494fad39be677abcb5e6634bf7b4fa83a6dd3112607547001 --hash=sha256:9f96df6923e21816da7e0ad3fd47dd8f94b2a5ce594e00677c0013018b813458 --hash=sha256:a10af20b82360ab00827f916a6058451b723b4e65030c5a18577c8b2de5b3389 --hash=sha256:a50aebfa173e157099939b17f18600f72f84eed3049e743b68ad15bd69b6bf99 --hash=sha256:a981a536974bbc7a512cf44ed14938cf01030a99e9b3a06dd59578882f06f985 --hash=sha256:a9a8e9031d613fd2009c182b69c7b2c1ef8239a0efb1df3f7c8da66d5dd3d537 --hash=sha256:ae5f4161f18c61806f411a13b0310bea87f987c7d2ecdbdaad0e94eb2e404238 --hash=sha256:aed38f6e4fb3f5d6bf81bfa990a07806be9d83cf7bacef998ab1a9bd660a581f --hash=sha256:b01b88d45a6fcb69667cd6d2f7a9aeb4bf53760d7fc536bf679ec94fe9f3ff3d --hash=sha256:b261ccdec7821281dade748d088bb6e9b69e6d15b30652b74cbbac25e280b796 --hash=sha256:b2b0a0c0517616b6869869f8c581d4eb2dd83a4d79e0ebcb7d373ef9956aeb0a --hash=sha256:b4a23f61ce87adf89be746c8a8974fe1c823c891d8f86eb218bb957c924bb143 --hash=sha256:bd8f7df7d12c2db9fab40bdd87a7c09b1530128315d047a086fa3ae3435cb3a8 --hash=sha256:beb58fe5cdb101e3a055192ac291b7a21e3b7ef4f67fa1d74e331a7f2124341c --hash=sha256:c002b4ffc0be611f0d9da932eb0f704fe2602a9a949d1f738e4c34c75b0863d5 --hash=sha256:c083af607d2515612056a31f0a8d9e0fcb5876b7bfc0abad3ecd275bc4ebc2d5 --hash=sha256:c180f51afb394e165eafe4ac2936a14bee3eb10debc9d9e4db8958fe36afe711 --hash=sha256:c235ebd9baae02f1b77bcea61bce332cb4331dc3617d254df3323aa01ab47bd4 --hash=sha256:cd70574b12bb8a4d2aaa0094515df2463cb429d8536cfb6c7ce983246983e5a6 --hash=sha256:d0eccceffcb53201b5bfebb52600a5fb483a20b61da9dbc885f8b103cbe7598c --hash=sha256:d965bba47ddeec8cd560687584e88cf699fd28f192ceb452d1d7ee807c5597b7 --hash=sha256:db364eca23f876da6f9e16c9da0df51aa4f104a972735574842618b8c6d999d4 --hash=sha256:ddbb2551d7e0102e7252db79ba445cdab71b26640817ab1e3e3648dad515003b --hash=sha256:deb6be0ac38ece9ba87dea880e438f25ca3eddfac8b002a2ec3d9183a454e8ae --hash=sha256:e06ed3eb3218bc64786f7db41917d4e686cc4856944f53d5bdf83a6884432e12 --hash=sha256:e27ad930a842b4c5eb8ac0016b0a54f5aebbe679340c26101df33424142c143c --hash=sha256:e537484df0d8f426ce2afb2d0f8e1c3d0b114b83f8850e5f2fbea0e797bd82ae --hash=sha256:eb00ed941194665c332bf8e078baf037d6c35d7c4f3102ea2d4f16ca94a26dc8 --hash=sha256:eb6904c354526e758fda7167b33005998fb68c46fbc10e013ca97f21ca5c8887 --hash=sha256:eb8821e09e916165e160797a6c17edda0679379a4be5c716c260e836e122f54b --hash=sha256:efcb3f6676480691518c177e3b465bcddf57cea040302f9f4e6e191af91174d4 --hash=sha256:f27273b60488abe721a075bcca6d7f3964f9f6f067c8c4c605743023d7d3944f --hash=sha256:f30c3cb33b24454a82faecaf01b19c18562b1e89558fb6c56de4d9118a032fd5 --hash=sha256:fb69256e180cb6c8a894fee62b3afebae785babc1ee98b81cdf68bbca1987f33 --hash=sha256:fd1abc0d89e30cc4e02e4064dc67fcc51bd941eb395c502aac3ec19fab46b519 --hash=sha256:ff8fa367d09b717b2a17a052544193ad76cd49979c805768879cb63d9ca50561",
  3903. "repo": "py_deps_311",
  3904. "repo_prefix": "py_deps_311_",
  3905. "whl_patches": {},
  3906. "python_interpreter": "",
  3907. "python_interpreter_target": "@@rules_python~0.27.1~python~python_3_11_x86_64-unknown-linux-gnu//:bin/python3",
  3908. "quiet": true,
  3909. "timeout": 600,
  3910. "isolated": true,
  3911. "extra_pip_args": [],
  3912. "download_only": false,
  3913. "pip_data_exclude": [],
  3914. "enable_implicit_namespace_pkgs": false,
  3915. "environment": {}
  3916. }
  3917. },
  3918. "py_deps": {
  3919. "bzlFile": "@@rules_python~0.27.1//python/private/bzlmod:pip_repository.bzl",
  3920. "ruleClassName": "pip_repository",
  3921. "attributes": {
  3922. "name": "rules_python~0.27.1~pip~py_deps",
  3923. "repo_name": "py_deps",
  3924. "whl_map": {
  3925. "certifi": [
  3926. "3.11.6"
  3927. ],
  3928. "charset_normalizer": [
  3929. "3.11.6"
  3930. ],
  3931. "gql": [
  3932. "3.11.6"
  3933. ],
  3934. "graphql_core": [
  3935. "3.11.6"
  3936. ],
  3937. "idna": [
  3938. "3.11.6"
  3939. ],
  3940. "promise": [
  3941. "3.11.6"
  3942. ],
  3943. "requests": [
  3944. "3.11.6"
  3945. ],
  3946. "rx": [
  3947. "3.11.6"
  3948. ],
  3949. "six": [
  3950. "3.11.6"
  3951. ],
  3952. "urllib3": [
  3953. "3.11.6"
  3954. ]
  3955. },
  3956. "default_version": "3.11.6"
  3957. }
  3958. },
  3959. "py_deps_311_promise": {
  3960. "bzlFile": "@@rules_python~0.27.1//python/pip_install:pip_repository.bzl",
  3961. "ruleClassName": "whl_library",
  3962. "attributes": {
  3963. "name": "rules_python~0.27.1~pip~py_deps_311_promise",
  3964. "requirement": "promise==2.3 --hash=sha256:dfd18337c523ba4b6a58801c164c1904a9d4d1b1747c7d5dbf45b693a49d93d0",
  3965. "repo": "py_deps_311",
  3966. "repo_prefix": "py_deps_311_",
  3967. "whl_patches": {},
  3968. "python_interpreter": "",
  3969. "python_interpreter_target": "@@rules_python~0.27.1~python~python_3_11_x86_64-unknown-linux-gnu//:bin/python3",
  3970. "quiet": true,
  3971. "timeout": 600,
  3972. "isolated": true,
  3973. "extra_pip_args": [],
  3974. "download_only": false,
  3975. "pip_data_exclude": [],
  3976. "enable_implicit_namespace_pkgs": false,
  3977. "environment": {}
  3978. }
  3979. },
  3980. "py_deps_311_requests": {
  3981. "bzlFile": "@@rules_python~0.27.1//python/pip_install:pip_repository.bzl",
  3982. "ruleClassName": "whl_library",
  3983. "attributes": {
  3984. "name": "rules_python~0.27.1~pip~py_deps_311_requests",
  3985. "requirement": "requests==2.31.0 --hash=sha256:58cd2187c01e70e6e26505bca751777aa9f2ee0b7f4300988b709f44e013003f --hash=sha256:942c5a758f98d790eaed1a29cb6eefc7ffb0d1cf7af05c3d2791656dbd6ad1e1",
  3986. "repo": "py_deps_311",
  3987. "repo_prefix": "py_deps_311_",
  3988. "whl_patches": {},
  3989. "python_interpreter": "",
  3990. "python_interpreter_target": "@@rules_python~0.27.1~python~python_3_11_x86_64-unknown-linux-gnu//:bin/python3",
  3991. "quiet": true,
  3992. "timeout": 600,
  3993. "isolated": true,
  3994. "extra_pip_args": [],
  3995. "download_only": false,
  3996. "pip_data_exclude": [],
  3997. "enable_implicit_namespace_pkgs": false,
  3998. "environment": {}
  3999. }
  4000. },
  4001. "py_deps_311_graphql_core": {
  4002. "bzlFile": "@@rules_python~0.27.1//python/pip_install:pip_repository.bzl",
  4003. "ruleClassName": "whl_library",
  4004. "attributes": {
  4005. "name": "rules_python~0.27.1~pip~py_deps_311_graphql_core",
  4006. "requirement": "graphql-core==2.3.2 --hash=sha256:44c9bac4514e5e30c5a595fac8e3c76c1975cae14db215e8174c7fe995825bad --hash=sha256:aac46a9ac524c9855910c14c48fc5d60474def7f99fd10245e76608eba7af746",
  4007. "repo": "py_deps_311",
  4008. "repo_prefix": "py_deps_311_",
  4009. "whl_patches": {},
  4010. "python_interpreter": "",
  4011. "python_interpreter_target": "@@rules_python~0.27.1~python~python_3_11_x86_64-unknown-linux-gnu//:bin/python3",
  4012. "quiet": true,
  4013. "timeout": 600,
  4014. "isolated": true,
  4015. "extra_pip_args": [],
  4016. "download_only": false,
  4017. "pip_data_exclude": [],
  4018. "enable_implicit_namespace_pkgs": false,
  4019. "environment": {}
  4020. }
  4021. },
  4022. "py_deps_311_six": {
  4023. "bzlFile": "@@rules_python~0.27.1//python/pip_install:pip_repository.bzl",
  4024. "ruleClassName": "whl_library",
  4025. "attributes": {
  4026. "name": "rules_python~0.27.1~pip~py_deps_311_six",
  4027. "requirement": "six==1.16.0 --hash=sha256:1e61c37477a1626458e36f7b1d82aa5c9b094fa4802892072e49de9c60c4c926 --hash=sha256:8abb2f1d86890a2dfb989f9a77cfcfd3e47c2a354b01111771326f8aa26e0254",
  4028. "repo": "py_deps_311",
  4029. "repo_prefix": "py_deps_311_",
  4030. "whl_patches": {},
  4031. "python_interpreter": "",
  4032. "python_interpreter_target": "@@rules_python~0.27.1~python~python_3_11_x86_64-unknown-linux-gnu//:bin/python3",
  4033. "quiet": true,
  4034. "timeout": 600,
  4035. "isolated": true,
  4036. "extra_pip_args": [],
  4037. "download_only": false,
  4038. "pip_data_exclude": [],
  4039. "enable_implicit_namespace_pkgs": false,
  4040. "environment": {}
  4041. }
  4042. },
  4043. "py_deps_311_gql": {
  4044. "bzlFile": "@@rules_python~0.27.1//python/pip_install:pip_repository.bzl",
  4045. "ruleClassName": "whl_library",
  4046. "attributes": {
  4047. "name": "rules_python~0.27.1~pip~py_deps_311_gql",
  4048. "requirement": "gql==2.0.0 --hash=sha256:35032ddd4bfe6b8f3169f806b022168932385d751eacc5c5f7122e0b3f4d6b88 --hash=sha256:fe8d3a08047f77362ddfcfddba7cae377da2dd66f5e61c59820419c9283d4fb5",
  4049. "repo": "py_deps_311",
  4050. "repo_prefix": "py_deps_311_",
  4051. "whl_patches": {},
  4052. "python_interpreter": "",
  4053. "python_interpreter_target": "@@rules_python~0.27.1~python~python_3_11_x86_64-unknown-linux-gnu//:bin/python3",
  4054. "quiet": true,
  4055. "timeout": 600,
  4056. "isolated": true,
  4057. "extra_pip_args": [],
  4058. "download_only": false,
  4059. "pip_data_exclude": [],
  4060. "enable_implicit_namespace_pkgs": false,
  4061. "environment": {}
  4062. }
  4063. },
  4064. "py_deps_311_rx": {
  4065. "bzlFile": "@@rules_python~0.27.1//python/pip_install:pip_repository.bzl",
  4066. "ruleClassName": "whl_library",
  4067. "attributes": {
  4068. "name": "rules_python~0.27.1~pip~py_deps_311_rx",
  4069. "requirement": "rx==1.6.3 --hash=sha256:ca71b65d0fc0603a3b5cfaa9e33f5ba81e4aae10a58491133595088d7734b2da",
  4070. "repo": "py_deps_311",
  4071. "repo_prefix": "py_deps_311_",
  4072. "whl_patches": {},
  4073. "python_interpreter": "",
  4074. "python_interpreter_target": "@@rules_python~0.27.1~python~python_3_11_x86_64-unknown-linux-gnu//:bin/python3",
  4075. "quiet": true,
  4076. "timeout": 600,
  4077. "isolated": true,
  4078. "extra_pip_args": [],
  4079. "download_only": false,
  4080. "pip_data_exclude": [],
  4081. "enable_implicit_namespace_pkgs": false,
  4082. "environment": {}
  4083. }
  4084. },
  4085. "py_deps_311_certifi": {
  4086. "bzlFile": "@@rules_python~0.27.1//python/pip_install:pip_repository.bzl",
  4087. "ruleClassName": "whl_library",
  4088. "attributes": {
  4089. "name": "rules_python~0.27.1~pip~py_deps_311_certifi",
  4090. "requirement": "certifi==2023.11.17 --hash=sha256:9b469f3a900bf28dc19b8cfbf8019bf47f7fdd1a65a1d4ffb98fc14166beb4d1 --hash=sha256:e036ab49d5b79556f99cfc2d9320b34cfbe5be05c5871b51de9329f0603b0474",
  4091. "repo": "py_deps_311",
  4092. "repo_prefix": "py_deps_311_",
  4093. "whl_patches": {},
  4094. "python_interpreter": "",
  4095. "python_interpreter_target": "@@rules_python~0.27.1~python~python_3_11_x86_64-unknown-linux-gnu//:bin/python3",
  4096. "quiet": true,
  4097. "timeout": 600,
  4098. "isolated": true,
  4099. "extra_pip_args": [],
  4100. "download_only": false,
  4101. "pip_data_exclude": [],
  4102. "enable_implicit_namespace_pkgs": false,
  4103. "environment": {}
  4104. }
  4105. },
  4106. "py_deps_311_urllib3": {
  4107. "bzlFile": "@@rules_python~0.27.1//python/pip_install:pip_repository.bzl",
  4108. "ruleClassName": "whl_library",
  4109. "attributes": {
  4110. "name": "rules_python~0.27.1~pip~py_deps_311_urllib3",
  4111. "requirement": "urllib3==2.1.0 --hash=sha256:55901e917a5896a349ff771be919f8bd99aff50b79fe58fec595eb37bbc56bb3 --hash=sha256:df7aa8afb0148fa78488e7899b2c59b5f4ffcfa82e6c54ccb9dd37c1d7b52d54",
  4112. "repo": "py_deps_311",
  4113. "repo_prefix": "py_deps_311_",
  4114. "whl_patches": {},
  4115. "python_interpreter": "",
  4116. "python_interpreter_target": "@@rules_python~0.27.1~python~python_3_11_x86_64-unknown-linux-gnu//:bin/python3",
  4117. "quiet": true,
  4118. "timeout": 600,
  4119. "isolated": true,
  4120. "extra_pip_args": [],
  4121. "download_only": false,
  4122. "pip_data_exclude": [],
  4123. "enable_implicit_namespace_pkgs": false,
  4124. "environment": {}
  4125. }
  4126. },
  4127. "py_deps_311_idna": {
  4128. "bzlFile": "@@rules_python~0.27.1//python/pip_install:pip_repository.bzl",
  4129. "ruleClassName": "whl_library",
  4130. "attributes": {
  4131. "name": "rules_python~0.27.1~pip~py_deps_311_idna",
  4132. "requirement": "idna==3.6 --hash=sha256:9ecdbbd083b06798ae1e86adcbfe8ab1479cf864e4ee30fe4e46a003d12491ca --hash=sha256:c05567e9c24a6b9faaa835c4821bad0590fbb9d5779e7caa6e1cc4978e7eb24f",
  4133. "repo": "py_deps_311",
  4134. "repo_prefix": "py_deps_311_",
  4135. "whl_patches": {},
  4136. "python_interpreter": "",
  4137. "python_interpreter_target": "@@rules_python~0.27.1~python~python_3_11_x86_64-unknown-linux-gnu//:bin/python3",
  4138. "quiet": true,
  4139. "timeout": 600,
  4140. "isolated": true,
  4141. "extra_pip_args": [],
  4142. "download_only": false,
  4143. "pip_data_exclude": [],
  4144. "enable_implicit_namespace_pkgs": false,
  4145. "environment": {}
  4146. }
  4147. }
  4148. }
  4149. },
  4150. "os:osx,arch:x86_64": {
  4151. "bzlTransitiveDigest": "9Tlt1SOlU8V1bBjSSrjLscYHKGXE7fCWpIqBfFGgEIE=",
  4152. "accumulatedFileDigests": {
  4153. "@@//github_tools:requirements.txt": "d80b9092d3a65a010718aea12f66392a0e522299349d3754a85477237004fdde"
  4154. },
  4155. "envVariables": {},
  4156. "generatedRepoSpecs": {
  4157. "py_deps_311_charset_normalizer": {
  4158. "bzlFile": "@@rules_python~0.27.1//python/pip_install:pip_repository.bzl",
  4159. "ruleClassName": "whl_library",
  4160. "attributes": {
  4161. "name": "rules_python~0.27.1~pip~py_deps_311_charset_normalizer",
  4162. "requirement": "charset-normalizer==3.3.2 --hash=sha256:06435b539f889b1f6f4ac1758871aae42dc3a8c0e24ac9e60c2384973ad73027 --hash=sha256:06a81e93cd441c56a9b65d8e1d043daeb97a3d0856d177d5c90ba85acb3db087 --hash=sha256:0a55554a2fa0d408816b3b5cedf0045f4b8e1a6065aec45849de2d6f3f8e9786 --hash=sha256:0b2b64d2bb6d3fb9112bafa732def486049e63de9618b5843bcdd081d8144cd8 --hash=sha256:10955842570876604d404661fbccbc9c7e684caf432c09c715ec38fbae45ae09 --hash=sha256:122c7fa62b130ed55f8f285bfd56d5f4b4a5b503609d181f9ad85e55c89f4185 --hash=sha256:1ceae2f17a9c33cb48e3263960dc5fc8005351ee19db217e9b1bb15d28c02574 --hash=sha256:1d3193f4a680c64b4b6a9115943538edb896edc190f0b222e73761716519268e --hash=sha256:1f79682fbe303db92bc2b1136016a38a42e835d932bab5b3b1bfcfbf0640e519 --hash=sha256:2127566c664442652f024c837091890cb1942c30937add288223dc895793f898 --hash=sha256:22afcb9f253dac0696b5a4be4a1c0f8762f8239e21b99680099abd9b2b1b2269 --hash=sha256:25baf083bf6f6b341f4121c2f3c548875ee6f5339300e08be3f2b2ba1721cdd3 --hash=sha256:2e81c7b9c8979ce92ed306c249d46894776a909505d8f5a4ba55b14206e3222f --hash=sha256:3287761bc4ee9e33561a7e058c72ac0938c4f57fe49a09eae428fd88aafe7bb6 --hash=sha256:34d1c8da1e78d2e001f363791c98a272bb734000fcef47a491c1e3b0505657a8 --hash=sha256:37e55c8e51c236f95b033f6fb391d7d7970ba5fe7ff453dad675e88cf303377a --hash=sha256:3d47fa203a7bd9c5b6cee4736ee84ca03b8ef23193c0d1ca99b5089f72645c73 --hash=sha256:3e4d1f6587322d2788836a99c69062fbb091331ec940e02d12d179c1d53e25fc --hash=sha256:42cb296636fcc8b0644486d15c12376cb9fa75443e00fb25de0b8602e64c1714 --hash=sha256:45485e01ff4d3630ec0d9617310448a8702f70e9c01906b0d0118bdf9d124cf2 --hash=sha256:4a78b2b446bd7c934f5dcedc588903fb2f5eec172f3d29e52a9096a43722adfc --hash=sha256:4ab2fe47fae9e0f9dee8c04187ce5d09f48eabe611be8259444906793ab7cbce --hash=sha256:4d0d1650369165a14e14e1e47b372cfcb31d6ab44e6e33cb2d4e57265290044d --hash=sha256:549a3a73da901d5bc3ce8d24e0600d1fa85524c10287f6004fbab87672bf3e1e --hash=sha256:55086ee1064215781fff39a1af09518bc9255b50d6333f2e4c74ca09fac6a8f6 --hash=sha256:572c3763a264ba47b3cf708a44ce965d98555f618ca42c926a9c1616d8f34269 --hash=sha256:573f6eac48f4769d667c4442081b1794f52919e7edada77495aaed9236d13a96 --hash=sha256:5b4c145409bef602a690e7cfad0a15a55c13320ff7a3ad7ca59c13bb8ba4d45d --hash=sha256:6463effa3186ea09411d50efc7d85360b38d5f09b870c48e4600f63af490e56a --hash=sha256:65f6f63034100ead094b8744b3b97965785388f308a64cf8d7c34f2f2e5be0c4 --hash=sha256:663946639d296df6a2bb2aa51b60a2454ca1cb29835324c640dafb5ff2131a77 --hash=sha256:6897af51655e3691ff853668779c7bad41579facacf5fd7253b0133308cf000d --hash=sha256:68d1f8a9e9e37c1223b656399be5d6b448dea850bed7d0f87a8311f1ff3dabb0 --hash=sha256:6ac7ffc7ad6d040517be39eb591cac5ff87416c2537df6ba3cba3bae290c0fed --hash=sha256:6b3251890fff30ee142c44144871185dbe13b11bab478a88887a639655be1068 --hash=sha256:6c4caeef8fa63d06bd437cd4bdcf3ffefe6738fb1b25951440d80dc7df8c03ac --hash=sha256:6ef1d82a3af9d3eecdba2321dc1b3c238245d890843e040e41e470ffa64c3e25 --hash=sha256:753f10e867343b4511128c6ed8c82f7bec3bd026875576dfd88483c5c73b2fd8 --hash=sha256:7cd13a2e3ddeed6913a65e66e94b51d80a041145a026c27e6bb76c31a853c6ab --hash=sha256:7ed9e526742851e8d5cc9e6cf41427dfc6068d4f5a3bb03659444b4cabf6bc26 --hash=sha256:7f04c839ed0b6b98b1a7501a002144b76c18fb1c1850c8b98d458ac269e26ed2 --hash=sha256:802fe99cca7457642125a8a88a084cef28ff0cf9407060f7b93dca5aa25480db --hash=sha256:80402cd6ee291dcb72644d6eac93785fe2c8b9cb30893c1af5b8fdd753b9d40f --hash=sha256:8465322196c8b4d7ab6d1e049e4c5cb460d0394da4a27d23cc242fbf0034b6b5 --hash=sha256:86216b5cee4b06df986d214f664305142d9c76df9b6512be2738aa72a2048f99 --hash=sha256:87d1351268731db79e0f8e745d92493ee2841c974128ef629dc518b937d9194c --hash=sha256:8bdb58ff7ba23002a4c5808d608e4e6c687175724f54a5dade5fa8c67b604e4d --hash=sha256:8c622a5fe39a48f78944a87d4fb8a53ee07344641b0562c540d840748571b811 --hash=sha256:8d756e44e94489e49571086ef83b2bb8ce311e730092d2c34ca8f7d925cb20aa --hash=sha256:8f4a014bc36d3c57402e2977dada34f9c12300af536839dc38c0beab8878f38a --hash=sha256:9063e24fdb1e498ab71cb7419e24622516c4a04476b17a2dab57e8baa30d6e03 --hash=sha256:90d558489962fd4918143277a773316e56c72da56ec7aa3dc3dbbe20fdfed15b --hash=sha256:923c0c831b7cfcb071580d3f46c4baf50f174be571576556269530f4bbd79d04 --hash=sha256:95f2a5796329323b8f0512e09dbb7a1860c46a39da62ecb2324f116fa8fdc85c --hash=sha256:96b02a3dc4381e5494fad39be677abcb5e6634bf7b4fa83a6dd3112607547001 --hash=sha256:9f96df6923e21816da7e0ad3fd47dd8f94b2a5ce594e00677c0013018b813458 --hash=sha256:a10af20b82360ab00827f916a6058451b723b4e65030c5a18577c8b2de5b3389 --hash=sha256:a50aebfa173e157099939b17f18600f72f84eed3049e743b68ad15bd69b6bf99 --hash=sha256:a981a536974bbc7a512cf44ed14938cf01030a99e9b3a06dd59578882f06f985 --hash=sha256:a9a8e9031d613fd2009c182b69c7b2c1ef8239a0efb1df3f7c8da66d5dd3d537 --hash=sha256:ae5f4161f18c61806f411a13b0310bea87f987c7d2ecdbdaad0e94eb2e404238 --hash=sha256:aed38f6e4fb3f5d6bf81bfa990a07806be9d83cf7bacef998ab1a9bd660a581f --hash=sha256:b01b88d45a6fcb69667cd6d2f7a9aeb4bf53760d7fc536bf679ec94fe9f3ff3d --hash=sha256:b261ccdec7821281dade748d088bb6e9b69e6d15b30652b74cbbac25e280b796 --hash=sha256:b2b0a0c0517616b6869869f8c581d4eb2dd83a4d79e0ebcb7d373ef9956aeb0a --hash=sha256:b4a23f61ce87adf89be746c8a8974fe1c823c891d8f86eb218bb957c924bb143 --hash=sha256:bd8f7df7d12c2db9fab40bdd87a7c09b1530128315d047a086fa3ae3435cb3a8 --hash=sha256:beb58fe5cdb101e3a055192ac291b7a21e3b7ef4f67fa1d74e331a7f2124341c --hash=sha256:c002b4ffc0be611f0d9da932eb0f704fe2602a9a949d1f738e4c34c75b0863d5 --hash=sha256:c083af607d2515612056a31f0a8d9e0fcb5876b7bfc0abad3ecd275bc4ebc2d5 --hash=sha256:c180f51afb394e165eafe4ac2936a14bee3eb10debc9d9e4db8958fe36afe711 --hash=sha256:c235ebd9baae02f1b77bcea61bce332cb4331dc3617d254df3323aa01ab47bd4 --hash=sha256:cd70574b12bb8a4d2aaa0094515df2463cb429d8536cfb6c7ce983246983e5a6 --hash=sha256:d0eccceffcb53201b5bfebb52600a5fb483a20b61da9dbc885f8b103cbe7598c --hash=sha256:d965bba47ddeec8cd560687584e88cf699fd28f192ceb452d1d7ee807c5597b7 --hash=sha256:db364eca23f876da6f9e16c9da0df51aa4f104a972735574842618b8c6d999d4 --hash=sha256:ddbb2551d7e0102e7252db79ba445cdab71b26640817ab1e3e3648dad515003b --hash=sha256:deb6be0ac38ece9ba87dea880e438f25ca3eddfac8b002a2ec3d9183a454e8ae --hash=sha256:e06ed3eb3218bc64786f7db41917d4e686cc4856944f53d5bdf83a6884432e12 --hash=sha256:e27ad930a842b4c5eb8ac0016b0a54f5aebbe679340c26101df33424142c143c --hash=sha256:e537484df0d8f426ce2afb2d0f8e1c3d0b114b83f8850e5f2fbea0e797bd82ae --hash=sha256:eb00ed941194665c332bf8e078baf037d6c35d7c4f3102ea2d4f16ca94a26dc8 --hash=sha256:eb6904c354526e758fda7167b33005998fb68c46fbc10e013ca97f21ca5c8887 --hash=sha256:eb8821e09e916165e160797a6c17edda0679379a4be5c716c260e836e122f54b --hash=sha256:efcb3f6676480691518c177e3b465bcddf57cea040302f9f4e6e191af91174d4 --hash=sha256:f27273b60488abe721a075bcca6d7f3964f9f6f067c8c4c605743023d7d3944f --hash=sha256:f30c3cb33b24454a82faecaf01b19c18562b1e89558fb6c56de4d9118a032fd5 --hash=sha256:fb69256e180cb6c8a894fee62b3afebae785babc1ee98b81cdf68bbca1987f33 --hash=sha256:fd1abc0d89e30cc4e02e4064dc67fcc51bd941eb395c502aac3ec19fab46b519 --hash=sha256:ff8fa367d09b717b2a17a052544193ad76cd49979c805768879cb63d9ca50561",
  4163. "repo": "py_deps_311",
  4164. "repo_prefix": "py_deps_311_",
  4165. "whl_patches": {},
  4166. "python_interpreter": "",
  4167. "python_interpreter_target": "@@rules_python~0.27.1~python~python_3_11_x86_64-apple-darwin//:bin/python3",
  4168. "quiet": true,
  4169. "timeout": 600,
  4170. "isolated": true,
  4171. "extra_pip_args": [],
  4172. "download_only": false,
  4173. "pip_data_exclude": [],
  4174. "enable_implicit_namespace_pkgs": false,
  4175. "environment": {}
  4176. }
  4177. },
  4178. "py_deps": {
  4179. "bzlFile": "@@rules_python~0.27.1//python/private/bzlmod:pip_repository.bzl",
  4180. "ruleClassName": "pip_repository",
  4181. "attributes": {
  4182. "name": "rules_python~0.27.1~pip~py_deps",
  4183. "repo_name": "py_deps",
  4184. "whl_map": {
  4185. "certifi": [
  4186. "3.11.6"
  4187. ],
  4188. "charset_normalizer": [
  4189. "3.11.6"
  4190. ],
  4191. "gql": [
  4192. "3.11.6"
  4193. ],
  4194. "graphql_core": [
  4195. "3.11.6"
  4196. ],
  4197. "idna": [
  4198. "3.11.6"
  4199. ],
  4200. "promise": [
  4201. "3.11.6"
  4202. ],
  4203. "requests": [
  4204. "3.11.6"
  4205. ],
  4206. "rx": [
  4207. "3.11.6"
  4208. ],
  4209. "six": [
  4210. "3.11.6"
  4211. ],
  4212. "urllib3": [
  4213. "3.11.6"
  4214. ]
  4215. },
  4216. "default_version": "3.11.6"
  4217. }
  4218. },
  4219. "py_deps_311_promise": {
  4220. "bzlFile": "@@rules_python~0.27.1//python/pip_install:pip_repository.bzl",
  4221. "ruleClassName": "whl_library",
  4222. "attributes": {
  4223. "name": "rules_python~0.27.1~pip~py_deps_311_promise",
  4224. "requirement": "promise==2.3 --hash=sha256:dfd18337c523ba4b6a58801c164c1904a9d4d1b1747c7d5dbf45b693a49d93d0",
  4225. "repo": "py_deps_311",
  4226. "repo_prefix": "py_deps_311_",
  4227. "whl_patches": {},
  4228. "python_interpreter": "",
  4229. "python_interpreter_target": "@@rules_python~0.27.1~python~python_3_11_x86_64-apple-darwin//:bin/python3",
  4230. "quiet": true,
  4231. "timeout": 600,
  4232. "isolated": true,
  4233. "extra_pip_args": [],
  4234. "download_only": false,
  4235. "pip_data_exclude": [],
  4236. "enable_implicit_namespace_pkgs": false,
  4237. "environment": {}
  4238. }
  4239. },
  4240. "py_deps_311_requests": {
  4241. "bzlFile": "@@rules_python~0.27.1//python/pip_install:pip_repository.bzl",
  4242. "ruleClassName": "whl_library",
  4243. "attributes": {
  4244. "name": "rules_python~0.27.1~pip~py_deps_311_requests",
  4245. "requirement": "requests==2.31.0 --hash=sha256:58cd2187c01e70e6e26505bca751777aa9f2ee0b7f4300988b709f44e013003f --hash=sha256:942c5a758f98d790eaed1a29cb6eefc7ffb0d1cf7af05c3d2791656dbd6ad1e1",
  4246. "repo": "py_deps_311",
  4247. "repo_prefix": "py_deps_311_",
  4248. "whl_patches": {},
  4249. "python_interpreter": "",
  4250. "python_interpreter_target": "@@rules_python~0.27.1~python~python_3_11_x86_64-apple-darwin//:bin/python3",
  4251. "quiet": true,
  4252. "timeout": 600,
  4253. "isolated": true,
  4254. "extra_pip_args": [],
  4255. "download_only": false,
  4256. "pip_data_exclude": [],
  4257. "enable_implicit_namespace_pkgs": false,
  4258. "environment": {}
  4259. }
  4260. },
  4261. "py_deps_311_graphql_core": {
  4262. "bzlFile": "@@rules_python~0.27.1//python/pip_install:pip_repository.bzl",
  4263. "ruleClassName": "whl_library",
  4264. "attributes": {
  4265. "name": "rules_python~0.27.1~pip~py_deps_311_graphql_core",
  4266. "requirement": "graphql-core==2.3.2 --hash=sha256:44c9bac4514e5e30c5a595fac8e3c76c1975cae14db215e8174c7fe995825bad --hash=sha256:aac46a9ac524c9855910c14c48fc5d60474def7f99fd10245e76608eba7af746",
  4267. "repo": "py_deps_311",
  4268. "repo_prefix": "py_deps_311_",
  4269. "whl_patches": {},
  4270. "python_interpreter": "",
  4271. "python_interpreter_target": "@@rules_python~0.27.1~python~python_3_11_x86_64-apple-darwin//:bin/python3",
  4272. "quiet": true,
  4273. "timeout": 600,
  4274. "isolated": true,
  4275. "extra_pip_args": [],
  4276. "download_only": false,
  4277. "pip_data_exclude": [],
  4278. "enable_implicit_namespace_pkgs": false,
  4279. "environment": {}
  4280. }
  4281. },
  4282. "py_deps_311_six": {
  4283. "bzlFile": "@@rules_python~0.27.1//python/pip_install:pip_repository.bzl",
  4284. "ruleClassName": "whl_library",
  4285. "attributes": {
  4286. "name": "rules_python~0.27.1~pip~py_deps_311_six",
  4287. "requirement": "six==1.16.0 --hash=sha256:1e61c37477a1626458e36f7b1d82aa5c9b094fa4802892072e49de9c60c4c926 --hash=sha256:8abb2f1d86890a2dfb989f9a77cfcfd3e47c2a354b01111771326f8aa26e0254",
  4288. "repo": "py_deps_311",
  4289. "repo_prefix": "py_deps_311_",
  4290. "whl_patches": {},
  4291. "python_interpreter": "",
  4292. "python_interpreter_target": "@@rules_python~0.27.1~python~python_3_11_x86_64-apple-darwin//:bin/python3",
  4293. "quiet": true,
  4294. "timeout": 600,
  4295. "isolated": true,
  4296. "extra_pip_args": [],
  4297. "download_only": false,
  4298. "pip_data_exclude": [],
  4299. "enable_implicit_namespace_pkgs": false,
  4300. "environment": {}
  4301. }
  4302. },
  4303. "py_deps_311_gql": {
  4304. "bzlFile": "@@rules_python~0.27.1//python/pip_install:pip_repository.bzl",
  4305. "ruleClassName": "whl_library",
  4306. "attributes": {
  4307. "name": "rules_python~0.27.1~pip~py_deps_311_gql",
  4308. "requirement": "gql==2.0.0 --hash=sha256:35032ddd4bfe6b8f3169f806b022168932385d751eacc5c5f7122e0b3f4d6b88 --hash=sha256:fe8d3a08047f77362ddfcfddba7cae377da2dd66f5e61c59820419c9283d4fb5",
  4309. "repo": "py_deps_311",
  4310. "repo_prefix": "py_deps_311_",
  4311. "whl_patches": {},
  4312. "python_interpreter": "",
  4313. "python_interpreter_target": "@@rules_python~0.27.1~python~python_3_11_x86_64-apple-darwin//:bin/python3",
  4314. "quiet": true,
  4315. "timeout": 600,
  4316. "isolated": true,
  4317. "extra_pip_args": [],
  4318. "download_only": false,
  4319. "pip_data_exclude": [],
  4320. "enable_implicit_namespace_pkgs": false,
  4321. "environment": {}
  4322. }
  4323. },
  4324. "py_deps_311_rx": {
  4325. "bzlFile": "@@rules_python~0.27.1//python/pip_install:pip_repository.bzl",
  4326. "ruleClassName": "whl_library",
  4327. "attributes": {
  4328. "name": "rules_python~0.27.1~pip~py_deps_311_rx",
  4329. "requirement": "rx==1.6.3 --hash=sha256:ca71b65d0fc0603a3b5cfaa9e33f5ba81e4aae10a58491133595088d7734b2da",
  4330. "repo": "py_deps_311",
  4331. "repo_prefix": "py_deps_311_",
  4332. "whl_patches": {},
  4333. "python_interpreter": "",
  4334. "python_interpreter_target": "@@rules_python~0.27.1~python~python_3_11_x86_64-apple-darwin//:bin/python3",
  4335. "quiet": true,
  4336. "timeout": 600,
  4337. "isolated": true,
  4338. "extra_pip_args": [],
  4339. "download_only": false,
  4340. "pip_data_exclude": [],
  4341. "enable_implicit_namespace_pkgs": false,
  4342. "environment": {}
  4343. }
  4344. },
  4345. "py_deps_311_certifi": {
  4346. "bzlFile": "@@rules_python~0.27.1//python/pip_install:pip_repository.bzl",
  4347. "ruleClassName": "whl_library",
  4348. "attributes": {
  4349. "name": "rules_python~0.27.1~pip~py_deps_311_certifi",
  4350. "requirement": "certifi==2023.11.17 --hash=sha256:9b469f3a900bf28dc19b8cfbf8019bf47f7fdd1a65a1d4ffb98fc14166beb4d1 --hash=sha256:e036ab49d5b79556f99cfc2d9320b34cfbe5be05c5871b51de9329f0603b0474",
  4351. "repo": "py_deps_311",
  4352. "repo_prefix": "py_deps_311_",
  4353. "whl_patches": {},
  4354. "python_interpreter": "",
  4355. "python_interpreter_target": "@@rules_python~0.27.1~python~python_3_11_x86_64-apple-darwin//:bin/python3",
  4356. "quiet": true,
  4357. "timeout": 600,
  4358. "isolated": true,
  4359. "extra_pip_args": [],
  4360. "download_only": false,
  4361. "pip_data_exclude": [],
  4362. "enable_implicit_namespace_pkgs": false,
  4363. "environment": {}
  4364. }
  4365. },
  4366. "py_deps_311_urllib3": {
  4367. "bzlFile": "@@rules_python~0.27.1//python/pip_install:pip_repository.bzl",
  4368. "ruleClassName": "whl_library",
  4369. "attributes": {
  4370. "name": "rules_python~0.27.1~pip~py_deps_311_urllib3",
  4371. "requirement": "urllib3==2.1.0 --hash=sha256:55901e917a5896a349ff771be919f8bd99aff50b79fe58fec595eb37bbc56bb3 --hash=sha256:df7aa8afb0148fa78488e7899b2c59b5f4ffcfa82e6c54ccb9dd37c1d7b52d54",
  4372. "repo": "py_deps_311",
  4373. "repo_prefix": "py_deps_311_",
  4374. "whl_patches": {},
  4375. "python_interpreter": "",
  4376. "python_interpreter_target": "@@rules_python~0.27.1~python~python_3_11_x86_64-apple-darwin//:bin/python3",
  4377. "quiet": true,
  4378. "timeout": 600,
  4379. "isolated": true,
  4380. "extra_pip_args": [],
  4381. "download_only": false,
  4382. "pip_data_exclude": [],
  4383. "enable_implicit_namespace_pkgs": false,
  4384. "environment": {}
  4385. }
  4386. },
  4387. "py_deps_311_idna": {
  4388. "bzlFile": "@@rules_python~0.27.1//python/pip_install:pip_repository.bzl",
  4389. "ruleClassName": "whl_library",
  4390. "attributes": {
  4391. "name": "rules_python~0.27.1~pip~py_deps_311_idna",
  4392. "requirement": "idna==3.6 --hash=sha256:9ecdbbd083b06798ae1e86adcbfe8ab1479cf864e4ee30fe4e46a003d12491ca --hash=sha256:c05567e9c24a6b9faaa835c4821bad0590fbb9d5779e7caa6e1cc4978e7eb24f",
  4393. "repo": "py_deps_311",
  4394. "repo_prefix": "py_deps_311_",
  4395. "whl_patches": {},
  4396. "python_interpreter": "",
  4397. "python_interpreter_target": "@@rules_python~0.27.1~python~python_3_11_x86_64-apple-darwin//:bin/python3",
  4398. "quiet": true,
  4399. "timeout": 600,
  4400. "isolated": true,
  4401. "extra_pip_args": [],
  4402. "download_only": false,
  4403. "pip_data_exclude": [],
  4404. "enable_implicit_namespace_pkgs": false,
  4405. "environment": {}
  4406. }
  4407. }
  4408. }
  4409. },
  4410. "os:linux,arch:aarch64": {
  4411. "bzlTransitiveDigest": "JWodUBz1ohddcDPS6O0hhZ1KYgJkH0Wr/e8qC48SvZ0=",
  4412. "accumulatedFileDigests": {
  4413. "@@//github_tools:requirements.txt": "d80b9092d3a65a010718aea12f66392a0e522299349d3754a85477237004fdde"
  4414. },
  4415. "envVariables": {},
  4416. "generatedRepoSpecs": {
  4417. "py_deps_311_charset_normalizer": {
  4418. "bzlFile": "@@rules_python~0.27.1//python/pip_install:pip_repository.bzl",
  4419. "ruleClassName": "whl_library",
  4420. "attributes": {
  4421. "name": "rules_python~0.27.1~pip~py_deps_311_charset_normalizer",
  4422. "requirement": "charset-normalizer==3.3.2 --hash=sha256:06435b539f889b1f6f4ac1758871aae42dc3a8c0e24ac9e60c2384973ad73027 --hash=sha256:06a81e93cd441c56a9b65d8e1d043daeb97a3d0856d177d5c90ba85acb3db087 --hash=sha256:0a55554a2fa0d408816b3b5cedf0045f4b8e1a6065aec45849de2d6f3f8e9786 --hash=sha256:0b2b64d2bb6d3fb9112bafa732def486049e63de9618b5843bcdd081d8144cd8 --hash=sha256:10955842570876604d404661fbccbc9c7e684caf432c09c715ec38fbae45ae09 --hash=sha256:122c7fa62b130ed55f8f285bfd56d5f4b4a5b503609d181f9ad85e55c89f4185 --hash=sha256:1ceae2f17a9c33cb48e3263960dc5fc8005351ee19db217e9b1bb15d28c02574 --hash=sha256:1d3193f4a680c64b4b6a9115943538edb896edc190f0b222e73761716519268e --hash=sha256:1f79682fbe303db92bc2b1136016a38a42e835d932bab5b3b1bfcfbf0640e519 --hash=sha256:2127566c664442652f024c837091890cb1942c30937add288223dc895793f898 --hash=sha256:22afcb9f253dac0696b5a4be4a1c0f8762f8239e21b99680099abd9b2b1b2269 --hash=sha256:25baf083bf6f6b341f4121c2f3c548875ee6f5339300e08be3f2b2ba1721cdd3 --hash=sha256:2e81c7b9c8979ce92ed306c249d46894776a909505d8f5a4ba55b14206e3222f --hash=sha256:3287761bc4ee9e33561a7e058c72ac0938c4f57fe49a09eae428fd88aafe7bb6 --hash=sha256:34d1c8da1e78d2e001f363791c98a272bb734000fcef47a491c1e3b0505657a8 --hash=sha256:37e55c8e51c236f95b033f6fb391d7d7970ba5fe7ff453dad675e88cf303377a --hash=sha256:3d47fa203a7bd9c5b6cee4736ee84ca03b8ef23193c0d1ca99b5089f72645c73 --hash=sha256:3e4d1f6587322d2788836a99c69062fbb091331ec940e02d12d179c1d53e25fc --hash=sha256:42cb296636fcc8b0644486d15c12376cb9fa75443e00fb25de0b8602e64c1714 --hash=sha256:45485e01ff4d3630ec0d9617310448a8702f70e9c01906b0d0118bdf9d124cf2 --hash=sha256:4a78b2b446bd7c934f5dcedc588903fb2f5eec172f3d29e52a9096a43722adfc --hash=sha256:4ab2fe47fae9e0f9dee8c04187ce5d09f48eabe611be8259444906793ab7cbce --hash=sha256:4d0d1650369165a14e14e1e47b372cfcb31d6ab44e6e33cb2d4e57265290044d --hash=sha256:549a3a73da901d5bc3ce8d24e0600d1fa85524c10287f6004fbab87672bf3e1e --hash=sha256:55086ee1064215781fff39a1af09518bc9255b50d6333f2e4c74ca09fac6a8f6 --hash=sha256:572c3763a264ba47b3cf708a44ce965d98555f618ca42c926a9c1616d8f34269 --hash=sha256:573f6eac48f4769d667c4442081b1794f52919e7edada77495aaed9236d13a96 --hash=sha256:5b4c145409bef602a690e7cfad0a15a55c13320ff7a3ad7ca59c13bb8ba4d45d --hash=sha256:6463effa3186ea09411d50efc7d85360b38d5f09b870c48e4600f63af490e56a --hash=sha256:65f6f63034100ead094b8744b3b97965785388f308a64cf8d7c34f2f2e5be0c4 --hash=sha256:663946639d296df6a2bb2aa51b60a2454ca1cb29835324c640dafb5ff2131a77 --hash=sha256:6897af51655e3691ff853668779c7bad41579facacf5fd7253b0133308cf000d --hash=sha256:68d1f8a9e9e37c1223b656399be5d6b448dea850bed7d0f87a8311f1ff3dabb0 --hash=sha256:6ac7ffc7ad6d040517be39eb591cac5ff87416c2537df6ba3cba3bae290c0fed --hash=sha256:6b3251890fff30ee142c44144871185dbe13b11bab478a88887a639655be1068 --hash=sha256:6c4caeef8fa63d06bd437cd4bdcf3ffefe6738fb1b25951440d80dc7df8c03ac --hash=sha256:6ef1d82a3af9d3eecdba2321dc1b3c238245d890843e040e41e470ffa64c3e25 --hash=sha256:753f10e867343b4511128c6ed8c82f7bec3bd026875576dfd88483c5c73b2fd8 --hash=sha256:7cd13a2e3ddeed6913a65e66e94b51d80a041145a026c27e6bb76c31a853c6ab --hash=sha256:7ed9e526742851e8d5cc9e6cf41427dfc6068d4f5a3bb03659444b4cabf6bc26 --hash=sha256:7f04c839ed0b6b98b1a7501a002144b76c18fb1c1850c8b98d458ac269e26ed2 --hash=sha256:802fe99cca7457642125a8a88a084cef28ff0cf9407060f7b93dca5aa25480db --hash=sha256:80402cd6ee291dcb72644d6eac93785fe2c8b9cb30893c1af5b8fdd753b9d40f --hash=sha256:8465322196c8b4d7ab6d1e049e4c5cb460d0394da4a27d23cc242fbf0034b6b5 --hash=sha256:86216b5cee4b06df986d214f664305142d9c76df9b6512be2738aa72a2048f99 --hash=sha256:87d1351268731db79e0f8e745d92493ee2841c974128ef629dc518b937d9194c --hash=sha256:8bdb58ff7ba23002a4c5808d608e4e6c687175724f54a5dade5fa8c67b604e4d --hash=sha256:8c622a5fe39a48f78944a87d4fb8a53ee07344641b0562c540d840748571b811 --hash=sha256:8d756e44e94489e49571086ef83b2bb8ce311e730092d2c34ca8f7d925cb20aa --hash=sha256:8f4a014bc36d3c57402e2977dada34f9c12300af536839dc38c0beab8878f38a --hash=sha256:9063e24fdb1e498ab71cb7419e24622516c4a04476b17a2dab57e8baa30d6e03 --hash=sha256:90d558489962fd4918143277a773316e56c72da56ec7aa3dc3dbbe20fdfed15b --hash=sha256:923c0c831b7cfcb071580d3f46c4baf50f174be571576556269530f4bbd79d04 --hash=sha256:95f2a5796329323b8f0512e09dbb7a1860c46a39da62ecb2324f116fa8fdc85c --hash=sha256:96b02a3dc4381e5494fad39be677abcb5e6634bf7b4fa83a6dd3112607547001 --hash=sha256:9f96df6923e21816da7e0ad3fd47dd8f94b2a5ce594e00677c0013018b813458 --hash=sha256:a10af20b82360ab00827f916a6058451b723b4e65030c5a18577c8b2de5b3389 --hash=sha256:a50aebfa173e157099939b17f18600f72f84eed3049e743b68ad15bd69b6bf99 --hash=sha256:a981a536974bbc7a512cf44ed14938cf01030a99e9b3a06dd59578882f06f985 --hash=sha256:a9a8e9031d613fd2009c182b69c7b2c1ef8239a0efb1df3f7c8da66d5dd3d537 --hash=sha256:ae5f4161f18c61806f411a13b0310bea87f987c7d2ecdbdaad0e94eb2e404238 --hash=sha256:aed38f6e4fb3f5d6bf81bfa990a07806be9d83cf7bacef998ab1a9bd660a581f --hash=sha256:b01b88d45a6fcb69667cd6d2f7a9aeb4bf53760d7fc536bf679ec94fe9f3ff3d --hash=sha256:b261ccdec7821281dade748d088bb6e9b69e6d15b30652b74cbbac25e280b796 --hash=sha256:b2b0a0c0517616b6869869f8c581d4eb2dd83a4d79e0ebcb7d373ef9956aeb0a --hash=sha256:b4a23f61ce87adf89be746c8a8974fe1c823c891d8f86eb218bb957c924bb143 --hash=sha256:bd8f7df7d12c2db9fab40bdd87a7c09b1530128315d047a086fa3ae3435cb3a8 --hash=sha256:beb58fe5cdb101e3a055192ac291b7a21e3b7ef4f67fa1d74e331a7f2124341c --hash=sha256:c002b4ffc0be611f0d9da932eb0f704fe2602a9a949d1f738e4c34c75b0863d5 --hash=sha256:c083af607d2515612056a31f0a8d9e0fcb5876b7bfc0abad3ecd275bc4ebc2d5 --hash=sha256:c180f51afb394e165eafe4ac2936a14bee3eb10debc9d9e4db8958fe36afe711 --hash=sha256:c235ebd9baae02f1b77bcea61bce332cb4331dc3617d254df3323aa01ab47bd4 --hash=sha256:cd70574b12bb8a4d2aaa0094515df2463cb429d8536cfb6c7ce983246983e5a6 --hash=sha256:d0eccceffcb53201b5bfebb52600a5fb483a20b61da9dbc885f8b103cbe7598c --hash=sha256:d965bba47ddeec8cd560687584e88cf699fd28f192ceb452d1d7ee807c5597b7 --hash=sha256:db364eca23f876da6f9e16c9da0df51aa4f104a972735574842618b8c6d999d4 --hash=sha256:ddbb2551d7e0102e7252db79ba445cdab71b26640817ab1e3e3648dad515003b --hash=sha256:deb6be0ac38ece9ba87dea880e438f25ca3eddfac8b002a2ec3d9183a454e8ae --hash=sha256:e06ed3eb3218bc64786f7db41917d4e686cc4856944f53d5bdf83a6884432e12 --hash=sha256:e27ad930a842b4c5eb8ac0016b0a54f5aebbe679340c26101df33424142c143c --hash=sha256:e537484df0d8f426ce2afb2d0f8e1c3d0b114b83f8850e5f2fbea0e797bd82ae --hash=sha256:eb00ed941194665c332bf8e078baf037d6c35d7c4f3102ea2d4f16ca94a26dc8 --hash=sha256:eb6904c354526e758fda7167b33005998fb68c46fbc10e013ca97f21ca5c8887 --hash=sha256:eb8821e09e916165e160797a6c17edda0679379a4be5c716c260e836e122f54b --hash=sha256:efcb3f6676480691518c177e3b465bcddf57cea040302f9f4e6e191af91174d4 --hash=sha256:f27273b60488abe721a075bcca6d7f3964f9f6f067c8c4c605743023d7d3944f --hash=sha256:f30c3cb33b24454a82faecaf01b19c18562b1e89558fb6c56de4d9118a032fd5 --hash=sha256:fb69256e180cb6c8a894fee62b3afebae785babc1ee98b81cdf68bbca1987f33 --hash=sha256:fd1abc0d89e30cc4e02e4064dc67fcc51bd941eb395c502aac3ec19fab46b519 --hash=sha256:ff8fa367d09b717b2a17a052544193ad76cd49979c805768879cb63d9ca50561",
  4423. "repo": "py_deps_311",
  4424. "repo_prefix": "py_deps_311_",
  4425. "whl_patches": {},
  4426. "python_interpreter": "",
  4427. "python_interpreter_target": "@@rules_python~0.27.1~python~python_3_11_aarch64-unknown-linux-gnu//:bin/python3",
  4428. "quiet": true,
  4429. "timeout": 600,
  4430. "isolated": true,
  4431. "extra_pip_args": [],
  4432. "download_only": false,
  4433. "pip_data_exclude": [],
  4434. "enable_implicit_namespace_pkgs": false,
  4435. "environment": {}
  4436. }
  4437. },
  4438. "py_deps": {
  4439. "bzlFile": "@@rules_python~0.27.1//python/private/bzlmod:pip_repository.bzl",
  4440. "ruleClassName": "pip_repository",
  4441. "attributes": {
  4442. "name": "rules_python~0.27.1~pip~py_deps",
  4443. "repo_name": "py_deps",
  4444. "whl_map": {
  4445. "certifi": [
  4446. "3.11.6"
  4447. ],
  4448. "charset_normalizer": [
  4449. "3.11.6"
  4450. ],
  4451. "gql": [
  4452. "3.11.6"
  4453. ],
  4454. "graphql_core": [
  4455. "3.11.6"
  4456. ],
  4457. "idna": [
  4458. "3.11.6"
  4459. ],
  4460. "promise": [
  4461. "3.11.6"
  4462. ],
  4463. "requests": [
  4464. "3.11.6"
  4465. ],
  4466. "rx": [
  4467. "3.11.6"
  4468. ],
  4469. "six": [
  4470. "3.11.6"
  4471. ],
  4472. "urllib3": [
  4473. "3.11.6"
  4474. ]
  4475. },
  4476. "default_version": "3.11.6"
  4477. }
  4478. },
  4479. "py_deps_311_promise": {
  4480. "bzlFile": "@@rules_python~0.27.1//python/pip_install:pip_repository.bzl",
  4481. "ruleClassName": "whl_library",
  4482. "attributes": {
  4483. "name": "rules_python~0.27.1~pip~py_deps_311_promise",
  4484. "requirement": "promise==2.3 --hash=sha256:dfd18337c523ba4b6a58801c164c1904a9d4d1b1747c7d5dbf45b693a49d93d0",
  4485. "repo": "py_deps_311",
  4486. "repo_prefix": "py_deps_311_",
  4487. "whl_patches": {},
  4488. "python_interpreter": "",
  4489. "python_interpreter_target": "@@rules_python~0.27.1~python~python_3_11_aarch64-unknown-linux-gnu//:bin/python3",
  4490. "quiet": true,
  4491. "timeout": 600,
  4492. "isolated": true,
  4493. "extra_pip_args": [],
  4494. "download_only": false,
  4495. "pip_data_exclude": [],
  4496. "enable_implicit_namespace_pkgs": false,
  4497. "environment": {}
  4498. }
  4499. },
  4500. "py_deps_311_requests": {
  4501. "bzlFile": "@@rules_python~0.27.1//python/pip_install:pip_repository.bzl",
  4502. "ruleClassName": "whl_library",
  4503. "attributes": {
  4504. "name": "rules_python~0.27.1~pip~py_deps_311_requests",
  4505. "requirement": "requests==2.31.0 --hash=sha256:58cd2187c01e70e6e26505bca751777aa9f2ee0b7f4300988b709f44e013003f --hash=sha256:942c5a758f98d790eaed1a29cb6eefc7ffb0d1cf7af05c3d2791656dbd6ad1e1",
  4506. "repo": "py_deps_311",
  4507. "repo_prefix": "py_deps_311_",
  4508. "whl_patches": {},
  4509. "python_interpreter": "",
  4510. "python_interpreter_target": "@@rules_python~0.27.1~python~python_3_11_aarch64-unknown-linux-gnu//:bin/python3",
  4511. "quiet": true,
  4512. "timeout": 600,
  4513. "isolated": true,
  4514. "extra_pip_args": [],
  4515. "download_only": false,
  4516. "pip_data_exclude": [],
  4517. "enable_implicit_namespace_pkgs": false,
  4518. "environment": {}
  4519. }
  4520. },
  4521. "py_deps_311_graphql_core": {
  4522. "bzlFile": "@@rules_python~0.27.1//python/pip_install:pip_repository.bzl",
  4523. "ruleClassName": "whl_library",
  4524. "attributes": {
  4525. "name": "rules_python~0.27.1~pip~py_deps_311_graphql_core",
  4526. "requirement": "graphql-core==2.3.2 --hash=sha256:44c9bac4514e5e30c5a595fac8e3c76c1975cae14db215e8174c7fe995825bad --hash=sha256:aac46a9ac524c9855910c14c48fc5d60474def7f99fd10245e76608eba7af746",
  4527. "repo": "py_deps_311",
  4528. "repo_prefix": "py_deps_311_",
  4529. "whl_patches": {},
  4530. "python_interpreter": "",
  4531. "python_interpreter_target": "@@rules_python~0.27.1~python~python_3_11_aarch64-unknown-linux-gnu//:bin/python3",
  4532. "quiet": true,
  4533. "timeout": 600,
  4534. "isolated": true,
  4535. "extra_pip_args": [],
  4536. "download_only": false,
  4537. "pip_data_exclude": [],
  4538. "enable_implicit_namespace_pkgs": false,
  4539. "environment": {}
  4540. }
  4541. },
  4542. "py_deps_311_six": {
  4543. "bzlFile": "@@rules_python~0.27.1//python/pip_install:pip_repository.bzl",
  4544. "ruleClassName": "whl_library",
  4545. "attributes": {
  4546. "name": "rules_python~0.27.1~pip~py_deps_311_six",
  4547. "requirement": "six==1.16.0 --hash=sha256:1e61c37477a1626458e36f7b1d82aa5c9b094fa4802892072e49de9c60c4c926 --hash=sha256:8abb2f1d86890a2dfb989f9a77cfcfd3e47c2a354b01111771326f8aa26e0254",
  4548. "repo": "py_deps_311",
  4549. "repo_prefix": "py_deps_311_",
  4550. "whl_patches": {},
  4551. "python_interpreter": "",
  4552. "python_interpreter_target": "@@rules_python~0.27.1~python~python_3_11_aarch64-unknown-linux-gnu//:bin/python3",
  4553. "quiet": true,
  4554. "timeout": 600,
  4555. "isolated": true,
  4556. "extra_pip_args": [],
  4557. "download_only": false,
  4558. "pip_data_exclude": [],
  4559. "enable_implicit_namespace_pkgs": false,
  4560. "environment": {}
  4561. }
  4562. },
  4563. "py_deps_311_gql": {
  4564. "bzlFile": "@@rules_python~0.27.1//python/pip_install:pip_repository.bzl",
  4565. "ruleClassName": "whl_library",
  4566. "attributes": {
  4567. "name": "rules_python~0.27.1~pip~py_deps_311_gql",
  4568. "requirement": "gql==2.0.0 --hash=sha256:35032ddd4bfe6b8f3169f806b022168932385d751eacc5c5f7122e0b3f4d6b88 --hash=sha256:fe8d3a08047f77362ddfcfddba7cae377da2dd66f5e61c59820419c9283d4fb5",
  4569. "repo": "py_deps_311",
  4570. "repo_prefix": "py_deps_311_",
  4571. "whl_patches": {},
  4572. "python_interpreter": "",
  4573. "python_interpreter_target": "@@rules_python~0.27.1~python~python_3_11_aarch64-unknown-linux-gnu//:bin/python3",
  4574. "quiet": true,
  4575. "timeout": 600,
  4576. "isolated": true,
  4577. "extra_pip_args": [],
  4578. "download_only": false,
  4579. "pip_data_exclude": [],
  4580. "enable_implicit_namespace_pkgs": false,
  4581. "environment": {}
  4582. }
  4583. },
  4584. "py_deps_311_rx": {
  4585. "bzlFile": "@@rules_python~0.27.1//python/pip_install:pip_repository.bzl",
  4586. "ruleClassName": "whl_library",
  4587. "attributes": {
  4588. "name": "rules_python~0.27.1~pip~py_deps_311_rx",
  4589. "requirement": "rx==1.6.3 --hash=sha256:ca71b65d0fc0603a3b5cfaa9e33f5ba81e4aae10a58491133595088d7734b2da",
  4590. "repo": "py_deps_311",
  4591. "repo_prefix": "py_deps_311_",
  4592. "whl_patches": {},
  4593. "python_interpreter": "",
  4594. "python_interpreter_target": "@@rules_python~0.27.1~python~python_3_11_aarch64-unknown-linux-gnu//:bin/python3",
  4595. "quiet": true,
  4596. "timeout": 600,
  4597. "isolated": true,
  4598. "extra_pip_args": [],
  4599. "download_only": false,
  4600. "pip_data_exclude": [],
  4601. "enable_implicit_namespace_pkgs": false,
  4602. "environment": {}
  4603. }
  4604. },
  4605. "py_deps_311_certifi": {
  4606. "bzlFile": "@@rules_python~0.27.1//python/pip_install:pip_repository.bzl",
  4607. "ruleClassName": "whl_library",
  4608. "attributes": {
  4609. "name": "rules_python~0.27.1~pip~py_deps_311_certifi",
  4610. "requirement": "certifi==2023.11.17 --hash=sha256:9b469f3a900bf28dc19b8cfbf8019bf47f7fdd1a65a1d4ffb98fc14166beb4d1 --hash=sha256:e036ab49d5b79556f99cfc2d9320b34cfbe5be05c5871b51de9329f0603b0474",
  4611. "repo": "py_deps_311",
  4612. "repo_prefix": "py_deps_311_",
  4613. "whl_patches": {},
  4614. "python_interpreter": "",
  4615. "python_interpreter_target": "@@rules_python~0.27.1~python~python_3_11_aarch64-unknown-linux-gnu//:bin/python3",
  4616. "quiet": true,
  4617. "timeout": 600,
  4618. "isolated": true,
  4619. "extra_pip_args": [],
  4620. "download_only": false,
  4621. "pip_data_exclude": [],
  4622. "enable_implicit_namespace_pkgs": false,
  4623. "environment": {}
  4624. }
  4625. },
  4626. "py_deps_311_urllib3": {
  4627. "bzlFile": "@@rules_python~0.27.1//python/pip_install:pip_repository.bzl",
  4628. "ruleClassName": "whl_library",
  4629. "attributes": {
  4630. "name": "rules_python~0.27.1~pip~py_deps_311_urllib3",
  4631. "requirement": "urllib3==2.1.0 --hash=sha256:55901e917a5896a349ff771be919f8bd99aff50b79fe58fec595eb37bbc56bb3 --hash=sha256:df7aa8afb0148fa78488e7899b2c59b5f4ffcfa82e6c54ccb9dd37c1d7b52d54",
  4632. "repo": "py_deps_311",
  4633. "repo_prefix": "py_deps_311_",
  4634. "whl_patches": {},
  4635. "python_interpreter": "",
  4636. "python_interpreter_target": "@@rules_python~0.27.1~python~python_3_11_aarch64-unknown-linux-gnu//:bin/python3",
  4637. "quiet": true,
  4638. "timeout": 600,
  4639. "isolated": true,
  4640. "extra_pip_args": [],
  4641. "download_only": false,
  4642. "pip_data_exclude": [],
  4643. "enable_implicit_namespace_pkgs": false,
  4644. "environment": {}
  4645. }
  4646. },
  4647. "py_deps_311_idna": {
  4648. "bzlFile": "@@rules_python~0.27.1//python/pip_install:pip_repository.bzl",
  4649. "ruleClassName": "whl_library",
  4650. "attributes": {
  4651. "name": "rules_python~0.27.1~pip~py_deps_311_idna",
  4652. "requirement": "idna==3.6 --hash=sha256:9ecdbbd083b06798ae1e86adcbfe8ab1479cf864e4ee30fe4e46a003d12491ca --hash=sha256:c05567e9c24a6b9faaa835c4821bad0590fbb9d5779e7caa6e1cc4978e7eb24f",
  4653. "repo": "py_deps_311",
  4654. "repo_prefix": "py_deps_311_",
  4655. "whl_patches": {},
  4656. "python_interpreter": "",
  4657. "python_interpreter_target": "@@rules_python~0.27.1~python~python_3_11_aarch64-unknown-linux-gnu//:bin/python3",
  4658. "quiet": true,
  4659. "timeout": 600,
  4660. "isolated": true,
  4661. "extra_pip_args": [],
  4662. "download_only": false,
  4663. "pip_data_exclude": [],
  4664. "enable_implicit_namespace_pkgs": false,
  4665. "environment": {}
  4666. }
  4667. }
  4668. }
  4669. }
  4670. },
  4671. "@@rules_python~0.27.1//python/extensions:python.bzl%python": {
  4672. "general": {
  4673. "bzlTransitiveDigest": "sBUIrhzhZtq8rynvWnwm1dcZK05YfGluNUI/gOjLs2A=",
  4674. "accumulatedFileDigests": {},
  4675. "envVariables": {},
  4676. "generatedRepoSpecs": {
  4677. "python_3_11_s390x-unknown-linux-gnu": {
  4678. "bzlFile": "@@rules_python~0.27.1//python:repositories.bzl",
  4679. "ruleClassName": "python_repository",
  4680. "attributes": {
  4681. "name": "rules_python~0.27.1~python~python_3_11_s390x-unknown-linux-gnu",
  4682. "sha256": "f9f19823dba3209cedc4647b00f46ed0177242917db20fb7fb539970e384531c",
  4683. "patches": [],
  4684. "platform": "s390x-unknown-linux-gnu",
  4685. "python_version": "3.11.6",
  4686. "release_filename": "20231002/cpython-3.11.6+20231002-s390x-unknown-linux-gnu-install_only.tar.gz",
  4687. "urls": [
  4688. "https://github.com/indygreg/python-build-standalone/releases/download/20231002/cpython-3.11.6+20231002-s390x-unknown-linux-gnu-install_only.tar.gz"
  4689. ],
  4690. "distutils_content": "",
  4691. "strip_prefix": "python",
  4692. "coverage_tool": "",
  4693. "ignore_root_user_error": false
  4694. }
  4695. },
  4696. "python_3_11": {
  4697. "bzlFile": "@@rules_python~0.27.1//python/private:toolchains_repo.bzl",
  4698. "ruleClassName": "toolchain_aliases",
  4699. "attributes": {
  4700. "name": "rules_python~0.27.1~python~python_3_11",
  4701. "python_version": "3.11.6",
  4702. "user_repository_name": "python_3_11",
  4703. "platforms": [
  4704. "aarch64-apple-darwin",
  4705. "aarch64-unknown-linux-gnu",
  4706. "ppc64le-unknown-linux-gnu",
  4707. "s390x-unknown-linux-gnu",
  4708. "x86_64-apple-darwin",
  4709. "x86_64-pc-windows-msvc",
  4710. "x86_64-unknown-linux-gnu"
  4711. ]
  4712. }
  4713. },
  4714. "python_3_11_aarch64-unknown-linux-gnu": {
  4715. "bzlFile": "@@rules_python~0.27.1//python:repositories.bzl",
  4716. "ruleClassName": "python_repository",
  4717. "attributes": {
  4718. "name": "rules_python~0.27.1~python~python_3_11_aarch64-unknown-linux-gnu",
  4719. "sha256": "3e26a672df17708c4dc928475a5974c3fb3a34a9b45c65fb4bd1e50504cc84ec",
  4720. "patches": [],
  4721. "platform": "aarch64-unknown-linux-gnu",
  4722. "python_version": "3.11.6",
  4723. "release_filename": "20231002/cpython-3.11.6+20231002-aarch64-unknown-linux-gnu-install_only.tar.gz",
  4724. "urls": [
  4725. "https://github.com/indygreg/python-build-standalone/releases/download/20231002/cpython-3.11.6+20231002-aarch64-unknown-linux-gnu-install_only.tar.gz"
  4726. ],
  4727. "distutils_content": "",
  4728. "strip_prefix": "python",
  4729. "coverage_tool": "",
  4730. "ignore_root_user_error": false
  4731. }
  4732. },
  4733. "python_3_11_aarch64-apple-darwin": {
  4734. "bzlFile": "@@rules_python~0.27.1//python:repositories.bzl",
  4735. "ruleClassName": "python_repository",
  4736. "attributes": {
  4737. "name": "rules_python~0.27.1~python~python_3_11_aarch64-apple-darwin",
  4738. "sha256": "916c35125b5d8323a21526d7a9154ca626453f63d0878e95b9f613a95006c990",
  4739. "patches": [],
  4740. "platform": "aarch64-apple-darwin",
  4741. "python_version": "3.11.6",
  4742. "release_filename": "20231002/cpython-3.11.6+20231002-aarch64-apple-darwin-install_only.tar.gz",
  4743. "urls": [
  4744. "https://github.com/indygreg/python-build-standalone/releases/download/20231002/cpython-3.11.6+20231002-aarch64-apple-darwin-install_only.tar.gz"
  4745. ],
  4746. "distutils_content": "",
  4747. "strip_prefix": "python",
  4748. "coverage_tool": "",
  4749. "ignore_root_user_error": false
  4750. }
  4751. },
  4752. "python_3_11_ppc64le-unknown-linux-gnu": {
  4753. "bzlFile": "@@rules_python~0.27.1//python:repositories.bzl",
  4754. "ruleClassName": "python_repository",
  4755. "attributes": {
  4756. "name": "rules_python~0.27.1~python~python_3_11_ppc64le-unknown-linux-gnu",
  4757. "sha256": "7937035f690a624dba4d014ffd20c342e843dd46f89b0b0a1e5726b85deb8eaf",
  4758. "patches": [],
  4759. "platform": "ppc64le-unknown-linux-gnu",
  4760. "python_version": "3.11.6",
  4761. "release_filename": "20231002/cpython-3.11.6+20231002-ppc64le-unknown-linux-gnu-install_only.tar.gz",
  4762. "urls": [
  4763. "https://github.com/indygreg/python-build-standalone/releases/download/20231002/cpython-3.11.6+20231002-ppc64le-unknown-linux-gnu-install_only.tar.gz"
  4764. ],
  4765. "distutils_content": "",
  4766. "strip_prefix": "python",
  4767. "coverage_tool": "",
  4768. "ignore_root_user_error": false
  4769. }
  4770. },
  4771. "python_3_11_x86_64-apple-darwin": {
  4772. "bzlFile": "@@rules_python~0.27.1//python:repositories.bzl",
  4773. "ruleClassName": "python_repository",
  4774. "attributes": {
  4775. "name": "rules_python~0.27.1~python~python_3_11_x86_64-apple-darwin",
  4776. "sha256": "178cb1716c2abc25cb56ae915096c1a083e60abeba57af001996e8bc6ce1a371",
  4777. "patches": [],
  4778. "platform": "x86_64-apple-darwin",
  4779. "python_version": "3.11.6",
  4780. "release_filename": "20231002/cpython-3.11.6+20231002-x86_64-apple-darwin-install_only.tar.gz",
  4781. "urls": [
  4782. "https://github.com/indygreg/python-build-standalone/releases/download/20231002/cpython-3.11.6+20231002-x86_64-apple-darwin-install_only.tar.gz"
  4783. ],
  4784. "distutils_content": "",
  4785. "strip_prefix": "python",
  4786. "coverage_tool": "",
  4787. "ignore_root_user_error": false
  4788. }
  4789. },
  4790. "pythons_hub": {
  4791. "bzlFile": "@@rules_python~0.27.1//python/private/bzlmod:pythons_hub.bzl",
  4792. "ruleClassName": "hub_repo",
  4793. "attributes": {
  4794. "name": "rules_python~0.27.1~python~pythons_hub",
  4795. "default_python_version": "3.11",
  4796. "toolchain_prefixes": [
  4797. "_0000_python_3_11_"
  4798. ],
  4799. "toolchain_python_versions": [
  4800. "3.11"
  4801. ],
  4802. "toolchain_set_python_version_constraints": [
  4803. "False"
  4804. ],
  4805. "toolchain_user_repository_names": [
  4806. "python_3_11"
  4807. ]
  4808. }
  4809. },
  4810. "python_versions": {
  4811. "bzlFile": "@@rules_python~0.27.1//python/private:toolchains_repo.bzl",
  4812. "ruleClassName": "multi_toolchain_aliases",
  4813. "attributes": {
  4814. "name": "rules_python~0.27.1~python~python_versions",
  4815. "python_versions": {
  4816. "3.11": "python_3_11"
  4817. }
  4818. }
  4819. },
  4820. "python_3_11_x86_64-pc-windows-msvc": {
  4821. "bzlFile": "@@rules_python~0.27.1//python:repositories.bzl",
  4822. "ruleClassName": "python_repository",
  4823. "attributes": {
  4824. "name": "rules_python~0.27.1~python~python_3_11_x86_64-pc-windows-msvc",
  4825. "sha256": "3933545e6d41462dd6a47e44133ea40995bc6efeed8c2e4cbdf1a699303e95ea",
  4826. "patches": [],
  4827. "platform": "x86_64-pc-windows-msvc",
  4828. "python_version": "3.11.6",
  4829. "release_filename": "20231002/cpython-3.11.6+20231002-x86_64-pc-windows-msvc-shared-install_only.tar.gz",
  4830. "urls": [
  4831. "https://github.com/indygreg/python-build-standalone/releases/download/20231002/cpython-3.11.6+20231002-x86_64-pc-windows-msvc-shared-install_only.tar.gz"
  4832. ],
  4833. "distutils_content": "",
  4834. "strip_prefix": "python",
  4835. "coverage_tool": "",
  4836. "ignore_root_user_error": false
  4837. }
  4838. },
  4839. "python_3_11_x86_64-unknown-linux-gnu": {
  4840. "bzlFile": "@@rules_python~0.27.1//python:repositories.bzl",
  4841. "ruleClassName": "python_repository",
  4842. "attributes": {
  4843. "name": "rules_python~0.27.1~python~python_3_11_x86_64-unknown-linux-gnu",
  4844. "sha256": "ee37a7eae6e80148c7e3abc56e48a397c1664f044920463ad0df0fc706eacea8",
  4845. "patches": [],
  4846. "platform": "x86_64-unknown-linux-gnu",
  4847. "python_version": "3.11.6",
  4848. "release_filename": "20231002/cpython-3.11.6+20231002-x86_64-unknown-linux-gnu-install_only.tar.gz",
  4849. "urls": [
  4850. "https://github.com/indygreg/python-build-standalone/releases/download/20231002/cpython-3.11.6+20231002-x86_64-unknown-linux-gnu-install_only.tar.gz"
  4851. ],
  4852. "distutils_content": "",
  4853. "strip_prefix": "python",
  4854. "coverage_tool": "",
  4855. "ignore_root_user_error": false
  4856. }
  4857. }
  4858. }
  4859. }
  4860. },
  4861. "@@rules_python~0.27.1//python/private/bzlmod:internal_deps.bzl%internal_deps": {
  4862. "general": {
  4863. "bzlTransitiveDigest": "xr7pKQvGhawsuA61pquXxuhuxlzM5QyWfF9UXfyr2Y4=",
  4864. "accumulatedFileDigests": {},
  4865. "envVariables": {},
  4866. "generatedRepoSpecs": {
  4867. "pypi__wheel": {
  4868. "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl",
  4869. "ruleClassName": "http_archive",
  4870. "attributes": {
  4871. "name": "rules_python~0.27.1~internal_deps~pypi__wheel",
  4872. "url": "https://files.pythonhosted.org/packages/b8/8b/31273bf66016be6ad22bb7345c37ff350276cfd46e389a0c2ac5da9d9073/wheel-0.41.2-py3-none-any.whl",
  4873. "sha256": "75909db2664838d015e3d9139004ee16711748a52c8f336b52882266540215d8",
  4874. "type": "zip",
  4875. "build_file_content": "package(default_visibility = [\"//visibility:public\"])\n\nload(\"@rules_python//python:defs.bzl\", \"py_library\")\n\npy_library(\n name = \"lib\",\n srcs = glob([\"**/*.py\"]),\n data = glob([\"**/*\"], exclude=[\n # These entries include those put into user-installed dependencies by\n # data_exclude in /python/pip_install/tools/bazel.py\n # to avoid non-determinism following pip install's behavior.\n \"**/*.py\",\n \"**/*.pyc\",\n \"**/*.pyc.*\", # During pyc creation, temp files named *.pyc.NNN are created\n \"**/* *\",\n \"**/*.dist-info/RECORD\",\n \"BUILD\",\n \"WORKSPACE\",\n ]),\n # This makes this directory a top-level in the python import\n # search path for anything that depends on this.\n imports = [\".\"],\n)\n"
  4876. }
  4877. },
  4878. "pypi__click": {
  4879. "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl",
  4880. "ruleClassName": "http_archive",
  4881. "attributes": {
  4882. "name": "rules_python~0.27.1~internal_deps~pypi__click",
  4883. "url": "https://files.pythonhosted.org/packages/00/2e/d53fa4befbf2cfa713304affc7ca780ce4fc1fd8710527771b58311a3229/click-8.1.7-py3-none-any.whl",
  4884. "sha256": "ae74fb96c20a0277a1d615f1e4d73c8414f5a98db8b799a7931d1582f3390c28",
  4885. "type": "zip",
  4886. "build_file_content": "package(default_visibility = [\"//visibility:public\"])\n\nload(\"@rules_python//python:defs.bzl\", \"py_library\")\n\npy_library(\n name = \"lib\",\n srcs = glob([\"**/*.py\"]),\n data = glob([\"**/*\"], exclude=[\n # These entries include those put into user-installed dependencies by\n # data_exclude in /python/pip_install/tools/bazel.py\n # to avoid non-determinism following pip install's behavior.\n \"**/*.py\",\n \"**/*.pyc\",\n \"**/*.pyc.*\", # During pyc creation, temp files named *.pyc.NNN are created\n \"**/* *\",\n \"**/*.dist-info/RECORD\",\n \"BUILD\",\n \"WORKSPACE\",\n ]),\n # This makes this directory a top-level in the python import\n # search path for anything that depends on this.\n imports = [\".\"],\n)\n"
  4887. }
  4888. },
  4889. "pypi__importlib_metadata": {
  4890. "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl",
  4891. "ruleClassName": "http_archive",
  4892. "attributes": {
  4893. "name": "rules_python~0.27.1~internal_deps~pypi__importlib_metadata",
  4894. "url": "https://files.pythonhosted.org/packages/cc/37/db7ba97e676af155f5fcb1a35466f446eadc9104e25b83366e8088c9c926/importlib_metadata-6.8.0-py3-none-any.whl",
  4895. "sha256": "3ebb78df84a805d7698245025b975d9d67053cd94c79245ba4b3eb694abe68bb",
  4896. "type": "zip",
  4897. "build_file_content": "package(default_visibility = [\"//visibility:public\"])\n\nload(\"@rules_python//python:defs.bzl\", \"py_library\")\n\npy_library(\n name = \"lib\",\n srcs = glob([\"**/*.py\"]),\n data = glob([\"**/*\"], exclude=[\n # These entries include those put into user-installed dependencies by\n # data_exclude in /python/pip_install/tools/bazel.py\n # to avoid non-determinism following pip install's behavior.\n \"**/*.py\",\n \"**/*.pyc\",\n \"**/*.pyc.*\", # During pyc creation, temp files named *.pyc.NNN are created\n \"**/* *\",\n \"**/*.dist-info/RECORD\",\n \"BUILD\",\n \"WORKSPACE\",\n ]),\n # This makes this directory a top-level in the python import\n # search path for anything that depends on this.\n imports = [\".\"],\n)\n"
  4898. }
  4899. },
  4900. "pypi__pyproject_hooks": {
  4901. "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl",
  4902. "ruleClassName": "http_archive",
  4903. "attributes": {
  4904. "name": "rules_python~0.27.1~internal_deps~pypi__pyproject_hooks",
  4905. "url": "https://files.pythonhosted.org/packages/d5/ea/9ae603de7fbb3df820b23a70f6aff92bf8c7770043254ad8d2dc9d6bcba4/pyproject_hooks-1.0.0-py3-none-any.whl",
  4906. "sha256": "283c11acd6b928d2f6a7c73fa0d01cb2bdc5f07c57a2eeb6e83d5e56b97976f8",
  4907. "type": "zip",
  4908. "build_file_content": "package(default_visibility = [\"//visibility:public\"])\n\nload(\"@rules_python//python:defs.bzl\", \"py_library\")\n\npy_library(\n name = \"lib\",\n srcs = glob([\"**/*.py\"]),\n data = glob([\"**/*\"], exclude=[\n # These entries include those put into user-installed dependencies by\n # data_exclude in /python/pip_install/tools/bazel.py\n # to avoid non-determinism following pip install's behavior.\n \"**/*.py\",\n \"**/*.pyc\",\n \"**/*.pyc.*\", # During pyc creation, temp files named *.pyc.NNN are created\n \"**/* *\",\n \"**/*.dist-info/RECORD\",\n \"BUILD\",\n \"WORKSPACE\",\n ]),\n # This makes this directory a top-level in the python import\n # search path for anything that depends on this.\n imports = [\".\"],\n)\n"
  4909. }
  4910. },
  4911. "pypi__pep517": {
  4912. "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl",
  4913. "ruleClassName": "http_archive",
  4914. "attributes": {
  4915. "name": "rules_python~0.27.1~internal_deps~pypi__pep517",
  4916. "url": "https://files.pythonhosted.org/packages/ee/2f/ef63e64e9429111e73d3d6cbee80591672d16f2725e648ebc52096f3d323/pep517-0.13.0-py3-none-any.whl",
  4917. "sha256": "4ba4446d80aed5b5eac6509ade100bff3e7943a8489de249654a5ae9b33ee35b",
  4918. "type": "zip",
  4919. "build_file_content": "package(default_visibility = [\"//visibility:public\"])\n\nload(\"@rules_python//python:defs.bzl\", \"py_library\")\n\npy_library(\n name = \"lib\",\n srcs = glob([\"**/*.py\"]),\n data = glob([\"**/*\"], exclude=[\n # These entries include those put into user-installed dependencies by\n # data_exclude in /python/pip_install/tools/bazel.py\n # to avoid non-determinism following pip install's behavior.\n \"**/*.py\",\n \"**/*.pyc\",\n \"**/*.pyc.*\", # During pyc creation, temp files named *.pyc.NNN are created\n \"**/* *\",\n \"**/*.dist-info/RECORD\",\n \"BUILD\",\n \"WORKSPACE\",\n ]),\n # This makes this directory a top-level in the python import\n # search path for anything that depends on this.\n imports = [\".\"],\n)\n"
  4920. }
  4921. },
  4922. "pypi__packaging": {
  4923. "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl",
  4924. "ruleClassName": "http_archive",
  4925. "attributes": {
  4926. "name": "rules_python~0.27.1~internal_deps~pypi__packaging",
  4927. "url": "https://files.pythonhosted.org/packages/ab/c3/57f0601a2d4fe15de7a553c00adbc901425661bf048f2a22dfc500caf121/packaging-23.1-py3-none-any.whl",
  4928. "sha256": "994793af429502c4ea2ebf6bf664629d07c1a9fe974af92966e4b8d2df7edc61",
  4929. "type": "zip",
  4930. "build_file_content": "package(default_visibility = [\"//visibility:public\"])\n\nload(\"@rules_python//python:defs.bzl\", \"py_library\")\n\npy_library(\n name = \"lib\",\n srcs = glob([\"**/*.py\"]),\n data = glob([\"**/*\"], exclude=[\n # These entries include those put into user-installed dependencies by\n # data_exclude in /python/pip_install/tools/bazel.py\n # to avoid non-determinism following pip install's behavior.\n \"**/*.py\",\n \"**/*.pyc\",\n \"**/*.pyc.*\", # During pyc creation, temp files named *.pyc.NNN are created\n \"**/* *\",\n \"**/*.dist-info/RECORD\",\n \"BUILD\",\n \"WORKSPACE\",\n ]),\n # This makes this directory a top-level in the python import\n # search path for anything that depends on this.\n imports = [\".\"],\n)\n"
  4931. }
  4932. },
  4933. "pypi__pip_tools": {
  4934. "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl",
  4935. "ruleClassName": "http_archive",
  4936. "attributes": {
  4937. "name": "rules_python~0.27.1~internal_deps~pypi__pip_tools",
  4938. "url": "https://files.pythonhosted.org/packages/e8/df/47e6267c6b5cdae867adbdd84b437393e6202ce4322de0a5e0b92960e1d6/pip_tools-7.3.0-py3-none-any.whl",
  4939. "sha256": "8717693288720a8c6ebd07149c93ab0be1fced0b5191df9e9decd3263e20d85e",
  4940. "type": "zip",
  4941. "build_file_content": "package(default_visibility = [\"//visibility:public\"])\n\nload(\"@rules_python//python:defs.bzl\", \"py_library\")\n\npy_library(\n name = \"lib\",\n srcs = glob([\"**/*.py\"]),\n data = glob([\"**/*\"], exclude=[\n # These entries include those put into user-installed dependencies by\n # data_exclude in /python/pip_install/tools/bazel.py\n # to avoid non-determinism following pip install's behavior.\n \"**/*.py\",\n \"**/*.pyc\",\n \"**/*.pyc.*\", # During pyc creation, temp files named *.pyc.NNN are created\n \"**/* *\",\n \"**/*.dist-info/RECORD\",\n \"BUILD\",\n \"WORKSPACE\",\n ]),\n # This makes this directory a top-level in the python import\n # search path for anything that depends on this.\n imports = [\".\"],\n)\n"
  4942. }
  4943. },
  4944. "pypi__setuptools": {
  4945. "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl",
  4946. "ruleClassName": "http_archive",
  4947. "attributes": {
  4948. "name": "rules_python~0.27.1~internal_deps~pypi__setuptools",
  4949. "url": "https://files.pythonhosted.org/packages/4f/ab/0bcfebdfc3bfa8554b2b2c97a555569c4c1ebc74ea288741ea8326c51906/setuptools-68.1.2-py3-none-any.whl",
  4950. "sha256": "3d8083eed2d13afc9426f227b24fd1659489ec107c0e86cec2ffdde5c92e790b",
  4951. "type": "zip",
  4952. "build_file_content": "package(default_visibility = [\"//visibility:public\"])\n\nload(\"@rules_python//python:defs.bzl\", \"py_library\")\n\npy_library(\n name = \"lib\",\n srcs = glob([\"**/*.py\"]),\n data = glob([\"**/*\"], exclude=[\n # These entries include those put into user-installed dependencies by\n # data_exclude in /python/pip_install/tools/bazel.py\n # to avoid non-determinism following pip install's behavior.\n \"**/*.py\",\n \"**/*.pyc\",\n \"**/*.pyc.*\", # During pyc creation, temp files named *.pyc.NNN are created\n \"**/* *\",\n \"**/*.dist-info/RECORD\",\n \"BUILD\",\n \"WORKSPACE\",\n ]),\n # This makes this directory a top-level in the python import\n # search path for anything that depends on this.\n imports = [\".\"],\n)\n"
  4953. }
  4954. },
  4955. "pypi__zipp": {
  4956. "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl",
  4957. "ruleClassName": "http_archive",
  4958. "attributes": {
  4959. "name": "rules_python~0.27.1~internal_deps~pypi__zipp",
  4960. "url": "https://files.pythonhosted.org/packages/8c/08/d3006317aefe25ea79d3b76c9650afabaf6d63d1c8443b236e7405447503/zipp-3.16.2-py3-none-any.whl",
  4961. "sha256": "679e51dd4403591b2d6838a48de3d283f3d188412a9782faadf845f298736ba0",
  4962. "type": "zip",
  4963. "build_file_content": "package(default_visibility = [\"//visibility:public\"])\n\nload(\"@rules_python//python:defs.bzl\", \"py_library\")\n\npy_library(\n name = \"lib\",\n srcs = glob([\"**/*.py\"]),\n data = glob([\"**/*\"], exclude=[\n # These entries include those put into user-installed dependencies by\n # data_exclude in /python/pip_install/tools/bazel.py\n # to avoid non-determinism following pip install's behavior.\n \"**/*.py\",\n \"**/*.pyc\",\n \"**/*.pyc.*\", # During pyc creation, temp files named *.pyc.NNN are created\n \"**/* *\",\n \"**/*.dist-info/RECORD\",\n \"BUILD\",\n \"WORKSPACE\",\n ]),\n # This makes this directory a top-level in the python import\n # search path for anything that depends on this.\n imports = [\".\"],\n)\n"
  4964. }
  4965. },
  4966. "pypi__colorama": {
  4967. "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl",
  4968. "ruleClassName": "http_archive",
  4969. "attributes": {
  4970. "name": "rules_python~0.27.1~internal_deps~pypi__colorama",
  4971. "url": "https://files.pythonhosted.org/packages/d1/d6/3965ed04c63042e047cb6a3e6ed1a63a35087b6a609aa3a15ed8ac56c221/colorama-0.4.6-py2.py3-none-any.whl",
  4972. "sha256": "4f1d9991f5acc0ca119f9d443620b77f9d6b33703e51011c16baf57afb285fc6",
  4973. "type": "zip",
  4974. "build_file_content": "package(default_visibility = [\"//visibility:public\"])\n\nload(\"@rules_python//python:defs.bzl\", \"py_library\")\n\npy_library(\n name = \"lib\",\n srcs = glob([\"**/*.py\"]),\n data = glob([\"**/*\"], exclude=[\n # These entries include those put into user-installed dependencies by\n # data_exclude in /python/pip_install/tools/bazel.py\n # to avoid non-determinism following pip install's behavior.\n \"**/*.py\",\n \"**/*.pyc\",\n \"**/*.pyc.*\", # During pyc creation, temp files named *.pyc.NNN are created\n \"**/* *\",\n \"**/*.dist-info/RECORD\",\n \"BUILD\",\n \"WORKSPACE\",\n ]),\n # This makes this directory a top-level in the python import\n # search path for anything that depends on this.\n imports = [\".\"],\n)\n"
  4975. }
  4976. },
  4977. "pypi__build": {
  4978. "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl",
  4979. "ruleClassName": "http_archive",
  4980. "attributes": {
  4981. "name": "rules_python~0.27.1~internal_deps~pypi__build",
  4982. "url": "https://files.pythonhosted.org/packages/58/91/17b00d5fac63d3dca605f1b8269ba3c65e98059e1fd99d00283e42a454f0/build-0.10.0-py3-none-any.whl",
  4983. "sha256": "af266720050a66c893a6096a2f410989eeac74ff9a68ba194b3f6473e8e26171",
  4984. "type": "zip",
  4985. "build_file_content": "package(default_visibility = [\"//visibility:public\"])\n\nload(\"@rules_python//python:defs.bzl\", \"py_library\")\n\npy_library(\n name = \"lib\",\n srcs = glob([\"**/*.py\"]),\n data = glob([\"**/*\"], exclude=[\n # These entries include those put into user-installed dependencies by\n # data_exclude in /python/pip_install/tools/bazel.py\n # to avoid non-determinism following pip install's behavior.\n \"**/*.py\",\n \"**/*.pyc\",\n \"**/*.pyc.*\", # During pyc creation, temp files named *.pyc.NNN are created\n \"**/* *\",\n \"**/*.dist-info/RECORD\",\n \"BUILD\",\n \"WORKSPACE\",\n ]),\n # This makes this directory a top-level in the python import\n # search path for anything that depends on this.\n imports = [\".\"],\n)\n"
  4986. }
  4987. },
  4988. "rules_python_internal": {
  4989. "bzlFile": "@@rules_python~0.27.1//python/private:internal_config_repo.bzl",
  4990. "ruleClassName": "internal_config_repo",
  4991. "attributes": {
  4992. "name": "rules_python~0.27.1~internal_deps~rules_python_internal"
  4993. }
  4994. },
  4995. "pypi__pip": {
  4996. "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl",
  4997. "ruleClassName": "http_archive",
  4998. "attributes": {
  4999. "name": "rules_python~0.27.1~internal_deps~pypi__pip",
  5000. "url": "https://files.pythonhosted.org/packages/50/c2/e06851e8cc28dcad7c155f4753da8833ac06a5c704c109313b8d5a62968a/pip-23.2.1-py3-none-any.whl",
  5001. "sha256": "7ccf472345f20d35bdc9d1841ff5f313260c2c33fe417f48c30ac46cccabf5be",
  5002. "type": "zip",
  5003. "build_file_content": "package(default_visibility = [\"//visibility:public\"])\n\nload(\"@rules_python//python:defs.bzl\", \"py_library\")\n\npy_library(\n name = \"lib\",\n srcs = glob([\"**/*.py\"]),\n data = glob([\"**/*\"], exclude=[\n # These entries include those put into user-installed dependencies by\n # data_exclude in /python/pip_install/tools/bazel.py\n # to avoid non-determinism following pip install's behavior.\n \"**/*.py\",\n \"**/*.pyc\",\n \"**/*.pyc.*\", # During pyc creation, temp files named *.pyc.NNN are created\n \"**/* *\",\n \"**/*.dist-info/RECORD\",\n \"BUILD\",\n \"WORKSPACE\",\n ]),\n # This makes this directory a top-level in the python import\n # search path for anything that depends on this.\n imports = [\".\"],\n)\n"
  5004. }
  5005. },
  5006. "pypi__installer": {
  5007. "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl",
  5008. "ruleClassName": "http_archive",
  5009. "attributes": {
  5010. "name": "rules_python~0.27.1~internal_deps~pypi__installer",
  5011. "url": "https://files.pythonhosted.org/packages/e5/ca/1172b6638d52f2d6caa2dd262ec4c811ba59eee96d54a7701930726bce18/installer-0.7.0-py3-none-any.whl",
  5012. "sha256": "05d1933f0a5ba7d8d6296bb6d5018e7c94fa473ceb10cf198a92ccea19c27b53",
  5013. "type": "zip",
  5014. "build_file_content": "package(default_visibility = [\"//visibility:public\"])\n\nload(\"@rules_python//python:defs.bzl\", \"py_library\")\n\npy_library(\n name = \"lib\",\n srcs = glob([\"**/*.py\"]),\n data = glob([\"**/*\"], exclude=[\n # These entries include those put into user-installed dependencies by\n # data_exclude in /python/pip_install/tools/bazel.py\n # to avoid non-determinism following pip install's behavior.\n \"**/*.py\",\n \"**/*.pyc\",\n \"**/*.pyc.*\", # During pyc creation, temp files named *.pyc.NNN are created\n \"**/* *\",\n \"**/*.dist-info/RECORD\",\n \"BUILD\",\n \"WORKSPACE\",\n ]),\n # This makes this directory a top-level in the python import\n # search path for anything that depends on this.\n imports = [\".\"],\n)\n"
  5015. }
  5016. },
  5017. "pypi__more_itertools": {
  5018. "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl",
  5019. "ruleClassName": "http_archive",
  5020. "attributes": {
  5021. "name": "rules_python~0.27.1~internal_deps~pypi__more_itertools",
  5022. "url": "https://files.pythonhosted.org/packages/5a/cb/6dce742ea14e47d6f565589e859ad225f2a5de576d7696e0623b784e226b/more_itertools-10.1.0-py3-none-any.whl",
  5023. "sha256": "64e0735fcfdc6f3464ea133afe8ea4483b1c5fe3a3d69852e6503b43a0b222e6",
  5024. "type": "zip",
  5025. "build_file_content": "package(default_visibility = [\"//visibility:public\"])\n\nload(\"@rules_python//python:defs.bzl\", \"py_library\")\n\npy_library(\n name = \"lib\",\n srcs = glob([\"**/*.py\"]),\n data = glob([\"**/*\"], exclude=[\n # These entries include those put into user-installed dependencies by\n # data_exclude in /python/pip_install/tools/bazel.py\n # to avoid non-determinism following pip install's behavior.\n \"**/*.py\",\n \"**/*.pyc\",\n \"**/*.pyc.*\", # During pyc creation, temp files named *.pyc.NNN are created\n \"**/* *\",\n \"**/*.dist-info/RECORD\",\n \"BUILD\",\n \"WORKSPACE\",\n ]),\n # This makes this directory a top-level in the python import\n # search path for anything that depends on this.\n imports = [\".\"],\n)\n"
  5026. }
  5027. },
  5028. "pypi__tomli": {
  5029. "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl",
  5030. "ruleClassName": "http_archive",
  5031. "attributes": {
  5032. "name": "rules_python~0.27.1~internal_deps~pypi__tomli",
  5033. "url": "https://files.pythonhosted.org/packages/97/75/10a9ebee3fd790d20926a90a2547f0bf78f371b2f13aa822c759680ca7b9/tomli-2.0.1-py3-none-any.whl",
  5034. "sha256": "939de3e7a6161af0c887ef91b7d41a53e7c5a1ca976325f429cb46ea9bc30ecc",
  5035. "type": "zip",
  5036. "build_file_content": "package(default_visibility = [\"//visibility:public\"])\n\nload(\"@rules_python//python:defs.bzl\", \"py_library\")\n\npy_library(\n name = \"lib\",\n srcs = glob([\"**/*.py\"]),\n data = glob([\"**/*\"], exclude=[\n # These entries include those put into user-installed dependencies by\n # data_exclude in /python/pip_install/tools/bazel.py\n # to avoid non-determinism following pip install's behavior.\n \"**/*.py\",\n \"**/*.pyc\",\n \"**/*.pyc.*\", # During pyc creation, temp files named *.pyc.NNN are created\n \"**/* *\",\n \"**/*.dist-info/RECORD\",\n \"BUILD\",\n \"WORKSPACE\",\n ]),\n # This makes this directory a top-level in the python import\n # search path for anything that depends on this.\n imports = [\".\"],\n)\n"
  5037. }
  5038. }
  5039. }
  5040. }
  5041. }
  5042. }
  5043. }