MODULE.bazel.lock 281 KB

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