MODULE.bazel.lock 282 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332
  1. {
  2. "lockFileVersion": 6,
  3. "moduleFileHash": "2229e2fa995d00859c76832081e78c1260d43da826c71273e51f34182539eafd",
  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": "1ae69322ac3823527337acf02016e8ee95813d8d356f47060255b8956fa642f0"
  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. "boost_unordered": "boost_unordered",
  41. "llvm-raw": "llvm-raw"
  42. },
  43. "devImports": [],
  44. "tags": [
  45. {
  46. "tagName": "@bazel_tools//tools/build_defs/repo:http.bzl%http_archive",
  47. "attributeValues": {
  48. "build_file": "@//:third_party/libprotobuf_mutator/BUILD.txt",
  49. "sha256": "fd299fd72c5cf664259d9bd43a72cb74dc6a8b9604d107fe2d2e90885aeb7c16",
  50. "strip_prefix": "libprotobuf-mutator-1.1",
  51. "urls": [
  52. "https://github.com/google/libprotobuf-mutator/archive/v1.1.tar.gz"
  53. ],
  54. "name": "com_google_libprotobuf_mutator"
  55. },
  56. "devDependency": false,
  57. "location": {
  58. "file": "@@//:MODULE.bazel",
  59. "line": 66,
  60. "column": 13
  61. }
  62. },
  63. {
  64. "tagName": "@bazel_tools//tools/build_defs/repo:http.bzl%http_archive",
  65. "attributeValues": {
  66. "build_file": "@//:third_party/boost_unordered/BUILD.bazel",
  67. "integrity": "sha256-2dQ4IQH/xFiK1iWCkrMYLeR8zsSQqGchKOdTuf1u0zI=",
  68. "strip_prefix": "boost_unordered-1.85.0",
  69. "urls": [
  70. "https://github.com/MikePopoloski/boost_unordered/archive/v1.85.0.tar.gz"
  71. ],
  72. "name": "boost_unordered"
  73. },
  74. "devDependency": false,
  75. "location": {
  76. "file": "@@//:MODULE.bazel",
  77. "line": 100,
  78. "column": 13
  79. }
  80. },
  81. {
  82. "tagName": "@bazel_tools//tools/build_defs/repo:http.bzl%http_archive",
  83. "attributeValues": {
  84. "build_file_content": "# empty",
  85. "patch_args": [
  86. "-p1"
  87. ],
  88. "patches": [
  89. "@carbon//bazel/llvm_project:0001_Patch_for_mallinfo2_when_using_Bazel_build_system.patch",
  90. "@carbon//bazel/llvm_project:0002_Added_Bazel_build_for_compiler_rt_fuzzer.patch"
  91. ],
  92. "sha256": "4c53512522cfd625a75aa7f201e6932f18ebf3fbe8ee89e05883c3d30ca935ac",
  93. "strip_prefix": "llvm-project-a68d20e986053ec571223a9f3ead3e146a27dc82",
  94. "urls": [
  95. "https://github.com/llvm/llvm-project/archive/a68d20e986053ec571223a9f3ead3e146a27dc82.tar.gz"
  96. ],
  97. "name": "llvm-raw"
  98. },
  99. "devDependency": false,
  100. "location": {
  101. "file": "@@//:MODULE.bazel",
  102. "line": 123,
  103. "column": 13
  104. }
  105. }
  106. ],
  107. "hasDevUseExtension": false,
  108. "hasNonDevUseExtension": true
  109. },
  110. {
  111. "extensionBzlFile": "@carbon//bazel/cc_toolchains:clang_configuration.bzl",
  112. "extensionName": "clang_toolchain_extension",
  113. "usingModule": "<root>",
  114. "location": {
  115. "file": "@@//:MODULE.bazel",
  116. "line": 82,
  117. "column": 35
  118. },
  119. "imports": {
  120. "bazel_cc_toolchain": "bazel_cc_toolchain"
  121. },
  122. "devImports": [],
  123. "tags": [],
  124. "hasDevUseExtension": false,
  125. "hasNonDevUseExtension": true
  126. },
  127. {
  128. "extensionBzlFile": "@carbon//bazel/llvm_project:llvm_project.bzl",
  129. "extensionName": "llvm_project",
  130. "usingModule": "<root>",
  131. "location": {
  132. "file": "@@//:MODULE.bazel",
  133. "line": 137,
  134. "column": 29
  135. },
  136. "imports": {
  137. "llvm-project": "llvm-project"
  138. },
  139. "devImports": [],
  140. "tags": [],
  141. "hasDevUseExtension": false,
  142. "hasNonDevUseExtension": true
  143. },
  144. {
  145. "extensionBzlFile": "@rules_python//python/extensions:python.bzl",
  146. "extensionName": "python",
  147. "usingModule": "<root>",
  148. "location": {
  149. "file": "@@//:MODULE.bazel",
  150. "line": 149,
  151. "column": 23
  152. },
  153. "imports": {
  154. "python_versions": "python_versions"
  155. },
  156. "devImports": [],
  157. "tags": [
  158. {
  159. "tagName": "toolchain",
  160. "attributeValues": {
  161. "python_version": "3.11"
  162. },
  163. "devDependency": false,
  164. "location": {
  165. "file": "@@//:MODULE.bazel",
  166. "line": 150,
  167. "column": 17
  168. }
  169. }
  170. ],
  171. "hasDevUseExtension": false,
  172. "hasNonDevUseExtension": true
  173. }
  174. ],
  175. "deps": {
  176. "bazel_skylib": "bazel_skylib@1.5.0",
  177. "rules_pkg": "rules_pkg@0.10.1",
  178. "abseil-cpp": "abseil-cpp@20240116.1",
  179. "re2": "re2@2024-03-01",
  180. "googletest": "googletest@1.14.0.bcr.1",
  181. "google_benchmark": "google_benchmark@_",
  182. "libpfm": "libpfm@_",
  183. "rules_bison": "rules_bison@0.2.2",
  184. "rules_flex": "rules_flex@0.2.1",
  185. "rules_m4": "rules_m4@0.2.3",
  186. "rules_cc": "rules_cc@0.0.9",
  187. "rules_proto": "rules_proto@6.0.0-rc2",
  188. "protobuf": "protobuf@21.7",
  189. "bazel_clang_tidy": "bazel_clang_tidy@_",
  190. "hedron_compile_commands": "hedron_compile_commands@_",
  191. "platforms": "platforms@0.0.8",
  192. "llvm_zlib": "zlib@1.3.1.bcr.1",
  193. "llvm_zstd": "zstd@1.5.5.bcr.1",
  194. "rules_python": "rules_python@0.31.0",
  195. "bazel_tools": "bazel_tools@_",
  196. "local_config_platform": "local_config_platform@_"
  197. }
  198. },
  199. "bazel_skylib@1.5.0": {
  200. "name": "bazel_skylib",
  201. "version": "1.5.0",
  202. "key": "bazel_skylib@1.5.0",
  203. "repoName": "bazel_skylib",
  204. "executionPlatformsToRegister": [],
  205. "toolchainsToRegister": [
  206. "//toolchains/unittest:cmd_toolchain",
  207. "//toolchains/unittest:bash_toolchain"
  208. ],
  209. "extensionUsages": [],
  210. "deps": {
  211. "platforms": "platforms@0.0.8",
  212. "bazel_tools": "bazel_tools@_",
  213. "local_config_platform": "local_config_platform@_"
  214. },
  215. "repoSpec": {
  216. "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl",
  217. "ruleClassName": "http_archive",
  218. "attributes": {
  219. "urls": [
  220. "https://github.com/bazelbuild/bazel-skylib/releases/download/1.5.0/bazel-skylib-1.5.0.tar.gz"
  221. ],
  222. "integrity": "sha256-zVWgYudjuTSZIfD124w5MyiNyLpPdt2UFqrGis7jy5Q=",
  223. "strip_prefix": "",
  224. "remote_patches": {},
  225. "remote_patch_strip": 0
  226. }
  227. }
  228. },
  229. "rules_pkg@0.10.1": {
  230. "name": "rules_pkg",
  231. "version": "0.10.1",
  232. "key": "rules_pkg@0.10.1",
  233. "repoName": "rules_pkg",
  234. "executionPlatformsToRegister": [],
  235. "toolchainsToRegister": [],
  236. "extensionUsages": [],
  237. "deps": {
  238. "rules_license": "rules_license@0.0.7",
  239. "rules_python": "rules_python@0.31.0",
  240. "bazel_skylib": "bazel_skylib@1.5.0",
  241. "bazel_tools": "bazel_tools@_",
  242. "local_config_platform": "local_config_platform@_"
  243. },
  244. "repoSpec": {
  245. "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl",
  246. "ruleClassName": "http_archive",
  247. "attributes": {
  248. "urls": [
  249. "https://github.com/bazelbuild/rules_pkg/releases/download/0.10.1/rules_pkg-0.10.1.tar.gz"
  250. ],
  251. "integrity": "sha256-0lCSSi7MUXaAj8TCXVz16eeeY0bXnVqxxJPiieci0dA=",
  252. "strip_prefix": "",
  253. "remote_patches": {},
  254. "remote_patch_strip": 0
  255. }
  256. }
  257. },
  258. "abseil-cpp@20240116.1": {
  259. "name": "abseil-cpp",
  260. "version": "20240116.1",
  261. "key": "abseil-cpp@20240116.1",
  262. "repoName": "abseil-cpp",
  263. "executionPlatformsToRegister": [],
  264. "toolchainsToRegister": [],
  265. "extensionUsages": [],
  266. "deps": {
  267. "bazel_skylib": "bazel_skylib@1.5.0",
  268. "com_google_googletest": "googletest@1.14.0.bcr.1",
  269. "platforms": "platforms@0.0.8",
  270. "bazel_tools": "bazel_tools@_",
  271. "local_config_platform": "local_config_platform@_"
  272. },
  273. "repoSpec": {
  274. "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl",
  275. "ruleClassName": "http_archive",
  276. "attributes": {
  277. "urls": [
  278. "https://github.com/abseil/abseil-cpp/releases/download/20240116.1/abseil-cpp-20240116.1.tar.gz"
  279. ],
  280. "integrity": "sha256-PHQyBN94NmrS6vI21mMdg/a8ko0XBd0AALhy5Ttz3Go=",
  281. "strip_prefix": "abseil-cpp-20240116.1",
  282. "remote_patches": {
  283. "https://bcr.bazel.build/modules/abseil-cpp/20240116.1/patches/module_dot_bazel.patch": "sha256-H6J0U5xTQRVVGFkTsBioOCeWetuCfpavigN8YvpQkIQ="
  284. },
  285. "remote_patch_strip": 0
  286. }
  287. }
  288. },
  289. "re2@2024-03-01": {
  290. "name": "re2",
  291. "version": "2024-03-01",
  292. "key": "re2@2024-03-01",
  293. "repoName": "re2",
  294. "executionPlatformsToRegister": [],
  295. "toolchainsToRegister": [],
  296. "extensionUsages": [
  297. {
  298. "extensionBzlFile": "@bazel_tools//tools/cpp:cc_configure.bzl",
  299. "extensionName": "cc_configure_extension",
  300. "usingModule": "re2@2024-03-01",
  301. "location": {
  302. "file": "https://bcr.bazel.build/modules/re2/2024-03-01/MODULE.bazel",
  303. "line": 22,
  304. "column": 29
  305. },
  306. "imports": {
  307. "local_config_cc": "local_config_cc"
  308. },
  309. "devImports": [],
  310. "tags": [],
  311. "hasDevUseExtension": false,
  312. "hasNonDevUseExtension": true
  313. }
  314. ],
  315. "deps": {
  316. "platforms": "platforms@0.0.8",
  317. "apple_support": "apple_support@1.14.0",
  318. "rules_cc": "rules_cc@0.0.9",
  319. "abseil-cpp": "abseil-cpp@20240116.1",
  320. "rules_python": "rules_python@0.31.0",
  321. "pybind11_bazel": "pybind11_bazel@2.11.1.bzl.2",
  322. "bazel_tools": "bazel_tools@_",
  323. "local_config_platform": "local_config_platform@_"
  324. },
  325. "repoSpec": {
  326. "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl",
  327. "ruleClassName": "http_archive",
  328. "attributes": {
  329. "urls": [
  330. "https://github.com/google/re2/releases/download/2024-03-01/re2-2024-03-01.zip"
  331. ],
  332. "integrity": "sha256-QGxP+Lr10jM+qqJ7Nb9tVGF7RI4xvkNHoxSbbZaXQf8=",
  333. "strip_prefix": "re2-2024-03-01",
  334. "remote_patches": {},
  335. "remote_patch_strip": 0
  336. }
  337. }
  338. },
  339. "googletest@1.14.0.bcr.1": {
  340. "name": "googletest",
  341. "version": "1.14.0.bcr.1",
  342. "key": "googletest@1.14.0.bcr.1",
  343. "repoName": "googletest",
  344. "executionPlatformsToRegister": [],
  345. "toolchainsToRegister": [],
  346. "extensionUsages": [],
  347. "deps": {
  348. "com_google_absl": "abseil-cpp@20240116.1",
  349. "platforms": "platforms@0.0.8",
  350. "rules_cc": "rules_cc@0.0.9",
  351. "com_googlesource_code_re2": "re2@2024-03-01",
  352. "bazel_tools": "bazel_tools@_",
  353. "local_config_platform": "local_config_platform@_"
  354. },
  355. "repoSpec": {
  356. "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl",
  357. "ruleClassName": "http_archive",
  358. "attributes": {
  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@_": {
  372. "name": "google_benchmark",
  373. "version": "1.8.3",
  374. "key": "google_benchmark@_",
  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@_",
  385. "bazel_tools": "bazel_tools@_",
  386. "local_config_platform": "local_config_platform@_"
  387. }
  388. },
  389. "libpfm@_": {
  390. "name": "libpfm",
  391. "version": "",
  392. "key": "libpfm@_",
  393. "repoName": "libpfm",
  394. "executionPlatformsToRegister": [],
  395. "toolchainsToRegister": [],
  396. "extensionUsages": [],
  397. "deps": {
  398. "rules_cc": "rules_cc@0.0.9",
  399. "platforms": "platforms@0.0.8",
  400. "bazel_tools": "bazel_tools@_",
  401. "local_config_platform": "local_config_platform@_"
  402. }
  403. },
  404. "rules_bison@0.2.2": {
  405. "name": "rules_bison",
  406. "version": "0.2.2",
  407. "key": "rules_bison@0.2.2",
  408. "repoName": "rules_bison",
  409. "executionPlatformsToRegister": [],
  410. "toolchainsToRegister": [
  411. "@bison//:toolchain"
  412. ],
  413. "extensionUsages": [
  414. {
  415. "extensionBzlFile": "@rules_bison//bison/internal:default_toolchain_ext.bzl",
  416. "extensionName": "default_toolchain_ext",
  417. "usingModule": "rules_bison@0.2.2",
  418. "location": {
  419. "file": "https://bcr.bazel.build/modules/rules_bison/0.2.2/MODULE.bazel",
  420. "line": 28,
  421. "column": 34
  422. },
  423. "imports": {
  424. "bison": "bison"
  425. },
  426. "devImports": [],
  427. "tags": [],
  428. "hasDevUseExtension": false,
  429. "hasNonDevUseExtension": true
  430. }
  431. ],
  432. "deps": {
  433. "rules_m4": "rules_m4@0.2.3",
  434. "bazel_tools": "bazel_tools@_",
  435. "local_config_platform": "local_config_platform@_"
  436. },
  437. "repoSpec": {
  438. "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl",
  439. "ruleClassName": "http_archive",
  440. "attributes": {
  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. "urls": [
  491. "https://github.com/jmillikin/rules_flex/releases/download/v0.2.1/rules_flex-v0.2.1.tar.xz"
  492. ],
  493. "integrity": "sha256-iSn+3ECQnRmktCVI0HhfeWx2d9zvi10WALQV5aSndJ8=",
  494. "strip_prefix": "",
  495. "remote_patches": {},
  496. "remote_patch_strip": 0
  497. }
  498. }
  499. },
  500. "rules_m4@0.2.3": {
  501. "name": "rules_m4",
  502. "version": "0.2.3",
  503. "key": "rules_m4@0.2.3",
  504. "repoName": "rules_m4",
  505. "executionPlatformsToRegister": [],
  506. "toolchainsToRegister": [
  507. "@m4//:toolchain"
  508. ],
  509. "extensionUsages": [
  510. {
  511. "extensionBzlFile": "@rules_m4//m4/internal:default_toolchain_ext.bzl",
  512. "extensionName": "default_toolchain_ext",
  513. "usingModule": "rules_m4@0.2.3",
  514. "location": {
  515. "file": "https://bcr.bazel.build/modules/rules_m4/0.2.3/MODULE.bazel",
  516. "line": 26,
  517. "column": 34
  518. },
  519. "imports": {
  520. "m4": "m4"
  521. },
  522. "devImports": [],
  523. "tags": [],
  524. "hasDevUseExtension": false,
  525. "hasNonDevUseExtension": true
  526. }
  527. ],
  528. "deps": {
  529. "bazel_tools": "bazel_tools@_",
  530. "local_config_platform": "local_config_platform@_"
  531. },
  532. "repoSpec": {
  533. "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl",
  534. "ruleClassName": "http_archive",
  535. "attributes": {
  536. "urls": [
  537. "https://github.com/jmillikin/rules_m4/releases/download/v0.2.3/rules_m4-v0.2.3.tar.xz"
  538. ],
  539. "integrity": "sha256-EM5B8VDM+/3cnSOU7mgOuYTcij3+phOv0BPPsi6nRFw=",
  540. "strip_prefix": "",
  541. "remote_patches": {},
  542. "remote_patch_strip": 0
  543. }
  544. }
  545. },
  546. "rules_cc@0.0.9": {
  547. "name": "rules_cc",
  548. "version": "0.0.9",
  549. "key": "rules_cc@0.0.9",
  550. "repoName": "rules_cc",
  551. "executionPlatformsToRegister": [],
  552. "toolchainsToRegister": [
  553. "@local_config_cc_toolchains//:all"
  554. ],
  555. "extensionUsages": [
  556. {
  557. "extensionBzlFile": "@bazel_tools//tools/cpp:cc_configure.bzl",
  558. "extensionName": "cc_configure_extension",
  559. "usingModule": "rules_cc@0.0.9",
  560. "location": {
  561. "file": "https://bcr.bazel.build/modules/rules_cc/0.0.9/MODULE.bazel",
  562. "line": 9,
  563. "column": 29
  564. },
  565. "imports": {
  566. "local_config_cc_toolchains": "local_config_cc_toolchains"
  567. },
  568. "devImports": [],
  569. "tags": [],
  570. "hasDevUseExtension": false,
  571. "hasNonDevUseExtension": true
  572. }
  573. ],
  574. "deps": {
  575. "platforms": "platforms@0.0.8",
  576. "bazel_tools": "bazel_tools@_",
  577. "local_config_platform": "local_config_platform@_"
  578. },
  579. "repoSpec": {
  580. "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl",
  581. "ruleClassName": "http_archive",
  582. "attributes": {
  583. "urls": [
  584. "https://github.com/bazelbuild/rules_cc/releases/download/0.0.9/rules_cc-0.0.9.tar.gz"
  585. ],
  586. "integrity": "sha256-IDeHW5pEVtzkp50RKorohbvEqtlo5lh9ym5k86CQDN8=",
  587. "strip_prefix": "rules_cc-0.0.9",
  588. "remote_patches": {
  589. "https://bcr.bazel.build/modules/rules_cc/0.0.9/patches/module_dot_bazel_version.patch": "sha256-mM+qzOI0SgAdaJBlWOSMwMPKpaA9b7R37Hj/tp5bb4g="
  590. },
  591. "remote_patch_strip": 0
  592. }
  593. }
  594. },
  595. "rules_proto@6.0.0-rc2": {
  596. "name": "rules_proto",
  597. "version": "6.0.0-rc2",
  598. "key": "rules_proto@6.0.0-rc2",
  599. "repoName": "rules_proto",
  600. "executionPlatformsToRegister": [],
  601. "toolchainsToRegister": [],
  602. "extensionUsages": [],
  603. "deps": {
  604. "rules_license": "rules_license@0.0.7",
  605. "bazel_skylib": "bazel_skylib@1.5.0",
  606. "bazel_features": "bazel_features@1.2.0",
  607. "bazel_tools": "bazel_tools@_",
  608. "local_config_platform": "local_config_platform@_"
  609. },
  610. "repoSpec": {
  611. "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl",
  612. "ruleClassName": "http_archive",
  613. "attributes": {
  614. "urls": [
  615. "https://github.com/bazelbuild/rules_proto/releases/download/6.0.0-rc2/rules_proto-6.0.0-rc2.tar.gz"
  616. ],
  617. "integrity": "sha256-cf2+0AoHCVIa0hIFjGDROZe5IqXQHb/Zl/DVfWiee2c=",
  618. "strip_prefix": "rules_proto-6.0.0-rc2",
  619. "remote_patches": {
  620. "https://bcr.bazel.build/modules/rules_proto/6.0.0-rc2/patches/module_dot_bazel_version.patch": "sha256-xDTHv7Npgr0lIdxwTXXD5rcQ31DX09176+T4wn0hF4I="
  621. },
  622. "remote_patch_strip": 1
  623. }
  624. }
  625. },
  626. "protobuf@21.7": {
  627. "name": "protobuf",
  628. "version": "21.7",
  629. "key": "protobuf@21.7",
  630. "repoName": "protobuf",
  631. "executionPlatformsToRegister": [],
  632. "toolchainsToRegister": [],
  633. "extensionUsages": [
  634. {
  635. "extensionBzlFile": "@rules_jvm_external//:extensions.bzl",
  636. "extensionName": "maven",
  637. "usingModule": "protobuf@21.7",
  638. "location": {
  639. "file": "https://bcr.bazel.build/modules/protobuf/21.7/MODULE.bazel",
  640. "line": 22,
  641. "column": 22
  642. },
  643. "imports": {
  644. "maven": "maven"
  645. },
  646. "devImports": [],
  647. "tags": [
  648. {
  649. "tagName": "install",
  650. "attributeValues": {
  651. "name": "maven",
  652. "artifacts": [
  653. "com.google.code.findbugs:jsr305:3.0.2",
  654. "com.google.code.gson:gson:2.8.9",
  655. "com.google.errorprone:error_prone_annotations:2.3.2",
  656. "com.google.j2objc:j2objc-annotations:1.3",
  657. "com.google.guava:guava:31.1-jre",
  658. "com.google.guava:guava-testlib:31.1-jre",
  659. "com.google.truth:truth:1.1.2",
  660. "junit:junit:4.13.2",
  661. "org.mockito:mockito-core:4.3.1"
  662. ]
  663. },
  664. "devDependency": false,
  665. "location": {
  666. "file": "https://bcr.bazel.build/modules/protobuf/21.7/MODULE.bazel",
  667. "line": 24,
  668. "column": 14
  669. }
  670. }
  671. ],
  672. "hasDevUseExtension": false,
  673. "hasNonDevUseExtension": true
  674. }
  675. ],
  676. "deps": {
  677. "bazel_skylib": "bazel_skylib@1.5.0",
  678. "rules_python": "rules_python@0.31.0",
  679. "rules_cc": "rules_cc@0.0.9",
  680. "rules_proto": "rules_proto@6.0.0-rc2",
  681. "rules_java": "rules_java@7.4.0",
  682. "rules_pkg": "rules_pkg@0.10.1",
  683. "com_google_abseil": "abseil-cpp@20240116.1",
  684. "zlib": "zlib@1.3.1.bcr.1",
  685. "upb": "upb@0.0.0-20220923-a547704",
  686. "rules_jvm_external": "rules_jvm_external@4.4.2",
  687. "com_google_googletest": "googletest@1.14.0.bcr.1",
  688. "bazel_tools": "bazel_tools@_",
  689. "local_config_platform": "local_config_platform@_"
  690. },
  691. "repoSpec": {
  692. "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl",
  693. "ruleClassName": "http_archive",
  694. "attributes": {
  695. "urls": [
  696. "https://github.com/protocolbuffers/protobuf/releases/download/v21.7/protobuf-all-21.7.zip"
  697. ],
  698. "integrity": "sha256-VJOiH17T/FAuZv7GuUScBqVRztYwAvpIkDxA36jeeko=",
  699. "strip_prefix": "protobuf-21.7",
  700. "remote_patches": {
  701. "https://bcr.bazel.build/modules/protobuf/21.7/patches/add_module_dot_bazel.patch": "sha256-q3V2+eq0v2XF0z8z+V+QF4cynD6JvHI1y3kI/+rzl5s=",
  702. "https://bcr.bazel.build/modules/protobuf/21.7/patches/add_module_dot_bazel_for_examples.patch": "sha256-O7YP6s3lo/1opUiO0jqXYORNHdZ/2q3hjz1QGy8QdIU=",
  703. "https://bcr.bazel.build/modules/protobuf/21.7/patches/relative_repo_names.patch": "sha256-RK9RjW8T5UJNG7flIrnFiNE9vKwWB+8uWWtJqXYT0w4=",
  704. "https://bcr.bazel.build/modules/protobuf/21.7/patches/add_missing_files.patch": "sha256-Hyne4DG2u5bXcWHNxNMirA2QFAe/2Cl8oMm1XJdkQIY="
  705. },
  706. "remote_patch_strip": 1
  707. }
  708. }
  709. },
  710. "bazel_clang_tidy@_": {
  711. "name": "bazel_clang_tidy",
  712. "version": "",
  713. "key": "bazel_clang_tidy@_",
  714. "repoName": "bazel_clang_tidy",
  715. "executionPlatformsToRegister": [],
  716. "toolchainsToRegister": [],
  717. "extensionUsages": [],
  718. "deps": {
  719. "bazel_tools": "bazel_tools@_",
  720. "local_config_platform": "local_config_platform@_"
  721. }
  722. },
  723. "hedron_compile_commands@_": {
  724. "name": "hedron_compile_commands",
  725. "version": "",
  726. "key": "hedron_compile_commands@_",
  727. "repoName": "hedron_compile_commands",
  728. "executionPlatformsToRegister": [],
  729. "toolchainsToRegister": [],
  730. "extensionUsages": [
  731. {
  732. "extensionBzlFile": "@hedron_compile_commands//:workspace_setup.bzl",
  733. "extensionName": "hedron_compile_commands_extension",
  734. "usingModule": "hedron_compile_commands@_",
  735. "location": {
  736. "file": "@@hedron_compile_commands~//:MODULE.bazel",
  737. "line": 3,
  738. "column": 18
  739. },
  740. "imports": {},
  741. "devImports": [],
  742. "tags": [],
  743. "hasDevUseExtension": false,
  744. "hasNonDevUseExtension": true
  745. },
  746. {
  747. "extensionBzlFile": "@hedron_compile_commands//:workspace_setup_transitive.bzl",
  748. "extensionName": "hedron_compile_commands_extension",
  749. "usingModule": "hedron_compile_commands@_",
  750. "location": {
  751. "file": "@@hedron_compile_commands~//:MODULE.bazel",
  752. "line": 4,
  753. "column": 19
  754. },
  755. "imports": {},
  756. "devImports": [],
  757. "tags": [],
  758. "hasDevUseExtension": false,
  759. "hasNonDevUseExtension": true
  760. },
  761. {
  762. "extensionBzlFile": "@hedron_compile_commands//:workspace_setup_transitive_transitive.bzl",
  763. "extensionName": "hedron_compile_commands_extension",
  764. "usingModule": "hedron_compile_commands@_",
  765. "location": {
  766. "file": "@@hedron_compile_commands~//:MODULE.bazel",
  767. "line": 5,
  768. "column": 20
  769. },
  770. "imports": {},
  771. "devImports": [],
  772. "tags": [],
  773. "hasDevUseExtension": false,
  774. "hasNonDevUseExtension": true
  775. },
  776. {
  777. "extensionBzlFile": "@hedron_compile_commands//:workspace_setup_transitive_transitive_transitive.bzl",
  778. "extensionName": "hedron_compile_commands_extension",
  779. "usingModule": "hedron_compile_commands@_",
  780. "location": {
  781. "file": "@@hedron_compile_commands~//:MODULE.bazel",
  782. "line": 6,
  783. "column": 21
  784. },
  785. "imports": {},
  786. "devImports": [],
  787. "tags": [],
  788. "hasDevUseExtension": false,
  789. "hasNonDevUseExtension": true
  790. }
  791. ],
  792. "deps": {
  793. "bazel_tools": "bazel_tools@_",
  794. "local_config_platform": "local_config_platform@_"
  795. }
  796. },
  797. "platforms@0.0.8": {
  798. "name": "platforms",
  799. "version": "0.0.8",
  800. "key": "platforms@0.0.8",
  801. "repoName": "platforms",
  802. "executionPlatformsToRegister": [],
  803. "toolchainsToRegister": [],
  804. "extensionUsages": [],
  805. "deps": {
  806. "rules_license": "rules_license@0.0.7",
  807. "bazel_tools": "bazel_tools@_",
  808. "local_config_platform": "local_config_platform@_"
  809. },
  810. "repoSpec": {
  811. "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl",
  812. "ruleClassName": "http_archive",
  813. "attributes": {
  814. "urls": [
  815. "https://github.com/bazelbuild/platforms/releases/download/0.0.8/platforms-0.0.8.tar.gz"
  816. ],
  817. "integrity": "sha256-gVBAZgU4ns7LbaB8vLUJ1WN6OrmiS8abEQFTE2fYnXQ=",
  818. "strip_prefix": "",
  819. "remote_patches": {},
  820. "remote_patch_strip": 0
  821. }
  822. }
  823. },
  824. "zlib@1.3.1.bcr.1": {
  825. "name": "zlib",
  826. "version": "1.3.1.bcr.1",
  827. "key": "zlib@1.3.1.bcr.1",
  828. "repoName": "zlib",
  829. "executionPlatformsToRegister": [],
  830. "toolchainsToRegister": [],
  831. "extensionUsages": [],
  832. "deps": {
  833. "platforms": "platforms@0.0.8",
  834. "rules_cc": "rules_cc@0.0.9",
  835. "bazel_tools": "bazel_tools@_",
  836. "local_config_platform": "local_config_platform@_"
  837. },
  838. "repoSpec": {
  839. "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl",
  840. "ruleClassName": "http_archive",
  841. "attributes": {
  842. "urls": [
  843. "https://github.com/madler/zlib/releases/download/v1.3.1/zlib-1.3.1.tar.gz"
  844. ],
  845. "integrity": "sha256-mpOyt9/ax3zrpaVYpYDnRmfdb+3kWFuR7vtg8Dty3yM=",
  846. "strip_prefix": "zlib-1.3.1",
  847. "remote_patches": {
  848. "https://bcr.bazel.build/modules/zlib/1.3.1.bcr.1/patches/add_build_file.patch": "sha256-0MCgNjvE1kGfdKTdDt4PEBHJMIwtDYHB7h69zhxDSNI=",
  849. "https://bcr.bazel.build/modules/zlib/1.3.1.bcr.1/patches/add_module_file.patch": "sha256-euR5cSrSZnUKPOIJKRu3BY/Dphe1+ekPC6OWaAQfDjQ="
  850. },
  851. "remote_patch_strip": 1
  852. }
  853. }
  854. },
  855. "zstd@1.5.5.bcr.1": {
  856. "name": "zstd",
  857. "version": "1.5.5.bcr.1",
  858. "key": "zstd@1.5.5.bcr.1",
  859. "repoName": "zstd",
  860. "executionPlatformsToRegister": [],
  861. "toolchainsToRegister": [],
  862. "extensionUsages": [],
  863. "deps": {
  864. "rules_cc": "rules_cc@0.0.9",
  865. "platforms": "platforms@0.0.8",
  866. "bazel_tools": "bazel_tools@_",
  867. "local_config_platform": "local_config_platform@_"
  868. },
  869. "repoSpec": {
  870. "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl",
  871. "ruleClassName": "http_archive",
  872. "attributes": {
  873. "urls": [
  874. "https://github.com/facebook/zstd/releases/download/v1.5.5/zstd-1.5.5.tar.gz"
  875. ],
  876. "integrity": "sha256-nEOWzIKc+uMZpuJhUgLoKq1BNyBzSC/OKG+seGRtPuQ=",
  877. "strip_prefix": "zstd-1.5.5",
  878. "remote_patches": {
  879. "https://bcr.bazel.build/modules/zstd/1.5.5.bcr.1/patches/add_build_file.patch": "sha256-Zm8MvkcOsOdnhFmH7jl1iFKx0RX6LouL5SEP5ddmliU=",
  880. "https://bcr.bazel.build/modules/zstd/1.5.5.bcr.1/patches/module_dot_bazel.patch": "sha256-+cgXnYCj1fFgNLlMN4v6g6iJ+AYFabXcuL+nIpmtYHs="
  881. },
  882. "remote_patch_strip": 0
  883. }
  884. }
  885. },
  886. "rules_python@0.31.0": {
  887. "name": "rules_python",
  888. "version": "0.31.0",
  889. "key": "rules_python@0.31.0",
  890. "repoName": "rules_python",
  891. "executionPlatformsToRegister": [],
  892. "toolchainsToRegister": [
  893. "@pythons_hub//:all"
  894. ],
  895. "extensionUsages": [
  896. {
  897. "extensionBzlFile": "@rules_python//python/private/bzlmod:internal_deps.bzl",
  898. "extensionName": "internal_deps",
  899. "usingModule": "rules_python@0.31.0",
  900. "location": {
  901. "file": "https://bcr.bazel.build/modules/rules_python/0.31.0/MODULE.bazel",
  902. "line": 15,
  903. "column": 30
  904. },
  905. "imports": {
  906. "rules_python_internal": "rules_python_internal",
  907. "pypi__build": "pypi__build",
  908. "pypi__click": "pypi__click",
  909. "pypi__colorama": "pypi__colorama",
  910. "pypi__importlib_metadata": "pypi__importlib_metadata",
  911. "pypi__installer": "pypi__installer",
  912. "pypi__more_itertools": "pypi__more_itertools",
  913. "pypi__packaging": "pypi__packaging",
  914. "pypi__pep517": "pypi__pep517",
  915. "pypi__pip": "pypi__pip",
  916. "pypi__pip_tools": "pypi__pip_tools",
  917. "pypi__pyproject_hooks": "pypi__pyproject_hooks",
  918. "pypi__setuptools": "pypi__setuptools",
  919. "pypi__tomli": "pypi__tomli",
  920. "pypi__wheel": "pypi__wheel",
  921. "pypi__zipp": "pypi__zipp"
  922. },
  923. "devImports": [],
  924. "tags": [
  925. {
  926. "tagName": "install",
  927. "attributeValues": {},
  928. "devDependency": false,
  929. "location": {
  930. "file": "https://bcr.bazel.build/modules/rules_python/0.31.0/MODULE.bazel",
  931. "line": 16,
  932. "column": 22
  933. }
  934. }
  935. ],
  936. "hasDevUseExtension": false,
  937. "hasNonDevUseExtension": true
  938. },
  939. {
  940. "extensionBzlFile": "@rules_python//python/extensions:python.bzl",
  941. "extensionName": "python",
  942. "usingModule": "rules_python@0.31.0",
  943. "location": {
  944. "file": "https://bcr.bazel.build/modules/rules_python/0.31.0/MODULE.bazel",
  945. "line": 41,
  946. "column": 23
  947. },
  948. "imports": {
  949. "pythons_hub": "pythons_hub"
  950. },
  951. "devImports": [],
  952. "tags": [
  953. {
  954. "tagName": "toolchain",
  955. "attributeValues": {
  956. "is_default": true,
  957. "python_version": "3.11"
  958. },
  959. "devDependency": false,
  960. "location": {
  961. "file": "https://bcr.bazel.build/modules/rules_python/0.31.0/MODULE.bazel",
  962. "line": 47,
  963. "column": 17
  964. }
  965. }
  966. ],
  967. "hasDevUseExtension": false,
  968. "hasNonDevUseExtension": true
  969. }
  970. ],
  971. "deps": {
  972. "bazel_features": "bazel_features@1.2.0",
  973. "bazel_skylib": "bazel_skylib@1.5.0",
  974. "platforms": "platforms@0.0.8",
  975. "rules_proto": "rules_proto@6.0.0-rc2",
  976. "com_google_protobuf": "protobuf@21.7",
  977. "bazel_tools": "bazel_tools@_",
  978. "local_config_platform": "local_config_platform@_"
  979. },
  980. "repoSpec": {
  981. "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl",
  982. "ruleClassName": "http_archive",
  983. "attributes": {
  984. "urls": [
  985. "https://github.com/bazelbuild/rules_python/releases/download/0.31.0/rules_python-0.31.0.tar.gz"
  986. ],
  987. "integrity": "sha256-xovcT77CXeW1STuIGc/Id8TqKZwNyxXCRMWgAgjN4xE=",
  988. "strip_prefix": "rules_python-0.31.0",
  989. "remote_patches": {
  990. "https://bcr.bazel.build/modules/rules_python/0.31.0/patches/module_dot_bazel_version.patch": "sha256-j2KF6j66J2fRAGtc56Zj7Hp1dTGqOWPAR3+IODr0oLQ="
  991. },
  992. "remote_patch_strip": 1
  993. }
  994. }
  995. },
  996. "bazel_tools@_": {
  997. "name": "bazel_tools",
  998. "version": "",
  999. "key": "bazel_tools@_",
  1000. "repoName": "bazel_tools",
  1001. "executionPlatformsToRegister": [],
  1002. "toolchainsToRegister": [
  1003. "@local_config_cc_toolchains//:all",
  1004. "@local_config_sh//:local_sh_toolchain"
  1005. ],
  1006. "extensionUsages": [
  1007. {
  1008. "extensionBzlFile": "@bazel_tools//tools/cpp:cc_configure.bzl",
  1009. "extensionName": "cc_configure_extension",
  1010. "usingModule": "bazel_tools@_",
  1011. "location": {
  1012. "file": "@@bazel_tools//:MODULE.bazel",
  1013. "line": 18,
  1014. "column": 29
  1015. },
  1016. "imports": {
  1017. "local_config_cc": "local_config_cc",
  1018. "local_config_cc_toolchains": "local_config_cc_toolchains"
  1019. },
  1020. "devImports": [],
  1021. "tags": [],
  1022. "hasDevUseExtension": false,
  1023. "hasNonDevUseExtension": true
  1024. },
  1025. {
  1026. "extensionBzlFile": "@bazel_tools//tools/osx:xcode_configure.bzl",
  1027. "extensionName": "xcode_configure_extension",
  1028. "usingModule": "bazel_tools@_",
  1029. "location": {
  1030. "file": "@@bazel_tools//:MODULE.bazel",
  1031. "line": 22,
  1032. "column": 32
  1033. },
  1034. "imports": {
  1035. "local_config_xcode": "local_config_xcode"
  1036. },
  1037. "devImports": [],
  1038. "tags": [],
  1039. "hasDevUseExtension": false,
  1040. "hasNonDevUseExtension": true
  1041. },
  1042. {
  1043. "extensionBzlFile": "@rules_java//java:extensions.bzl",
  1044. "extensionName": "toolchains",
  1045. "usingModule": "bazel_tools@_",
  1046. "location": {
  1047. "file": "@@bazel_tools//:MODULE.bazel",
  1048. "line": 25,
  1049. "column": 32
  1050. },
  1051. "imports": {
  1052. "local_jdk": "local_jdk",
  1053. "remote_java_tools": "remote_java_tools",
  1054. "remote_java_tools_linux": "remote_java_tools_linux",
  1055. "remote_java_tools_windows": "remote_java_tools_windows",
  1056. "remote_java_tools_darwin_x86_64": "remote_java_tools_darwin_x86_64",
  1057. "remote_java_tools_darwin_arm64": "remote_java_tools_darwin_arm64"
  1058. },
  1059. "devImports": [],
  1060. "tags": [],
  1061. "hasDevUseExtension": false,
  1062. "hasNonDevUseExtension": true
  1063. },
  1064. {
  1065. "extensionBzlFile": "@bazel_tools//tools/sh:sh_configure.bzl",
  1066. "extensionName": "sh_configure_extension",
  1067. "usingModule": "bazel_tools@_",
  1068. "location": {
  1069. "file": "@@bazel_tools//:MODULE.bazel",
  1070. "line": 36,
  1071. "column": 39
  1072. },
  1073. "imports": {
  1074. "local_config_sh": "local_config_sh"
  1075. },
  1076. "devImports": [],
  1077. "tags": [],
  1078. "hasDevUseExtension": false,
  1079. "hasNonDevUseExtension": true
  1080. },
  1081. {
  1082. "extensionBzlFile": "@bazel_tools//tools/test:extensions.bzl",
  1083. "extensionName": "remote_coverage_tools_extension",
  1084. "usingModule": "bazel_tools@_",
  1085. "location": {
  1086. "file": "@@bazel_tools//:MODULE.bazel",
  1087. "line": 40,
  1088. "column": 48
  1089. },
  1090. "imports": {
  1091. "remote_coverage_tools": "remote_coverage_tools"
  1092. },
  1093. "devImports": [],
  1094. "tags": [],
  1095. "hasDevUseExtension": false,
  1096. "hasNonDevUseExtension": true
  1097. },
  1098. {
  1099. "extensionBzlFile": "@bazel_tools//tools/android:android_extensions.bzl",
  1100. "extensionName": "remote_android_tools_extensions",
  1101. "usingModule": "bazel_tools@_",
  1102. "location": {
  1103. "file": "@@bazel_tools//:MODULE.bazel",
  1104. "line": 43,
  1105. "column": 42
  1106. },
  1107. "imports": {
  1108. "android_gmaven_r8": "android_gmaven_r8",
  1109. "android_tools": "android_tools"
  1110. },
  1111. "devImports": [],
  1112. "tags": [],
  1113. "hasDevUseExtension": false,
  1114. "hasNonDevUseExtension": true
  1115. },
  1116. {
  1117. "extensionBzlFile": "@buildozer//:buildozer_binary.bzl",
  1118. "extensionName": "buildozer_binary",
  1119. "usingModule": "bazel_tools@_",
  1120. "location": {
  1121. "file": "@@bazel_tools//:MODULE.bazel",
  1122. "line": 47,
  1123. "column": 33
  1124. },
  1125. "imports": {
  1126. "buildozer_binary": "buildozer_binary"
  1127. },
  1128. "devImports": [],
  1129. "tags": [],
  1130. "hasDevUseExtension": false,
  1131. "hasNonDevUseExtension": true
  1132. }
  1133. ],
  1134. "deps": {
  1135. "rules_cc": "rules_cc@0.0.9",
  1136. "rules_java": "rules_java@7.4.0",
  1137. "rules_license": "rules_license@0.0.7",
  1138. "rules_proto": "rules_proto@6.0.0-rc2",
  1139. "rules_python": "rules_python@0.31.0",
  1140. "buildozer": "buildozer@6.4.0.2",
  1141. "platforms": "platforms@0.0.8",
  1142. "com_google_protobuf": "protobuf@21.7",
  1143. "zlib": "zlib@1.3.1.bcr.1",
  1144. "build_bazel_apple_support": "apple_support@1.14.0",
  1145. "local_config_platform": "local_config_platform@_"
  1146. }
  1147. },
  1148. "local_config_platform@_": {
  1149. "name": "local_config_platform",
  1150. "version": "",
  1151. "key": "local_config_platform@_",
  1152. "repoName": "local_config_platform",
  1153. "executionPlatformsToRegister": [],
  1154. "toolchainsToRegister": [],
  1155. "extensionUsages": [],
  1156. "deps": {
  1157. "platforms": "platforms@0.0.8",
  1158. "bazel_tools": "bazel_tools@_"
  1159. }
  1160. },
  1161. "rules_license@0.0.7": {
  1162. "name": "rules_license",
  1163. "version": "0.0.7",
  1164. "key": "rules_license@0.0.7",
  1165. "repoName": "rules_license",
  1166. "executionPlatformsToRegister": [],
  1167. "toolchainsToRegister": [],
  1168. "extensionUsages": [],
  1169. "deps": {
  1170. "bazel_tools": "bazel_tools@_",
  1171. "local_config_platform": "local_config_platform@_"
  1172. },
  1173. "repoSpec": {
  1174. "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl",
  1175. "ruleClassName": "http_archive",
  1176. "attributes": {
  1177. "urls": [
  1178. "https://github.com/bazelbuild/rules_license/releases/download/0.0.7/rules_license-0.0.7.tar.gz"
  1179. ],
  1180. "integrity": "sha256-RTHezLkTY5ww5cdRKgVNXYdWmNrrddjPkPKEN1/nw2A=",
  1181. "strip_prefix": "",
  1182. "remote_patches": {},
  1183. "remote_patch_strip": 0
  1184. }
  1185. }
  1186. },
  1187. "apple_support@1.14.0": {
  1188. "name": "apple_support",
  1189. "version": "1.14.0",
  1190. "key": "apple_support@1.14.0",
  1191. "repoName": "build_bazel_apple_support",
  1192. "executionPlatformsToRegister": [],
  1193. "toolchainsToRegister": [
  1194. "@local_config_apple_cc_toolchains//:all"
  1195. ],
  1196. "extensionUsages": [
  1197. {
  1198. "extensionBzlFile": "@build_bazel_apple_support//crosstool:setup.bzl",
  1199. "extensionName": "apple_cc_configure_extension",
  1200. "usingModule": "apple_support@1.14.0",
  1201. "location": {
  1202. "file": "https://bcr.bazel.build/modules/apple_support/1.14.0/MODULE.bazel",
  1203. "line": 19,
  1204. "column": 35
  1205. },
  1206. "imports": {
  1207. "local_config_apple_cc": "local_config_apple_cc",
  1208. "local_config_apple_cc_toolchains": "local_config_apple_cc_toolchains"
  1209. },
  1210. "devImports": [],
  1211. "tags": [],
  1212. "hasDevUseExtension": false,
  1213. "hasNonDevUseExtension": true
  1214. }
  1215. ],
  1216. "deps": {
  1217. "bazel_skylib": "bazel_skylib@1.5.0",
  1218. "platforms": "platforms@0.0.8",
  1219. "bazel_tools": "bazel_tools@_",
  1220. "local_config_platform": "local_config_platform@_"
  1221. },
  1222. "repoSpec": {
  1223. "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl",
  1224. "ruleClassName": "http_archive",
  1225. "attributes": {
  1226. "urls": [
  1227. "https://github.com/bazelbuild/apple_support/releases/download/1.14.0/apple_support.1.14.0.tar.gz"
  1228. ],
  1229. "integrity": "sha256-qLpv0J0P/rqbXzmPOkYmJHD+Ct3dtO9a+n6rGNABp7A=",
  1230. "strip_prefix": "",
  1231. "remote_patches": {
  1232. "https://bcr.bazel.build/modules/apple_support/1.14.0/patches/module_dot_bazel_version.patch": "sha256-/uLlHk6yJXSoYbYYc0vfjZsuSwbdKuTkZKrp5Gz6T0E="
  1233. },
  1234. "remote_patch_strip": 1
  1235. }
  1236. }
  1237. },
  1238. "pybind11_bazel@2.11.1.bzl.2": {
  1239. "name": "pybind11_bazel",
  1240. "version": "2.11.1.bzl.2",
  1241. "key": "pybind11_bazel@2.11.1.bzl.2",
  1242. "repoName": "pybind11_bazel",
  1243. "executionPlatformsToRegister": [],
  1244. "toolchainsToRegister": [],
  1245. "extensionUsages": [
  1246. {
  1247. "extensionBzlFile": "@pybind11_bazel//:internal_configure.bzl",
  1248. "extensionName": "internal_configure_extension",
  1249. "usingModule": "pybind11_bazel@2.11.1.bzl.2",
  1250. "location": {
  1251. "file": "https://bcr.bazel.build/modules/pybind11_bazel/2.11.1.bzl.2/MODULE.bazel",
  1252. "line": 11,
  1253. "column": 35
  1254. },
  1255. "imports": {
  1256. "pybind11": "pybind11"
  1257. },
  1258. "devImports": [],
  1259. "tags": [],
  1260. "hasDevUseExtension": false,
  1261. "hasNonDevUseExtension": true
  1262. }
  1263. ],
  1264. "deps": {
  1265. "platforms": "platforms@0.0.8",
  1266. "rules_cc": "rules_cc@0.0.9",
  1267. "rules_python": "rules_python@0.31.0",
  1268. "bazel_tools": "bazel_tools@_",
  1269. "local_config_platform": "local_config_platform@_"
  1270. },
  1271. "repoSpec": {
  1272. "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl",
  1273. "ruleClassName": "http_archive",
  1274. "attributes": {
  1275. "urls": [
  1276. "https://github.com/pybind/pybind11_bazel/releases/download/v2.11.1.bzl.2/pybind11_bazel-2.11.1.bzl.2.zip"
  1277. ],
  1278. "integrity": "sha256-2RHvFpdQSRyd205mMLrogrEnQlYnrxDlnUmfD3/5Ckg=",
  1279. "strip_prefix": "pybind11_bazel-2.11.1.bzl.2",
  1280. "remote_patches": {},
  1281. "remote_patch_strip": 0
  1282. }
  1283. }
  1284. },
  1285. "rules_foreign_cc@0.9.0": {
  1286. "name": "rules_foreign_cc",
  1287. "version": "0.9.0",
  1288. "key": "rules_foreign_cc@0.9.0",
  1289. "repoName": "rules_foreign_cc",
  1290. "executionPlatformsToRegister": [],
  1291. "toolchainsToRegister": [
  1292. "@rules_foreign_cc_framework_toolchain_freebsd//:toolchain",
  1293. "@rules_foreign_cc_framework_toolchain_linux//:toolchain",
  1294. "@rules_foreign_cc_framework_toolchain_macos//:toolchain",
  1295. "@rules_foreign_cc_framework_toolchain_windows//:toolchain",
  1296. "@rules_foreign_cc//toolchains:built_make_toolchain",
  1297. "@rules_foreign_cc//toolchains:preinstalled_autoconf_toolchain",
  1298. "@rules_foreign_cc//toolchains:preinstalled_automake_toolchain",
  1299. "@rules_foreign_cc//toolchains:preinstalled_m4_toolchain",
  1300. "@rules_foreign_cc//toolchains:preinstalled_pkgconfig_toolchain",
  1301. "@cmake_3.23.2_toolchains//:all",
  1302. "@ninja_1.11.0_toolchains//:all"
  1303. ],
  1304. "extensionUsages": [
  1305. {
  1306. "extensionBzlFile": "@rules_foreign_cc//foreign_cc:extensions.bzl",
  1307. "extensionName": "ext",
  1308. "usingModule": "rules_foreign_cc@0.9.0",
  1309. "location": {
  1310. "file": "https://bcr.bazel.build/modules/rules_foreign_cc/0.9.0/MODULE.bazel",
  1311. "line": 13,
  1312. "column": 20
  1313. },
  1314. "imports": {
  1315. "cmake_3.23.2_toolchains": "cmake_3.23.2_toolchains",
  1316. "rules_foreign_cc_framework_toolchain_freebsd": "rules_foreign_cc_framework_toolchain_freebsd",
  1317. "rules_foreign_cc_framework_toolchain_linux": "rules_foreign_cc_framework_toolchain_linux",
  1318. "rules_foreign_cc_framework_toolchain_macos": "rules_foreign_cc_framework_toolchain_macos",
  1319. "rules_foreign_cc_framework_toolchain_windows": "rules_foreign_cc_framework_toolchain_windows",
  1320. "cmake_src": "cmake_src",
  1321. "gnumake_src": "gnumake_src",
  1322. "ninja_build_src": "ninja_build_src",
  1323. "ninja_1.11.0_toolchains": "ninja_1.11.0_toolchains"
  1324. },
  1325. "devImports": [],
  1326. "tags": [],
  1327. "hasDevUseExtension": false,
  1328. "hasNonDevUseExtension": true
  1329. }
  1330. ],
  1331. "deps": {
  1332. "bazel_skylib": "bazel_skylib@1.5.0",
  1333. "platforms": "platforms@0.0.8",
  1334. "bazel_tools": "bazel_tools@_",
  1335. "local_config_platform": "local_config_platform@_"
  1336. },
  1337. "repoSpec": {
  1338. "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl",
  1339. "ruleClassName": "http_archive",
  1340. "attributes": {
  1341. "urls": [
  1342. "https://github.com/bazelbuild/rules_foreign_cc/archive/refs/tags/0.9.0.tar.gz"
  1343. ],
  1344. "integrity": "sha256-Kk0HzWSwcZs5p8EiGKPlB2crgql7mMaonThWWJTPfFE=",
  1345. "strip_prefix": "rules_foreign_cc-0.9.0",
  1346. "remote_patches": {
  1347. "https://bcr.bazel.build/modules/rules_foreign_cc/0.9.0/patches/examples.patch": "sha256-RxT7rVHxO30W350sYu7ybi4rStwoB8b8mr34ZU9ciIk=",
  1348. "https://bcr.bazel.build/modules/rules_foreign_cc/0.9.0/patches/module_dot_bazel.patch": "sha256-VTNnq8ySdeo9pI4rrJ+EXa/9ZACgQQ4baUwoQpljzCM="
  1349. },
  1350. "remote_patch_strip": 1
  1351. }
  1352. }
  1353. },
  1354. "bazel_features@1.2.0": {
  1355. "name": "bazel_features",
  1356. "version": "1.2.0",
  1357. "key": "bazel_features@1.2.0",
  1358. "repoName": "bazel_features",
  1359. "executionPlatformsToRegister": [],
  1360. "toolchainsToRegister": [],
  1361. "extensionUsages": [
  1362. {
  1363. "extensionBzlFile": "@bazel_features//private:extensions.bzl",
  1364. "extensionName": "version_extension",
  1365. "usingModule": "bazel_features@1.2.0",
  1366. "location": {
  1367. "file": "https://bcr.bazel.build/modules/bazel_features/1.2.0/MODULE.bazel",
  1368. "line": 6,
  1369. "column": 24
  1370. },
  1371. "imports": {
  1372. "bazel_features_globals": "bazel_features_globals",
  1373. "bazel_features_version": "bazel_features_version"
  1374. },
  1375. "devImports": [],
  1376. "tags": [],
  1377. "hasDevUseExtension": false,
  1378. "hasNonDevUseExtension": true
  1379. }
  1380. ],
  1381. "deps": {
  1382. "bazel_tools": "bazel_tools@_",
  1383. "local_config_platform": "local_config_platform@_"
  1384. },
  1385. "repoSpec": {
  1386. "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl",
  1387. "ruleClassName": "http_archive",
  1388. "attributes": {
  1389. "urls": [
  1390. "https://github.com/bazel-contrib/bazel_features/releases/download/v1.2.0/bazel_features-v1.2.0.tar.gz"
  1391. ],
  1392. "integrity": "sha256-uHicg8iT1+8wQdPyeVd0k2sn/2FwGnBd9S/UHW3b9pI=",
  1393. "strip_prefix": "bazel_features-1.2.0",
  1394. "remote_patches": {
  1395. "https://bcr.bazel.build/modules/bazel_features/1.2.0/patches/module_dot_bazel_version.patch": "sha256-B0rNFSA7VB65YY95ORkzTgsn21RkUwlAb1Xy2y2PyXA="
  1396. },
  1397. "remote_patch_strip": 1
  1398. }
  1399. }
  1400. },
  1401. "rules_java@7.4.0": {
  1402. "name": "rules_java",
  1403. "version": "7.4.0",
  1404. "key": "rules_java@7.4.0",
  1405. "repoName": "rules_java",
  1406. "executionPlatformsToRegister": [],
  1407. "toolchainsToRegister": [
  1408. "//toolchains:all",
  1409. "@local_jdk//:runtime_toolchain_definition",
  1410. "@local_jdk//:bootstrap_runtime_toolchain_definition",
  1411. "@remotejdk11_linux_toolchain_config_repo//:all",
  1412. "@remotejdk11_linux_aarch64_toolchain_config_repo//:all",
  1413. "@remotejdk11_linux_ppc64le_toolchain_config_repo//:all",
  1414. "@remotejdk11_linux_s390x_toolchain_config_repo//:all",
  1415. "@remotejdk11_macos_toolchain_config_repo//:all",
  1416. "@remotejdk11_macos_aarch64_toolchain_config_repo//:all",
  1417. "@remotejdk11_win_toolchain_config_repo//:all",
  1418. "@remotejdk11_win_arm64_toolchain_config_repo//:all",
  1419. "@remotejdk17_linux_toolchain_config_repo//:all",
  1420. "@remotejdk17_linux_aarch64_toolchain_config_repo//:all",
  1421. "@remotejdk17_linux_ppc64le_toolchain_config_repo//:all",
  1422. "@remotejdk17_linux_s390x_toolchain_config_repo//:all",
  1423. "@remotejdk17_macos_toolchain_config_repo//:all",
  1424. "@remotejdk17_macos_aarch64_toolchain_config_repo//:all",
  1425. "@remotejdk17_win_toolchain_config_repo//:all",
  1426. "@remotejdk17_win_arm64_toolchain_config_repo//:all",
  1427. "@remotejdk21_linux_toolchain_config_repo//:all",
  1428. "@remotejdk21_linux_aarch64_toolchain_config_repo//:all",
  1429. "@remotejdk21_macos_toolchain_config_repo//:all",
  1430. "@remotejdk21_macos_aarch64_toolchain_config_repo//:all",
  1431. "@remotejdk21_win_toolchain_config_repo//:all"
  1432. ],
  1433. "extensionUsages": [
  1434. {
  1435. "extensionBzlFile": "@rules_java//java:extensions.bzl",
  1436. "extensionName": "toolchains",
  1437. "usingModule": "rules_java@7.4.0",
  1438. "location": {
  1439. "file": "https://bcr.bazel.build/modules/rules_java/7.4.0/MODULE.bazel",
  1440. "line": 19,
  1441. "column": 27
  1442. },
  1443. "imports": {
  1444. "remote_java_tools": "remote_java_tools",
  1445. "remote_java_tools_linux": "remote_java_tools_linux",
  1446. "remote_java_tools_windows": "remote_java_tools_windows",
  1447. "remote_java_tools_darwin_x86_64": "remote_java_tools_darwin_x86_64",
  1448. "remote_java_tools_darwin_arm64": "remote_java_tools_darwin_arm64",
  1449. "local_jdk": "local_jdk",
  1450. "remotejdk11_linux_toolchain_config_repo": "remotejdk11_linux_toolchain_config_repo",
  1451. "remotejdk11_linux_aarch64_toolchain_config_repo": "remotejdk11_linux_aarch64_toolchain_config_repo",
  1452. "remotejdk11_linux_ppc64le_toolchain_config_repo": "remotejdk11_linux_ppc64le_toolchain_config_repo",
  1453. "remotejdk11_linux_s390x_toolchain_config_repo": "remotejdk11_linux_s390x_toolchain_config_repo",
  1454. "remotejdk11_macos_toolchain_config_repo": "remotejdk11_macos_toolchain_config_repo",
  1455. "remotejdk11_macos_aarch64_toolchain_config_repo": "remotejdk11_macos_aarch64_toolchain_config_repo",
  1456. "remotejdk11_win_toolchain_config_repo": "remotejdk11_win_toolchain_config_repo",
  1457. "remotejdk11_win_arm64_toolchain_config_repo": "remotejdk11_win_arm64_toolchain_config_repo",
  1458. "remotejdk17_linux_toolchain_config_repo": "remotejdk17_linux_toolchain_config_repo",
  1459. "remotejdk17_linux_aarch64_toolchain_config_repo": "remotejdk17_linux_aarch64_toolchain_config_repo",
  1460. "remotejdk17_linux_ppc64le_toolchain_config_repo": "remotejdk17_linux_ppc64le_toolchain_config_repo",
  1461. "remotejdk17_linux_s390x_toolchain_config_repo": "remotejdk17_linux_s390x_toolchain_config_repo",
  1462. "remotejdk17_macos_toolchain_config_repo": "remotejdk17_macos_toolchain_config_repo",
  1463. "remotejdk17_macos_aarch64_toolchain_config_repo": "remotejdk17_macos_aarch64_toolchain_config_repo",
  1464. "remotejdk17_win_toolchain_config_repo": "remotejdk17_win_toolchain_config_repo",
  1465. "remotejdk17_win_arm64_toolchain_config_repo": "remotejdk17_win_arm64_toolchain_config_repo",
  1466. "remotejdk21_linux_toolchain_config_repo": "remotejdk21_linux_toolchain_config_repo",
  1467. "remotejdk21_linux_aarch64_toolchain_config_repo": "remotejdk21_linux_aarch64_toolchain_config_repo",
  1468. "remotejdk21_macos_toolchain_config_repo": "remotejdk21_macos_toolchain_config_repo",
  1469. "remotejdk21_macos_aarch64_toolchain_config_repo": "remotejdk21_macos_aarch64_toolchain_config_repo",
  1470. "remotejdk21_win_toolchain_config_repo": "remotejdk21_win_toolchain_config_repo"
  1471. },
  1472. "devImports": [],
  1473. "tags": [],
  1474. "hasDevUseExtension": false,
  1475. "hasNonDevUseExtension": true
  1476. }
  1477. ],
  1478. "deps": {
  1479. "platforms": "platforms@0.0.8",
  1480. "rules_cc": "rules_cc@0.0.9",
  1481. "bazel_skylib": "bazel_skylib@1.5.0",
  1482. "rules_proto": "rules_proto@6.0.0-rc2",
  1483. "rules_license": "rules_license@0.0.7",
  1484. "bazel_tools": "bazel_tools@_",
  1485. "local_config_platform": "local_config_platform@_"
  1486. },
  1487. "repoSpec": {
  1488. "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl",
  1489. "ruleClassName": "http_archive",
  1490. "attributes": {
  1491. "urls": [
  1492. "https://github.com/bazelbuild/rules_java/releases/download/7.4.0/rules_java-7.4.0.tar.gz"
  1493. ],
  1494. "integrity": "sha256-l27wi0nJKXQfIBeQ5Z44B8cq2B9CjIvJU82+/1/tFes=",
  1495. "strip_prefix": "",
  1496. "remote_patches": {},
  1497. "remote_patch_strip": 0
  1498. }
  1499. }
  1500. },
  1501. "upb@0.0.0-20220923-a547704": {
  1502. "name": "upb",
  1503. "version": "0.0.0-20220923-a547704",
  1504. "key": "upb@0.0.0-20220923-a547704",
  1505. "repoName": "upb",
  1506. "executionPlatformsToRegister": [],
  1507. "toolchainsToRegister": [],
  1508. "extensionUsages": [],
  1509. "deps": {
  1510. "bazel_skylib": "bazel_skylib@1.5.0",
  1511. "rules_proto": "rules_proto@6.0.0-rc2",
  1512. "com_google_protobuf": "protobuf@21.7",
  1513. "com_google_absl": "abseil-cpp@20240116.1",
  1514. "platforms": "platforms@0.0.8",
  1515. "bazel_tools": "bazel_tools@_",
  1516. "local_config_platform": "local_config_platform@_"
  1517. },
  1518. "repoSpec": {
  1519. "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl",
  1520. "ruleClassName": "http_archive",
  1521. "attributes": {
  1522. "urls": [
  1523. "https://github.com/protocolbuffers/upb/archive/a5477045acaa34586420942098f5fecd3570f577.tar.gz"
  1524. ],
  1525. "integrity": "sha256-z39x6v+QskwaKLSWRan/A6mmwecTQpHOcJActj5zZLU=",
  1526. "strip_prefix": "upb-a5477045acaa34586420942098f5fecd3570f577",
  1527. "remote_patches": {
  1528. "https://bcr.bazel.build/modules/upb/0.0.0-20220923-a547704/patches/module_dot_bazel.patch": "sha256-wH4mNS6ZYy+8uC0HoAft/c7SDsq2Kxf+J8dUakXhaB0="
  1529. },
  1530. "remote_patch_strip": 0
  1531. }
  1532. }
  1533. },
  1534. "rules_jvm_external@4.4.2": {
  1535. "name": "rules_jvm_external",
  1536. "version": "4.4.2",
  1537. "key": "rules_jvm_external@4.4.2",
  1538. "repoName": "rules_jvm_external",
  1539. "executionPlatformsToRegister": [],
  1540. "toolchainsToRegister": [],
  1541. "extensionUsages": [
  1542. {
  1543. "extensionBzlFile": "@rules_jvm_external//:non-module-deps.bzl",
  1544. "extensionName": "non_module_deps",
  1545. "usingModule": "rules_jvm_external@4.4.2",
  1546. "location": {
  1547. "file": "https://bcr.bazel.build/modules/rules_jvm_external/4.4.2/MODULE.bazel",
  1548. "line": 9,
  1549. "column": 32
  1550. },
  1551. "imports": {
  1552. "io_bazel_rules_kotlin": "io_bazel_rules_kotlin"
  1553. },
  1554. "devImports": [],
  1555. "tags": [],
  1556. "hasDevUseExtension": false,
  1557. "hasNonDevUseExtension": true
  1558. },
  1559. {
  1560. "extensionBzlFile": "@rules_jvm_external//:extensions.bzl",
  1561. "extensionName": "maven",
  1562. "usingModule": "rules_jvm_external@4.4.2",
  1563. "location": {
  1564. "file": "https://bcr.bazel.build/modules/rules_jvm_external/4.4.2/MODULE.bazel",
  1565. "line": 16,
  1566. "column": 22
  1567. },
  1568. "imports": {
  1569. "rules_jvm_external_deps": "rules_jvm_external_deps"
  1570. },
  1571. "devImports": [],
  1572. "tags": [
  1573. {
  1574. "tagName": "install",
  1575. "attributeValues": {
  1576. "name": "rules_jvm_external_deps",
  1577. "artifacts": [
  1578. "com.google.cloud:google-cloud-core:1.93.10",
  1579. "com.google.cloud:google-cloud-storage:1.113.4",
  1580. "com.google.code.gson:gson:2.9.0",
  1581. "org.apache.maven:maven-artifact:3.8.6",
  1582. "software.amazon.awssdk:s3:2.17.183"
  1583. ],
  1584. "lock_file": "@rules_jvm_external//:rules_jvm_external_deps_install.json"
  1585. },
  1586. "devDependency": false,
  1587. "location": {
  1588. "file": "https://bcr.bazel.build/modules/rules_jvm_external/4.4.2/MODULE.bazel",
  1589. "line": 18,
  1590. "column": 14
  1591. }
  1592. }
  1593. ],
  1594. "hasDevUseExtension": false,
  1595. "hasNonDevUseExtension": true
  1596. }
  1597. ],
  1598. "deps": {
  1599. "bazel_skylib": "bazel_skylib@1.5.0",
  1600. "io_bazel_stardoc": "stardoc@0.5.1",
  1601. "bazel_tools": "bazel_tools@_",
  1602. "local_config_platform": "local_config_platform@_"
  1603. },
  1604. "repoSpec": {
  1605. "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl",
  1606. "ruleClassName": "http_archive",
  1607. "attributes": {
  1608. "urls": [
  1609. "https://github.com/bazelbuild/rules_jvm_external/archive/refs/tags/4.4.2.zip"
  1610. ],
  1611. "integrity": "sha256-c1YC9QgT6y6pPKP15DsZWb2AshO4NqB6YqKddXZwt3s=",
  1612. "strip_prefix": "rules_jvm_external-4.4.2",
  1613. "remote_patches": {},
  1614. "remote_patch_strip": 0
  1615. }
  1616. }
  1617. },
  1618. "buildozer@6.4.0.2": {
  1619. "name": "buildozer",
  1620. "version": "6.4.0.2",
  1621. "key": "buildozer@6.4.0.2",
  1622. "repoName": "buildozer",
  1623. "executionPlatformsToRegister": [],
  1624. "toolchainsToRegister": [],
  1625. "extensionUsages": [
  1626. {
  1627. "extensionBzlFile": "@buildozer//:buildozer_binary.bzl",
  1628. "extensionName": "buildozer_binary",
  1629. "usingModule": "buildozer@6.4.0.2",
  1630. "location": {
  1631. "file": "https://bcr.bazel.build/modules/buildozer/6.4.0.2/MODULE.bazel",
  1632. "line": 7,
  1633. "column": 33
  1634. },
  1635. "imports": {
  1636. "buildozer_binary": "buildozer_binary"
  1637. },
  1638. "devImports": [],
  1639. "tags": [
  1640. {
  1641. "tagName": "buildozer",
  1642. "attributeValues": {
  1643. "sha256": {
  1644. "darwin-amd64": "d29e347ecd6b5673d72cb1a8de05bf1b06178dd229ff5eb67fad5100c840cc8e",
  1645. "darwin-arm64": "9b9e71bdbec5e7223871e913b65d12f6d8fa026684daf991f00e52ed36a6978d",
  1646. "linux-amd64": "8dfd6345da4e9042daa738d7fdf34f699c5dfce4632f7207956fceedd8494119",
  1647. "linux-arm64": "6559558fded658c8fa7432a9d011f7c4dcbac6b738feae73d2d5c352e5f605fa",
  1648. "windows-amd64": "e7f05bf847f7c3689dd28926460ce6e1097ae97380ac8e6ae7147b7b706ba19b"
  1649. },
  1650. "version": "6.4.0"
  1651. },
  1652. "devDependency": false,
  1653. "location": {
  1654. "file": "https://bcr.bazel.build/modules/buildozer/6.4.0.2/MODULE.bazel",
  1655. "line": 8,
  1656. "column": 27
  1657. }
  1658. }
  1659. ],
  1660. "hasDevUseExtension": false,
  1661. "hasNonDevUseExtension": true
  1662. }
  1663. ],
  1664. "deps": {
  1665. "bazel_tools": "bazel_tools@_",
  1666. "local_config_platform": "local_config_platform@_"
  1667. },
  1668. "repoSpec": {
  1669. "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl",
  1670. "ruleClassName": "http_archive",
  1671. "attributes": {
  1672. "urls": [
  1673. "https://github.com/fmeum/buildozer/releases/download/v6.4.0.2/buildozer-v6.4.0.2.tar.gz"
  1674. ],
  1675. "integrity": "sha256-k7tFKQMR2AygxpmZfH0yEPnQmF3efFgD9rBPkj+Yz/8=",
  1676. "strip_prefix": "buildozer-6.4.0.2",
  1677. "remote_patches": {
  1678. "https://bcr.bazel.build/modules/buildozer/6.4.0.2/patches/module_dot_bazel_version.patch": "sha256-gKANF2HMilj7bWmuXs4lbBIAAansuWC4IhWGB/CerjU="
  1679. },
  1680. "remote_patch_strip": 1
  1681. }
  1682. }
  1683. },
  1684. "stardoc@0.5.1": {
  1685. "name": "stardoc",
  1686. "version": "0.5.1",
  1687. "key": "stardoc@0.5.1",
  1688. "repoName": "stardoc",
  1689. "executionPlatformsToRegister": [],
  1690. "toolchainsToRegister": [],
  1691. "extensionUsages": [],
  1692. "deps": {
  1693. "bazel_skylib": "bazel_skylib@1.5.0",
  1694. "rules_java": "rules_java@7.4.0",
  1695. "bazel_tools": "bazel_tools@_",
  1696. "local_config_platform": "local_config_platform@_"
  1697. },
  1698. "repoSpec": {
  1699. "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl",
  1700. "ruleClassName": "http_archive",
  1701. "attributes": {
  1702. "urls": [
  1703. "https://github.com/bazelbuild/stardoc/releases/download/0.5.1/stardoc-0.5.1.tar.gz"
  1704. ],
  1705. "integrity": "sha256-qoFNrgrEALurLoiB+ZFcb0fElmS/CHxAmhX5BDjSwj4=",
  1706. "strip_prefix": "",
  1707. "remote_patches": {
  1708. "https://bcr.bazel.build/modules/stardoc/0.5.1/patches/module_dot_bazel.patch": "sha256-UAULCuTpJE7SG0YrR9XLjMfxMRmbP+za3uW9ONZ5rjI="
  1709. },
  1710. "remote_patch_strip": 0
  1711. }
  1712. }
  1713. }
  1714. },
  1715. "moduleExtensions": {
  1716. "//bazel/cc_toolchains:clang_configuration.bzl%clang_toolchain_extension": {
  1717. "general": {
  1718. "bzlTransitiveDigest": "K2JE5G8tvZ+UBmAPF5s/YSUNg53pTvAZi2ause87buQ=",
  1719. "recordedFileInputs": {},
  1720. "recordedDirentsInputs": {},
  1721. "envVariables": {},
  1722. "generatedRepoSpecs": {
  1723. "bazel_cc_toolchain": {
  1724. "bzlFile": "@@//bazel/cc_toolchains:clang_configuration.bzl",
  1725. "ruleClassName": "configure_clang_toolchain",
  1726. "attributes": {}
  1727. }
  1728. },
  1729. "recordedRepoMappingEntries": []
  1730. }
  1731. },
  1732. "//bazel/llvm_project:llvm_project.bzl%llvm_project": {
  1733. "general": {
  1734. "bzlTransitiveDigest": "QG2kkxgw5yvNHGJYbsdwlidT0uFXu5uZMW6KftuXDsI=",
  1735. "recordedFileInputs": {},
  1736. "recordedDirentsInputs": {},
  1737. "envVariables": {},
  1738. "generatedRepoSpecs": {
  1739. "llvm-project": {
  1740. "bzlFile": "@@_main~_repo_rules~llvm-raw//utils/bazel:configure.bzl",
  1741. "ruleClassName": "llvm_configure",
  1742. "attributes": {
  1743. "targets": [
  1744. "AArch64",
  1745. "X86"
  1746. ]
  1747. }
  1748. }
  1749. },
  1750. "recordedRepoMappingEntries": [
  1751. [
  1752. "",
  1753. "llvm-raw",
  1754. "_main~_repo_rules~llvm-raw"
  1755. ]
  1756. ]
  1757. }
  1758. },
  1759. "@@apple_support~//crosstool:setup.bzl%apple_cc_configure_extension": {
  1760. "general": {
  1761. "bzlTransitiveDigest": "TMkUP4/N3ZORvZrcDg9FxSoW9r/7+uDVH/SI2biRyJg=",
  1762. "recordedFileInputs": {},
  1763. "recordedDirentsInputs": {},
  1764. "envVariables": {},
  1765. "generatedRepoSpecs": {
  1766. "local_config_apple_cc": {
  1767. "bzlFile": "@@apple_support~//crosstool:setup.bzl",
  1768. "ruleClassName": "_apple_cc_autoconf",
  1769. "attributes": {}
  1770. },
  1771. "local_config_apple_cc_toolchains": {
  1772. "bzlFile": "@@apple_support~//crosstool:setup.bzl",
  1773. "ruleClassName": "_apple_cc_autoconf_toolchains",
  1774. "attributes": {}
  1775. }
  1776. },
  1777. "recordedRepoMappingEntries": [
  1778. [
  1779. "apple_support~",
  1780. "bazel_tools",
  1781. "bazel_tools"
  1782. ]
  1783. ]
  1784. }
  1785. },
  1786. "@@bazel_features~//private:extensions.bzl%version_extension": {
  1787. "general": {
  1788. "bzlTransitiveDigest": "xm7Skm1Las5saxzFWt2hbS+e68BWi+MXyt6+lKIhjPA=",
  1789. "recordedFileInputs": {},
  1790. "recordedDirentsInputs": {},
  1791. "envVariables": {},
  1792. "generatedRepoSpecs": {
  1793. "bazel_features_version": {
  1794. "bzlFile": "@@bazel_features~//private:version_repo.bzl",
  1795. "ruleClassName": "version_repo",
  1796. "attributes": {}
  1797. },
  1798. "bazel_features_globals": {
  1799. "bzlFile": "@@bazel_features~//private:globals_repo.bzl",
  1800. "ruleClassName": "globals_repo",
  1801. "attributes": {
  1802. "globals": {
  1803. "RunEnvironmentInfo": "5.3.0",
  1804. "DefaultInfo": "0.0.1",
  1805. "__TestingOnly_NeverAvailable": "1000000000.0.0"
  1806. }
  1807. }
  1808. }
  1809. },
  1810. "recordedRepoMappingEntries": []
  1811. }
  1812. },
  1813. "@@bazel_tools//tools/android:android_extensions.bzl%remote_android_tools_extensions": {
  1814. "general": {
  1815. "bzlTransitiveDigest": "ZggrqnDIPRFCqT9XaCYOxLiJx1XuMtOZNG1jvKYZ5lA=",
  1816. "recordedFileInputs": {},
  1817. "recordedDirentsInputs": {},
  1818. "envVariables": {},
  1819. "generatedRepoSpecs": {
  1820. "android_tools": {
  1821. "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl",
  1822. "ruleClassName": "http_archive",
  1823. "attributes": {
  1824. "sha256": "2b661a761a735b41c41b3a78089f4fc1982626c76ddb944604ae3ff8c545d3c2",
  1825. "url": "https://mirror.bazel.build/bazel_android_tools/android_tools_pkg-0.30.0.tar"
  1826. }
  1827. },
  1828. "android_gmaven_r8": {
  1829. "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl",
  1830. "ruleClassName": "http_jar",
  1831. "attributes": {
  1832. "sha256": "57a696749695a09381a87bc2f08c3a8ed06a717a5caa3ef878a3077e0d3af19d",
  1833. "url": "https://maven.google.com/com/android/tools/r8/8.1.56/r8-8.1.56.jar"
  1834. }
  1835. }
  1836. },
  1837. "recordedRepoMappingEntries": []
  1838. }
  1839. },
  1840. "@@bazel_tools//tools/cpp:cc_configure.bzl%cc_configure_extension": {
  1841. "general": {
  1842. "bzlTransitiveDigest": "PHpT2yqMGms2U4L3E/aZ+WcQalmZWm+ILdP3yiLsDhA=",
  1843. "recordedFileInputs": {},
  1844. "recordedDirentsInputs": {},
  1845. "envVariables": {},
  1846. "generatedRepoSpecs": {
  1847. "local_config_cc": {
  1848. "bzlFile": "@@bazel_tools//tools/cpp:cc_configure.bzl",
  1849. "ruleClassName": "cc_autoconf",
  1850. "attributes": {}
  1851. },
  1852. "local_config_cc_toolchains": {
  1853. "bzlFile": "@@bazel_tools//tools/cpp:cc_configure.bzl",
  1854. "ruleClassName": "cc_autoconf_toolchains",
  1855. "attributes": {}
  1856. }
  1857. },
  1858. "recordedRepoMappingEntries": [
  1859. [
  1860. "bazel_tools",
  1861. "bazel_tools",
  1862. "bazel_tools"
  1863. ]
  1864. ]
  1865. }
  1866. },
  1867. "@@bazel_tools//tools/osx:xcode_configure.bzl%xcode_configure_extension": {
  1868. "general": {
  1869. "bzlTransitiveDigest": "Qh2bWTU6QW6wkrd87qrU4YeY+SG37Nvw3A0PR4Y0L2Y=",
  1870. "recordedFileInputs": {},
  1871. "recordedDirentsInputs": {},
  1872. "envVariables": {},
  1873. "generatedRepoSpecs": {
  1874. "local_config_xcode": {
  1875. "bzlFile": "@@bazel_tools//tools/osx:xcode_configure.bzl",
  1876. "ruleClassName": "xcode_autoconf",
  1877. "attributes": {
  1878. "xcode_locator": "@bazel_tools//tools/osx:xcode_locator.m",
  1879. "remote_xcode": ""
  1880. }
  1881. }
  1882. },
  1883. "recordedRepoMappingEntries": []
  1884. }
  1885. },
  1886. "@@bazel_tools//tools/sh:sh_configure.bzl%sh_configure_extension": {
  1887. "general": {
  1888. "bzlTransitiveDigest": "hp4NgmNjEg5+xgvzfh6L83bt9/aiiWETuNpwNuF1MSU=",
  1889. "recordedFileInputs": {},
  1890. "recordedDirentsInputs": {},
  1891. "envVariables": {},
  1892. "generatedRepoSpecs": {
  1893. "local_config_sh": {
  1894. "bzlFile": "@@bazel_tools//tools/sh:sh_configure.bzl",
  1895. "ruleClassName": "sh_config",
  1896. "attributes": {}
  1897. }
  1898. },
  1899. "recordedRepoMappingEntries": []
  1900. }
  1901. },
  1902. "@@bazel_tools//tools/test:extensions.bzl%remote_coverage_tools_extension": {
  1903. "general": {
  1904. "bzlTransitiveDigest": "7n9r2sWPYvn/OzUdHUoiJN/1hgIqWKOFCEQFVwHZGU0=",
  1905. "recordedFileInputs": {},
  1906. "recordedDirentsInputs": {},
  1907. "envVariables": {},
  1908. "generatedRepoSpecs": {
  1909. "remote_coverage_tools": {
  1910. "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl",
  1911. "ruleClassName": "http_archive",
  1912. "attributes": {
  1913. "sha256": "7006375f6756819b7013ca875eab70a541cf7d89142d9c511ed78ea4fefa38af",
  1914. "urls": [
  1915. "https://mirror.bazel.build/bazel_coverage_output_generator/releases/coverage_output_generator-v2.6.zip"
  1916. ]
  1917. }
  1918. }
  1919. },
  1920. "recordedRepoMappingEntries": []
  1921. }
  1922. },
  1923. "@@buildozer~//:buildozer_binary.bzl%buildozer_binary": {
  1924. "general": {
  1925. "bzlTransitiveDigest": "EleDU/FQ1+e/RgkW3aIDmdaxZEthvoWQhsqFTxiSgMI=",
  1926. "recordedFileInputs": {},
  1927. "recordedDirentsInputs": {},
  1928. "envVariables": {},
  1929. "generatedRepoSpecs": {
  1930. "buildozer_binary": {
  1931. "bzlFile": "@@buildozer~//private:buildozer_binary.bzl",
  1932. "ruleClassName": "_buildozer_binary_repo",
  1933. "attributes": {
  1934. "sha256": {
  1935. "darwin-amd64": "d29e347ecd6b5673d72cb1a8de05bf1b06178dd229ff5eb67fad5100c840cc8e",
  1936. "darwin-arm64": "9b9e71bdbec5e7223871e913b65d12f6d8fa026684daf991f00e52ed36a6978d",
  1937. "linux-amd64": "8dfd6345da4e9042daa738d7fdf34f699c5dfce4632f7207956fceedd8494119",
  1938. "linux-arm64": "6559558fded658c8fa7432a9d011f7c4dcbac6b738feae73d2d5c352e5f605fa",
  1939. "windows-amd64": "e7f05bf847f7c3689dd28926460ce6e1097ae97380ac8e6ae7147b7b706ba19b"
  1940. },
  1941. "version": "6.4.0"
  1942. }
  1943. }
  1944. },
  1945. "recordedRepoMappingEntries": []
  1946. }
  1947. },
  1948. "@@hedron_compile_commands~//:workspace_setup.bzl%hedron_compile_commands_extension": {
  1949. "general": {
  1950. "bzlTransitiveDigest": "yoEt+Bvr4Bfwups/fc3ckiVxVABBD5dzrnkQHYNDwwM=",
  1951. "recordedFileInputs": {},
  1952. "recordedDirentsInputs": {},
  1953. "envVariables": {},
  1954. "generatedRepoSpecs": {},
  1955. "recordedRepoMappingEntries": [
  1956. [
  1957. "hedron_compile_commands~",
  1958. "bazel_tools",
  1959. "bazel_tools"
  1960. ]
  1961. ]
  1962. }
  1963. },
  1964. "@@hedron_compile_commands~//:workspace_setup_transitive.bzl%hedron_compile_commands_extension": {
  1965. "general": {
  1966. "bzlTransitiveDigest": "IfDf0vEa2jjQ11RNpUM0u4xftPXIs+pyM8IMVkRqVMk=",
  1967. "recordedFileInputs": {},
  1968. "recordedDirentsInputs": {},
  1969. "envVariables": {},
  1970. "generatedRepoSpecs": {},
  1971. "recordedRepoMappingEntries": []
  1972. }
  1973. },
  1974. "@@hedron_compile_commands~//:workspace_setup_transitive_transitive.bzl%hedron_compile_commands_extension": {
  1975. "general": {
  1976. "bzlTransitiveDigest": "1p58k3o2Jgjt/pBE7cb8WmmkplrSguIKma/h32x7X10=",
  1977. "recordedFileInputs": {},
  1978. "recordedDirentsInputs": {},
  1979. "envVariables": {},
  1980. "generatedRepoSpecs": {},
  1981. "recordedRepoMappingEntries": []
  1982. }
  1983. },
  1984. "@@hedron_compile_commands~//:workspace_setup_transitive_transitive_transitive.bzl%hedron_compile_commands_extension": {
  1985. "general": {
  1986. "bzlTransitiveDigest": "arNWX4EleUjJxqkM5nCRTj+ce05Zz1gSdGH1DCKOoLs=",
  1987. "recordedFileInputs": {},
  1988. "recordedDirentsInputs": {},
  1989. "envVariables": {},
  1990. "generatedRepoSpecs": {},
  1991. "recordedRepoMappingEntries": []
  1992. }
  1993. },
  1994. "@@pybind11_bazel~//:internal_configure.bzl%internal_configure_extension": {
  1995. "general": {
  1996. "bzlTransitiveDigest": "SwhoK0Z5YX0UfAOkOGF67A+Xa4fbhDrU8Rfns2n05yM=",
  1997. "recordedFileInputs": {
  1998. "@@pybind11_bazel~//MODULE.bazel": "1972d10555d0cb2a9df4bb30be5f293178a2ccf1678a6ce097c21d87ec6e5f1d"
  1999. },
  2000. "recordedDirentsInputs": {},
  2001. "envVariables": {},
  2002. "generatedRepoSpecs": {
  2003. "pybind11": {
  2004. "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl",
  2005. "ruleClassName": "http_archive",
  2006. "attributes": {
  2007. "build_file": "@@pybind11_bazel~//:pybind11.BUILD",
  2008. "strip_prefix": "pybind11-2.11.1",
  2009. "urls": [
  2010. "https://github.com/pybind/pybind11/archive/v2.11.1.zip"
  2011. ]
  2012. }
  2013. }
  2014. },
  2015. "recordedRepoMappingEntries": [
  2016. [
  2017. "pybind11_bazel~",
  2018. "bazel_tools",
  2019. "bazel_tools"
  2020. ]
  2021. ]
  2022. }
  2023. },
  2024. "@@rules_bison~//bison/internal:default_toolchain_ext.bzl%default_toolchain_ext": {
  2025. "general": {
  2026. "bzlTransitiveDigest": "JVWcUny48LFS9D+xz4b9u/94awfBOIGXV5iu8iY/nRc=",
  2027. "recordedFileInputs": {},
  2028. "recordedDirentsInputs": {},
  2029. "envVariables": {},
  2030. "generatedRepoSpecs": {
  2031. "bison_v3.3.2": {
  2032. "bzlFile": "@@rules_bison~//bison/rules:bison_repository.bzl",
  2033. "ruleClassName": "bison_repository",
  2034. "attributes": {
  2035. "version": "3.3.2"
  2036. }
  2037. },
  2038. "bison": {
  2039. "bzlFile": "@@rules_bison~//bison/rules:bison_toolchain_repository.bzl",
  2040. "ruleClassName": "bison_toolchain_repository",
  2041. "attributes": {
  2042. "bison_repository": "@bison_v3.3.2"
  2043. }
  2044. }
  2045. },
  2046. "moduleExtensionMetadata": {
  2047. "explicitRootModuleDirectDeps": [
  2048. "bison"
  2049. ],
  2050. "explicitRootModuleDirectDevDeps": [],
  2051. "useAllRepos": "NO",
  2052. "reproducible": false
  2053. },
  2054. "recordedRepoMappingEntries": []
  2055. }
  2056. },
  2057. "@@rules_flex~//flex/internal:default_toolchain_ext.bzl%default_toolchain_ext": {
  2058. "general": {
  2059. "bzlTransitiveDigest": "fn+aX2vKsiaNLj3QtNfsRcI8fiATDtxAayRTJFGJkNI=",
  2060. "recordedFileInputs": {},
  2061. "recordedDirentsInputs": {},
  2062. "envVariables": {},
  2063. "generatedRepoSpecs": {
  2064. "flex": {
  2065. "bzlFile": "@@rules_flex~//flex/rules:flex_toolchain_repository.bzl",
  2066. "ruleClassName": "flex_toolchain_repository",
  2067. "attributes": {
  2068. "flex_repository": "@flex_v2.6.4"
  2069. }
  2070. },
  2071. "flex_v2.6.4": {
  2072. "bzlFile": "@@rules_flex~//flex/rules:flex_repository.bzl",
  2073. "ruleClassName": "flex_repository",
  2074. "attributes": {
  2075. "version": "2.6.4"
  2076. }
  2077. }
  2078. },
  2079. "moduleExtensionMetadata": {
  2080. "explicitRootModuleDirectDeps": [
  2081. "flex"
  2082. ],
  2083. "explicitRootModuleDirectDevDeps": [],
  2084. "useAllRepos": "NO",
  2085. "reproducible": false
  2086. },
  2087. "recordedRepoMappingEntries": []
  2088. }
  2089. },
  2090. "@@rules_foreign_cc~//foreign_cc:extensions.bzl%ext": {
  2091. "general": {
  2092. "bzlTransitiveDigest": "0/GTFp9D0gb6hOu9jXXnaWa5hPbzPpIzLVxITdJTwvo=",
  2093. "recordedFileInputs": {},
  2094. "recordedDirentsInputs": {},
  2095. "envVariables": {},
  2096. "generatedRepoSpecs": {
  2097. "cmake-3.23.2-linux-aarch64": {
  2098. "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl",
  2099. "ruleClassName": "http_archive",
  2100. "attributes": {
  2101. "urls": [
  2102. "https://github.com/Kitware/CMake/releases/download/v3.23.2/cmake-3.23.2-linux-aarch64.tar.gz"
  2103. ],
  2104. "sha256": "f2654bf780b53f170bbbec44d8ac67d401d24788e590faa53036a89476efa91e",
  2105. "strip_prefix": "cmake-3.23.2-linux-aarch64",
  2106. "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"
  2107. }
  2108. },
  2109. "rules_foreign_cc_framework_toolchain_macos": {
  2110. "bzlFile": "@@rules_foreign_cc~//foreign_cc/private/framework:toolchain.bzl",
  2111. "ruleClassName": "framework_toolchain_repository",
  2112. "attributes": {
  2113. "commands_src": "@rules_foreign_cc//foreign_cc/private/framework/toolchains:macos_commands.bzl",
  2114. "exec_compatible_with": [
  2115. "@platforms//os:macos"
  2116. ],
  2117. "target_compatible_with": []
  2118. }
  2119. },
  2120. "ninja_1.11.0_linux": {
  2121. "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl",
  2122. "ruleClassName": "http_archive",
  2123. "attributes": {
  2124. "urls": [
  2125. "https://github.com/ninja-build/ninja/releases/download/v1.11.0/ninja-linux.zip"
  2126. ],
  2127. "sha256": "9726e730d5b8599f82654dc80265e64a10a8a817552c34153361ed0c017f9f02",
  2128. "strip_prefix": "",
  2129. "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"
  2130. }
  2131. },
  2132. "gnumake_src": {
  2133. "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl",
  2134. "ruleClassName": "http_archive",
  2135. "attributes": {
  2136. "build_file_content": "filegroup(\n name = \"all_srcs\",\n srcs = glob([\"**\"]),\n visibility = [\"//visibility:public\"],\n)\n",
  2137. "patches": [
  2138. "@@rules_foreign_cc~//toolchains:make-reproducible-bootstrap.patch"
  2139. ],
  2140. "sha256": "e05fdde47c5f7ca45cb697e973894ff4f5d79e13b750ed57d7b66d8defc78e19",
  2141. "strip_prefix": "make-4.3",
  2142. "urls": [
  2143. "https://mirror.bazel.build/ftpmirror.gnu.org/gnu/make/make-4.3.tar.gz",
  2144. "http://ftpmirror.gnu.org/gnu/make/make-4.3.tar.gz"
  2145. ]
  2146. }
  2147. },
  2148. "ninja_1.11.0_win": {
  2149. "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl",
  2150. "ruleClassName": "http_archive",
  2151. "attributes": {
  2152. "urls": [
  2153. "https://github.com/ninja-build/ninja/releases/download/v1.11.0/ninja-win.zip"
  2154. ],
  2155. "sha256": "d0ee3da143211aa447e750085876c9b9d7bcdd637ab5b2c5b41349c617f22f3b",
  2156. "strip_prefix": "",
  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 = \"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"
  2158. }
  2159. },
  2160. "cmake_3.23.2_toolchains": {
  2161. "bzlFile": "@@rules_foreign_cc~//toolchains:prebuilt_toolchains_repository.bzl",
  2162. "ruleClassName": "prebuilt_toolchains_repository",
  2163. "attributes": {
  2164. "repos": {
  2165. "cmake-3.23.2-linux-aarch64": [
  2166. "@platforms//cpu:aarch64",
  2167. "@platforms//os:linux"
  2168. ],
  2169. "cmake-3.23.2-linux-x86_64": [
  2170. "@platforms//cpu:x86_64",
  2171. "@platforms//os:linux"
  2172. ],
  2173. "cmake-3.23.2-macos-universal": [
  2174. "@platforms//os:macos"
  2175. ],
  2176. "cmake-3.23.2-windows-i386": [
  2177. "@platforms//cpu:x86_32",
  2178. "@platforms//os:windows"
  2179. ],
  2180. "cmake-3.23.2-windows-x86_64": [
  2181. "@platforms//cpu:x86_64",
  2182. "@platforms//os:windows"
  2183. ]
  2184. },
  2185. "tool": "cmake"
  2186. }
  2187. },
  2188. "cmake_src": {
  2189. "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl",
  2190. "ruleClassName": "http_archive",
  2191. "attributes": {
  2192. "build_file_content": "filegroup(\n name = \"all_srcs\",\n srcs = glob([\"**\"]),\n visibility = [\"//visibility:public\"],\n)\n",
  2193. "sha256": "f316b40053466f9a416adf981efda41b160ca859e97f6a484b447ea299ff26aa",
  2194. "strip_prefix": "cmake-3.23.2",
  2195. "urls": [
  2196. "https://github.com/Kitware/CMake/releases/download/v3.23.2/cmake-3.23.2.tar.gz"
  2197. ]
  2198. }
  2199. },
  2200. "bazel_skylib": {
  2201. "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl",
  2202. "ruleClassName": "http_archive",
  2203. "attributes": {
  2204. "urls": [
  2205. "https://mirror.bazel.build/github.com/bazelbuild/bazel-skylib/releases/download/1.2.1/bazel-skylib-1.2.1.tar.gz",
  2206. "https://github.com/bazelbuild/bazel-skylib/releases/download/1.2.1/bazel-skylib-1.2.1.tar.gz"
  2207. ],
  2208. "sha256": "f7be3474d42aae265405a592bb7da8e171919d74c16f082a5457840f06054728"
  2209. }
  2210. },
  2211. "cmake-3.23.2-macos-universal": {
  2212. "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl",
  2213. "ruleClassName": "http_archive",
  2214. "attributes": {
  2215. "urls": [
  2216. "https://github.com/Kitware/CMake/releases/download/v3.23.2/cmake-3.23.2-macos-universal.tar.gz"
  2217. ],
  2218. "sha256": "853a0f9af148c5ef47282ffffee06c4c9f257be2635936755f39ca13c3286c88",
  2219. "strip_prefix": "cmake-3.23.2-macos-universal/CMake.app/Contents",
  2220. "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"
  2221. }
  2222. },
  2223. "rules_foreign_cc_framework_toolchain_freebsd": {
  2224. "bzlFile": "@@rules_foreign_cc~//foreign_cc/private/framework:toolchain.bzl",
  2225. "ruleClassName": "framework_toolchain_repository",
  2226. "attributes": {
  2227. "commands_src": "@rules_foreign_cc//foreign_cc/private/framework/toolchains:freebsd_commands.bzl",
  2228. "exec_compatible_with": [
  2229. "@platforms//os:freebsd"
  2230. ],
  2231. "target_compatible_with": []
  2232. }
  2233. },
  2234. "rules_foreign_cc_framework_toolchain_linux": {
  2235. "bzlFile": "@@rules_foreign_cc~//foreign_cc/private/framework:toolchain.bzl",
  2236. "ruleClassName": "framework_toolchain_repository",
  2237. "attributes": {
  2238. "commands_src": "@rules_foreign_cc//foreign_cc/private/framework/toolchains:linux_commands.bzl",
  2239. "exec_compatible_with": [
  2240. "@platforms//os:linux"
  2241. ],
  2242. "target_compatible_with": []
  2243. }
  2244. },
  2245. "rules_python": {
  2246. "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl",
  2247. "ruleClassName": "http_archive",
  2248. "attributes": {
  2249. "sha256": "5fa3c738d33acca3b97622a13a741129f67ef43f5fdfcec63b29374cc0574c29",
  2250. "strip_prefix": "rules_python-0.9.0",
  2251. "url": "https://github.com/bazelbuild/rules_python/archive/refs/tags/0.9.0.tar.gz"
  2252. }
  2253. },
  2254. "ninja_1.11.0_mac": {
  2255. "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl",
  2256. "ruleClassName": "http_archive",
  2257. "attributes": {
  2258. "urls": [
  2259. "https://github.com/ninja-build/ninja/releases/download/v1.11.0/ninja-mac.zip"
  2260. ],
  2261. "sha256": "21915277db59756bfc61f6f281c1f5e3897760b63776fd3d360f77dd7364137f",
  2262. "strip_prefix": "",
  2263. "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"
  2264. }
  2265. },
  2266. "ninja_build_src": {
  2267. "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl",
  2268. "ruleClassName": "http_archive",
  2269. "attributes": {
  2270. "build_file_content": "filegroup(\n name = \"all_srcs\",\n srcs = glob([\"**\"]),\n visibility = [\"//visibility:public\"],\n)\n",
  2271. "sha256": "3c6ba2e66400fe3f1ae83deb4b235faf3137ec20bd5b08c29bfc368db143e4c6",
  2272. "strip_prefix": "ninja-1.11.0",
  2273. "urls": [
  2274. "https://github.com/ninja-build/ninja/archive/v1.11.0.tar.gz"
  2275. ]
  2276. }
  2277. },
  2278. "cmake-3.23.2-windows-i386": {
  2279. "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl",
  2280. "ruleClassName": "http_archive",
  2281. "attributes": {
  2282. "urls": [
  2283. "https://github.com/Kitware/CMake/releases/download/v3.23.2/cmake-3.23.2-windows-i386.zip"
  2284. ],
  2285. "sha256": "6a4fcd6a2315b93cb23c93507efccacc30c449c2bf98f14d6032bb226c582e07",
  2286. "strip_prefix": "cmake-3.23.2-windows-i386",
  2287. "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"
  2288. }
  2289. },
  2290. "cmake-3.23.2-linux-x86_64": {
  2291. "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl",
  2292. "ruleClassName": "http_archive",
  2293. "attributes": {
  2294. "urls": [
  2295. "https://github.com/Kitware/CMake/releases/download/v3.23.2/cmake-3.23.2-linux-x86_64.tar.gz"
  2296. ],
  2297. "sha256": "aaced6f745b86ce853661a595bdac6c5314a60f8181b6912a0a4920acfa32708",
  2298. "strip_prefix": "cmake-3.23.2-linux-x86_64",
  2299. "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"
  2300. }
  2301. },
  2302. "cmake-3.23.2-windows-x86_64": {
  2303. "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl",
  2304. "ruleClassName": "http_archive",
  2305. "attributes": {
  2306. "urls": [
  2307. "https://github.com/Kitware/CMake/releases/download/v3.23.2/cmake-3.23.2-windows-x86_64.zip"
  2308. ],
  2309. "sha256": "2329387f3166b84c25091c86389fb891193967740c9bcf01e7f6d3306f7ffda0",
  2310. "strip_prefix": "cmake-3.23.2-windows-x86_64",
  2311. "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"
  2312. }
  2313. },
  2314. "rules_foreign_cc_framework_toolchain_windows": {
  2315. "bzlFile": "@@rules_foreign_cc~//foreign_cc/private/framework:toolchain.bzl",
  2316. "ruleClassName": "framework_toolchain_repository",
  2317. "attributes": {
  2318. "commands_src": "@rules_foreign_cc//foreign_cc/private/framework/toolchains:windows_commands.bzl",
  2319. "exec_compatible_with": [
  2320. "@platforms//os:windows"
  2321. ],
  2322. "target_compatible_with": []
  2323. }
  2324. },
  2325. "ninja_1.11.0_toolchains": {
  2326. "bzlFile": "@@rules_foreign_cc~//toolchains:prebuilt_toolchains_repository.bzl",
  2327. "ruleClassName": "prebuilt_toolchains_repository",
  2328. "attributes": {
  2329. "repos": {
  2330. "ninja_1.11.0_linux": [
  2331. "@platforms//cpu:x86_64",
  2332. "@platforms//os:linux"
  2333. ],
  2334. "ninja_1.11.0_mac": [
  2335. "@platforms//cpu:x86_64",
  2336. "@platforms//os:macos"
  2337. ],
  2338. "ninja_1.11.0_win": [
  2339. "@platforms//cpu:x86_64",
  2340. "@platforms//os:windows"
  2341. ]
  2342. },
  2343. "tool": "ninja"
  2344. }
  2345. }
  2346. },
  2347. "recordedRepoMappingEntries": [
  2348. [
  2349. "rules_foreign_cc~",
  2350. "bazel_tools",
  2351. "bazel_tools"
  2352. ],
  2353. [
  2354. "rules_foreign_cc~",
  2355. "rules_foreign_cc",
  2356. "rules_foreign_cc~"
  2357. ]
  2358. ]
  2359. }
  2360. },
  2361. "@@rules_java~//java:extensions.bzl%toolchains": {
  2362. "general": {
  2363. "bzlTransitiveDigest": "0N5b5J9fUzo0sgvH4F3kIEaeXunz4Wy2/UtSFV/eXUY=",
  2364. "recordedFileInputs": {},
  2365. "recordedDirentsInputs": {},
  2366. "envVariables": {},
  2367. "generatedRepoSpecs": {
  2368. "remotejdk21_linux_toolchain_config_repo": {
  2369. "bzlFile": "@@rules_java~//toolchains:remote_java_repository.bzl",
  2370. "ruleClassName": "_toolchain_config",
  2371. "attributes": {
  2372. "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"
  2373. }
  2374. },
  2375. "remotejdk17_linux_s390x_toolchain_config_repo": {
  2376. "bzlFile": "@@rules_java~//toolchains:remote_java_repository.bzl",
  2377. "ruleClassName": "_toolchain_config",
  2378. "attributes": {
  2379. "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"
  2380. }
  2381. },
  2382. "remotejdk17_macos_toolchain_config_repo": {
  2383. "bzlFile": "@@rules_java~//toolchains:remote_java_repository.bzl",
  2384. "ruleClassName": "_toolchain_config",
  2385. "attributes": {
  2386. "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"
  2387. }
  2388. },
  2389. "remotejdk21_macos_aarch64_toolchain_config_repo": {
  2390. "bzlFile": "@@rules_java~//toolchains:remote_java_repository.bzl",
  2391. "ruleClassName": "_toolchain_config",
  2392. "attributes": {
  2393. "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"
  2394. }
  2395. },
  2396. "remotejdk17_linux_aarch64_toolchain_config_repo": {
  2397. "bzlFile": "@@rules_java~//toolchains:remote_java_repository.bzl",
  2398. "ruleClassName": "_toolchain_config",
  2399. "attributes": {
  2400. "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"
  2401. }
  2402. },
  2403. "remotejdk21_macos_aarch64": {
  2404. "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl",
  2405. "ruleClassName": "http_archive",
  2406. "attributes": {
  2407. "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",
  2408. "sha256": "e8260516de8b60661422a725f1df2c36ef888f6fb35393566b00e7325db3d04e",
  2409. "strip_prefix": "zulu21.32.17-ca-jdk21.0.2-macosx_aarch64",
  2410. "urls": [
  2411. "https://mirror.bazel.build/cdn.azul.com/zulu/bin/zulu21.32.17-ca-jdk21.0.2-macosx_aarch64.tar.gz",
  2412. "https://cdn.azul.com/zulu/bin/zulu21.32.17-ca-jdk21.0.2-macosx_aarch64.tar.gz"
  2413. ]
  2414. }
  2415. },
  2416. "remotejdk17_linux_toolchain_config_repo": {
  2417. "bzlFile": "@@rules_java~//toolchains:remote_java_repository.bzl",
  2418. "ruleClassName": "_toolchain_config",
  2419. "attributes": {
  2420. "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"
  2421. }
  2422. },
  2423. "remotejdk17_macos_aarch64": {
  2424. "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl",
  2425. "ruleClassName": "http_archive",
  2426. "attributes": {
  2427. "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",
  2428. "sha256": "314b04568ec0ae9b36ba03c9cbd42adc9e1265f74678923b19297d66eb84dcca",
  2429. "strip_prefix": "zulu17.44.53-ca-jdk17.0.8.1-macosx_aarch64",
  2430. "urls": [
  2431. "https://mirror.bazel.build/cdn.azul.com/zulu/bin/zulu17.44.53-ca-jdk17.0.8.1-macosx_aarch64.tar.gz",
  2432. "https://cdn.azul.com/zulu/bin/zulu17.44.53-ca-jdk17.0.8.1-macosx_aarch64.tar.gz"
  2433. ]
  2434. }
  2435. },
  2436. "remote_java_tools_windows": {
  2437. "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl",
  2438. "ruleClassName": "http_archive",
  2439. "attributes": {
  2440. "sha256": "fe2f88169696d6c6fc6e90ba61bb46be7d0ae3693cbafdf336041bf56679e8d1",
  2441. "urls": [
  2442. "https://mirror.bazel.build/bazel_java_tools/releases/java/v13.4/java_tools_windows-v13.4.zip",
  2443. "https://github.com/bazelbuild/java_tools/releases/download/java_v13.4/java_tools_windows-v13.4.zip"
  2444. ]
  2445. }
  2446. },
  2447. "remotejdk11_win": {
  2448. "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl",
  2449. "ruleClassName": "http_archive",
  2450. "attributes": {
  2451. "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",
  2452. "sha256": "43408193ce2fa0862819495b5ae8541085b95660153f2adcf91a52d3a1710e83",
  2453. "strip_prefix": "zulu11.66.15-ca-jdk11.0.20-win_x64",
  2454. "urls": [
  2455. "https://mirror.bazel.build/cdn.azul.com/zulu/bin/zulu11.66.15-ca-jdk11.0.20-win_x64.zip",
  2456. "https://cdn.azul.com/zulu/bin/zulu11.66.15-ca-jdk11.0.20-win_x64.zip"
  2457. ]
  2458. }
  2459. },
  2460. "remotejdk11_win_toolchain_config_repo": {
  2461. "bzlFile": "@@rules_java~//toolchains:remote_java_repository.bzl",
  2462. "ruleClassName": "_toolchain_config",
  2463. "attributes": {
  2464. "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"
  2465. }
  2466. },
  2467. "remotejdk11_linux_aarch64": {
  2468. "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl",
  2469. "ruleClassName": "http_archive",
  2470. "attributes": {
  2471. "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",
  2472. "sha256": "54174439f2b3fddd11f1048c397fe7bb45d4c9d66d452d6889b013d04d21c4de",
  2473. "strip_prefix": "zulu11.66.15-ca-jdk11.0.20-linux_aarch64",
  2474. "urls": [
  2475. "https://mirror.bazel.build/cdn.azul.com/zulu/bin/zulu11.66.15-ca-jdk11.0.20-linux_aarch64.tar.gz",
  2476. "https://cdn.azul.com/zulu/bin/zulu11.66.15-ca-jdk11.0.20-linux_aarch64.tar.gz"
  2477. ]
  2478. }
  2479. },
  2480. "remotejdk17_linux": {
  2481. "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl",
  2482. "ruleClassName": "http_archive",
  2483. "attributes": {
  2484. "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",
  2485. "sha256": "b9482f2304a1a68a614dfacddcf29569a72f0fac32e6c74f83dc1b9a157b8340",
  2486. "strip_prefix": "zulu17.44.53-ca-jdk17.0.8.1-linux_x64",
  2487. "urls": [
  2488. "https://mirror.bazel.build/cdn.azul.com/zulu/bin/zulu17.44.53-ca-jdk17.0.8.1-linux_x64.tar.gz",
  2489. "https://cdn.azul.com/zulu/bin/zulu17.44.53-ca-jdk17.0.8.1-linux_x64.tar.gz"
  2490. ]
  2491. }
  2492. },
  2493. "remotejdk11_linux_s390x_toolchain_config_repo": {
  2494. "bzlFile": "@@rules_java~//toolchains:remote_java_repository.bzl",
  2495. "ruleClassName": "_toolchain_config",
  2496. "attributes": {
  2497. "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"
  2498. }
  2499. },
  2500. "remotejdk11_linux_toolchain_config_repo": {
  2501. "bzlFile": "@@rules_java~//toolchains:remote_java_repository.bzl",
  2502. "ruleClassName": "_toolchain_config",
  2503. "attributes": {
  2504. "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"
  2505. }
  2506. },
  2507. "remotejdk11_macos": {
  2508. "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl",
  2509. "ruleClassName": "http_archive",
  2510. "attributes": {
  2511. "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",
  2512. "sha256": "bcaab11cfe586fae7583c6d9d311c64384354fb2638eb9a012eca4c3f1a1d9fd",
  2513. "strip_prefix": "zulu11.66.15-ca-jdk11.0.20-macosx_x64",
  2514. "urls": [
  2515. "https://mirror.bazel.build/cdn.azul.com/zulu/bin/zulu11.66.15-ca-jdk11.0.20-macosx_x64.tar.gz",
  2516. "https://cdn.azul.com/zulu/bin/zulu11.66.15-ca-jdk11.0.20-macosx_x64.tar.gz"
  2517. ]
  2518. }
  2519. },
  2520. "remotejdk11_win_arm64": {
  2521. "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl",
  2522. "ruleClassName": "http_archive",
  2523. "attributes": {
  2524. "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",
  2525. "sha256": "b8a28e6e767d90acf793ea6f5bed0bb595ba0ba5ebdf8b99f395266161e53ec2",
  2526. "strip_prefix": "jdk-11.0.13+8",
  2527. "urls": [
  2528. "https://mirror.bazel.build/aka.ms/download-jdk/microsoft-jdk-11.0.13.8.1-windows-aarch64.zip"
  2529. ]
  2530. }
  2531. },
  2532. "remotejdk17_macos": {
  2533. "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl",
  2534. "ruleClassName": "http_archive",
  2535. "attributes": {
  2536. "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",
  2537. "sha256": "640453e8afe8ffe0fb4dceb4535fb50db9c283c64665eebb0ba68b19e65f4b1f",
  2538. "strip_prefix": "zulu17.44.53-ca-jdk17.0.8.1-macosx_x64",
  2539. "urls": [
  2540. "https://mirror.bazel.build/cdn.azul.com/zulu/bin/zulu17.44.53-ca-jdk17.0.8.1-macosx_x64.tar.gz",
  2541. "https://cdn.azul.com/zulu/bin/zulu17.44.53-ca-jdk17.0.8.1-macosx_x64.tar.gz"
  2542. ]
  2543. }
  2544. },
  2545. "remotejdk21_macos": {
  2546. "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl",
  2547. "ruleClassName": "http_archive",
  2548. "attributes": {
  2549. "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",
  2550. "sha256": "3ad8fe288eb57d975c2786ae453a036aa46e47ab2ac3d81538ebae2a54d3c025",
  2551. "strip_prefix": "zulu21.32.17-ca-jdk21.0.2-macosx_x64",
  2552. "urls": [
  2553. "https://mirror.bazel.build/cdn.azul.com/zulu/bin/zulu21.32.17-ca-jdk21.0.2-macosx_x64.tar.gz",
  2554. "https://cdn.azul.com/zulu/bin/zulu21.32.17-ca-jdk21.0.2-macosx_x64.tar.gz"
  2555. ]
  2556. }
  2557. },
  2558. "remotejdk21_macos_toolchain_config_repo": {
  2559. "bzlFile": "@@rules_java~//toolchains:remote_java_repository.bzl",
  2560. "ruleClassName": "_toolchain_config",
  2561. "attributes": {
  2562. "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"
  2563. }
  2564. },
  2565. "remotejdk17_macos_aarch64_toolchain_config_repo": {
  2566. "bzlFile": "@@rules_java~//toolchains:remote_java_repository.bzl",
  2567. "ruleClassName": "_toolchain_config",
  2568. "attributes": {
  2569. "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"
  2570. }
  2571. },
  2572. "remotejdk17_win": {
  2573. "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl",
  2574. "ruleClassName": "http_archive",
  2575. "attributes": {
  2576. "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",
  2577. "sha256": "192f2afca57701de6ec496234f7e45d971bf623ff66b8ee4a5c81582054e5637",
  2578. "strip_prefix": "zulu17.44.53-ca-jdk17.0.8.1-win_x64",
  2579. "urls": [
  2580. "https://mirror.bazel.build/cdn.azul.com/zulu/bin/zulu17.44.53-ca-jdk17.0.8.1-win_x64.zip",
  2581. "https://cdn.azul.com/zulu/bin/zulu17.44.53-ca-jdk17.0.8.1-win_x64.zip"
  2582. ]
  2583. }
  2584. },
  2585. "remotejdk11_macos_aarch64_toolchain_config_repo": {
  2586. "bzlFile": "@@rules_java~//toolchains:remote_java_repository.bzl",
  2587. "ruleClassName": "_toolchain_config",
  2588. "attributes": {
  2589. "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"
  2590. }
  2591. },
  2592. "remotejdk11_linux_ppc64le_toolchain_config_repo": {
  2593. "bzlFile": "@@rules_java~//toolchains:remote_java_repository.bzl",
  2594. "ruleClassName": "_toolchain_config",
  2595. "attributes": {
  2596. "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"
  2597. }
  2598. },
  2599. "remotejdk21_linux": {
  2600. "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl",
  2601. "ruleClassName": "http_archive",
  2602. "attributes": {
  2603. "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",
  2604. "sha256": "5ad730fbee6bb49bfff10bf39e84392e728d89103d3474a7e5def0fd134b300a",
  2605. "strip_prefix": "zulu21.32.17-ca-jdk21.0.2-linux_x64",
  2606. "urls": [
  2607. "https://mirror.bazel.build/cdn.azul.com/zulu/bin/zulu21.32.17-ca-jdk21.0.2-linux_x64.tar.gz",
  2608. "https://cdn.azul.com/zulu/bin/zulu21.32.17-ca-jdk21.0.2-linux_x64.tar.gz"
  2609. ]
  2610. }
  2611. },
  2612. "remote_java_tools_linux": {
  2613. "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl",
  2614. "ruleClassName": "http_archive",
  2615. "attributes": {
  2616. "sha256": "ba10f09a138cf185d04cbc807d67a3da42ab13d618c5d1ce20d776e199c33a39",
  2617. "urls": [
  2618. "https://mirror.bazel.build/bazel_java_tools/releases/java/v13.4/java_tools_linux-v13.4.zip",
  2619. "https://github.com/bazelbuild/java_tools/releases/download/java_v13.4/java_tools_linux-v13.4.zip"
  2620. ]
  2621. }
  2622. },
  2623. "remotejdk21_win": {
  2624. "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl",
  2625. "ruleClassName": "http_archive",
  2626. "attributes": {
  2627. "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",
  2628. "sha256": "f7cc15ca17295e69c907402dfe8db240db446e75d3b150da7bf67243cded93de",
  2629. "strip_prefix": "zulu21.32.17-ca-jdk21.0.2-win_x64",
  2630. "urls": [
  2631. "https://mirror.bazel.build/cdn.azul.com/zulu/bin/zulu21.32.17-ca-jdk21.0.2-win_x64.zip",
  2632. "https://cdn.azul.com/zulu/bin/zulu21.32.17-ca-jdk21.0.2-win_x64.zip"
  2633. ]
  2634. }
  2635. },
  2636. "remotejdk21_linux_aarch64": {
  2637. "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl",
  2638. "ruleClassName": "http_archive",
  2639. "attributes": {
  2640. "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",
  2641. "sha256": "ce7df1af5d44a9f455617c4b8891443fbe3e4b269c777d8b82ed66f77167cfe0",
  2642. "strip_prefix": "zulu21.32.17-ca-jdk21.0.2-linux_aarch64",
  2643. "urls": [
  2644. "https://cdn.azul.com/zulu/bin/zulu21.32.17-ca-jdk21.0.2-linux_aarch64.tar.gz",
  2645. "https://mirror.bazel.build/cdn.azul.com/zulu/bin/zulu21.32.17-ca-jdk21.0.2-linux_aarch64.tar.gz"
  2646. ]
  2647. }
  2648. },
  2649. "remotejdk11_linux_aarch64_toolchain_config_repo": {
  2650. "bzlFile": "@@rules_java~//toolchains:remote_java_repository.bzl",
  2651. "ruleClassName": "_toolchain_config",
  2652. "attributes": {
  2653. "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"
  2654. }
  2655. },
  2656. "remotejdk11_linux_s390x": {
  2657. "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl",
  2658. "ruleClassName": "http_archive",
  2659. "attributes": {
  2660. "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",
  2661. "sha256": "a58fc0361966af0a5d5a31a2d8a208e3c9bb0f54f345596fd80b99ea9a39788b",
  2662. "strip_prefix": "jdk-11.0.15+10",
  2663. "urls": [
  2664. "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",
  2665. "https://github.com/adoptium/temurin11-binaries/releases/download/jdk-11.0.15+10/OpenJDK11U-jdk_s390x_linux_hotspot_11.0.15_10.tar.gz"
  2666. ]
  2667. }
  2668. },
  2669. "remotejdk17_linux_aarch64": {
  2670. "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl",
  2671. "ruleClassName": "http_archive",
  2672. "attributes": {
  2673. "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",
  2674. "sha256": "6531cef61e416d5a7b691555c8cf2bdff689201b8a001ff45ab6740062b44313",
  2675. "strip_prefix": "zulu17.44.53-ca-jdk17.0.8.1-linux_aarch64",
  2676. "urls": [
  2677. "https://mirror.bazel.build/cdn.azul.com/zulu/bin/zulu17.44.53-ca-jdk17.0.8.1-linux_aarch64.tar.gz",
  2678. "https://cdn.azul.com/zulu/bin/zulu17.44.53-ca-jdk17.0.8.1-linux_aarch64.tar.gz"
  2679. ]
  2680. }
  2681. },
  2682. "remotejdk17_win_arm64_toolchain_config_repo": {
  2683. "bzlFile": "@@rules_java~//toolchains:remote_java_repository.bzl",
  2684. "ruleClassName": "_toolchain_config",
  2685. "attributes": {
  2686. "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"
  2687. }
  2688. },
  2689. "remotejdk11_linux": {
  2690. "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl",
  2691. "ruleClassName": "http_archive",
  2692. "attributes": {
  2693. "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",
  2694. "sha256": "a34b404f87a08a61148b38e1416d837189e1df7a040d949e743633daf4695a3c",
  2695. "strip_prefix": "zulu11.66.15-ca-jdk11.0.20-linux_x64",
  2696. "urls": [
  2697. "https://mirror.bazel.build/cdn.azul.com/zulu/bin/zulu11.66.15-ca-jdk11.0.20-linux_x64.tar.gz",
  2698. "https://cdn.azul.com/zulu/bin/zulu11.66.15-ca-jdk11.0.20-linux_x64.tar.gz"
  2699. ]
  2700. }
  2701. },
  2702. "remotejdk11_macos_toolchain_config_repo": {
  2703. "bzlFile": "@@rules_java~//toolchains:remote_java_repository.bzl",
  2704. "ruleClassName": "_toolchain_config",
  2705. "attributes": {
  2706. "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"
  2707. }
  2708. },
  2709. "remotejdk17_linux_ppc64le_toolchain_config_repo": {
  2710. "bzlFile": "@@rules_java~//toolchains:remote_java_repository.bzl",
  2711. "ruleClassName": "_toolchain_config",
  2712. "attributes": {
  2713. "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"
  2714. }
  2715. },
  2716. "remotejdk17_win_arm64": {
  2717. "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl",
  2718. "ruleClassName": "http_archive",
  2719. "attributes": {
  2720. "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",
  2721. "sha256": "6802c99eae0d788e21f52d03cab2e2b3bf42bc334ca03cbf19f71eb70ee19f85",
  2722. "strip_prefix": "zulu17.44.53-ca-jdk17.0.8.1-win_aarch64",
  2723. "urls": [
  2724. "https://mirror.bazel.build/cdn.azul.com/zulu/bin/zulu17.44.53-ca-jdk17.0.8.1-win_aarch64.zip",
  2725. "https://cdn.azul.com/zulu/bin/zulu17.44.53-ca-jdk17.0.8.1-win_aarch64.zip"
  2726. ]
  2727. }
  2728. },
  2729. "remote_java_tools_darwin_arm64": {
  2730. "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl",
  2731. "ruleClassName": "http_archive",
  2732. "attributes": {
  2733. "sha256": "076a7e198ad077f8c7d997986ef5102427fae6bbfce7a7852d2e080ed8767528",
  2734. "urls": [
  2735. "https://mirror.bazel.build/bazel_java_tools/releases/java/v13.4/java_tools_darwin_arm64-v13.4.zip",
  2736. "https://github.com/bazelbuild/java_tools/releases/download/java_v13.4/java_tools_darwin_arm64-v13.4.zip"
  2737. ]
  2738. }
  2739. },
  2740. "remotejdk17_linux_ppc64le": {
  2741. "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl",
  2742. "ruleClassName": "http_archive",
  2743. "attributes": {
  2744. "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",
  2745. "sha256": "00a4c07603d0218cd678461b5b3b7e25b3253102da4022d31fc35907f21a2efd",
  2746. "strip_prefix": "jdk-17.0.8.1+1",
  2747. "urls": [
  2748. "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",
  2749. "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"
  2750. ]
  2751. }
  2752. },
  2753. "remotejdk21_linux_aarch64_toolchain_config_repo": {
  2754. "bzlFile": "@@rules_java~//toolchains:remote_java_repository.bzl",
  2755. "ruleClassName": "_toolchain_config",
  2756. "attributes": {
  2757. "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"
  2758. }
  2759. },
  2760. "remotejdk11_win_arm64_toolchain_config_repo": {
  2761. "bzlFile": "@@rules_java~//toolchains:remote_java_repository.bzl",
  2762. "ruleClassName": "_toolchain_config",
  2763. "attributes": {
  2764. "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"
  2765. }
  2766. },
  2767. "local_jdk": {
  2768. "bzlFile": "@@rules_java~//toolchains:local_java_repository.bzl",
  2769. "ruleClassName": "_local_java_repository_rule",
  2770. "attributes": {
  2771. "java_home": "",
  2772. "version": "",
  2773. "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"
  2774. }
  2775. },
  2776. "remote_java_tools_darwin_x86_64": {
  2777. "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl",
  2778. "ruleClassName": "http_archive",
  2779. "attributes": {
  2780. "sha256": "4523aec4d09c587091a2dae6f5c9bc6922c220f3b6030e5aba9c8f015913cc65",
  2781. "urls": [
  2782. "https://mirror.bazel.build/bazel_java_tools/releases/java/v13.4/java_tools_darwin_x86_64-v13.4.zip",
  2783. "https://github.com/bazelbuild/java_tools/releases/download/java_v13.4/java_tools_darwin_x86_64-v13.4.zip"
  2784. ]
  2785. }
  2786. },
  2787. "remote_java_tools": {
  2788. "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl",
  2789. "ruleClassName": "http_archive",
  2790. "attributes": {
  2791. "sha256": "e025fd260ac39b47c111f5212d64ec0d00d85dec16e49368aae82fc626a940cf",
  2792. "urls": [
  2793. "https://mirror.bazel.build/bazel_java_tools/releases/java/v13.4/java_tools-v13.4.zip",
  2794. "https://github.com/bazelbuild/java_tools/releases/download/java_v13.4/java_tools-v13.4.zip"
  2795. ]
  2796. }
  2797. },
  2798. "remotejdk17_linux_s390x": {
  2799. "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl",
  2800. "ruleClassName": "http_archive",
  2801. "attributes": {
  2802. "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",
  2803. "sha256": "ffacba69c6843d7ca70d572489d6cc7ab7ae52c60f0852cedf4cf0d248b6fc37",
  2804. "strip_prefix": "jdk-17.0.8.1+1",
  2805. "urls": [
  2806. "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",
  2807. "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"
  2808. ]
  2809. }
  2810. },
  2811. "remotejdk17_win_toolchain_config_repo": {
  2812. "bzlFile": "@@rules_java~//toolchains:remote_java_repository.bzl",
  2813. "ruleClassName": "_toolchain_config",
  2814. "attributes": {
  2815. "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"
  2816. }
  2817. },
  2818. "remotejdk11_linux_ppc64le": {
  2819. "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl",
  2820. "ruleClassName": "http_archive",
  2821. "attributes": {
  2822. "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",
  2823. "sha256": "a8fba686f6eb8ae1d1a9566821dbd5a85a1108b96ad857fdbac5c1e4649fc56f",
  2824. "strip_prefix": "jdk-11.0.15+10",
  2825. "urls": [
  2826. "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",
  2827. "https://github.com/adoptium/temurin11-binaries/releases/download/jdk-11.0.15+10/OpenJDK11U-jdk_ppc64le_linux_hotspot_11.0.15_10.tar.gz"
  2828. ]
  2829. }
  2830. },
  2831. "remotejdk11_macos_aarch64": {
  2832. "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl",
  2833. "ruleClassName": "http_archive",
  2834. "attributes": {
  2835. "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",
  2836. "sha256": "7632bc29f8a4b7d492b93f3bc75a7b61630894db85d136456035ab2a24d38885",
  2837. "strip_prefix": "zulu11.66.15-ca-jdk11.0.20-macosx_aarch64",
  2838. "urls": [
  2839. "https://mirror.bazel.build/cdn.azul.com/zulu/bin/zulu11.66.15-ca-jdk11.0.20-macosx_aarch64.tar.gz",
  2840. "https://cdn.azul.com/zulu/bin/zulu11.66.15-ca-jdk11.0.20-macosx_aarch64.tar.gz"
  2841. ]
  2842. }
  2843. },
  2844. "remotejdk21_win_toolchain_config_repo": {
  2845. "bzlFile": "@@rules_java~//toolchains:remote_java_repository.bzl",
  2846. "ruleClassName": "_toolchain_config",
  2847. "attributes": {
  2848. "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"
  2849. }
  2850. }
  2851. },
  2852. "recordedRepoMappingEntries": [
  2853. [
  2854. "rules_java~",
  2855. "bazel_tools",
  2856. "bazel_tools"
  2857. ],
  2858. [
  2859. "rules_java~",
  2860. "remote_java_tools",
  2861. "rules_java~~toolchains~remote_java_tools"
  2862. ]
  2863. ]
  2864. }
  2865. },
  2866. "@@rules_jvm_external~//:extensions.bzl%maven": {
  2867. "general": {
  2868. "bzlTransitiveDigest": "9ol/f6R1HONuabXvQTFIEvT1pWikli+mTIbvGRmDubk=",
  2869. "recordedFileInputs": {
  2870. "@@rules_jvm_external~//rules_jvm_external_deps_install.json": "10442a5ae27d9ff4c2003e5ab71643bf0d8b48dcf968b4173fa274c3232a8c06"
  2871. },
  2872. "recordedDirentsInputs": {},
  2873. "envVariables": {},
  2874. "generatedRepoSpecs": {
  2875. "org_slf4j_slf4j_api_1_7_30": {
  2876. "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl",
  2877. "ruleClassName": "http_file",
  2878. "attributes": {
  2879. "sha256": "cdba07964d1bb40a0761485c6b1e8c2f8fd9eb1d19c53928ac0d7f9510105c57",
  2880. "urls": [
  2881. "https://repo1.maven.org/maven2/org/slf4j/slf4j-api/1.7.30/slf4j-api-1.7.30.jar",
  2882. "https://maven.google.com/org/slf4j/slf4j-api/1.7.30/slf4j-api-1.7.30.jar"
  2883. ],
  2884. "downloaded_file_path": "v1/https/repo1.maven.org/maven2/org/slf4j/slf4j-api/1.7.30/slf4j-api-1.7.30.jar"
  2885. }
  2886. },
  2887. "com_google_api_grpc_proto_google_common_protos_2_0_1": {
  2888. "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl",
  2889. "ruleClassName": "http_file",
  2890. "attributes": {
  2891. "sha256": "5ce71656118618731e34a5d4c61aa3a031be23446dc7de8b5a5e77b66ebcd6ef",
  2892. "urls": [
  2893. "https://repo1.maven.org/maven2/com/google/api/grpc/proto-google-common-protos/2.0.1/proto-google-common-protos-2.0.1.jar",
  2894. "https://maven.google.com/com/google/api/grpc/proto-google-common-protos/2.0.1/proto-google-common-protos-2.0.1.jar"
  2895. ],
  2896. "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"
  2897. }
  2898. },
  2899. "com_google_api_gax_1_60_0": {
  2900. "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl",
  2901. "ruleClassName": "http_file",
  2902. "attributes": {
  2903. "sha256": "02f37d4ff1a7b8d71dff8064cf9568aa4f4b61bcc4485085d16130f32afa5a79",
  2904. "urls": [
  2905. "https://repo1.maven.org/maven2/com/google/api/gax/1.60.0/gax-1.60.0.jar",
  2906. "https://maven.google.com/com/google/api/gax/1.60.0/gax-1.60.0.jar"
  2907. ],
  2908. "downloaded_file_path": "v1/https/repo1.maven.org/maven2/com/google/api/gax/1.60.0/gax-1.60.0.jar"
  2909. }
  2910. },
  2911. "com_google_guava_failureaccess_1_0_1": {
  2912. "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl",
  2913. "ruleClassName": "http_file",
  2914. "attributes": {
  2915. "sha256": "a171ee4c734dd2da837e4b16be9df4661afab72a41adaf31eb84dfdaf936ca26",
  2916. "urls": [
  2917. "https://repo1.maven.org/maven2/com/google/guava/failureaccess/1.0.1/failureaccess-1.0.1.jar",
  2918. "https://maven.google.com/com/google/guava/failureaccess/1.0.1/failureaccess-1.0.1.jar"
  2919. ],
  2920. "downloaded_file_path": "v1/https/repo1.maven.org/maven2/com/google/guava/failureaccess/1.0.1/failureaccess-1.0.1.jar"
  2921. }
  2922. },
  2923. "commons_logging_commons_logging_1_2": {
  2924. "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl",
  2925. "ruleClassName": "http_file",
  2926. "attributes": {
  2927. "sha256": "daddea1ea0be0f56978ab3006b8ac92834afeefbd9b7e4e6316fca57df0fa636",
  2928. "urls": [
  2929. "https://repo1.maven.org/maven2/commons-logging/commons-logging/1.2/commons-logging-1.2.jar",
  2930. "https://maven.google.com/commons-logging/commons-logging/1.2/commons-logging-1.2.jar"
  2931. ],
  2932. "downloaded_file_path": "v1/https/repo1.maven.org/maven2/commons-logging/commons-logging/1.2/commons-logging-1.2.jar"
  2933. }
  2934. },
  2935. "com_google_http_client_google_http_client_appengine_1_38_0": {
  2936. "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl",
  2937. "ruleClassName": "http_file",
  2938. "attributes": {
  2939. "sha256": "f97b495fd97ac3a3d59099eb2b55025f4948230da15a076f189b9cff37c6b4d2",
  2940. "urls": [
  2941. "https://repo1.maven.org/maven2/com/google/http-client/google-http-client-appengine/1.38.0/google-http-client-appengine-1.38.0.jar",
  2942. "https://maven.google.com/com/google/http-client/google-http-client-appengine/1.38.0/google-http-client-appengine-1.38.0.jar"
  2943. ],
  2944. "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"
  2945. }
  2946. },
  2947. "com_google_cloud_google_cloud_storage_1_113_4": {
  2948. "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl",
  2949. "ruleClassName": "http_file",
  2950. "attributes": {
  2951. "sha256": "796833e9bdab80c40bbc820e65087eb8f28c6bfbca194d2e3e00d98cb5bc55d6",
  2952. "urls": [
  2953. "https://repo1.maven.org/maven2/com/google/cloud/google-cloud-storage/1.113.4/google-cloud-storage-1.113.4.jar",
  2954. "https://maven.google.com/com/google/cloud/google-cloud-storage/1.113.4/google-cloud-storage-1.113.4.jar"
  2955. ],
  2956. "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"
  2957. }
  2958. },
  2959. "io_grpc_grpc_context_1_33_1": {
  2960. "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl",
  2961. "ruleClassName": "http_file",
  2962. "attributes": {
  2963. "sha256": "99b8aea2b614fe0e61c3676e681259dc43c2de7f64620998e1a8435eb2976496",
  2964. "urls": [
  2965. "https://repo1.maven.org/maven2/io/grpc/grpc-context/1.33.1/grpc-context-1.33.1.jar",
  2966. "https://maven.google.com/io/grpc/grpc-context/1.33.1/grpc-context-1.33.1.jar"
  2967. ],
  2968. "downloaded_file_path": "v1/https/repo1.maven.org/maven2/io/grpc/grpc-context/1.33.1/grpc-context-1.33.1.jar"
  2969. }
  2970. },
  2971. "com_google_api_grpc_proto_google_iam_v1_1_0_3": {
  2972. "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl",
  2973. "ruleClassName": "http_file",
  2974. "attributes": {
  2975. "sha256": "64cee7383a97e846da8d8e160e6c8fe30561e507260552c59e6ccfc81301fdc8",
  2976. "urls": [
  2977. "https://repo1.maven.org/maven2/com/google/api/grpc/proto-google-iam-v1/1.0.3/proto-google-iam-v1-1.0.3.jar",
  2978. "https://maven.google.com/com/google/api/grpc/proto-google-iam-v1/1.0.3/proto-google-iam-v1-1.0.3.jar"
  2979. ],
  2980. "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"
  2981. }
  2982. },
  2983. "com_google_api_api_common_1_10_1": {
  2984. "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl",
  2985. "ruleClassName": "http_file",
  2986. "attributes": {
  2987. "sha256": "2a033f24bb620383eda440ad307cb8077cfec1c7eadc684d65216123a1b9613a",
  2988. "urls": [
  2989. "https://repo1.maven.org/maven2/com/google/api/api-common/1.10.1/api-common-1.10.1.jar",
  2990. "https://maven.google.com/com/google/api/api-common/1.10.1/api-common-1.10.1.jar"
  2991. ],
  2992. "downloaded_file_path": "v1/https/repo1.maven.org/maven2/com/google/api/api-common/1.10.1/api-common-1.10.1.jar"
  2993. }
  2994. },
  2995. "com_google_auth_google_auth_library_oauth2_http_0_22_0": {
  2996. "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl",
  2997. "ruleClassName": "http_file",
  2998. "attributes": {
  2999. "sha256": "1722d895c42dc42ea1d1f392ddbec1fbb28f7a979022c3a6c29acc39cc777ad1",
  3000. "urls": [
  3001. "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",
  3002. "https://maven.google.com/com/google/auth/google-auth-library-oauth2-http/0.22.0/google-auth-library-oauth2-http-0.22.0.jar"
  3003. ],
  3004. "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"
  3005. }
  3006. },
  3007. "com_typesafe_netty_netty_reactive_streams_2_0_5": {
  3008. "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl",
  3009. "ruleClassName": "http_file",
  3010. "attributes": {
  3011. "sha256": "f949849fc8ee75fde468ba3a35df2e04577fa31a2940b83b2a7dc9d14dac13d6",
  3012. "urls": [
  3013. "https://repo1.maven.org/maven2/com/typesafe/netty/netty-reactive-streams/2.0.5/netty-reactive-streams-2.0.5.jar",
  3014. "https://maven.google.com/com/typesafe/netty/netty-reactive-streams/2.0.5/netty-reactive-streams-2.0.5.jar"
  3015. ],
  3016. "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"
  3017. }
  3018. },
  3019. "com_typesafe_netty_netty_reactive_streams_http_2_0_5": {
  3020. "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl",
  3021. "ruleClassName": "http_file",
  3022. "attributes": {
  3023. "sha256": "b39224751ad936758176e9d994230380ade5e9079e7c8ad778e3995779bcf303",
  3024. "urls": [
  3025. "https://repo1.maven.org/maven2/com/typesafe/netty/netty-reactive-streams-http/2.0.5/netty-reactive-streams-http-2.0.5.jar",
  3026. "https://maven.google.com/com/typesafe/netty/netty-reactive-streams-http/2.0.5/netty-reactive-streams-http-2.0.5.jar"
  3027. ],
  3028. "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"
  3029. }
  3030. },
  3031. "javax_annotation_javax_annotation_api_1_3_2": {
  3032. "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl",
  3033. "ruleClassName": "http_file",
  3034. "attributes": {
  3035. "sha256": "e04ba5195bcd555dc95650f7cc614d151e4bcd52d29a10b8aa2197f3ab89ab9b",
  3036. "urls": [
  3037. "https://repo1.maven.org/maven2/javax/annotation/javax.annotation-api/1.3.2/javax.annotation-api-1.3.2.jar",
  3038. "https://maven.google.com/javax/annotation/javax.annotation-api/1.3.2/javax.annotation-api-1.3.2.jar"
  3039. ],
  3040. "downloaded_file_path": "v1/https/repo1.maven.org/maven2/javax/annotation/javax.annotation-api/1.3.2/javax.annotation-api-1.3.2.jar"
  3041. }
  3042. },
  3043. "com_google_j2objc_j2objc_annotations_1_3": {
  3044. "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl",
  3045. "ruleClassName": "http_file",
  3046. "attributes": {
  3047. "sha256": "21af30c92267bd6122c0e0b4d20cccb6641a37eaf956c6540ec471d584e64a7b",
  3048. "urls": [
  3049. "https://repo1.maven.org/maven2/com/google/j2objc/j2objc-annotations/1.3/j2objc-annotations-1.3.jar",
  3050. "https://maven.google.com/com/google/j2objc/j2objc-annotations/1.3/j2objc-annotations-1.3.jar"
  3051. ],
  3052. "downloaded_file_path": "v1/https/repo1.maven.org/maven2/com/google/j2objc/j2objc-annotations/1.3/j2objc-annotations-1.3.jar"
  3053. }
  3054. },
  3055. "software_amazon_awssdk_metrics_spi_2_17_183": {
  3056. "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl",
  3057. "ruleClassName": "http_file",
  3058. "attributes": {
  3059. "sha256": "08a11dc8c4ba464beafbcc7ac05b8c724c1ccb93da99482e82a68540ac704e4a",
  3060. "urls": [
  3061. "https://repo1.maven.org/maven2/software/amazon/awssdk/metrics-spi/2.17.183/metrics-spi-2.17.183.jar",
  3062. "https://maven.google.com/software/amazon/awssdk/metrics-spi/2.17.183/metrics-spi-2.17.183.jar"
  3063. ],
  3064. "downloaded_file_path": "v1/https/repo1.maven.org/maven2/software/amazon/awssdk/metrics-spi/2.17.183/metrics-spi-2.17.183.jar"
  3065. }
  3066. },
  3067. "org_reactivestreams_reactive_streams_1_0_3": {
  3068. "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl",
  3069. "ruleClassName": "http_file",
  3070. "attributes": {
  3071. "sha256": "1dee0481072d19c929b623e155e14d2f6085dc011529a0a0dbefc84cf571d865",
  3072. "urls": [
  3073. "https://repo1.maven.org/maven2/org/reactivestreams/reactive-streams/1.0.3/reactive-streams-1.0.3.jar",
  3074. "https://maven.google.com/org/reactivestreams/reactive-streams/1.0.3/reactive-streams-1.0.3.jar"
  3075. ],
  3076. "downloaded_file_path": "v1/https/repo1.maven.org/maven2/org/reactivestreams/reactive-streams/1.0.3/reactive-streams-1.0.3.jar"
  3077. }
  3078. },
  3079. "com_google_http_client_google_http_client_jackson2_1_38_0": {
  3080. "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl",
  3081. "ruleClassName": "http_file",
  3082. "attributes": {
  3083. "sha256": "e6504a82425fcc2168a4ca4175138ddcc085168daed8cdedb86d8f6fdc296e1e",
  3084. "urls": [
  3085. "https://repo1.maven.org/maven2/com/google/http-client/google-http-client-jackson2/1.38.0/google-http-client-jackson2-1.38.0.jar",
  3086. "https://maven.google.com/com/google/http-client/google-http-client-jackson2/1.38.0/google-http-client-jackson2-1.38.0.jar"
  3087. ],
  3088. "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"
  3089. }
  3090. },
  3091. "io_netty_netty_transport_4_1_72_Final": {
  3092. "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl",
  3093. "ruleClassName": "http_file",
  3094. "attributes": {
  3095. "sha256": "c5fb68e9a65b6e8a516adfcb9fa323479ee7b4d9449d8a529d2ecab3d3711d5a",
  3096. "urls": [
  3097. "https://repo1.maven.org/maven2/io/netty/netty-transport/4.1.72.Final/netty-transport-4.1.72.Final.jar",
  3098. "https://maven.google.com/io/netty/netty-transport/4.1.72.Final/netty-transport-4.1.72.Final.jar"
  3099. ],
  3100. "downloaded_file_path": "v1/https/repo1.maven.org/maven2/io/netty/netty-transport/4.1.72.Final/netty-transport-4.1.72.Final.jar"
  3101. }
  3102. },
  3103. "io_netty_netty_codec_http2_4_1_72_Final": {
  3104. "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl",
  3105. "ruleClassName": "http_file",
  3106. "attributes": {
  3107. "sha256": "c89a70500f59e8563e720aaa808263a514bd9e2bd91ba84eab8c2ccb45f234b2",
  3108. "urls": [
  3109. "https://repo1.maven.org/maven2/io/netty/netty-codec-http2/4.1.72.Final/netty-codec-http2-4.1.72.Final.jar",
  3110. "https://maven.google.com/io/netty/netty-codec-http2/4.1.72.Final/netty-codec-http2-4.1.72.Final.jar"
  3111. ],
  3112. "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"
  3113. }
  3114. },
  3115. "io_opencensus_opencensus_api_0_24_0": {
  3116. "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl",
  3117. "ruleClassName": "http_file",
  3118. "attributes": {
  3119. "sha256": "f561b1cc2673844288e596ddf5bb6596868a8472fd2cb8993953fc5c034b2352",
  3120. "urls": [
  3121. "https://repo1.maven.org/maven2/io/opencensus/opencensus-api/0.24.0/opencensus-api-0.24.0.jar",
  3122. "https://maven.google.com/io/opencensus/opencensus-api/0.24.0/opencensus-api-0.24.0.jar"
  3123. ],
  3124. "downloaded_file_path": "v1/https/repo1.maven.org/maven2/io/opencensus/opencensus-api/0.24.0/opencensus-api-0.24.0.jar"
  3125. }
  3126. },
  3127. "rules_jvm_external_deps": {
  3128. "bzlFile": "@@rules_jvm_external~//:coursier.bzl",
  3129. "ruleClassName": "pinned_coursier_fetch",
  3130. "attributes": {
  3131. "repositories": [
  3132. "{ \"repo_url\": \"https://repo1.maven.org/maven2\" }"
  3133. ],
  3134. "artifacts": [
  3135. "{\"artifact\":\"google-cloud-core\",\"group\":\"com.google.cloud\",\"version\":\"1.93.10\"}",
  3136. "{\"artifact\":\"google-cloud-storage\",\"group\":\"com.google.cloud\",\"version\":\"1.113.4\"}",
  3137. "{\"artifact\":\"gson\",\"group\":\"com.google.code.gson\",\"version\":\"2.9.0\"}",
  3138. "{\"artifact\":\"maven-artifact\",\"group\":\"org.apache.maven\",\"version\":\"3.8.6\"}",
  3139. "{\"artifact\":\"s3\",\"group\":\"software.amazon.awssdk\",\"version\":\"2.17.183\"}"
  3140. ],
  3141. "fetch_sources": true,
  3142. "fetch_javadoc": false,
  3143. "generate_compat_repositories": false,
  3144. "maven_install_json": "@@rules_jvm_external~//:rules_jvm_external_deps_install.json",
  3145. "override_targets": {},
  3146. "strict_visibility": false,
  3147. "strict_visibility_value": [
  3148. "@@//visibility:private"
  3149. ],
  3150. "jetify": false,
  3151. "jetify_include_list": [
  3152. "*"
  3153. ],
  3154. "additional_netrc_lines": [],
  3155. "fail_if_repin_required": false,
  3156. "use_starlark_android_rules": false,
  3157. "aar_import_bzl_label": "@build_bazel_rules_android//android:rules.bzl",
  3158. "duplicate_version_warning": "warn"
  3159. }
  3160. },
  3161. "org_threeten_threetenbp_1_5_0": {
  3162. "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl",
  3163. "ruleClassName": "http_file",
  3164. "attributes": {
  3165. "sha256": "dcf9c0f940739f2a825cd8626ff27113459a2f6eb18797c7152f93fff69c264f",
  3166. "urls": [
  3167. "https://repo1.maven.org/maven2/org/threeten/threetenbp/1.5.0/threetenbp-1.5.0.jar",
  3168. "https://maven.google.com/org/threeten/threetenbp/1.5.0/threetenbp-1.5.0.jar"
  3169. ],
  3170. "downloaded_file_path": "v1/https/repo1.maven.org/maven2/org/threeten/threetenbp/1.5.0/threetenbp-1.5.0.jar"
  3171. }
  3172. },
  3173. "software_amazon_awssdk_http_client_spi_2_17_183": {
  3174. "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl",
  3175. "ruleClassName": "http_file",
  3176. "attributes": {
  3177. "sha256": "fe7120f175df9e47ebcc5d946d7f40110faf2ba0a30364f3b935d5b8a5a6c3c6",
  3178. "urls": [
  3179. "https://repo1.maven.org/maven2/software/amazon/awssdk/http-client-spi/2.17.183/http-client-spi-2.17.183.jar",
  3180. "https://maven.google.com/software/amazon/awssdk/http-client-spi/2.17.183/http-client-spi-2.17.183.jar"
  3181. ],
  3182. "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"
  3183. }
  3184. },
  3185. "software_amazon_awssdk_third_party_jackson_core_2_17_183": {
  3186. "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl",
  3187. "ruleClassName": "http_file",
  3188. "attributes": {
  3189. "sha256": "1bc27c9960993c20e1ab058012dd1ae04c875eec9f0f08f2b2ca41e578dee9a4",
  3190. "urls": [
  3191. "https://repo1.maven.org/maven2/software/amazon/awssdk/third-party-jackson-core/2.17.183/third-party-jackson-core-2.17.183.jar",
  3192. "https://maven.google.com/software/amazon/awssdk/third-party-jackson-core/2.17.183/third-party-jackson-core-2.17.183.jar"
  3193. ],
  3194. "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"
  3195. }
  3196. },
  3197. "software_amazon_eventstream_eventstream_1_0_1": {
  3198. "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl",
  3199. "ruleClassName": "http_file",
  3200. "attributes": {
  3201. "sha256": "0c37d8e696117f02c302191b8110b0d0eb20fa412fce34c3a269ec73c16ce822",
  3202. "urls": [
  3203. "https://repo1.maven.org/maven2/software/amazon/eventstream/eventstream/1.0.1/eventstream-1.0.1.jar",
  3204. "https://maven.google.com/software/amazon/eventstream/eventstream/1.0.1/eventstream-1.0.1.jar"
  3205. ],
  3206. "downloaded_file_path": "v1/https/repo1.maven.org/maven2/software/amazon/eventstream/eventstream/1.0.1/eventstream-1.0.1.jar"
  3207. }
  3208. },
  3209. "com_google_oauth_client_google_oauth_client_1_31_1": {
  3210. "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl",
  3211. "ruleClassName": "http_file",
  3212. "attributes": {
  3213. "sha256": "4ed4e2948251dbda66ce251bd7f3b32cd8570055e5cdb165a3c7aea8f43da0ff",
  3214. "urls": [
  3215. "https://repo1.maven.org/maven2/com/google/oauth-client/google-oauth-client/1.31.1/google-oauth-client-1.31.1.jar",
  3216. "https://maven.google.com/com/google/oauth-client/google-oauth-client/1.31.1/google-oauth-client-1.31.1.jar"
  3217. ],
  3218. "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"
  3219. }
  3220. },
  3221. "maven": {
  3222. "bzlFile": "@@rules_jvm_external~//:coursier.bzl",
  3223. "ruleClassName": "coursier_fetch",
  3224. "attributes": {
  3225. "repositories": [
  3226. "{ \"repo_url\": \"https://repo1.maven.org/maven2\" }"
  3227. ],
  3228. "artifacts": [
  3229. "{\"artifact\":\"jsr305\",\"group\":\"com.google.code.findbugs\",\"version\":\"3.0.2\"}",
  3230. "{\"artifact\":\"gson\",\"group\":\"com.google.code.gson\",\"version\":\"2.8.9\"}",
  3231. "{\"artifact\":\"error_prone_annotations\",\"group\":\"com.google.errorprone\",\"version\":\"2.3.2\"}",
  3232. "{\"artifact\":\"j2objc-annotations\",\"group\":\"com.google.j2objc\",\"version\":\"1.3\"}",
  3233. "{\"artifact\":\"guava\",\"group\":\"com.google.guava\",\"version\":\"31.1-jre\"}",
  3234. "{\"artifact\":\"guava-testlib\",\"group\":\"com.google.guava\",\"version\":\"31.1-jre\"}",
  3235. "{\"artifact\":\"truth\",\"group\":\"com.google.truth\",\"version\":\"1.1.2\"}",
  3236. "{\"artifact\":\"junit\",\"group\":\"junit\",\"version\":\"4.13.2\"}",
  3237. "{\"artifact\":\"mockito-core\",\"group\":\"org.mockito\",\"version\":\"4.3.1\"}"
  3238. ],
  3239. "fail_on_missing_checksum": true,
  3240. "fetch_sources": true,
  3241. "fetch_javadoc": false,
  3242. "use_unsafe_shared_cache": false,
  3243. "excluded_artifacts": [],
  3244. "generate_compat_repositories": false,
  3245. "version_conflict_policy": "default",
  3246. "override_targets": {},
  3247. "strict_visibility": false,
  3248. "strict_visibility_value": [
  3249. "@@//visibility:private"
  3250. ],
  3251. "resolve_timeout": 600,
  3252. "jetify": false,
  3253. "jetify_include_list": [
  3254. "*"
  3255. ],
  3256. "use_starlark_android_rules": false,
  3257. "aar_import_bzl_label": "@build_bazel_rules_android//android:rules.bzl",
  3258. "duplicate_version_warning": "warn"
  3259. }
  3260. },
  3261. "software_amazon_awssdk_aws_xml_protocol_2_17_183": {
  3262. "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl",
  3263. "ruleClassName": "http_file",
  3264. "attributes": {
  3265. "sha256": "566bba05d49256fa6994efd68fa625ae05a62ea45ee74bb9130d20ea20988363",
  3266. "urls": [
  3267. "https://repo1.maven.org/maven2/software/amazon/awssdk/aws-xml-protocol/2.17.183/aws-xml-protocol-2.17.183.jar",
  3268. "https://maven.google.com/software/amazon/awssdk/aws-xml-protocol/2.17.183/aws-xml-protocol-2.17.183.jar"
  3269. ],
  3270. "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"
  3271. }
  3272. },
  3273. "software_amazon_awssdk_annotations_2_17_183": {
  3274. "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl",
  3275. "ruleClassName": "http_file",
  3276. "attributes": {
  3277. "sha256": "8e4d72361ca805a0bd8bbd9017cd7ff77c8d170f2dd469c7d52d5653330bb3fd",
  3278. "urls": [
  3279. "https://repo1.maven.org/maven2/software/amazon/awssdk/annotations/2.17.183/annotations-2.17.183.jar",
  3280. "https://maven.google.com/software/amazon/awssdk/annotations/2.17.183/annotations-2.17.183.jar"
  3281. ],
  3282. "downloaded_file_path": "v1/https/repo1.maven.org/maven2/software/amazon/awssdk/annotations/2.17.183/annotations-2.17.183.jar"
  3283. }
  3284. },
  3285. "software_amazon_awssdk_netty_nio_client_2_17_183": {
  3286. "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl",
  3287. "ruleClassName": "http_file",
  3288. "attributes": {
  3289. "sha256": "a6d356f364c56d7b90006b0b7e503b8630010993a5587ce42e74b10b8dca2238",
  3290. "urls": [
  3291. "https://repo1.maven.org/maven2/software/amazon/awssdk/netty-nio-client/2.17.183/netty-nio-client-2.17.183.jar",
  3292. "https://maven.google.com/software/amazon/awssdk/netty-nio-client/2.17.183/netty-nio-client-2.17.183.jar"
  3293. ],
  3294. "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"
  3295. }
  3296. },
  3297. "com_google_auto_value_auto_value_annotations_1_7_4": {
  3298. "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl",
  3299. "ruleClassName": "http_file",
  3300. "attributes": {
  3301. "sha256": "fedd59b0b4986c342f6ab2d182f2a4ee9fceb2c7e2d5bdc4dc764c92394a23d3",
  3302. "urls": [
  3303. "https://repo1.maven.org/maven2/com/google/auto/value/auto-value-annotations/1.7.4/auto-value-annotations-1.7.4.jar",
  3304. "https://maven.google.com/com/google/auto/value/auto-value-annotations/1.7.4/auto-value-annotations-1.7.4.jar"
  3305. ],
  3306. "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"
  3307. }
  3308. },
  3309. "io_netty_netty_transport_native_unix_common_4_1_72_Final": {
  3310. "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl",
  3311. "ruleClassName": "http_file",
  3312. "attributes": {
  3313. "sha256": "6f8f1cc29b5a234eeee9439a63eb3f03a5994aa540ff555cb0b2c88cefaf6877",
  3314. "urls": [
  3315. "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",
  3316. "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"
  3317. ],
  3318. "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"
  3319. }
  3320. },
  3321. "io_opencensus_opencensus_contrib_http_util_0_24_0": {
  3322. "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl",
  3323. "ruleClassName": "http_file",
  3324. "attributes": {
  3325. "sha256": "7155273bbb1ed3d477ea33cf19d7bbc0b285ff395f43b29ae576722cf247000f",
  3326. "urls": [
  3327. "https://repo1.maven.org/maven2/io/opencensus/opencensus-contrib-http-util/0.24.0/opencensus-contrib-http-util-0.24.0.jar",
  3328. "https://maven.google.com/io/opencensus/opencensus-contrib-http-util/0.24.0/opencensus-contrib-http-util-0.24.0.jar"
  3329. ],
  3330. "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"
  3331. }
  3332. },
  3333. "com_fasterxml_jackson_core_jackson_core_2_11_3": {
  3334. "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl",
  3335. "ruleClassName": "http_file",
  3336. "attributes": {
  3337. "sha256": "78cd0a6b936232e06dd3e38da8a0345348a09cd1ff9c4d844c6ee72c75cfc402",
  3338. "urls": [
  3339. "https://repo1.maven.org/maven2/com/fasterxml/jackson/core/jackson-core/2.11.3/jackson-core-2.11.3.jar",
  3340. "https://maven.google.com/com/fasterxml/jackson/core/jackson-core/2.11.3/jackson-core-2.11.3.jar"
  3341. ],
  3342. "downloaded_file_path": "v1/https/repo1.maven.org/maven2/com/fasterxml/jackson/core/jackson-core/2.11.3/jackson-core-2.11.3.jar"
  3343. }
  3344. },
  3345. "com_google_cloud_google_cloud_core_1_93_10": {
  3346. "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl",
  3347. "ruleClassName": "http_file",
  3348. "attributes": {
  3349. "sha256": "832d74eca66f4601e162a8460d6f59f50d1d23f93c18b02654423b6b0d67c6ea",
  3350. "urls": [
  3351. "https://repo1.maven.org/maven2/com/google/cloud/google-cloud-core/1.93.10/google-cloud-core-1.93.10.jar",
  3352. "https://maven.google.com/com/google/cloud/google-cloud-core/1.93.10/google-cloud-core-1.93.10.jar"
  3353. ],
  3354. "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"
  3355. }
  3356. },
  3357. "com_google_auth_google_auth_library_credentials_0_22_0": {
  3358. "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl",
  3359. "ruleClassName": "http_file",
  3360. "attributes": {
  3361. "sha256": "42c76031276de5b520909e9faf88c5b3c9a722d69ee9cfdafedb1c52c355dfc5",
  3362. "urls": [
  3363. "https://repo1.maven.org/maven2/com/google/auth/google-auth-library-credentials/0.22.0/google-auth-library-credentials-0.22.0.jar",
  3364. "https://maven.google.com/com/google/auth/google-auth-library-credentials/0.22.0/google-auth-library-credentials-0.22.0.jar"
  3365. ],
  3366. "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"
  3367. }
  3368. },
  3369. "com_google_guava_guava_30_0_android": {
  3370. "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl",
  3371. "ruleClassName": "http_file",
  3372. "attributes": {
  3373. "sha256": "3345c82c2cc70a0053e8db9031edc6d71625ef0dea6a2c8f5ebd6cb76d2bf843",
  3374. "urls": [
  3375. "https://repo1.maven.org/maven2/com/google/guava/guava/30.0-android/guava-30.0-android.jar",
  3376. "https://maven.google.com/com/google/guava/guava/30.0-android/guava-30.0-android.jar"
  3377. ],
  3378. "downloaded_file_path": "v1/https/repo1.maven.org/maven2/com/google/guava/guava/30.0-android/guava-30.0-android.jar"
  3379. }
  3380. },
  3381. "software_amazon_awssdk_profiles_2_17_183": {
  3382. "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl",
  3383. "ruleClassName": "http_file",
  3384. "attributes": {
  3385. "sha256": "78833b32fde3f1c5320373b9ea955c1bbc28f2c904010791c4784e610193ee56",
  3386. "urls": [
  3387. "https://repo1.maven.org/maven2/software/amazon/awssdk/profiles/2.17.183/profiles-2.17.183.jar",
  3388. "https://maven.google.com/software/amazon/awssdk/profiles/2.17.183/profiles-2.17.183.jar"
  3389. ],
  3390. "downloaded_file_path": "v1/https/repo1.maven.org/maven2/software/amazon/awssdk/profiles/2.17.183/profiles-2.17.183.jar"
  3391. }
  3392. },
  3393. "org_apache_httpcomponents_httpcore_4_4_13": {
  3394. "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl",
  3395. "ruleClassName": "http_file",
  3396. "attributes": {
  3397. "sha256": "e06e89d40943245fcfa39ec537cdbfce3762aecde8f9c597780d2b00c2b43424",
  3398. "urls": [
  3399. "https://repo1.maven.org/maven2/org/apache/httpcomponents/httpcore/4.4.13/httpcore-4.4.13.jar",
  3400. "https://maven.google.com/org/apache/httpcomponents/httpcore/4.4.13/httpcore-4.4.13.jar"
  3401. ],
  3402. "downloaded_file_path": "v1/https/repo1.maven.org/maven2/org/apache/httpcomponents/httpcore/4.4.13/httpcore-4.4.13.jar"
  3403. }
  3404. },
  3405. "io_netty_netty_common_4_1_72_Final": {
  3406. "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl",
  3407. "ruleClassName": "http_file",
  3408. "attributes": {
  3409. "sha256": "8adb4c291260ceb2859a68c49f0adeed36bf49587608e2b81ecff6aaf06025e9",
  3410. "urls": [
  3411. "https://repo1.maven.org/maven2/io/netty/netty-common/4.1.72.Final/netty-common-4.1.72.Final.jar",
  3412. "https://maven.google.com/io/netty/netty-common/4.1.72.Final/netty-common-4.1.72.Final.jar"
  3413. ],
  3414. "downloaded_file_path": "v1/https/repo1.maven.org/maven2/io/netty/netty-common/4.1.72.Final/netty-common-4.1.72.Final.jar"
  3415. }
  3416. },
  3417. "io_netty_netty_transport_classes_epoll_4_1_72_Final": {
  3418. "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl",
  3419. "ruleClassName": "http_file",
  3420. "attributes": {
  3421. "sha256": "e1528a9751c1285aa7beaf3a1eb0597151716426ce38598ac9bc0891209b9e68",
  3422. "urls": [
  3423. "https://repo1.maven.org/maven2/io/netty/netty-transport-classes-epoll/4.1.72.Final/netty-transport-classes-epoll-4.1.72.Final.jar",
  3424. "https://maven.google.com/io/netty/netty-transport-classes-epoll/4.1.72.Final/netty-transport-classes-epoll-4.1.72.Final.jar"
  3425. ],
  3426. "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"
  3427. }
  3428. },
  3429. "com_google_cloud_google_cloud_core_http_1_93_10": {
  3430. "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl",
  3431. "ruleClassName": "http_file",
  3432. "attributes": {
  3433. "sha256": "81ac67c14c7c4244d2b7db2607ad352416aca8d3bb2adf338964e8fea25b1b3c",
  3434. "urls": [
  3435. "https://repo1.maven.org/maven2/com/google/cloud/google-cloud-core-http/1.93.10/google-cloud-core-http-1.93.10.jar",
  3436. "https://maven.google.com/com/google/cloud/google-cloud-core-http/1.93.10/google-cloud-core-http-1.93.10.jar"
  3437. ],
  3438. "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"
  3439. }
  3440. },
  3441. "software_amazon_awssdk_utils_2_17_183": {
  3442. "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl",
  3443. "ruleClassName": "http_file",
  3444. "attributes": {
  3445. "sha256": "7bd849bb5aa71bfdf6b849643736ecab3a7b3f204795804eefe5754104231ec6",
  3446. "urls": [
  3447. "https://repo1.maven.org/maven2/software/amazon/awssdk/utils/2.17.183/utils-2.17.183.jar",
  3448. "https://maven.google.com/software/amazon/awssdk/utils/2.17.183/utils-2.17.183.jar"
  3449. ],
  3450. "downloaded_file_path": "v1/https/repo1.maven.org/maven2/software/amazon/awssdk/utils/2.17.183/utils-2.17.183.jar"
  3451. }
  3452. },
  3453. "org_apache_commons_commons_lang3_3_8_1": {
  3454. "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl",
  3455. "ruleClassName": "http_file",
  3456. "attributes": {
  3457. "sha256": "dac807f65b07698ff39b1b07bfef3d87ae3fd46d91bbf8a2bc02b2a831616f68",
  3458. "urls": [
  3459. "https://repo1.maven.org/maven2/org/apache/commons/commons-lang3/3.8.1/commons-lang3-3.8.1.jar",
  3460. "https://maven.google.com/org/apache/commons/commons-lang3/3.8.1/commons-lang3-3.8.1.jar"
  3461. ],
  3462. "downloaded_file_path": "v1/https/repo1.maven.org/maven2/org/apache/commons/commons-lang3/3.8.1/commons-lang3-3.8.1.jar"
  3463. }
  3464. },
  3465. "software_amazon_awssdk_aws_core_2_17_183": {
  3466. "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl",
  3467. "ruleClassName": "http_file",
  3468. "attributes": {
  3469. "sha256": "bccbdbea689a665a702ff19828662d87fb7fe81529df13f02ef1e4c474ea9f93",
  3470. "urls": [
  3471. "https://repo1.maven.org/maven2/software/amazon/awssdk/aws-core/2.17.183/aws-core-2.17.183.jar",
  3472. "https://maven.google.com/software/amazon/awssdk/aws-core/2.17.183/aws-core-2.17.183.jar"
  3473. ],
  3474. "downloaded_file_path": "v1/https/repo1.maven.org/maven2/software/amazon/awssdk/aws-core/2.17.183/aws-core-2.17.183.jar"
  3475. }
  3476. },
  3477. "com_google_api_gax_httpjson_0_77_0": {
  3478. "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl",
  3479. "ruleClassName": "http_file",
  3480. "attributes": {
  3481. "sha256": "fd4dae47fa016d3b26e8d90b67ddc6c23c4c06e8bcdf085c70310ab7ef324bd6",
  3482. "urls": [
  3483. "https://repo1.maven.org/maven2/com/google/api/gax-httpjson/0.77.0/gax-httpjson-0.77.0.jar",
  3484. "https://maven.google.com/com/google/api/gax-httpjson/0.77.0/gax-httpjson-0.77.0.jar"
  3485. ],
  3486. "downloaded_file_path": "v1/https/repo1.maven.org/maven2/com/google/api/gax-httpjson/0.77.0/gax-httpjson-0.77.0.jar"
  3487. }
  3488. },
  3489. "unpinned_rules_jvm_external_deps": {
  3490. "bzlFile": "@@rules_jvm_external~//:coursier.bzl",
  3491. "ruleClassName": "coursier_fetch",
  3492. "attributes": {
  3493. "repositories": [
  3494. "{ \"repo_url\": \"https://repo1.maven.org/maven2\" }"
  3495. ],
  3496. "artifacts": [
  3497. "{\"artifact\":\"google-cloud-core\",\"group\":\"com.google.cloud\",\"version\":\"1.93.10\"}",
  3498. "{\"artifact\":\"google-cloud-storage\",\"group\":\"com.google.cloud\",\"version\":\"1.113.4\"}",
  3499. "{\"artifact\":\"gson\",\"group\":\"com.google.code.gson\",\"version\":\"2.9.0\"}",
  3500. "{\"artifact\":\"maven-artifact\",\"group\":\"org.apache.maven\",\"version\":\"3.8.6\"}",
  3501. "{\"artifact\":\"s3\",\"group\":\"software.amazon.awssdk\",\"version\":\"2.17.183\"}"
  3502. ],
  3503. "fail_on_missing_checksum": true,
  3504. "fetch_sources": true,
  3505. "fetch_javadoc": false,
  3506. "use_unsafe_shared_cache": false,
  3507. "excluded_artifacts": [],
  3508. "generate_compat_repositories": false,
  3509. "version_conflict_policy": "default",
  3510. "override_targets": {},
  3511. "strict_visibility": false,
  3512. "strict_visibility_value": [
  3513. "@@//visibility:private"
  3514. ],
  3515. "maven_install_json": "@@rules_jvm_external~//:rules_jvm_external_deps_install.json",
  3516. "resolve_timeout": 600,
  3517. "jetify": false,
  3518. "jetify_include_list": [
  3519. "*"
  3520. ],
  3521. "use_starlark_android_rules": false,
  3522. "aar_import_bzl_label": "@build_bazel_rules_android//android:rules.bzl",
  3523. "duplicate_version_warning": "warn"
  3524. }
  3525. },
  3526. "software_amazon_awssdk_regions_2_17_183": {
  3527. "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl",
  3528. "ruleClassName": "http_file",
  3529. "attributes": {
  3530. "sha256": "d3079395f3ffc07d04ffcce16fca29fb5968197f6e9ea3dbff6be297102b40a5",
  3531. "urls": [
  3532. "https://repo1.maven.org/maven2/software/amazon/awssdk/regions/2.17.183/regions-2.17.183.jar",
  3533. "https://maven.google.com/software/amazon/awssdk/regions/2.17.183/regions-2.17.183.jar"
  3534. ],
  3535. "downloaded_file_path": "v1/https/repo1.maven.org/maven2/software/amazon/awssdk/regions/2.17.183/regions-2.17.183.jar"
  3536. }
  3537. },
  3538. "com_google_errorprone_error_prone_annotations_2_4_0": {
  3539. "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl",
  3540. "ruleClassName": "http_file",
  3541. "attributes": {
  3542. "sha256": "5f2a0648230a662e8be049df308d583d7369f13af683e44ddf5829b6d741a228",
  3543. "urls": [
  3544. "https://repo1.maven.org/maven2/com/google/errorprone/error_prone_annotations/2.4.0/error_prone_annotations-2.4.0.jar",
  3545. "https://maven.google.com/com/google/errorprone/error_prone_annotations/2.4.0/error_prone_annotations-2.4.0.jar"
  3546. ],
  3547. "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"
  3548. }
  3549. },
  3550. "io_netty_netty_handler_4_1_72_Final": {
  3551. "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl",
  3552. "ruleClassName": "http_file",
  3553. "attributes": {
  3554. "sha256": "9cb6012af7e06361d738ac4e3bdc49a158f8cf87d9dee0f2744056b7d99c28d5",
  3555. "urls": [
  3556. "https://repo1.maven.org/maven2/io/netty/netty-handler/4.1.72.Final/netty-handler-4.1.72.Final.jar",
  3557. "https://maven.google.com/io/netty/netty-handler/4.1.72.Final/netty-handler-4.1.72.Final.jar"
  3558. ],
  3559. "downloaded_file_path": "v1/https/repo1.maven.org/maven2/io/netty/netty-handler/4.1.72.Final/netty-handler-4.1.72.Final.jar"
  3560. }
  3561. },
  3562. "software_amazon_awssdk_aws_query_protocol_2_17_183": {
  3563. "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl",
  3564. "ruleClassName": "http_file",
  3565. "attributes": {
  3566. "sha256": "4dace03c76f80f3dec920cb3dedb2a95984c4366ef4fda728660cb90bed74848",
  3567. "urls": [
  3568. "https://repo1.maven.org/maven2/software/amazon/awssdk/aws-query-protocol/2.17.183/aws-query-protocol-2.17.183.jar",
  3569. "https://maven.google.com/software/amazon/awssdk/aws-query-protocol/2.17.183/aws-query-protocol-2.17.183.jar"
  3570. ],
  3571. "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"
  3572. }
  3573. },
  3574. "io_netty_netty_codec_http_4_1_72_Final": {
  3575. "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl",
  3576. "ruleClassName": "http_file",
  3577. "attributes": {
  3578. "sha256": "fa6fec88010bfaf6a7415b5364671b6b18ffb6b35a986ab97b423fd8c3a0174b",
  3579. "urls": [
  3580. "https://repo1.maven.org/maven2/io/netty/netty-codec-http/4.1.72.Final/netty-codec-http-4.1.72.Final.jar",
  3581. "https://maven.google.com/io/netty/netty-codec-http/4.1.72.Final/netty-codec-http-4.1.72.Final.jar"
  3582. ],
  3583. "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"
  3584. }
  3585. },
  3586. "io_netty_netty_resolver_4_1_72_Final": {
  3587. "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl",
  3588. "ruleClassName": "http_file",
  3589. "attributes": {
  3590. "sha256": "6474598aab7cc9d8d6cfa06c05bd1b19adbf7f8451dbdd73070b33a6c60b1b90",
  3591. "urls": [
  3592. "https://repo1.maven.org/maven2/io/netty/netty-resolver/4.1.72.Final/netty-resolver-4.1.72.Final.jar",
  3593. "https://maven.google.com/io/netty/netty-resolver/4.1.72.Final/netty-resolver-4.1.72.Final.jar"
  3594. ],
  3595. "downloaded_file_path": "v1/https/repo1.maven.org/maven2/io/netty/netty-resolver/4.1.72.Final/netty-resolver-4.1.72.Final.jar"
  3596. }
  3597. },
  3598. "software_amazon_awssdk_protocol_core_2_17_183": {
  3599. "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl",
  3600. "ruleClassName": "http_file",
  3601. "attributes": {
  3602. "sha256": "10e7c4faa1f05e2d73055d0390dbd0bb6450e2e6cb85beda051b1e4693c826ce",
  3603. "urls": [
  3604. "https://repo1.maven.org/maven2/software/amazon/awssdk/protocol-core/2.17.183/protocol-core-2.17.183.jar",
  3605. "https://maven.google.com/software/amazon/awssdk/protocol-core/2.17.183/protocol-core-2.17.183.jar"
  3606. ],
  3607. "downloaded_file_path": "v1/https/repo1.maven.org/maven2/software/amazon/awssdk/protocol-core/2.17.183/protocol-core-2.17.183.jar"
  3608. }
  3609. },
  3610. "org_checkerframework_checker_compat_qual_2_5_5": {
  3611. "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl",
  3612. "ruleClassName": "http_file",
  3613. "attributes": {
  3614. "sha256": "11d134b245e9cacc474514d2d66b5b8618f8039a1465cdc55bbc0b34e0008b7a",
  3615. "urls": [
  3616. "https://repo1.maven.org/maven2/org/checkerframework/checker-compat-qual/2.5.5/checker-compat-qual-2.5.5.jar",
  3617. "https://maven.google.com/org/checkerframework/checker-compat-qual/2.5.5/checker-compat-qual-2.5.5.jar"
  3618. ],
  3619. "downloaded_file_path": "v1/https/repo1.maven.org/maven2/org/checkerframework/checker-compat-qual/2.5.5/checker-compat-qual-2.5.5.jar"
  3620. }
  3621. },
  3622. "com_google_apis_google_api_services_storage_v1_rev20200927_1_30_10": {
  3623. "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl",
  3624. "ruleClassName": "http_file",
  3625. "attributes": {
  3626. "sha256": "52d26a9d105f8d8a0850807285f307a76cea8f3e0cdb2be4d3b15b1adfa77351",
  3627. "urls": [
  3628. "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",
  3629. "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"
  3630. ],
  3631. "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"
  3632. }
  3633. },
  3634. "com_google_api_client_google_api_client_1_30_11": {
  3635. "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl",
  3636. "ruleClassName": "http_file",
  3637. "attributes": {
  3638. "sha256": "ee6f97865cc7de6c7c80955c3f37372cf3887bd75e4fc06f1058a6b4cd9bf4da",
  3639. "urls": [
  3640. "https://repo1.maven.org/maven2/com/google/api-client/google-api-client/1.30.11/google-api-client-1.30.11.jar",
  3641. "https://maven.google.com/com/google/api-client/google-api-client/1.30.11/google-api-client-1.30.11.jar"
  3642. ],
  3643. "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"
  3644. }
  3645. },
  3646. "software_amazon_awssdk_s3_2_17_183": {
  3647. "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl",
  3648. "ruleClassName": "http_file",
  3649. "attributes": {
  3650. "sha256": "ab073b91107a9e4ed9f030314077d137fe627e055ad895fabb036980a050e360",
  3651. "urls": [
  3652. "https://repo1.maven.org/maven2/software/amazon/awssdk/s3/2.17.183/s3-2.17.183.jar",
  3653. "https://maven.google.com/software/amazon/awssdk/s3/2.17.183/s3-2.17.183.jar"
  3654. ],
  3655. "downloaded_file_path": "v1/https/repo1.maven.org/maven2/software/amazon/awssdk/s3/2.17.183/s3-2.17.183.jar"
  3656. }
  3657. },
  3658. "org_apache_maven_maven_artifact_3_8_6": {
  3659. "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl",
  3660. "ruleClassName": "http_file",
  3661. "attributes": {
  3662. "sha256": "de22a4c6f54fe31276a823b1bbd3adfd6823529e732f431b5eff0852c2b9252b",
  3663. "urls": [
  3664. "https://repo1.maven.org/maven2/org/apache/maven/maven-artifact/3.8.6/maven-artifact-3.8.6.jar",
  3665. "https://maven.google.com/org/apache/maven/maven-artifact/3.8.6/maven-artifact-3.8.6.jar"
  3666. ],
  3667. "downloaded_file_path": "v1/https/repo1.maven.org/maven2/org/apache/maven/maven-artifact/3.8.6/maven-artifact-3.8.6.jar"
  3668. }
  3669. },
  3670. "org_apache_httpcomponents_httpclient_4_5_13": {
  3671. "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl",
  3672. "ruleClassName": "http_file",
  3673. "attributes": {
  3674. "sha256": "6fe9026a566c6a5001608cf3fc32196641f6c1e5e1986d1037ccdbd5f31ef743",
  3675. "urls": [
  3676. "https://repo1.maven.org/maven2/org/apache/httpcomponents/httpclient/4.5.13/httpclient-4.5.13.jar",
  3677. "https://maven.google.com/org/apache/httpcomponents/httpclient/4.5.13/httpclient-4.5.13.jar"
  3678. ],
  3679. "downloaded_file_path": "v1/https/repo1.maven.org/maven2/org/apache/httpcomponents/httpclient/4.5.13/httpclient-4.5.13.jar"
  3680. }
  3681. },
  3682. "com_google_guava_listenablefuture_9999_0_empty_to_avoid_conflict_with_guava": {
  3683. "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl",
  3684. "ruleClassName": "http_file",
  3685. "attributes": {
  3686. "sha256": "b372a037d4230aa57fbeffdef30fd6123f9c0c2db85d0aced00c91b974f33f99",
  3687. "urls": [
  3688. "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",
  3689. "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"
  3690. ],
  3691. "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"
  3692. }
  3693. },
  3694. "com_google_http_client_google_http_client_1_38_0": {
  3695. "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl",
  3696. "ruleClassName": "http_file",
  3697. "attributes": {
  3698. "sha256": "411f4a42519b6b78bdc0fcfdf74c9edcef0ee97afa4a667abe04045a508d6302",
  3699. "urls": [
  3700. "https://repo1.maven.org/maven2/com/google/http-client/google-http-client/1.38.0/google-http-client-1.38.0.jar",
  3701. "https://maven.google.com/com/google/http-client/google-http-client/1.38.0/google-http-client-1.38.0.jar"
  3702. ],
  3703. "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"
  3704. }
  3705. },
  3706. "software_amazon_awssdk_apache_client_2_17_183": {
  3707. "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl",
  3708. "ruleClassName": "http_file",
  3709. "attributes": {
  3710. "sha256": "78ceae502fce6a97bbe5ff8f6a010a52ab7ea3ae66cb1a4122e18185fce45022",
  3711. "urls": [
  3712. "https://repo1.maven.org/maven2/software/amazon/awssdk/apache-client/2.17.183/apache-client-2.17.183.jar",
  3713. "https://maven.google.com/software/amazon/awssdk/apache-client/2.17.183/apache-client-2.17.183.jar"
  3714. ],
  3715. "downloaded_file_path": "v1/https/repo1.maven.org/maven2/software/amazon/awssdk/apache-client/2.17.183/apache-client-2.17.183.jar"
  3716. }
  3717. },
  3718. "software_amazon_awssdk_arns_2_17_183": {
  3719. "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl",
  3720. "ruleClassName": "http_file",
  3721. "attributes": {
  3722. "sha256": "659a185e191d66c71de81209490e66abeaccae208ea7b2831a738670823447aa",
  3723. "urls": [
  3724. "https://repo1.maven.org/maven2/software/amazon/awssdk/arns/2.17.183/arns-2.17.183.jar",
  3725. "https://maven.google.com/software/amazon/awssdk/arns/2.17.183/arns-2.17.183.jar"
  3726. ],
  3727. "downloaded_file_path": "v1/https/repo1.maven.org/maven2/software/amazon/awssdk/arns/2.17.183/arns-2.17.183.jar"
  3728. }
  3729. },
  3730. "com_google_code_gson_gson_2_9_0": {
  3731. "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl",
  3732. "ruleClassName": "http_file",
  3733. "attributes": {
  3734. "sha256": "c96d60551331a196dac54b745aa642cd078ef89b6f267146b705f2c2cbef052d",
  3735. "urls": [
  3736. "https://repo1.maven.org/maven2/com/google/code/gson/gson/2.9.0/gson-2.9.0.jar",
  3737. "https://maven.google.com/com/google/code/gson/gson/2.9.0/gson-2.9.0.jar"
  3738. ],
  3739. "downloaded_file_path": "v1/https/repo1.maven.org/maven2/com/google/code/gson/gson/2.9.0/gson-2.9.0.jar"
  3740. }
  3741. },
  3742. "io_netty_netty_buffer_4_1_72_Final": {
  3743. "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl",
  3744. "ruleClassName": "http_file",
  3745. "attributes": {
  3746. "sha256": "568ff7cd9d8e2284ec980730c88924f686642929f8f219a74518b4e64755f3a1",
  3747. "urls": [
  3748. "https://repo1.maven.org/maven2/io/netty/netty-buffer/4.1.72.Final/netty-buffer-4.1.72.Final.jar",
  3749. "https://maven.google.com/io/netty/netty-buffer/4.1.72.Final/netty-buffer-4.1.72.Final.jar"
  3750. ],
  3751. "downloaded_file_path": "v1/https/repo1.maven.org/maven2/io/netty/netty-buffer/4.1.72.Final/netty-buffer-4.1.72.Final.jar"
  3752. }
  3753. },
  3754. "com_google_code_findbugs_jsr305_3_0_2": {
  3755. "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl",
  3756. "ruleClassName": "http_file",
  3757. "attributes": {
  3758. "sha256": "766ad2a0783f2687962c8ad74ceecc38a28b9f72a2d085ee438b7813e928d0c7",
  3759. "urls": [
  3760. "https://repo1.maven.org/maven2/com/google/code/findbugs/jsr305/3.0.2/jsr305-3.0.2.jar",
  3761. "https://maven.google.com/com/google/code/findbugs/jsr305/3.0.2/jsr305-3.0.2.jar"
  3762. ],
  3763. "downloaded_file_path": "v1/https/repo1.maven.org/maven2/com/google/code/findbugs/jsr305/3.0.2/jsr305-3.0.2.jar"
  3764. }
  3765. },
  3766. "commons_codec_commons_codec_1_11": {
  3767. "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl",
  3768. "ruleClassName": "http_file",
  3769. "attributes": {
  3770. "sha256": "e599d5318e97aa48f42136a2927e6dfa4e8881dff0e6c8e3109ddbbff51d7b7d",
  3771. "urls": [
  3772. "https://repo1.maven.org/maven2/commons-codec/commons-codec/1.11/commons-codec-1.11.jar",
  3773. "https://maven.google.com/commons-codec/commons-codec/1.11/commons-codec-1.11.jar"
  3774. ],
  3775. "downloaded_file_path": "v1/https/repo1.maven.org/maven2/commons-codec/commons-codec/1.11/commons-codec-1.11.jar"
  3776. }
  3777. },
  3778. "software_amazon_awssdk_auth_2_17_183": {
  3779. "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl",
  3780. "ruleClassName": "http_file",
  3781. "attributes": {
  3782. "sha256": "8820c6636e5c14efc29399fb5565ce50212b0c1f4ed720a025a2c402d54e0978",
  3783. "urls": [
  3784. "https://repo1.maven.org/maven2/software/amazon/awssdk/auth/2.17.183/auth-2.17.183.jar",
  3785. "https://maven.google.com/software/amazon/awssdk/auth/2.17.183/auth-2.17.183.jar"
  3786. ],
  3787. "downloaded_file_path": "v1/https/repo1.maven.org/maven2/software/amazon/awssdk/auth/2.17.183/auth-2.17.183.jar"
  3788. }
  3789. },
  3790. "software_amazon_awssdk_json_utils_2_17_183": {
  3791. "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl",
  3792. "ruleClassName": "http_file",
  3793. "attributes": {
  3794. "sha256": "51ab7f550adc06afcb49f5270cdf690f1bfaaee243abaa5d978095e2a1e4e1a5",
  3795. "urls": [
  3796. "https://repo1.maven.org/maven2/software/amazon/awssdk/json-utils/2.17.183/json-utils-2.17.183.jar",
  3797. "https://maven.google.com/software/amazon/awssdk/json-utils/2.17.183/json-utils-2.17.183.jar"
  3798. ],
  3799. "downloaded_file_path": "v1/https/repo1.maven.org/maven2/software/amazon/awssdk/json-utils/2.17.183/json-utils-2.17.183.jar"
  3800. }
  3801. },
  3802. "org_codehaus_plexus_plexus_utils_3_3_1": {
  3803. "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl",
  3804. "ruleClassName": "http_file",
  3805. "attributes": {
  3806. "sha256": "4b570fcdbe5a894f249d2eb9b929358a9c88c3e548d227a80010461930222f2a",
  3807. "urls": [
  3808. "https://repo1.maven.org/maven2/org/codehaus/plexus/plexus-utils/3.3.1/plexus-utils-3.3.1.jar",
  3809. "https://maven.google.com/org/codehaus/plexus/plexus-utils/3.3.1/plexus-utils-3.3.1.jar"
  3810. ],
  3811. "downloaded_file_path": "v1/https/repo1.maven.org/maven2/org/codehaus/plexus/plexus-utils/3.3.1/plexus-utils-3.3.1.jar"
  3812. }
  3813. },
  3814. "com_google_protobuf_protobuf_java_util_3_13_0": {
  3815. "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl",
  3816. "ruleClassName": "http_file",
  3817. "attributes": {
  3818. "sha256": "d9de66b8c9445905dfa7064f6d5213d47ce88a20d34e21d83c4a94a229e14e62",
  3819. "urls": [
  3820. "https://repo1.maven.org/maven2/com/google/protobuf/protobuf-java-util/3.13.0/protobuf-java-util-3.13.0.jar",
  3821. "https://maven.google.com/com/google/protobuf/protobuf-java-util/3.13.0/protobuf-java-util-3.13.0.jar"
  3822. ],
  3823. "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"
  3824. }
  3825. },
  3826. "io_netty_netty_codec_4_1_72_Final": {
  3827. "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl",
  3828. "ruleClassName": "http_file",
  3829. "attributes": {
  3830. "sha256": "5d8591ca271a1e9c224e8de3873aa9936acb581ee0db514e7dc18523df36d16c",
  3831. "urls": [
  3832. "https://repo1.maven.org/maven2/io/netty/netty-codec/4.1.72.Final/netty-codec-4.1.72.Final.jar",
  3833. "https://maven.google.com/io/netty/netty-codec/4.1.72.Final/netty-codec-4.1.72.Final.jar"
  3834. ],
  3835. "downloaded_file_path": "v1/https/repo1.maven.org/maven2/io/netty/netty-codec/4.1.72.Final/netty-codec-4.1.72.Final.jar"
  3836. }
  3837. },
  3838. "com_google_protobuf_protobuf_java_3_13_0": {
  3839. "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl",
  3840. "ruleClassName": "http_file",
  3841. "attributes": {
  3842. "sha256": "97d5b2758408690c0dc276238707492a0b6a4d71206311b6c442cdc26c5973ff",
  3843. "urls": [
  3844. "https://repo1.maven.org/maven2/com/google/protobuf/protobuf-java/3.13.0/protobuf-java-3.13.0.jar",
  3845. "https://maven.google.com/com/google/protobuf/protobuf-java/3.13.0/protobuf-java-3.13.0.jar"
  3846. ],
  3847. "downloaded_file_path": "v1/https/repo1.maven.org/maven2/com/google/protobuf/protobuf-java/3.13.0/protobuf-java-3.13.0.jar"
  3848. }
  3849. },
  3850. "io_netty_netty_tcnative_classes_2_0_46_Final": {
  3851. "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl",
  3852. "ruleClassName": "http_file",
  3853. "attributes": {
  3854. "sha256": "d3ec888dcc4ac7915bf88b417c5e04fd354f4311032a748a6882df09347eed9a",
  3855. "urls": [
  3856. "https://repo1.maven.org/maven2/io/netty/netty-tcnative-classes/2.0.46.Final/netty-tcnative-classes-2.0.46.Final.jar",
  3857. "https://maven.google.com/io/netty/netty-tcnative-classes/2.0.46.Final/netty-tcnative-classes-2.0.46.Final.jar"
  3858. ],
  3859. "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"
  3860. }
  3861. },
  3862. "software_amazon_awssdk_sdk_core_2_17_183": {
  3863. "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl",
  3864. "ruleClassName": "http_file",
  3865. "attributes": {
  3866. "sha256": "677e9cc90fdd82c1f40f97b99cb115b13ad6c3f58beeeab1c061af6954d64c77",
  3867. "urls": [
  3868. "https://repo1.maven.org/maven2/software/amazon/awssdk/sdk-core/2.17.183/sdk-core-2.17.183.jar",
  3869. "https://maven.google.com/software/amazon/awssdk/sdk-core/2.17.183/sdk-core-2.17.183.jar"
  3870. ],
  3871. "downloaded_file_path": "v1/https/repo1.maven.org/maven2/software/amazon/awssdk/sdk-core/2.17.183/sdk-core-2.17.183.jar"
  3872. }
  3873. }
  3874. },
  3875. "recordedRepoMappingEntries": [
  3876. [
  3877. "rules_jvm_external~",
  3878. "bazel_tools",
  3879. "bazel_tools"
  3880. ],
  3881. [
  3882. "rules_jvm_external~",
  3883. "rules_jvm_external",
  3884. "rules_jvm_external~"
  3885. ]
  3886. ]
  3887. }
  3888. },
  3889. "@@rules_jvm_external~//:non-module-deps.bzl%non_module_deps": {
  3890. "general": {
  3891. "bzlTransitiveDigest": "Fq6CvJMzD0/LbttG5TUaCtEm/pFvTgO5X9tCUH87Fb0=",
  3892. "recordedFileInputs": {},
  3893. "recordedDirentsInputs": {},
  3894. "envVariables": {},
  3895. "generatedRepoSpecs": {
  3896. "io_bazel_rules_kotlin": {
  3897. "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl",
  3898. "ruleClassName": "http_archive",
  3899. "attributes": {
  3900. "sha256": "946747acdbeae799b085d12b240ec346f775ac65236dfcf18aa0cd7300f6de78",
  3901. "urls": [
  3902. "https://github.com/bazelbuild/rules_kotlin/releases/download/v1.7.0-RC-2/rules_kotlin_release.tgz"
  3903. ]
  3904. }
  3905. }
  3906. },
  3907. "recordedRepoMappingEntries": [
  3908. [
  3909. "rules_jvm_external~",
  3910. "bazel_tools",
  3911. "bazel_tools"
  3912. ]
  3913. ]
  3914. }
  3915. },
  3916. "@@rules_m4~//m4/internal:default_toolchain_ext.bzl%default_toolchain_ext": {
  3917. "general": {
  3918. "bzlTransitiveDigest": "rm6OAtIMR6n0t1X9wBVXucwCa6wqpIoqqh+kSzHNOg4=",
  3919. "recordedFileInputs": {},
  3920. "recordedDirentsInputs": {},
  3921. "envVariables": {},
  3922. "generatedRepoSpecs": {
  3923. "m4_v1.4.18": {
  3924. "bzlFile": "@@rules_m4~//m4/rules:m4_repository.bzl",
  3925. "ruleClassName": "m4_repository",
  3926. "attributes": {
  3927. "version": "1.4.18"
  3928. }
  3929. },
  3930. "m4": {
  3931. "bzlFile": "@@rules_m4~//m4/rules:m4_toolchain_repository.bzl",
  3932. "ruleClassName": "m4_toolchain_repository",
  3933. "attributes": {
  3934. "m4_repository": "@m4_v1.4.18"
  3935. }
  3936. }
  3937. },
  3938. "moduleExtensionMetadata": {
  3939. "explicitRootModuleDirectDeps": [
  3940. "m4"
  3941. ],
  3942. "explicitRootModuleDirectDevDeps": [],
  3943. "useAllRepos": "NO",
  3944. "reproducible": false
  3945. },
  3946. "recordedRepoMappingEntries": []
  3947. }
  3948. },
  3949. "@@rules_python~//python/extensions:python.bzl%python": {
  3950. "general": {
  3951. "bzlTransitiveDigest": "iiPikoKvnpwOgbGu/g38NtUIUQuF7N9KqMl5LqIvWaQ=",
  3952. "recordedFileInputs": {},
  3953. "recordedDirentsInputs": {},
  3954. "envVariables": {},
  3955. "generatedRepoSpecs": {
  3956. "python_3_11_s390x-unknown-linux-gnu": {
  3957. "bzlFile": "@@rules_python~//python:repositories.bzl",
  3958. "ruleClassName": "python_repository",
  3959. "attributes": {
  3960. "sha256": "49520e3ff494708020f306e30b0964f079170be83e956be4504f850557378a22",
  3961. "patches": [],
  3962. "platform": "s390x-unknown-linux-gnu",
  3963. "python_version": "3.11.7",
  3964. "release_filename": "20240107/cpython-3.11.7+20240107-s390x-unknown-linux-gnu-install_only.tar.gz",
  3965. "urls": [
  3966. "https://github.com/indygreg/python-build-standalone/releases/download/20240107/cpython-3.11.7+20240107-s390x-unknown-linux-gnu-install_only.tar.gz"
  3967. ],
  3968. "distutils_content": "",
  3969. "strip_prefix": "python",
  3970. "coverage_tool": "",
  3971. "ignore_root_user_error": false
  3972. }
  3973. },
  3974. "python_3_11_host": {
  3975. "bzlFile": "@@rules_python~//python/private:toolchains_repo.bzl",
  3976. "ruleClassName": "host_toolchain",
  3977. "attributes": {
  3978. "python_version": "3.11.7",
  3979. "user_repository_name": "python_3_11",
  3980. "platforms": [
  3981. "aarch64-apple-darwin",
  3982. "aarch64-unknown-linux-gnu",
  3983. "ppc64le-unknown-linux-gnu",
  3984. "s390x-unknown-linux-gnu",
  3985. "x86_64-apple-darwin",
  3986. "x86_64-pc-windows-msvc",
  3987. "x86_64-unknown-linux-gnu"
  3988. ]
  3989. }
  3990. },
  3991. "python_3_11": {
  3992. "bzlFile": "@@rules_python~//python/private:toolchains_repo.bzl",
  3993. "ruleClassName": "toolchain_aliases",
  3994. "attributes": {
  3995. "python_version": "3.11.7",
  3996. "user_repository_name": "python_3_11",
  3997. "platforms": [
  3998. "aarch64-apple-darwin",
  3999. "aarch64-unknown-linux-gnu",
  4000. "ppc64le-unknown-linux-gnu",
  4001. "s390x-unknown-linux-gnu",
  4002. "x86_64-apple-darwin",
  4003. "x86_64-pc-windows-msvc",
  4004. "x86_64-unknown-linux-gnu"
  4005. ]
  4006. }
  4007. },
  4008. "python_3_11_aarch64-unknown-linux-gnu": {
  4009. "bzlFile": "@@rules_python~//python:repositories.bzl",
  4010. "ruleClassName": "python_repository",
  4011. "attributes": {
  4012. "sha256": "b102eaf865eb715aa98a8a2ef19037b6cc3ae7dfd4a632802650f29de635aa13",
  4013. "patches": [],
  4014. "platform": "aarch64-unknown-linux-gnu",
  4015. "python_version": "3.11.7",
  4016. "release_filename": "20240107/cpython-3.11.7+20240107-aarch64-unknown-linux-gnu-install_only.tar.gz",
  4017. "urls": [
  4018. "https://github.com/indygreg/python-build-standalone/releases/download/20240107/cpython-3.11.7+20240107-aarch64-unknown-linux-gnu-install_only.tar.gz"
  4019. ],
  4020. "distutils_content": "",
  4021. "strip_prefix": "python",
  4022. "coverage_tool": "",
  4023. "ignore_root_user_error": false
  4024. }
  4025. },
  4026. "python_3_11_aarch64-apple-darwin": {
  4027. "bzlFile": "@@rules_python~//python:repositories.bzl",
  4028. "ruleClassName": "python_repository",
  4029. "attributes": {
  4030. "sha256": "b042c966920cf8465385ca3522986b12d745151a72c060991088977ca36d3883",
  4031. "patches": [],
  4032. "platform": "aarch64-apple-darwin",
  4033. "python_version": "3.11.7",
  4034. "release_filename": "20240107/cpython-3.11.7+20240107-aarch64-apple-darwin-install_only.tar.gz",
  4035. "urls": [
  4036. "https://github.com/indygreg/python-build-standalone/releases/download/20240107/cpython-3.11.7+20240107-aarch64-apple-darwin-install_only.tar.gz"
  4037. ],
  4038. "distutils_content": "",
  4039. "strip_prefix": "python",
  4040. "coverage_tool": "",
  4041. "ignore_root_user_error": false
  4042. }
  4043. },
  4044. "python_3_11_ppc64le-unknown-linux-gnu": {
  4045. "bzlFile": "@@rules_python~//python:repositories.bzl",
  4046. "ruleClassName": "python_repository",
  4047. "attributes": {
  4048. "sha256": "b44e1b74afe75c7b19143413632c4386708ae229117f8f950c2094e9681d34c7",
  4049. "patches": [],
  4050. "platform": "ppc64le-unknown-linux-gnu",
  4051. "python_version": "3.11.7",
  4052. "release_filename": "20240107/cpython-3.11.7+20240107-ppc64le-unknown-linux-gnu-install_only.tar.gz",
  4053. "urls": [
  4054. "https://github.com/indygreg/python-build-standalone/releases/download/20240107/cpython-3.11.7+20240107-ppc64le-unknown-linux-gnu-install_only.tar.gz"
  4055. ],
  4056. "distutils_content": "",
  4057. "strip_prefix": "python",
  4058. "coverage_tool": "",
  4059. "ignore_root_user_error": false
  4060. }
  4061. },
  4062. "python_3_11_x86_64-apple-darwin": {
  4063. "bzlFile": "@@rules_python~//python:repositories.bzl",
  4064. "ruleClassName": "python_repository",
  4065. "attributes": {
  4066. "sha256": "a0e615eef1fafdc742da0008425a9030b7ea68a4ae4e73ac557ef27b112836d4",
  4067. "patches": [],
  4068. "platform": "x86_64-apple-darwin",
  4069. "python_version": "3.11.7",
  4070. "release_filename": "20240107/cpython-3.11.7+20240107-x86_64-apple-darwin-install_only.tar.gz",
  4071. "urls": [
  4072. "https://github.com/indygreg/python-build-standalone/releases/download/20240107/cpython-3.11.7+20240107-x86_64-apple-darwin-install_only.tar.gz"
  4073. ],
  4074. "distutils_content": "",
  4075. "strip_prefix": "python",
  4076. "coverage_tool": "",
  4077. "ignore_root_user_error": false
  4078. }
  4079. },
  4080. "pythons_hub": {
  4081. "bzlFile": "@@rules_python~//python/private/bzlmod:pythons_hub.bzl",
  4082. "ruleClassName": "hub_repo",
  4083. "attributes": {
  4084. "default_python_version": "3.11",
  4085. "toolchain_prefixes": [
  4086. "_0000_python_3_11_"
  4087. ],
  4088. "toolchain_python_versions": [
  4089. "3.11"
  4090. ],
  4091. "toolchain_set_python_version_constraints": [
  4092. "False"
  4093. ],
  4094. "toolchain_user_repository_names": [
  4095. "python_3_11"
  4096. ]
  4097. }
  4098. },
  4099. "python_versions": {
  4100. "bzlFile": "@@rules_python~//python/private:toolchains_repo.bzl",
  4101. "ruleClassName": "multi_toolchain_aliases",
  4102. "attributes": {
  4103. "python_versions": {
  4104. "3.11": "python_3_11"
  4105. }
  4106. }
  4107. },
  4108. "python_3_11_x86_64-pc-windows-msvc": {
  4109. "bzlFile": "@@rules_python~//python:repositories.bzl",
  4110. "ruleClassName": "python_repository",
  4111. "attributes": {
  4112. "sha256": "67077e6fa918e4f4fd60ba169820b00be7c390c497bf9bc9cab2c255ea8e6f3e",
  4113. "patches": [],
  4114. "platform": "x86_64-pc-windows-msvc",
  4115. "python_version": "3.11.7",
  4116. "release_filename": "20240107/cpython-3.11.7+20240107-x86_64-pc-windows-msvc-shared-install_only.tar.gz",
  4117. "urls": [
  4118. "https://github.com/indygreg/python-build-standalone/releases/download/20240107/cpython-3.11.7+20240107-x86_64-pc-windows-msvc-shared-install_only.tar.gz"
  4119. ],
  4120. "distutils_content": "",
  4121. "strip_prefix": "python",
  4122. "coverage_tool": "",
  4123. "ignore_root_user_error": false
  4124. }
  4125. },
  4126. "python_3_11_x86_64-unknown-linux-gnu": {
  4127. "bzlFile": "@@rules_python~//python:repositories.bzl",
  4128. "ruleClassName": "python_repository",
  4129. "attributes": {
  4130. "sha256": "4a51ce60007a6facf64e5495f4cf322e311ba9f39a8cd3f3e4c026eae488e140",
  4131. "patches": [],
  4132. "platform": "x86_64-unknown-linux-gnu",
  4133. "python_version": "3.11.7",
  4134. "release_filename": "20240107/cpython-3.11.7+20240107-x86_64-unknown-linux-gnu-install_only.tar.gz",
  4135. "urls": [
  4136. "https://github.com/indygreg/python-build-standalone/releases/download/20240107/cpython-3.11.7+20240107-x86_64-unknown-linux-gnu-install_only.tar.gz"
  4137. ],
  4138. "distutils_content": "",
  4139. "strip_prefix": "python",
  4140. "coverage_tool": "",
  4141. "ignore_root_user_error": false
  4142. }
  4143. }
  4144. },
  4145. "recordedRepoMappingEntries": [
  4146. [
  4147. "rules_python~",
  4148. "bazel_skylib",
  4149. "bazel_skylib~"
  4150. ],
  4151. [
  4152. "rules_python~",
  4153. "bazel_tools",
  4154. "bazel_tools"
  4155. ]
  4156. ]
  4157. }
  4158. },
  4159. "@@rules_python~//python/private/bzlmod:internal_deps.bzl%internal_deps": {
  4160. "general": {
  4161. "bzlTransitiveDigest": "7gPkjo3H+IUX8tPkLBs0bZkgYQjrgl/lYj7+eBvwSNU=",
  4162. "recordedFileInputs": {},
  4163. "recordedDirentsInputs": {},
  4164. "envVariables": {},
  4165. "generatedRepoSpecs": {
  4166. "pypi__wheel": {
  4167. "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl",
  4168. "ruleClassName": "http_archive",
  4169. "attributes": {
  4170. "url": "https://files.pythonhosted.org/packages/b8/8b/31273bf66016be6ad22bb7345c37ff350276cfd46e389a0c2ac5da9d9073/wheel-0.41.2-py3-none-any.whl",
  4171. "sha256": "75909db2664838d015e3d9139004ee16711748a52c8f336b52882266540215d8",
  4172. "type": "zip",
  4173. "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"
  4174. }
  4175. },
  4176. "pypi__click": {
  4177. "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl",
  4178. "ruleClassName": "http_archive",
  4179. "attributes": {
  4180. "url": "https://files.pythonhosted.org/packages/00/2e/d53fa4befbf2cfa713304affc7ca780ce4fc1fd8710527771b58311a3229/click-8.1.7-py3-none-any.whl",
  4181. "sha256": "ae74fb96c20a0277a1d615f1e4d73c8414f5a98db8b799a7931d1582f3390c28",
  4182. "type": "zip",
  4183. "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"
  4184. }
  4185. },
  4186. "pypi__importlib_metadata": {
  4187. "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl",
  4188. "ruleClassName": "http_archive",
  4189. "attributes": {
  4190. "url": "https://files.pythonhosted.org/packages/cc/37/db7ba97e676af155f5fcb1a35466f446eadc9104e25b83366e8088c9c926/importlib_metadata-6.8.0-py3-none-any.whl",
  4191. "sha256": "3ebb78df84a805d7698245025b975d9d67053cd94c79245ba4b3eb694abe68bb",
  4192. "type": "zip",
  4193. "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"
  4194. }
  4195. },
  4196. "pypi__pyproject_hooks": {
  4197. "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl",
  4198. "ruleClassName": "http_archive",
  4199. "attributes": {
  4200. "url": "https://files.pythonhosted.org/packages/d5/ea/9ae603de7fbb3df820b23a70f6aff92bf8c7770043254ad8d2dc9d6bcba4/pyproject_hooks-1.0.0-py3-none-any.whl",
  4201. "sha256": "283c11acd6b928d2f6a7c73fa0d01cb2bdc5f07c57a2eeb6e83d5e56b97976f8",
  4202. "type": "zip",
  4203. "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"
  4204. }
  4205. },
  4206. "pypi__pep517": {
  4207. "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl",
  4208. "ruleClassName": "http_archive",
  4209. "attributes": {
  4210. "url": "https://files.pythonhosted.org/packages/ee/2f/ef63e64e9429111e73d3d6cbee80591672d16f2725e648ebc52096f3d323/pep517-0.13.0-py3-none-any.whl",
  4211. "sha256": "4ba4446d80aed5b5eac6509ade100bff3e7943a8489de249654a5ae9b33ee35b",
  4212. "type": "zip",
  4213. "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"
  4214. }
  4215. },
  4216. "pypi__packaging": {
  4217. "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl",
  4218. "ruleClassName": "http_archive",
  4219. "attributes": {
  4220. "url": "https://files.pythonhosted.org/packages/ab/c3/57f0601a2d4fe15de7a553c00adbc901425661bf048f2a22dfc500caf121/packaging-23.1-py3-none-any.whl",
  4221. "sha256": "994793af429502c4ea2ebf6bf664629d07c1a9fe974af92966e4b8d2df7edc61",
  4222. "type": "zip",
  4223. "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"
  4224. }
  4225. },
  4226. "pypi__pip_tools": {
  4227. "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl",
  4228. "ruleClassName": "http_archive",
  4229. "attributes": {
  4230. "url": "https://files.pythonhosted.org/packages/e8/df/47e6267c6b5cdae867adbdd84b437393e6202ce4322de0a5e0b92960e1d6/pip_tools-7.3.0-py3-none-any.whl",
  4231. "sha256": "8717693288720a8c6ebd07149c93ab0be1fced0b5191df9e9decd3263e20d85e",
  4232. "type": "zip",
  4233. "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"
  4234. }
  4235. },
  4236. "pypi__setuptools": {
  4237. "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl",
  4238. "ruleClassName": "http_archive",
  4239. "attributes": {
  4240. "url": "https://files.pythonhosted.org/packages/4f/ab/0bcfebdfc3bfa8554b2b2c97a555569c4c1ebc74ea288741ea8326c51906/setuptools-68.1.2-py3-none-any.whl",
  4241. "sha256": "3d8083eed2d13afc9426f227b24fd1659489ec107c0e86cec2ffdde5c92e790b",
  4242. "type": "zip",
  4243. "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"
  4244. }
  4245. },
  4246. "pypi__zipp": {
  4247. "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl",
  4248. "ruleClassName": "http_archive",
  4249. "attributes": {
  4250. "url": "https://files.pythonhosted.org/packages/8c/08/d3006317aefe25ea79d3b76c9650afabaf6d63d1c8443b236e7405447503/zipp-3.16.2-py3-none-any.whl",
  4251. "sha256": "679e51dd4403591b2d6838a48de3d283f3d188412a9782faadf845f298736ba0",
  4252. "type": "zip",
  4253. "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"
  4254. }
  4255. },
  4256. "pypi__colorama": {
  4257. "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl",
  4258. "ruleClassName": "http_archive",
  4259. "attributes": {
  4260. "url": "https://files.pythonhosted.org/packages/d1/d6/3965ed04c63042e047cb6a3e6ed1a63a35087b6a609aa3a15ed8ac56c221/colorama-0.4.6-py2.py3-none-any.whl",
  4261. "sha256": "4f1d9991f5acc0ca119f9d443620b77f9d6b33703e51011c16baf57afb285fc6",
  4262. "type": "zip",
  4263. "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"
  4264. }
  4265. },
  4266. "pypi__build": {
  4267. "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl",
  4268. "ruleClassName": "http_archive",
  4269. "attributes": {
  4270. "url": "https://files.pythonhosted.org/packages/58/91/17b00d5fac63d3dca605f1b8269ba3c65e98059e1fd99d00283e42a454f0/build-0.10.0-py3-none-any.whl",
  4271. "sha256": "af266720050a66c893a6096a2f410989eeac74ff9a68ba194b3f6473e8e26171",
  4272. "type": "zip",
  4273. "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"
  4274. }
  4275. },
  4276. "rules_python_internal": {
  4277. "bzlFile": "@@rules_python~//python/private:internal_config_repo.bzl",
  4278. "ruleClassName": "internal_config_repo",
  4279. "attributes": {}
  4280. },
  4281. "pypi__pip": {
  4282. "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl",
  4283. "ruleClassName": "http_archive",
  4284. "attributes": {
  4285. "url": "https://files.pythonhosted.org/packages/50/c2/e06851e8cc28dcad7c155f4753da8833ac06a5c704c109313b8d5a62968a/pip-23.2.1-py3-none-any.whl",
  4286. "sha256": "7ccf472345f20d35bdc9d1841ff5f313260c2c33fe417f48c30ac46cccabf5be",
  4287. "type": "zip",
  4288. "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"
  4289. }
  4290. },
  4291. "pypi__installer": {
  4292. "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl",
  4293. "ruleClassName": "http_archive",
  4294. "attributes": {
  4295. "url": "https://files.pythonhosted.org/packages/e5/ca/1172b6638d52f2d6caa2dd262ec4c811ba59eee96d54a7701930726bce18/installer-0.7.0-py3-none-any.whl",
  4296. "sha256": "05d1933f0a5ba7d8d6296bb6d5018e7c94fa473ceb10cf198a92ccea19c27b53",
  4297. "type": "zip",
  4298. "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"
  4299. }
  4300. },
  4301. "pypi__more_itertools": {
  4302. "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl",
  4303. "ruleClassName": "http_archive",
  4304. "attributes": {
  4305. "url": "https://files.pythonhosted.org/packages/5a/cb/6dce742ea14e47d6f565589e859ad225f2a5de576d7696e0623b784e226b/more_itertools-10.1.0-py3-none-any.whl",
  4306. "sha256": "64e0735fcfdc6f3464ea133afe8ea4483b1c5fe3a3d69852e6503b43a0b222e6",
  4307. "type": "zip",
  4308. "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"
  4309. }
  4310. },
  4311. "pypi__tomli": {
  4312. "bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl",
  4313. "ruleClassName": "http_archive",
  4314. "attributes": {
  4315. "url": "https://files.pythonhosted.org/packages/97/75/10a9ebee3fd790d20926a90a2547f0bf78f371b2f13aa822c759680ca7b9/tomli-2.0.1-py3-none-any.whl",
  4316. "sha256": "939de3e7a6161af0c887ef91b7d41a53e7c5a1ca976325f429cb46ea9bc30ecc",
  4317. "type": "zip",
  4318. "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"
  4319. }
  4320. }
  4321. },
  4322. "recordedRepoMappingEntries": [
  4323. [
  4324. "rules_python~",
  4325. "bazel_tools",
  4326. "bazel_tools"
  4327. ]
  4328. ]
  4329. }
  4330. }
  4331. }
  4332. }