MODULE.bazel.lock 294 KB

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